NAME

wireshark-filter - Wireshark filter syntax and reference


SYNOPSIS

wireshark [other options] [ -R "filter expression" ]

tshark [other options] [ -R "filter expression" ]


DESCRIPTION

Wireshark and TShark share a powerful filter engine that helps remove the noise from a packet trace and lets you see only the packets that interest you. If a packet meets the requirements expressed in your filter, then it is displayed in the list of packets. Display filters let you compare the fields within a protocol against a specific value, compare fields against fields, and check the existence of specified fields or protocols.

Filters are also used by other features such as statistics generation and packet list colorization (the latter is only available to Wireshark). This manual page describes their syntax and provides a comprehensive reference of filter fields.


FILTER SYNTAX

Check whether a field or protocol exists

The simplest filter allows you to check for the existence of a protocol or field. If you want to see all packets which contain the IP protocol, the filter would be "ip" (without the quotation marks). To see all packets that contain a Token-Ring RIF field, use "tr.rif".

Think of a protocol or field in a filter as implicitly having the "exists" operator.

Note: all protocol and field names that are available in Wireshark and TShark filters are listed in the comprehensive FILTER PROTOCOL REFERENCE (see below).

Comparison operators

Fields can also be compared against values. The comparison operators can be expressed either through English-like abbreviations or through C-like symbols:

    eq, ==    Equal
    ne, !=    Not Equal
    gt, >     Greater Than
    lt, <     Less Than
    ge, >=    Greater than or Equal to
    le, <=    Less than or Equal to

Search and match operators

Additional operators exist expressed only in English, not C-like syntax:

    contains  Does the protocol, field or slice contain a value
    matches   Does the protocol or text string match the given Perl
              regular expression

The "contains" operator allows a filter to search for a sequence of characters, expressed as a string (quoted or unquoted), or bytes, expressed as a byte array. For example, to search for a given HTTP URL in a capture, the following filter can be used:

    http contains "http://www.wireshark.org";

The "contains" operator cannot be used on atomic fields, such as numbers or IP addresses.

The "matches" operator allows a filter to apply to a specified Perl-compatible regular expression (PCRE). The "matches" operator is only implemented for protocols and for protocol fields with a text string representation. For example, to search for a given WAP WSP User-Agent, you can write:

    wsp.user_agent matches "(?i)cldc"

This example shows an interesting PCRE feature: pattern match options have to be specified with the (?option) construct. For instance, (?i) performs a case-insensitive pattern match. More information on PCRE can be found in the pcrepattern(3) man page (Perl Regular Expressions are explained in http://www.perldoc.com/perl5.8.0/pod/perlre.html).

Note: the "matches" operator is only available if Wireshark or TShark have been compiled with the PCRE library. This can be checked by running:

    wireshark -v
    tshark -v

or selecting the "About Wireshark" item from the "Help" menu in Wireshark.

Functions

The filter language has the following functions:

    upper(string-field) - converts a string field to uppercase
    lower(string-field) - converts a string field to lowercase

upper() and lower() are useful for performing case-insensitive string comparisons. For example:

    upper(ncp.nds_stream_name) contains "MACRO"
    lower(mount.dump.hostname) == "angel"

Protocol field types

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".

The slice operator

You can take a slice of a field if the field is a text string or a byte array. For example, you can filter on the vendor portion of an ethernet address (the first three bytes) like this:

    eth.src[0:3] == 00:00:83

Another example is:

    http.content_type[0:4] == "text"

You can use the slice operator on a protocol name, too. The "frame" protocol can be useful, encompassing all the data captured by Wireshark or TShark.

    token[0:5] ne 0.0.0.1.1
    llc[0] eq aa
    frame[100-199] contains "wireshark"

The following syntax governs slices:

    [i:j]    i = start_offset, j = length
    [i-j]    i = start_offset, j = end_offset, inclusive.
    [i]      i = start_offset, length = 1
    [:j]     start_offset = 0, length = j
    [i:]     start_offset = i, end_offset = end_of_field

Offsets can be negative, in which case they indicate the offset from the end of the field. The last byte of the field is at offset -1, the last but one byte is at offset -2, and so on. Here's how to check the last four bytes of a frame:

    frame[-4:4] == 0.1.2.3

or

    frame[-4:] == 0.1.2.3

You can concatenate slices using the comma operator:

    ftp[1,3-5,9:] == 01:03:04:05:09:0a:0b

This concatenates offset 1, offsets 3-5, and offset 9 to the end of the ftp data.

Type conversions

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"

Bit field operations

It is also possible to define tests with bit field operations. Currently the following bit field operation is supported:

    bitwise_and, &      Bitwise AND

The bitwise AND operation allows testing to see if one or more bits are set. Bitwise AND operates on integer protocol fields and slices.

When testing for TCP SYN packets, you can write:

    tcp.flags & 0x02

That expression will match all packets that contain a "tcp.flags" field with the 0x02 bit, i.e. the SYN bit, set.

Similarly, filtering for all WSP GET and extended GET methods is achieved with:

    wsp.pdu_type & 0x40

When using slices, the bit mask must be specified as a byte string, and it must have the same number of bytes as the slice itself, as in:

    ip[42:2] & 40:ff

Logical expressions

Tests can be combined using logical expressions. These too are expressable in C-like syntax or with English-like abbreviations:

    and, &&   Logical AND
    or,  ||   Logical OR
    not, !    Logical NOT

Expressions can be grouped by parentheses as well. The following are all valid display filter expressions:

    tcp.port == 80 and ip.src == 192.168.2.1
    not llc
    http and frame[100-199] contains "wireshark"
    (ipx.src.net == 0xbad && ipx.src.node == 0.0.0.0.0.1) || ip

Remember that whenever a protocol or field name occurs in an expression, the "exists" operator is implicitly called. The "exists" operator has the highest priority. This means that the first filter expression must be read as "show me the packets for which tcp.port exists and equals 80, and ip.src exists and equals 192.168.2.1". The second filter expression means "show me the packets where not (llc exists)", or in other words "where llc does not exist" and hence will match all packets that do not contain the llc protocol. The third filter expression includes the constraint that offset 199 in the frame exists, in other words the length of the frame is at least 200.

A special caveat must be given regarding fields that occur more than once per packet. "ip.addr" occurs twice per IP packet, once for the source address, and once for the destination address. Likewise, "tr.rif.ring" fields can occur more than once per packet. The following two expressions are not equivalent:

        ip.addr ne 192.168.4.1
    not ip.addr eq 192.168.4.1

The first filter says "show me packets where an ip.addr exists that does not equal 192.168.4.1". That is, as long as one ip.addr in the packet does not equal 192.168.4.1, the packet passes the display filter. The other ip.addr could equal 192.168.4.1 and the packet would still be displayed. The second filter says "don't show me any packets that have an ip.addr field equal to 192.168.4.1". If one ip.addr is 192.168.4.1, the packet does not pass. If neither ip.addr field is 192.168.4.1, then the packet is displayed.

It is easy to think of the 'ne' and 'eq' operators as having an implicit "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.


FILTER PROTOCOL REFERENCE

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.

3Com XNS Encapsulation (3comxns)

    3comxns.type  Type
        Unsigned 16-bit integer

3GPP Nb Interface RTP Multiplex (nb_rtpmux)

    nb_rtpmux.cmp_rtp.data  RTP Data
        Byte array
    nb_rtpmux.cmp_rtp.sequence_no  Sequence Number
        Unsigned 16-bit integer
    nb_rtpmux.cmp_rtp.timestamp  Timestamp
        Unsigned 16-bit integer
    nb_rtpmux.compressed  Compressed headers
        Boolean
    nb_rtpmux.data  RTP Packet
        Byte array
    nb_rtpmux.dstport  Dst port
        Unsigned 16-bit integer
    nb_rtpmux.length  Length
        Unsigned 8-bit integer
    nb_rtpmux.srcport  Src port
        Unsigned 16-bit integer

3GPP2 A11 (a11)

    a11.ackstat  Reply Status
        Unsigned 8-bit integer
        A11 Registration Ack Status.
    a11.auth.auth  Authenticator
        Byte array
        Authenticator.
    a11.auth.spi  SPI
        Unsigned 32-bit integer
        Authentication Header Security Parameter Index.
    a11.b  Broadcast Datagrams
        Boolean
        Broadcast Datagrams requested
    a11.coa  Care of Address
        IPv4 address
        Care of Address.
    a11.code  Reply Code
        Unsigned 8-bit integer
        A11 Registration Reply code.
    a11.d  Co-located Care-of Address
        Boolean
        MN using Co-located Care-of address
    a11.ext.apptype  Application Type
        Unsigned 8-bit integer
        Application Type.
    a11.ext.ase.key  GRE Key
        Unsigned 32-bit integer
        GRE Key.
    a11.ext.ase.len  Entry Length
        Unsigned 8-bit integer
        Entry Length.
    a11.ext.ase.pcfip  PCF IP Address
        IPv4 address
        PCF IP Address.
    a11.ext.ase.ptype  GRE Protocol Type
        Unsigned 16-bit integer
        GRE Protocol Type.
    a11.ext.ase.srid  Service Reference ID (SRID)
        Unsigned 8-bit integer
        Service Reference ID (SRID).
    a11.ext.ase.srvopt  Service Option
        Unsigned 16-bit integer
        Service Option.
    a11.ext.auth.subtype  Gen Auth Ext SubType
        Unsigned 8-bit integer
        Mobile IP Auth Extension Sub Type.
    a11.ext.canid  CANID
        Byte array
    a11.ext.code  Reply Code
        Unsigned 8-bit integer
        PDSN Code.
    a11.ext.dormant  All Dormant Indicator
        Unsigned 16-bit integer
        All Dormant Indicator.
    a11.ext.fqi.dscp  Forward DSCP
        Unsigned 8-bit integer
        Forward Flow DSCP.
    a11.ext.fqi.entrylen  Entry Length
        Unsigned 8-bit integer
        Forward Entry Length.
    a11.ext.fqi.flags  Flags
        Unsigned 8-bit integer
        Forward Flow Entry Flags.
    a11.ext.fqi.flowcount  Forward Flow Count
        Unsigned 8-bit integer
        Forward Flow Count.
    a11.ext.fqi.flowid  Forward Flow Id
        Unsigned 8-bit integer
        Forward Flow Id.
    a11.ext.fqi.flowstate  Forward Flow State
        Unsigned 8-bit integer
        Forward Flow State.
    a11.ext.fqi.graqos  Granted QoS
        Byte array
        Forward Granted QoS.
    a11.ext.fqi.graqoslen  Granted QoS Length
        Unsigned 8-bit integer
        Forward Granted QoS Length.
    a11.ext.fqi.length  Length
        Unsigned 16-bit integer
    a11.ext.fqi.reqqos  Requested QoS
        Byte array
        Forward Requested QoS.
    a11.ext.fqi.reqqoslen  Requested QoS Length
        Unsigned 8-bit integer
        Forward Requested QoS Length.
    a11.ext.fqi.srid  SRID
        Unsigned 8-bit integer
        Forward Flow Entry SRID.
    a11.ext.fqui.flowcount  Forward QoS Update Flow Count
        Unsigned 8-bit integer
        Forward QoS Update Flow Count.
    a11.ext.fqui.updatedqos  Forward Updated QoS Sub-Blob
        Byte array
        Forward Updated QoS Sub-Blob.
    a11.ext.fqui.updatedqoslen  Forward Updated QoS Sub-Blob Length
        Unsigned 8-bit integer
        Forward Updated QoS Sub-Blob Length.
    a11.ext.key  Key
        Unsigned 32-bit integer
        Session Key.
    a11.ext.len  Extension Length
        Unsigned 16-bit integer
        Mobile IP Extension Length.
    a11.ext.mnsrid  MNSR-ID
        Unsigned 16-bit integer
    a11.ext.msid  MSID(BCD)
        String
        MSID(BCD).
    a11.ext.msid_len  MSID Length
        Unsigned 8-bit integer
        MSID Length.
    a11.ext.msid_type  MSID Type
        Unsigned 16-bit integer
        MSID Type.
    a11.ext.panid  PANID
        Byte array
    a11.ext.ppaddr  Anchor P-P Address
        IPv4 address
        Anchor P-P Address.
    a11.ext.ptype  Protocol Type
        Unsigned 16-bit integer
        Protocol Type.
    a11.ext.qosmode  QoS Mode
        Unsigned 8-bit integer
        QoS Mode.
    a11.ext.rqi.entrylen  Entry Length
        Unsigned 8-bit integer
        Reverse Flow Entry Length.
    a11.ext.rqi.flowcount  Reverse Flow Count
        Unsigned 8-bit integer
        Reverse Flow Count.
    a11.ext.rqi.flowid  Reverse Flow Id
        Unsigned 8-bit integer
        Reverse Flow Id.
    a11.ext.rqi.flowstate  Flow State
        Unsigned 8-bit integer
        Reverse Flow State.
    a11.ext.rqi.graqos  Granted QoS
        Byte array
        Reverse Granted QoS.
    a11.ext.rqi.graqoslen  Granted QoS Length
        Unsigned 8-bit integer
        Reverse Granted QoS Length.
    a11.ext.rqi.length  Length
        Unsigned 16-bit integer
    a11.ext.rqi.reqqos  Requested QoS
        Byte array
        Reverse Requested QoS.
    a11.ext.rqi.reqqoslen  Requested QoS Length
        Unsigned 8-bit integer
        Reverse Requested QoS Length.
    a11.ext.rqi.srid  SRID
        Unsigned 8-bit integer
        Reverse Flow Entry SRID.
    a11.ext.rqui.flowcount  Reverse QoS Update Flow Count
        Unsigned 8-bit integer
        Reverse QoS Update Flow Count.
    a11.ext.rqui.updatedqos  Reverse Updated QoS Sub-Blob
        Byte array
        Reverse Updated QoS Sub-Blob.
    a11.ext.rqui.updatedqoslen  Reverse Updated QoS Sub-Blob Length
        Unsigned 8-bit integer
        Reverse Updated QoS Sub-Blob Length.
    a11.ext.sidver  Session ID Version
        Unsigned 8-bit integer
    a11.ext.sqp.profile  Subscriber QoS Profile
        Byte array
        Subscriber QoS Profile.
    a11.ext.sqp.profilelen  Subscriber QoS Profile Length
        Byte array
        Subscriber QoS Profile Length.
    a11.ext.srvopt  Service Option
        Unsigned 16-bit integer
        Service Option.
    a11.ext.type  Extension Type
        Unsigned 8-bit integer
        Mobile IP Extension Type.
    a11.ext.vid  Vendor ID
        Unsigned 32-bit integer
        Vendor ID.
    a11.extension  Extension
        Byte array
    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
    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

3com Network Jack (njack)

    njack.getresp.unknown1  Unknown1
        Unsigned 8-bit integer
    njack.magic  Magic
        String
    njack.set.length  SetLength
        Unsigned 16-bit integer
    njack.set.salt  Salt
        Unsigned 32-bit integer
    njack.setresult  SetResult
        Unsigned 8-bit integer
    njack.tlv.addtagscheme  TlvAddTagScheme
        Unsigned 8-bit integer
    njack.tlv.authdata  Authdata
        Byte array
    njack.tlv.countermode  TlvTypeCountermode
        Unsigned 8-bit integer
    njack.tlv.data  TlvData
        Byte array
    njack.tlv.devicemac  TlvTypeDeviceMAC
        6-byte Hardware (MAC) Address
    njack.tlv.dhcpcontrol  TlvTypeDhcpControl
        Unsigned 8-bit integer
    njack.tlv.length  TlvLength
        Unsigned 8-bit integer
    njack.tlv.maxframesize  TlvTypeMaxframesize
        Unsigned 8-bit integer
    njack.tlv.portingressmode  TlvTypePortingressmode
        Unsigned 8-bit integer
    njack.tlv.powerforwarding  TlvTypePowerforwarding
        Unsigned 8-bit integer
    njack.tlv.scheduling  TlvTypeScheduling
        Unsigned 8-bit integer
    njack.tlv.snmpwrite  TlvTypeSnmpwrite
        Unsigned 8-bit integer
    njack.tlv.type  TlvType
        Unsigned 8-bit integer
    njack.tlv.typeip  TlvTypeIP
        IPv4 address
    njack.tlv.typestring  TlvTypeString
        String
    njack.tlv.version  TlvFwVersion
        IPv4 address
    njack.type  Type
        Unsigned 8-bit integer

802.11 radio information (radio)

802.1Q Virtual LAN (vlan)

    vlan.cfi  CFI
        Unsigned 16-bit integer
        Canonical Format Identifier
    vlan.etype  Type
        Unsigned 16-bit integer
        Ethertype
    vlan.id  ID
        Unsigned 16-bit integer
        VLAN ID
    vlan.len  Length
        Unsigned 16-bit integer
    vlan.priority  Priority
        Unsigned 16-bit integer
        Descriptions are recommendations from IEEE standard 802.1D-2004
    vlan.trailer  Trailer
        Byte array
        VLAN Trailer

802.1X Authentication (eapol)

    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
    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
    eapol.keydes.key_info.error  Error flag
        Boolean
    eapol.keydes.key_info.install  Install flag
        Boolean
    eapol.keydes.key_info.key_ack  Key Ack flag
        Boolean
    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
    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
    eapol.keydes.key_info.secure  Secure flag
        Boolean
    eapol.keydes.key_iv  Key IV
        Byte array
        Key Initialization Vector
    eapol.keydes.key_signature  Key Signature
        Byte array
    eapol.keydes.keylen  Key Length
        Unsigned 16-bit integer
    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
    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
    eapol.type  Type
        Unsigned 8-bit integer
    eapol.version  Version
        Unsigned 8-bit integer

AAL type 2 signalling protocol (Q.2630) (alcap)

    alcap.acc.level  Congestion Level
        Unsigned 8-bit integer
    alcap.alc.bitrate.avg.bw  Average Backwards Bit Rate
        Unsigned 16-bit integer
    alcap.alc.bitrate.avg.fw  Average Forward Bit Rate
        Unsigned 16-bit integer
    alcap.alc.bitrate.max.bw  Maximum Backwards Bit Rate
        Unsigned 16-bit integer
    alcap.alc.bitrate.max.fw  Maximum Forward Bit Rate
        Unsigned 16-bit integer
    alcap.alc.sdusize.avg.bw  Average Backwards CPS SDU Size
        Unsigned 8-bit integer
    alcap.alc.sdusize.avg.fw  Average Forward CPS SDU Size
        Unsigned 8-bit integer
    alcap.alc.sdusize.max.bw  Maximum Backwards CPS SDU Size
        Unsigned 8-bit integer
    alcap.alc.sdusize.max.fw  Maximum Forward CPS SDU Size
        Unsigned 8-bit integer
    alcap.cau.coding  Cause Coding
        Unsigned 8-bit integer
    alcap.cau.diag  Diagnostic
        Byte array
    alcap.cau.diag.field_num  Field Number
        Unsigned 8-bit integer
    alcap.cau.diag.len  Length
        Unsigned 8-bit integer
        Diagnostics Length
    alcap.cau.diag.msg  Message Identifier
        Unsigned 8-bit integer
    alcap.cau.diag.param  Parameter Identifier
        Unsigned 8-bit integer
    alcap.cau.value  Cause Value (ITU)
        Unsigned 8-bit integer
    alcap.ceid.cid  CID
        Unsigned 8-bit integer
    alcap.ceid.pathid  Path ID
        Unsigned 32-bit integer
    alcap.compat  Message Compatibility
        Byte array
    alcap.compat.general.ii  General II
        Unsigned 8-bit integer
        Instruction Indicator
    alcap.compat.general.sni  General SNI
        Unsigned 8-bit integer
        Send Notificaation Indicator
    alcap.compat.pass.ii  Pass-On II
        Unsigned 8-bit integer
        Instruction Indicator
    alcap.compat.pass.sni  Pass-On SNI
        Unsigned 8-bit integer
        Send Notificaation Indicator
    alcap.cp.level  Level
        Unsigned 8-bit integer
    alcap.dnsea.addr  Address
        Byte array
    alcap.dsaid  DSAID
        Unsigned 32-bit integer
        Destination Service Association ID
    alcap.fbw.bitrate.bw  CPS Backwards Bitrate
        Unsigned 24-bit integer
    alcap.fbw.bitrate.fw  CPS Forward Bitrate
        Unsigned 24-bit integer
    alcap.fbw.bucket_size.bw  Backwards CPS Bucket Size
        Unsigned 16-bit integer
    alcap.fbw.bucket_size.fw  Forward CPS Bucket Size
        Unsigned 16-bit integer
    alcap.fbw.max_size.bw  Backwards CPS Packet Size
        Unsigned 8-bit integer
    alcap.fbw.max_size.fw  Forward CPS Packet Size
        Unsigned 8-bit integer
    alcap.hc.codepoint  Codepoint
        Unsigned 8-bit integer
    alcap.leg.cause  Leg's cause value in REL
        Unsigned 8-bit integer
    alcap.leg.cid  Leg's channel id
        Unsigned 32-bit integer
    alcap.leg.dnsea  Leg's destination NSAP
        String
    alcap.leg.dsaid  Leg's ECF OSA id
        Unsigned 32-bit integer
    alcap.leg.msg  a message of this leg
        Frame number
    alcap.leg.onsea  Leg's originating NSAP
        String
    alcap.leg.osaid  Leg's ERQ OSA id
        Unsigned 32-bit integer
    alcap.leg.pathid  Leg's path id
        Unsigned 32-bit integer
    alcap.leg.sugr  Leg's SUGR
        Unsigned 32-bit integer
    alcap.msg_type  Message Type
        Unsigned 8-bit integer
    alcap.onsea.addr  Address
        Byte array
    alcap.osaid  OSAID
        Unsigned 32-bit integer
        Originating Service Association ID
    alcap.param  Parameter
        Unsigned 8-bit integer
        Parameter Id
    alcap.param.len  Length
        Unsigned 8-bit integer
        Parameter Length
    alcap.pfbw.bitrate.bw  CPS Backwards Bitrate
        Unsigned 24-bit integer
    alcap.pfbw.bitrate.fw  CPS Forward Bitrate
        Unsigned 24-bit integer
    alcap.pfbw.bucket_size.bw  Backwards CPS Bucket Size
        Unsigned 16-bit integer
    alcap.pfbw.bucket_size.fw  Forward CPS Bucket Size
        Unsigned 16-bit integer
    alcap.pfbw.max_size.bw  Backwards CPS Packet Size
        Unsigned 8-bit integer
    alcap.pfbw.max_size.fw  Forward CPS Packet Size
        Unsigned 8-bit integer
    alcap.plc.bitrate.avg.bw  Average Backwards Bit Rate
        Unsigned 16-bit integer
    alcap.plc.bitrate.avg.fw  Average Forward Bit Rate
        Unsigned 16-bit integer
    alcap.plc.bitrate.max.bw  Maximum Backwards Bit Rate
        Unsigned 16-bit integer
    alcap.plc.bitrate.max.fw  Maximum Forward Bit Rate
        Unsigned 16-bit integer
    alcap.plc.sdusize.max.bw  Maximum Backwards CPS SDU Size
        Unsigned 8-bit integer
    alcap.plc.sdusize.max.fw  Maximum Forward CPS SDU Size
        Unsigned 8-bit integer
    alcap.pssiae.cas  CAS
        Unsigned 8-bit integer
        Channel Associated Signalling
    alcap.pssiae.cmd  Circuit Mode
        Unsigned 8-bit integer
    alcap.pssiae.dtmf  DTMF
        Unsigned 8-bit integer
    alcap.pssiae.fax  Fax
        Unsigned 8-bit integer
        Facsimile
    alcap.pssiae.frm  Frame Mode
        Unsigned 8-bit integer
    alcap.pssiae.lb  Loopback
        Unsigned 8-bit integer
    alcap.pssiae.max_fmdata_len  Max Len of FM Data
        Unsigned 16-bit integer
    alcap.pssiae.mfr1  Multi-Frequency R1
        Unsigned 8-bit integer
    alcap.pssiae.mfr2  Multi-Frequency R2
        Unsigned 8-bit integer
    alcap.pssiae.oui  OUI
        Byte array
        Organizational Unique Identifier
    alcap.pssiae.pcm  PCM Mode
        Unsigned 8-bit integer
    alcap.pssiae.profile.id  Profile Id
        Unsigned 8-bit integer
    alcap.pssiae.profile.type  Profile Type
        Unsigned 8-bit integer
        I.366.2 Profile Type
    alcap.pssiae.rc  Rate Control
        Unsigned 8-bit integer
    alcap.pssiae.syn  Synchronization
        Unsigned 8-bit integer
        Transport of synchronization of change in SSCS operation
    alcap.pssime.frm  Frame Mode
        Unsigned 8-bit integer
    alcap.pssime.lb  Loopback
        Unsigned 8-bit integer
    alcap.pssime.max  Max Len
        Unsigned 16-bit integer
    alcap.pssime.mult  Multiplier
        Unsigned 8-bit integer
    alcap.pt.codepoint  QoS Codepoint
        Unsigned 8-bit integer
    alcap.pvbws.bitrate.bw  Peak CPS Backwards Bitrate
        Unsigned 24-bit integer
    alcap.pvbws.bitrate.fw  Peak CPS Forward Bitrate
        Unsigned 24-bit integer
    alcap.pvbws.bucket_size.bw  Peak Backwards CPS Bucket Size
        Unsigned 16-bit integer
    alcap.pvbws.bucket_size.fw  Peak Forward CPS Bucket Size
        Unsigned 16-bit integer
    alcap.pvbws.max_size.bw  Backwards CPS Packet Size
        Unsigned 8-bit integer
    alcap.pvbws.max_size.fw  Forward CPS Packet Size
        Unsigned 8-bit integer
    alcap.pvbws.stt  Source Traffic Type
        Unsigned 8-bit integer
    alcap.pvbwt.bitrate.bw  Peak CPS Backwards Bitrate
        Unsigned 24-bit integer
    alcap.pvbwt.bitrate.fw  Peak CPS Forward Bitrate
        Unsigned 24-bit integer
    alcap.pvbwt.bucket_size.bw  Peak Backwards CPS Bucket Size
        Unsigned 16-bit integer
    alcap.pvbwt.bucket_size.fw  Peak Forward CPS Bucket Size
        Unsigned 16-bit integer
    alcap.pvbwt.max_size.bw  Backwards CPS Packet Size
        Unsigned 8-bit integer
    alcap.pvbwt.max_size.fw  Forward CPS Packet Size
        Unsigned 8-bit integer
    alcap.ssia.cas  CAS
        Unsigned 8-bit integer
        Channel Associated Signalling
    alcap.ssia.cmd  Circuit Mode
        Unsigned 8-bit integer
    alcap.ssia.dtmf  DTMF
        Unsigned 8-bit integer
    alcap.ssia.fax  Fax
        Unsigned 8-bit integer
        Facsimile
    alcap.ssia.frm  Frame Mode
        Unsigned 8-bit integer
    alcap.ssia.max_fmdata_len  Max Len of FM Data
        Unsigned 16-bit integer
    alcap.ssia.mfr1  Multi-Frequency R1
        Unsigned 8-bit integer
    alcap.ssia.mfr2  Multi-Frequency R2
        Unsigned 8-bit integer
    alcap.ssia.oui  OUI
        Byte array
        Organizational Unique Identifier
    alcap.ssia.pcm  PCM Mode
        Unsigned 8-bit integer
    alcap.ssia.profile.id  Profile Id
        Unsigned 8-bit integer
    alcap.ssia.profile.type  Profile Type
        Unsigned 8-bit integer
        I.366.2 Profile Type
    alcap.ssiae.cas  CAS
        Unsigned 8-bit integer
        Channel Associated Signalling
    alcap.ssiae.cmd  Circuit Mode
        Unsigned 8-bit integer
    alcap.ssiae.dtmf  DTMF
        Unsigned 8-bit integer
    alcap.ssiae.fax  Fax
        Unsigned 8-bit integer
        Facsimile
    alcap.ssiae.frm  Frame Mode
        Unsigned 8-bit integer
    alcap.ssiae.lb  Loopback
        Unsigned 8-bit integer
    alcap.ssiae.max_fmdata_len  Max Len of FM Data
        Unsigned 16-bit integer
    alcap.ssiae.mfr1  Multi-Frequency R1
        Unsigned 8-bit integer
    alcap.ssiae.mfr2  Multi-Frequency R2
        Unsigned 8-bit integer
    alcap.ssiae.oui  OUI
        Byte array
        Organizational Unique Identifier
    alcap.ssiae.pcm  PCM Mode
        Unsigned 8-bit integer
    alcap.ssiae.profile.id  Profile Id
        Unsigned 8-bit integer
    alcap.ssiae.profile.type  Profile Type
        Unsigned 8-bit integer
        I.366.2 Profile Type
    alcap.ssiae.rc  Rate Control
        Unsigned 8-bit integer
    alcap.ssiae.syn  Synchronization
        Unsigned 8-bit integer
        Transport of synchronization of change in SSCS operation
    alcap.ssim.frm  Frame Mode
        Unsigned 8-bit integer
    alcap.ssim.max  Max Len
        Unsigned 16-bit integer
    alcap.ssim.mult  Multiplier
        Unsigned 8-bit integer
    alcap.ssime.frm  Frame Mode
        Unsigned 8-bit integer
    alcap.ssime.lb  Loopback
        Unsigned 8-bit integer
    alcap.ssime.max  Max Len
        Unsigned 16-bit integer
    alcap.ssime.mult  Multiplier
        Unsigned 8-bit integer
    alcap.ssisa.sscop.max_sdu_len.bw  Maximum Len of SSSAR-SDU Backwards
        Unsigned 16-bit integer
    alcap.ssisa.sscop.max_sdu_len.fw  Maximum Len of SSSAR-SDU Forward
        Unsigned 16-bit integer
    alcap.ssisa.sscop.max_uu_len.bw  Maximum Len of SSSAR-SDU Backwards
        Unsigned 16-bit integer
    alcap.ssisa.sscop.max_uu_len.fw  Maximum Len of SSSAR-SDU Forward
        Unsigned 16-bit integer
    alcap.ssisa.sssar.max_len.fw  Maximum Len of SSSAR-SDU Forward
        Unsigned 24-bit integer
    alcap.ssisu.sssar.max_len.fw  Maximum Len of SSSAR-SDU Forward
        Unsigned 24-bit integer
    alcap.ssisu.ted  Transmission Error Detection
        Unsigned 8-bit integer
    alcap.suci  SUCI
        Unsigned 8-bit integer
        Served User Correlation Id
    alcap.sugr  SUGR
        Byte array
        Served User Generated Reference
    alcap.sut.sut_len  SUT Length
        Unsigned 8-bit integer
    alcap.sut.transport  SUT
        Byte array
        Served User Transport
    alcap.unknown.field  Unknown Field Data
        Byte array
    alcap.vbws.bitrate.bw  CPS Backwards Bitrate
        Unsigned 24-bit integer
    alcap.vbws.bitrate.fw  CPS Forward Bitrate
        Unsigned 24-bit integer
    alcap.vbws.bucket_size.bw  Backwards CPS Bucket Size
        Unsigned 16-bit integer
    alcap.vbws.bucket_size.fw  Forward CPS Bucket Size
        Unsigned 16-bit integer
    alcap.vbws.max_size.bw  Backwards CPS Packet Size
        Unsigned 8-bit integer
    alcap.vbws.max_size.fw  Forward CPS Packet Size
        Unsigned 8-bit integer
    alcap.vbws.stt  Source Traffic Type
        Unsigned 8-bit integer
    alcap.vbwt.bitrate.bw  Peak CPS Backwards Bitrate
        Unsigned 24-bit integer
    alcap.vbwt.bitrate.fw  Peak CPS Forward Bitrate
        Unsigned 24-bit integer
    alcap.vbwt.bucket_size.bw  Peak Backwards CPS Bucket Size
        Unsigned 16-bit integer
    alcap.vbwt.bucket_size.fw  Peak Forward CPS Bucket Size
        Unsigned 16-bit integer
    alcap.vbwt.max_size.bw  Backwards CPS Packet Size
        Unsigned 8-bit integer
    alcap.vbwt.max_size.fw  Forward CPS Packet Size
        Unsigned 8-bit integer

ACP133 Attribute Syntaxes (acp133)

    acp133.ACPLegacyFormat  ACPLegacyFormat
        Signed 32-bit integer
    acp133.ACPPreferredDelivery  ACPPreferredDelivery
        Unsigned 32-bit integer
    acp133.ALType  ALType
        Signed 32-bit integer
    acp133.AddressCapabilities  AddressCapabilities
        No value
    acp133.Addressees  Addressees
        Unsigned 32-bit integer
    acp133.Addressees_item  Addressees item
        String
        PrintableString_SIZE_1_55
    acp133.AlgorithmInformation  AlgorithmInformation
        No value
    acp133.Capability  Capability
        No value
    acp133.Classification  Classification
        Unsigned 32-bit integer
    acp133.Community  Community
        Unsigned 32-bit integer
    acp133.DLPolicy  DLPolicy
        No value
    acp133.DLSubmitPermission  DLSubmitPermission
        Unsigned 32-bit integer
    acp133.DistributionCode  DistributionCode
        String
    acp133.ExtendedContentType  ExtendedContentType
        Object Identifier
    acp133.GeneralNames  GeneralNames
        Unsigned 32-bit integer
    acp133.JPEG  JPEG
        Byte array
    acp133.Kmid  Kmid
        Byte array
    acp133.MLReceiptPolicy  MLReceiptPolicy
        Unsigned 32-bit integer
    acp133.MonthlyUKMs  MonthlyUKMs
        No value
    acp133.OnSupported  OnSupported
        Byte array
    acp133.RIParameters  RIParameters
        No value
    acp133.Remarks  Remarks
        Unsigned 32-bit integer
    acp133.Remarks_item  Remarks item
        String
        PrintableString
    acp133.UKMEntry  UKMEntry
        No value
    acp133.acp127-nn  acp127-nn
        Boolean
    acp133.acp127-pn  acp127-pn
        Boolean
    acp133.acp127-tn  acp127-tn
        Boolean
    acp133.address  address
        No value
        ORAddress
    acp133.algorithm_identifier  algorithm-identifier
        No value
        AlgorithmIdentifier
    acp133.capabilities  capabilities
        Unsigned 32-bit integer
        SET_OF_Capability
    acp133.classification  classification
        Unsigned 32-bit integer
    acp133.content_types  content-types
        Unsigned 32-bit integer
        SET_OF_ExtendedContentType
    acp133.conversion_with_loss_prohibited  conversion-with-loss-prohibited
        Unsigned 32-bit integer
    acp133.date  date
        String
        UTCTime
    acp133.description  description
        String
        GeneralString
    acp133.disclosure_of_other_recipients  disclosure-of-other-recipients
        Unsigned 32-bit integer
    acp133.edition  edition
        Signed 32-bit integer
        INTEGER
    acp133.encoded_information_types_constraints  encoded-information-types-constraints
        No value
        EncodedInformationTypesConstraints
    acp133.encrypted  encrypted
        Byte array
        BIT_STRING
    acp133.further_dl_expansion_allowed  further-dl-expansion-allowed
        Boolean
        BOOLEAN
    acp133.implicit_conversion_prohibited  implicit-conversion-prohibited
        Unsigned 32-bit integer
        T_implicit_conversion_prohibited
    acp133.inAdditionTo  inAdditionTo
        Unsigned 32-bit integer
        SEQUENCE_OF_GeneralNames
    acp133.individual  individual
        No value
        ORName
    acp133.insteadOf  insteadOf
        Unsigned 32-bit integer
        SEQUENCE_OF_GeneralNames
    acp133.kmid  kmid
        Byte array
    acp133.maximum_content_length  maximum-content-length
        Unsigned 32-bit integer
        ContentLength
    acp133.member_of_dl  member-of-dl
        No value
        ORName
    acp133.member_of_group  member-of-group
        Unsigned 32-bit integer
        Name
    acp133.minimize  minimize
        Boolean
        BOOLEAN
    acp133.none  none
        No value
    acp133.originating_MTA_report  originating-MTA-report
        Signed 32-bit integer
    acp133.originator_certificate_selector  originator-certificate-selector
        No value
        CertificateAssertion
    acp133.originator_report  originator-report
        Signed 32-bit integer
    acp133.originator_requested_alternate_recipient_removed  originator-requested-alternate-recipient-removed
        Boolean
        BOOLEAN
    acp133.pattern_match  pattern-match
        No value
        ORNamePattern
    acp133.priority  priority
        Signed 32-bit integer
    acp133.proof_of_delivery  proof-of-delivery
        Signed 32-bit integer
    acp133.rI  rI
        String
        PrintableString
    acp133.rIType  rIType
        Unsigned 32-bit integer
    acp133.recipient_certificate_selector  recipient-certificate-selector
        No value
        CertificateAssertion
    acp133.removed  removed
        No value
    acp133.replaced  replaced
        Unsigned 32-bit integer
        RequestedDeliveryMethod
    acp133.report_from_dl  report-from-dl
        Signed 32-bit integer
        T_report_from_dl
    acp133.report_propagation  report-propagation
        Signed 32-bit integer
        T_report_propagation
    acp133.requested_delivery_method  requested-delivery-method
        Unsigned 32-bit integer
    acp133.return_of_content  return-of-content
        Unsigned 32-bit integer
    acp133.sHD  sHD
        String
        PrintableString
    acp133.security_labels  security-labels
        Unsigned 32-bit integer
        SecurityContext
    acp133.tag  tag
        No value
        PairwiseTag
    acp133.token_encryption_algorithm_preference  token-encryption-algorithm-preference
        Unsigned 32-bit integer
        SEQUENCE_OF_AlgorithmInformation
    acp133.token_signature_algorithm_preference  token-signature-algorithm-preference
        Unsigned 32-bit integer
        SEQUENCE_OF_AlgorithmInformation
    acp133.ukm  ukm
        Byte array
        OCTET_STRING
    acp133.ukm_entries  ukm-entries
        Unsigned 32-bit integer
        SEQUENCE_OF_UKMEntry
    acp133.unchanged  unchanged
        No value

AIM Administrative (aim_admin)

    aim_admin.acctinfo.code  Account Information Request Code
        Unsigned 16-bit integer
    aim_admin.acctinfo.permissions  Account Permissions
        Unsigned 16-bit integer
    aim_admin.confirm_status  Confirmation status
        Unsigned 16-bit integer

AIM Advertisements (aim_adverts)

AIM Buddylist Service (aim_buddylist)

    aim_buddylist.userinfo.warninglevel  Warning Level
        Unsigned 16-bit integer

AIM Chat Navigation (aim_chatnav)

AIM Chat Service (aim_chat)

AIM Directory Search (aim_dir)

AIM E-mail (aim_email)

AIM Generic Service (aim_generic)

    aim_generic.client_verification.hash  Client Verification MD5 Hash
        Byte array
    aim_generic.client_verification.length  Client Verification Request Length
        Unsigned 32-bit integer
    aim_generic.client_verification.offset  Client Verification Request Offset
        Unsigned 32-bit integer
    aim_generic.evil.new_warn_level  New warning level
        Unsigned 16-bit integer
    aim_generic.ext_status.data  Extended Status Data
        Byte array
    aim_generic.ext_status.flags  Extended Status Flags
        Unsigned 8-bit integer
    aim_generic.ext_status.length  Extended Status Length
        Unsigned 8-bit integer
    aim_generic.ext_status.type  Extended Status Type
        Unsigned 16-bit integer
    aim_generic.idle_time  Idle time (seconds)
        Unsigned 32-bit integer
    aim_generic.migrate.numfams  Number of families to migrate
        Unsigned 16-bit integer
    aim_generic.motd.motdtype  MOTD Type
        Unsigned 16-bit integer
    aim_generic.privilege_flags  Privilege flags
        Unsigned 32-bit integer
    aim_generic.privilege_flags.allow_idle  Allow other users to see idle time
        Boolean
    aim_generic.privilege_flags.allow_member  Allow other users to see how long account has been a member
        Boolean
    aim_generic.ratechange.msg  Rate Change Message
        Unsigned 16-bit integer
    aim_generic.rateinfo.class.alertlevel  Alert Level
        Unsigned 32-bit integer
    aim_generic.rateinfo.class.clearlevel  Clear Level
        Unsigned 32-bit integer
    aim_generic.rateinfo.class.currentlevel  Current Level
        Unsigned 32-bit integer
    aim_generic.rateinfo.class.curstate  Current State
        Unsigned 8-bit integer
    aim_generic.rateinfo.class.disconnectlevel  Disconnect Level
        Unsigned 32-bit integer
    aim_generic.rateinfo.class.id  Class ID
        Unsigned 16-bit integer
    aim_generic.rateinfo.class.lasttime  Last Time
        Unsigned 32-bit integer
    aim_generic.rateinfo.class.limitlevel  Limit Level
        Unsigned 32-bit integer
    aim_generic.rateinfo.class.maxlevel  Max Level
        Unsigned 32-bit integer
    aim_generic.rateinfo.class.numpairs  Number of Family/Subtype pairs
        Unsigned 16-bit integer
    aim_generic.rateinfo.class.window_size  Window Size
        Unsigned 32-bit integer
    aim_generic.rateinfo.numclasses  Number of Rateinfo Classes
        Unsigned 16-bit integer
    aim_generic.rateinfoack.class  Acknowledged Rate Class
        Unsigned 16-bit integer
    aim_generic.selfinfo.warn_level  Warning level
        Unsigned 16-bit integer
    aim_generic.servicereq.service  Requested Service
        Unsigned 16-bit integer

AIM ICQ (aim_icq)

    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 Invitation Service (aim_invitation)

AIM Location (aim_location)

    aim_location.buddyname  Buddy Name
        String
    aim_location.buddynamelen  Buddyname len
        Unsigned 8-bit integer
    aim_location.snac.request_user_info.infotype  Infotype
        Unsigned 16-bit integer
    aim_location.userinfo.warninglevel  Warning Level
        Unsigned 16-bit integer

AIM Messaging (aim_messaging)

    aim_messaging.channelid  Message Channel ID
        Unsigned 16-bit integer
    aim_messaging.clienterr.client_caps_flags  Client Capabilities Flags
        Unsigned 32-bit integer
    aim_messaging.clienterr.protocol_version  Version
        Unsigned 16-bit integer
    aim_messaging.clienterr.reason  Reason
        Unsigned 16-bit integer
    aim_messaging.evil.new_warn_level  New warning level
        Unsigned 16-bit integer
    aim_messaging.evil.warn_level  Old warning level
        Unsigned 16-bit integer
    aim_messaging.evilreq.origin  Send Evil Bit As
        Unsigned 16-bit integer
    aim_messaging.icbm.channel  Channel
        Unsigned 16-bit integer
    aim_messaging.icbm.extended_data.message.flags  Message Flags
        Unsigned 8-bit integer
    aim_messaging.icbm.extended_data.message.flags.auto  Auto Message
        Boolean
    aim_messaging.icbm.extended_data.message.flags.normal  Normal Message
        Boolean
    aim_messaging.icbm.extended_data.message.priority_code  Priority Code
        Unsigned 16-bit integer
    aim_messaging.icbm.extended_data.message.status_code  Status Code
        Unsigned 16-bit integer
    aim_messaging.icbm.extended_data.message.text  Text
        String
    aim_messaging.icbm.extended_data.message.text_length  Text Length
        Unsigned 16-bit integer
    aim_messaging.icbm.extended_data.message.type  Message Type
        Unsigned 8-bit integer
    aim_messaging.icbm.flags  Message Flags
        Unsigned 32-bit integer
    aim_messaging.icbm.max_receiver_warnlevel  max receiver warn level
        Unsigned 16-bit integer
    aim_messaging.icbm.max_sender_warn-level  Max sender warn level
        Unsigned 16-bit integer
    aim_messaging.icbm.max_snac  Max SNAC Size
        Unsigned 16-bit integer
    aim_messaging.icbm.min_msg_interval  Minimum message interval (milliseconds)
        Unsigned 32-bit integer
    aim_messaging.icbm.rendezvous.extended_data.message.flags.multi  Multiple Recipients Message
        Boolean
    aim_messaging.icbmcookie  ICBM Cookie
        Byte array
    aim_messaging.notification.channel  Notification Channel
        Unsigned 16-bit integer
    aim_messaging.notification.cookie  Notification Cookie
        Byte array
    aim_messaging.notification.type  Notification Type
        Unsigned 16-bit integer
    aim_messaging.rendezvous.msg_type  Message Type
        Unsigned 16-bit integer
    aim_messaging.rendezvous_nak  Rendezvous NAK reason
        Unsigned 16-bit integer
    aim_messaging.rendezvous_nak_length  Rendezvous NAK reason length
        Unsigned 16-bit integer

AIM OFT (aim_oft)

AIM Popup (aim_popup)

AIM Privacy Management Service (aim_bos)

    aim_bos.data  Data
        Byte array
    aim_bos.userclass  User class
        Unsigned 32-bit integer

AIM Server Side Info (aim_ssi)

    aim_ssi.fnac.allow_auth_flag  Allow flag
        Unsigned 8-bit integer
    aim_ssi.fnac.auth_unkn  Unknown
        Unsigned 16-bit integer
    aim_ssi.fnac.bid  SSI Buddy ID
        Unsigned 16-bit integer
    aim_ssi.fnac.buddyname  Buddy Name
        String
    aim_ssi.fnac.buddyname_len  SSI Buddy Name length
        Unsigned 16-bit integer
    aim_ssi.fnac.buddyname_len8  SSI Buddy Name length
        Unsigned 8-bit integer
    aim_ssi.fnac.data  SSI Buddy Data
        Unsigned 16-bit integer
    aim_ssi.fnac.gid  SSI Buddy Group ID
        Unsigned 16-bit integer
    aim_ssi.fnac.last_change_time  SSI Last Change Time
        Date/Time stamp
    aim_ssi.fnac.numitems  SSI Object count
        Unsigned 16-bit integer
    aim_ssi.fnac.reason  Reason Message
        String
    aim_ssi.fnac.reason_len  Reason Message length
        Unsigned 16-bit integer
    aim_ssi.fnac.tlvlen  SSI TLV Len
        Unsigned 16-bit integer
    aim_ssi.fnac.type  SSI Buddy type
        Unsigned 16-bit integer
    aim_ssi.fnac.version  SSI Version
        Unsigned 8-bit integer

AIM Server Side Themes (aim_sst)

    aim_sst.icon  Icon
        Byte array
    aim_sst.icon_size  Icon Size
        Unsigned 16-bit integer
    aim_sst.md5  MD5 Hash
        Byte array
    aim_sst.md5.size  MD5 Hash Size
        Unsigned 8-bit integer
    aim_sst.ref_num  Reference Number
        Unsigned 16-bit integer
    aim_sst.unknown  Unknown Data
        Byte array

AIM Signon (aim_signon)

    aim_signon.challenge  Signon challenge
        String
    aim_signon.challengelen  Signon challenge length
        Unsigned 16-bit integer
    aim_signon.infotype  Infotype
        Unsigned 16-bit integer

AIM Statistics (aim_stats)

AIM Translate (aim_translate)

AIM User Lookup (aim_lookup)

    aim_lookup.email  Email address looked for
        String
        Email address

AMS (ams)

    ams.ads_adddn_req  ADS Add Device Notification Request
        No value
    ams.ads_adddn_res  ADS Add Device Notification Response
        No value
    ams.ads_cblength  CbLength
        Unsigned 32-bit integer
    ams.ads_cbreadlength  CBReadLength
        Unsigned 32-bit integer
    ams.ads_cbwritelength  CBWriteLength
        Unsigned 32-bit integer
    ams.ads_cmpmax  Cmp Mad
        No value
    ams.ads_cmpmin  Cmp Min
        No value
    ams.ads_cycletime  Cycle Time
        Unsigned 32-bit integer
    ams.ads_data  Data
        No value
    ams.ads_deldn_req  ADS Delete Device Notification Request
        No value
    ams.ads_deldn_res  ADS Delete Device Notification Response
        No value
    ams.ads_devicename  Device Name
        String
    ams.ads_devicestate  DeviceState
        Unsigned 16-bit integer
    ams.ads_dn_req  ADS Device Notification Request
        No value
    ams.ads_dn_res  ADS Device Notification Response
        No value
    ams.ads_indexgroup  IndexGroup
        Unsigned 32-bit integer
    ams.ads_indexoffset  IndexOffset
        Unsigned 32-bit integer
    ams.ads_invokeid  InvokeId
        Unsigned 32-bit integer
    ams.ads_maxdelay  Max Delay
        Unsigned 32-bit integer
    ams.ads_noteattrib  InvokeId
        No value
    ams.ads_noteblocks  InvokeId
        No value
    ams.ads_noteblockssample  Notification Sample
        No value
    ams.ads_noteblocksstamp  Notification Stamp
        No value
    ams.ads_noteblocksstamps  Count of Stamps
        Unsigned 32-bit integer
    ams.ads_notificationhandle  NotificationHandle
        Unsigned 32-bit integer
    ams.ads_read_req  ADS Read Request
        No value
    ams.ads_read_res  ADS Read Response
        No value
    ams.ads_readdinfo_req  ADS Read Device Info Request
        No value
    ams.ads_readdinfo_res  ADS Read Device Info Response
        No value
    ams.ads_readstate_req  ADS Read State Request
        No value
    ams.ads_readstate_res  ADS Read State Response
        No value
    ams.ads_readwrite_req  ADS ReadWrite Request
        No value
    ams.ads_readwrite_res  ADS ReadWrite Response
        No value
    ams.ads_samplecnt  Count of Stamps
        Unsigned 32-bit integer
    ams.ads_state  AdsState
        Unsigned 16-bit integer
    ams.ads_timestamp  Time Stamp
        Unsigned 64-bit integer
    ams.ads_transmode  Trans Mode
        Unsigned 32-bit integer
    ams.ads_version  ADS Version
        Unsigned 32-bit integer
    ams.ads_versionbuild  ADS Version Build
        Unsigned 16-bit integer
    ams.ads_versionrevision  ADS Minor Version
        Unsigned 8-bit integer
    ams.ads_versionversion  ADS Major Version
        Unsigned 8-bit integer
    ams.ads_write_req  ADS Write Request
        No value
    ams.ads_write_res  ADS Write Response
        No value
    ams.ads_writectrl_req  ADS Write Ctrl Request
        No value
    ams.ads_writectrl_res  ADS Write Ctrl Response
        No value
    ams.adsresult  Result
        Unsigned 32-bit integer
    ams.cbdata  cbData
        Unsigned 32-bit integer
    ams.cmdid  CmdId
        Unsigned 16-bit integer
    ams.data  Data
        No value
    ams.errorcode  ErrorCode
        Unsigned 32-bit integer
    ams.invokeid  InvokeId
        Unsigned 32-bit integer
    ams.sendernetid  AMS Sender Net Id
        String
    ams.senderport  AMS Sender port
        Unsigned 16-bit integer
    ams.state_adscmd  ADS COMMAND
        Boolean
    ams.state_broadcast  BROADCAST
        Boolean
    ams.state_highprio  HIGH PRIORITY COMMAND
        Boolean
    ams.state_initcmd  INIT COMMAND
        Boolean
    ams.state_noreturn  NO RETURN
        Boolean
    ams.state_response  RESPONSE
        Boolean
    ams.state_syscmd  SYSTEM COMMAND
        Boolean
    ams.state_timestampadded  TIMESTAMP ADDED
        Boolean
    ams.state_udp  UDP COMMAND
        Boolean
    ams.stateflags  StateFlags
        Unsigned 16-bit integer
    ams.targetnetid  AMS Target Net Id
        String
    ams.targetport  AMS Target port
        Unsigned 16-bit integer

ANSI A-I/F BSMAP (ansi_a_bsmap)

    ansi_a_bsmap.a2p_bearer_ipv4_addr  A2p Bearer IP Address
        IPv4 address
    ansi_a_bsmap.a2p_bearer_ipv6_addr  A2p Bearer IP Address
        IPv6 address
    ansi_a_bsmap.a2p_bearer_udp_port  A2p Bearer UDP Port
        Unsigned 16-bit integer
    ansi_a_bsmap.anchor_pdsn_ip_addr  Anchor PDSN Address
        IPv4 address
        IP Address
    ansi_a_bsmap.anchor_pp_ip_addr  Anchor P-P Address
        IPv4 address
        IP Address
    ansi_a_bsmap.cause_1  Cause
        Unsigned 8-bit integer
    ansi_a_bsmap.cause_2  Cause
        Unsigned 16-bit integer
    ansi_a_bsmap.cell_ci  Cell CI
        Unsigned 16-bit integer
    ansi_a_bsmap.cell_lac  Cell LAC
        Unsigned 16-bit integer
    ansi_a_bsmap.cell_mscid  Cell MSCID
        Unsigned 24-bit integer
    ansi_a_bsmap.cld_party_ascii_num  Called Party ASCII Number
        String
    ansi_a_bsmap.cld_party_bcd_num  Called Party BCD Number
        String
    ansi_a_bsmap.clg_party_ascii_num  Calling Party ASCII Number
        String
    ansi_a_bsmap.clg_party_bcd_num  Calling Party BCD Number
        String
    ansi_a_bsmap.dtap_msgtype  DTAP Message Type
        Unsigned 8-bit integer
    ansi_a_bsmap.elem_id  Element ID
        Unsigned 8-bit integer
    ansi_a_bsmap.esn  ESN
        Unsigned 32-bit integer
    ansi_a_bsmap.imsi  IMSI
        String
    ansi_a_bsmap.len  Length
        Unsigned 8-bit integer
    ansi_a_bsmap.meid  MEID
        String
    ansi_a_bsmap.meid_configured  Is MEID configured
        Boolean
    ansi_a_bsmap.min  MIN
        String
    ansi_a_bsmap.msgtype  BSMAP Message Type
        Unsigned 8-bit integer
    ansi_a_bsmap.none  Sub tree
        No value
    ansi_a_bsmap.pdsn_ip_addr  PDSN IP Address
        IPv4 address
        IP Address
    ansi_a_bsmap.s_pdsn_ip_addr  Source PDSN Address
        IPv4 address
        IP Address
    ansi_a_bsmap.so  Service Option
        Unsigned 16-bit integer

ANSI A-I/F DTAP (ansi_a_dtap)

ANSI IS-637-A (SMS) Teleservice Layer (ansi_637_tele)

    ansi_637_tele.len  Length
        Unsigned 8-bit integer
    ansi_637_tele.msg_id  Message ID
        Unsigned 24-bit integer
    ansi_637_tele.msg_rsvd  Reserved
        Unsigned 24-bit integer
    ansi_637_tele.msg_status  Message Status
        Unsigned 8-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 IS-637-A (SMS) Transport Layer (ansi_637_trans)

    ansi_637_trans.bin_addr  Binary Address
        Byte array
    ansi_637_trans.len  Length
        Unsigned 8-bit integer
    ansi_637_trans.msg_type  Message Type
        Unsigned 24-bit integer
    ansi_637_trans.param_id  Transport Param ID
        Unsigned 8-bit integer

ANSI IS-683 (OTA (Mobile)) (ansi_683)

    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 IS-801 (Location Services (PLD)) (ansi_801)

    ansi_801.add_dopp_req  Additional Doppler terms requested (ADD_DOPP_REQ)
        Boolean
    ansi_801.az_el_req  Azimuth and elevation angle requested (AZ_EL_REQ)
        Boolean
    ansi_801.bad_sv_present  Bad GPS satellites present (BAD_SV_PRESENT)
        Boolean
    ansi_801.bad_sv_prn_num  Satellite PRN number (SV_PRN_NUM)
        Unsigned 8-bit integer
    ansi_801.clock_bias  Clock bias (CLOCK_BIAS)
        Signed 24-bit integer
    ansi_801.clock_drift  Clock drift (CLOCK_DRIFT)
        Signed 16-bit integer
    ansi_801.clock_incl  Clock information included (CLOCK_INCL)
        Boolean
    ansi_801.code_ph_par_req  Code phase parameters requested (CODE_PH_PAR_REQ)
        Boolean
    ansi_801.dopp_req  Doppler (0th order) term requested (DOPP_REQ)
        Boolean
    ansi_801.fix_type  Fix type (FIX_TYPE)
        Boolean
    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.heading  Heading (HEADING)
        Single-precision floating point
    ansi_801.height  Height (HEIGHT)
        Signed 16-bit integer
    ansi_801.height_incl  Height information included (HEIGHT_INCL)
        Boolean
    ansi_801.lat  Latitude (LAT)
        Single-precision floating point
    ansi_801.loc_uncrtnty_a  Std dev of axis along angle specified for pos uncertainty (LOC_UNCRTNTY_A)
        Unsigned 8-bit integer
    ansi_801.loc_uncrtnty_ang  Angle of axis with respect to True North for pos uncertainty (LOC_UNCRTNTY_ANG)
        Single-precision floating point
    ansi_801.loc_uncrtnty_p  Std dev of axis perpendicular to angle specified for pos uncertainty (LOC_UNCRTNTY_P)
        Unsigned 8-bit integer
    ansi_801.loc_uncrtnty_v  Std dev of vertical error for pos uncertainty (LOC_UNCRTNTY_V)
        Unsigned 8-bit integer
    ansi_801.long  Longitude (LONG)
        Single-precision floating point
    ansi_801.num_bad_sv  Number of bad GPS satellites (NUM_BAD_SV)
        Unsigned 8-bit integer
    ansi_801.num_fixes  Number of fixes (NUM_FIXES)
        Unsigned 16-bit integer
    ansi_801.offset_req  Offset requested (OFFSET_REQ)
        Boolean
    ansi_801.pref_resp_qual  Preferred response quality (PREF_RESP_QUAL)
        Unsigned 8-bit integer
    ansi_801.reerved_bits  Reserved bit(s)
        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_801.t_betw_fixes  Time between fixes (T_BETW_FIXES)
        Unsigned 8-bit integer
    ansi_801.time_ref_cdma  CDMA system time at the time the solution is valid (TIME_REF_CDMA)
        Unsigned 32-bit integer
    ansi_801.velocity_hor  Horizontal velocity magnitude (VELOCITY_HOR)
        Single-precision floating point
    ansi_801.velocity_incl  Velocity information included (VELOCITY_INCL)
        Boolean
    ansi_801.velocity_ver  Vertical velocity (VELOCITY_VER)
        Single-precision floating point

ANSI Mobile Application Part (ansi_map)

    ansi_map.CDMABandClassInformation  CDMABandClassInformation
        No value
    ansi_map.CDMAChannelNumberList_item  CDMAChannelNumberList item
        No value
    ansi_map.CDMACodeChannelInformation  CDMACodeChannelInformation
        No value
    ansi_map.CDMAConnectionReferenceList_item  CDMAConnectionReferenceList item
        No value
    ansi_map.CDMAPSMMList_item  CDMAPSMMList item
        No value
    ansi_map.CDMAServiceOption  CDMAServiceOption
        Byte array
    ansi_map.CDMATargetMAHOInformation  CDMATargetMAHOInformation
        No value
    ansi_map.CDMATargetMeasurementInformation  CDMATargetMeasurementInformation
        No value
    ansi_map.CallRecoveryID  CallRecoveryID
        No value
    ansi_map.DataAccessElementList_item  DataAccessElementList item
        No value
    ansi_map.DataUpdateResult  DataUpdateResult
        No value
    ansi_map.ModificationRequest  ModificationRequest
        No value
    ansi_map.ModificationResult  ModificationResult
        Unsigned 32-bit integer
    ansi_map.PACA_Level  PACA Level
        Unsigned 8-bit integer
    ansi_map.ServiceDataAccessElement  ServiceDataAccessElement
        No value
    ansi_map.ServiceDataResult  ServiceDataResult
        No value
    ansi_map.TargetMeasurementInformation  TargetMeasurementInformation
        No value
    ansi_map.TerminationList_item  TerminationList item
        Unsigned 32-bit integer
    ansi_map.aCGDirective  aCGDirective
        No value
    ansi_map.aKeyProtocolVersion  aKeyProtocolVersion
        Byte array
    ansi_map.accessDeniedReason  accessDeniedReason
        Unsigned 32-bit integer
    ansi_map.acgencountered  acgencountered
        Byte array
    ansi_map.actionCode  actionCode
        Unsigned 8-bit integer
    ansi_map.addService  addService
        No value
    ansi_map.addServiceRes  addServiceRes
        No value
    ansi_map.alertCode  alertCode
        Byte array
    ansi_map.alertResult  alertResult
        Unsigned 8-bit integer
    ansi_map.alertcode.alertaction  Alert Action
        Unsigned 8-bit integer
    ansi_map.alertcode.cadence  Cadence
        Unsigned 8-bit integer
    ansi_map.alertcode.pitch  Pitch
        Unsigned 8-bit integer
    ansi_map.allOrNone  allOrNone
        Unsigned 32-bit integer
    ansi_map.analogRedirectInfo  analogRedirectInfo
        Byte array
    ansi_map.analogRedirectRecord  analogRedirectRecord
        No value
    ansi_map.analyzedInformation  analyzedInformation
        No value
    ansi_map.analyzedInformationRes  analyzedInformationRes
        No value
    ansi_map.announcementCode1  announcementCode1
        Byte array
        AnnouncementCode
    ansi_map.announcementCode2  announcementCode2
        Byte array
        AnnouncementCode
    ansi_map.announcementList  announcementList
        No value
    ansi_map.announcementcode.class  Tone
        Unsigned 8-bit integer
    ansi_map.announcementcode.cust_ann  Custom Announcement
        Unsigned 8-bit integer
    ansi_map.announcementcode.std_ann  Standard Announcement
        Unsigned 8-bit integer
    ansi_map.announcementcode.tone  Tone
        Unsigned 8-bit integer
    ansi_map.authenticationAlgorithmVersion  authenticationAlgorithmVersion
        Byte array
    ansi_map.authenticationCapability  authenticationCapability
        Unsigned 8-bit integer
    ansi_map.authenticationData  authenticationData
        Byte array
    ansi_map.authenticationDirective  authenticationDirective
        No value
    ansi_map.authenticationDirectiveForward  authenticationDirectiveForward
        No value
    ansi_map.authenticationDirectiveForwardRes  authenticationDirectiveForwardRes
        No value
    ansi_map.authenticationDirectiveRes  authenticationDirectiveRes
        No value
    ansi_map.authenticationFailureReport  authenticationFailureReport
        No value
    ansi_map.authenticationFailureReportRes  authenticationFailureReportRes
        No value
    ansi_map.authenticationRequest  authenticationRequest
        No value
    ansi_map.authenticationRequestRes  authenticationRequestRes
        No value
    ansi_map.authenticationResponse  authenticationResponse
        Byte array
    ansi_map.authenticationResponseBaseStation  authenticationResponseBaseStation
        Byte array
    ansi_map.authenticationResponseReauthentication  authenticationResponseReauthentication
        Byte array
    ansi_map.authenticationResponseUniqueChallenge  authenticationResponseUniqueChallenge
        Byte array
    ansi_map.authenticationStatusReport  authenticationStatusReport
        No value
    ansi_map.authenticationStatusReportRes  authenticationStatusReportRes
        No value
    ansi_map.authorizationDenied  authorizationDenied
        Unsigned 32-bit integer
    ansi_map.authorizationPeriod  authorizationPeriod
        Byte array
    ansi_map.authorizationperiod.period  Period
        Unsigned 8-bit integer
    ansi_map.availabilityType  availabilityType
        Unsigned 8-bit integer
    ansi_map.baseStationChallenge  baseStationChallenge
        No value
    ansi_map.baseStationChallengeRes  baseStationChallengeRes
        No value
    ansi_map.baseStationManufacturerCode  baseStationManufacturerCode
        Byte array
    ansi_map.baseStationPartialKey  baseStationPartialKey
        Byte array
    ansi_map.bcd_digits  BCD digits
        String
    ansi_map.billingID  billingID
        Byte array
    ansi_map.blocking  blocking
        No value
    ansi_map.borderCellAccess  borderCellAccess
        Unsigned 32-bit integer
    ansi_map.bsmcstatus  bsmcstatus
        Unsigned 8-bit integer
    ansi_map.bulkDeregistration  bulkDeregistration
        No value
    ansi_map.bulkDisconnection  bulkDisconnection
        No value
    ansi_map.callControlDirective  callControlDirective
        No value
    ansi_map.callControlDirectiveRes  callControlDirectiveRes
        No value
    ansi_map.callHistoryCount  callHistoryCount
        Unsigned 32-bit integer
    ansi_map.callHistoryCountExpected  callHistoryCountExpected
        Unsigned 32-bit integer
    ansi_map.callRecoveryIDList  callRecoveryIDList
        Unsigned 32-bit integer
    ansi_map.callRecoveryReport  callRecoveryReport
        No value
    ansi_map.callStatus  callStatus
        Unsigned 32-bit integer
    ansi_map.callTerminationReport  callTerminationReport
        No value
    ansi_map.callingFeaturesIndicator  callingFeaturesIndicator
        Byte array
    ansi_map.callingPartyCategory  callingPartyCategory
        Byte array
    ansi_map.callingPartyName  callingPartyName
        Byte array
    ansi_map.callingPartyNumberDigits1  callingPartyNumberDigits1
        Byte array
    ansi_map.callingPartyNumberDigits2  callingPartyNumberDigits2
        Byte array
    ansi_map.callingPartyNumberString1  callingPartyNumberString1
        No value
    ansi_map.callingPartyNumberString2  callingPartyNumberString2
        No value
    ansi_map.callingPartySubaddress  callingPartySubaddress
        Byte array
    ansi_map.callingfeaturesindicator.3wcfa  Three-Way Calling FeatureActivity, 3WC-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.ahfa  Answer Hold: FeatureActivity AH-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.ccsfa  CDMA-Concurrent Service:FeatureActivity. CCS-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.cdfa  Call Delivery: FeatureActivity, CD-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.cfbafa  Call Forwarding Busy FeatureActivity, CFB-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.cfnafa  Call Forwarding No Answer FeatureActivity, CFNA-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.cfufa  Call Forwarding Unconditional FeatureActivity, CFU-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.cnip1fa  One number (network-provided only) Calling Number Identification Presentation: FeatureActivity CNIP1-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.cnip2fa  Two number (network-provided and user-provided) Calling Number Identification Presentation: FeatureActivity CNIP2-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.cnirfa  Calling Number Identification Restriction: FeatureActivity CNIR-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.cniroverfa  Calling Number Identification Restriction Override FeatureActivity CNIROver-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.cpdfa  CDMA-Packet Data Service: FeatureActivity. CPDS-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.ctfa  Call Transfer: FeatureActivity, CT-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.cwfa  Call Waiting: FeatureActivity, CW-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.dpfa  Data Privacy Feature Activity DP-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.epefa  TDMA Enhanced Privacy and Encryption:FeatureActivity.TDMA EPE-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.pcwfa  Priority Call Waiting FeatureActivity PCW-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.uscfmsfa  USCF divert to mobile station provided DN:FeatureActivity.USCFms-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.uscfvmfa  USCF divert to voice mail: FeatureActivity USCFvm-FA
        Unsigned 8-bit integer
    ansi_map.callingfeaturesindicator.vpfa  Voice Privacy FeatureActivity, VP-FA
        Unsigned 8-bit integer
    ansi_map.cancellationDenied  cancellationDenied
        Unsigned 32-bit integer
    ansi_map.cancellationType  cancellationType
        Unsigned 8-bit integer
    ansi_map.carrierDigits  carrierDigits
        Byte array
    ansi_map.caveKey  caveKey
        Byte array
    ansi_map.cdma2000HandoffInvokeIOSData  cdma2000HandoffInvokeIOSData
        No value
    ansi_map.cdma2000HandoffResponseIOSData  cdma2000HandoffResponseIOSData
        No value
    ansi_map.cdma2000MobileSupportedCapabilities  cdma2000MobileSupportedCapabilities
        Byte array
    ansi_map.cdmaBandClass  cdmaBandClass
        Byte array
    ansi_map.cdmaBandClassList  cdmaBandClassList
        Unsigned 32-bit integer
    ansi_map.cdmaCallMode  cdmaCallMode
        Byte array
    ansi_map.cdmaChannelData  cdmaChannelData
        Byte array
    ansi_map.cdmaChannelNumber  cdmaChannelNumber
        Byte array
    ansi_map.cdmaChannelNumber2  cdmaChannelNumber2
        Byte array
        CDMAChannelNumber
    ansi_map.cdmaChannelNumberList  cdmaChannelNumberList
        Unsigned 32-bit integer
    ansi_map.cdmaCodeChannel  cdmaCodeChannel
        Byte array
    ansi_map.cdmaCodeChannelList  cdmaCodeChannelList
        Unsigned 32-bit integer
    ansi_map.cdmaConnectionReference  cdmaConnectionReference
        Byte array
    ansi_map.cdmaConnectionReferenceInformation  cdmaConnectionReferenceInformation
        No value
    ansi_map.cdmaConnectionReferenceInformation2  cdmaConnectionReferenceInformation2
        No value
        CDMAConnectionReferenceInformation
    ansi_map.cdmaConnectionReferenceList  cdmaConnectionReferenceList
        Unsigned 32-bit integer
    ansi_map.cdmaMSMeasuredChannelIdentity  cdmaMSMeasuredChannelIdentity
        Byte array
    ansi_map.cdmaMobileCapabilities  cdmaMobileCapabilities
        Byte array
    ansi_map.cdmaMobileProtocolRevision  cdmaMobileProtocolRevision
        Byte array
    ansi_map.cdmaNetworkIdentification  cdmaNetworkIdentification
        Byte array
    ansi_map.cdmaPSMMCount  cdmaPSMMCount
        Byte array
    ansi_map.cdmaPSMMList  cdmaPSMMList
        Unsigned 32-bit integer
    ansi_map.cdmaPilotPN  cdmaPilotPN
        Byte array
    ansi_map.cdmaPilotStrength  cdmaPilotStrength
        Byte array
    ansi_map.cdmaPowerCombinedIndicator  cdmaPowerCombinedIndicator
        Byte array
    ansi_map.cdmaPrivateLongCodeMask  cdmaPrivateLongCodeMask
        Byte array
    ansi_map.cdmaRedirectRecord  cdmaRedirectRecord
        No value
    ansi_map.cdmaSearchParameters  cdmaSearchParameters
        Byte array
    ansi_map.cdmaSearchWindow  cdmaSearchWindow
        Byte array
    ansi_map.cdmaServiceConfigurationRecord  cdmaServiceConfigurationRecord
        Byte array
    ansi_map.cdmaServiceOption  cdmaServiceOption
        Byte array
    ansi_map.cdmaServiceOptionConnectionIdentifier  cdmaServiceOptionConnectionIdentifier
        Byte array
    ansi_map.cdmaServiceOptionList  cdmaServiceOptionList
        Unsigned 32-bit integer
    ansi_map.cdmaServingOneWayDelay  cdmaServingOneWayDelay
        Byte array
    ansi_map.cdmaServingOneWayDelay2  cdmaServingOneWayDelay2
        Byte array
    ansi_map.cdmaSignalQuality  cdmaSignalQuality
        Byte array
    ansi_map.cdmaSlotCycleIndex  cdmaSlotCycleIndex
        Byte array
    ansi_map.cdmaState  cdmaState
        Byte array
    ansi_map.cdmaStationClassMark  cdmaStationClassMark
        Byte array
    ansi_map.cdmaStationClassMark2  cdmaStationClassMark2
        Byte array
    ansi_map.cdmaTargetMAHOList  cdmaTargetMAHOList
        Unsigned 32-bit integer
    ansi_map.cdmaTargetMAHOList2  cdmaTargetMAHOList2
        Unsigned 32-bit integer
        CDMATargetMAHOList
    ansi_map.cdmaTargetMeasurementList  cdmaTargetMeasurementList
        Unsigned 32-bit integer
    ansi_map.cdmaTargetOneWayDelay  cdmaTargetOneWayDelay
        Byte array
    ansi_map.cdmacallmode.amps  Call Mode
        Boolean
    ansi_map.cdmacallmode.cdma  Call Mode
        Boolean
    ansi_map.cdmacallmode.cls1  Call Mode
        Boolean
    ansi_map.cdmacallmode.cls10  Call Mode
        Boolean
    ansi_map.cdmacallmode.cls2  Call Mode
        Boolean
    ansi_map.cdmacallmode.cls3  Call Mode
        Boolean
    ansi_map.cdmacallmode.cls4  Call Mode
        Boolean
    ansi_map.cdmacallmode.cls5  Call Mode
        Boolean
    ansi_map.cdmacallmode.cls6  Call Mode
        Boolean
    ansi_map.cdmacallmode.cls7  Call Mode
        Boolean
    ansi_map.cdmacallmode.cls8  Call Mode
        Boolean
    ansi_map.cdmacallmode.cls9  Call Mode
        Boolean
    ansi_map.cdmacallmode.namps  Call Mode
        Boolean
    ansi_map.cdmachanneldata.band_cls  Band Class
        Unsigned 8-bit integer
    ansi_map.cdmachanneldata.cdma_ch_no  CDMA Channel Number
        Unsigned 16-bit integer
    ansi_map.cdmachanneldata.frameoffset  Frame Offset
        Unsigned 8-bit integer
    ansi_map.cdmachanneldata.lc_mask_b1  Long Code Mask LSB(byte 1)
        Unsigned 8-bit integer
        Long Code Mask (byte 1)LSB
    ansi_map.cdmachanneldata.lc_mask_b2  Long Code Mask (byte 2)
        Unsigned 8-bit integer
    ansi_map.cdmachanneldata.lc_mask_b3  Long Code Mask (byte 3)
        Unsigned 8-bit integer
    ansi_map.cdmachanneldata.lc_mask_b4  Long Code Mask (byte 4)
        Unsigned 8-bit integer
    ansi_map.cdmachanneldata.lc_mask_b5  Long Code Mask (byte 5)
        Unsigned 8-bit integer
    ansi_map.cdmachanneldata.lc_mask_b6  Long Code Mask (byte 6) MSB
        Unsigned 8-bit integer
        Long Code Mask MSB (byte 6)
    ansi_map.cdmachanneldata.nominal_pwr  Nominal Power
        Unsigned 8-bit integer
    ansi_map.cdmachanneldata.np_ext  NP EXT
        Boolean
    ansi_map.cdmachanneldata.nr_preamble  Number Preamble
        Unsigned 8-bit integer
    ansi_map.cdmaserviceoption  CDMAServiceOption
        Unsigned 16-bit integer
    ansi_map.cdmastationclassmark.dmi  Dual-mode Indicator(DMI)
        Boolean
    ansi_map.cdmastationclassmark.dtx  Analog Transmission: (DTX)
        Boolean
    ansi_map.cdmastationclassmark.pc  Power Class(PC)
        Unsigned 8-bit integer
    ansi_map.cdmastationclassmark.smi  Slotted Mode Indicator: (SMI)
        Boolean
    ansi_map.change  change
        Unsigned 32-bit integer
    ansi_map.changeFacilities  changeFacilities
        No value
    ansi_map.changeFacilitiesRes  changeFacilitiesRes
        No value
    ansi_map.changeService  changeService
        No value
    ansi_map.changeServiceAttributes  changeServiceAttributes
        Byte array
    ansi_map.changeServiceRes  changeServiceRes
        No value
    ansi_map.channelData  channelData
        Byte array
    ansi_map.channeldata.chno  Channel Number (CHNO)
        Unsigned 16-bit integer
    ansi_map.channeldata.dtx  Discontinuous Transmission Mode (DTX)
        Unsigned 8-bit integer
    ansi_map.channeldata.scc  SAT Color Code (SCC)
        Unsigned 8-bit integer
    ansi_map.channeldata.vmac  Voice Mobile Attenuation Code (VMAC)
        Unsigned 8-bit integer
    ansi_map.checkMEID  checkMEID
        No value
    ansi_map.checkMEIDRes  checkMEIDRes
        No value
    ansi_map.conditionallyDeniedReason  conditionallyDeniedReason
        Unsigned 32-bit integer
    ansi_map.conferenceCallingIndicator  conferenceCallingIndicator
        Byte array
    ansi_map.confidentialityModes  confidentialityModes
        Byte array
    ansi_map.confidentialitymodes.dp  DataPrivacy (DP) Confidentiality Status
        Boolean
    ansi_map.confidentialitymodes.se  Signaling Message Encryption (SE) Confidentiality Status
        Boolean
    ansi_map.confidentialitymodes.vp  Voice Privacy (VP) Confidentiality Status
        Boolean
    ansi_map.connectResource  connectResource
        No value
    ansi_map.connectionFailureReport  connectionFailureReport
        No value
    ansi_map.controlChannelData  controlChannelData
        Byte array
    ansi_map.controlChannelMode  controlChannelMode
        Unsigned 8-bit integer
    ansi_map.controlNetworkID  controlNetworkID
        Byte array
    ansi_map.controlType  controlType
        Byte array
    ansi_map.controlchanneldata.cmac  Control Mobile Attenuation Code (CMAC)
        Unsigned 8-bit integer
    ansi_map.controlchanneldata.dcc  Digital Color Code (DCC)
        Unsigned 8-bit integer
    ansi_map.controlchanneldata.ssdc1  Supplementary Digital Color Codes (SDCC1)
        Unsigned 8-bit integer
    ansi_map.controlchanneldata.ssdc2  Supplementary Digital Color Codes (SDCC2)
        Unsigned 8-bit integer
    ansi_map.countRequest  countRequest
        No value
    ansi_map.countRequestRes  countRequestRes
        No value
    ansi_map.countUpdateReport  countUpdateReport
        Unsigned 8-bit integer
    ansi_map.dataAccessElement1  dataAccessElement1
        No value
        DataAccessElement
    ansi_map.dataAccessElement2  dataAccessElement2
        No value
        DataAccessElement
    ansi_map.dataAccessElementList  dataAccessElementList
        Unsigned 32-bit integer
    ansi_map.dataID  dataID
        Byte array
    ansi_map.dataKey  dataKey
        Byte array
    ansi_map.dataPrivacyParameters  dataPrivacyParameters
        Byte array
    ansi_map.dataResult  dataResult
        Unsigned 32-bit integer
    ansi_map.dataUpdateResultList  dataUpdateResultList
        Unsigned 32-bit integer
    ansi_map.dataValue  dataValue
        Byte array
    ansi_map.databaseKey  databaseKey
        Byte array
    ansi_map.deniedAuthorizationPeriod  deniedAuthorizationPeriod
        Byte array
    ansi_map.deniedauthorizationperiod.period  Period
        Unsigned 8-bit integer
    ansi_map.denyAccess  denyAccess
        Unsigned 32-bit integer
    ansi_map.deregistrationType  deregistrationType
        Unsigned 32-bit integer
    ansi_map.destinationAddress  destinationAddress
        Unsigned 32-bit integer
    ansi_map.destinationDigits  destinationDigits
        Byte array
    ansi_map.digitCollectionControl  digitCollectionControl
        Byte array
    ansi_map.digits  digits
        No value
    ansi_map.digits_Carrier  digits-Carrier
        No value
        Digits
    ansi_map.digits_Destination  digits-Destination
        No value
        Digits
    ansi_map.digits_carrier  digits-carrier
        No value
        Digits
    ansi_map.digits_dest  digits-dest
        No value
        Digits
    ansi_map.displayText  displayText
        Byte array
    ansi_map.displayText2  displayText2
        Byte array
    ansi_map.dmd_BillingIndicator  dmd-BillingIndicator
        Unsigned 32-bit integer
        DMH_BillingIndicator
    ansi_map.dmh_AccountCodeDigits  dmh-AccountCodeDigits
        Byte array
    ansi_map.dmh_AlternateBillingDigits  dmh-AlternateBillingDigits
        Byte array
    ansi_map.dmh_BillingDigits  dmh-BillingDigits
        Byte array
    ansi_map.dmh_ChargeInformation  dmh-ChargeInformation
        Byte array
    ansi_map.dmh_RedirectionIndicator  dmh-RedirectionIndicator
        Unsigned 32-bit integer
    ansi_map.dmh_ServiceID  dmh-ServiceID
        Byte array
    ansi_map.dropService  dropService
        No value
    ansi_map.dropServiceRes  dropServiceRes
        No value
    ansi_map.dtxIndication  dtxIndication
        Byte array
    ansi_map.edirectingSubaddress  edirectingSubaddress
        Byte array
        RedirectingSubaddress
    ansi_map.electronicSerialNumber  electronicSerialNumber
        Byte array
    ansi_map.emergencyServicesRoutingDigits  emergencyServicesRoutingDigits
        Byte array
    ansi_map.enc  Encoding
        Unsigned 8-bit integer
    ansi_map.executeScript  executeScript
        No value
    ansi_map.extendedMSCID  extendedMSCID
        Byte array
    ansi_map.extendedSystemMyTypeCode  extendedSystemMyTypeCode
        Byte array
    ansi_map.extendedmscid.type  Type
        Unsigned 8-bit integer
    ansi_map.facilitiesDirective  facilitiesDirective
        No value
    ansi_map.facilitiesDirective2  facilitiesDirective2
        No value
    ansi_map.facilitiesDirective2Res  facilitiesDirective2Res
        No value
    ansi_map.facilitiesDirectiveRes  facilitiesDirectiveRes
        No value
    ansi_map.facilitiesRelease  facilitiesRelease
        No value
    ansi_map.facilitiesReleaseRes  facilitiesReleaseRes
        No value
    ansi_map.facilitySelectedAndAvailable  facilitySelectedAndAvailable
        No value
    ansi_map.facilitySelectedAndAvailableRes  facilitySelectedAndAvailableRes
        No value
    ansi_map.failureCause  failureCause
        Byte array
    ansi_map.failureType  failureType
        Unsigned 32-bit integer
    ansi_map.featureIndicator  featureIndicator
        Unsigned 32-bit integer
    ansi_map.featureRequest  featureRequest
        No value
    ansi_map.featureRequestRes  featureRequestRes
        No value
    ansi_map.featureResult  featureResult
        Unsigned 32-bit integer
    ansi_map.flashRequest  flashRequest
        No value
    ansi_map.gapDuration  gapDuration
        Unsigned 32-bit integer
    ansi_map.gapInterval  gapInterval
        Unsigned 32-bit integer
    ansi_map.generalizedTime  generalizedTime
        String
    ansi_map.geoPositionRequest  geoPositionRequest
        No value
    ansi_map.geographicAuthorization  geographicAuthorization
        Unsigned 8-bit integer
    ansi_map.geographicPosition  geographicPosition
        Byte array
    ansi_map.globalTitle  globalTitle
        Byte array
    ansi_map.groupInformation  groupInformation
        Byte array
    ansi_map.handoffBack  handoffBack
        No value
    ansi_map.handoffBack2  handoffBack2
        No value
    ansi_map.handoffBack2Res  handoffBack2Res
        No value
    ansi_map.handoffBackRes  handoffBackRes
        No value
    ansi_map.handoffMeasurementRequest  handoffMeasurementRequest
        No value
    ansi_map.handoffMeasurementRequest2  handoffMeasurementRequest2
        No value
    ansi_map.handoffMeasurementRequest2Res  handoffMeasurementRequest2Res
        No value
    ansi_map.handoffMeasurementRequestRes  handoffMeasurementRequestRes
        No value
    ansi_map.handoffReason  handoffReason
        Unsigned 32-bit integer
    ansi_map.handoffState  handoffState
        Byte array
    ansi_map.handoffToThird  handoffToThird
        No value
    ansi_map.handoffToThird2  handoffToThird2
        No value
    ansi_map.handoffToThird2Res  handoffToThird2Res
        No value
    ansi_map.handoffToThirdRes  handoffToThirdRes
        No value
    ansi_map.handoffstate.pi  Party Involved (PI)
        Boolean
    ansi_map.horizontal_Velocity  horizontal-Velocity
        Byte array
    ansi_map.ia5_digits  IA5 digits
        String
    ansi_map.idno  ID Number
        Unsigned 32-bit integer
    ansi_map.ilspInformation  ilspInformation
        Unsigned 8-bit integer
        ISLPInformation
    ansi_map.imsi  imsi
        Byte array
    ansi_map.informationDirective  informationDirective
        No value
    ansi_map.informationDirectiveRes  informationDirectiveRes
        No value
    ansi_map.informationForward  informationForward
        No value
    ansi_map.informationForwardRes  informationForwardRes
        No value
    ansi_map.information_Record  information-Record
        Byte array
    ansi_map.interMSCCircuitID  interMSCCircuitID
        No value
    ansi_map.interMessageTime  interMessageTime
        Byte array
    ansi_map.interSwitchCount  interSwitchCount
        Unsigned 32-bit integer
    ansi_map.interSystemAnswer  interSystemAnswer
        No value
    ansi_map.interSystemPage  interSystemPage
        No value
    ansi_map.interSystemPage2  interSystemPage2
        No value
    ansi_map.interSystemPage2Res  interSystemPage2Res
        No value
    ansi_map.interSystemPageRes  interSystemPageRes
        No value
    ansi_map.interSystemPositionRequest  interSystemPositionRequest
        No value
    ansi_map.interSystemPositionRequestForward  interSystemPositionRequestForward
        No value
    ansi_map.interSystemPositionRequestForwardRes  interSystemPositionRequestForwardRes
        No value
    ansi_map.interSystemPositionRequestRes  interSystemPositionRequestRes
        No value
    ansi_map.interSystemSMSDeliveryPointToPoint  interSystemSMSDeliveryPointToPoint
        No value
    ansi_map.interSystemSMSDeliveryPointToPointRes  interSystemSMSDeliveryPointToPointRes
        No value
    ansi_map.interSystemSMSPage  interSystemSMSPage
        No value
    ansi_map.interSystemSetup  interSystemSetup
        No value
    ansi_map.interSystemSetupRes  interSystemSetupRes
        No value
    ansi_map.intersystemTermination  intersystemTermination
        No value
    ansi_map.invokingNEType  invokingNEType
        Signed 32-bit integer
    ansi_map.lcsBillingID  lcsBillingID
        Byte array
    ansi_map.lcsParameterRequest  lcsParameterRequest
        No value
    ansi_map.lcsParameterRequestRes  lcsParameterRequestRes
        No value
    ansi_map.lcs_Client_ID  lcs-Client-ID
        Byte array
    ansi_map.lectronicSerialNumber  lectronicSerialNumber
        Byte array
        ElectronicSerialNumber
    ansi_map.legInformation  legInformation
        Byte array
    ansi_map.lirAuthorization  lirAuthorization
        Unsigned 32-bit integer
    ansi_map.lirMode  lirMode
        Unsigned 32-bit integer
    ansi_map.localTermination  localTermination
        No value
    ansi_map.locationAreaID  locationAreaID
        Byte array
    ansi_map.locationRequest  locationRequest
        No value
    ansi_map.locationRequestRes  locationRequestRes
        No value
    ansi_map.mSCIdentificationNumber  mSCIdentificationNumber
        No value
    ansi_map.mSIDUsage  mSIDUsage
        Unsigned 8-bit integer
    ansi_map.mSInactive  mSInactive
        No value
    ansi_map.mSStatus  mSStatus
        Byte array
    ansi_map.marketid  MarketID
        Unsigned 16-bit integer
    ansi_map.meid  meid
        Byte array
    ansi_map.meidStatus  meidStatus
        Byte array
    ansi_map.meidValidated  meidValidated
        No value
    ansi_map.messageDirective  messageDirective
        No value
    ansi_map.messageWaitingNotificationCount  messageWaitingNotificationCount
        Byte array
    ansi_map.messageWaitingNotificationType  messageWaitingNotificationType
        Byte array
    ansi_map.messagewaitingnotificationcount.mwi  Message Waiting Indication (MWI)
        Unsigned 8-bit integer
    ansi_map.messagewaitingnotificationcount.nomw  Number of Messages Waiting
        Unsigned 8-bit integer
    ansi_map.messagewaitingnotificationcount.tom  Type of messages
        Unsigned 8-bit integer
    ansi_map.messagewaitingnotificationtype.apt  Alert Pip Tone (APT)
        Boolean
    ansi_map.messagewaitingnotificationtype.pt  Pip Tone (PT)
        Unsigned 8-bit integer
    ansi_map.mobileDirectoryNumber  mobileDirectoryNumber
        No value
    ansi_map.mobileIdentificationNumber  mobileIdentificationNumber
        No value
    ansi_map.mobilePositionCapability  mobilePositionCapability
        Byte array
    ansi_map.mobileStationIMSI  mobileStationIMSI
        Byte array
    ansi_map.mobileStationMIN  mobileStationMIN
        No value
    ansi_map.mobileStationMSID  mobileStationMSID
        Unsigned 32-bit integer
    ansi_map.mobileStationPartialKey  mobileStationPartialKey
        Byte array
    ansi_map.modificationRequestList  modificationRequestList
        Unsigned 32-bit integer
    ansi_map.modificationResultList  modificationResultList
        Unsigned 32-bit integer
    ansi_map.modify  modify
        No value
    ansi_map.modifyRes  modifyRes
        No value
    ansi_map.modulusValue  modulusValue
        Byte array
    ansi_map.mpcAddress  mpcAddress
        Byte array
    ansi_map.mpcAddress2  mpcAddress2
        Byte array
        MPCAddress
    ansi_map.mpcAddressList  mpcAddressList
        No value
    ansi_map.mpcid  mpcid
        Byte array
    ansi_map.msLocation  msLocation
        Byte array
    ansi_map.msc_Address  msc-Address
        Byte array
    ansi_map.mscid  mscid
        Byte array
    ansi_map.msid  msid
        Unsigned 32-bit integer
    ansi_map.mslocation.lat  Latitude in tenths of a second
        Unsigned 8-bit integer
    ansi_map.mslocation.long  Longitude in tenths of a second
        Unsigned 8-bit integer
        Switch Number (SWNO)
    ansi_map.mslocation.res  Resolution in units of 1 foot
        Unsigned 8-bit integer
    ansi_map.na  Nature of Number
        Boolean
    ansi_map.nampsCallMode  nampsCallMode
        Byte array
    ansi_map.nampsChannelData  nampsChannelData
        Byte array
    ansi_map.nampscallmode.amps  Call Mode
        Boolean
    ansi_map.nampscallmode.namps  Call Mode
        Boolean
    ansi_map.nampschanneldata.ccindicator  Color Code Indicator (CCIndicator)
        Unsigned 8-bit integer
    ansi_map.nampschanneldata.navca  Narrow Analog Voice Channel Assignment (NAVCA)
        Unsigned 8-bit integer
    ansi_map.navail  Number available indication
        Boolean
    ansi_map.networkTMSI  networkTMSI
        Byte array
    ansi_map.networkTMSIExpirationTime  networkTMSIExpirationTime
        Byte array
    ansi_map.newMINExtension  newMINExtension
        Byte array
    ansi_map.newNetworkTMSI  newNetworkTMSI
        Byte array
    ansi_map.newlyAssignedIMSI  newlyAssignedIMSI
        Byte array
    ansi_map.newlyAssignedMIN  newlyAssignedMIN
        No value
    ansi_map.newlyAssignedMSID  newlyAssignedMSID
        Unsigned 32-bit integer
    ansi_map.noAnswerTime  noAnswerTime
        Byte array
    ansi_map.nonPublicData  nonPublicData
        Byte array
    ansi_map.np  Numbering Plan
        Unsigned 8-bit integer
    ansi_map.nr_digits  Number of Digits
        Unsigned 8-bit integer
    ansi_map.numberPortabilityRequest  numberPortabilityRequest
        No value
    ansi_map.numberPortabilityRequestRes  numberPortabilityRequestRes
        No value
    ansi_map.oAnswer  oAnswer
        No value
    ansi_map.oCalledPartyBusy  oCalledPartyBusy
        No value
    ansi_map.oCalledPartyBusyRes  oCalledPartyBusyRes
        No value
    ansi_map.oDisconnect  oDisconnect
        No value
    ansi_map.oDisconnectRes  oDisconnectRes
        No value
    ansi_map.oNoAnswer  oNoAnswer
        No value
    ansi_map.oNoAnswerRes  oNoAnswerRes
        No value
    ansi_map.oTASPRequest  oTASPRequest
        No value
    ansi_map.oTASPRequestRes  oTASPRequestRes
        No value
    ansi_map.oneTimeFeatureIndicator  oneTimeFeatureIndicator
        Byte array
    ansi_map.op_code  Operation Code
        Unsigned 8-bit integer
    ansi_map.op_code_fam  Operation Code Family
        Unsigned 8-bit integer
    ansi_map.originationIndicator  originationIndicator
        Unsigned 32-bit integer
    ansi_map.originationRequest  originationRequest
        No value
    ansi_map.originationRequestRes  originationRequestRes
        No value
    ansi_map.originationTriggers  originationTriggers
        Byte array
    ansi_map.originationrestrictions.default  DEFAULT
        Unsigned 8-bit integer
    ansi_map.originationrestrictions.direct  DIRECT
        Boolean
    ansi_map.originationrestrictions.fmc  Force Message Center (FMC)
        Boolean
    ansi_map.originationtriggers.all  All Origination (All)
        Boolean
    ansi_map.originationtriggers.dp  Double Pound (DP)
        Boolean
    ansi_map.originationtriggers.ds  Double Star (DS)
        Boolean
    ansi_map.originationtriggers.eight  8 digits
        Boolean
    ansi_map.originationtriggers.eleven  11 digits
        Boolean
    ansi_map.originationtriggers.fifteen  15 digits
        Boolean
    ansi_map.originationtriggers.fivedig  5 digits
        Boolean
    ansi_map.originationtriggers.fourdig  4 digits
        Boolean
    ansi_map.originationtriggers.fourteen  14 digits
        Boolean
    ansi_map.originationtriggers.ilata  Intra-LATA Toll (ILATA)
        Boolean
    ansi_map.originationtriggers.int  International (Int'l )
        Boolean
    ansi_map.originationtriggers.nine  9 digits
        Boolean
    ansi_map.originationtriggers.nodig  No digits
        Boolean
    ansi_map.originationtriggers.olata  Inter-LATA Toll (OLATA)
        Boolean
    ansi_map.originationtriggers.onedig  1 digit
        Boolean
    ansi_map.originationtriggers.pa  Prior Agreement (PA)
        Boolean
    ansi_map.originationtriggers.pound  Pound
        Boolean
    ansi_map.originationtriggers.rvtc  Revertive Call (RvtC)
        Boolean
    ansi_map.originationtriggers.sevendig  7 digits
        Boolean
    ansi_map.originationtriggers.sixdig  6 digits
        Boolean
    ansi_map.originationtriggers.star  Star
        Boolean
    ansi_map.originationtriggers.ten  10 digits
        Boolean
    ansi_map.originationtriggers.thirteen  13 digits
        Boolean
    ansi_map.originationtriggers.threedig  3 digits
        Boolean
    ansi_map.originationtriggers.twelve  12 digits
        Boolean
    ansi_map.originationtriggers.twodig  2 digits
        Boolean
    ansi_map.originationtriggers.unrec  Unrecognized Number (Unrec)
        Boolean
    ansi_map.originationtriggers.wz  World Zone (WZ)
        Boolean
    ansi_map.otasp_ResultCode  otasp-ResultCode
        Unsigned 8-bit integer
    ansi_map.outingDigits  outingDigits
        Byte array
        RoutingDigits
    ansi_map.pACAIndicator  pACAIndicator
        Byte array
    ansi_map.pC_SSN  pC-SSN
        Byte array
    ansi_map.pSID_RSIDInformation  pSID-RSIDInformation
        Byte array
    ansi_map.pSID_RSIDInformation1  pSID-RSIDInformation1
        Byte array
        PSID_RSIDInformation
    ansi_map.pSID_RSIDList  pSID-RSIDList
        No value
    ansi_map.pacaindicator_pa  Permanent Activation (PA)
        Boolean
    ansi_map.pageCount  pageCount
        Byte array
    ansi_map.pageIndicator  pageIndicator
        Unsigned 8-bit integer
    ansi_map.pageResponseTime  pageResponseTime
        Byte array
    ansi_map.pagingFrameClass  pagingFrameClass
        Unsigned 8-bit integer
    ansi_map.parameterRequest  parameterRequest
        No value
    ansi_map.parameterRequestRes  parameterRequestRes
        No value
    ansi_map.pc_ssn  pc-ssn
        Byte array
    ansi_map.pdsnAddress  pdsnAddress
        Byte array
    ansi_map.pdsnProtocolType  pdsnProtocolType
        Byte array
    ansi_map.pilotBillingID  pilotBillingID
        Byte array
    ansi_map.pilotNumber  pilotNumber
        Byte array
    ansi_map.positionEventNotification  positionEventNotification
        No value
    ansi_map.positionInformation  positionInformation
        No value
    ansi_map.positionInformationCode  positionInformationCode
        Byte array
    ansi_map.positionRequest  positionRequest
        No value
    ansi_map.positionRequestForward  positionRequestForward
        No value
    ansi_map.positionRequestForwardRes  positionRequestForwardRes
        No value
    ansi_map.positionRequestRes  positionRequestRes
        No value
    ansi_map.positionRequestType  positionRequestType
        Byte array
    ansi_map.positionResult  positionResult
        Byte array
    ansi_map.positionSource  positionSource
        Byte array
    ansi_map.pqos_HorizontalPosition  pqos-HorizontalPosition
        Byte array
    ansi_map.pqos_HorizontalVelocity  pqos-HorizontalVelocity
        Byte array
    ansi_map.pqos_MaximumPositionAge  pqos-MaximumPositionAge
        Byte array
    ansi_map.pqos_PositionPriority  pqos-PositionPriority
        Byte array
    ansi_map.pqos_ResponseTime  pqos-ResponseTime
        Unsigned 32-bit integer
    ansi_map.pqos_VerticalPosition  pqos-VerticalPosition
        Byte array
    ansi_map.pqos_VerticalVelocity  pqos-VerticalVelocity
        Byte array
    ansi_map.preferredLanguageIndicator  preferredLanguageIndicator
        Unsigned 8-bit integer
    ansi_map.primitiveValue  primitiveValue
        Byte array
    ansi_map.privateSpecializedResource  privateSpecializedResource
        Byte array
    ansi_map.pstnTermination  pstnTermination
        No value
    ansi_map.qosPriority  qosPriority
        Byte array
    ansi_map.qualificationDirective  qualificationDirective
        No value
    ansi_map.qualificationDirectiveRes  qualificationDirectiveRes
        No value
    ansi_map.qualificationInformationCode  qualificationInformationCode
        Unsigned 32-bit integer
    ansi_map.qualificationRequest  qualificationRequest
        No value
    ansi_map.qualificationRequest2  qualificationRequest2
        No value
    ansi_map.qualificationRequest2Res  qualificationRequest2Res
        No value
    ansi_map.qualificationRequestRes  qualificationRequestRes
        No value
    ansi_map.randValidTime  randValidTime
        Byte array
    ansi_map.randc  randc
        Byte array
    ansi_map.randomVariable  randomVariable
        Byte array
    ansi_map.randomVariableBaseStation  randomVariableBaseStation
        Byte array
    ansi_map.randomVariableReauthentication  randomVariableReauthentication
        Byte array
    ansi_map.randomVariableRequest  randomVariableRequest
        No value
    ansi_map.randomVariableRequestRes  randomVariableRequestRes
        No value
    ansi_map.randomVariableSSD  randomVariableSSD
        Byte array
    ansi_map.randomVariableUniqueChallenge  randomVariableUniqueChallenge
        Byte array
    ansi_map.range  range
        Signed 32-bit integer
    ansi_map.reasonList  reasonList
        Unsigned 32-bit integer
    ansi_map.reauthenticationReport  reauthenticationReport
        Unsigned 8-bit integer
    ansi_map.receivedSignalQuality  receivedSignalQuality
        Unsigned 32-bit integer
    ansi_map.record_Type  record-Type
        Byte array
    ansi_map.redirectingNumberDigits  redirectingNumberDigits
        Byte array
    ansi_map.redirectingNumberString  redirectingNumberString
        Byte array
    ansi_map.redirectingPartyName  redirectingPartyName
        Byte array
    ansi_map.redirectingSubaddress  redirectingSubaddress
        Byte array
    ansi_map.redirectionDirective  redirectionDirective
        No value
    ansi_map.redirectionReason  redirectionReason
        Unsigned 32-bit integer
    ansi_map.redirectionRequest  redirectionRequest
        No value
    ansi_map.registrationCancellation  registrationCancellation
        No value
    ansi_map.registrationCancellationRes  registrationCancellationRes
        No value
    ansi_map.registrationNotification  registrationNotification
        No value
    ansi_map.registrationNotificationRes  registrationNotificationRes
        No value
    ansi_map.releaseCause  releaseCause
        Unsigned 32-bit integer
    ansi_map.releaseReason  releaseReason
        Unsigned 32-bit integer
    ansi_map.remoteUserInteractionDirective  remoteUserInteractionDirective
        No value
    ansi_map.remoteUserInteractionDirectiveRes  remoteUserInteractionDirectiveRes
        No value
    ansi_map.reportType  reportType
        Unsigned 32-bit integer
    ansi_map.reportType2  reportType2
        Unsigned 32-bit integer
        ReportType
    ansi_map.requiredParametersMask  requiredParametersMask
        Byte array
    ansi_map.reserved_bitD  Reserved
        Boolean
    ansi_map.reserved_bitED  Reserved
        Unsigned 8-bit integer
    ansi_map.reserved_bitFED  Reserved
        Unsigned 8-bit integer
    ansi_map.reserved_bitH  Reserved
        Boolean
    ansi_map.reserved_bitHG  Reserved
        Unsigned 8-bit integer
    ansi_map.reserved_bitHGFE  Reserved
        Unsigned 8-bit integer
    ansi_map.resetCircuit  resetCircuit
        No value
    ansi_map.resetCircuitRes  resetCircuitRes
        No value
    ansi_map.restrictionDigits  restrictionDigits
        Byte array
    ansi_map.resumePIC  resumePIC
        Unsigned 32-bit integer
    ansi_map.roamerDatabaseVerificationRequest  roamerDatabaseVerificationRequest
        No value
    ansi_map.roamerDatabaseVerificationRequestRes  roamerDatabaseVerificationRequestRes
        No value
    ansi_map.roamingIndication  roamingIndication
        Byte array
    ansi_map.routingDigits  routingDigits
        Byte array
    ansi_map.routingRequest  routingRequest
        No value
    ansi_map.routingRequestRes  routingRequestRes
        No value
    ansi_map.sCFOverloadGapInterval  sCFOverloadGapInterval
        Unsigned 32-bit integer
    ansi_map.sMSDeliveryBackward  sMSDeliveryBackward
        No value
    ansi_map.sMSDeliveryBackwardRes  sMSDeliveryBackwardRes
        No value
    ansi_map.sMSDeliveryForward  sMSDeliveryForward
        No value
    ansi_map.sMSDeliveryForwardRes  sMSDeliveryForwardRes
        No value
    ansi_map.sMSDeliveryPointToPoint  sMSDeliveryPointToPoint
        No value
    ansi_map.sMSDeliveryPointToPointRes  sMSDeliveryPointToPointRes
        No value
    ansi_map.sMSNotification  sMSNotification
        No value
    ansi_map.sMSNotificationRes  sMSNotificationRes
        No value
    ansi_map.sMSRequest  sMSRequest
        No value
    ansi_map.sMSRequestRes  sMSRequestRes
        No value
    ansi_map.sOCStatus  sOCStatus
        Unsigned 8-bit integer
    ansi_map.sRFDirective  sRFDirective
        No value
    ansi_map.sRFDirectiveRes  sRFDirectiveRes
        No value
    ansi_map.scriptArgument  scriptArgument
        Byte array
    ansi_map.scriptName  scriptName
        Byte array
    ansi_map.scriptResult  scriptResult
        Byte array
    ansi_map.search  search
        No value
    ansi_map.searchRes  searchRes
        No value
    ansi_map.segcount  Segment Counter
        Unsigned 8-bit integer
    ansi_map.seizeResource  seizeResource
        No value
    ansi_map.seizeResourceRes  seizeResourceRes
        No value
    ansi_map.seizureType  seizureType
        Unsigned 32-bit integer
    ansi_map.senderIdentificationNumber  senderIdentificationNumber
        No value
    ansi_map.serviceDataAccessElementList  serviceDataAccessElementList
        Unsigned 32-bit integer
    ansi_map.serviceDataResultList  serviceDataResultList
        Unsigned 32-bit integer
    ansi_map.serviceID  serviceID
        Byte array
    ansi_map.serviceIndicator  serviceIndicator
        Unsigned 8-bit integer
    ansi_map.serviceManagementSystemGapInterval  serviceManagementSystemGapInterval
        Unsigned 32-bit integer
    ansi_map.serviceRedirectionCause  serviceRedirectionCause
        Unsigned 8-bit integer
    ansi_map.serviceRedirectionInfo  serviceRedirectionInfo
        Byte array
    ansi_map.serviceRequest  serviceRequest
        No value
    ansi_map.serviceRequestRes  serviceRequestRes
        No value
    ansi_map.servicesResult  servicesResult
        Unsigned 8-bit integer
    ansi_map.servingCellID  servingCellID
        Byte array
    ansi_map.setupResult  setupResult
        Unsigned 8-bit integer
    ansi_map.sharedSecretData  sharedSecretData
        Byte array
    ansi_map.si  Screening indication
        Unsigned 8-bit integer
    ansi_map.signalQuality  signalQuality
        Unsigned 32-bit integer
    ansi_map.signalingMessageEncryptionKey  signalingMessageEncryptionKey
        Byte array
    ansi_map.signalingMessageEncryptionReport  signalingMessageEncryptionReport
        Unsigned 8-bit integer
    ansi_map.smsDeliveryPointToPointAck  smsDeliveryPointToPointAck
        No value
    ansi_map.sms_AccessDeniedReason  sms-AccessDeniedReason
        Unsigned 8-bit integer
    ansi_map.sms_Address  sms-Address
        No value
    ansi_map.sms_BearerData  sms-BearerData
        Byte array
    ansi_map.sms_CauseCode  sms-CauseCode
        Unsigned 8-bit integer
    ansi_map.sms_ChargeIndicator  sms-ChargeIndicator
        Unsigned 8-bit integer
    ansi_map.sms_DestinationAddress  sms-DestinationAddress
        No value
    ansi_map.sms_MessageCount  sms-MessageCount
        Byte array
    ansi_map.sms_MessageWaitingIndicator  sms-MessageWaitingIndicator
        No value
    ansi_map.sms_NotificationIndicator  sms-NotificationIndicator
        Unsigned 8-bit integer
    ansi_map.sms_OriginalDestinationAddress  sms-OriginalDestinationAddress
        No value
    ansi_map.sms_OriginalDestinationSubaddress  sms-OriginalDestinationSubaddress
        Byte array
    ansi_map.sms_OriginalOriginatingAddress  sms-OriginalOriginatingAddress
        No value
    ansi_map.sms_OriginalOriginatingSubaddress  sms-OriginalOriginatingSubaddress
        Byte array
    ansi_map.sms_OriginatingAddress  sms-OriginatingAddress
        No value
    ansi_map.sms_OriginationRestrictions  sms-OriginationRestrictions
        Byte array
    ansi_map.sms_TeleserviceIdentifier  sms-TeleserviceIdentifier
        Byte array
    ansi_map.sms_TerminationRestrictions  sms-TerminationRestrictions
        Byte array
    ansi_map.sms_TransactionID  sms-TransactionID
        Byte array
    ansi_map.specializedResource  specializedResource
        Byte array
    ansi_map.spiniTriggers  spiniTriggers
        Byte array
    ansi_map.spinipin  spinipin
        Byte array
    ansi_map.ssdUpdateReport  ssdUpdateReport
        Unsigned 16-bit integer
    ansi_map.ssdnotShared  ssdnotShared
        Unsigned 32-bit integer
    ansi_map.stationClassMark  stationClassMark
        Byte array
    ansi_map.statusRequest  statusRequest
        No value
    ansi_map.statusRequestRes  statusRequestRes
        No value
    ansi_map.subaddr_odd_even  Odd/Even Indicator
        Boolean
    ansi_map.subaddr_type  Type of Subaddress
        Unsigned 8-bit integer
    ansi_map.suspiciousAccess  suspiciousAccess
        Unsigned 32-bit integer
    ansi_map.swno  Switch Number (SWNO)
        Unsigned 8-bit integer
    ansi_map.systemAccessData  systemAccessData
        Byte array
    ansi_map.systemAccessType  systemAccessType
        Unsigned 32-bit integer
    ansi_map.systemCapabilities  systemCapabilities
        Byte array
    ansi_map.systemMyTypeCode  systemMyTypeCode
        Unsigned 32-bit integer
    ansi_map.systemOperatorCode  systemOperatorCode
        Byte array
    ansi_map.systemcapabilities.auth  Authentication Parameters Requested (AUTH)
        Boolean
    ansi_map.systemcapabilities.cave  CAVE Algorithm Capable (CAVE)
        Boolean
    ansi_map.systemcapabilities.dp  Data Privacy (DP)
        Boolean
    ansi_map.systemcapabilities.se  Signaling Message Encryption Capable (SE )
        Boolean
    ansi_map.systemcapabilities.ssd  Shared SSD (SSD)
        Boolean
    ansi_map.systemcapabilities.vp  Voice Privacy Capable (VP )
        Boolean
    ansi_map.tAnswer  tAnswer
        No value
    ansi_map.tBusy  tBusy
        No value
    ansi_map.tBusyRes  tBusyRes
        No value
    ansi_map.tDisconnect  tDisconnect
        No value
    ansi_map.tDisconnectRes  tDisconnectRes
        No value
    ansi_map.tMSIDirective  tMSIDirective
        No value
    ansi_map.tMSIDirectiveRes  tMSIDirectiveRes
        No value
    ansi_map.tNoAnswer  tNoAnswer
        No value
    ansi_map.tNoAnswerRes  tNoAnswerRes
        No value
    ansi_map.targetCellID  targetCellID
        Byte array
    ansi_map.targetCellID1  targetCellID1
        Byte array
        TargetCellID
    ansi_map.targetCellIDList  targetCellIDList
        No value
    ansi_map.targetMeasurementList  targetMeasurementList
        Unsigned 32-bit integer
    ansi_map.tdmaBandwidth  tdmaBandwidth
        Unsigned 8-bit integer
    ansi_map.tdmaBurstIndicator  tdmaBurstIndicator
        Byte array
    ansi_map.tdmaCallMode  tdmaCallMode
        Byte array
    ansi_map.tdmaChannelData  tdmaChannelData
        Byte array
    ansi_map.tdmaDataFeaturesIndicator  tdmaDataFeaturesIndicator
        Byte array
    ansi_map.tdmaDataMode  tdmaDataMode
        Byte array
    ansi_map.tdmaServiceCode  tdmaServiceCode
        Unsigned 8-bit integer
    ansi_map.tdmaTerminalCapability  tdmaTerminalCapability
        Byte array
    ansi_map.tdmaVoiceCoder  tdmaVoiceCoder
        Byte array
    ansi_map.tdmaVoiceMode  tdmaVoiceMode
        Byte array
    ansi_map.tdma_MAHORequest  tdma-MAHORequest
        Byte array
    ansi_map.tdma_MAHO_CELLID  tdma-MAHO-CELLID
        Byte array
    ansi_map.tdma_MAHO_CHANNEL  tdma-MAHO-CHANNEL
        Byte array
    ansi_map.tdma_TimeAlignment  tdma-TimeAlignment
        Byte array
    ansi_map.teleservice_Priority  teleservice-Priority
        Byte array
    ansi_map.temporaryReferenceNumber  temporaryReferenceNumber
        No value
    ansi_map.terminalType  terminalType
        Unsigned 32-bit integer
    ansi_map.terminationAccessType  terminationAccessType
        Unsigned 8-bit integer
    ansi_map.terminationList  terminationList
        Unsigned 32-bit integer
    ansi_map.terminationRestrictionCode  terminationRestrictionCode
        Unsigned 32-bit integer
    ansi_map.terminationTreatment  terminationTreatment
        Unsigned 8-bit integer
    ansi_map.terminationTriggers  terminationTriggers
        Byte array
    ansi_map.terminationtriggers.busy  Busy
        Unsigned 8-bit integer
    ansi_map.terminationtriggers.na  No Answer (NA)
        Unsigned 8-bit integer
    ansi_map.terminationtriggers.npr  No Page Response (NPR)
        Unsigned 8-bit integer
    ansi_map.terminationtriggers.nr  None Reachable (NR)
        Unsigned 8-bit integer
    ansi_map.terminationtriggers.rf  Routing Failure (RF)
        Unsigned 8-bit integer
    ansi_map.tgn  Trunk Group Number (G)
        Unsigned 8-bit integer
    ansi_map.timeDateOffset  timeDateOffset
        Byte array
    ansi_map.timeOfDay  timeOfDay
        Signed 32-bit integer
    ansi_map.trans_cap_ann  Announcements (ANN)
        Boolean
    ansi_map.trans_cap_busy  Busy Detection (BUSY)
        Boolean
    ansi_map.trans_cap_multerm  Multiple Terminations
        Unsigned 8-bit integer
    ansi_map.trans_cap_nami  NAME Capability Indicator (NAMI)
        Boolean
    ansi_map.trans_cap_ndss  NDSS Capability (NDSS)
        Boolean
    ansi_map.trans_cap_prof  Profile (PROF)
        Boolean
    ansi_map.trans_cap_rui  Remote User Interaction (RUI)
        Boolean
    ansi_map.trans_cap_spini  Subscriber PIN Intercept (SPINI)
        Boolean
    ansi_map.trans_cap_tl  TerminationList (TL)
        Boolean
    ansi_map.trans_cap_uzci  UZ Capability Indicator (UZCI)
        Boolean
    ansi_map.trans_cap_waddr  WIN Addressing (WADDR)
        Boolean
    ansi_map.transactionCapability  transactionCapability
        Byte array
    ansi_map.transferToNumberRequest  transferToNumberRequest
        No value
    ansi_map.transferToNumberRequestRes  transferToNumberRequestRes
        No value
    ansi_map.triggerAddressList  triggerAddressList
        No value
    ansi_map.triggerCapability  triggerCapability
        Byte array
    ansi_map.triggerList  triggerList
        No value
    ansi_map.triggerListOpt  triggerListOpt
        No value
        TriggerList
    ansi_map.triggerType  triggerType
        Unsigned 32-bit integer
    ansi_map.triggercapability.all  All_Calls (All)
        Boolean
    ansi_map.triggercapability.at  Advanced_Termination (AT)
        Boolean
    ansi_map.triggercapability.cdraa  Called_Routing_Address_Available (CdRAA)
        Boolean
    ansi_map.triggercapability.cgraa  Calling_Routing_Address_Available (CgRAA)
        Boolean
    ansi_map.triggercapability.init  Introducing Star/Pound (INIT)
        Boolean
    ansi_map.triggercapability.it  Initial_Termination (IT)
        Boolean
    ansi_map.triggercapability.kdigit  K-digit (K-digit)
        Boolean
    ansi_map.triggercapability.oaa  Origination_Attempt_Authorized (OAA)
        Boolean
    ansi_map.triggercapability.oans  O_Answer (OANS)
        Boolean
    ansi_map.triggercapability.odisc  O_Disconnect (ODISC)
        Boolean
    ansi_map.triggercapability.ona  O_No_Answer (ONA)
        Boolean
    ansi_map.triggercapability.pa  Prior_Agreement (PA)
        Boolean
    ansi_map.triggercapability.rvtc  Revertive_Call (RvtC)
        Boolean
    ansi_map.triggercapability.tans  T_Answer (TANS)
        Boolean
    ansi_map.triggercapability.tbusy  T_Busy (TBusy)
        Boolean
    ansi_map.triggercapability.tdisc  T_Disconnect (TDISC)
        Boolean
    ansi_map.triggercapability.tna  T_No_Answer (TNA)
        Boolean
    ansi_map.triggercapability.tra  Terminating_Resource_Available (TRA)
        Boolean
    ansi_map.triggercapability.unrec  Unrecognized_Number (Unrec)
        Boolean
    ansi_map.trunkStatus  trunkStatus
        Unsigned 32-bit integer
    ansi_map.trunkTest  trunkTest
        No value
    ansi_map.trunkTestDisconnect  trunkTestDisconnect
        No value
    ansi_map.type_of_digits  Type of Digits
        Unsigned 8-bit integer
    ansi_map.type_of_pi  Presentation Indication
        Boolean
    ansi_map.unblocking  unblocking
        No value
    ansi_map.uniqueChallengeReport  uniqueChallengeReport
        Unsigned 8-bit integer
    ansi_map.unreliableCallData  unreliableCallData
        No value
    ansi_map.unreliableRoamerDataDirective  unreliableRoamerDataDirective
        No value
    ansi_map.unsolicitedResponse  unsolicitedResponse
        No value
    ansi_map.unsolicitedResponseRes  unsolicitedResponseRes
        No value
    ansi_map.updateCount  updateCount
        Unsigned 32-bit integer
    ansi_map.userGroup  userGroup
        Byte array
    ansi_map.userZoneData  userZoneData
        Byte array
    ansi_map.value  Value
        Unsigned 8-bit integer
    ansi_map.vertical_Velocity  vertical-Velocity
        Byte array
    ansi_map.voiceMailboxNumber  voiceMailboxNumber
        Byte array
    ansi_map.voiceMailboxPIN  voiceMailboxPIN
        Byte array
    ansi_map.voicePrivacyMask  voicePrivacyMask
        Byte array
    ansi_map.voicePrivacyReport  voicePrivacyReport
        Unsigned 8-bit integer
    ansi_map.wINOperationsCapability  wINOperationsCapability
        Byte array
    ansi_map.wIN_TriggerList  wIN-TriggerList
        Byte array
    ansi_map.winCapability  winCapability
        No value
    ansi_map.winoperationscapability.ccdir  CallControlDirective(CCDIR)
        Boolean
    ansi_map.winoperationscapability.conn  ConnectResource (CONN)
        Boolean
    ansi_map.winoperationscapability.pos  PositionRequest (POS)
        Boolean

ANSI Transaction Capabilities Application Part (ansi_tcap)

    ansi_tcap.ComponentPDU  ComponentPDU
        Unsigned 32-bit integer
    ansi_tcap._untag_item  _untag item
        No value
        EXTERNAL
    ansi_tcap.abort  abort
        No value
    ansi_tcap.abortCause  abortCause
        Signed 32-bit integer
        P_Abort_cause
    ansi_tcap.applicationContext  applicationContext
        Unsigned 32-bit integer
    ansi_tcap.causeInformation  causeInformation
        Unsigned 32-bit integer
    ansi_tcap.componentID  componentID
        Byte array
    ansi_tcap.componentIDs  componentIDs
        Byte array
    ansi_tcap.componentPortion  componentPortion
        Unsigned 32-bit integer
        ComponentSequence
    ansi_tcap.confidentiality  confidentiality
        No value
    ansi_tcap.confidentialityId  confidentialityId
        Unsigned 32-bit integer
    ansi_tcap.conversationWithPerm  conversationWithPerm
        No value
    ansi_tcap.conversationWithoutPerm  conversationWithoutPerm
        No value
    ansi_tcap.dialogPortion  dialogPortion
        No value
        DialoguePortion
    ansi_tcap.dialoguePortion  dialoguePortion
        No value
    ansi_tcap.errorCode  errorCode
        Unsigned 32-bit integer
    ansi_tcap.identifier  identifier
        Byte array
        TransactionID
    ansi_tcap.integerApplicationId  integerApplicationId
        Signed 32-bit integer
        IntegerApplicationContext
    ansi_tcap.integerConfidentialityId  integerConfidentialityId
        Signed 32-bit integer
        INTEGER
    ansi_tcap.integerSecurityId  integerSecurityId
        Signed 32-bit integer
        INTEGER
    ansi_tcap.invokeLast  invokeLast
        No value
        Invoke
    ansi_tcap.invokeNotLast  invokeNotLast
        No value
        Invoke
    ansi_tcap.national  national
        Signed 32-bit integer
    ansi_tcap.objectApplicationId  objectApplicationId
        Object Identifier
        ObjectIDApplicationContext
    ansi_tcap.objectConfidentialityId  objectConfidentialityId
        Object Identifier
        OBJECT_IDENTIFIER
    ansi_tcap.objectSecurityId  objectSecurityId
        Object Identifier
        OBJECT_IDENTIFIER
    ansi_tcap.operationCode  operationCode
        Unsigned 32-bit integer
    ansi_tcap.paramSequence  paramSequence
        No value
    ansi_tcap.paramSet  paramSet
        No value
    ansi_tcap.parameter  parameter
        No value
    ansi_tcap.private  private
        Signed 32-bit integer
    ansi_tcap.queryWithPerm  queryWithPerm
        No value
    ansi_tcap.queryWithoutPerm  queryWithoutPerm
        No value
    ansi_tcap.reject  reject
        No value
    ansi_tcap.rejectProblem  rejectProblem
        Signed 32-bit integer
        Problem
    ansi_tcap.response  response
        No value
    ansi_tcap.returnError  returnError
        No value
    ansi_tcap.returnResultLast  returnResultLast
        No value
        ReturnResult
    ansi_tcap.returnResultNotLast  returnResultNotLast
        No value
        ReturnResult
    ansi_tcap.securityContext  securityContext
        Unsigned 32-bit integer
    ansi_tcap.srt.begin  Begin Session
        Frame number
        SRT Begin of Session
    ansi_tcap.srt.duplicate  Request Duplicate
        Unsigned 32-bit integer
    ansi_tcap.srt.end  End Session
        Frame number
        SRT End of Session
    ansi_tcap.srt.session_id  Session Id
        Unsigned 32-bit integer
    ansi_tcap.srt.sessiontime  Session duration
        Time duration
        Duration of the TCAP session
    ansi_tcap.unidirectional  unidirectional
        No value
    ansi_tcap.userInformation  userInformation
        No value
        UserAbortInformation
    ansi_tcap.version  version
        Byte array
        ProtocolVersion

AOL Instant Messenger (aim)

    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.nickinfo.caps  Client capabilities
        Globally Unique Identifier
    aim.nickinfo.short_caps  Short client capabilities
        Unsigned 16-bit integer
    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.ssi.code  Last SSI operation result code
        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.bot  Bot User
        Boolean
    aim.userclass.commercial  AOL commercial account flag
        Boolean
    aim.userclass.forward_mobile  Forward to mobile if not active
        Boolean
    aim.userclass.free  AIM user flag
        Boolean
    aim.userclass.icq  ICQ user sign
        Boolean
    aim.userclass.imf  Using IM Forwarding
        Boolean
    aim.userclass.no_knock_knock  Do not display the 'not on Buddy List' knock-knock
        Boolean
    aim.userclass.one_way_wireless  One Way Wireless Device
        Boolean
    aim.userclass.staff  AOL Staff User Flag
        Boolean
    aim.userclass.unconfirmed  AOL Unconfirmed account flag
        Boolean
    aim.userclass.unknown100  Unknown bit
        Boolean
    aim.userclass.unknown10000  Unknown bit
        Boolean
    aim.userclass.unknown2000  Unknown bit
        Boolean
    aim.userclass.unknown20000  Unknown bit
        Boolean
    aim.userclass.unknown4000  Unknown bit
        Boolean
    aim.userclass.unknown800  Unknown bit
        Boolean
    aim.userclass.unknown8000  Unknown bit
        Boolean
    aim.userclass.wireless  AOL wireless user
        Boolean
    aim.userinfo.warninglevel  Warning Level
        Unsigned 16-bit integer
    aim.version  Protocol Version
        Byte array

ARCNET (arcnet)

    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
    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

ARUBA encapsulated remote mirroring (aruba_erm)

    aruba_erm.incl_len  Packet Captured Length
        Unsigned 32-bit integer
    aruba_erm.orig_len  Packet Length
        Unsigned 32-bit integer
    aruba_erm.time  Packet Capture Timestamp
        Date/Time stamp

ASN.1 decoding (asn1)

ATAoverEthernet (aoe)

    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
    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
    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 AAL1 (aal1)

ATM AAL3/4 (aal3_4)

ATM Cell (mplspwatmcell)

    atm.cell.len  Length
        Signed 32-bit integer

ATM LAN Emulation (lane)

ATM OAM AAL (oamaal)

AVS WLAN Capture header (wlancap)

    wlan.phytype  PHY type
        Unsigned 32-bit integer
    wlancap.drops  Known Dropped Frames
        Unsigned 32-bit integer
    wlancap.encoding  Encoding Type
        Unsigned 32-bit integer
    wlancap.length  Header length
        Unsigned 32-bit integer
    wlancap.magic  Header magic
        Unsigned 32-bit integer
    wlancap.padding  Padding
        Byte array
    wlancap.preamble  Preamble
        Unsigned 32-bit integer
    wlancap.priority  Priority
        Unsigned 32-bit integer
    wlancap.receiver_addr  Receiver Address
        6-byte Hardware (MAC) Address
        Receiver Hardware Address
    wlancap.sequence  Receive sequence
        Unsigned 32-bit integer
    wlancap.ssi_noise  SSI Noise
        Signed 32-bit integer
    wlancap.ssi_signal  SSI Signal
        Signed 32-bit integer
    wlancap.ssi_type  SSI Type
        Unsigned 32-bit integer
    wlancap.version  Header revision
        Unsigned 32-bit integer

AX/4000 Test Block (ax4000)

    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

Access Node Control Protocol (ancp)

    ancp.adjcode  Code
        Unsigned 8-bit integer
    ancp.blk_len  Block Length
        Unsigned 8-bit integer
    ancp.capability  Capability
        Unsigned 16-bit integer
    ancp.code  Code
        Unsigned 16-bit integer
    ancp.dsl_line_param  Value
        Unsigned 32-bit integer
    ancp.evt_seq_num  Event Sequence Number
        Unsigned 32-bit integer
    ancp.ext_tlv.type  TLV
        Unsigned 16-bit integer
    ancp.ext_tlv.value  Value
        String
    ancp.ext_tlvs.count  Num TLVs
        Unsigned 16-bit integer
    ancp.i_flag  I Flag
        Boolean
    ancp.label  Label
        Unsigned 64-bit integer
    ancp.len  Length
        Unsigned 16-bit integer
    ancp.mtype  Message Type
        Unsigned 8-bit integer
    ancp.num_tlvs  Num TLVs
        Unsigned 8-bit integer
    ancp.oam.loopback_count  OAM Loopback Count
        Unsigned 8-bit integer
    ancp.oam.opaque  Opaque
        Unsigned 32-bit integer
    ancp.oam.timeout  OAM Timeout
        Unsigned 8-bit integer
    ancp.partition_id  Partition ID
        Unsigned 8-bit integer
    ancp.partition_info  Partition Info
        Unsigned 8-bit integer
    ancp.port  Port
        Unsigned 32-bit integer
    ancp.port_sess_num  Port Session Number
        Unsigned 32-bit integer
    ancp.receiver_instance  Receiver Instance
        Unsigned 24-bit integer
    ancp.receiver_name  Receiver Name
        6-byte Hardware (MAC) Address
    ancp.receiver_port  Receiver Port
        Unsigned 64-bit integer
    ancp.reserved  Reserved
        Unsigned 8-bit integer
    ancp.result  Result
        Unsigned 8-bit integer
    ancp.sender_instance  Sender Instance
        Unsigned 24-bit integer
    ancp.sender_name  Sender Name
        6-byte Hardware (MAC) Address
    ancp.sender_port  Sender Port
        Unsigned 64-bit integer
    ancp.sub_tlv_type  Sub-TLV
        Unsigned 16-bit integer
    ancp.submessage_number  SubMessage Number
        Unsigned 16-bit integer
    ancp.tech_type  Tech Type
        Unsigned 8-bit integer
    ancp.timer  Timer
        Unsigned 8-bit integer
    ancp.tot_len  Length
        Unsigned 16-bit integer
    ancp.transaction_id  Transaction ID
        Unsigned 24-bit integer
    ancp.ver  Version
        Unsigned 8-bit integer

Active Directory Setup (dssetup)

    dssetup.dssetup_DsRoleFlags.DS_ROLE_PRIMARY_DOMAIN_GUID_PRESENT  Ds Role Primary Domain Guid Present
        Boolean
    dssetup.dssetup_DsRoleFlags.DS_ROLE_PRIMARY_DS_MIXED_MODE  Ds Role Primary Ds Mixed Mode
        Boolean
    dssetup.dssetup_DsRoleFlags.DS_ROLE_PRIMARY_DS_RUNNING  Ds Role Primary Ds Running
        Boolean
    dssetup.dssetup_DsRoleFlags.DS_ROLE_UPGRADE_IN_PROGRESS  Ds Role Upgrade In Progress
        Boolean
    dssetup.dssetup_DsRoleGetPrimaryDomainInformation.info  Info
        No value
    dssetup.dssetup_DsRoleGetPrimaryDomainInformation.level  Level
        Unsigned 16-bit integer
    dssetup.dssetup_DsRoleInfo.basic  Basic
        No value
    dssetup.dssetup_DsRoleInfo.opstatus  Opstatus
        No value
    dssetup.dssetup_DsRoleInfo.upgrade  Upgrade
        No value
    dssetup.dssetup_DsRoleOpStatus.status  Status
        Unsigned 16-bit integer
    dssetup.dssetup_DsRolePrimaryDomInfoBasic.dns_domain  Dns Domain
        String
    dssetup.dssetup_DsRolePrimaryDomInfoBasic.domain  Domain
        String
    dssetup.dssetup_DsRolePrimaryDomInfoBasic.domain_guid  Domain Guid
        Globally Unique Identifier
    dssetup.dssetup_DsRolePrimaryDomInfoBasic.flags  Flags
        Unsigned 32-bit integer
    dssetup.dssetup_DsRolePrimaryDomInfoBasic.forest  Forest
        String
    dssetup.dssetup_DsRolePrimaryDomInfoBasic.role  Role
        Unsigned 16-bit integer
    dssetup.dssetup_DsRoleUpgradeStatus.previous_role  Previous Role
        Unsigned 16-bit integer
    dssetup.dssetup_DsRoleUpgradeStatus.upgrading  Upgrading
        Unsigned 32-bit integer
    dssetup.opnum  Operation
        Unsigned 16-bit integer
    dssetup.werror  Windows Error
        Unsigned 32-bit integer

Ad hoc On-demand Distance Vector Routing Protocol (aodv)

    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
    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
    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
    aodv.lifetime  Lifetime
        Unsigned 32-bit integer
    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
    aodv.prefix_sz  Prefix Size
        Unsigned 8-bit integer
    aodv.rreq_id  RREQ Id
        Unsigned 32-bit integer
    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

Adaptive Multi-Rate (amr)

    amr.fqi  FQI
        Boolean
        Frame quality indicator bit
    amr.if1.sti  SID Type Indicator
        Boolean
    amr.if2.sti  SID Type Indicator
        Boolean
    amr.nb.cmr  CMR
        Unsigned 8-bit integer
        codec mode request
    amr.nb.if1.ft  Frame Type
        Unsigned 8-bit integer
    amr.nb.if1.modeind  Mode Type indication
        Unsigned 8-bit integer
    amr.nb.if1.modereq  Mode Type request
        Unsigned 8-bit integer
    amr.nb.if1.stimodeind  Mode Type indication
        Unsigned 8-bit integer
    amr.nb.if2.ft  Frame Type
        Unsigned 8-bit integer
    amr.nb.if2.stimodeind  Mode Type indication
        Unsigned 8-bit integer
    amr.nb.toc.ft  FT bits
        Unsigned 8-bit integer
        Frame type index
    amr.reserved  Reserved
        Unsigned 8-bit integer
        Reserved bits
    amr.toc.f  F bit
        Boolean
    amr.toc.q  Q bit
        Boolean
        Frame quality indicator bit
    amr.wb.cmr  CMR
        Unsigned 8-bit integer
        codec mode request
    amr.wb.if1.ft  Frame Type
        Unsigned 8-bit integer
    amr.wb.if1.modeind  Mode Type indication
        Unsigned 8-bit integer
    amr.wb.if1.modereq  Mode Type request
        Unsigned 8-bit integer
    amr.wb.if1.stimodeind  Mode Type indication
        Unsigned 8-bit integer
    amr.wb.if2.ft  Frame Type
        Unsigned 8-bit integer
    amr.wb.if2.stimodeind  Mode Type indication
        Unsigned 8-bit integer
    amr.wb.toc.ft  FT bits
        Unsigned 8-bit integer
        Frame type index

Address Resolution Protocol (arp)

    arp.dst.atm_num_e164  Target ATM number (E.164)
        String
    arp.dst.atm_num_nsap  Target ATM number (NSAP)
        Byte array
    arp.dst.atm_subaddr  Target ATM subaddress
        Byte array
    arp.dst.hlen  Target ATM number length
        Unsigned 8-bit integer
    arp.dst.htype  Target ATM number type
        Boolean
    arp.dst.hw  Target hardware address
        Byte array
    arp.dst.hw_mac  Target MAC address
        6-byte Hardware (MAC) Address
    arp.dst.pln  Target protocol size
        Unsigned 8-bit integer
    arp.dst.proto  Target protocol address
        Byte array
    arp.dst.proto_ipv4  Target IP address
        IPv4 address
    arp.dst.slen  Target ATM subaddress length
        Unsigned 8-bit integer
    arp.dst.stype  Target ATM subaddress type
        Boolean
    arp.duplicate-address-detected  Duplicate IP address detected
        No value
    arp.duplicate-address-frame  Frame showing earlier use of IP address
        Frame number
    arp.hw.size  Hardware size
        Unsigned 8-bit integer
    arp.hw.type  Hardware type
        Unsigned 16-bit integer
    arp.isgratuitous  Is gratuitous
        Boolean
    arp.opcode  Opcode
        Unsigned 16-bit integer
    arp.packet-storm-detected  Packet storm detected
        No value
    arp.proto.size  Protocol size
        Unsigned 8-bit integer
    arp.proto.type  Protocol type
        Unsigned 16-bit integer
    arp.seconds-since-duplicate-address-frame  Seconds since earlier frame seen
        Unsigned 32-bit integer
    arp.src.atm_num_e164  Sender ATM number (E.164)
        String
    arp.src.atm_num_nsap  Sender ATM number (NSAP)
        Byte array
    arp.src.atm_subaddr  Sender ATM subaddress
        Byte array
    arp.src.hlen  Sender ATM number length
        Unsigned 8-bit integer
    arp.src.htype  Sender ATM number type
        Boolean
    arp.src.hw  Sender hardware address
        Byte array
    arp.src.hw_mac  Sender MAC address
        6-byte Hardware (MAC) Address
    arp.src.pln  Sender protocol size
        Unsigned 8-bit integer
    arp.src.proto  Sender protocol address
        Byte array
    arp.src.proto_ipv4  Sender IP address
        IPv4 address
    arp.src.slen  Sender ATM subaddress length
        Unsigned 8-bit integer
    arp.src.stype  Sender ATM subaddress type
        Boolean

Advanced Message Queueing Protocol (amqp)

    amqp.channel  Channel
        Unsigned 16-bit integer
        Channel ID
    amqp.field  AMQP
        No value
    amqp.header.body-size  Body size
        Unsigned 64-bit integer
    amqp.header.class  Class ID
        Unsigned 16-bit integer
    amqp.header.properties  Properties
        No value
        Message properties
    amqp.header.property-flags  Property flags
        Unsigned 16-bit integer
    amqp.header.weight  Weight
        Unsigned 16-bit integer
    amqp.init.id_major  Protocol ID Major
        Unsigned 8-bit integer
        Protocol ID major
    amqp.init.id_minor  Protocol ID Minor
        Unsigned 8-bit integer
        Protocol ID minor
    amqp.init.protocol  Protocol
        String
        Protocol name
    amqp.init.version_major  Version Major
        Unsigned 8-bit integer
        Protocol version major
    amqp.init.version_minor  Version Minor
        Unsigned 8-bit integer
        Protocol version minor
    amqp.length  Length
        Unsigned 32-bit integer
        Length of the frame
    amqp.method.arguments  Arguments
        No value
        Method arguments
    amqp.method.arguments.active  Active
        Boolean
        active
    amqp.method.arguments.arguments  Arguments
        No value
        arguments
    amqp.method.arguments.auto_delete  Auto-Delete
        Boolean
        auto-delete
    amqp.method.arguments.capabilities  Capabilities
        String
        capabilities
    amqp.method.arguments.challenge  Challenge
        Byte array
        challenge
    amqp.method.arguments.channel_id  Channel-Id
        Byte array
        channel-id
    amqp.method.arguments.channel_max  Channel-Max
        Unsigned 16-bit integer
        channel-max
    amqp.method.arguments.class_id  Class-Id
        Unsigned 16-bit integer
        class-id
    amqp.method.arguments.client_properties  Client-Properties
        No value
        client-properties
    amqp.method.arguments.cluster_id  Cluster-Id
        String
        cluster-id
    amqp.method.arguments.consume_rate  Consume-Rate
        Unsigned 32-bit integer
        consume-rate
    amqp.method.arguments.consumer_count  Consumer-Count
        Unsigned 32-bit integer
        consumer-count
    amqp.method.arguments.consumer_tag  Consumer-Tag
        String
        consumer-tag
    amqp.method.arguments.content_size  Content-Size
        Unsigned 64-bit integer
        content-size
    amqp.method.arguments.delivery_tag  Delivery-Tag
        Unsigned 64-bit integer
        delivery-tag
    amqp.method.arguments.dtx_identifier  Dtx-Identifier
        String
        dtx-identifier
    amqp.method.arguments.durable  Durable
        Boolean
        durable
    amqp.method.arguments.exchange  Exchange
        String
        exchange
    amqp.method.arguments.exclusive  Exclusive
        Boolean
        exclusive
    amqp.method.arguments.filter  Filter
        No value
        filter
    amqp.method.arguments.frame_max  Frame-Max
        Unsigned 32-bit integer
        frame-max
    amqp.method.arguments.global  Global
        Boolean
        global
    amqp.method.arguments.heartbeat  Heartbeat
        Unsigned 16-bit integer
        heartbeat
    amqp.method.arguments.host  Host
        String
        host
    amqp.method.arguments.identifier  Identifier
        String
        identifier
    amqp.method.arguments.if_empty  If-Empty
        Boolean
        if-empty
    amqp.method.arguments.if_unused  If-Unused
        Boolean
        if-unused
    amqp.method.arguments.immediate  Immediate
        Boolean
        immediate
    amqp.method.arguments.insist  Insist
        Boolean
        insist
    amqp.method.arguments.internal  Internal
        Boolean
        internal
    amqp.method.arguments.known_hosts  Known-Hosts
        String
        known-hosts
    amqp.method.arguments.locale  Locale
        String
        locale
    amqp.method.arguments.locales  Locales
        Byte array
        locales
    amqp.method.arguments.mandatory  Mandatory
        Boolean
        mandatory
    amqp.method.arguments.mechanism  Mechanism
        String
        mechanism
    amqp.method.arguments.mechanisms  Mechanisms
        Byte array
        mechanisms
    amqp.method.arguments.message_count  Message-Count
        Unsigned 32-bit integer
        message-count
    amqp.method.arguments.meta_data  Meta-Data
        No value
        meta-data
    amqp.method.arguments.method_id  Method-Id
        Unsigned 16-bit integer
        method-id
    amqp.method.arguments.multiple  Multiple
        Boolean
        multiple
    amqp.method.arguments.no_ack  No-Ack
        Boolean
        no-ack
    amqp.method.arguments.no_local  No-Local
        Boolean
        no-local
    amqp.method.arguments.nowait  Nowait
        Boolean
        nowait
    amqp.method.arguments.out_of_band  Out-Of-Band
        String
        out-of-band
    amqp.method.arguments.passive  Passive
        Boolean
        passive
    amqp.method.arguments.prefetch_count  Prefetch-Count
        Unsigned 16-bit integer
        prefetch-count
    amqp.method.arguments.prefetch_size  Prefetch-Size
        Unsigned 32-bit integer
        prefetch-size
    amqp.method.arguments.queue  Queue
        String
        queue
    amqp.method.arguments.read  Read
        Boolean
        read
    amqp.method.arguments.realm  Realm
        String
        realm
    amqp.method.arguments.redelivered  Redelivered
        Boolean
        redelivered
    amqp.method.arguments.reply_code  Reply-Code
        Unsigned 16-bit integer
        reply-code
    amqp.method.arguments.reply_text  Reply-Text
        String
        reply-text
    amqp.method.arguments.requeue  Requeue
        Boolean
        requeue
    amqp.method.arguments.response  Response
        Byte array
        response
    amqp.method.arguments.routing_key  Routing-Key
        String
        routing-key
    amqp.method.arguments.server_properties  Server-Properties
        No value
        server-properties
    amqp.method.arguments.staged_size  Staged-Size
        Unsigned 64-bit integer
        staged-size
    amqp.method.arguments.ticket  Ticket
        Unsigned 16-bit integer
        ticket
    amqp.method.arguments.type  Type
        String
        type
    amqp.method.arguments.version_major  Version-Major
        Unsigned 8-bit integer
        version-major
    amqp.method.arguments.version_minor  Version-Minor
        Unsigned 8-bit integer
        version-minor
    amqp.method.arguments.virtual_host  Virtual-Host
        String
        virtual-host
    amqp.method.arguments.write  Write
        Boolean
        write
    amqp.method.class  Class
        Unsigned 16-bit integer
        Class ID
    amqp.method.method  Method
        Unsigned 16-bit integer
        Method ID
    amqp.method.properties.app_id  App-Id
        String
        app-id
    amqp.method.properties.broadcast  Broadcast
        Unsigned 8-bit integer
        broadcast
    amqp.method.properties.cluster_id  Cluster-Id
        String
        cluster-id
    amqp.method.properties.content_encoding  Content-Encoding
        String
        content-encoding
    amqp.method.properties.content_type  Content-Type
        String
        content-type
    amqp.method.properties.correlation_id  Correlation-Id
        String
        correlation-id
    amqp.method.properties.data_name  Data-Name
        String
        data-name
    amqp.method.properties.delivery_mode  Delivery-Mode
        Unsigned 8-bit integer
        delivery-mode
    amqp.method.properties.durable  Durable
        Unsigned 8-bit integer
        durable
    amqp.method.properties.expiration  Expiration
        String
        expiration
    amqp.method.properties.filename  Filename
        String
        filename
    amqp.method.properties.headers  Headers
        No value
        headers
    amqp.method.properties.message_id  Message-Id
        String
        message-id
    amqp.method.properties.priority  Priority
        Unsigned 8-bit integer
        priority
    amqp.method.properties.proxy_name  Proxy-Name
        String
        proxy-name
    amqp.method.properties.reply_to  Reply-To
        String
        reply-to
    amqp.method.properties.timestamp  Timestamp
        Unsigned 64-bit integer
        timestamp
    amqp.method.properties.type  Type
        String
        type
    amqp.method.properties.user_id  User-Id
        String
        user-id
    amqp.payload  Payload
        Byte array
        Message payload
    amqp.type  Type
        Unsigned 8-bit integer
        Frame type

AgentX (agentx)

    agentx.c.reason  Reason
        Unsigned 8-bit integer
        close reason
    agentx.flags  Flags
        Unsigned 8-bit integer
        header type
    agentx.gb.mrepeat  Max Repetition
        Unsigned 16-bit integer
        getBulk Max repetition
    agentx.gb.nrepeat  Repeaters
        Unsigned 16-bit integer
        getBulk Num. repeaters
    agentx.n_subid  Number subids
        Unsigned 8-bit integer
    agentx.o.timeout  Timeout
        Unsigned 8-bit integer
        open timeout
    agentx.oid  OID
        String
    agentx.oid_include  OID include
        Unsigned 8-bit integer
    agentx.oid_prefix  OID prefix
        Unsigned 8-bit integer
    agentx.ostring  Octet String
        String
    agentx.ostring_len  OString len
        Unsigned 32-bit integer
        Octet String Length
    agentx.packet_id  PacketID
        Unsigned 32-bit integer
        Packet ID
    agentx.payload_len  Payload length
        Unsigned 32-bit integer
    agentx.r.error  Resp. error
        Unsigned 16-bit integer
        response error
    agentx.r.index  Resp. index
        Unsigned 16-bit integer
        response index
    agentx.r.priority  Priority
        Unsigned 8-bit integer
        Register Priority
    agentx.r.range_subid  Range_subid
        Unsigned 8-bit integer
        Register range_subid
    agentx.r.timeout  Timeout
        Unsigned 8-bit integer
        Register timeout
    agentx.r.upper_bound  Upper bound
        Unsigned 32-bit integer
        Register upper bound
    agentx.r.uptime  sysUpTime
        Unsigned 32-bit integer
    agentx.session_id  sessionID
        Unsigned 32-bit integer
        Session ID
    agentx.transaction_id  TransactionID
        Unsigned 32-bit integer
        Transaction ID
    agentx.type  Type
        Unsigned 8-bit integer
        header type
    agentx.u.priority  Priority
        Unsigned 8-bit integer
        Unregister Priority
    agentx.u.range_subid  Range_subid
        Unsigned 8-bit integer
        Unregister range_subid
    agentx.u.timeout  Timeout
        Unsigned 8-bit integer
        Unregister timeout
    agentx.u.upper_bound  Upper bound
        Unsigned 32-bit integer
        Register upper bound
    agentx.v.tag  Variable type
        Unsigned 16-bit integer
        vtag
    agentx.v.val32  Value(32)
        Unsigned 32-bit integer
        val32
    agentx.v.val64  Value(64)
        Unsigned 64-bit integer
        val64
    agentx.version  Version
        Unsigned 8-bit integer
        header version

Aggregate Server Access Protocol (asap)

    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.dccp_transport_port  Port
        Unsigned 16-bit integer
    asap.dccp_transport_reserved  Reserved
        Unsigned 16-bit integer
    asap.dccp_transport_service_code  Service Code
        Unsigned 16-bit integer
    asap.h_bit  H Bit
        Boolean
    asap.hropt_items  Items
        Unsigned 32-bit integer
    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_selection_policy_degradation  Policy Degradation
        Double-precision floating point
    asap.pool_member_selection_policy_distance  Policy Distance
        Unsigned 32-bit integer
    asap.pool_member_selection_policy_load  Policy Load
        Double-precision floating point
    asap.pool_member_selection_policy_load_dpf  Policy Load DPF
        Double-precision floating point
    asap.pool_member_selection_policy_priority  Policy Priority
        Unsigned 32-bit integer
    asap.pool_member_selection_policy_type  Policy Type
        Unsigned 32-bit integer
    asap.pool_member_selection_policy_value  Policy Value
        Byte array
    asap.pool_member_selection_policy_weight  Policy Weight
        Unsigned 32-bit integer
    asap.pool_member_selection_policy_weight_dpf  Policy Weight DPF
        Double-precision floating point
    asap.r_bit  R Bit
        Boolean
    asap.sctp_transport_port  Port
        Unsigned 16-bit integer
    asap.server_identifier  Server Identifier
        Unsigned 32-bit integer
    asap.tcp_transport_port  Port
        Unsigned 16-bit integer
    asap.transport_use  Transport Use
        Unsigned 16-bit integer
    asap.udp_lite_transport_port  Port
        Unsigned 16-bit integer
    asap.udp_lite_transport_reserved  Reserved
        Unsigned 16-bit integer
    asap.udp_transport_port  Port
        Unsigned 16-bit integer
    asap.udp_transport_reserved  Reserved
        Unsigned 16-bit integer

Airopeek encapsulated IEEE 802.11 (airopeek)

    airopeek.channel  Channel
        Unsigned 8-bit integer
    airopeek.timestamp  Timestamp?
        Unsigned 32-bit integer
    airopeek.unknown1  Unknown1
        Byte array
    airopeek.unknown2  caplength1
        Unsigned 16-bit integer
    airopeek.unknown3  caplength2
        Unsigned 16-bit integer
    airopeek.unknown4  Unknown4
        Byte array
    airopeek.unknown5  Unknown5
        Byte array
    airopeek.unknown6  Unknown6
        Byte array

Alert Standard Forum (asf)

    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

Alteon - Transparent Proxy Cache Protocol (tpcp)

    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

Andrew File System (AFS) (afs)

    afs.backup  Backup
        Boolean
        Backup Server
    afs.backup.errcode  Error Code
        Unsigned 32-bit integer
    afs.backup.opcode  Operation
        Unsigned 32-bit integer
    afs.bos  BOS
        Boolean
        Basic Oversee Server
    afs.bos.baktime  Backup Time
        Date/Time stamp
    afs.bos.cell  Cell
        String
    afs.bos.cmd  Command
        String
    afs.bos.content  Content
        String
    afs.bos.data  Data
        Byte array
    afs.bos.date  Date
        Unsigned 32-bit integer
    afs.bos.errcode  Error Code
        Unsigned 32-bit integer
    afs.bos.error  Error
        String
    afs.bos.file  File
        String
    afs.bos.flags  Flags
        Unsigned 32-bit integer
    afs.bos.host  Host
        String
    afs.bos.instance  Instance
        String
    afs.bos.key  Key
        Byte array
        key
    afs.bos.keychecksum  Key Checksum
        Unsigned 32-bit integer
    afs.bos.keymodtime  Key Modification Time
        Date/Time stamp
    afs.bos.keyspare2  Key Spare 2
        Unsigned 32-bit integer
    afs.bos.kvno  Key Version Number
        Unsigned 32-bit integer
    afs.bos.newtime  New Time
        Date/Time stamp
    afs.bos.number  Number
        Unsigned 32-bit integer
    afs.bos.oldtime  Old Time
        Date/Time stamp
    afs.bos.opcode  Operation
        Unsigned 32-bit integer
    afs.bos.parm  Parm
        String
    afs.bos.path  Path
        String
    afs.bos.size  Size
        Unsigned 32-bit integer
    afs.bos.spare1  Spare1
        String
    afs.bos.spare2  Spare2
        String
    afs.bos.spare3  Spare3
        String
    afs.bos.status  Status
        Signed 32-bit integer
    afs.bos.statusdesc  Status Description
        String
    afs.bos.type  Type
        String
    afs.bos.user  User
        String
    afs.cb  Callback
        Boolean
    afs.cb.callback.expires  Expires
        Date/Time stamp
    afs.cb.callback.type  Type
        Unsigned 32-bit integer
    afs.cb.callback.version  Version
        Unsigned 32-bit integer
    afs.cb.errcode  Error Code
        Unsigned 32-bit integer
    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
    afs.error  Error
        Boolean
    afs.error.opcode  Operation
        Unsigned 32-bit integer
    afs.fs  File Server
        Boolean
    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
    afs.fs.callback.type  Type
        Unsigned 32-bit integer
    afs.fs.callback.version  Version
        Unsigned 32-bit integer
    afs.fs.cps.spare1  CPS Spare1
        Unsigned 32-bit integer
    afs.fs.cps.spare2  CPS Spare2
        Unsigned 32-bit integer
    afs.fs.cps.spare3  CPS Spare3
        Unsigned 32-bit integer
    afs.fs.data  Data
        Byte array
    afs.fs.errcode  Error Code
        Unsigned 32-bit integer
    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
    afs.fs.flength64  FLength64
        Unsigned 64-bit integer
    afs.fs.ipaddr  IP Addr
        IPv4 address
    afs.fs.length  Length
        Unsigned 32-bit integer
    afs.fs.length64  Length64
        Unsigned 64-bit integer
    afs.fs.motd  Message of the Day
        String
    afs.fs.name  Name
        String
    afs.fs.newname  New Name
        String
    afs.fs.offlinemsg  Offline Message
        String
        Volume Name
    afs.fs.offset  Offset
        Unsigned 32-bit integer
    afs.fs.offset64  Offset64
        Unsigned 64-bit integer
    afs.fs.oldname  Old Name
        String
    afs.fs.opcode  Operation
        Unsigned 32-bit integer
    afs.fs.status.anonymousaccess  Anonymous Access
        Unsigned 32-bit integer
    afs.fs.status.author  Author
        Unsigned 32-bit integer
    afs.fs.status.calleraccess  Caller Access
        Unsigned 32-bit integer
    afs.fs.status.clientmodtime  Client Modification Time
        Date/Time stamp
    afs.fs.status.dataversion  Data Version
        Unsigned 32-bit integer
    afs.fs.status.dataversionhigh  Data Version (High)
        Unsigned 32-bit integer
    afs.fs.status.filetype  File Type
        Unsigned 32-bit integer
    afs.fs.status.group  Group
        Unsigned 32-bit integer
    afs.fs.status.interfaceversion  Interface Version
        Unsigned 32-bit integer
    afs.fs.status.length  Length
        Unsigned 32-bit integer
    afs.fs.status.linkcount  Link Count
        Unsigned 32-bit integer
    afs.fs.status.mask  Mask
        Unsigned 32-bit integer
    afs.fs.status.mask.fsync  FSync
        Boolean
    afs.fs.status.mask.setgroup  Set Group
        Boolean
    afs.fs.status.mask.setmode  Set Mode
        Boolean
    afs.fs.status.mask.setmodtime  Set Modification Time
        Boolean
    afs.fs.status.mask.setowner  Set Owner
        Boolean
    afs.fs.status.mask.setsegsize  Set Segment Size
        Boolean
    afs.fs.status.mode  Unix Mode
        Unsigned 32-bit integer
    afs.fs.status.owner  Owner
        Unsigned 32-bit integer
    afs.fs.status.parentunique  Parent Unique
        Unsigned 32-bit integer
    afs.fs.status.parentvnode  Parent VNode
        Unsigned 32-bit integer
    afs.fs.status.segsize  Segment Size
        Unsigned 32-bit integer
    afs.fs.status.servermodtime  Server Modification Time
        Date/Time stamp
    afs.fs.status.spare2  Spare 2
        Unsigned 32-bit integer
    afs.fs.status.spare3  Spare 3
        Unsigned 32-bit integer
    afs.fs.status.spare4  Spare 4
        Unsigned 32-bit integer
    afs.fs.status.synccounter  Sync Counter
        Unsigned 32-bit integer
    afs.fs.symlink.content  Symlink Content
        String
    afs.fs.symlink.name  Symlink Name
        String
    afs.fs.timestamp  Timestamp
        Date/Time stamp
    afs.fs.token  Token
        Byte array
    afs.fs.viceid  Vice ID
        Unsigned 32-bit integer
    afs.fs.vicelocktype  Vice Lock Type
        Unsigned 32-bit integer
    afs.fs.volid  Volume ID
        Unsigned 32-bit integer
    afs.fs.volname  Volume Name
        String
    afs.fs.volsync.spare1  Volume Creation Timestamp
        Date/Time stamp
    afs.fs.volsync.spare2  Spare 2
        Unsigned 32-bit integer
    afs.fs.volsync.spare3  Spare 3
        Unsigned 32-bit integer
    afs.fs.volsync.spare4  Spare 4
        Unsigned 32-bit integer
    afs.fs.volsync.spare5  Spare 5
        Unsigned 32-bit integer
    afs.fs.volsync.spare6  Spare 6
        Unsigned 32-bit integer
    afs.fs.xstats.clientversion  Client Version
        Unsigned 32-bit integer
    afs.fs.xstats.collnumber  Collection Number
        Unsigned 32-bit integer
    afs.fs.xstats.timestamp  XStats Timestamp
        Unsigned 32-bit integer
    afs.fs.xstats.version  XStats Version
        Unsigned 32-bit integer
    afs.kauth  KAuth
        Boolean
        Kerberos Auth Server
    afs.kauth.data  Data
        Byte array
    afs.kauth.domain  Domain
        String
    afs.kauth.errcode  Error Code
        Unsigned 32-bit integer
    afs.kauth.kvno  Key Version Number
        Unsigned 32-bit integer
    afs.kauth.name  Name
        String
    afs.kauth.opcode  Operation
        Unsigned 32-bit integer
    afs.kauth.princ  Principal
        String
    afs.kauth.realm  Realm
        String
    afs.prot  Protection
        Boolean
        Protection Server
    afs.prot.count  Count
        Unsigned 32-bit integer
    afs.prot.errcode  Error Code
        Unsigned 32-bit integer
    afs.prot.flag  Flag
        Unsigned 32-bit integer
    afs.prot.gid  Group ID
        Unsigned 32-bit integer
    afs.prot.id  ID
        Unsigned 32-bit integer
    afs.prot.maxgid  Maximum Group ID
        Unsigned 32-bit integer
    afs.prot.maxuid  Maximum User ID
        Unsigned 32-bit integer
    afs.prot.name  Name
        String
    afs.prot.newid  New ID
        Unsigned 32-bit integer
    afs.prot.oldid  Old ID
        Unsigned 32-bit integer
    afs.prot.opcode  Operation
        Unsigned 32-bit integer
    afs.prot.pos  Position
        Unsigned 32-bit integer
    afs.prot.uid  User ID
        Unsigned 32-bit integer
    afs.repframe  Reply Frame
        Frame number
    afs.reqframe  Request Frame
        Frame number
    afs.rmtsys  Rmtsys
        Boolean
    afs.rmtsys.opcode  Operation
        Unsigned 32-bit integer
    afs.time  Time from request
        Time duration
        Time between Request and Reply for AFS calls
    afs.ubik  Ubik
        Boolean
    afs.ubik.activewrite  Active Write
        Unsigned 32-bit integer
    afs.ubik.addr  Address
        IPv4 address
    afs.ubik.amsyncsite  Am Sync Site
        Unsigned 32-bit integer
    afs.ubik.anyreadlocks  Any Read Locks
        Unsigned 32-bit integer
    afs.ubik.anywritelocks  Any Write Locks
        Unsigned 32-bit integer
    afs.ubik.beaconsincedown  Beacon Since Down
        Unsigned 32-bit integer
    afs.ubik.currentdb  Current DB
        Unsigned 32-bit integer
    afs.ubik.currenttran  Current Transaction
        Unsigned 32-bit integer
    afs.ubik.epochtime  Epoch Time
        Date/Time stamp
    afs.ubik.errcode  Error Code
        Unsigned 32-bit integer
    afs.ubik.file  File
        Unsigned 32-bit integer
    afs.ubik.interface  Interface Address
        IPv4 address
    afs.ubik.isclone  Is Clone
        Unsigned 32-bit integer
    afs.ubik.lastbeaconsent  Last Beacon Sent
        Date/Time stamp
    afs.ubik.lastvote  Last Vote
        Unsigned 32-bit integer
    afs.ubik.lastvotetime  Last Vote Time
        Date/Time stamp
    afs.ubik.lastyesclaim  Last Yes Claim
        Date/Time stamp
    afs.ubik.lastyeshost  Last Yes Host
        IPv4 address
    afs.ubik.lastyesstate  Last Yes State
        Unsigned 32-bit integer
    afs.ubik.lastyesttime  Last Yes Time
        Date/Time stamp
    afs.ubik.length  Length
        Unsigned 32-bit integer
    afs.ubik.lockedpages  Locked Pages
        Unsigned 32-bit integer
    afs.ubik.locktype  Lock Type
        Unsigned 32-bit integer
    afs.ubik.lowesthost  Lowest Host
        IPv4 address
    afs.ubik.lowesttime  Lowest Time
        Date/Time stamp
    afs.ubik.now  Now
        Date/Time stamp
    afs.ubik.nservers  Number of Servers
        Unsigned 32-bit integer
    afs.ubik.opcode  Operation
        Unsigned 32-bit integer
    afs.ubik.position  Position
        Unsigned 32-bit integer
    afs.ubik.recoverystate  Recovery State
        Unsigned 32-bit integer
    afs.ubik.site  Site
        IPv4 address
    afs.ubik.state  State
        Unsigned 32-bit integer
    afs.ubik.synchost  Sync Host
        IPv4 address
    afs.ubik.syncsiteuntil  Sync Site Until
        Date/Time stamp
    afs.ubik.synctime  Sync Time
        Date/Time stamp
    afs.ubik.tidcounter  TID Counter
        Unsigned 32-bit integer
    afs.ubik.up  Up
        Unsigned 32-bit integer
    afs.ubik.version.counter  Counter
        Unsigned 32-bit integer
    afs.ubik.version.epoch  Epoch
        Date/Time stamp
    afs.ubik.voteend  Vote Ends
        Date/Time stamp
    afs.ubik.votestart  Vote Started
        Date/Time stamp
    afs.ubik.votetype  Vote Type
        Unsigned 32-bit integer
    afs.ubik.writelockedpages  Write Locked Pages
        Unsigned 32-bit integer
    afs.ubik.writetran  Write Transaction
        Unsigned 32-bit integer
    afs.update  Update
        Boolean
        Update Server
    afs.update.opcode  Operation
        Unsigned 32-bit integer
    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
    afs.vldb.clonevol  Clone Volume ID
        Unsigned 32-bit integer
    afs.vldb.count  Volume Count
        Unsigned 32-bit integer
    afs.vldb.errcode  Error Code
        Unsigned 32-bit integer
    afs.vldb.flags  Flags
        Unsigned 32-bit integer
    afs.vldb.flags.bkexists  Backup Exists
        Boolean
    afs.vldb.flags.dfsfileset  DFS Fileset
        Boolean
    afs.vldb.flags.roexists  Read-Only Exists
        Boolean
    afs.vldb.flags.rwexists  Read/Write Exists
        Boolean
    afs.vldb.id  Volume ID
        Unsigned 32-bit integer
    afs.vldb.index  Volume Index
        Unsigned 32-bit integer
    afs.vldb.name  Volume Name
        String
    afs.vldb.nextindex  Next Volume Index
        Unsigned 32-bit integer
    afs.vldb.numservers  Number of Servers
        Unsigned 32-bit integer
    afs.vldb.opcode  Operation
        Unsigned 32-bit integer
    afs.vldb.partition  Partition
        String
    afs.vldb.rovol  Read-Only Volume ID
        Unsigned 32-bit integer
    afs.vldb.rwvol  Read-Write Volume ID
        Unsigned 32-bit integer
        Read-Only Volume ID
    afs.vldb.server  Server
        IPv4 address
    afs.vldb.serverflags  Server Flags
        Unsigned 32-bit integer
    afs.vldb.serverip  Server IP
        IPv4 address
    afs.vldb.serveruniq  Server Unique Address
        Unsigned 32-bit integer
    afs.vldb.serveruuid  Server UUID
        Byte array
    afs.vldb.spare1  Spare 1
        Unsigned 32-bit integer
    afs.vldb.spare2  Spare 2
        Unsigned 32-bit integer
    afs.vldb.spare3  Spare 3
        Unsigned 32-bit integer
    afs.vldb.spare4  Spare 4
        Unsigned 32-bit integer
    afs.vldb.spare5  Spare 5
        Unsigned 32-bit integer
    afs.vldb.spare6  Spare 6
        Unsigned 32-bit integer
    afs.vldb.spare7  Spare 7
        Unsigned 32-bit integer
    afs.vldb.spare8  Spare 8
        Unsigned 32-bit integer
    afs.vldb.spare9  Spare 9
        Unsigned 32-bit integer
    afs.vldb.type  Volume Type
        Unsigned 32-bit integer
    afs.vol  Volume Server
        Boolean
    afs.vol.count  Volume Count
        Unsigned 32-bit integer
    afs.vol.errcode  Error Code
        Unsigned 32-bit integer
    afs.vol.id  Volume ID
        Unsigned 32-bit integer
    afs.vol.name  Volume Name
        String
    afs.vol.opcode  Operation
        Unsigned 32-bit integer

Anything in Anything Protocol (ayiya)

    ayiya.authmethod  Authentication method
        Unsigned 8-bit integer
    ayiya.epoch  Epoch
        Date/Time stamp
    ayiya.hashmethod  Hash method
        Unsigned 8-bit integer
    ayiya.identity  Identity
        Byte array
    ayiya.idlen  Identity field length
        Unsigned 8-bit integer
    ayiya.idtype  Identity field type
        Unsigned 8-bit integer
    ayiya.nextheader  Next Header
        Unsigned 8-bit integer
    ayiya.opcode  Operation Code
        Unsigned 8-bit integer
    ayiya.siglen  Signature Length
        Unsigned 8-bit integer
    ayiya.signature  Signature
        Byte array

Apache JServ Protocol v1.3 (ajp13)

    ajp13.code  Code
        String
        Type Code
    ajp13.data  Data
        String
    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

Apple Filing Protocol (afp)

    afp.AFPVersion  AFP Version
        Length string pair
        Client AFP version
    afp.UAM  UAM
        Length string pair
        User Authentication Method
    afp.access  Access mode
        Unsigned 8-bit integer
        Fork access mode
    afp.access.deny_read  Deny read
        Boolean
    afp.access.deny_write  Deny write
        Boolean
    afp.access.read  Read
        Boolean
        Open for reading
    afp.access.write  Write
        Boolean
        Open for writing
    afp.access_bitmap  Bitmap
        Unsigned 16-bit integer
        Bitmap (reserved)
    afp.ace_applicable  ACE
        Byte array
        ACE applicable
    afp.ace_flags  Flags
        Unsigned 32-bit integer
        ACE flags
    afp.ace_flags.allow  Allow
        Boolean
        Allow rule
    afp.ace_flags.deny  Deny
        Boolean
        Deny rule
    afp.ace_flags.directory_inherit  Dir inherit
        Boolean
    afp.ace_flags.file_inherit  File inherit
        Boolean
    afp.ace_flags.inherited  Inherited
        Boolean
    afp.ace_flags.limit_inherit  Limit inherit
        Boolean
    afp.ace_flags.only_inherit  Only inherit
        Boolean
    afp.ace_rights  Rights
        Unsigned 32-bit integer
        ACE flags
    afp.acl_access_bitmap  Bitmap
        Unsigned 32-bit integer
        ACL access bitmap
    afp.acl_access_bitmap.append_data  Append data/create subdir
        Boolean
        Append data to a file / create a subdirectory
    afp.acl_access_bitmap.change_owner  Change owner
        Boolean
    afp.acl_access_bitmap.delete  Delete
        Boolean
    afp.acl_access_bitmap.delete_child  Delete dir
        Boolean
        Delete directory
    afp.acl_access_bitmap.execute  Execute/Search
        Boolean
        Execute a program
    afp.acl_access_bitmap.generic_all  Generic all
        Boolean
    afp.acl_access_bitmap.generic_execute  Generic execute
        Boolean
    afp.acl_access_bitmap.generic_read  Generic read
        Boolean
    afp.acl_access_bitmap.generic_write  Generic write
        Boolean
    afp.acl_access_bitmap.read_attrs  Read attributes
        Boolean
    afp.acl_access_bitmap.read_data  Read/List
        Boolean
        Read data / list directory
    afp.acl_access_bitmap.read_extattrs  Read extended attributes
        Boolean
    afp.acl_access_bitmap.read_security  Read security
        Boolean
        Read access rights
    afp.acl_access_bitmap.synchronize  Synchronize
        Boolean
    afp.acl_access_bitmap.write_attrs  Write attributes
        Boolean
    afp.acl_access_bitmap.write_data  Write/Add file
        Boolean
        Write data to a file / add a file to a directory
    afp.acl_access_bitmap.write_extattrs  Write extended attributes
        Boolean
    afp.acl_access_bitmap.write_security  Write security
        Boolean
        Write access rights
    afp.acl_entrycount  Count
        Unsigned 32-bit integer
        Number of ACL entries
    afp.acl_flags  ACL flags
        Unsigned 32-bit integer
    afp.acl_list_bitmap  ACL bitmap
        Unsigned 16-bit integer
        ACL control list bitmap
    afp.acl_list_bitmap.ACL  ACL
        Boolean
    afp.acl_list_bitmap.GRPUUID  GRPUUID
        Boolean
        Group UUID
    afp.acl_list_bitmap.Inherit  Inherit
        Boolean
        Inherit ACL
    afp.acl_list_bitmap.REMOVEACL  Remove ACL
        Boolean
    afp.acl_list_bitmap.UUID  UUID
        Boolean
        User UUID
    afp.actual_count  Count
        Signed 32-bit integer
        Number of bytes returned by read/write
    afp.afp_login_flags  Flags
        Unsigned 16-bit integer
        Login flags
    afp.appl_index  Index
        Unsigned 16-bit integer
        Application index
    afp.appl_tag  Tag
        Unsigned 32-bit integer
        Application tag
    afp.backup_date  Backup date
        Date/Time stamp
    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
        Length string pair
        File/folder comment
    afp.create_flag  Hard create
        Boolean
        Soft/hard create file
    afp.creation_date  Creation date
        Date/Time stamp
    afp.data_fork_len  Data fork size
        Unsigned 32-bit integer
    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
    afp.dir_ar.e_read  Everyone has read access
        Boolean
    afp.dir_ar.e_search  Everyone has search access
        Boolean
    afp.dir_ar.e_write  Everyone has write access
        Boolean
    afp.dir_ar.g_read  Group has read access
        Boolean
    afp.dir_ar.g_search  Group has search access
        Boolean
    afp.dir_ar.g_write  Group has write access
        Boolean
    afp.dir_ar.o_read  Owner has read access
        Boolean
    afp.dir_ar.o_search  Owner has search access
        Boolean
    afp.dir_ar.o_write  Owner has write access
        Boolean
    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
    afp.dir_ar.u_search  User has search access
        Boolean
    afp.dir_ar.u_write  User has write access
        Boolean
    afp.dir_attribute.backup_needed  Backup needed
        Boolean
        Directory needs to be backed up
    afp.dir_attribute.delete_inhibit  Delete inhibit
        Boolean
    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
    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
    afp.dir_bitmap.UTF8_name  UTF-8 name
        Boolean
        Return UTF-8 name if directory
    afp.dir_bitmap.access_rights  Access rights
        Boolean
        Return access rights if directory
    afp.dir_bitmap.attributes  Attributes
        Boolean
        Return attributes if directory
    afp.dir_bitmap.backup_date  Backup date
        Boolean
        Return backup date if directory
    afp.dir_bitmap.create_date  Creation date
        Boolean
        Return creation date if directory
    afp.dir_bitmap.did  DID
        Boolean
        Return parent directory ID if directory
    afp.dir_bitmap.fid  File ID
        Boolean
        Return file ID if directory
    afp.dir_bitmap.finder_info  Finder info
        Boolean
        Return finder info if directory
    afp.dir_bitmap.group_id  Group id
        Boolean
        Return group id if directory
    afp.dir_bitmap.long_name  Long name
        Boolean
        Return long name if directory
    afp.dir_bitmap.mod_date  Modification date
        Boolean
        Return modification date if directory
    afp.dir_bitmap.offspring_count  Offspring count
        Boolean
        Return offspring count if directory
    afp.dir_bitmap.owner_id  Owner id
        Boolean
        Return owner id if directory
    afp.dir_bitmap.short_name  Short name
        Boolean
        Return short name if directory
    afp.dir_bitmap.unix_privs  UNIX privileges
        Boolean
        Return UNIX privileges if directory
    afp.dir_group_id  Group ID
        Signed 32-bit integer
        Directory group ID
    afp.dir_offspring  Offspring
        Unsigned 16-bit integer
        Directory offspring
    afp.dir_owner_id  Owner ID
        Signed 32-bit integer
        Directory owner ID
    afp.dt_ref  DT ref
        Unsigned 16-bit integer
        Desktop database reference num
    afp.ext_data_fork_len  Extended data fork size
        Unsigned 64-bit integer
        Extended (>2GB) data fork length
    afp.ext_resource_fork_len  Extended resource fork size
        Unsigned 64-bit integer
        Extended (>2GB) resource fork length
    afp.extattr.data  Data
        Byte array
        Extended attribute data
    afp.extattr.len  Length
        Unsigned 32-bit integer
        Extended attribute length
    afp.extattr.name  Name
        String
        Extended attribute name
    afp.extattr.namelen  Length
        Unsigned 16-bit integer
        Extended attribute name length
    afp.extattr.reply_size  Reply size
        Unsigned 32-bit integer
    afp.extattr.req_count  Request Count
        Unsigned 16-bit integer
        Request Count.
    afp.extattr.start_index  Index
        Unsigned 32-bit integer
        Start index
    afp.extattr_bitmap  Bitmap
        Unsigned 16-bit integer
        Extended attributes bitmap
    afp.extattr_bitmap.create  Create
        Boolean
        Create extended attribute
    afp.extattr_bitmap.nofollow  No follow symlinks
        Boolean
        Do not follow symlink
    afp.extattr_bitmap.replace  Replace
        Boolean
        Replace extended attribute
    afp.file_attribute.backup_needed  Backup needed
        Boolean
        File needs to be backed up
    afp.file_attribute.copy_protect  Copy protect
        Boolean
        copy protect
    afp.file_attribute.delete_inhibit  Delete inhibit
        Boolean
        delete inhibit
    afp.file_attribute.df_open  Data fork open
        Boolean
        Data fork already open
    afp.file_attribute.invisible  Invisible
        Boolean
        File is not visible
    afp.file_attribute.multi_user  Multi user
        Boolean
        multi user
    afp.file_attribute.rename_inhibit  Rename inhibit
        Boolean
        rename inhibit
    afp.file_attribute.rf_open  Resource fork open
        Boolean
        Resource fork already open
    afp.file_attribute.set_clear  Set
        Boolean
        Clear/set attribute
    afp.file_attribute.system  System
        Boolean
        File is a system file
    afp.file_attribute.write_inhibit  Write inhibit
        Boolean
    afp.file_bitmap  File bitmap
        Unsigned 16-bit integer
    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
    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
    afp.finder_info  Finder info
        Byte array
    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
    afp.grpuuid  GRPUUID
        Byte array
        Group UUID
    afp.icon_index  Index
        Unsigned 16-bit integer
        Icon index in desktop database
    afp.icon_length  Size
        Unsigned 16-bit integer
        Size for icon bitmap
    afp.icon_tag  Tag
        Unsigned 32-bit integer
        Icon tag
    afp.icon_type  Icon type
        Unsigned 8-bit integer
    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_reply_type  Reply type
        Unsigned 32-bit integer
        Map ID reply type
    afp.map_id_type  Type
        Unsigned 8-bit integer
        Map ID type
    afp.map_name  Name
        Length string pair
        User/Group name
    afp.map_name_type  Type
        Unsigned 8-bit integer
        Map name type
    afp.message  Message
        String
    afp.message_bitmap  Bitmap
        Unsigned 16-bit integer
        Message bitmap
    afp.message_bitmap.requested  Request message
        Boolean
        Message Requested
    afp.message_bitmap.utf8  Message is UTF8
        Boolean
    afp.message_length  Len
        Unsigned 32-bit integer
        Message length
    afp.message_type  Type
        Unsigned 16-bit integer
        Type of server message
    afp.modification_date  Modification date
        Date/Time stamp
    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
    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
    afp.ofork_len64  New length
        Signed 64-bit integer
        New length (64 bits)
    afp.pad  Pad
        No value
        Pad Byte
    afp.passwd  Password
        NULL terminated string
    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
    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
    afp.reply_size32  Reply size
        Unsigned 32-bit integer
    afp.req_count  Req count
        Unsigned 16-bit integer
        Maximum number of structures returned
    afp.reqcount64  Count
        Signed 64-bit integer
        Request Count (64 bits)
    afp.request_bitmap  Request bitmap
        Unsigned 32-bit integer
    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
    afp.request_bitmap.resource_fork_len  Resource fork size
        Boolean
        Search resource fork size
    afp.reserved  Reserved
        Byte array
    afp.resource_fork_len  Resource fork size
        Unsigned 32-bit integer
    afp.response_in  Response in
        Frame number
        The response to this packet is in this packet
    afp.response_to  Response to
        Frame number
        This packet is a response to the packet in this frame
    afp.rw_count  Count
        Signed 32-bit integer
        Number of bytes to be read/written
    afp.rw_count64  Count
        Signed 64-bit integer
        Number of bytes to be read/written (64 bits)
    afp.server_time  Server time
        Date/Time stamp
    afp.session_token  Token
        Byte array
        Session token
    afp.session_token_len  Len
        Unsigned 32-bit integer
        Session token length
    afp.session_token_timestamp  Time stamp
        Unsigned 32-bit integer
        Session time stamp
    afp.session_token_type  Type
        Unsigned 16-bit integer
        Session token type
    afp.short_name_offset  Short name offset
        Unsigned 16-bit integer
        Short name offset in packet
    afp.start_index  Start index
        Unsigned 16-bit integer
        First structure returned
    afp.start_index32  Start index
        Unsigned 32-bit integer
        First structure returned
    afp.struct_size  Struct size
        Unsigned 8-bit integer
        Sizeof of struct
    afp.struct_size16  Struct size
        Unsigned 16-bit integer
        Sizeof of struct
    afp.time  Time from request
        Time duration
        Time between Request and Response for AFP cmds
    afp.unicode_name_offset  Unicode name offset
        Unsigned 16-bit integer
        Unicode name offset in packet
    afp.unix_privs.gid  GID
        Unsigned 32-bit integer
        Group ID
    afp.unix_privs.permissions  Permissions
        Unsigned 32-bit integer
    afp.unix_privs.ua_permissions  User's access rights
        Unsigned 32-bit integer
    afp.unix_privs.uid  UID
        Unsigned 32-bit integer
        User ID
    afp.unknown  Unknown parameter
        Byte array
    afp.user  User
        Length string pair
    afp.user_ID  User ID
        Unsigned 32-bit integer
    afp.user_bitmap  Bitmap
        Unsigned 16-bit integer
        User Info bitmap
    afp.user_bitmap.GID  Primary group ID
        Boolean
    afp.user_bitmap.UID  User ID
        Boolean
    afp.user_bitmap.UUID  UUID
        Boolean
    afp.user_flag  Flag
        Unsigned 8-bit integer
        User Info flag
    afp.user_len  Len
        Unsigned 16-bit integer
        User name length (unicode)
    afp.user_name  User
        String
        User name (unicode)
    afp.user_type  Type
        Unsigned 8-bit integer
        Type of user name
    afp.uuid  UUID
        Byte array
    afp.vol_attribute.TM_lock_steal  TM lock steal
        Boolean
        Supports Time Machine lock stealing
    afp.vol_attribute.acls  ACLs
        Boolean
        Supports access control lists
    afp.vol_attribute.blank_access_privs  Blank access privileges
        Boolean
        Supports blank access privileges
    afp.vol_attribute.case_sensitive  Case sensitive
        Boolean
        Supports case-sensitive filenames
    afp.vol_attribute.cat_search  Catalog search
        Boolean
        Supports catalog search operations
    afp.vol_attribute.extended_attributes  Extended Attributes
        Boolean
        Supports Extended Attributes
    afp.vol_attribute.fileIDs  File IDs
        Boolean
        Supports file IDs
    afp.vol_attribute.inherit_parent_privs  Inherit parent privileges
        Boolean
    afp.vol_attribute.network_user_id  No Network User ID
        Boolean
    afp.vol_attribute.no_exchange_files  No exchange files
        Boolean
        Exchange files not supported
    afp.vol_attribute.passwd  Volume password
        Boolean
        Has a volume password
    afp.vol_attribute.read_only  Read only
        Boolean
        Read only volume
    afp.vol_attribute.unix_privs  UNIX access privileges
        Boolean
        Supports UNIX access privileges
    afp.vol_attribute.utf8_names  UTF-8 names
        Boolean
        Supports UTF-8 names
    afp.vol_attributes  Attributes
        Unsigned 16-bit integer
        Volume attributes
    afp.vol_backup_date  Backup date
        Date/Time stamp
        Volume backup date
    afp.vol_bitmap  Bitmap
        Unsigned 16-bit integer
        Volume bitmap
    afp.vol_bitmap.attributes  Attributes
        Boolean
        Volume attributes
    afp.vol_bitmap.backup_date  Backup date
        Boolean
        Volume backup date
    afp.vol_bitmap.block_size  Block size
        Boolean
        Volume block size
    afp.vol_bitmap.bytes_free  Bytes free
        Boolean
        Volume free bytes
    afp.vol_bitmap.bytes_total  Bytes total
        Boolean
        Volume total bytes
    afp.vol_bitmap.create_date  Creation date
        Boolean
        Volume creation date
    afp.vol_bitmap.ex_bytes_free  Extended bytes free
        Boolean
        Volume extended (>2GB) free bytes
    afp.vol_bitmap.ex_bytes_total  Extended bytes total
        Boolean
        Volume extended (>2GB) total bytes
    afp.vol_bitmap.id  ID
        Boolean
        Volume ID
    afp.vol_bitmap.mod_date  Modification date
        Boolean
        Volume modification date
    afp.vol_bitmap.name  Name
        Boolean
        Volume name
    afp.vol_bitmap.signature  Signature
        Boolean
        Volume signature
    afp.vol_block_size  Block size
        Unsigned 32-bit integer
        Volume block size
    afp.vol_bytes_free  Bytes free
        Unsigned 32-bit integer
        Free space
    afp.vol_bytes_total  Bytes total
        Unsigned 32-bit integer
        Volume size
    afp.vol_creation_date  Creation date
        Date/Time stamp
        Volume creation date
    afp.vol_ex_bytes_free  Extended bytes free
        Unsigned 64-bit integer
        Extended (>2GB) free space
    afp.vol_ex_bytes_total  Extended bytes total
        Unsigned 64-bit integer
        Extended (>2GB) volume size
    afp.vol_flag_has_config  Has config
        Boolean
        Volume has Apple II config info
    afp.vol_flag_passwd  Password
        Boolean
        Volume is password-protected
    afp.vol_id  Volume id
        Unsigned 16-bit integer
    afp.vol_modification_date  Modification date
        Date/Time stamp
        Volume modification date
    afp.vol_name  Volume
        Length string pair
        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

Apple IP-over-IEEE 1394 (ap1394)

    ap1394.dst  Destination
        Byte array
        Destination address
    ap1394.src  Source
        Byte array
        Source address
    ap1394.type  Type
        Unsigned 16-bit integer

Apple Network-MIDI Session Protocol (applemidi)

    applemidi.command  Command
        Unsigned 16-bit integer
    applemidi.count  Count
        Unsigned 8-bit integer
    applemidi.initiator_token  Initiator Token
        Unsigned 32-bit integer
    applemidi.name  Name
        String
    applemidi.padding  Padding
        Unsigned 24-bit integer
    applemidi.protocol_version  Protocol Version
        Unsigned 32-bit integer
    applemidi.rtp_sequence_number  RTP Sequence Number
        Unsigned 16-bit integer
    applemidi.sender_ssrc  Sender SSRC
        Unsigned 32-bit integer
    applemidi.sequence_number  Sequence Number
        Unsigned 32-bit integer
    applemidi.signature  Signature
        Unsigned 16-bit integer
    applemidi.timestamp1  Timestamp 1
        Unsigned 64-bit integer
    applemidi.timestamp2  Timestamp 2
        Unsigned 64-bit integer
    applemidi.timestamp3  Timestamp 3
        Unsigned 64-bit integer

AppleTalk Session Protocol (asp)

    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.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
        Length string pair
        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
    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
    asp.server_flag.srv_sig  Support server signature
        Boolean
    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
        Length string pair
    asp.server_signature  Server signature
        Byte array
    asp.server_type  Server type
        Length string pair
    asp.server_uams  UAM
        Length string pair
    asp.server_utf8_name  Server name (UTF8)
        String
    asp.server_utf8_name_len  Server name length
        Unsigned 16-bit integer
        UTF8 server name length
    asp.server_vers  AFP version
        Length string pair
    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

AppleTalk Transaction Protocol packet (atp)

    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.fragments  ATP Fragments
        No value
    atp.function  Function
        Unsigned 8-bit integer
        function code
    atp.reassembled.length  Reassembled ATP length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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
    atp.user_bytes  User bytes
        Unsigned 32-bit integer
    atp.xo  XO
        Boolean
        Exactly-once flag

Appletalk Address Resolution Protocol (aarp)

    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

Application Configuration Access Protocol (acap)

    acap.request  Request
        Boolean
        TRUE if ACAP request
    acap.response  Response
        Boolean
        TRUE if ACAP response

Architecture for Control Networks (acn)

    acn.acn_reciprocal_channel  Reciprocal Channel Number
        Unsigned 16-bit integer
        Reciprocal Channel
    acn.acn_refuse_code  Refuse Code
        Unsigned 8-bit integer
    acn.association  Association
        Unsigned 16-bit integer
    acn.channel_number  Channel Number
        Unsigned 16-bit integer
    acn.cid  CID
        Globally Unique Identifier
    acn.client_protocol_id  Client Protocol ID
        Unsigned 32-bit integer
    acn.dmp_adt  Address and Data Type
        Unsigned 8-bit integer
    acn.dmp_adt_a  Size
        Unsigned 8-bit integer
    acn.dmp_adt_d  Data Type
        Unsigned 8-bit integer
    acn.dmp_adt_r  Relative
        Unsigned 8-bit integer
    acn.dmp_adt_v  Virtual
        Unsigned 8-bit integer
    acn.dmp_adt_x  Reserved
        Unsigned 8-bit integer
    acn.dmp_data  Data
        Byte array
    acn.dmp_data16  Addr
        Unsigned 16-bit integer
        Data16
    acn.dmp_data24  Addr
        Unsigned 24-bit integer
        Data24
    acn.dmp_data32  Addr
        Unsigned 32-bit integer
        Data32
    acn.dmp_data8  Addr
        Unsigned 8-bit integer
        Data8
    acn.dmp_reason_code  Reason Code
        Unsigned 8-bit integer
    acn.dmp_vector  DMP Vector
        Unsigned 8-bit integer
    acn.dmx.count  Count
        Unsigned 16-bit integer
        DMX Count
    acn.dmx.increment  Increment
        Unsigned 16-bit integer
        DMX Increment
    acn.dmx.option_p  Preview Data
        Boolean
        Preview Data flag
    acn.dmx.option_s  Stream Terminated
        Boolean
        Stream Terminated flag
    acn.dmx.options  Options
        Unsigned 8-bit integer
        DMX Options
    acn.dmx.priority  Priority
        Unsigned 8-bit integer
        DMX Priority
    acn.dmx.reserved  Reserved
        Unsigned 16-bit integer
        DMX Reserved
    acn.dmx.seq_number  Seq No
        Unsigned 8-bit integer
        DMX Sequence Number
    acn.dmx.source_name  Source
        String
        DMX Source Name
    acn.dmx.start_code  Start Code
        Unsigned 16-bit integer
        DMX Start Code
    acn.dmx.start_code2  Start Code
        Unsigned 8-bit integer
        DMX Start Code
    acn.dmx.universe  Universe
        Unsigned 16-bit integer
        DMX Universe
    acn.dmx_vector  Vector
        Unsigned 32-bit integer
        DMX Vector
    acn.expiry  Expiry
        Unsigned 16-bit integer
    acn.first_member_to_ack  First Member to ACK
        Unsigned 16-bit integer
    acn.first_missed_sequence  First Missed Sequence
        Unsigned 32-bit integer
    acn.ip_address_type  Addr Type
        Unsigned 8-bit integer
    acn.ipv4  IPV4
        IPv4 address
    acn.ipv6  IPV6
        IPv6 address
    acn.last_member_to_ack  Last Member to ACK
        Unsigned 16-bit integer
    acn.last_missed_sequence  Last Missed Sequence
        Unsigned 32-bit integer
    acn.mak_threshold  MAK Threshold
        Unsigned 16-bit integer
    acn.member_id  Member ID
        Unsigned 16-bit integer
    acn.nak_holdoff  NAK holdoff (ms)
        Unsigned 16-bit integer
    acn.nak_max_wait  NAK Max Wait (ms)
        Unsigned 16-bit integer
    acn.nak_modulus  NAK Modulus
        Unsigned 16-bit integer
    acn.nak_outbound_flag  NAK Outbound Flag
        Boolean
    acn.oldest_available_wrapper  Oldest Available Wrapper
        Unsigned 32-bit integer
    acn.packet_identifier  Packet Identifier
        String
    acn.pdu  PDU
        No value
    acn.pdu.flag_d  Data
        Boolean
        Data flag
    acn.pdu.flag_h  Header
        Boolean
        Header flag
    acn.pdu.flag_l  Length
        Boolean
        Length flag
    acn.pdu.flag_v  Vector
        Boolean
        Vector flag
    acn.pdu.flags  Flags
        Unsigned 8-bit integer
        PDU Flags
    acn.pdu.length  Length
        Unsigned 32-bit integer
        PDU Length
    acn.port  Port
        Unsigned 16-bit integer
    acn.postamble_size  Size of postamble
        Unsigned 16-bit integer
        Postamble size in bytes
    acn.preamble_size  Size of preamble
        Unsigned 16-bit integer
        Preamble size in bytes
    acn.protocol_id  Protocol ID
        Unsigned 32-bit integer
    acn.reason_code  Reason Code
        Unsigned 8-bit integer
    acn.reliable_sequence_number  Reliable Sequence Number
        Unsigned 32-bit integer
    acn.sdt_vector  STD Vector
        Unsigned 8-bit integer
    acn.session_count  Session Count
        Unsigned 16-bit integer
    acn.total_sequence_number  Total Sequence Number
        Unsigned 32-bit integer

Art-Net (artnet)

    artner.tod_control  ArtTodControl packet
        No value
        Art-Net ArtTodControl packet
    artnet.address  ArtAddress packet
        No value
        Art-Net ArtAddress packet
    artnet.address.command  Command
        Unsigned 8-bit integer
    artnet.address.long_name  Long Name
        String
    artnet.address.short_name  Short Name
        String
    artnet.address.subswitch  Subswitch
        Unsigned 8-bit integer
    artnet.address.swin  Input Subswitch
        No value
    artnet.address.swin_1  Input Subswitch of Port 1
        Unsigned 8-bit integer
    artnet.address.swin_2  Input Subswitch of Port 2
        Unsigned 8-bit integer
    artnet.address.swin_3  Input Subswitch of Port 3
        Unsigned 8-bit integer
    artnet.address.swin_4  Input Subswitch of Port 4
        Unsigned 8-bit integer
    artnet.address.swout  Output Subswitch
        No value
    artnet.address.swout_1  Output Subswitch of Port 1
        Unsigned 8-bit integer
    artnet.address.swout_2  Output Subswitch of Port 2
        Unsigned 8-bit integer
    artnet.address.swout_3  Output Subswitch of Port 3
        Unsigned 8-bit integer
    artnet.address.swout_4  Output Subswitch of Port 4
        Unsigned 8-bit integer
    artnet.address.swvideo  SwVideo
        Unsigned 8-bit integer
    artnet.filler  filler
        Byte array
    artnet.firmware_master  ArtFirmwareMaster packet
        No value
        Art-Net ArtFirmwareMaster packet
    artnet.firmware_master.block_id  Block ID
        Unsigned 8-bit integer
    artnet.firmware_master.data  data
        Byte array
    artnet.firmware_master.length  Length
        Unsigned 32-bit integer
    artnet.firmware_master.type  Type
        Unsigned 8-bit integer
        Number of Ports
    artnet.firmware_reply  ArtFirmwareReply packet
        No value
        Art-Net ArtFirmwareReply packet
    artnet.firmware_reply.type  Type
        Unsigned 8-bit integer
        Number of Ports
    artnet.header  Descriptor Header
        No value
        Art-Net Descriptor Header
    artnet.header.id  ID
        String
        ArtNET ID
    artnet.header.opcode  Opcode
        Unsigned 16-bit integer
        Art-Net message type
    artnet.header.protver  ProVer
        Unsigned 16-bit integer
        Protocol revision number
    artnet.input  ArtInput packet
        No value
        Art-Net ArtInput packet
    artnet.input.input  Port Status
        No value
    artnet.input.input_1  Status of Port 1
        Unsigned 8-bit integer
    artnet.input.input_2  Status of Port 2
        Unsigned 8-bit integer
    artnet.input.input_3  Status of Port 3
        Unsigned 8-bit integer
    artnet.input.input_4  Status of Port 4
        Unsigned 8-bit integer
    artnet.input.num_ports  Number of Ports
        Unsigned 16-bit integer
    artnet.ip_prog  ArtIpProg packet
        No value
        ArtNET ArtIpProg packet
    artnet.ip_prog.command  Command
        Unsigned 8-bit integer
    artnet.ip_prog.command_prog_enable  Enable Programming
        Unsigned 8-bit integer
    artnet.ip_prog.command_prog_ip  Program IP
        Unsigned 8-bit integer
    artnet.ip_prog.command_prog_port  Program Port
        Unsigned 8-bit integer
    artnet.ip_prog.command_prog_sm  Program Subnet Mask
        Unsigned 8-bit integer
    artnet.ip_prog.command_reset  Reset parameters
        Unsigned 8-bit integer
    artnet.ip_prog.command_unused  Unused
        Unsigned 8-bit integer
    artnet.ip_prog.ip  IP Address
        IPv4 address
    artnet.ip_prog.port  Port
        Unsigned 16-bit integer
    artnet.ip_prog.sm  Subnet mask
        IPv4 address
        IP Subnet mask
    artnet.ip_prog_reply  ArtIpProgReplay packet
        No value
        Art-Net ArtIpProgReply packet
    artnet.ip_prog_reply.ip  IP Address
        IPv4 address
    artnet.ip_prog_reply.port  Port
        Unsigned 16-bit integer
    artnet.ip_prog_reply.sm  Subnet mask
        IPv4 address
        IP Subnet mask
    artnet.output  ArtDMX packet
        No value
        Art-Net ArtDMX packet
    artnet.output.data  DMX data
        No value
        DMX Data
    artnet.output.data_filter  DMX data filter
        Byte array
        DMX Data Filter
    artnet.output.dmx_data  DMX data
        No value
        DMX Data
    artnet.output.length  Length
        Unsigned 16-bit integer
    artnet.output.physical  Physical
        Unsigned 8-bit integer
    artnet.output.sequence  Sequence
        Unsigned 8-bit integer
    artnet.output.universe  Universe
        Unsigned 16-bit integer
    artnet.poll  ArtPoll packet
        No value
        Art-Net ArtPoll packet
    artnet.poll.talktome  TalkToMe
        Unsigned 8-bit integer
    artnet.poll.talktome_reply_dest  Reply destination
        Unsigned 8-bit integer
    artnet.poll.talktome_reply_type  Reply type
        Unsigned 8-bit integer
    artnet.poll.talktome_unused  unused
        Unsigned 8-bit integer
    artnet.poll_reply  ArtPollReply packet
        No value
        Art-Net ArtPollReply packet
    artnet.poll_reply.esta_man  ESTA Code
        Unsigned 16-bit integer
    artnet.poll_reply.good_input  Input Status
        No value
    artnet.poll_reply.good_input_1  Input status of Port 1
        Unsigned 8-bit integer
    artnet.poll_reply.good_input_2  Input status of Port 2
        Unsigned 8-bit integer
    artnet.poll_reply.good_input_3  Input status of Port 3
        Unsigned 8-bit integer
    artnet.poll_reply.good_input_4  Input status of Port 4
        Unsigned 8-bit integer
    artnet.poll_reply.good_output  Output Status
        No value
        Port output status
    artnet.poll_reply.good_output_1  Output status of Port 1
        Unsigned 8-bit integer
    artnet.poll_reply.good_output_2  Output status of Port 2
        Unsigned 8-bit integer
    artnet.poll_reply.good_output_3  Output status of Port 3
        Unsigned 8-bit integer
    artnet.poll_reply.good_output_4  Output status of Port 4
        Unsigned 8-bit integer
        Outpus status of Port 4
    artnet.poll_reply.ip_address  IP Address
        IPv4 address
    artnet.poll_reply.long_name  Long Name
        String
    artnet.poll_reply.mac  MAC
        6-byte Hardware (MAC) Address
    artnet.poll_reply.node_report  Node Report
        String
    artnet.poll_reply.num_ports  Number of Ports
        Unsigned 16-bit integer
    artnet.poll_reply.oem  Oem
        Unsigned 16-bit integer
        OEM
    artnet.poll_reply.port_info  Port Info
        No value
    artnet.poll_reply.port_nr  Port number
        Unsigned 16-bit integer
        Port Number
    artnet.poll_reply.port_types  Port Types
        No value
    artnet.poll_reply.port_types_1  Type of Port 1
        Unsigned 8-bit integer
    artnet.poll_reply.port_types_2  Type of Port 2
        Unsigned 8-bit integer
    artnet.poll_reply.port_types_3  Type of Port 3
        Unsigned 8-bit integer
    artnet.poll_reply.port_types_4  Type of Port 4
        Unsigned 8-bit integer
    artnet.poll_reply.short_name  Short Name
        String
    artnet.poll_reply.status  Status
        Unsigned 8-bit integer
    artnet.poll_reply.subswitch  SubSwitch
        Unsigned 16-bit integer
        Subswitch version
    artnet.poll_reply.swin  Input Subswitch
        No value
    artnet.poll_reply.swin_1  Input Subswitch of Port 1
        Unsigned 8-bit integer
    artnet.poll_reply.swin_2  Input Subswitch of Port 2
        Unsigned 8-bit integer
    artnet.poll_reply.swin_3  Input Subswitch of Port 3
        Unsigned 8-bit integer
    artnet.poll_reply.swin_4  Input Subswitch of Port 4
        Unsigned 8-bit integer
    artnet.poll_reply.swmacro  SwMacro
        Unsigned 8-bit integer
    artnet.poll_reply.swout  Output Subswitch
        No value
    artnet.poll_reply.swout_1  Output Subswitch of Port 1
        Unsigned 8-bit integer
    artnet.poll_reply.swout_2  Output Subswitch of Port 2
        Unsigned 8-bit integer
    artnet.poll_reply.swout_3  Output Subswitch of Port 3
        Unsigned 8-bit integer
    artnet.poll_reply.swout_4  Output Subswitch of Port 4
        Unsigned 8-bit integer
    artnet.poll_reply.swremote  SwRemote
        Unsigned 8-bit integer
    artnet.poll_reply.swvideo  SwVideo
        Unsigned 8-bit integer
    artnet.poll_reply.ubea_version  UBEA Version
        Unsigned 8-bit integer
        UBEA version number
    artnet.poll_reply.versinfo  Version Info
        Unsigned 16-bit integer
        Version info
    artnet.poll_server_reply  ArtPollServerReply packet
        No value
        Art-Net ArtPollServerReply packet
    artnet.rdm  ArtRdm packet
        No value
        Art-Net ArtRdm packet
    artnet.rdm.address  Address
        Unsigned 8-bit integer
    artnet.rdm.command  Command
        Unsigned 8-bit integer
    artnet.spare  spare
        Byte array
    artnet.tod_control.command  Command
        Unsigned 8-bit integer
    artnet.tod_data  ArtTodData packet
        No value
        Art-Net ArtTodData packet
    artnet.tod_data.address  Address
        Unsigned 8-bit integer
    artnet.tod_data.block_count  Block Count
        Unsigned 8-bit integer
    artnet.tod_data.command_response  Command Response
        Unsigned 8-bit integer
    artnet.tod_data.port  Port
        Unsigned 8-bit integer
    artnet.tod_data.tod  TOD
        Byte array
    artnet.tod_data.uid_count  UID Count
        Unsigned 8-bit integer
    artnet.tod_data.uid_total  UID Total
        Unsigned 16-bit integer
    artnet.tod_request  ArtTodRequest packet
        No value
        Art-Net ArtTodRequest packet
    artnet.tod_request.ad_count  Address Count
        Unsigned 8-bit integer
    artnet.tod_request.address  Address
        Byte array
    artnet.tod_request.command  Command
        Unsigned 8-bit integer
    artnet.video_data  ArtVideoData packet
        No value
        Art-Net ArtVideoData packet
    artnet.video_data.data  Video Data
        Byte array
    artnet.video_data.len_x  LenX
        Unsigned 8-bit integer
    artnet.video_data.len_y  LenY
        Unsigned 8-bit integer
    artnet.video_data.pos_x  PosX
        Unsigned 8-bit integer
    artnet.video_data.pos_y  PosY
        Unsigned 8-bit integer
    artnet.video_palette  ArtVideoPalette packet
        No value
        Art-Net ArtVideoPalette packet
    artnet.video_palette.colour_blue  Colour Blue
        Byte array
    artnet.video_palette.colour_green  Colour Green
        Byte array
    artnet.video_palette.colour_red  Colour Red
        Byte array
    artnet.video_setup  ArtVideoSetup packet
        No value
        ArtNET ArtVideoSetup packet
    artnet.video_setup.control  control
        Unsigned 8-bit integer
    artnet.video_setup.first_font  First Font
        Unsigned 8-bit integer
    artnet.video_setup.font_data  Font data
        Byte array
        Font Date
    artnet.video_setup.font_height  Font Height
        Unsigned 8-bit integer
    artnet.video_setup.last_font  Last Font
        Unsigned 8-bit integer
    artnet.video_setup.win_font_name  Windows Font Name
        String

Aruba Discovery Protocol (adp)

    adp.id  Transaction ID
        Unsigned 16-bit integer
        ADP transaction ID
    adp.mac  MAC address
        6-byte Hardware (MAC) Address
    adp.switch  Switch IP
        IPv4 address
        Switch IP address
    adp.type  Type
        Unsigned 16-bit integer
        ADP type
    adp.version  Version
        Unsigned 16-bit integer
        ADP version

Assa Abloy R3 (r3)

    r3.adc.0  ADC 0
        Unsigned 8-bit integer
    r3.adc.1  ADC 1
        Unsigned 8-bit integer
    r3.adc.2  ADC 2
        Unsigned 8-bit integer
    r3.adc.3  ADC 3
        Unsigned 8-bit integer
    r3.adc.4  ADC 4
        Unsigned 8-bit integer
    r3.adc.5  ADC 5
        Unsigned 8-bit integer
    r3.adc.6  ADC 6
        Unsigned 8-bit integer
    r3.adc.7  ADC 7
        Unsigned 8-bit integer
    r3.address  Address
        Unsigned 8-bit integer
    r3.alarm.id  ID
        Unsigned 8-bit integer
    r3.alarm.length  Length
        Unsigned 8-bit integer
    r3.alarm.state  State
        Boolean
    r3.alarmlog.day  Day
        Unsigned 8-bit integer
    r3.alarmlog.hours  Hours
        Unsigned 8-bit integer
    r3.alarmlog.id  ID
        Unsigned 8-bit integer
    r3.alarmlog.minutes  Minutes
        Unsigned 8-bit integer
    r3.alarmlog.month  Month
        Unsigned 8-bit integer
    r3.alarmlog.recordnumber  Record Number
        Unsigned 16-bit integer
    r3.alarmlog.seconds  Seconds
        Unsigned 8-bit integer
    r3.alarmlog.usernumber  User Number
        Unsigned 16-bit integer
    r3.alarmlog.year  Year
        Unsigned 8-bit integer
    r3.alarmlogdump.end.day  End Day
        Unsigned 8-bit integer
    r3.alarmlogdump.end.hours  End Hours
        Unsigned 8-bit integer
    r3.alarmlogdump.end.minutes  End Minutes
        Unsigned 8-bit integer
    r3.alarmlogdump.end.month  End Month
        Unsigned 8-bit integer
    r3.alarmlogdump.end.year  End Year
        Unsigned 8-bit integer
    r3.alarmlogdump.start.day  Start Day
        Unsigned 8-bit integer
    r3.alarmlogdump.start.hours  Start Hours
        Unsigned 8-bit integer
    r3.alarmlogdump.start.minutes  Start Minutes
        Unsigned 8-bit integer
    r3.alarmlogdump.start.month  Start Month
        Unsigned 8-bit integer
    r3.alarmlogdump.start.year  Start Year
        Unsigned 8-bit integer
    r3.capabilies.length  Length
        Unsigned 8-bit integer
    r3.capabilies.type  Type
        Unsigned 8-bit integer
    r3.capabilies.value  Value
        Unsigned 16-bit integer
    r3.capabilities  Capability
        No value
    r3.checkpointlog.checkpoint  Checkpoint
        Unsigned 8-bit integer
    r3.checkpointlog.entrypointer  Entry Pointer
        Unsigned 8-bit integer
    r3.checkpointlog.rcon  RCON
        Unsigned 8-bit integer
    r3.checksumresults  Checksum Results
        No value
    r3.checksumresults.field  Field
        Unsigned 8-bit integer
    r3.checksumresults.length  Length
        Unsigned 8-bit integer
    r3.checksumresults.state  State
        Boolean
    r3.command.command  Command
        Unsigned 8-bit integer
    r3.command.data  Command Data
        No value
    r3.command.length  Command Length
        Unsigned 8-bit integer
    r3.commandmfg.command  Mfg Command
        Unsigned 8-bit integer
    r3.commandmfg.data  Mfg Command Data
        No value
    r3.commandmfg.length  Mfg Command Length
        Unsigned 8-bit integer
    r3.configfield  Config Field
        No value
    r3.configitem  Configuration Item
        Unsigned 8-bit integer
    r3.configitem.data  Configuration Item Data
        No value
    r3.configitem.data_16  Configuration Item 16-bit
        Unsigned 16-bit integer
    r3.configitem.data_32  Configuration Item 32-bit
        Unsigned 32-bit integer
    r3.configitem.data_8  Configuration Item 8-bit
        Unsigned 8-bit integer
    r3.configitem.data_boolean  Configuration Item Boolean
        Boolean
    r3.configitem.data_string  Configuration Item String
        String
    r3.configitem.length  Configuration Item Length
        Unsigned 8-bit integer
    r3.configitem.type  Configuration Item Type
        Unsigned 8-bit integer
    r3.configitems  Configuration Item List
        No value
    r3.cpuregisters.intcon  INTCON
        Unsigned 8-bit integer
    r3.cpuregisters.intcon.gieh  INTCON.GIEH
        Boolean
    r3.cpuregisters.intcon.giel  INTCON.GIEL
        Boolean
    r3.cpuregisters.intcon.int0ie  INTCON.INT0IE
        Boolean
    r3.cpuregisters.intcon.int0if  INTCON.INT0IF
        Boolean
    r3.cpuregisters.intcon.rbie  INTCON.RBIE
        Boolean
    r3.cpuregisters.intcon.rbif  INTCON.RBIF
        Boolean
    r3.cpuregisters.intcon.tmr0ie  INTCON.TMR0IE
        Boolean
    r3.cpuregisters.intcon.tmr0if  INTCON.TMR0IF
        Boolean
    r3.cpuregisters.intcon2  INTCON2
        Unsigned 8-bit integer
    r3.cpuregisters.intcon3  INTCON3
        Unsigned 8-bit integer
    r3.cpuregisters.intcon3.int1ie  INTCON3.INT1IE
        Boolean
    r3.cpuregisters.intcon3.int1if  INTCON3.INT1IF
        Boolean
    r3.cpuregisters.intcon3.int1ip  INTCON3.INT1IP
        Boolean
    r3.cpuregisters.intcon3.int2ie  INTCON3.INT2IE
        Boolean
    r3.cpuregisters.intcon3.int2if  INTCON3.INT2IF
        Boolean
    r3.cpuregisters.intcon3.int2ip  INTCON3.INT2IP
        Boolean
    r3.cpuregisters.intcon3.int3ie  INTCON3.INT3IE
        Boolean
    r3.cpuregisters.intcon3.int3if  INTCON3.INT3IF
        Boolean
    r3.cpuregisters.ipr1  IPR1
        Unsigned 8-bit integer
    r3.cpuregisters.ipr1.adip  IPR1.ADIP
        Boolean
    r3.cpuregisters.ipr1.ccp1ip  IPR1.CCP1IP
        Boolean
    r3.cpuregisters.ipr1.pspip  IPR1.PSPIP
        Boolean
    r3.cpuregisters.ipr1.rc1ip  IPR1.RC1IP
        Boolean
    r3.cpuregisters.ipr1.ssp1ip  IPR1.SSP1IP
        Boolean
    r3.cpuregisters.ipr1.tmr1ip  IPR1.TMR1IP
        Boolean
    r3.cpuregisters.ipr1.tmr2ip  IPR1.TMR2IP
        Boolean
    r3.cpuregisters.ipr1.tx1ip  IPR1.TX1IP
        Boolean
    r3.cpuregisters.ipr2  IPR2
        Unsigned 8-bit integer
    r3.cpuregisters.ipr2.bcl1ip  IPR2.BCL1IP
        Boolean
    r3.cpuregisters.ipr2.ccp2ip  IPR2.CCP2IP
        Boolean
    r3.cpuregisters.ipr2.cmip  IPR2.CMIP
        Boolean
    r3.cpuregisters.ipr2.eeip  IPR2.EEIP
        Boolean
    r3.cpuregisters.ipr2.hlvdip  IPR2.HLVDIP
        Boolean
    r3.cpuregisters.ipr2.oscfip  IPR2.OSCFIP
        Boolean
    r3.cpuregisters.ipr2.tmr3ip  IPR2.TMR3IP
        Boolean
    r3.cpuregisters.ipr2.unused5  IPR2.UNUSED5
        Boolean
    r3.cpuregisters.ipr3  IPR3
        Unsigned 8-bit integer
    r3.cpuregisters.ipr3.bcl2ip  IPR3.BCL2IP
        Boolean
    r3.cpuregisters.ipr3.ccp2ip  IPR3.CCP2IP
        Boolean
    r3.cpuregisters.ipr3.ccp4ip  IPR3.CCP4IP
        Boolean
    r3.cpuregisters.ipr3.ccp5ip  IPR3.CCP5IP
        Boolean
    r3.cpuregisters.ipr3.rc2ip  IPR3.RC2IP
        Boolean
    r3.cpuregisters.ipr3.ssp2ip  IPR3.SSP2IP
        Boolean
    r3.cpuregisters.ipr3.tmr4ip  IPR3.TMR4IP
        Boolean
    r3.cpuregisters.ipr3.tx2ip  IPR3.TX2IP
        Boolean
    r3.cpuregisters.osccon  OSCCON
        Unsigned 8-bit integer
    r3.cpuregisters.osccon.idlen  OSCCON.IDLEN
        Boolean
    r3.cpuregisters.osccon.iofs  OSCCON.IOFS
        Boolean
    r3.cpuregisters.osccon.ircf0  OSCCON.IRCF0
        Boolean
    r3.cpuregisters.osccon.ircf1  OSCCON.IRCF1
        Boolean
    r3.cpuregisters.osccon.ircf2  OSCCON.IRCF2
        Boolean
    r3.cpuregisters.osccon.osts  OSCCON.OSTS
        Boolean
    r3.cpuregisters.osccon.scs0  OSCCON.SCS0
        Boolean
    r3.cpuregisters.osccon.scs1  OSCCON.SCS1
        Boolean
    r3.cpuregisters.pie1  PIE1
        Unsigned 8-bit integer
    r3.cpuregisters.pie1.adie  PIE1.ADIE
        Boolean
    r3.cpuregisters.pie1.ccp1ie  PIE1.CCP1IE
        Boolean
    r3.cpuregisters.pie1.pspie  PIE1.PSPIE
        Boolean
    r3.cpuregisters.pie1.rc1ie  PIE1.RC1IE
        Boolean
    r3.cpuregisters.pie1.ssp1ie  PIE1.SSP1IE
        Boolean
    r3.cpuregisters.pie1.tmr1ie  PIE1.TMR1IE
        Boolean
    r3.cpuregisters.pie1.tmr2ie  PIE1.TMR2IE
        Boolean
    r3.cpuregisters.pie1.tx1ie  PIE1.TX1IE
        Boolean
    r3.cpuregisters.pie2  PIE2
        Unsigned 8-bit integer
    r3.cpuregisters.pie2.bcl1ie  PIE2.BCL1IE
        Boolean
    r3.cpuregisters.pie2.ccp2ie  PIE2.CCP2IE
        Boolean
    r3.cpuregisters.pie2.cmie  PIE2.CMIE
        Boolean
    r3.cpuregisters.pie2.eeie  PIE2.EEIE
        Boolean
    r3.cpuregisters.pie2.hlvdie  PIE2.HLVDIE
        Boolean
    r3.cpuregisters.pie2.oscfie  PIE2.OSCFIE
        Boolean
    r3.cpuregisters.pie2.tmr3ie  PIE2.TMR3IE
        Boolean
    r3.cpuregisters.pie2.unused2  PIE2.UNUSED2
        Boolean
    r3.cpuregisters.pie3  PIE3
        Unsigned 8-bit integer
    r3.cpuregisters.pie3.bcl2ie  PIE3.BCL2IE
        Boolean
    r3.cpuregisters.pie3.ccp3ie  PIE3.CCP3IE
        Boolean
    r3.cpuregisters.pie3.ccp4ie  PIE3.CCP4IE
        Boolean
    r3.cpuregisters.pie3.ccp5ie  PIE3.CCP5IE
        Boolean
    r3.cpuregisters.pie3.rc2ie  PIE3.RC2IE
        Boolean
    r3.cpuregisters.pie3.ssp2ie  PIE3.SSP2IE
        Boolean
    r3.cpuregisters.pie3.tmr4ie  PIE3.TMR4IE
        Boolean
    r3.cpuregisters.pie3.tx2ie  PIE3.TX2IE
        Boolean
    r3.cpuregisters.pir1  PIR1
        Unsigned 8-bit integer
    r3.cpuregisters.pir1.adif  PIR1.ADIF
        Boolean
    r3.cpuregisters.pir1.ccp1if  PIR1.CCP1IF
        Boolean
    r3.cpuregisters.pir1.pspif  PIR1.PSPIF
        Boolean
    r3.cpuregisters.pir1.rc1if  PIR1.RC1IF
        Boolean
    r3.cpuregisters.pir1.ssp1if  PIR1.SSP1IF
        Boolean
    r3.cpuregisters.pir1.tmr1if  PIR1.TMR1IF
        Boolean
    r3.cpuregisters.pir1.tmr2if  PIR1.TMR2IF
        Boolean
    r3.cpuregisters.pir1.tx1if  PIR1.TX1IF
        Boolean
    r3.cpuregisters.pir2  PIR2
        Unsigned 8-bit integer
    r3.cpuregisters.pir2.bcl1if  PIR2.BCL1IF
        Boolean
    r3.cpuregisters.pir2.ccp2if  PIR2.CCP2IF
        Boolean
    r3.cpuregisters.pir2.cmif  PIR2.CMIF
        Boolean
    r3.cpuregisters.pir2.eeif  PIR2.EEIF
        Boolean
    r3.cpuregisters.pir2.hlvdif  PIR2.HLVDIF
        Boolean
    r3.cpuregisters.pir2.oscfif  PIR2.OSCFIF
        Boolean
    r3.cpuregisters.pir2.tmr3if  PIR2.TMR3IF
        Boolean
    r3.cpuregisters.pir2.unused5  PIR2.UNUSED5
        Boolean
    r3.cpuregisters.pir3  PIR3
        Unsigned 8-bit integer
    r3.cpuregisters.pir3.bcl2if  PIR3.BCL2IF
        Boolean
    r3.cpuregisters.pir3.ccp3if  PIR3.CCP3IF
        Boolean
    r3.cpuregisters.pir3.ccp4if  PIR3.CCP4IF
        Boolean
    r3.cpuregisters.pir3.ccp5if  PIR3.CCP5IF
        Boolean
    r3.cpuregisters.pir3.rc2if  PIR3.RC2IF
        Boolean
    r3.cpuregisters.pir3.ssp2if  PIR3.SSP2IF
        Boolean
    r3.cpuregisters.pir3.tmr4if  PIR3.TMR4IF
        Boolean
    r3.cpuregisters.pir3.tx2if  PIR3.TX2IF
        Boolean
    r3.cpuregisters.rcon  RCON
        Unsigned 8-bit integer
    r3.cpuregisters.rcon.bor  RCON./BOR
        Boolean
    r3.cpuregisters.rcon.ipen  RCON.IPEN
        Boolean
    r3.cpuregisters.rcon.pd  RCON./PD
        Boolean
    r3.cpuregisters.rcon.por  RCON./POR
        Boolean
    r3.cpuregisters.rcon.ri  RCON./RI
        Boolean
    r3.cpuregisters.rcon.sboren  RCON.SBOREN
        Boolean
    r3.cpuregisters.rcon.to  RCON./TO
        Boolean
    r3.cpuregisters.rcon.unused4  RCON.UNUSED4
        Boolean
    r3.cpuregisters.rcsta  RCSTA
        Unsigned 8-bit integer
    r3.cpuregisters.rcsta.adden  RCSTA.ADDEN
        Boolean
    r3.cpuregisters.rcsta.cren  RCSTA.CREN
        Boolean
    r3.cpuregisters.rcsta.ferr  RCSTA.FERR
        Boolean
    r3.cpuregisters.rcsta.oerr  RCSTA.OERR
        Boolean
    r3.cpuregisters.rcsta.rx9  RCSTA.RX9
        Boolean
    r3.cpuregisters.rcsta.rx9d  RCSTA.RX9D
        Boolean
    r3.cpuregisters.rcsta.spen  RCSTA.SPEN
        Boolean
    r3.cpuregisters.rcsta.sren  RCSTA.SREN
        Boolean
    r3.cpuregisters.rcsta2  RCSTA2
        Unsigned 8-bit integer
    r3.cpuregisters.rcsta2.adden  RCSTA2.ADDEN
        Boolean
    r3.cpuregisters.rcsta2.cren  RCSTA2.CREN
        Boolean
    r3.cpuregisters.rcsta2.ferr  RCSTA2.FERR
        Boolean
    r3.cpuregisters.rcsta2.oerr  RCSTA2.OERR
        Boolean
    r3.cpuregisters.rcsta2.rx9  RCSTA2.RX9
        Boolean
    r3.cpuregisters.rcsta2.rx9d  RCSTA2.RX9D
        Boolean
    r3.cpuregisters.rcsta2.spen  RCSTA2.SPEN
        Boolean
    r3.cpuregisters.rcsta2.sren  RCSTA2.SREN
        Boolean
    r3.cpuregisters.txsta  TXSTA
        Unsigned 8-bit integer
    r3.cpuregisters.txsta.brgh  TXSTA.BRGH
        Boolean
    r3.cpuregisters.txsta.csrc  TXSTA.CSRC
        Boolean
    r3.cpuregisters.txsta.sendb  TXSTA.SENDB
        Boolean
    r3.cpuregisters.txsta.sync  TXSTA.SYNC
        Boolean
    r3.cpuregisters.txsta.trmt  TXSTA.TRMT
        Boolean
    r3.cpuregisters.txsta.tx9  TXSTA.TX9
        Boolean
    r3.cpuregisters.txsta.tx9d  TXSTA.TX9D
        Boolean
    r3.cpuregisters.txsta.txen  TXSTA.TXEN
        Boolean
    r3.cpuregisters.txsta2  TXSTA2
        Unsigned 8-bit integer
    r3.cpuregisters.txsta2.brgh  TXSTA2.BRGH
        Boolean
    r3.cpuregisters.txsta2.csrc  TXSTA2.CSRC
        Boolean
    r3.cpuregisters.txsta2.sendb  TXSTA2.SENDB
        Boolean
    r3.cpuregisters.txsta2.sync  TXSTA2.SYNC
        Boolean
    r3.cpuregisters.txsta2.trmt  TXSTA2.TRMT
        Boolean
    r3.cpuregisters.txsta2.tx9  TXSTA2.TX9
        Boolean
    r3.cpuregisters.txsta2.tx9d  TXSTA2.TX9D
        Boolean
    r3.cpuregisters.txsta2.txen  TXSTA2.TXEN
        Boolean
    r3.cpuregisters.wdtcon  WDTCON
        Unsigned 8-bit integer
    r3.cpuregisters.wdtcon.swdten  WDTCON.SWDTEN
        Boolean
    r3.cpuregisters.wdtcon.unused1  WDTCON.UNUSED1
        Boolean
    r3.cpuregisters.wdtcon.unused2  WDTCON.UNUSED2
        Boolean
    r3.cpuregisters.wdtcon.unused3  WDTCON.UNUSED3
        Boolean
    r3.cpuregisters.wdtcon.unused4  WDTCON.UNUSED4
        Boolean
    r3.cpuregisters.wdtcon.unused5  WDTCON.UNUSED5
        Boolean
    r3.cpuregisters.wdtcon.unused6  WDTCON.UNUSED6
        Boolean
    r3.cpuregisters.wdtcon.unused7  WDTCON.UNUSED7
        Boolean
    r3.crc  CRC
        Unsigned 16-bit integer
    r3.crc_bad  Bad CRC
        Boolean
    r3.datetime.day  Date/Time Day
        Unsigned 8-bit integer
    r3.datetime.dow  Date/Time DOW
        Unsigned 8-bit integer
    r3.datetime.dst  Date/Time DST
        Boolean
    r3.datetime.hours  Date/Time Hours
        Unsigned 8-bit integer
    r3.datetime.minutes  Date/Time Minutes
        Unsigned 8-bit integer
    r3.datetime.month  Date/Time Month
        Unsigned 8-bit integer
    r3.datetime.seconds  Date/Time Seconds
        Unsigned 8-bit integer
    r3.datetime.year  Date/Time Year
        Unsigned 8-bit integer
    r3.debug  Debug Message
        String
    r3.debuglog.flags  Flags
        Unsigned 32-bit integer
    r3.debuglog.recordnumber  Record Number
        Unsigned 16-bit integer
    r3.debuglog.tick  Tick
        Unsigned 16-bit integer
    r3.declinedlog.cred1  Credential 1
        Byte array
    r3.declinedlog.cred1type  Credential 1 Type
        Unsigned 8-bit integer
    r3.declinedlog.cred2  Credential 2
        Byte array
    r3.declinedlog.cred2type  Credential 2 Type
        Unsigned 8-bit integer
    r3.declinedlog.day  Day
        Unsigned 8-bit integer
    r3.declinedlog.hours  Hours
        Unsigned 8-bit integer
    r3.declinedlog.minutes  Minutes
        Unsigned 8-bit integer
    r3.declinedlog.month  Month
        Unsigned 8-bit integer
    r3.declinedlog.recordnumber  Record Number
        Unsigned 16-bit integer
    r3.declinedlog.seconds  Seconds
        Unsigned 8-bit integer
    r3.declinedlog.usernumber  User Number
        Unsigned 16-bit integer
    r3.declinedlog.year  Year
        Unsigned 8-bit integer
    r3.declinedlogdump.end.day  End Day
        Unsigned 8-bit integer
    r3.declinedlogdump.end.hours  End Hours
        Unsigned 8-bit integer
    r3.declinedlogdump.end.minutes  End Minutes
        Unsigned 8-bit integer
    r3.declinedlogdump.end.month  End Month
        Unsigned 8-bit integer
    r3.declinedlogdump.end.year  End Year
        Unsigned 8-bit integer
    r3.declinedlogdump.start.day  Start Day
        Unsigned 8-bit integer
    r3.declinedlogdump.start.hours  Start Hours
        Unsigned 8-bit integer
    r3.declinedlogdump.start.minutes  Start Minutes
        Unsigned 8-bit integer
    r3.declinedlogdump.start.month  Start Month
        Unsigned 8-bit integer
    r3.declinedlogdump.start.year  Start Year
        Unsigned 8-bit integer
    r3.definecalendar.field  Define Calendar Bit Field
        No value
    r3.definecalendar.number  Define Calendar Number
        Unsigned 8-bit integer
    r3.defineexception.end.day  End Day
        Unsigned 8-bit integer
    r3.defineexception.end.hours  End Hours
        Unsigned 8-bit integer
    r3.defineexception.end.minutes  End Minutes
        Unsigned 8-bit integer
    r3.defineexception.end.month  End Month
        Unsigned 8-bit integer
    r3.defineexception.number  Exception Number
        Unsigned 8-bit integer
    r3.defineexception.start.day  Start Day
        Unsigned 8-bit integer
    r3.defineexception.start.hours  Start Hours
        Unsigned 8-bit integer
    r3.defineexception.start.minutes  Start Minutes
        Unsigned 8-bit integer
    r3.defineexception.start.month  Start Month
        Unsigned 8-bit integer
    r3.defineexceptiongroup.field  Define Exception Group Bit Field
        No value
    r3.defineexceptiongroup.number  Define Exception Group Number
        Unsigned 8-bit integer
    r3.definetimezone.calendar  Calendar
        No value
    r3.definetimezone.daymap.friday  Friday
        Boolean
    r3.definetimezone.daymap.monday  Monday
        Boolean
    r3.definetimezone.daymap.saturday  Saturday
        Boolean
    r3.definetimezone.daymap.sunday  Sunday
        Boolean
    r3.definetimezone.daymap.thursday  Thursday
        Boolean
    r3.definetimezone.daymap.tuesday  Tuesday
        Boolean
    r3.definetimezone.daymap.wednesday  Wednesday
        Boolean
    r3.definetimezone.end.hours  End Hours
        Unsigned 8-bit integer
    r3.definetimezone.end.minutes  End Minutes
        Unsigned 8-bit integer
    r3.definetimezone.exceptiongroup  Exception Group
        Unsigned 8-bit integer
    r3.definetimezone.mode  Mode
        Unsigned 8-bit integer
    r3.definetimezone.number  Timezone Number
        Unsigned 8-bit integer
    r3.definetimezone.start.hours  Start Hours
        Unsigned 8-bit integer
    r3.definetimezone.start.minutes  Start Minutes
        Unsigned 8-bit integer
    r3.deleteusers  Delete Users
        Unsigned 8-bit integer
    r3.dpac_attention  DPAC Attention
        String
    r3.encryption  Crypt Type
        Unsigned 8-bit integer
    r3.eventlog.day  Day
        Unsigned 8-bit integer
    r3.eventlog.hours  Hours
        Unsigned 8-bit integer
    r3.eventlog.id  ID
        Unsigned 8-bit integer
    r3.eventlog.minutes  Minutes
        Unsigned 8-bit integer
    r3.eventlog.month  Month
        Unsigned 8-bit integer
    r3.eventlog.recordnumber  Record Number
        Unsigned 16-bit integer
    r3.eventlog.seconds  Seconds
        Unsigned 8-bit integer
    r3.eventlog.usernumber  User Number
        Unsigned 16-bit integer
    r3.eventlog.year  Year
        Unsigned 8-bit integer
    r3.eventlogdump.end.day  End Day
        Unsigned 8-bit integer
    r3.eventlogdump.end.hours  End Hours
        Unsigned 8-bit integer
    r3.eventlogdump.end.minutes  End Minutes
        Unsigned 8-bit integer
    r3.eventlogdump.end.month  End Month
        Unsigned 8-bit integer
    r3.eventlogdump.end.year  End Year
        Unsigned 8-bit integer
    r3.eventlogdump.start.day  Start Day
        Unsigned 8-bit integer
    r3.eventlogdump.start.hours  Start Hours
        Unsigned 8-bit integer
    r3.eventlogdump.start.minutes  Start Minutes
        Unsigned 8-bit integer
    r3.eventlogdump.start.month  Start Month
        Unsigned 8-bit integer
    r3.eventlogdump.start.year  Start Year
        Unsigned 8-bit integer
    r3.eventlogdump.user  Filter User
        Unsigned 16-bit integer
    r3.expireon.day  Expiration Day
        Unsigned 8-bit integer
    r3.expireon.month  Expiration Month
        Unsigned 8-bit integer
    r3.expireon.year  Expiration Year
        Unsigned 8-bit integer
    r3.filter.event  Event
        Unsigned 8-bit integer
    r3.filter.type  Type
        Unsigned 8-bit integer
    r3.firmwaredownload.action  Action
        Unsigned 8-bit integer
    r3.firmwaredownload.address  Address
        Unsigned 32-bit integer
    r3.firmwaredownload.bytes  Bytes
        Unsigned 8-bit integer
    r3.firmwaredownload.crc  CRC
        Unsigned 16-bit integer
    r3.firmwaredownload.crc_bad  Bad CRC
        Boolean
    r3.firmwaredownload.data  Data
        No value
    r3.firmwaredownload.length  Length
        Unsigned 8-bit integer
    r3.firmwaredownload.nvram  NVRAM
        Unsigned 8-bit integer
    r3.firmwaredownload.record  Record Number
        Unsigned 16-bit integer
    r3.firmwaredownload.timeout  Timeout
        Unsigned 8-bit integer
    r3.forceoptions.item  Item
        Unsigned 8-bit integer
    r3.forceoptions.length  Length
        Unsigned 8-bit integer
    r3.forceoptions.state  State
        Boolean
    r3.hardwareid.board  Board ID
        Unsigned 8-bit integer
    r3.hardwareid.cpuid  CPU ID
        Unsigned 16-bit integer
    r3.hardwareid.cpurev  CPU Rev
        Unsigned 8-bit integer
    r3.header  Header
        No value
    r3.iopins.lat  LAT
        Unsigned 8-bit integer
    r3.iopins.port  PORT
        Unsigned 8-bit integer
    r3.iopins.tris  TRIS
        Unsigned 8-bit integer
    r3.lockstate.autoopen  Auto Open
        Boolean
    r3.lockstate.autounlocksactive  Auto Unlocks Active
        Boolean
    r3.lockstate.autounlockspresent  Auto Unlocks Present
        Boolean
    r3.lockstate.exceptionsactive  Exceptions Active
        Boolean
    r3.lockstate.exceptionspresent  Exceptions Present
        Boolean
    r3.lockstate.lockout  Lockout
        Boolean
    r3.lockstate.lockstate  Lock State
        Boolean
    r3.lockstate.nextauto  Next Auto
        Boolean
    r3.lockstate.nvramchecksum  MVRAM Checksum
        Boolean
    r3.lockstate.nvramprotect  NVRAM Protect
        Boolean
    r3.lockstate.panic  Panic
        Boolean
    r3.lockstate.passage  Passage
        Boolean
    r3.lockstate.relock  Relock
        Boolean
    r3.lockstate.remote  Remote
        Boolean
    r3.lockstate.timezonesactive  Timezones Active
        Boolean
    r3.lockstate.timezonespresent  Timezones Presents
        Boolean
    r3.lockstate.uapmrelockspresent  UAPM Relocks Present
        Boolean
    r3.lockstate.uapmreslocksactive  UAPM Relocks Active
        Boolean
    r3.lockstate.uapmsactive  UAPMs Active
        Boolean
    r3.lockstate.uapmspresent  UAPMs Present
        Boolean
    r3.lockstate.update  Update
        Boolean
    r3.lockstate.wantstate  Want State
        Boolean
    r3.m41t81.reg00  REG 0x00
        Unsigned 8-bit integer
    r3.m41t81.reg00.sec01  .01 Seconds
        Unsigned 8-bit integer
    r3.m41t81.reg00.sec1  .1 Seconds
        Unsigned 8-bit integer
    r3.m41t81.reg01  REG 0x01
        Unsigned 8-bit integer
    r3.m41t81.reg01.10sec  10 Seconds
        Unsigned 8-bit integer
    r3.m41t81.reg01.1sec  1 Seconds
        Unsigned 8-bit integer
    r3.m41t81.reg01.st  ST
        Unsigned 8-bit integer
    r3.m41t81.reg02  REG 0x02
        Unsigned 8-bit integer
    r3.m41t81.reg02.10min  10 Minutes
        Unsigned 8-bit integer
    r3.m41t81.reg02.1min  1 Minutes
        Unsigned 8-bit integer
    r3.m41t81.reg02.notused  (not used)
        Unsigned 8-bit integer
    r3.m41t81.reg03  REG 0x03
        Unsigned 8-bit integer
    r3.m41t81.reg03.10hour  10 Hours
        Unsigned 8-bit integer
    r3.m41t81.reg03.1hour  1 Hours
        Unsigned 8-bit integer
    r3.m41t81.reg03.cb  CB
        Unsigned 8-bit integer
    r3.m41t81.reg03.cbe  CBE
        Unsigned 8-bit integer
    r3.m41t81.reg04  REG 0x04
        Unsigned 8-bit integer
    r3.m41t81.reg04.dow  DOW
        Unsigned 8-bit integer
    r3.m41t81.reg04.notused  (not used)
        Unsigned 8-bit integer
    r3.m41t81.reg05  REG 0x05
        Unsigned 8-bit integer
    r3.m41t81.reg05.10day  10 Day
        Unsigned 8-bit integer
    r3.m41t81.reg05.1day  1 Day
        Unsigned 8-bit integer
    r3.m41t81.reg05.notused  (not used)
        Unsigned 8-bit integer
    r3.m41t81.reg06  REG 0x06
        Unsigned 8-bit integer
    r3.m41t81.reg06.10month  10 Month
        Unsigned 8-bit integer
    r3.m41t81.reg06.1month  1 Month
        Unsigned 8-bit integer
    r3.m41t81.reg06.notused  (not used)
        Unsigned 8-bit integer
    r3.m41t81.reg07  REG 0x07
        Unsigned 8-bit integer
    r3.m41t81.reg07.10year  10 Year
        Unsigned 8-bit integer
    r3.m41t81.reg07.1year  1 Year
        Unsigned 8-bit integer
    r3.m41t81.reg08  REG 0x08
        Unsigned 8-bit integer
    r3.m41t81.reg08.cal  CAL
        Unsigned 8-bit integer
    r3.m41t81.reg08.ft  FT
        Unsigned 8-bit integer
    r3.m41t81.reg08.out  OUT
        Unsigned 8-bit integer
    r3.m41t81.reg08.s  S
        Unsigned 8-bit integer
    r3.m41t81.reg09  REG 0x09
        Unsigned 8-bit integer
    r3.m41t81.reg09.bmb  BMB
        Unsigned 8-bit integer
    r3.m41t81.reg09.notused  (not used)
        Unsigned 8-bit integer
    r3.m41t81.reg09.rb  RB
        Unsigned 8-bit integer
    r3.m41t81.reg0a  REG 0x0a
        Unsigned 8-bit integer
    r3.m41t81.reg0a.10monthalm  10 Month Alarm
        Unsigned 8-bit integer
    r3.m41t81.reg0a.1monthalm  1 Month Alarm
        Unsigned 8-bit integer
    r3.m41t81.reg0a.abe  ABE
        Unsigned 8-bit integer
    r3.m41t81.reg0a.afe  AFE
        Unsigned 8-bit integer
    r3.m41t81.reg0a.sqwe  SQWE
        Unsigned 8-bit integer
    r3.m41t81.reg0b  REG 0x0b
        Unsigned 8-bit integer
    r3.m41t81.reg0b.10dayalm  10 Day Alarm
        Unsigned 8-bit integer
    r3.m41t81.reg0b.1dayalm  1 Day Alarm
        Unsigned 8-bit integer
    r3.m41t81.reg0b.rpt4  RPT4
        Unsigned 8-bit integer
    r3.m41t81.reg0b.rpt5  RPT5
        Unsigned 8-bit integer
    r3.m41t81.reg0c  REG 0x0c
        Unsigned 8-bit integer
    r3.m41t81.reg0c.10houralm  10 Hour Alarm
        Unsigned 8-bit integer
    r3.m41t81.reg0c.1houralm  1 Hour Alarm
        Unsigned 8-bit integer
    r3.m41t81.reg0c.ht  HT
        Unsigned 8-bit integer
    r3.m41t81.reg0c.rpt3  RPT3
        Unsigned 8-bit integer
    r3.m41t81.reg0d  REG 0x0d
        Unsigned 8-bit integer
    r3.m41t81.reg0d.10minalm  10 Min Alarm
        Unsigned 8-bit integer
    r3.m41t81.reg0d.1minalm  1 Min Alarm
        Unsigned 8-bit integer
    r3.m41t81.reg0d.rpt2  RPT2
        Unsigned 8-bit integer
    r3.m41t81.reg0e  REG 0x0e
        Unsigned 8-bit integer
    r3.m41t81.reg0e.10secalm  10 Sec Alarm
        Unsigned 8-bit integer
    r3.m41t81.reg0e.1secalm  1 Sec Alarm
        Unsigned 8-bit integer
    r3.m41t81.reg0e.rpt1  RPT1
        Unsigned 8-bit integer
    r3.m41t81.reg0f  REG 0x0f
        Unsigned 8-bit integer
    r3.m41t81.reg0f.af  AF
        Unsigned 8-bit integer
    r3.m41t81.reg0f.notused  (not used)
        Unsigned 8-bit integer
    r3.m41t81.reg0f.wdf  WDF
        Unsigned 8-bit integer
    r3.m41t81.reg10  REG 0x10
        Unsigned 8-bit integer
    r3.m41t81.reg10.notused  (not used)
        Unsigned 8-bit integer
    r3.m41t81.reg11  REG 0x11
        Unsigned 8-bit integer
    r3.m41t81.reg11.notused  (not used)
        Unsigned 8-bit integer
    r3.m41t81.reg12  REG 0x12
        Unsigned 8-bit integer
    r3.m41t81.reg12.notused  (not used)
        Unsigned 8-bit integer
    r3.m41t81.reg13  REG 0x13
        Unsigned 8-bit integer
    r3.m41t81.reg13.notused  (not used)
        Unsigned 8-bit integer
    r3.m41t81.reg13.rs  RS
        Unsigned 8-bit integer
    r3.manageuser  Upstream Field
        No value
    r3.manageuser.accessalways  Access Always
        Boolean
    r3.manageuser.accessmode  Access Mode
        Unsigned 8-bit integer
    r3.manageuser.auxfield  Aux Field
        Byte array
    r3.manageuser.auxfieldtype  Aux Field Type
        Unsigned 8-bit integer
    r3.manageuser.cached  Cached
        Boolean
    r3.manageuser.datalen  Data Length
        Unsigned 8-bit integer
    r3.manageuser.disposition  Disposition
        Unsigned 8-bit integer
    r3.manageuser.error  Error
        String
    r3.manageuser.exceptiongroup  Exception Group
        Unsigned 8-bit integer
    r3.manageuser.expireon  Expire On
        Unsigned 24-bit integer
    r3.manageuser.length  Field Length
        Unsigned 8-bit integer
    r3.manageuser.primaryfield  Primary Field
        Byte array
    r3.manageuser.primaryfieldtype  Primary Field Type
        Unsigned 8-bit integer
    r3.manageuser.timezone  Timezone
        Unsigned 32-bit integer
    r3.manageuser.type  Field Type
        Unsigned 8-bit integer
    r3.manageuser.usecount  Use Count
        Unsigned 8-bit integer
    r3.manageuser.usernumber  User Number
        Unsigned 16-bit integer
    r3.manageuser.usertype  User Type
        Unsigned 8-bit integer
    r3.mfgfield.data  Field Data
        No value
    r3.mfgfield.field  Field
        Unsigned 8-bit integer
    r3.mfgfield.length  Field Length
        Unsigned 8-bit integer
    r3.mfgnvramdump  NVRAM Section
        Unsigned 8-bit integer
    r3.mfgremoteunlock  Remote Unlock
        Unsigned 8-bit integer
    r3.mfgsetcryptkey  Crypt Key
        Byte array
    r3.mfgsetserialnumber  Serial Number
        String
    r3.mfgtestpreserve  Preserve Mode
        Unsigned 8-bit integer
    r3.mortisepins.s1  Mortise Pin S1
        Boolean
    r3.mortisepins.s2  Mortise Pin S2
        Boolean
    r3.mortisepins.s3  Mortise Pin S3
        Boolean
    r3.mortisepins.s4  Mortise Pin S4
        Boolean
    r3.mortisestatelog  Mortise State Log
        No value
    r3.mortisestatelog.event  Event
        Unsigned 8-bit integer
    r3.mortisestatelog.laststate  Last State
        Unsigned 8-bit integer
    r3.mortisestatelog.mortisetype  Mortise Type
        Unsigned 8-bit integer
    r3.mortisestatelog.pointer  Event Pointer
        Unsigned 8-bit integer
    r3.mortisestatelog.state  State
        Unsigned 8-bit integer
    r3.mortisestatelog.waiting  Waiting For Door Closed
        Boolean
    r3.nvramchecksum.fixup  Fixup
        Unsigned 32-bit integer
    r3.nvramchecksum.value  Value
        Unsigned 32-bit integer
    r3.nvramclear.alarmlog  NVRAMCLEAROPTIONS_ALARMLOG
        Boolean
    r3.nvramclear.calendars  NVRAMCLEAROPTIONS_CALENDARS
        Boolean
    r3.nvramclear.cfgadmin  NVRAMCLEAROPTIONS_CFGADMIN
        Boolean
    r3.nvramclear.cfginstaller  NVRAMCLEAROPTIONS_CFGINSTALLER
        Boolean
    r3.nvramclear.cfgsystem  NVRAMCLEAROPTIONS_CFGSYSTEM
        Boolean
    r3.nvramclear.dbhash  NVRAMCLEAROPTIONS_DBHASH
        Boolean
    r3.nvramclear.declinedlog  NVRAMCLEAROPTIONS_DECLINEDLOG
        Boolean
    r3.nvramclear.eventlog  NVRAMCLEAROPTIONS_EVENTLOG
        Boolean
    r3.nvramclear.exceptiongroups  NVRAMCLEAROPTIONS_EXCEPTIONGROUPS
        Boolean
    r3.nvramclear.exceptions  NVRAMCLEAROPTIONS_EXCEPTIONS
        Boolean
    r3.nvramclear.filters  NVRAMCLEAROPTIONS_FILTERS
        Boolean
    r3.nvramclear.lrucache  NVRAMCLEAROPTIONS_LRUCACHE
        Boolean
    r3.nvramclear.timezones  NVRAMCLEAROPTIONS_TIMEZONES
        Boolean
    r3.nvramclear.unused  NVRAMCLEAROPTIONS_UNUSED
        Boolean
    r3.nvramclear.usebackup  NVRAMCLEAROPTIONS_USEBACKUP
        Boolean
    r3.nvramclear.userdata  NVRAMCLEAROPTIONS_USERDATA
        Boolean
    r3.nvramdump.data  Record Data
        No value
    r3.nvramdump.length  Record Length
        Unsigned 8-bit integer
    r3.nvramdump.record  Record Number
        Unsigned 16-bit integer
    r3.nvramdumprle.data  Record Data
        No value
    r3.nvramdumprle.length  Record Length
        Unsigned 8-bit integer
    r3.nvramdumprle.record  Record Number
        Unsigned 24-bit integer
    r3.packetlength  Packet Length
        Unsigned 8-bit integer
    r3.packetnumber  Packet Number
        Unsigned 8-bit integer
    r3.payload  Payload
        No value
    r3.peekpoke.address  Address
        Unsigned 16-bit integer
    r3.peekpoke.length  Length
        Unsigned 8-bit integer
    r3.peekpoke.operation  Operation
        Unsigned 8-bit integer
    r3.peekpoke.poke16  16 Bit Value
        Unsigned 16-bit integer
    r3.peekpoke.poke24  24 Bit Value
        Unsigned 24-bit integer
    r3.peekpoke.poke32  32 Bit Value
        Unsigned 32-bit integer
    r3.peekpoke.poke8  8 Bit Value
        Unsigned 8-bit integer
    r3.peekpoke.pokestring  String Value
        Byte array
    r3.powertableselection  Table
        Unsigned 8-bit integer
    r3.response.command  Response Command
        Unsigned 8-bit integer
    r3.response.data  Response Data
        No value
    r3.response.length  Response Length
        Unsigned 8-bit integer
    r3.response.responsetype  Response Type
        Unsigned 8-bit integer
    r3.response.to_command  Response To Command
        Unsigned 8-bit integer
    r3.rmtauthretry.mode  Remote Auth Retry Mode
        Boolean
    r3.rmtauthretry.sequence  Remote Auth Retry Sequence
        Unsigned 16-bit integer
    r3.setdate.day  Day
        Unsigned 8-bit integer
    r3.setdate.dow  Day-Of-Week
        Unsigned 8-bit integer
    r3.setdate.hours  Hours
        Unsigned 8-bit integer
    r3.setdate.minutes  Minutes
        Unsigned 8-bit integer
    r3.setdate.month  Month
        Unsigned 8-bit integer
    r3.setdate.seconds  Seconds
        Unsigned 8-bit integer
    r3.setdate.year  Year
        Unsigned 8-bit integer
    r3.sigil  Sigil
        Unsigned 8-bit integer
    r3.tail  Tail
        No value
    r3.taskflags.flags  Flags
        Unsigned 32-bit integer
    r3.taskflags.taskid  Task ID
        Unsigned 8-bit integer
    r3.test.keypad  Keypad Char
        Unsigned 8-bit integer
    r3.test.magcard  Mag Card
        String
    r3.test.proxcard  Prox Card
        String
    r3.timerchain.address  Address
        Unsigned 16-bit integer
    r3.timerchain.boundary  Boundary
        Unsigned 8-bit integer
    r3.timerchain.count  Count
        Unsigned 16-bit integer
    r3.timerchain.currentboundary  Current Boundary
        Unsigned 8-bit integer
    r3.timerchain.flags  Flags
        Unsigned 32-bit integer
    r3.timerchain.newtick  New Tick
        Unsigned 16-bit integer
    r3.timerchain.reload  Reload
        Unsigned 16-bit integer
    r3.timerchain.tasktag  Task Tag
        Unsigned 8-bit integer
    r3.timezone.0  Timezone  0
        Boolean
    r3.timezone.1  Timezone  1
        Boolean
    r3.timezone.10  Timezone 10
        Boolean
    r3.timezone.11  Timezone 11
        Boolean
    r3.timezone.12  Timezone 12
        Boolean
    r3.timezone.13  Timezone 13
        Boolean
    r3.timezone.14  Timezone 14
        Boolean
    r3.timezone.15  Timezone 15
        Boolean
    r3.timezone.16  Timezone 16
        Boolean
    r3.timezone.17  Timezone 17
        Boolean
    r3.timezone.18  Timezone 18
        Boolean
    r3.timezone.19  Timezone 19
        Boolean
    r3.timezone.2  Timezone  2
        Boolean
    r3.timezone.20  Timezone 20
        Boolean
    r3.timezone.21  Timezone 21
        Boolean
    r3.timezone.22  Timezone 22
        Boolean
    r3.timezone.23  Timezone 23
        Boolean
    r3.timezone.24  Timezone 24
        Boolean
    r3.timezone.25  Timezone 25
        Boolean
    r3.timezone.26  Timezone 26
        Boolean
    r3.timezone.27  Timezone 27
        Boolean
    r3.timezone.28  Timezone 28
        Boolean
    r3.timezone.29  Timezone 29
        Boolean
    r3.timezone.3  Timezone  3
        Boolean
    r3.timezone.30  Timezone 30
        Boolean
    r3.timezone.31  Timezone 31
        Boolean
    r3.timezone.4  Timezone  4
        Boolean
    r3.timezone.5  Timezone  5
        Boolean
    r3.timezone.6  Timezone  6
        Boolean
    r3.timezone.7  Timezone  7
        Boolean
    r3.timezone.8  Timezone  8
        Boolean
    r3.timezone.9  Timezone  9
        Boolean
    r3.upstreamcommand.command  Upstream Command
        Unsigned 8-bit integer
    r3.upstreamfield  Upstream Field
        No value
    r3.upstreamfield.accessalways  Access Always
        Boolean
    r3.upstreamfield.accessmode  Access Mode
        Unsigned 8-bit integer
    r3.upstreamfield.alarmrecord  Alarm Record
        Byte array
    r3.upstreamfield.alarmrecordcount  Alarm Record Count
        Unsigned 16-bit integer
    r3.upstreamfield.auxctlrversion  Aux Controller Version
        String
    r3.upstreamfield.auxfieldtype  Aux Field Type
        Unsigned 8-bit integer
    r3.upstreamfield.auxpin  Aux PIN
        Byte array
    r3.upstreamfield.cached  Cached
        Boolean
    r3.upstreamfield.datalen  Data Length
        Unsigned 8-bit integer
    r3.upstreamfield.datetime  Date/Time
        Byte array
    r3.upstreamfield.declinedlog  Declined Log
        Byte array
    r3.upstreamfield.declinedlogrecord  Declined Log Record
        Unsigned 16-bit integer
    r3.upstreamfield.entrydevice  Entry Device
        Unsigned 8-bit integer
    r3.upstreamfield.error  Error
        String
    r3.upstreamfield.eventlogrecord  Event Log Record
        Byte array
    r3.upstreamfield.eventlogrecordcount  Event Log Record Count
        Unsigned 16-bit integer
    r3.upstreamfield.exceptiongroup  Exception Group
        Unsigned 8-bit integer
    r3.upstreamfield.expireon  Expire On
        Unsigned 24-bit integer
    r3.upstreamfield.length  Field Length
        Unsigned 8-bit integer
    r3.upstreamfield.nar  Next Available Record
        Unsigned 16-bit integer
    r3.upstreamfield.pin  PIN
        String
    r3.upstreamfield.ppmifieldtype  PPMI Field Type
        Unsigned 8-bit integer
    r3.upstreamfield.primaryfieldtype  Primary Field Type
        Unsigned 8-bit integer
    r3.upstreamfield.primarypin  Primary PIN
        Byte array
    r3.upstreamfield.responsewindow  Response Window
        Unsigned 8-bit integer
    r3.upstreamfield.sequencenumber  Sequence Number
        Unsigned 16-bit integer
    r3.upstreamfield.serialnumber  Serial Number
        String
    r3.upstreamfield.timezone  Timezone
        Unsigned 32-bit integer
    r3.upstreamfield.type  Field Type
        Unsigned 8-bit integer
    r3.upstreamfield.usecount  Use Count
        Unsigned 8-bit integer
    r3.upstreamfield.usernumber  User Number
        Unsigned 16-bit integer
    r3.upstreamfield.usertype  User Type
        Unsigned 8-bit integer
    r3.upstreamfield.version  Version
        String
    r3.writeeventlog.event  Event
        Unsigned 8-bit integer
    r3.writeeventlog.user  User
        Unsigned 16-bit integer
    r3.xor  XOR
        Unsigned 8-bit integer
    r3.xor_bad  Bad XOR
        Boolean
    r3_cpuregisters_intcon2_int3ip  INTCON2.INT3IP
        Boolean
    r3_cpuregisters_intcon2_intedg0  INTCON2.INTEDG0
        Boolean
    r3_cpuregisters_intcon2_intedg1  INTCON2.INTEDG1
        Boolean
    r3_cpuregisters_intcon2_intedg2  INTCON2.INTEDG2
        Boolean
    r3_cpuregisters_intcon2_intedg3  INTCON2.INTEDG3
        Boolean
    r3_cpuregisters_intcon2_rbip  INTCON2.RBIP
        Boolean
    r3_cpuregisters_intcon2_rbpu  INTCON2.RBPU
        Boolean
    r3_cpuregisters_intcon2_tmr0ip  INTCON2.TMR0IP
        Boolean

Async data over ISDN (V.120) (v120)

    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

Asynchronous Layered Coding (alc)

    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

Asynchronous Transfer Mode (atm)

    atm.aal  AAL
        Unsigned 8-bit integer
    atm.cid  CID
        Unsigned 8-bit integer
    atm.vci  VCI
        Unsigned 16-bit integer
    atm.vpi  VPI
        Unsigned 8-bit integer

AudioCodes TPNCP (TrunkPack Network Control Protocol) (tpncp)

    tpncp.aal2_protocol_type  tpncp.aal2_protocol_type
        Unsigned 8-bit integer
    tpncp.aal2_rx_cid  tpncp.aal2_rx_cid
        Unsigned 8-bit integer
    tpncp.aal2_tx_cid  tpncp.aal2_tx_cid
        Unsigned 8-bit integer
    tpncp.aal2cid  tpncp.aal2cid
        Unsigned 8-bit integer
    tpncp.aal_type  tpncp.aal_type
        Signed 32-bit integer
    tpncp.abtsc  tpncp.abtsc
        Unsigned 16-bit integer
    tpncp.ac_isdn_info_elements_buffer  tpncp.ac_isdn_info_elements_buffer
        String
    tpncp.ac_isdn_info_elements_buffer_length  tpncp.ac_isdn_info_elements_buffer_length
        Signed 32-bit integer
    tpncp.ack1  tpncp.ack1
        Signed 32-bit integer
    tpncp.ack2  tpncp.ack2
        Signed 32-bit integer
    tpncp.ack3  tpncp.ack3
        Signed 32-bit integer
    tpncp.ack4  tpncp.ack4
        Signed 32-bit integer
    tpncp.ack_param1  tpncp.ack_param1
        Signed 32-bit integer
    tpncp.ack_param2  tpncp.ack_param2
        Signed 32-bit integer
    tpncp.ack_param3  tpncp.ack_param3
        Signed 32-bit integer
    tpncp.ack_param4  tpncp.ack_param4
        Signed 32-bit integer
    tpncp.acknowledge_error_code  tpncp.acknowledge_error_code
        Signed 32-bit integer
    tpncp.acknowledge_request_indicator  tpncp.acknowledge_request_indicator
        Signed 32-bit integer
    tpncp.acknowledge_status  tpncp.acknowledge_status
        Signed 32-bit integer
    tpncp.acknowledge_table_index1  tpncp.acknowledge_table_index1
        String
    tpncp.acknowledge_table_index2  tpncp.acknowledge_table_index2
        String
    tpncp.acknowledge_table_index3  tpncp.acknowledge_table_index3
        String
    tpncp.acknowledge_table_index4  tpncp.acknowledge_table_index4
        String
    tpncp.acknowledge_table_name  tpncp.acknowledge_table_name
        String
    tpncp.acknowledge_type  tpncp.acknowledge_type
        Signed 32-bit integer
    tpncp.action  tpncp.action
        Signed 32-bit integer
    tpncp.activation_option  tpncp.activation_option
        Unsigned 8-bit integer
    tpncp.active  tpncp.active
        Unsigned 8-bit integer
    tpncp.active_fiber_link  tpncp.active_fiber_link
        Signed 32-bit integer
    tpncp.active_links_no  tpncp.active_links_no
        Signed 32-bit integer
    tpncp.active_on_board  tpncp.active_on_board
        Signed 32-bit integer
    tpncp.active_port_id  tpncp.active_port_id
        Unsigned 32-bit integer
    tpncp.active_redundant_ter  tpncp.active_redundant_ter
        Signed 32-bit integer
    tpncp.active_speaker_energy_threshold  tpncp.active_speaker_energy_threshold
        Signed 32-bit integer
    tpncp.active_speaker_list_0  tpncp.active_speaker_list_0
        Signed 32-bit integer
    tpncp.active_speaker_list_1  tpncp.active_speaker_list_1
        Signed 32-bit integer
    tpncp.active_speaker_list_2  tpncp.active_speaker_list_2
        Signed 32-bit integer
    tpncp.active_speaker_notification_enable  tpncp.active_speaker_notification_enable
        Signed 32-bit integer
    tpncp.active_speaker_notification_min_interval  tpncp.active_speaker_notification_min_interval
        Signed 32-bit integer
    tpncp.active_speakers_energy_level_0  tpncp.active_speakers_energy_level_0
        Signed 32-bit integer
    tpncp.active_speakers_energy_level_1  tpncp.active_speakers_energy_level_1
        Signed 32-bit integer
    tpncp.active_speakers_energy_level_2  tpncp.active_speakers_energy_level_2
        Signed 32-bit integer
    tpncp.active_voice_prompt_repository_index  tpncp.active_voice_prompt_repository_index
        Signed 32-bit integer
    tpncp.activity_status  tpncp.activity_status
        Signed 32-bit integer
    tpncp.actual_routes_configured  tpncp.actual_routes_configured
        Signed 32-bit integer
    tpncp.add  tpncp.add
        Signed 32-bit integer
    tpncp.additional_info_0_0  tpncp.additional_info_0_0
        Signed 32-bit integer
    tpncp.additional_info_0_1  tpncp.additional_info_0_1
        Signed 32-bit integer
    tpncp.additional_info_0_10  tpncp.additional_info_0_10
        Signed 32-bit integer
    tpncp.additional_info_0_11  tpncp.additional_info_0_11
        Signed 32-bit integer
    tpncp.additional_info_0_12  tpncp.additional_info_0_12
        Signed 32-bit integer
    tpncp.additional_info_0_13  tpncp.additional_info_0_13
        Signed 32-bit integer
    tpncp.additional_info_0_14  tpncp.additional_info_0_14
        Signed 32-bit integer
    tpncp.additional_info_0_15  tpncp.additional_info_0_15
        Signed 32-bit integer
    tpncp.additional_info_0_16  tpncp.additional_info_0_16
        Signed 32-bit integer
    tpncp.additional_info_0_17  tpncp.additional_info_0_17
        Signed 32-bit integer
    tpncp.additional_info_0_18  tpncp.additional_info_0_18
        Signed 32-bit integer
    tpncp.additional_info_0_19  tpncp.additional_info_0_19
        Signed 32-bit integer
    tpncp.additional_info_0_2  tpncp.additional_info_0_2
        Signed 32-bit integer
    tpncp.additional_info_0_20  tpncp.additional_info_0_20
        Signed 32-bit integer
    tpncp.additional_info_0_21  tpncp.additional_info_0_21
        Signed 32-bit integer
    tpncp.additional_info_0_3  tpncp.additional_info_0_3
        Signed 32-bit integer
    tpncp.additional_info_0_4  tpncp.additional_info_0_4
        Signed 32-bit integer
    tpncp.additional_info_0_5  tpncp.additional_info_0_5
        Signed 32-bit integer
    tpncp.additional_info_0_6  tpncp.additional_info_0_6
        Signed 32-bit integer
    tpncp.additional_info_0_7  tpncp.additional_info_0_7
        Signed 32-bit integer
    tpncp.additional_info_0_8  tpncp.additional_info_0_8
        Signed 32-bit integer
    tpncp.additional_info_0_9  tpncp.additional_info_0_9
        Signed 32-bit integer
    tpncp.additional_info_1_0  tpncp.additional_info_1_0
        Signed 32-bit integer
    tpncp.additional_info_1_1  tpncp.additional_info_1_1
        Signed 32-bit integer
    tpncp.additional_info_1_10  tpncp.additional_info_1_10
        Signed 32-bit integer
    tpncp.additional_info_1_11  tpncp.additional_info_1_11
        Signed 32-bit integer
    tpncp.additional_info_1_12  tpncp.additional_info_1_12
        Signed 32-bit integer
    tpncp.additional_info_1_13  tpncp.additional_info_1_13
        Signed 32-bit integer
    tpncp.additional_info_1_14  tpncp.additional_info_1_14
        Signed 32-bit integer
    tpncp.additional_info_1_15  tpncp.additional_info_1_15
        Signed 32-bit integer
    tpncp.additional_info_1_16  tpncp.additional_info_1_16
        Signed 32-bit integer
    tpncp.additional_info_1_17  tpncp.additional_info_1_17
        Signed 32-bit integer
    tpncp.additional_info_1_18  tpncp.additional_info_1_18
        Signed 32-bit integer
    tpncp.additional_info_1_19  tpncp.additional_info_1_19
        Signed 32-bit integer
    tpncp.additional_info_1_2  tpncp.additional_info_1_2
        Signed 32-bit integer
    tpncp.additional_info_1_20  tpncp.additional_info_1_20
        Signed 32-bit integer
    tpncp.additional_info_1_21  tpncp.additional_info_1_21
        Signed 32-bit integer
    tpncp.additional_info_1_3  tpncp.additional_info_1_3
        Signed 32-bit integer
    tpncp.additional_info_1_4  tpncp.additional_info_1_4
        Signed 32-bit integer
    tpncp.additional_info_1_5  tpncp.additional_info_1_5
        Signed 32-bit integer
    tpncp.additional_info_1_6  tpncp.additional_info_1_6
        Signed 32-bit integer
    tpncp.additional_info_1_7  tpncp.additional_info_1_7
        Signed 32-bit integer
    tpncp.additional_info_1_8  tpncp.additional_info_1_8
        Signed 32-bit integer
    tpncp.additional_info_1_9  tpncp.additional_info_1_9
        Signed 32-bit integer
    tpncp.additional_information  tpncp.additional_information
        Signed 32-bit integer
    tpncp.addr  tpncp.addr
        Signed 32-bit integer
    tpncp.address_family  tpncp.address_family
        Signed 32-bit integer
    tpncp.admin_state  tpncp.admin_state
        Signed 32-bit integer
    tpncp.administrative_state  tpncp.administrative_state
        Signed 32-bit integer
    tpncp.agc_cmd  tpncp.agc_cmd
        Signed 32-bit integer
    tpncp.agc_enable  tpncp.agc_enable
        Signed 32-bit integer
    tpncp.ais  tpncp.ais
        Signed 32-bit integer
    tpncp.alarm_bit_map  tpncp.alarm_bit_map
        Signed 32-bit integer
    tpncp.alarm_cause_a_line_far_end_loop_alarm  tpncp.alarm_cause_a_line_far_end_loop_alarm
        Unsigned 8-bit integer
    tpncp.alarm_cause_a_shelf_alarm  tpncp.alarm_cause_a_shelf_alarm
        Unsigned 8-bit integer
    tpncp.alarm_cause_b_line_far_end_loop_alarm  tpncp.alarm_cause_b_line_far_end_loop_alarm
        Unsigned 8-bit integer
    tpncp.alarm_cause_b_shelf_alarm  tpncp.alarm_cause_b_shelf_alarm
        Unsigned 8-bit integer
    tpncp.alarm_cause_c_line_far_end_loop_alarm  tpncp.alarm_cause_c_line_far_end_loop_alarm
        Unsigned 8-bit integer
    tpncp.alarm_cause_c_shelf_alarm  tpncp.alarm_cause_c_shelf_alarm
        Unsigned 8-bit integer
    tpncp.alarm_cause_d_line_far_end_loop_alarm  tpncp.alarm_cause_d_line_far_end_loop_alarm
        Unsigned 8-bit integer
    tpncp.alarm_cause_d_shelf_alarm  tpncp.alarm_cause_d_shelf_alarm
        Unsigned 8-bit integer
    tpncp.alarm_cause_framing  tpncp.alarm_cause_framing
        Unsigned 8-bit integer
    tpncp.alarm_cause_major_alarm  tpncp.alarm_cause_major_alarm
        Unsigned 8-bit integer
    tpncp.alarm_cause_minor_alarm  tpncp.alarm_cause_minor_alarm
        Unsigned 8-bit integer
    tpncp.alarm_cause_p_line_far_end_loop_alarm  tpncp.alarm_cause_p_line_far_end_loop_alarm
        Unsigned 8-bit integer
    tpncp.alarm_cause_power_miscellaneous_alarm  tpncp.alarm_cause_power_miscellaneous_alarm
        Unsigned 8-bit integer
    tpncp.alarm_code  tpncp.alarm_code
        Signed 32-bit integer
    tpncp.alarm_indication_signal  tpncp.alarm_indication_signal
        Signed 32-bit integer
    tpncp.alarm_insertion_signal  tpncp.alarm_insertion_signal
        Signed 32-bit integer
    tpncp.alarm_type  tpncp.alarm_type
        Signed 32-bit integer
    tpncp.alcap_instance_id  tpncp.alcap_instance_id
        Unsigned 32-bit integer
    tpncp.alcap_reset_cause  tpncp.alcap_reset_cause
        Signed 32-bit integer
    tpncp.alcap_status  tpncp.alcap_status
        Signed 32-bit integer
    tpncp.alert_state  tpncp.alert_state
        Signed 32-bit integer
    tpncp.alert_type  tpncp.alert_type
        Signed 32-bit integer
    tpncp.align  tpncp.align
        String
    tpncp.alignment  tpncp.alignment
        String
    tpncp.alignment1  tpncp.alignment1
        Unsigned 8-bit integer
    tpncp.alignment2  tpncp.alignment2
        String
    tpncp.alignment3  tpncp.alignment3
        String
    tpncp.alignment_1  tpncp.alignment_1
        String
    tpncp.alignment_2  tpncp.alignment_2
        String
    tpncp.all_trunks  tpncp.all_trunks
        Unsigned 8-bit integer
    tpncp.allowed_call_types  tpncp.allowed_call_types
        Unsigned 8-bit integer
    tpncp.amd_activation_mode  tpncp.amd_activation_mode
        Signed 32-bit integer
    tpncp.amd_decision  tpncp.amd_decision
        Signed 32-bit integer
    tpncp.amr_coder_header_format  tpncp.amr_coder_header_format
        Unsigned 8-bit integer
    tpncp.amr_coders_enable  tpncp.amr_coders_enable
        String
    tpncp.amr_delay_hysteresis  tpncp.amr_delay_hysteresis
        Unsigned 16-bit integer
    tpncp.amr_delay_threshold  tpncp.amr_delay_threshold
        Unsigned 16-bit integer
    tpncp.amr_frame_loss_ratio_hysteresis  tpncp.amr_frame_loss_ratio_hysteresis
        String
    tpncp.amr_frame_loss_ratio_threshold  tpncp.amr_frame_loss_ratio_threshold
        String
    tpncp.amr_hand_out_state  tpncp.amr_hand_out_state
        Signed 32-bit integer
    tpncp.amr_number_of_codec_modes  tpncp.amr_number_of_codec_modes
        Unsigned 8-bit integer
    tpncp.amr_rate  tpncp.amr_rate
        String
    tpncp.amr_redundancy_depth  tpncp.amr_redundancy_depth
        Unsigned 8-bit integer
    tpncp.amr_redundancy_level  tpncp.amr_redundancy_level
        String
    tpncp.analog_board_type  tpncp.analog_board_type
        Signed 32-bit integer
    tpncp.analog_device_version_return_code  tpncp.analog_device_version_return_code
        Signed 32-bit integer
    tpncp.analog_if_disconnect_state  tpncp.analog_if_disconnect_state
        Signed 32-bit integer
    tpncp.analog_if_flash_duration  tpncp.analog_if_flash_duration
        Signed 32-bit integer
    tpncp.analog_if_polarity_state  tpncp.analog_if_polarity_state
        Signed 32-bit integer
    tpncp.analog_if_set_loop_back  tpncp.analog_if_set_loop_back
        Signed 32-bit integer
    tpncp.analog_line_voltage_reading  tpncp.analog_line_voltage_reading
        Signed 32-bit integer
    tpncp.analog_ring_voltage_reading  tpncp.analog_ring_voltage_reading
        Signed 32-bit integer
    tpncp.analog_voltage_reading  tpncp.analog_voltage_reading
        Signed 32-bit integer
    tpncp.anic_internal_state  tpncp.anic_internal_state
        Signed 32-bit integer
    tpncp.announcement_buffer  tpncp.announcement_buffer
        String
    tpncp.announcement_sequence_status  tpncp.announcement_sequence_status
        Signed 32-bit integer
    tpncp.announcement_string  tpncp.announcement_string
        String
    tpncp.announcement_type_0  tpncp.announcement_type_0
        Signed 32-bit integer
    tpncp.answer_detector_cmd  tpncp.answer_detector_cmd
        Signed 32-bit integer
    tpncp.answer_tone_detection_direction  tpncp.answer_tone_detection_direction
        Signed 32-bit integer
    tpncp.answer_tone_detection_origin  tpncp.answer_tone_detection_origin
        Signed 32-bit integer
    tpncp.answering_machine_detection_direction  tpncp.answering_machine_detection_direction
        Signed 32-bit integer
    tpncp.answering_machine_detector_decision_param1  tpncp.answering_machine_detector_decision_param1
        Unsigned 32-bit integer
    tpncp.answering_machine_detector_decision_param2  tpncp.answering_machine_detector_decision_param2
        Unsigned 32-bit integer
    tpncp.answering_machine_detector_decision_param3  tpncp.answering_machine_detector_decision_param3
        Unsigned 32-bit integer
    tpncp.answering_machine_detector_decision_param4  tpncp.answering_machine_detector_decision_param4
        Unsigned 32-bit integer
    tpncp.answering_machine_detector_decision_param5  tpncp.answering_machine_detector_decision_param5
        Unsigned 32-bit integer
    tpncp.answering_machine_detector_decision_param6  tpncp.answering_machine_detector_decision_param6
        Unsigned 32-bit integer
    tpncp.answering_machine_detector_decision_param7  tpncp.answering_machine_detector_decision_param7
        Unsigned 32-bit integer
    tpncp.answering_machine_detector_decision_param8  tpncp.answering_machine_detector_decision_param8
        Unsigned 32-bit integer
    tpncp.answering_machine_detector_sensitivity  tpncp.answering_machine_detector_sensitivity
        Unsigned 8-bit integer
    tpncp.apb_timing_clock_alarm_0  tpncp.apb_timing_clock_alarm_0
        Unsigned 16-bit integer
    tpncp.apb_timing_clock_alarm_1  tpncp.apb_timing_clock_alarm_1
        Unsigned 16-bit integer
    tpncp.apb_timing_clock_alarm_2  tpncp.apb_timing_clock_alarm_2
        Unsigned 16-bit integer
    tpncp.apb_timing_clock_alarm_3  tpncp.apb_timing_clock_alarm_3
        Unsigned 16-bit integer
    tpncp.apb_timing_clock_enable_0  tpncp.apb_timing_clock_enable_0
        Unsigned 16-bit integer
    tpncp.apb_timing_clock_enable_1  tpncp.apb_timing_clock_enable_1
        Unsigned 16-bit integer
    tpncp.apb_timing_clock_enable_2  tpncp.apb_timing_clock_enable_2
        Unsigned 16-bit integer
    tpncp.apb_timing_clock_enable_3  tpncp.apb_timing_clock_enable_3
        Unsigned 16-bit integer
    tpncp.apb_timing_clock_source_0  tpncp.apb_timing_clock_source_0
        Signed 32-bit integer
    tpncp.apb_timing_clock_source_1  tpncp.apb_timing_clock_source_1
        Signed 32-bit integer
    tpncp.apb_timing_clock_source_2  tpncp.apb_timing_clock_source_2
        Signed 32-bit integer
    tpncp.apb_timing_clock_source_3  tpncp.apb_timing_clock_source_3
        Signed 32-bit integer
    tpncp.app_layer  tpncp.app_layer
        Signed 32-bit integer
    tpncp.append  tpncp.append
        Signed 32-bit integer
    tpncp.append_ch_rec_points  tpncp.append_ch_rec_points
        Signed 32-bit integer
    tpncp.asrtts_speech_recognition_error  tpncp.asrtts_speech_recognition_error
        Signed 32-bit integer
    tpncp.asrtts_speech_status  tpncp.asrtts_speech_status
        Signed 32-bit integer
    tpncp.assessed_seconds  tpncp.assessed_seconds
        Signed 32-bit integer
    tpncp.associated_cid  tpncp.associated_cid
        Signed 32-bit integer
    tpncp.atm_network_cid  tpncp.atm_network_cid
        Signed 32-bit integer
    tpncp.atm_port  tpncp.atm_port
        Signed 32-bit integer
    tpncp.atmg711_default_law_select  tpncp.atmg711_default_law_select
        Unsigned 8-bit integer
    tpncp.attenuation_value  tpncp.attenuation_value
        Signed 32-bit integer
    tpncp.au3_number  tpncp.au3_number
        Unsigned 32-bit integer
    tpncp.au3_number_0  tpncp.au3_number_0
        Unsigned 32-bit integer
    tpncp.au3_number_1  tpncp.au3_number_1
        Unsigned 32-bit integer
    tpncp.au3_number_10  tpncp.au3_number_10
        Unsigned 32-bit integer
    tpncp.au3_number_11  tpncp.au3_number_11
        Unsigned 32-bit integer
    tpncp.au3_number_12  tpncp.au3_number_12
        Unsigned 32-bit integer
    tpncp.au3_number_13  tpncp.au3_number_13
        Unsigned 32-bit integer
    tpncp.au3_number_14  tpncp.au3_number_14
        Unsigned 32-bit integer
    tpncp.au3_number_15  tpncp.au3_number_15
        Unsigned 32-bit integer
    tpncp.au3_number_16  tpncp.au3_number_16
        Unsigned 32-bit integer
    tpncp.au3_number_17  tpncp.au3_number_17
        Unsigned 32-bit integer
    tpncp.au3_number_18  tpncp.au3_number_18
        Unsigned 32-bit integer
    tpncp.au3_number_19  tpncp.au3_number_19
        Unsigned 32-bit integer
    tpncp.au3_number_2  tpncp.au3_number_2
        Unsigned 32-bit integer
    tpncp.au3_number_20  tpncp.au3_number_20
        Unsigned 32-bit integer
    tpncp.au3_number_21  tpncp.au3_number_21
        Unsigned 32-bit integer
    tpncp.au3_number_22  tpncp.au3_number_22
        Unsigned 32-bit integer
    tpncp.au3_number_23  tpncp.au3_number_23
        Unsigned 32-bit integer
    tpncp.au3_number_24  tpncp.au3_number_24
        Unsigned 32-bit integer
    tpncp.au3_number_25  tpncp.au3_number_25
        Unsigned 32-bit integer
    tpncp.au3_number_26  tpncp.au3_number_26
        Unsigned 32-bit integer
    tpncp.au3_number_27  tpncp.au3_number_27
        Unsigned 32-bit integer
    tpncp.au3_number_28  tpncp.au3_number_28
        Unsigned 32-bit integer
    tpncp.au3_number_29  tpncp.au3_number_29
        Unsigned 32-bit integer
    tpncp.au3_number_3  tpncp.au3_number_3
        Unsigned 32-bit integer
    tpncp.au3_number_30  tpncp.au3_number_30
        Unsigned 32-bit integer
    tpncp.au3_number_31  tpncp.au3_number_31
        Unsigned 32-bit integer
    tpncp.au3_number_32  tpncp.au3_number_32
        Unsigned 32-bit integer
    tpncp.au3_number_33  tpncp.au3_number_33
        Unsigned 32-bit integer
    tpncp.au3_number_34  tpncp.au3_number_34
        Unsigned 32-bit integer
    tpncp.au3_number_35  tpncp.au3_number_35
        Unsigned 32-bit integer
    tpncp.au3_number_36  tpncp.au3_number_36
        Unsigned 32-bit integer
    tpncp.au3_number_37  tpncp.au3_number_37
        Unsigned 32-bit integer
    tpncp.au3_number_38  tpncp.au3_number_38
        Unsigned 32-bit integer
    tpncp.au3_number_39  tpncp.au3_number_39
        Unsigned 32-bit integer
    tpncp.au3_number_4  tpncp.au3_number_4
        Unsigned 32-bit integer
    tpncp.au3_number_40  tpncp.au3_number_40
        Unsigned 32-bit integer
    tpncp.au3_number_41  tpncp.au3_number_41
        Unsigned 32-bit integer
    tpncp.au3_number_42  tpncp.au3_number_42
        Unsigned 32-bit integer
    tpncp.au3_number_43  tpncp.au3_number_43
        Unsigned 32-bit integer
    tpncp.au3_number_44  tpncp.au3_number_44
        Unsigned 32-bit integer
    tpncp.au3_number_45  tpncp.au3_number_45
        Unsigned 32-bit integer
    tpncp.au3_number_46  tpncp.au3_number_46
        Unsigned 32-bit integer
    tpncp.au3_number_47  tpncp.au3_number_47
        Unsigned 32-bit integer
    tpncp.au3_number_48  tpncp.au3_number_48
        Unsigned 32-bit integer
    tpncp.au3_number_49  tpncp.au3_number_49
        Unsigned 32-bit integer
    tpncp.au3_number_5  tpncp.au3_number_5
        Unsigned 32-bit integer
    tpncp.au3_number_50  tpncp.au3_number_50
        Unsigned 32-bit integer
    tpncp.au3_number_51  tpncp.au3_number_51
        Unsigned 32-bit integer
    tpncp.au3_number_52  tpncp.au3_number_52
        Unsigned 32-bit integer
    tpncp.au3_number_53  tpncp.au3_number_53
        Unsigned 32-bit integer
    tpncp.au3_number_54  tpncp.au3_number_54
        Unsigned 32-bit integer
    tpncp.au3_number_55  tpncp.au3_number_55
        Unsigned 32-bit integer
    tpncp.au3_number_56  tpncp.au3_number_56
        Unsigned 32-bit integer
    tpncp.au3_number_57  tpncp.au3_number_57
        Unsigned 32-bit integer
    tpncp.au3_number_58  tpncp.au3_number_58
        Unsigned 32-bit integer
    tpncp.au3_number_59  tpncp.au3_number_59
        Unsigned 32-bit integer
    tpncp.au3_number_6  tpncp.au3_number_6
        Unsigned 32-bit integer
    tpncp.au3_number_60  tpncp.au3_number_60
        Unsigned 32-bit integer
    tpncp.au3_number_61  tpncp.au3_number_61
        Unsigned 32-bit integer
    tpncp.au3_number_62  tpncp.au3_number_62
        Unsigned 32-bit integer
    tpncp.au3_number_63  tpncp.au3_number_63
        Unsigned 32-bit integer
    tpncp.au3_number_64  tpncp.au3_number_64
        Unsigned 32-bit integer
    tpncp.au3_number_65  tpncp.au3_number_65
        Unsigned 32-bit integer
    tpncp.au3_number_66  tpncp.au3_number_66
        Unsigned 32-bit integer
    tpncp.au3_number_67  tpncp.au3_number_67
        Unsigned 32-bit integer
    tpncp.au3_number_68  tpncp.au3_number_68
        Unsigned 32-bit integer
    tpncp.au3_number_69  tpncp.au3_number_69
        Unsigned 32-bit integer
    tpncp.au3_number_7  tpncp.au3_number_7
        Unsigned 32-bit integer
    tpncp.au3_number_70  tpncp.au3_number_70
        Unsigned 32-bit integer
    tpncp.au3_number_71  tpncp.au3_number_71
        Unsigned 32-bit integer
    tpncp.au3_number_72  tpncp.au3_number_72
        Unsigned 32-bit integer
    tpncp.au3_number_73  tpncp.au3_number_73
        Unsigned 32-bit integer
    tpncp.au3_number_74  tpncp.au3_number_74
        Unsigned 32-bit integer
    tpncp.au3_number_75  tpncp.au3_number_75
        Unsigned 32-bit integer
    tpncp.au3_number_76  tpncp.au3_number_76
        Unsigned 32-bit integer
    tpncp.au3_number_77  tpncp.au3_number_77
        Unsigned 32-bit integer
    tpncp.au3_number_78  tpncp.au3_number_78
        Unsigned 32-bit integer
    tpncp.au3_number_79  tpncp.au3_number_79
        Unsigned 32-bit integer
    tpncp.au3_number_8  tpncp.au3_number_8
        Unsigned 32-bit integer
    tpncp.au3_number_80  tpncp.au3_number_80
        Unsigned 32-bit integer
    tpncp.au3_number_81  tpncp.au3_number_81
        Unsigned 32-bit integer
    tpncp.au3_number_82  tpncp.au3_number_82
        Unsigned 32-bit integer
    tpncp.au3_number_83  tpncp.au3_number_83
        Unsigned 32-bit integer
    tpncp.au3_number_9  tpncp.au3_number_9
        Unsigned 32-bit integer
    tpncp.au_number  tpncp.au_number
        Unsigned 8-bit integer
    tpncp.audio_mediation_level  tpncp.audio_mediation_level
        Signed 32-bit integer
    tpncp.audio_transcoding_mode  tpncp.audio_transcoding_mode
        Signed 32-bit integer
    tpncp.autonomous_signalling_sequence_type  tpncp.autonomous_signalling_sequence_type
        Signed 32-bit integer
    tpncp.auxiliary_call_state  tpncp.auxiliary_call_state
        Signed 32-bit integer
    tpncp.available  tpncp.available
        Signed 32-bit integer
    tpncp.average  tpncp.average
        Signed 32-bit integer
    tpncp.average_burst_density  tpncp.average_burst_density
        Unsigned 8-bit integer
    tpncp.average_burst_duration  tpncp.average_burst_duration
        Unsigned 16-bit integer
    tpncp.average_gap_density  tpncp.average_gap_density
        Unsigned 8-bit integer
    tpncp.average_gap_duration  tpncp.average_gap_duration
        Unsigned 16-bit integer
    tpncp.average_round_trip  tpncp.average_round_trip
        Unsigned 32-bit integer
    tpncp.avg_rtt  tpncp.avg_rtt
        Unsigned 32-bit integer
    tpncp.b_channel  tpncp.b_channel
        Signed 32-bit integer
    tpncp.backward_key_sequence  tpncp.backward_key_sequence
        String
    tpncp.barge_in  tpncp.barge_in
        Signed 16-bit integer
    tpncp.base_board_firm_ware_ver  tpncp.base_board_firm_ware_ver
        Signed 32-bit integer
    tpncp.basic_service_0  tpncp.basic_service_0
        Signed 32-bit integer
    tpncp.basic_service_1  tpncp.basic_service_1
        Signed 32-bit integer
    tpncp.basic_service_2  tpncp.basic_service_2
        Signed 32-bit integer
    tpncp.basic_service_3  tpncp.basic_service_3
        Signed 32-bit integer
    tpncp.basic_service_4  tpncp.basic_service_4
        Signed 32-bit integer
    tpncp.basic_service_5  tpncp.basic_service_5
        Signed 32-bit integer
    tpncp.basic_service_6  tpncp.basic_service_6
        Signed 32-bit integer
    tpncp.basic_service_7  tpncp.basic_service_7
        Signed 32-bit integer
    tpncp.basic_service_8  tpncp.basic_service_8
        Signed 32-bit integer
    tpncp.basic_service_9  tpncp.basic_service_9
        Signed 32-bit integer
    tpncp.bearer_establish_fail_cause  tpncp.bearer_establish_fail_cause
        Signed 32-bit integer
    tpncp.bearer_release_indication_cause  tpncp.bearer_release_indication_cause
        Signed 32-bit integer
    tpncp.bell_modem_transport_type  tpncp.bell_modem_transport_type
        Signed 32-bit integer
    tpncp.bind_id  tpncp.bind_id
        Unsigned 32-bit integer
    tpncp.bit_error  tpncp.bit_error
        Signed 32-bit integer
    tpncp.bit_error_counter  tpncp.bit_error_counter
        Unsigned 16-bit integer
    tpncp.bit_result  tpncp.bit_result
        Signed 32-bit integer
    tpncp.bit_type  tpncp.bit_type
        Signed 32-bit integer
    tpncp.bit_value  tpncp.bit_value
        Signed 32-bit integer
    tpncp.bits_clock_reference  tpncp.bits_clock_reference
        Signed 32-bit integer
    tpncp.blast_image_file  tpncp.blast_image_file
        Signed 32-bit integer
    tpncp.blind_participant_id  tpncp.blind_participant_id
        Signed 32-bit integer
    tpncp.block  tpncp.block
        Signed 32-bit integer
    tpncp.block_origin  tpncp.block_origin
        Signed 32-bit integer
    tpncp.blocking_status  tpncp.blocking_status
        Signed 32-bit integer
    tpncp.board_analog_voltages  tpncp.board_analog_voltages
        Signed 32-bit integer
    tpncp.board_flash_size  tpncp.board_flash_size
        Signed 32-bit integer
    tpncp.board_handle  tpncp.board_handle
        Signed 32-bit integer
    tpncp.board_hardware_revision  tpncp.board_hardware_revision
        Signed 32-bit integer
    tpncp.board_id_switch  tpncp.board_id_switch
        Signed 32-bit integer
    tpncp.board_ip_addr  tpncp.board_ip_addr
        Unsigned 32-bit integer
    tpncp.board_ip_address  tpncp.board_ip_address
        Unsigned 32-bit integer
    tpncp.board_params_tdm_bus_clock_source  tpncp.board_params_tdm_bus_clock_source
        Signed 32-bit integer
    tpncp.board_params_tdm_bus_fallback_clock  tpncp.board_params_tdm_bus_fallback_clock
        Signed 32-bit integer
    tpncp.board_ram_size  tpncp.board_ram_size
        Signed 32-bit integer
    tpncp.board_sub_net_address  tpncp.board_sub_net_address
        Unsigned 32-bit integer
    tpncp.board_temp  tpncp.board_temp
        Signed 32-bit integer
    tpncp.board_temp_bit_return_code  tpncp.board_temp_bit_return_code
        Signed 32-bit integer
    tpncp.board_type  tpncp.board_type
        Signed 32-bit integer
    tpncp.boot_file  tpncp.boot_file
        String
    tpncp.boot_file_length  tpncp.boot_file_length
        Signed 32-bit integer
    tpncp.bootp_delay  tpncp.bootp_delay
        Signed 32-bit integer
    tpncp.bootp_retries  tpncp.bootp_retries
        Signed 32-bit integer
    tpncp.broken_connection_event_activation_mode  tpncp.broken_connection_event_activation_mode
        Signed 32-bit integer
    tpncp.broken_connection_event_timeout  tpncp.broken_connection_event_timeout
        Unsigned 32-bit integer
    tpncp.broken_connection_period  tpncp.broken_connection_period
        Unsigned 32-bit integer
    tpncp.buffer  tpncp.buffer
        String
    tpncp.buffer_length  tpncp.buffer_length
        Signed 32-bit integer
    tpncp.bursty_errored_seconds  tpncp.bursty_errored_seconds
        Signed 32-bit integer
    tpncp.bus  tpncp.bus
        Signed 32-bit integer
    tpncp.bytes_processed  tpncp.bytes_processed
        Unsigned 32-bit integer
    tpncp.bytes_received  tpncp.bytes_received
        Signed 32-bit integer
    tpncp.c_bit_parity  tpncp.c_bit_parity
        Signed 32-bit integer
    tpncp.c_dummy  tpncp.c_dummy
        String
    tpncp.c_message_filter_enable  tpncp.c_message_filter_enable
        Unsigned 8-bit integer
    tpncp.c_notch_filter_enable  tpncp.c_notch_filter_enable
        Unsigned 8-bit integer
    tpncp.c_pci_geographical_address  tpncp.c_pci_geographical_address
        Signed 32-bit integer
    tpncp.c_pci_shelf_geographical_address  tpncp.c_pci_shelf_geographical_address
        Signed 32-bit integer
    tpncp.cadenced_ringing_type  tpncp.cadenced_ringing_type
        Signed 32-bit integer
    tpncp.call_direction  tpncp.call_direction
        Signed 32-bit integer
    tpncp.call_handle  tpncp.call_handle
        Signed 32-bit integer
    tpncp.call_identity  tpncp.call_identity
        String
    tpncp.call_progress_tone_generation_interface  tpncp.call_progress_tone_generation_interface
        Unsigned 8-bit integer
    tpncp.call_progress_tone_index  tpncp.call_progress_tone_index
        Signed 16-bit integer
    tpncp.call_state  tpncp.call_state
        Signed 32-bit integer
    tpncp.call_type  tpncp.call_type
        Unsigned 8-bit integer
    tpncp.called_line_identity  tpncp.called_line_identity
        String
    tpncp.caller_id_detection_result  tpncp.caller_id_detection_result
        Signed 32-bit integer
    tpncp.caller_id_generation_status  tpncp.caller_id_generation_status
        Signed 32-bit integer
    tpncp.caller_id_standard  tpncp.caller_id_standard
        Signed 32-bit integer
    tpncp.caller_id_transport_type  tpncp.caller_id_transport_type
        Unsigned 8-bit integer
    tpncp.caller_id_type  tpncp.caller_id_type
        Signed 32-bit integer
    tpncp.calling_answering  tpncp.calling_answering
        Signed 32-bit integer
    tpncp.cas_relay_mode  tpncp.cas_relay_mode
        Unsigned 8-bit integer
    tpncp.cas_relay_transport_mode  tpncp.cas_relay_transport_mode
        Unsigned 8-bit integer
    tpncp.cas_table_index  tpncp.cas_table_index
        Signed 32-bit integer
    tpncp.cas_table_name  tpncp.cas_table_name
        String
    tpncp.cas_table_name_length  tpncp.cas_table_name_length
        Signed 32-bit integer
    tpncp.cas_value  tpncp.cas_value
        Signed 32-bit integer
    tpncp.cas_value_0  tpncp.cas_value_0
        Signed 32-bit integer
    tpncp.cas_value_1  tpncp.cas_value_1
        Signed 32-bit integer
    tpncp.cas_value_10  tpncp.cas_value_10
        Signed 32-bit integer
    tpncp.cas_value_11  tpncp.cas_value_11
        Signed 32-bit integer
    tpncp.cas_value_12  tpncp.cas_value_12
        Signed 32-bit integer
    tpncp.cas_value_13  tpncp.cas_value_13
        Signed 32-bit integer
    tpncp.cas_value_14  tpncp.cas_value_14
        Signed 32-bit integer
    tpncp.cas_value_15  tpncp.cas_value_15
        Signed 32-bit integer
    tpncp.cas_value_16  tpncp.cas_value_16
        Signed 32-bit integer
    tpncp.cas_value_17  tpncp.cas_value_17
        Signed 32-bit integer
    tpncp.cas_value_18  tpncp.cas_value_18
        Signed 32-bit integer
    tpncp.cas_value_19  tpncp.cas_value_19
        Signed 32-bit integer
    tpncp.cas_value_2  tpncp.cas_value_2
        Signed 32-bit integer
    tpncp.cas_value_20  tpncp.cas_value_20
        Signed 32-bit integer
    tpncp.cas_value_21  tpncp.cas_value_21
        Signed 32-bit integer
    tpncp.cas_value_22  tpncp.cas_value_22
        Signed 32-bit integer
    tpncp.cas_value_23  tpncp.cas_value_23
        Signed 32-bit integer
    tpncp.cas_value_24  tpncp.cas_value_24
        Signed 32-bit integer
    tpncp.cas_value_25  tpncp.cas_value_25
        Signed 32-bit integer
    tpncp.cas_value_26  tpncp.cas_value_26
        Signed 32-bit integer
    tpncp.cas_value_27  tpncp.cas_value_27
        Signed 32-bit integer
    tpncp.cas_value_28  tpncp.cas_value_28
        Signed 32-bit integer
    tpncp.cas_value_29  tpncp.cas_value_29
        Signed 32-bit integer
    tpncp.cas_value_3  tpncp.cas_value_3
        Signed 32-bit integer
    tpncp.cas_value_30  tpncp.cas_value_30
        Signed 32-bit integer
    tpncp.cas_value_31  tpncp.cas_value_31
        Signed 32-bit integer
    tpncp.cas_value_32  tpncp.cas_value_32
        Signed 32-bit integer
    tpncp.cas_value_33  tpncp.cas_value_33
        Signed 32-bit integer
    tpncp.cas_value_34  tpncp.cas_value_34
        Signed 32-bit integer
    tpncp.cas_value_35  tpncp.cas_value_35
        Signed 32-bit integer
    tpncp.cas_value_36  tpncp.cas_value_36
        Signed 32-bit integer
    tpncp.cas_value_37  tpncp.cas_value_37
        Signed 32-bit integer
    tpncp.cas_value_38  tpncp.cas_value_38
        Signed 32-bit integer
    tpncp.cas_value_39  tpncp.cas_value_39
        Signed 32-bit integer
    tpncp.cas_value_4  tpncp.cas_value_4
        Signed 32-bit integer
    tpncp.cas_value_40  tpncp.cas_value_40
        Signed 32-bit integer
    tpncp.cas_value_41  tpncp.cas_value_41
        Signed 32-bit integer
    tpncp.cas_value_42  tpncp.cas_value_42
        Signed 32-bit integer
    tpncp.cas_value_43  tpncp.cas_value_43
        Signed 32-bit integer
    tpncp.cas_value_44  tpncp.cas_value_44
        Signed 32-bit integer
    tpncp.cas_value_45  tpncp.cas_value_45
        Signed 32-bit integer
    tpncp.cas_value_46  tpncp.cas_value_46
        Signed 32-bit integer
    tpncp.cas_value_47  tpncp.cas_value_47
        Signed 32-bit integer
    tpncp.cas_value_48  tpncp.cas_value_48
        Signed 32-bit integer
    tpncp.cas_value_49  tpncp.cas_value_49
        Signed 32-bit integer
    tpncp.cas_value_5  tpncp.cas_value_5
        Signed 32-bit integer
    tpncp.cas_value_6  tpncp.cas_value_6
        Signed 32-bit integer
    tpncp.cas_value_7  tpncp.cas_value_7
        Signed 32-bit integer
    tpncp.cas_value_8  tpncp.cas_value_8
        Signed 32-bit integer
    tpncp.cas_value_9  tpncp.cas_value_9
        Signed 32-bit integer
    tpncp.cause  tpncp.cause
        Signed 32-bit integer
    tpncp.ch_id  tpncp.ch_id
        Signed 32-bit integer
    tpncp.ch_number_0  tpncp.ch_number_0
        Signed 32-bit integer
    tpncp.ch_number_1  tpncp.ch_number_1
        Signed 32-bit integer
    tpncp.ch_number_10  tpncp.ch_number_10
        Signed 32-bit integer
    tpncp.ch_number_11  tpncp.ch_number_11
        Signed 32-bit integer
    tpncp.ch_number_12  tpncp.ch_number_12
        Signed 32-bit integer
    tpncp.ch_number_13  tpncp.ch_number_13
        Signed 32-bit integer
    tpncp.ch_number_14  tpncp.ch_number_14
        Signed 32-bit integer
    tpncp.ch_number_15  tpncp.ch_number_15
        Signed 32-bit integer
    tpncp.ch_number_16  tpncp.ch_number_16
        Signed 32-bit integer
    tpncp.ch_number_17  tpncp.ch_number_17
        Signed 32-bit integer
    tpncp.ch_number_18  tpncp.ch_number_18
        Signed 32-bit integer
    tpncp.ch_number_19  tpncp.ch_number_19
        Signed 32-bit integer
    tpncp.ch_number_2  tpncp.ch_number_2
        Signed 32-bit integer
    tpncp.ch_number_20  tpncp.ch_number_20
        Signed 32-bit integer
    tpncp.ch_number_21  tpncp.ch_number_21
        Signed 32-bit integer
    tpncp.ch_number_22  tpncp.ch_number_22
        Signed 32-bit integer
    tpncp.ch_number_23  tpncp.ch_number_23
        Signed 32-bit integer
    tpncp.ch_number_24  tpncp.ch_number_24
        Signed 32-bit integer
    tpncp.ch_number_25  tpncp.ch_number_25
        Signed 32-bit integer
    tpncp.ch_number_26  tpncp.ch_number_26
        Signed 32-bit integer
    tpncp.ch_number_27  tpncp.ch_number_27
        Signed 32-bit integer
    tpncp.ch_number_28  tpncp.ch_number_28
        Signed 32-bit integer
    tpncp.ch_number_29  tpncp.ch_number_29
        Signed 32-bit integer
    tpncp.ch_number_3  tpncp.ch_number_3
        Signed 32-bit integer
    tpncp.ch_number_30  tpncp.ch_number_30
        Signed 32-bit integer
    tpncp.ch_number_31  tpncp.ch_number_31
        Signed 32-bit integer
    tpncp.ch_number_4  tpncp.ch_number_4
        Signed 32-bit integer
    tpncp.ch_number_5  tpncp.ch_number_5
        Signed 32-bit integer
    tpncp.ch_number_6  tpncp.ch_number_6
        Signed 32-bit integer
    tpncp.ch_number_7  tpncp.ch_number_7
        Signed 32-bit integer
    tpncp.ch_number_8  tpncp.ch_number_8
        Signed 32-bit integer
    tpncp.ch_number_9  tpncp.ch_number_9
        Signed 32-bit integer
    tpncp.ch_status_0  tpncp.ch_status_0
        Signed 32-bit integer
    tpncp.ch_status_1  tpncp.ch_status_1
        Signed 32-bit integer
    tpncp.ch_status_10  tpncp.ch_status_10
        Signed 32-bit integer
    tpncp.ch_status_11  tpncp.ch_status_11
        Signed 32-bit integer
    tpncp.ch_status_12  tpncp.ch_status_12
        Signed 32-bit integer
    tpncp.ch_status_13  tpncp.ch_status_13
        Signed 32-bit integer
    tpncp.ch_status_14  tpncp.ch_status_14
        Signed 32-bit integer
    tpncp.ch_status_15  tpncp.ch_status_15
        Signed 32-bit integer
    tpncp.ch_status_16  tpncp.ch_status_16
        Signed 32-bit integer
    tpncp.ch_status_17  tpncp.ch_status_17
        Signed 32-bit integer
    tpncp.ch_status_18  tpncp.ch_status_18
        Signed 32-bit integer
    tpncp.ch_status_19  tpncp.ch_status_19
        Signed 32-bit integer
    tpncp.ch_status_2  tpncp.ch_status_2
        Signed 32-bit integer
    tpncp.ch_status_20  tpncp.ch_status_20
        Signed 32-bit integer
    tpncp.ch_status_21  tpncp.ch_status_21
        Signed 32-bit integer
    tpncp.ch_status_22  tpncp.ch_status_22
        Signed 32-bit integer
    tpncp.ch_status_23  tpncp.ch_status_23
        Signed 32-bit integer
    tpncp.ch_status_24  tpncp.ch_status_24
        Signed 32-bit integer
    tpncp.ch_status_25  tpncp.ch_status_25
        Signed 32-bit integer
    tpncp.ch_status_26  tpncp.ch_status_26
        Signed 32-bit integer
    tpncp.ch_status_27  tpncp.ch_status_27
        Signed 32-bit integer
    tpncp.ch_status_28  tpncp.ch_status_28
        Signed 32-bit integer
    tpncp.ch_status_29  tpncp.ch_status_29
        Signed 32-bit integer
    tpncp.ch_status_3  tpncp.ch_status_3
        Signed 32-bit integer
    tpncp.ch_status_30  tpncp.ch_status_30
        Signed 32-bit integer
    tpncp.ch_status_31  tpncp.ch_status_31
        Signed 32-bit integer
    tpncp.ch_status_4  tpncp.ch_status_4
        Signed 32-bit integer
    tpncp.ch_status_5  tpncp.ch_status_5
        Signed 32-bit integer
    tpncp.ch_status_6  tpncp.ch_status_6
        Signed 32-bit integer
    tpncp.ch_status_7  tpncp.ch_status_7
        Signed 32-bit integer
    tpncp.ch_status_8  tpncp.ch_status_8
        Signed 32-bit integer
    tpncp.ch_status_9  tpncp.ch_status_9
        Signed 32-bit integer
    tpncp.channel_count  tpncp.channel_count
        Signed 32-bit integer
    tpncp.channel_id  Channel ID
        Signed 32-bit integer
    tpncp.channel_id_0  tpncp.channel_id_0
        Unsigned 32-bit integer
    tpncp.channel_id_1  tpncp.channel_id_1
        Unsigned 32-bit integer
    tpncp.channel_id_2  tpncp.channel_id_2
        Unsigned 32-bit integer
    tpncp.check_sum_lsb  tpncp.check_sum_lsb
        Signed 32-bit integer
    tpncp.check_sum_msb  tpncp.check_sum_msb
        Signed 32-bit integer
    tpncp.chip_id1  tpncp.chip_id1
        Signed 32-bit integer
    tpncp.chip_id2  tpncp.chip_id2
        Signed 32-bit integer
    tpncp.chip_id3  tpncp.chip_id3
        Signed 32-bit integer
    tpncp.cid  tpncp.cid
        Signed 32-bit integer
    tpncp.cid_available  tpncp.cid_available
        Signed 32-bit integer
    tpncp.cid_list_0  tpncp.cid_list_0
        Signed 16-bit integer
    tpncp.cid_list_1  tpncp.cid_list_1
        Signed 16-bit integer
    tpncp.cid_list_10  tpncp.cid_list_10
        Signed 16-bit integer
    tpncp.cid_list_100  tpncp.cid_list_100
        Signed 16-bit integer
    tpncp.cid_list_101  tpncp.cid_list_101
        Signed 16-bit integer
    tpncp.cid_list_102  tpncp.cid_list_102
        Signed 16-bit integer
    tpncp.cid_list_103  tpncp.cid_list_103
        Signed 16-bit integer
    tpncp.cid_list_104  tpncp.cid_list_104
        Signed 16-bit integer
    tpncp.cid_list_105  tpncp.cid_list_105
        Signed 16-bit integer
    tpncp.cid_list_106  tpncp.cid_list_106
        Signed 16-bit integer
    tpncp.cid_list_107  tpncp.cid_list_107
        Signed 16-bit integer
    tpncp.cid_list_108  tpncp.cid_list_108
        Signed 16-bit integer
    tpncp.cid_list_109  tpncp.cid_list_109
        Signed 16-bit integer
    tpncp.cid_list_11  tpncp.cid_list_11
        Signed 16-bit integer
    tpncp.cid_list_110  tpncp.cid_list_110
        Signed 16-bit integer
    tpncp.cid_list_111  tpncp.cid_list_111
        Signed 16-bit integer
    tpncp.cid_list_112  tpncp.cid_list_112
        Signed 16-bit integer
    tpncp.cid_list_113  tpncp.cid_list_113
        Signed 16-bit integer
    tpncp.cid_list_114  tpncp.cid_list_114
        Signed 16-bit integer
    tpncp.cid_list_115  tpncp.cid_list_115
        Signed 16-bit integer
    tpncp.cid_list_116  tpncp.cid_list_116
        Signed 16-bit integer
    tpncp.cid_list_117  tpncp.cid_list_117
        Signed 16-bit integer
    tpncp.cid_list_118  tpncp.cid_list_118
        Signed 16-bit integer
    tpncp.cid_list_119  tpncp.cid_list_119
        Signed 16-bit integer
    tpncp.cid_list_12  tpncp.cid_list_12
        Signed 16-bit integer
    tpncp.cid_list_120  tpncp.cid_list_120
        Signed 16-bit integer
    tpncp.cid_list_121  tpncp.cid_list_121
        Signed 16-bit integer
    tpncp.cid_list_122  tpncp.cid_list_122
        Signed 16-bit integer
    tpncp.cid_list_123  tpncp.cid_list_123
        Signed 16-bit integer
    tpncp.cid_list_124  tpncp.cid_list_124
        Signed 16-bit integer
    tpncp.cid_list_125  tpncp.cid_list_125
        Signed 16-bit integer
    tpncp.cid_list_126  tpncp.cid_list_126
        Signed 16-bit integer
    tpncp.cid_list_127  tpncp.cid_list_127
        Signed 16-bit integer
    tpncp.cid_list_128  tpncp.cid_list_128
        Signed 16-bit integer
    tpncp.cid_list_129  tpncp.cid_list_129
        Signed 16-bit integer
    tpncp.cid_list_13  tpncp.cid_list_13
        Signed 16-bit integer
    tpncp.cid_list_130  tpncp.cid_list_130
        Signed 16-bit integer
    tpncp.cid_list_131  tpncp.cid_list_131
        Signed 16-bit integer
    tpncp.cid_list_132  tpncp.cid_list_132
        Signed 16-bit integer
    tpncp.cid_list_133  tpncp.cid_list_133
        Signed 16-bit integer
    tpncp.cid_list_134  tpncp.cid_list_134
        Signed 16-bit integer
    tpncp.cid_list_135  tpncp.cid_list_135
        Signed 16-bit integer
    tpncp.cid_list_136  tpncp.cid_list_136
        Signed 16-bit integer
    tpncp.cid_list_137  tpncp.cid_list_137
        Signed 16-bit integer
    tpncp.cid_list_138  tpncp.cid_list_138
        Signed 16-bit integer
    tpncp.cid_list_139  tpncp.cid_list_139
        Signed 16-bit integer
    tpncp.cid_list_14  tpncp.cid_list_14
        Signed 16-bit integer
    tpncp.cid_list_140  tpncp.cid_list_140
        Signed 16-bit integer
    tpncp.cid_list_141  tpncp.cid_list_141
        Signed 16-bit integer
    tpncp.cid_list_142  tpncp.cid_list_142
        Signed 16-bit integer
    tpncp.cid_list_143  tpncp.cid_list_143
        Signed 16-bit integer
    tpncp.cid_list_144  tpncp.cid_list_144
        Signed 16-bit integer
    tpncp.cid_list_145  tpncp.cid_list_145
        Signed 16-bit integer
    tpncp.cid_list_146  tpncp.cid_list_146
        Signed 16-bit integer
    tpncp.cid_list_147  tpncp.cid_list_147
        Signed 16-bit integer
    tpncp.cid_list_148  tpncp.cid_list_148
        Signed 16-bit integer
    tpncp.cid_list_149  tpncp.cid_list_149
        Signed 16-bit integer
    tpncp.cid_list_15  tpncp.cid_list_15
        Signed 16-bit integer
    tpncp.cid_list_150  tpncp.cid_list_150
        Signed 16-bit integer
    tpncp.cid_list_151  tpncp.cid_list_151
        Signed 16-bit integer
    tpncp.cid_list_152  tpncp.cid_list_152
        Signed 16-bit integer
    tpncp.cid_list_153  tpncp.cid_list_153
        Signed 16-bit integer
    tpncp.cid_list_154  tpncp.cid_list_154
        Signed 16-bit integer
    tpncp.cid_list_155  tpncp.cid_list_155
        Signed 16-bit integer
    tpncp.cid_list_156  tpncp.cid_list_156
        Signed 16-bit integer
    tpncp.cid_list_157  tpncp.cid_list_157
        Signed 16-bit integer
    tpncp.cid_list_158  tpncp.cid_list_158
        Signed 16-bit integer
    tpncp.cid_list_159  tpncp.cid_list_159
        Signed 16-bit integer
    tpncp.cid_list_16  tpncp.cid_list_16
        Signed 16-bit integer
    tpncp.cid_list_160  tpncp.cid_list_160
        Signed 16-bit integer
    tpncp.cid_list_161  tpncp.cid_list_161
        Signed 16-bit integer
    tpncp.cid_list_162  tpncp.cid_list_162
        Signed 16-bit integer
    tpncp.cid_list_163  tpncp.cid_list_163
        Signed 16-bit integer
    tpncp.cid_list_164  tpncp.cid_list_164
        Signed 16-bit integer
    tpncp.cid_list_165  tpncp.cid_list_165
        Signed 16-bit integer
    tpncp.cid_list_166  tpncp.cid_list_166
        Signed 16-bit integer
    tpncp.cid_list_167  tpncp.cid_list_167
        Signed 16-bit integer
    tpncp.cid_list_168  tpncp.cid_list_168
        Signed 16-bit integer
    tpncp.cid_list_169  tpncp.cid_list_169
        Signed 16-bit integer
    tpncp.cid_list_17  tpncp.cid_list_17
        Signed 16-bit integer
    tpncp.cid_list_170  tpncp.cid_list_170
        Signed 16-bit integer
    tpncp.cid_list_171  tpncp.cid_list_171
        Signed 16-bit integer
    tpncp.cid_list_172  tpncp.cid_list_172
        Signed 16-bit integer
    tpncp.cid_list_173  tpncp.cid_list_173
        Signed 16-bit integer
    tpncp.cid_list_174  tpncp.cid_list_174
        Signed 16-bit integer
    tpncp.cid_list_175  tpncp.cid_list_175
        Signed 16-bit integer
    tpncp.cid_list_176  tpncp.cid_list_176
        Signed 16-bit integer
    tpncp.cid_list_177  tpncp.cid_list_177
        Signed 16-bit integer
    tpncp.cid_list_178  tpncp.cid_list_178
        Signed 16-bit integer
    tpncp.cid_list_179  tpncp.cid_list_179
        Signed 16-bit integer
    tpncp.cid_list_18  tpncp.cid_list_18
        Signed 16-bit integer
    tpncp.cid_list_180  tpncp.cid_list_180
        Signed 16-bit integer
    tpncp.cid_list_181  tpncp.cid_list_181
        Signed 16-bit integer
    tpncp.cid_list_182  tpncp.cid_list_182
        Signed 16-bit integer
    tpncp.cid_list_183  tpncp.cid_list_183
        Signed 16-bit integer
    tpncp.cid_list_184  tpncp.cid_list_184
        Signed 16-bit integer
    tpncp.cid_list_185  tpncp.cid_list_185
        Signed 16-bit integer
    tpncp.cid_list_186  tpncp.cid_list_186
        Signed 16-bit integer
    tpncp.cid_list_187  tpncp.cid_list_187
        Signed 16-bit integer
    tpncp.cid_list_188  tpncp.cid_list_188
        Signed 16-bit integer
    tpncp.cid_list_189  tpncp.cid_list_189
        Signed 16-bit integer
    tpncp.cid_list_19  tpncp.cid_list_19
        Signed 16-bit integer
    tpncp.cid_list_190  tpncp.cid_list_190
        Signed 16-bit integer
    tpncp.cid_list_191  tpncp.cid_list_191
        Signed 16-bit integer
    tpncp.cid_list_192  tpncp.cid_list_192
        Signed 16-bit integer
    tpncp.cid_list_193  tpncp.cid_list_193
        Signed 16-bit integer
    tpncp.cid_list_194  tpncp.cid_list_194
        Signed 16-bit integer
    tpncp.cid_list_195  tpncp.cid_list_195
        Signed 16-bit integer
    tpncp.cid_list_196  tpncp.cid_list_196
        Signed 16-bit integer
    tpncp.cid_list_197  tpncp.cid_list_197
        Signed 16-bit integer
    tpncp.cid_list_198  tpncp.cid_list_198
        Signed 16-bit integer
    tpncp.cid_list_199  tpncp.cid_list_199
        Signed 16-bit integer
    tpncp.cid_list_2  tpncp.cid_list_2
        Signed 16-bit integer
    tpncp.cid_list_20  tpncp.cid_list_20
        Signed 16-bit integer
    tpncp.cid_list_200  tpncp.cid_list_200
        Signed 16-bit integer
    tpncp.cid_list_201  tpncp.cid_list_201
        Signed 16-bit integer
    tpncp.cid_list_202  tpncp.cid_list_202
        Signed 16-bit integer
    tpncp.cid_list_203  tpncp.cid_list_203
        Signed 16-bit integer
    tpncp.cid_list_204  tpncp.cid_list_204
        Signed 16-bit integer
    tpncp.cid_list_205  tpncp.cid_list_205
        Signed 16-bit integer
    tpncp.cid_list_206  tpncp.cid_list_206
        Signed 16-bit integer
    tpncp.cid_list_207  tpncp.cid_list_207
        Signed 16-bit integer
    tpncp.cid_list_208  tpncp.cid_list_208
        Signed 16-bit integer
    tpncp.cid_list_209  tpncp.cid_list_209
        Signed 16-bit integer
    tpncp.cid_list_21  tpncp.cid_list_21
        Signed 16-bit integer
    tpncp.cid_list_210  tpncp.cid_list_210
        Signed 16-bit integer
    tpncp.cid_list_211  tpncp.cid_list_211
        Signed 16-bit integer
    tpncp.cid_list_212  tpncp.cid_list_212
        Signed 16-bit integer
    tpncp.cid_list_213  tpncp.cid_list_213
        Signed 16-bit integer
    tpncp.cid_list_214  tpncp.cid_list_214
        Signed 16-bit integer
    tpncp.cid_list_215  tpncp.cid_list_215
        Signed 16-bit integer
    tpncp.cid_list_216  tpncp.cid_list_216
        Signed 16-bit integer
    tpncp.cid_list_217  tpncp.cid_list_217
        Signed 16-bit integer
    tpncp.cid_list_218  tpncp.cid_list_218
        Signed 16-bit integer
    tpncp.cid_list_219  tpncp.cid_list_219
        Signed 16-bit integer
    tpncp.cid_list_22  tpncp.cid_list_22
        Signed 16-bit integer
    tpncp.cid_list_220  tpncp.cid_list_220
        Signed 16-bit integer
    tpncp.cid_list_221  tpncp.cid_list_221
        Signed 16-bit integer
    tpncp.cid_list_222  tpncp.cid_list_222
        Signed 16-bit integer
    tpncp.cid_list_223  tpncp.cid_list_223
        Signed 16-bit integer
    tpncp.cid_list_224  tpncp.cid_list_224
        Signed 16-bit integer
    tpncp.cid_list_225  tpncp.cid_list_225
        Signed 16-bit integer
    tpncp.cid_list_226  tpncp.cid_list_226
        Signed 16-bit integer
    tpncp.cid_list_227  tpncp.cid_list_227
        Signed 16-bit integer
    tpncp.cid_list_228  tpncp.cid_list_228
        Signed 16-bit integer
    tpncp.cid_list_229  tpncp.cid_list_229
        Signed 16-bit integer
    tpncp.cid_list_23  tpncp.cid_list_23
        Signed 16-bit integer
    tpncp.cid_list_230  tpncp.cid_list_230
        Signed 16-bit integer
    tpncp.cid_list_231  tpncp.cid_list_231
        Signed 16-bit integer
    tpncp.cid_list_232  tpncp.cid_list_232
        Signed 16-bit integer
    tpncp.cid_list_233  tpncp.cid_list_233
        Signed 16-bit integer
    tpncp.cid_list_234  tpncp.cid_list_234
        Signed 16-bit integer
    tpncp.cid_list_235  tpncp.cid_list_235
        Signed 16-bit integer
    tpncp.cid_list_236  tpncp.cid_list_236
        Signed 16-bit integer
    tpncp.cid_list_237  tpncp.cid_list_237
        Signed 16-bit integer
    tpncp.cid_list_238  tpncp.cid_list_238
        Signed 16-bit integer
    tpncp.cid_list_239  tpncp.cid_list_239
        Signed 16-bit integer
    tpncp.cid_list_24  tpncp.cid_list_24
        Signed 16-bit integer
    tpncp.cid_list_240  tpncp.cid_list_240
        Signed 16-bit integer
    tpncp.cid_list_241  tpncp.cid_list_241
        Signed 16-bit integer
    tpncp.cid_list_242  tpncp.cid_list_242
        Signed 16-bit integer
    tpncp.cid_list_243  tpncp.cid_list_243
        Signed 16-bit integer
    tpncp.cid_list_244  tpncp.cid_list_244
        Signed 16-bit integer
    tpncp.cid_list_245  tpncp.cid_list_245
        Signed 16-bit integer
    tpncp.cid_list_246  tpncp.cid_list_246
        Signed 16-bit integer
    tpncp.cid_list_247  tpncp.cid_list_247
        Signed 16-bit integer
    tpncp.cid_list_25  tpncp.cid_list_25
        Signed 16-bit integer
    tpncp.cid_list_26  tpncp.cid_list_26
        Signed 16-bit integer
    tpncp.cid_list_27  tpncp.cid_list_27
        Signed 16-bit integer
    tpncp.cid_list_28  tpncp.cid_list_28
        Signed 16-bit integer
    tpncp.cid_list_29  tpncp.cid_list_29
        Signed 16-bit integer
    tpncp.cid_list_3  tpncp.cid_list_3
        Signed 16-bit integer
    tpncp.cid_list_30  tpncp.cid_list_30
        Signed 16-bit integer
    tpncp.cid_list_31  tpncp.cid_list_31
        Signed 16-bit integer
    tpncp.cid_list_32  tpncp.cid_list_32
        Signed 16-bit integer
    tpncp.cid_list_33  tpncp.cid_list_33
        Signed 16-bit integer
    tpncp.cid_list_34  tpncp.cid_list_34
        Signed 16-bit integer
    tpncp.cid_list_35  tpncp.cid_list_35
        Signed 16-bit integer
    tpncp.cid_list_36  tpncp.cid_list_36
        Signed 16-bit integer
    tpncp.cid_list_37  tpncp.cid_list_37
        Signed 16-bit integer
    tpncp.cid_list_38  tpncp.cid_list_38
        Signed 16-bit integer
    tpncp.cid_list_39  tpncp.cid_list_39
        Signed 16-bit integer
    tpncp.cid_list_4  tpncp.cid_list_4
        Signed 16-bit integer
    tpncp.cid_list_40  tpncp.cid_list_40
        Signed 16-bit integer
    tpncp.cid_list_41  tpncp.cid_list_41
        Signed 16-bit integer
    tpncp.cid_list_42  tpncp.cid_list_42
        Signed 16-bit integer
    tpncp.cid_list_43  tpncp.cid_list_43
        Signed 16-bit integer
    tpncp.cid_list_44  tpncp.cid_list_44
        Signed 16-bit integer
    tpncp.cid_list_45  tpncp.cid_list_45
        Signed 16-bit integer
    tpncp.cid_list_46  tpncp.cid_list_46
        Signed 16-bit integer
    tpncp.cid_list_47  tpncp.cid_list_47
        Signed 16-bit integer
    tpncp.cid_list_48  tpncp.cid_list_48
        Signed 16-bit integer
    tpncp.cid_list_49  tpncp.cid_list_49
        Signed 16-bit integer
    tpncp.cid_list_5  tpncp.cid_list_5
        Signed 16-bit integer
    tpncp.cid_list_50  tpncp.cid_list_50
        Signed 16-bit integer
    tpncp.cid_list_51  tpncp.cid_list_51
        Signed 16-bit integer
    tpncp.cid_list_52  tpncp.cid_list_52
        Signed 16-bit integer
    tpncp.cid_list_53  tpncp.cid_list_53
        Signed 16-bit integer
    tpncp.cid_list_54  tpncp.cid_list_54
        Signed 16-bit integer
    tpncp.cid_list_55  tpncp.cid_list_55
        Signed 16-bit integer
    tpncp.cid_list_56  tpncp.cid_list_56
        Signed 16-bit integer
    tpncp.cid_list_57  tpncp.cid_list_57
        Signed 16-bit integer
    tpncp.cid_list_58  tpncp.cid_list_58
        Signed 16-bit integer
    tpncp.cid_list_59  tpncp.cid_list_59
        Signed 16-bit integer
    tpncp.cid_list_6  tpncp.cid_list_6
        Signed 16-bit integer
    tpncp.cid_list_60  tpncp.cid_list_60
        Signed 16-bit integer
    tpncp.cid_list_61  tpncp.cid_list_61
        Signed 16-bit integer
    tpncp.cid_list_62  tpncp.cid_list_62
        Signed 16-bit integer
    tpncp.cid_list_63  tpncp.cid_list_63
        Signed 16-bit integer
    tpncp.cid_list_64  tpncp.cid_list_64
        Signed 16-bit integer
    tpncp.cid_list_65  tpncp.cid_list_65
        Signed 16-bit integer
    tpncp.cid_list_66  tpncp.cid_list_66
        Signed 16-bit integer
    tpncp.cid_list_67  tpncp.cid_list_67
        Signed 16-bit integer
    tpncp.cid_list_68  tpncp.cid_list_68
        Signed 16-bit integer
    tpncp.cid_list_69  tpncp.cid_list_69
        Signed 16-bit integer
    tpncp.cid_list_7  tpncp.cid_list_7
        Signed 16-bit integer
    tpncp.cid_list_70  tpncp.cid_list_70
        Signed 16-bit integer
    tpncp.cid_list_71  tpncp.cid_list_71
        Signed 16-bit integer
    tpncp.cid_list_72  tpncp.cid_list_72
        Signed 16-bit integer
    tpncp.cid_list_73  tpncp.cid_list_73
        Signed 16-bit integer
    tpncp.cid_list_74  tpncp.cid_list_74
        Signed 16-bit integer
    tpncp.cid_list_75  tpncp.cid_list_75
        Signed 16-bit integer
    tpncp.cid_list_76  tpncp.cid_list_76
        Signed 16-bit integer
    tpncp.cid_list_77  tpncp.cid_list_77
        Signed 16-bit integer
    tpncp.cid_list_78  tpncp.cid_list_78
        Signed 16-bit integer
    tpncp.cid_list_79  tpncp.cid_list_79
        Signed 16-bit integer
    tpncp.cid_list_8  tpncp.cid_list_8
        Signed 16-bit integer
    tpncp.cid_list_80  tpncp.cid_list_80
        Signed 16-bit integer
    tpncp.cid_list_81  tpncp.cid_list_81
        Signed 16-bit integer
    tpncp.cid_list_82  tpncp.cid_list_82
        Signed 16-bit integer
    tpncp.cid_list_83  tpncp.cid_list_83
        Signed 16-bit integer
    tpncp.cid_list_84  tpncp.cid_list_84
        Signed 16-bit integer
    tpncp.cid_list_85  tpncp.cid_list_85
        Signed 16-bit integer
    tpncp.cid_list_86  tpncp.cid_list_86
        Signed 16-bit integer
    tpncp.cid_list_87  tpncp.cid_list_87
        Signed 16-bit integer
    tpncp.cid_list_88  tpncp.cid_list_88
        Signed 16-bit integer
    tpncp.cid_list_89  tpncp.cid_list_89
        Signed 16-bit integer
    tpncp.cid_list_9  tpncp.cid_list_9
        Signed 16-bit integer
    tpncp.cid_list_90  tpncp.cid_list_90
        Signed 16-bit integer
    tpncp.cid_list_91  tpncp.cid_list_91
        Signed 16-bit integer
    tpncp.cid_list_92  tpncp.cid_list_92
        Signed 16-bit integer
    tpncp.cid_list_93  tpncp.cid_list_93
        Signed 16-bit integer
    tpncp.cid_list_94  tpncp.cid_list_94
        Signed 16-bit integer
    tpncp.cid_list_95  tpncp.cid_list_95
        Signed 16-bit integer
    tpncp.cid_list_96  tpncp.cid_list_96
        Signed 16-bit integer
    tpncp.cid_list_97  tpncp.cid_list_97
        Signed 16-bit integer
    tpncp.cid_list_98  tpncp.cid_list_98
        Signed 16-bit integer
    tpncp.cid_list_99  tpncp.cid_list_99
        Signed 16-bit integer
    tpncp.clear_digit_buffer  tpncp.clear_digit_buffer
        Signed 32-bit integer
    tpncp.clp  tpncp.clp
        Signed 32-bit integer
    tpncp.cmd_id  tpncp.cmd_id
        Signed 32-bit integer
    tpncp.cmd_rev_lsb  tpncp.cmd_rev_lsb
        Unsigned 8-bit integer
    tpncp.cmd_rev_msb  tpncp.cmd_rev_msb
        Unsigned 8-bit integer
    tpncp.cname  tpncp.cname
        String
    tpncp.cname_length  tpncp.cname_length
        Signed 32-bit integer
    tpncp.cng_detector_mode  tpncp.cng_detector_mode
        Unsigned 8-bit integer
    tpncp.coach_mode  tpncp.coach_mode
        Signed 32-bit integer
    tpncp.code  tpncp.code
        Signed 32-bit integer
    tpncp.code_violation_counter  tpncp.code_violation_counter
        Unsigned 16-bit integer
    tpncp.codec_validation  tpncp.codec_validation
        Signed 32-bit integer
    tpncp.coder  tpncp.coder
        Signed 32-bit integer
    tpncp.command_id  Command ID
        Unsigned 32-bit integer
    tpncp.command_line  tpncp.command_line
        String
    tpncp.command_line_length  tpncp.command_line_length
        Signed 32-bit integer
    tpncp.command_type  tpncp.command_type
        Signed 32-bit integer
    tpncp.comment  tpncp.comment
        Signed 32-bit integer
    tpncp.complementary_calling_line_identity  tpncp.complementary_calling_line_identity
        String
    tpncp.completion_method  tpncp.completion_method
        String
    tpncp.component_1_frequency  tpncp.component_1_frequency
        Signed 32-bit integer
    tpncp.component_1_tone_component_reserved  tpncp.component_1_tone_component_reserved
        String
    tpncp.concentrator_field_c1  tpncp.concentrator_field_c1
        Unsigned 8-bit integer
    tpncp.concentrator_field_c10  tpncp.concentrator_field_c10
        Unsigned 8-bit integer
    tpncp.concentrator_field_c11  tpncp.concentrator_field_c11
        Unsigned 8-bit integer
    tpncp.concentrator_field_c2  tpncp.concentrator_field_c2
        Unsigned 8-bit integer
    tpncp.concentrator_field_c3  tpncp.concentrator_field_c3
        Unsigned 8-bit integer
    tpncp.concentrator_field_c4  tpncp.concentrator_field_c4
        Unsigned 8-bit integer
    tpncp.concentrator_field_c5  tpncp.concentrator_field_c5
        Unsigned 8-bit integer
    tpncp.concentrator_field_c6  tpncp.concentrator_field_c6
        Unsigned 8-bit integer
    tpncp.concentrator_field_c7  tpncp.concentrator_field_c7
        Unsigned 8-bit integer
    tpncp.concentrator_field_c8  tpncp.concentrator_field_c8
        Unsigned 8-bit integer
    tpncp.concentrator_field_c9  tpncp.concentrator_field_c9
        Unsigned 8-bit integer
    tpncp.conference_handle  tpncp.conference_handle
        Signed 32-bit integer
    tpncp.conference_hosted_on_channel  tpncp.conference_hosted_on_channel
        Signed 32-bit integer
    tpncp.conference_id  tpncp.conference_id
        Signed 32-bit integer
    tpncp.conference_media_types  tpncp.conference_media_types
        Signed 32-bit integer
    tpncp.conference_participant_id  tpncp.conference_participant_id
        Signed 32-bit integer
    tpncp.conference_participant_source  tpncp.conference_participant_source
        Signed 32-bit integer
    tpncp.confidence_level  tpncp.confidence_level
        Unsigned 8-bit integer
    tpncp.confidence_threshold  tpncp.confidence_threshold
        Signed 32-bit integer
    tpncp.congestion  tpncp.congestion
        Signed 32-bit integer
    tpncp.congestion_level  tpncp.congestion_level
        Signed 32-bit integer
    tpncp.conn_id  tpncp.conn_id
        Signed 32-bit integer
    tpncp.conn_id_usage  tpncp.conn_id_usage
        String
    tpncp.connected  tpncp.connected
        Signed 32-bit integer
    tpncp.connection_establishment_notification_mode  tpncp.connection_establishment_notification_mode
        Signed 32-bit integer
    tpncp.control_gateway_address_0  tpncp.control_gateway_address_0
        Unsigned 32-bit integer
    tpncp.control_gateway_address_1  tpncp.control_gateway_address_1
        Unsigned 32-bit integer
    tpncp.control_gateway_address_2  tpncp.control_gateway_address_2
        Unsigned 32-bit integer
    tpncp.control_gateway_address_3  tpncp.control_gateway_address_3
        Unsigned 32-bit integer
    tpncp.control_gateway_address_4  tpncp.control_gateway_address_4
        Unsigned 32-bit integer
    tpncp.control_gateway_address_5  tpncp.control_gateway_address_5
        Unsigned 32-bit integer
    tpncp.control_ip_address_0  tpncp.control_ip_address_0
        Unsigned 32-bit integer
    tpncp.control_ip_address_1  tpncp.control_ip_address_1
        Unsigned 32-bit integer
    tpncp.control_ip_address_2  tpncp.control_ip_address_2
        Unsigned 32-bit integer
    tpncp.control_ip_address_3  tpncp.control_ip_address_3
        Unsigned 32-bit integer
    tpncp.control_ip_address_4  tpncp.control_ip_address_4
        Unsigned 32-bit integer
    tpncp.control_ip_address_5  tpncp.control_ip_address_5
        Unsigned 32-bit integer
    tpncp.control_packet_loss_counter  tpncp.control_packet_loss_counter
        Unsigned 32-bit integer
    tpncp.control_packets_max_retransmits  tpncp.control_packets_max_retransmits
        Unsigned 32-bit integer
    tpncp.control_subnet_mask_address_0  tpncp.control_subnet_mask_address_0
        Unsigned 32-bit integer
    tpncp.control_subnet_mask_address_1  tpncp.control_subnet_mask_address_1
        Unsigned 32-bit integer
    tpncp.control_subnet_mask_address_2  tpncp.control_subnet_mask_address_2
        Unsigned 32-bit integer
    tpncp.control_subnet_mask_address_3  tpncp.control_subnet_mask_address_3
        Unsigned 32-bit integer
    tpncp.control_subnet_mask_address_4  tpncp.control_subnet_mask_address_4
        Unsigned 32-bit integer
    tpncp.control_subnet_mask_address_5  tpncp.control_subnet_mask_address_5
        Unsigned 32-bit integer
    tpncp.control_type  tpncp.control_type
        Signed 32-bit integer
    tpncp.control_vlan_id_0  tpncp.control_vlan_id_0
        Unsigned 32-bit integer
    tpncp.control_vlan_id_1  tpncp.control_vlan_id_1
        Unsigned 32-bit integer
    tpncp.control_vlan_id_2  tpncp.control_vlan_id_2
        Unsigned 32-bit integer
    tpncp.control_vlan_id_3  tpncp.control_vlan_id_3
        Unsigned 32-bit integer
    tpncp.control_vlan_id_4  tpncp.control_vlan_id_4
        Unsigned 32-bit integer
    tpncp.control_vlan_id_5  tpncp.control_vlan_id_5
        Unsigned 32-bit integer
    tpncp.controlled_slip  tpncp.controlled_slip
        Signed 32-bit integer
    tpncp.controlled_slip_seconds  tpncp.controlled_slip_seconds
        Signed 32-bit integer
    tpncp.cps_timer_cu_duration  tpncp.cps_timer_cu_duration
        Signed 32-bit integer
    tpncp.cpspdu_threshold  tpncp.cpspdu_threshold
        Signed 32-bit integer
    tpncp.cpu_bus_speed  tpncp.cpu_bus_speed
        Signed 32-bit integer
    tpncp.cpu_speed  tpncp.cpu_speed
        Signed 32-bit integer
    tpncp.cpu_ver  tpncp.cpu_ver
        Signed 32-bit integer
    tpncp.crc_4_error  tpncp.crc_4_error
        Unsigned 16-bit integer
    tpncp.crc_error_counter  tpncp.crc_error_counter
        Unsigned 32-bit integer
    tpncp.crc_error_e_bit_counter  tpncp.crc_error_e_bit_counter
        Unsigned 16-bit integer
    tpncp.crc_error_received  tpncp.crc_error_received
        Signed 32-bit integer
    tpncp.crc_error_rx_counter  tpncp.crc_error_rx_counter
        Unsigned 16-bit integer
    tpncp.crcec  tpncp.crcec
        Unsigned 16-bit integer
    tpncp.cum_lost  tpncp.cum_lost
        Unsigned 32-bit integer
    tpncp.current_cas_value  tpncp.current_cas_value
        Signed 32-bit integer
    tpncp.current_chunk_len  tpncp.current_chunk_len
        Signed 32-bit integer
    tpncp.customer_key  tpncp.customer_key
        Unsigned 32-bit integer
    tpncp.customer_key_type  tpncp.customer_key_type
        Signed 32-bit integer
    tpncp.cypher_type  tpncp.cypher_type
        Unsigned 8-bit integer
    tpncp.data  tpncp.data
        String
    tpncp.data_buff  tpncp.data_buff
        String
    tpncp.data_length  tpncp.data_length
        Unsigned 16-bit integer
    tpncp.data_size  tpncp.data_size
        Signed 32-bit integer
    tpncp.data_tx_queue_size  tpncp.data_tx_queue_size
        Unsigned 16-bit integer
    tpncp.date  tpncp.date
        String
    tpncp.date_time_provider  tpncp.date_time_provider
        Signed 32-bit integer
    tpncp.day  tpncp.day
        Signed 32-bit integer
    tpncp.dbg_rec_filter_type_all  tpncp.dbg_rec_filter_type_all
        Unsigned 8-bit integer
    tpncp.dbg_rec_filter_type_cas  tpncp.dbg_rec_filter_type_cas
        Unsigned 8-bit integer
    tpncp.dbg_rec_filter_type_fax  tpncp.dbg_rec_filter_type_fax
        Unsigned 8-bit integer
    tpncp.dbg_rec_filter_type_ibs  tpncp.dbg_rec_filter_type_ibs
        Unsigned 8-bit integer
    tpncp.dbg_rec_filter_type_modem  tpncp.dbg_rec_filter_type_modem
        Unsigned 8-bit integer
    tpncp.dbg_rec_filter_type_rtcp  tpncp.dbg_rec_filter_type_rtcp
        Unsigned 8-bit integer
    tpncp.dbg_rec_filter_type_rtp  tpncp.dbg_rec_filter_type_rtp
        Unsigned 8-bit integer
    tpncp.dbg_rec_filter_type_voice  tpncp.dbg_rec_filter_type_voice
        Unsigned 8-bit integer
    tpncp.dbg_rec_trigger_type_cas  tpncp.dbg_rec_trigger_type_cas
        Unsigned 8-bit integer
    tpncp.dbg_rec_trigger_type_err  tpncp.dbg_rec_trigger_type_err
        Unsigned 8-bit integer
    tpncp.dbg_rec_trigger_type_fax  tpncp.dbg_rec_trigger_type_fax
        Unsigned 8-bit integer
    tpncp.dbg_rec_trigger_type_ibs  tpncp.dbg_rec_trigger_type_ibs
        Unsigned 8-bit integer
    tpncp.dbg_rec_trigger_type_modem  tpncp.dbg_rec_trigger_type_modem
        Unsigned 8-bit integer
    tpncp.dbg_rec_trigger_type_no_trigger  tpncp.dbg_rec_trigger_type_no_trigger
        Unsigned 8-bit integer
    tpncp.dbg_rec_trigger_type_padding  tpncp.dbg_rec_trigger_type_padding
        Unsigned 8-bit integer
    tpncp.dbg_rec_trigger_type_rtcp  tpncp.dbg_rec_trigger_type_rtcp
        Unsigned 8-bit integer
    tpncp.dbg_rec_trigger_type_silence  tpncp.dbg_rec_trigger_type_silence
        Unsigned 8-bit integer
    tpncp.dbg_rec_trigger_type_stop  tpncp.dbg_rec_trigger_type_stop
        Unsigned 8-bit integer
    tpncp.de_activation_option  tpncp.de_activation_option
        Unsigned 32-bit integer
    tpncp.deaf_participant_id  tpncp.deaf_participant_id
        Signed 32-bit integer
    tpncp.decoder_0  tpncp.decoder_0
        Signed 32-bit integer
    tpncp.decoder_1  tpncp.decoder_1
        Signed 32-bit integer
    tpncp.decoder_2  tpncp.decoder_2
        Signed 32-bit integer
    tpncp.decoder_3  tpncp.decoder_3
        Signed 32-bit integer
    tpncp.decoder_4  tpncp.decoder_4
        Signed 32-bit integer
    tpncp.def_gtwy_ip  tpncp.def_gtwy_ip
        Unsigned 32-bit integer
    tpncp.default_gateway_address  tpncp.default_gateway_address
        Unsigned 32-bit integer
    tpncp.degraded_minutes  tpncp.degraded_minutes
        Signed 32-bit integer
    tpncp.delivery_method  tpncp.delivery_method
        Signed 32-bit integer
    tpncp.dest_cid  tpncp.dest_cid
        Signed 32-bit integer
    tpncp.dest_end_point  tpncp.dest_end_point
        Signed 32-bit integer
    tpncp.dest_ip_addr  tpncp.dest_ip_addr
        Unsigned 32-bit integer
    tpncp.dest_number_plan  tpncp.dest_number_plan
        Signed 32-bit integer
    tpncp.dest_number_type  tpncp.dest_number_type
        Signed 32-bit integer
    tpncp.dest_phone_num  tpncp.dest_phone_num
        String
    tpncp.dest_phone_sub_num  tpncp.dest_phone_sub_num
        String
    tpncp.dest_rtp_udp_port  tpncp.dest_rtp_udp_port
        Unsigned 16-bit integer
    tpncp.dest_sub_address_format  tpncp.dest_sub_address_format
        Signed 32-bit integer
    tpncp.dest_sub_address_type  tpncp.dest_sub_address_type
        Signed 32-bit integer
    tpncp.destination_cid  tpncp.destination_cid
        Signed 32-bit integer
    tpncp.destination_direction  tpncp.destination_direction
        Signed 32-bit integer
    tpncp.destination_ip  tpncp.destination_ip
        Unsigned 32-bit integer
    tpncp.destination_seek_ip  tpncp.destination_seek_ip
        Unsigned 32-bit integer
    tpncp.detected_caller_id_standard  tpncp.detected_caller_id_standard
        Signed 32-bit integer
    tpncp.detected_caller_id_type  tpncp.detected_caller_id_type
        Signed 32-bit integer
    tpncp.detection_direction  tpncp.detection_direction
        Signed 32-bit integer
    tpncp.detection_direction_0  tpncp.detection_direction_0
        Signed 32-bit integer
    tpncp.detection_direction_1  tpncp.detection_direction_1
        Signed 32-bit integer
    tpncp.detection_direction_10  tpncp.detection_direction_10
        Signed 32-bit integer
    tpncp.detection_direction_11  tpncp.detection_direction_11
        Signed 32-bit integer
    tpncp.detection_direction_12  tpncp.detection_direction_12
        Signed 32-bit integer
    tpncp.detection_direction_13  tpncp.detection_direction_13
        Signed 32-bit integer
    tpncp.detection_direction_14  tpncp.detection_direction_14
        Signed 32-bit integer
    tpncp.detection_direction_15  tpncp.detection_direction_15
        Signed 32-bit integer
    tpncp.detection_direction_16  tpncp.detection_direction_16
        Signed 32-bit integer
    tpncp.detection_direction_17  tpncp.detection_direction_17
        Signed 32-bit integer
    tpncp.detection_direction_18  tpncp.detection_direction_18
        Signed 32-bit integer
    tpncp.detection_direction_19  tpncp.detection_direction_19
        Signed 32-bit integer
    tpncp.detection_direction_2  tpncp.detection_direction_2
        Signed 32-bit integer
    tpncp.detection_direction_20  tpncp.detection_direction_20
        Signed 32-bit integer
    tpncp.detection_direction_21  tpncp.detection_direction_21
        Signed 32-bit integer
    tpncp.detection_direction_22  tpncp.detection_direction_22
        Signed 32-bit integer
    tpncp.detection_direction_23  tpncp.detection_direction_23
        Signed 32-bit integer
    tpncp.detection_direction_24  tpncp.detection_direction_24
        Signed 32-bit integer
    tpncp.detection_direction_25  tpncp.detection_direction_25
        Signed 32-bit integer
    tpncp.detection_direction_26  tpncp.detection_direction_26
        Signed 32-bit integer
    tpncp.detection_direction_27  tpncp.detection_direction_27
        Signed 32-bit integer
    tpncp.detection_direction_28  tpncp.detection_direction_28
        Signed 32-bit integer
    tpncp.detection_direction_29  tpncp.detection_direction_29
        Signed 32-bit integer
    tpncp.detection_direction_3  tpncp.detection_direction_3
        Signed 32-bit integer
    tpncp.detection_direction_30  tpncp.detection_direction_30
        Signed 32-bit integer
    tpncp.detection_direction_31  tpncp.detection_direction_31
        Signed 32-bit integer
    tpncp.detection_direction_32  tpncp.detection_direction_32
        Signed 32-bit integer
    tpncp.detection_direction_33  tpncp.detection_direction_33
        Signed 32-bit integer
    tpncp.detection_direction_34  tpncp.detection_direction_34
        Signed 32-bit integer
    tpncp.detection_direction_35  tpncp.detection_direction_35
        Signed 32-bit integer
    tpncp.detection_direction_36  tpncp.detection_direction_36
        Signed 32-bit integer
    tpncp.detection_direction_37  tpncp.detection_direction_37
        Signed 32-bit integer
    tpncp.detection_direction_38  tpncp.detection_direction_38
        Signed 32-bit integer
    tpncp.detection_direction_39  tpncp.detection_direction_39
        Signed 32-bit integer
    tpncp.detection_direction_4  tpncp.detection_direction_4
        Signed 32-bit integer
    tpncp.detection_direction_5  tpncp.detection_direction_5
        Signed 32-bit integer
    tpncp.detection_direction_6  tpncp.detection_direction_6
        Signed 32-bit integer
    tpncp.detection_direction_7  tpncp.detection_direction_7
        Signed 32-bit integer
    tpncp.detection_direction_8  tpncp.detection_direction_8
        Signed 32-bit integer
    tpncp.detection_direction_9  tpncp.detection_direction_9
        Signed 32-bit integer
    tpncp.device_id  tpncp.device_id
        Signed 32-bit integer
    tpncp.diagnostic  tpncp.diagnostic
        String
    tpncp.dial_string  tpncp.dial_string
        String
    tpncp.dial_timing  tpncp.dial_timing
        Unsigned 8-bit integer
    tpncp.digit_0  tpncp.digit_0
        Signed 32-bit integer
    tpncp.digit_1  tpncp.digit_1
        Signed 32-bit integer
    tpncp.digit_10  tpncp.digit_10
        Signed 32-bit integer
    tpncp.digit_11  tpncp.digit_11
        Signed 32-bit integer
    tpncp.digit_12  tpncp.digit_12
        Signed 32-bit integer
    tpncp.digit_13  tpncp.digit_13
        Signed 32-bit integer
    tpncp.digit_14  tpncp.digit_14
        Signed 32-bit integer
    tpncp.digit_15  tpncp.digit_15
        Signed 32-bit integer
    tpncp.digit_16  tpncp.digit_16
        Signed 32-bit integer
    tpncp.digit_17  tpncp.digit_17
        Signed 32-bit integer
    tpncp.digit_18  tpncp.digit_18
        Signed 32-bit integer
    tpncp.digit_19  tpncp.digit_19
        Signed 32-bit integer
    tpncp.digit_2  tpncp.digit_2
        Signed 32-bit integer
    tpncp.digit_20  tpncp.digit_20
        Signed 32-bit integer
    tpncp.digit_21  tpncp.digit_21
        Signed 32-bit integer
    tpncp.digit_22  tpncp.digit_22
        Signed 32-bit integer
    tpncp.digit_23  tpncp.digit_23
        Signed 32-bit integer
    tpncp.digit_24  tpncp.digit_24
        Signed 32-bit integer
    tpncp.digit_25  tpncp.digit_25
        Signed 32-bit integer
    tpncp.digit_26  tpncp.digit_26
        Signed 32-bit integer
    tpncp.digit_27  tpncp.digit_27
        Signed 32-bit integer
    tpncp.digit_28  tpncp.digit_28
        Signed 32-bit integer
    tpncp.digit_29  tpncp.digit_29
        Signed 32-bit integer
    tpncp.digit_3  tpncp.digit_3
        Signed 32-bit integer
    tpncp.digit_30  tpncp.digit_30
        Signed 32-bit integer
    tpncp.digit_31  tpncp.digit_31
        Signed 32-bit integer
    tpncp.digit_32  tpncp.digit_32
        Signed 32-bit integer
    tpncp.digit_33  tpncp.digit_33
        Signed 32-bit integer
    tpncp.digit_34  tpncp.digit_34
        Signed 32-bit integer
    tpncp.digit_35  tpncp.digit_35
        Signed 32-bit integer
    tpncp.digit_36  tpncp.digit_36
        Signed 32-bit integer
    tpncp.digit_37  tpncp.digit_37
        Signed 32-bit integer
    tpncp.digit_38  tpncp.digit_38
        Signed 32-bit integer
    tpncp.digit_39  tpncp.digit_39
        Signed 32-bit integer
    tpncp.digit_4  tpncp.digit_4
        Signed 32-bit integer
    tpncp.digit_5  tpncp.digit_5
        Signed 32-bit integer
    tpncp.digit_6  tpncp.digit_6
        Signed 32-bit integer
    tpncp.digit_7  tpncp.digit_7
        Signed 32-bit integer
    tpncp.digit_8  tpncp.digit_8
        Signed 32-bit integer
    tpncp.digit_9  tpncp.digit_9
        Signed 32-bit integer
    tpncp.digit_ack_req_ind  tpncp.digit_ack_req_ind
        Signed 32-bit integer
    tpncp.digit_information  tpncp.digit_information
        Signed 32-bit integer
    tpncp.digit_map  tpncp.digit_map
        String
    tpncp.digit_map_style  tpncp.digit_map_style
        Signed 32-bit integer
    tpncp.digit_on_time_0  tpncp.digit_on_time_0
        Signed 32-bit integer
    tpncp.digit_on_time_1  tpncp.digit_on_time_1
        Signed 32-bit integer
    tpncp.digit_on_time_10  tpncp.digit_on_time_10
        Signed 32-bit integer
    tpncp.digit_on_time_11  tpncp.digit_on_time_11
        Signed 32-bit integer
    tpncp.digit_on_time_12  tpncp.digit_on_time_12
        Signed 32-bit integer
    tpncp.digit_on_time_13  tpncp.digit_on_time_13
        Signed 32-bit integer
    tpncp.digit_on_time_14  tpncp.digit_on_time_14
        Signed 32-bit integer
    tpncp.digit_on_time_15  tpncp.digit_on_time_15
        Signed 32-bit integer
    tpncp.digit_on_time_16  tpncp.digit_on_time_16
        Signed 32-bit integer
    tpncp.digit_on_time_17  tpncp.digit_on_time_17
        Signed 32-bit integer
    tpncp.digit_on_time_18  tpncp.digit_on_time_18
        Signed 32-bit integer
    tpncp.digit_on_time_19  tpncp.digit_on_time_19
        Signed 32-bit integer
    tpncp.digit_on_time_2  tpncp.digit_on_time_2
        Signed 32-bit integer
    tpncp.digit_on_time_20  tpncp.digit_on_time_20
        Signed 32-bit integer
    tpncp.digit_on_time_21  tpncp.digit_on_time_21
        Signed 32-bit integer
    tpncp.digit_on_time_22  tpncp.digit_on_time_22
        Signed 32-bit integer
    tpncp.digit_on_time_23  tpncp.digit_on_time_23
        Signed 32-bit integer
    tpncp.digit_on_time_24  tpncp.digit_on_time_24
        Signed 32-bit integer
    tpncp.digit_on_time_25  tpncp.digit_on_time_25
        Signed 32-bit integer
    tpncp.digit_on_time_26  tpncp.digit_on_time_26
        Signed 32-bit integer
    tpncp.digit_on_time_27  tpncp.digit_on_time_27
        Signed 32-bit integer
    tpncp.digit_on_time_28  tpncp.digit_on_time_28
        Signed 32-bit integer
    tpncp.digit_on_time_29  tpncp.digit_on_time_29
        Signed 32-bit integer
    tpncp.digit_on_time_3  tpncp.digit_on_time_3
        Signed 32-bit integer
    tpncp.digit_on_time_30  tpncp.digit_on_time_30
        Signed 32-bit integer
    tpncp.digit_on_time_31  tpncp.digit_on_time_31
        Signed 32-bit integer
    tpncp.digit_on_time_32  tpncp.digit_on_time_32
        Signed 32-bit integer
    tpncp.digit_on_time_33  tpncp.digit_on_time_33
        Signed 32-bit integer
    tpncp.digit_on_time_34  tpncp.digit_on_time_34
        Signed 32-bit integer
    tpncp.digit_on_time_35  tpncp.digit_on_time_35
        Signed 32-bit integer
    tpncp.digit_on_time_36  tpncp.digit_on_time_36
        Signed 32-bit integer
    tpncp.digit_on_time_37  tpncp.digit_on_time_37
        Signed 32-bit integer
    tpncp.digit_on_time_38  tpncp.digit_on_time_38
        Signed 32-bit integer
    tpncp.digit_on_time_39  tpncp.digit_on_time_39
        Signed 32-bit integer
    tpncp.digit_on_time_4  tpncp.digit_on_time_4
        Signed 32-bit integer
    tpncp.digit_on_time_5  tpncp.digit_on_time_5
        Signed 32-bit integer
    tpncp.digit_on_time_6  tpncp.digit_on_time_6
        Signed 32-bit integer
    tpncp.digit_on_time_7  tpncp.digit_on_time_7
        Signed 32-bit integer
    tpncp.digit_on_time_8  tpncp.digit_on_time_8
        Signed 32-bit integer
    tpncp.digit_on_time_9  tpncp.digit_on_time_9
        Signed 32-bit integer
    tpncp.digits_collected  tpncp.digits_collected
        String
    tpncp.direction  tpncp.direction
        Unsigned 8-bit integer
    tpncp.disable_first_incoming_packet_detection  tpncp.disable_first_incoming_packet_detection
        Unsigned 8-bit integer
    tpncp.disable_rtcp_interval_randomization  tpncp.disable_rtcp_interval_randomization
        Unsigned 8-bit integer
    tpncp.disable_soft_ip_loopback  tpncp.disable_soft_ip_loopback
        Unsigned 8-bit integer
    tpncp.discard_rate  tpncp.discard_rate
        Unsigned 8-bit integer
    tpncp.disfc  tpncp.disfc
        Unsigned 16-bit integer
    tpncp.display_size  tpncp.display_size
        Signed 32-bit integer
    tpncp.display_string  tpncp.display_string
        String
    tpncp.dj_buf_min_delay  tpncp.dj_buf_min_delay
        Signed 32-bit integer
    tpncp.dj_buf_opt_factor  tpncp.dj_buf_opt_factor
        Signed 32-bit integer
    tpncp.dns_resolved  tpncp.dns_resolved
        Signed 32-bit integer
    tpncp.do_not_use_defaults_with_ini  tpncp.do_not_use_defaults_with_ini
        Signed 32-bit integer
    tpncp.dpc  tpncp.dpc
        Unsigned 32-bit integer
    tpncp.dpnss_mode  tpncp.dpnss_mode
        Unsigned 8-bit integer
    tpncp.dpnss_receive_timeout  tpncp.dpnss_receive_timeout
        Unsigned 8-bit integer
    tpncp.dpr_bit_return_code  tpncp.dpr_bit_return_code
        Signed 32-bit integer
    tpncp.ds3_admin_state  tpncp.ds3_admin_state
        Signed 32-bit integer
    tpncp.ds3_clock_source  tpncp.ds3_clock_source
        Signed 32-bit integer
    tpncp.ds3_framing_method  tpncp.ds3_framing_method
        Signed 32-bit integer
    tpncp.ds3_id  tpncp.ds3_id
        Signed 32-bit integer
    tpncp.ds3_interface  tpncp.ds3_interface
        Signed 32-bit integer
    tpncp.ds3_line_built_out  tpncp.ds3_line_built_out
        Signed 32-bit integer
    tpncp.ds3_line_status_bit_field  tpncp.ds3_line_status_bit_field
        Signed 32-bit integer
    tpncp.ds3_performance_monitoring_state  tpncp.ds3_performance_monitoring_state
        Signed 32-bit integer
    tpncp.ds3_section  tpncp.ds3_section
        Signed 32-bit integer
    tpncp.ds3_tapping_enable  tpncp.ds3_tapping_enable
        Signed 32-bit integer
    tpncp.dsp_bit_return_code_0  tpncp.dsp_bit_return_code_0
        Signed 32-bit integer
    tpncp.dsp_bit_return_code_1  tpncp.dsp_bit_return_code_1
        Signed 32-bit integer
    tpncp.dsp_boot_kernel_date  tpncp.dsp_boot_kernel_date
        Signed 32-bit integer
    tpncp.dsp_boot_kernel_ver  tpncp.dsp_boot_kernel_ver
        Signed 32-bit integer
    tpncp.dsp_count  tpncp.dsp_count
        Signed 32-bit integer
    tpncp.dsp_software_date  tpncp.dsp_software_date
        Signed 32-bit integer
    tpncp.dsp_software_name  tpncp.dsp_software_name
        String
    tpncp.dsp_software_ver  tpncp.dsp_software_ver
        Signed 32-bit integer
    tpncp.dsp_type  tpncp.dsp_type
        Signed 32-bit integer
    tpncp.dsp_version_template_count  tpncp.dsp_version_template_count
        Signed 32-bit integer
    tpncp.dtmf_barge_in_digit_mask  tpncp.dtmf_barge_in_digit_mask
        Unsigned 32-bit integer
    tpncp.dtmf_transport_type  tpncp.dtmf_transport_type
        Unsigned 8-bit integer
    tpncp.dtmf_volume  tpncp.dtmf_volume
        Signed 32-bit integer
    tpncp.dual_use  tpncp.dual_use
        Signed 32-bit integer
    tpncp.dummy  tpncp.dummy
        Unsigned 16-bit integer
    tpncp.dummy_0  tpncp.dummy_0
        Signed 32-bit integer
    tpncp.dummy_1  tpncp.dummy_1
        Signed 32-bit integer
    tpncp.dummy_2  tpncp.dummy_2
        Signed 32-bit integer
    tpncp.dummy_3  tpncp.dummy_3
        Signed 32-bit integer
    tpncp.dummy_4  tpncp.dummy_4
        Signed 32-bit integer
    tpncp.dummy_5  tpncp.dummy_5
        Signed 32-bit integer
    tpncp.duplex_mode  tpncp.duplex_mode
        Signed 32-bit integer
    tpncp.duplicated  tpncp.duplicated
        Unsigned 32-bit integer
    tpncp.duration  tpncp.duration
        Signed 32-bit integer
    tpncp.duration_0  tpncp.duration_0
        Signed 32-bit integer
    tpncp.duration_1  tpncp.duration_1
        Signed 32-bit integer
    tpncp.duration_10  tpncp.duration_10
        Signed 32-bit integer
    tpncp.duration_11  tpncp.duration_11
        Signed 32-bit integer
    tpncp.duration_12  tpncp.duration_12
        Signed 32-bit integer
    tpncp.duration_13  tpncp.duration_13
        Signed 32-bit integer
    tpncp.duration_14  tpncp.duration_14
        Signed 32-bit integer
    tpncp.duration_15  tpncp.duration_15
        Signed 32-bit integer
    tpncp.duration_16  tpncp.duration_16
        Signed 32-bit integer
    tpncp.duration_17  tpncp.duration_17
        Signed 32-bit integer
    tpncp.duration_18  tpncp.duration_18
        Signed 32-bit integer
    tpncp.duration_19  tpncp.duration_19
        Signed 32-bit integer
    tpncp.duration_2  tpncp.duration_2
        Signed 32-bit integer
    tpncp.duration_20  tpncp.duration_20
        Signed 32-bit integer
    tpncp.duration_21  tpncp.duration_21
        Signed 32-bit integer
    tpncp.duration_22  tpncp.duration_22
        Signed 32-bit integer
    tpncp.duration_23  tpncp.duration_23
        Signed 32-bit integer
    tpncp.duration_24  tpncp.duration_24
        Signed 32-bit integer
    tpncp.duration_25  tpncp.duration_25
        Signed 32-bit integer
    tpncp.duration_26  tpncp.duration_26
        Signed 32-bit integer
    tpncp.duration_27  tpncp.duration_27
        Signed 32-bit integer
    tpncp.duration_28  tpncp.duration_28
        Signed 32-bit integer
    tpncp.duration_29  tpncp.duration_29
        Signed 32-bit integer
    tpncp.duration_3  tpncp.duration_3
        Signed 32-bit integer
    tpncp.duration_30  tpncp.duration_30
        Signed 32-bit integer
    tpncp.duration_31  tpncp.duration_31
        Signed 32-bit integer
    tpncp.duration_32  tpncp.duration_32
        Signed 32-bit integer
    tpncp.duration_33  tpncp.duration_33
        Signed 32-bit integer
    tpncp.duration_34  tpncp.duration_34
        Signed 32-bit integer
    tpncp.duration_35  tpncp.duration_35
        Signed 32-bit integer
    tpncp.duration_4  tpncp.duration_4
        Signed 32-bit integer
    tpncp.duration_5  tpncp.duration_5
        Signed 32-bit integer
    tpncp.duration_6  tpncp.duration_6
        Signed 32-bit integer
    tpncp.duration_7  tpncp.duration_7
        Signed 32-bit integer
    tpncp.duration_8  tpncp.duration_8
        Signed 32-bit integer
    tpncp.duration_9  tpncp.duration_9
        Signed 32-bit integer
    tpncp.e_bit_error_detected  tpncp.e_bit_error_detected
        Signed 32-bit integer
    tpncp.ec  tpncp.ec
        Signed 32-bit integer
    tpncp.ec_freeze  tpncp.ec_freeze
        Unsigned 8-bit integer
    tpncp.ec_hybrid_loss  tpncp.ec_hybrid_loss
        Unsigned 8-bit integer
    tpncp.ec_length  tpncp.ec_length
        Unsigned 8-bit integer
    tpncp.ec_nlp_mode  tpncp.ec_nlp_mode
        Unsigned 8-bit integer
    tpncp.ece  tpncp.ece
        Unsigned 8-bit integer
    tpncp.element_id_0  tpncp.element_id_0
        Signed 32-bit integer
    tpncp.element_id_1  tpncp.element_id_1
        Signed 32-bit integer
    tpncp.element_id_10  tpncp.element_id_10
        Signed 32-bit integer
    tpncp.element_id_11  tpncp.element_id_11
        Signed 32-bit integer
    tpncp.element_id_12  tpncp.element_id_12
        Signed 32-bit integer
    tpncp.element_id_13  tpncp.element_id_13
        Signed 32-bit integer
    tpncp.element_id_14  tpncp.element_id_14
        Signed 32-bit integer
    tpncp.element_id_15  tpncp.element_id_15
        Signed 32-bit integer
    tpncp.element_id_16  tpncp.element_id_16
        Signed 32-bit integer
    tpncp.element_id_17  tpncp.element_id_17
        Signed 32-bit integer
    tpncp.element_id_18  tpncp.element_id_18
        Signed 32-bit integer
    tpncp.element_id_19  tpncp.element_id_19
        Signed 32-bit integer
    tpncp.element_id_2  tpncp.element_id_2
        Signed 32-bit integer
    tpncp.element_id_20  tpncp.element_id_20
        Signed 32-bit integer
    tpncp.element_id_21  tpncp.element_id_21
        Signed 32-bit integer
    tpncp.element_id_3  tpncp.element_id_3
        Signed 32-bit integer
    tpncp.element_id_4  tpncp.element_id_4
        Signed 32-bit integer
    tpncp.element_id_5  tpncp.element_id_5
        Signed 32-bit integer
    tpncp.element_id_6  tpncp.element_id_6
        Signed 32-bit integer
    tpncp.element_id_7  tpncp.element_id_7
        Signed 32-bit integer
    tpncp.element_id_8  tpncp.element_id_8
        Signed 32-bit integer
    tpncp.element_id_9  tpncp.element_id_9
        Signed 32-bit integer
    tpncp.element_status_0  tpncp.element_status_0
        Signed 32-bit integer
    tpncp.element_status_1  tpncp.element_status_1
        Signed 32-bit integer
    tpncp.element_status_10  tpncp.element_status_10
        Signed 32-bit integer
    tpncp.element_status_11  tpncp.element_status_11
        Signed 32-bit integer
    tpncp.element_status_12  tpncp.element_status_12
        Signed 32-bit integer
    tpncp.element_status_13  tpncp.element_status_13
        Signed 32-bit integer
    tpncp.element_status_14  tpncp.element_status_14
        Signed 32-bit integer
    tpncp.element_status_15  tpncp.element_status_15
        Signed 32-bit integer
    tpncp.element_status_16  tpncp.element_status_16
        Signed 32-bit integer
    tpncp.element_status_17  tpncp.element_status_17
        Signed 32-bit integer
    tpncp.element_status_18  tpncp.element_status_18
        Signed 32-bit integer
    tpncp.element_status_19  tpncp.element_status_19
        Signed 32-bit integer
    tpncp.element_status_2  tpncp.element_status_2
        Signed 32-bit integer
    tpncp.element_status_20  tpncp.element_status_20
        Signed 32-bit integer
    tpncp.element_status_21  tpncp.element_status_21
        Signed 32-bit integer
    tpncp.element_status_3  tpncp.element_status_3
        Signed 32-bit integer
    tpncp.element_status_4  tpncp.element_status_4
        Signed 32-bit integer
    tpncp.element_status_5  tpncp.element_status_5
        Signed 32-bit integer
    tpncp.element_status_6  tpncp.element_status_6
        Signed 32-bit integer
    tpncp.element_status_7  tpncp.element_status_7
        Signed 32-bit integer
    tpncp.element_status_8  tpncp.element_status_8
        Signed 32-bit integer
    tpncp.element_status_9  tpncp.element_status_9
        Signed 32-bit integer
    tpncp.emergency_call_calling_geodetic_location_information  tpncp.emergency_call_calling_geodetic_location_information
        String
    tpncp.emergency_call_calling_geodetic_location_information_size  tpncp.emergency_call_calling_geodetic_location_information_size
        Signed 32-bit integer
    tpncp.emergency_call_coding_standard  tpncp.emergency_call_coding_standard
        Signed 32-bit integer
    tpncp.emergency_call_control_information_display  tpncp.emergency_call_control_information_display
        Signed 32-bit integer
    tpncp.emergency_call_location_identification_number  tpncp.emergency_call_location_identification_number
        String
    tpncp.emergency_call_location_identification_number_size  tpncp.emergency_call_location_identification_number_size
        Signed 32-bit integer
    tpncp.enable_ec_comfort_noise_generation  tpncp.enable_ec_comfort_noise_generation
        Unsigned 8-bit integer
    tpncp.enable_ec_tone_detector  tpncp.enable_ec_tone_detector
        Unsigned 8-bit integer
    tpncp.enable_evrc_smart_blanking  tpncp.enable_evrc_smart_blanking
        Unsigned 8-bit integer
    tpncp.enable_fax_modem_inband_network_detection  tpncp.enable_fax_modem_inband_network_detection
        Unsigned 8-bit integer
    tpncp.enable_fiber_link  tpncp.enable_fiber_link
        Signed 32-bit integer
    tpncp.enable_filter  tpncp.enable_filter
        Unsigned 8-bit integer
    tpncp.enable_loop  tpncp.enable_loop
        Signed 32-bit integer
    tpncp.enable_metering_pulse_duration_type  tpncp.enable_metering_pulse_duration_type
        Signed 32-bit integer
    tpncp.enable_metering_pulse_type  tpncp.enable_metering_pulse_type
        Signed 32-bit integer
    tpncp.enable_metering_suppression_indicator  tpncp.enable_metering_suppression_indicator
        Signed 32-bit integer
    tpncp.enable_network_cas_event  tpncp.enable_network_cas_event
        Unsigned 8-bit integer
    tpncp.enable_noise_reduction  tpncp.enable_noise_reduction
        Unsigned 8-bit integer
    tpncp.enabled_features  tpncp.enabled_features
        String
    tpncp.end_dial_key  tpncp.end_dial_key
        Unsigned 8-bit integer
    tpncp.end_dial_with_hash_mark  tpncp.end_dial_with_hash_mark
        Signed 32-bit integer
    tpncp.end_end_key  tpncp.end_end_key
        String
    tpncp.end_event  tpncp.end_event
        Signed 32-bit integer
    tpncp.end_system_delay  tpncp.end_system_delay
        Unsigned 16-bit integer
    tpncp.energy_detector_cmd  tpncp.energy_detector_cmd
        Signed 32-bit integer
    tpncp.enhanced_fax_relay_redundancy_depth  tpncp.enhanced_fax_relay_redundancy_depth
        Unsigned 8-bit integer
    tpncp.erroneous_block_counter  tpncp.erroneous_block_counter
        Unsigned 16-bit integer
    tpncp.error_cause  tpncp.error_cause
        Signed 32-bit integer
    tpncp.error_code  tpncp.error_code
        Signed 32-bit integer
    tpncp.error_counter_0  tpncp.error_counter_0
        Unsigned 16-bit integer
    tpncp.error_counter_1  tpncp.error_counter_1
        Unsigned 16-bit integer
    tpncp.error_counter_10  tpncp.error_counter_10
        Unsigned 16-bit integer
    tpncp.error_counter_11  tpncp.error_counter_11
        Unsigned 16-bit integer
    tpncp.error_counter_12  tpncp.error_counter_12
        Unsigned 16-bit integer
    tpncp.error_counter_13  tpncp.error_counter_13
        Unsigned 16-bit integer
    tpncp.error_counter_14  tpncp.error_counter_14
        Unsigned 16-bit integer
    tpncp.error_counter_15  tpncp.error_counter_15
        Unsigned 16-bit integer
    tpncp.error_counter_16  tpncp.error_counter_16
        Unsigned 16-bit integer
    tpncp.error_counter_17  tpncp.error_counter_17
        Unsigned 16-bit integer
    tpncp.error_counter_18  tpncp.error_counter_18
        Unsigned 16-bit integer
    tpncp.error_counter_19  tpncp.error_counter_19
        Unsigned 16-bit integer
    tpncp.error_counter_2  tpncp.error_counter_2
        Unsigned 16-bit integer
    tpncp.error_counter_20  tpncp.error_counter_20
        Unsigned 16-bit integer
    tpncp.error_counter_21  tpncp.error_counter_21
        Unsigned 16-bit integer
    tpncp.error_counter_22  tpncp.error_counter_22
        Unsigned 16-bit integer
    tpncp.error_counter_23  tpncp.error_counter_23
        Unsigned 16-bit integer
    tpncp.error_counter_24  tpncp.error_counter_24
        Unsigned 16-bit integer
    tpncp.error_counter_25  tpncp.error_counter_25
        Unsigned 16-bit integer
    tpncp.error_counter_3  tpncp.error_counter_3
        Unsigned 16-bit integer
    tpncp.error_counter_4  tpncp.error_counter_4
        Unsigned 16-bit integer
    tpncp.error_counter_5  tpncp.error_counter_5
        Unsigned 16-bit integer
    tpncp.error_counter_6  tpncp.error_counter_6
        Unsigned 16-bit integer
    tpncp.error_counter_7  tpncp.error_counter_7
        Unsigned 16-bit integer
    tpncp.error_counter_8  tpncp.error_counter_8
        Unsigned 16-bit integer
    tpncp.error_counter_9  tpncp.error_counter_9
        Unsigned 16-bit integer
    tpncp.error_description_buffer  tpncp.error_description_buffer
        String
    tpncp.error_description_buffer_len  tpncp.error_description_buffer_len
        Signed 32-bit integer
    tpncp.error_string  tpncp.error_string
        String
    tpncp.errored_seconds  tpncp.errored_seconds
        Signed 32-bit integer
    tpncp.escape_key_sequence  tpncp.escape_key_sequence
        String
    tpncp.ethernet_mode  tpncp.ethernet_mode
        Signed 32-bit integer
    tpncp.etsi_type  tpncp.etsi_type
        Signed 32-bit integer
    tpncp.ev_detect_caller_id_info_alignment  tpncp.ev_detect_caller_id_info_alignment
        Unsigned 8-bit integer
    tpncp.event_id  Event ID
        Unsigned 32-bit integer
    tpncp.event_trigger  tpncp.event_trigger
        Signed 32-bit integer
    tpncp.evrc_rate  tpncp.evrc_rate
        Signed 32-bit integer
    tpncp.evrc_smart_blanking_max_sid_gap  tpncp.evrc_smart_blanking_max_sid_gap
        Signed 16-bit integer
    tpncp.evrc_smart_blanking_min_sid_gap  tpncp.evrc_smart_blanking_min_sid_gap
        Signed 16-bit integer
    tpncp.evrcb_avg_rate_control  tpncp.evrcb_avg_rate_control
        Unsigned 8-bit integer
    tpncp.evrcb_avg_rate_target  tpncp.evrcb_avg_rate_target
        Signed 16-bit integer
    tpncp.evrcb_operation_point  tpncp.evrcb_operation_point
        Unsigned 8-bit integer
    tpncp.exclusive  tpncp.exclusive
        Signed 32-bit integer
    tpncp.exists  tpncp.exists
        Signed 32-bit integer
    tpncp.ext_high_seq  tpncp.ext_high_seq
        Unsigned 32-bit integer
    tpncp.ext_r_factor  tpncp.ext_r_factor
        Unsigned 8-bit integer
    tpncp.ext_uni_directional_rtp  tpncp.ext_uni_directional_rtp
        Unsigned 8-bit integer
    tpncp.extension  tpncp.extension
        String
    tpncp.extension_0  tpncp.extension_0
        String
    tpncp.extension_1  tpncp.extension_1
        String
    tpncp.extension_2  tpncp.extension_2
        String
    tpncp.extension_3  tpncp.extension_3
        String
    tpncp.extension_4  tpncp.extension_4
        String
    tpncp.extension_5  tpncp.extension_5
        String
    tpncp.extension_6  tpncp.extension_6
        String
    tpncp.extension_7  tpncp.extension_7
        String
    tpncp.extension_8  tpncp.extension_8
        String
    tpncp.extension_9  tpncp.extension_9
        String
    tpncp.extension_size_0  tpncp.extension_size_0
        Signed 32-bit integer
    tpncp.extension_size_1  tpncp.extension_size_1
        Signed 32-bit integer
    tpncp.extension_size_2  tpncp.extension_size_2
        Signed 32-bit integer
    tpncp.extension_size_3  tpncp.extension_size_3
        Signed 32-bit integer
    tpncp.extension_size_4  tpncp.extension_size_4
        Signed 32-bit integer
    tpncp.extension_size_5  tpncp.extension_size_5
        Signed 32-bit integer
    tpncp.extension_size_6  tpncp.extension_size_6
        Signed 32-bit integer
    tpncp.extension_size_7  tpncp.extension_size_7
        Signed 32-bit integer
    tpncp.extension_size_8  tpncp.extension_size_8
        Signed 32-bit integer
    tpncp.extension_size_9  tpncp.extension_size_9
        Signed 32-bit integer
    tpncp.extra_digit_timer  tpncp.extra_digit_timer
        Signed 32-bit integer
    tpncp.extra_info  tpncp.extra_info
        String
    tpncp.facility_action  tpncp.facility_action
        Signed 32-bit integer
    tpncp.facility_code  tpncp.facility_code
        Signed 32-bit integer
    tpncp.facility_net_cause  tpncp.facility_net_cause
        Signed 32-bit integer
    tpncp.facility_sequence_num  tpncp.facility_sequence_num
        Signed 32-bit integer
    tpncp.facility_sequence_number  tpncp.facility_sequence_number
        Signed 32-bit integer
    tpncp.failed_board_id  tpncp.failed_board_id
        Signed 32-bit integer
    tpncp.failed_clock  tpncp.failed_clock
        Signed 32-bit integer
    tpncp.failure_reason  tpncp.failure_reason
        Signed 32-bit integer
    tpncp.failure_status  tpncp.failure_status
        Signed 32-bit integer
    tpncp.fallback  tpncp.fallback
        Signed 32-bit integer
    tpncp.far_end_receive_failure  tpncp.far_end_receive_failure
        Signed 32-bit integer
    tpncp.fax_bypass_output_gain  tpncp.fax_bypass_output_gain
        Unsigned 16-bit integer
    tpncp.fax_bypass_payload_type  tpncp.fax_bypass_payload_type
        Unsigned 8-bit integer
    tpncp.fax_detection_origin  tpncp.fax_detection_origin
        Signed 32-bit integer
    tpncp.fax_modem_bypass_basic_rtp_packet_interval  tpncp.fax_modem_bypass_basic_rtp_packet_interval
        Signed 32-bit integer
    tpncp.fax_modem_bypass_coder_type  tpncp.fax_modem_bypass_coder_type
        Signed 32-bit integer
    tpncp.fax_modem_bypass_dj_buf_min_delay  tpncp.fax_modem_bypass_dj_buf_min_delay
        Signed 32-bit integer
    tpncp.fax_modem_bypass_m  tpncp.fax_modem_bypass_m
        Signed 32-bit integer
    tpncp.fax_modem_cmd_reserved  tpncp.fax_modem_cmd_reserved
        String
    tpncp.fax_modem_nte_mode  tpncp.fax_modem_nte_mode
        Unsigned 8-bit integer
    tpncp.fax_modem_relay_rate  tpncp.fax_modem_relay_rate
        Signed 32-bit integer
    tpncp.fax_modem_relay_volume  tpncp.fax_modem_relay_volume
        Signed 32-bit integer
    tpncp.fax_relay_ecm_enable  tpncp.fax_relay_ecm_enable
        Signed 32-bit integer
    tpncp.fax_relay_max_rate  tpncp.fax_relay_max_rate
        Signed 32-bit integer
    tpncp.fax_relay_redundancy_depth  tpncp.fax_relay_redundancy_depth
        Unsigned 8-bit integer
    tpncp.fax_session_result  tpncp.fax_session_result
        Signed 32-bit integer
    tpncp.fax_transport_type  tpncp.fax_transport_type
        Signed 32-bit integer
    tpncp.fiber_group  tpncp.fiber_group
        Signed 32-bit integer
    tpncp.fiber_group_link  tpncp.fiber_group_link
        Signed 32-bit integer
    tpncp.fiber_id  tpncp.fiber_id
        Signed 32-bit integer
    tpncp.file_name  tpncp.file_name
        String
    tpncp.fill_zero  tpncp.fill_zero
        Unsigned 8-bit integer
    tpncp.filling  tpncp.filling
        String
    tpncp.first_call_line_identity  tpncp.first_call_line_identity
        String
    tpncp.first_digit_country_code  tpncp.first_digit_country_code
        Unsigned 8-bit integer
    tpncp.first_digit_timer  tpncp.first_digit_timer
        Signed 32-bit integer
    tpncp.first_tone_duration  tpncp.first_tone_duration
        Unsigned 32-bit integer
    tpncp.first_voice_prompt_index  tpncp.first_voice_prompt_index
        Signed 32-bit integer
    tpncp.flash_bit_return_code  tpncp.flash_bit_return_code
        Signed 32-bit integer
    tpncp.flash_hook_transport_type  tpncp.flash_hook_transport_type
        Unsigned 8-bit integer
    tpncp.flash_ver  tpncp.flash_ver
        Signed 32-bit integer
    tpncp.force_voice_prompt_repository_release  tpncp.force_voice_prompt_repository_release
        Signed 32-bit integer
    tpncp.forced_packet_addition  tpncp.forced_packet_addition
        Unsigned 32-bit integer
    tpncp.forced_packet_lost  tpncp.forced_packet_lost
        Unsigned 32-bit integer
    tpncp.forward_key_sequence  tpncp.forward_key_sequence
        String
    tpncp.fraction_lost  tpncp.fraction_lost
        Unsigned 32-bit integer
    tpncp.fragmentation_needed_and_df_set  tpncp.fragmentation_needed_and_df_set
        Unsigned 32-bit integer
    tpncp.framers_bit_return_code  tpncp.framers_bit_return_code
        Signed 32-bit integer
    tpncp.framing_bit_error_counter  tpncp.framing_bit_error_counter
        Unsigned 16-bit integer
    tpncp.framing_error_counter  tpncp.framing_error_counter
        Unsigned 16-bit integer
    tpncp.framing_error_received  tpncp.framing_error_received
        Signed 32-bit integer
    tpncp.free_voice_prompt_buffer_space  tpncp.free_voice_prompt_buffer_space
        Signed 32-bit integer
    tpncp.free_voice_prompt_indexes  tpncp.free_voice_prompt_indexes
        Signed 32-bit integer
    tpncp.frequency  tpncp.frequency
        Signed 32-bit integer
    tpncp.frequency_0  tpncp.frequency_0
        Signed 32-bit integer
    tpncp.frequency_1  tpncp.frequency_1
        Signed 32-bit integer
    tpncp.from_entity  tpncp.from_entity
        Signed 32-bit integer
    tpncp.from_fiber_link  tpncp.from_fiber_link
        Signed 32-bit integer
    tpncp.from_trunk  tpncp.from_trunk
        Signed 32-bit integer
    tpncp.fullday_average  tpncp.fullday_average
        Signed 32-bit integer
    tpncp.future_expansion_0  tpncp.future_expansion_0
        Signed 32-bit integer
    tpncp.future_expansion_1  tpncp.future_expansion_1
        Signed 32-bit integer
    tpncp.future_expansion_2  tpncp.future_expansion_2
        Signed 32-bit integer
    tpncp.future_expansion_3  tpncp.future_expansion_3
        Signed 32-bit integer
    tpncp.future_expansion_4  tpncp.future_expansion_4
        Signed 32-bit integer
    tpncp.future_expansion_5  tpncp.future_expansion_5
        Signed 32-bit integer
    tpncp.future_expansion_6  tpncp.future_expansion_6
        Signed 32-bit integer
    tpncp.future_expansion_7  tpncp.future_expansion_7
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_0  tpncp.fxo_anic_version_return_code_0
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_1  tpncp.fxo_anic_version_return_code_1
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_10  tpncp.fxo_anic_version_return_code_10
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_11  tpncp.fxo_anic_version_return_code_11
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_12  tpncp.fxo_anic_version_return_code_12
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_13  tpncp.fxo_anic_version_return_code_13
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_14  tpncp.fxo_anic_version_return_code_14
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_15  tpncp.fxo_anic_version_return_code_15
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_16  tpncp.fxo_anic_version_return_code_16
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_17  tpncp.fxo_anic_version_return_code_17
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_18  tpncp.fxo_anic_version_return_code_18
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_19  tpncp.fxo_anic_version_return_code_19
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_2  tpncp.fxo_anic_version_return_code_2
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_20  tpncp.fxo_anic_version_return_code_20
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_21  tpncp.fxo_anic_version_return_code_21
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_22  tpncp.fxo_anic_version_return_code_22
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_23  tpncp.fxo_anic_version_return_code_23
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_3  tpncp.fxo_anic_version_return_code_3
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_4  tpncp.fxo_anic_version_return_code_4
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_5  tpncp.fxo_anic_version_return_code_5
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_6  tpncp.fxo_anic_version_return_code_6
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_7  tpncp.fxo_anic_version_return_code_7
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_8  tpncp.fxo_anic_version_return_code_8
        Signed 32-bit integer
    tpncp.fxo_anic_version_return_code_9  tpncp.fxo_anic_version_return_code_9
        Signed 32-bit integer
    tpncp.fxs_analog_voltage_reading  tpncp.fxs_analog_voltage_reading
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_0  tpncp.fxs_codec_validation_bit_return_code_0
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_1  tpncp.fxs_codec_validation_bit_return_code_1
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_10  tpncp.fxs_codec_validation_bit_return_code_10
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_11  tpncp.fxs_codec_validation_bit_return_code_11
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_12  tpncp.fxs_codec_validation_bit_return_code_12
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_13  tpncp.fxs_codec_validation_bit_return_code_13
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_14  tpncp.fxs_codec_validation_bit_return_code_14
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_15  tpncp.fxs_codec_validation_bit_return_code_15
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_16  tpncp.fxs_codec_validation_bit_return_code_16
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_17  tpncp.fxs_codec_validation_bit_return_code_17
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_18  tpncp.fxs_codec_validation_bit_return_code_18
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_19  tpncp.fxs_codec_validation_bit_return_code_19
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_2  tpncp.fxs_codec_validation_bit_return_code_2
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_20  tpncp.fxs_codec_validation_bit_return_code_20
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_21  tpncp.fxs_codec_validation_bit_return_code_21
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_22  tpncp.fxs_codec_validation_bit_return_code_22
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_23  tpncp.fxs_codec_validation_bit_return_code_23
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_3  tpncp.fxs_codec_validation_bit_return_code_3
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_4  tpncp.fxs_codec_validation_bit_return_code_4
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_5  tpncp.fxs_codec_validation_bit_return_code_5
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_6  tpncp.fxs_codec_validation_bit_return_code_6
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_7  tpncp.fxs_codec_validation_bit_return_code_7
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_8  tpncp.fxs_codec_validation_bit_return_code_8
        Signed 32-bit integer
    tpncp.fxs_codec_validation_bit_return_code_9  tpncp.fxs_codec_validation_bit_return_code_9
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_0  tpncp.fxs_duslic_version_return_code_0
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_1  tpncp.fxs_duslic_version_return_code_1
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_10  tpncp.fxs_duslic_version_return_code_10
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_11  tpncp.fxs_duslic_version_return_code_11
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_12  tpncp.fxs_duslic_version_return_code_12
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_13  tpncp.fxs_duslic_version_return_code_13
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_14  tpncp.fxs_duslic_version_return_code_14
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_15  tpncp.fxs_duslic_version_return_code_15
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_16  tpncp.fxs_duslic_version_return_code_16
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_17  tpncp.fxs_duslic_version_return_code_17
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_18  tpncp.fxs_duslic_version_return_code_18
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_19  tpncp.fxs_duslic_version_return_code_19
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_2  tpncp.fxs_duslic_version_return_code_2
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_20  tpncp.fxs_duslic_version_return_code_20
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_21  tpncp.fxs_duslic_version_return_code_21
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_22  tpncp.fxs_duslic_version_return_code_22
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_23  tpncp.fxs_duslic_version_return_code_23
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_3  tpncp.fxs_duslic_version_return_code_3
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_4  tpncp.fxs_duslic_version_return_code_4
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_5  tpncp.fxs_duslic_version_return_code_5
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_6  tpncp.fxs_duslic_version_return_code_6
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_7  tpncp.fxs_duslic_version_return_code_7
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_8  tpncp.fxs_duslic_version_return_code_8
        Signed 32-bit integer
    tpncp.fxs_duslic_version_return_code_9  tpncp.fxs_duslic_version_return_code_9
        Signed 32-bit integer
    tpncp.fxs_line_current_reading  tpncp.fxs_line_current_reading
        Signed 32-bit integer
    tpncp.fxs_line_voltage_reading  tpncp.fxs_line_voltage_reading
        Signed 32-bit integer
    tpncp.fxs_ring_voltage_reading  tpncp.fxs_ring_voltage_reading
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_0  tpncp.fxscram_check_sum_bit_return_code_0
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_1  tpncp.fxscram_check_sum_bit_return_code_1
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_10  tpncp.fxscram_check_sum_bit_return_code_10
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_11  tpncp.fxscram_check_sum_bit_return_code_11
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_12  tpncp.fxscram_check_sum_bit_return_code_12
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_13  tpncp.fxscram_check_sum_bit_return_code_13
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_14  tpncp.fxscram_check_sum_bit_return_code_14
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_15  tpncp.fxscram_check_sum_bit_return_code_15
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_16  tpncp.fxscram_check_sum_bit_return_code_16
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_17  tpncp.fxscram_check_sum_bit_return_code_17
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_18  tpncp.fxscram_check_sum_bit_return_code_18
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_19  tpncp.fxscram_check_sum_bit_return_code_19
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_2  tpncp.fxscram_check_sum_bit_return_code_2
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_20  tpncp.fxscram_check_sum_bit_return_code_20
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_21  tpncp.fxscram_check_sum_bit_return_code_21
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_22  tpncp.fxscram_check_sum_bit_return_code_22
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_23  tpncp.fxscram_check_sum_bit_return_code_23
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_3  tpncp.fxscram_check_sum_bit_return_code_3
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_4  tpncp.fxscram_check_sum_bit_return_code_4
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_5  tpncp.fxscram_check_sum_bit_return_code_5
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_6  tpncp.fxscram_check_sum_bit_return_code_6
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_7  tpncp.fxscram_check_sum_bit_return_code_7
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_8  tpncp.fxscram_check_sum_bit_return_code_8
        Signed 32-bit integer
    tpncp.fxscram_check_sum_bit_return_code_9  tpncp.fxscram_check_sum_bit_return_code_9
        Signed 32-bit integer
    tpncp.g729ev_local_mbs  tpncp.g729ev_local_mbs
        Signed 32-bit integer
    tpncp.g729ev_max_bit_rate  tpncp.g729ev_max_bit_rate
        Signed 32-bit integer
    tpncp.g729ev_receive_mbs  tpncp.g729ev_receive_mbs
        Signed 32-bit integer
    tpncp.gap_count  tpncp.gap_count
        Unsigned 32-bit integer
    tpncp.gateway_address_0  tpncp.gateway_address_0
        Unsigned 32-bit integer
    tpncp.gateway_address_1  tpncp.gateway_address_1
        Unsigned 32-bit integer
    tpncp.gateway_address_2  tpncp.gateway_address_2
        Unsigned 32-bit integer
    tpncp.gateway_address_3  tpncp.gateway_address_3
        Unsigned 32-bit integer
    tpncp.gateway_address_4  tpncp.gateway_address_4
        Unsigned 32-bit integer
    tpncp.gateway_address_5  tpncp.gateway_address_5
        Unsigned 32-bit integer
    tpncp.gauge_id  tpncp.gauge_id
        Signed 32-bit integer
    tpncp.generate_caller_id_message_extension_size  tpncp.generate_caller_id_message_extension_size
        Unsigned 8-bit integer
    tpncp.generation_timing  tpncp.generation_timing
        Unsigned 8-bit integer
    tpncp.generic_event_family  tpncp.generic_event_family
        Signed 32-bit integer
    tpncp.geographical_address  tpncp.geographical_address
        Signed 32-bit integer
    tpncp.graceful_shutdown_timeout  tpncp.graceful_shutdown_timeout
        Signed 32-bit integer
    tpncp.ground_key_polarity  tpncp.ground_key_polarity
        Signed 32-bit integer
    tpncp.hdr1_invoke_id  tpncp.hdr1_invoke_id
        Signed 32-bit integer
    tpncp.hdr1_link_id  tpncp.hdr1_link_id
        Signed 32-bit integer
    tpncp.hdr1_linked_id_presence  tpncp.hdr1_linked_id_presence
        Signed 32-bit integer
    tpncp.hdr1_operation_id  tpncp.hdr1_operation_id
        Signed 32-bit integer
    tpncp.hdr2_invoke_id  tpncp.hdr2_invoke_id
        Signed 32-bit integer
    tpncp.hdr2_link_id  tpncp.hdr2_link_id
        Signed 32-bit integer
    tpncp.hdr2_linked_id_presence  tpncp.hdr2_linked_id_presence
        Signed 32-bit integer
    tpncp.hdr2_operation_id  tpncp.hdr2_operation_id
        Signed 32-bit integer
    tpncp.header_only  tpncp.header_only
        Signed 32-bit integer
    tpncp.hello_time_out  tpncp.hello_time_out
        Unsigned 32-bit integer
    tpncp.hidden_participant_id  tpncp.hidden_participant_id
        Signed 32-bit integer
    tpncp.hide_mode  tpncp.hide_mode
        Signed 32-bit integer
    tpncp.high_threshold  tpncp.high_threshold
        Signed 32-bit integer
    tpncp.ho_alarm_status_0  tpncp.ho_alarm_status_0
        Signed 32-bit integer
    tpncp.ho_alarm_status_1  tpncp.ho_alarm_status_1
        Signed 32-bit integer
    tpncp.ho_alarm_status_2  tpncp.ho_alarm_status_2
        Signed 32-bit integer
    tpncp.hook  tpncp.hook
        Signed 32-bit integer
    tpncp.hook_state  tpncp.hook_state
        Signed 32-bit integer
    tpncp.host_unreachable  tpncp.host_unreachable
        Unsigned 32-bit integer
    tpncp.hour  tpncp.hour
        Signed 32-bit integer
    tpncp.hpfe  tpncp.hpfe
        Signed 32-bit integer
    tpncp.http_client_error_code  tpncp.http_client_error_code
        Signed 32-bit integer
    tpncp.hw_sw_version  tpncp.hw_sw_version
        Signed 32-bit integer
    tpncp.i_dummy_0  tpncp.i_dummy_0
        Signed 32-bit integer
    tpncp.i_dummy_1  tpncp.i_dummy_1
        Signed 32-bit integer
    tpncp.i_dummy_2  tpncp.i_dummy_2
        Signed 32-bit integer
    tpncp.i_pv6_address_0  tpncp.i_pv6_address_0
        Unsigned 32-bit integer
    tpncp.i_pv6_address_1  tpncp.i_pv6_address_1
        Unsigned 32-bit integer
    tpncp.i_pv6_address_2  tpncp.i_pv6_address_2
        Unsigned 32-bit integer
    tpncp.i_pv6_address_3  tpncp.i_pv6_address_3
        Unsigned 32-bit integer
    tpncp.ibs_tone_generation_interface  tpncp.ibs_tone_generation_interface
        Unsigned 8-bit integer
    tpncp.ibs_transport_type  tpncp.ibs_transport_type
        Signed 32-bit integer
    tpncp.icmp_code_fragmentation_needed_and_df_set  tpncp.icmp_code_fragmentation_needed_and_df_set
        Unsigned 32-bit integer
    tpncp.icmp_code_host_unreachable  tpncp.icmp_code_host_unreachable
        Unsigned 32-bit integer
    tpncp.icmp_code_net_unreachable  tpncp.icmp_code_net_unreachable
        Unsigned 32-bit integer
    tpncp.icmp_code_port_unreachable  tpncp.icmp_code_port_unreachable
        Unsigned 32-bit integer
    tpncp.icmp_code_protocol_unreachable  tpncp.icmp_code_protocol_unreachable
        Unsigned 32-bit integer
    tpncp.icmp_code_source_route_failed  tpncp.icmp_code_source_route_failed
        Unsigned 32-bit integer
    tpncp.icmp_type  tpncp.icmp_type
        Unsigned 8-bit integer
    tpncp.icmp_unreachable_counter  tpncp.icmp_unreachable_counter
        Unsigned 32-bit integer
    tpncp.idle_alarm  tpncp.idle_alarm
        Signed 32-bit integer
    tpncp.idle_time_out  tpncp.idle_time_out
        Unsigned 32-bit integer
    tpncp.if_add_seq_required_avp  tpncp.if_add_seq_required_avp
        Unsigned 8-bit integer
    tpncp.include_return_key  tpncp.include_return_key
        Signed 16-bit integer
    tpncp.incoming_t38_port_option  tpncp.incoming_t38_port_option
        Signed 32-bit integer
    tpncp.index  tpncp.index
        Signed 32-bit integer
    tpncp.index_0  tpncp.index_0
        Signed 32-bit integer
    tpncp.index_1  tpncp.index_1
        Signed 32-bit integer
    tpncp.index_10  tpncp.index_10
        Signed 32-bit integer
    tpncp.index_11  tpncp.index_11
        Signed 32-bit integer
    tpncp.index_12  tpncp.index_12
        Signed 32-bit integer
    tpncp.index_13  tpncp.index_13
        Signed 32-bit integer
    tpncp.index_14  tpncp.index_14
        Signed 32-bit integer
    tpncp.index_15  tpncp.index_15
        Signed 32-bit integer
    tpncp.index_16  tpncp.index_16
        Signed 32-bit integer
    tpncp.index_17  tpncp.index_17
        Signed 32-bit integer
    tpncp.index_18  tpncp.index_18
        Signed 32-bit integer
    tpncp.index_19  tpncp.index_19
        Signed 32-bit integer
    tpncp.index_2  tpncp.index_2
        Signed 32-bit integer
    tpncp.index_20  tpncp.index_20
        Signed 32-bit integer
    tpncp.index_21  tpncp.index_21
        Signed 32-bit integer
    tpncp.index_22  tpncp.index_22
        Signed 32-bit integer
    tpncp.index_23  tpncp.index_23
        Signed 32-bit integer
    tpncp.index_24  tpncp.index_24
        Signed 32-bit integer
    tpncp.index_25  tpncp.index_25
        Signed 32-bit integer
    tpncp.index_26  tpncp.index_26
        Signed 32-bit integer
    tpncp.index_27  tpncp.index_27
        Signed 32-bit integer
    tpncp.index_28  tpncp.index_28
        Signed 32-bit integer
    tpncp.index_29  tpncp.index_29
        Signed 32-bit integer
    tpncp.index_3  tpncp.index_3
        Signed 32-bit integer
    tpncp.index_30  tpncp.index_30
        Signed 32-bit integer
    tpncp.index_31  tpncp.index_31
        Signed 32-bit integer
    tpncp.index_32  tpncp.index_32
        Signed 32-bit integer
    tpncp.index_33  tpncp.index_33
        Signed 32-bit integer
    tpncp.index_34  tpncp.index_34
        Signed 32-bit integer
    tpncp.index_35  tpncp.index_35
        Signed 32-bit integer
    tpncp.index_4  tpncp.index_4
        Signed 32-bit integer
    tpncp.index_5  tpncp.index_5
        Signed 32-bit integer
    tpncp.index_6  tpncp.index_6
        Signed 32-bit integer
    tpncp.index_7  tpncp.index_7
        Signed 32-bit integer
    tpncp.index_8  tpncp.index_8
        Signed 32-bit integer
    tpncp.index_9  tpncp.index_9
        Signed 32-bit integer
    tpncp.info0  tpncp.info0
        Signed 32-bit integer
    tpncp.info1  tpncp.info1
        Signed 32-bit integer
    tpncp.info2  tpncp.info2
        Signed 32-bit integer
    tpncp.info3  tpncp.info3
        Signed 32-bit integer
    tpncp.info4  tpncp.info4
        Signed 32-bit integer
    tpncp.info5  tpncp.info5
        Signed 32-bit integer
    tpncp.inhibition_status  tpncp.inhibition_status
        Signed 32-bit integer
    tpncp.ini_file  tpncp.ini_file
        String
    tpncp.ini_file_length  tpncp.ini_file_length
        Signed 32-bit integer
    tpncp.ini_file_ver  tpncp.ini_file_ver
        Signed 32-bit integer
    tpncp.input_gain  tpncp.input_gain
        Signed 32-bit integer
    tpncp.input_port_0  tpncp.input_port_0
        Unsigned 8-bit integer
    tpncp.input_port_1  tpncp.input_port_1
        Unsigned 8-bit integer
    tpncp.input_port_10  tpncp.input_port_10
        Unsigned 8-bit integer
    tpncp.input_port_100  tpncp.input_port_100
        Unsigned 8-bit integer
    tpncp.input_port_101  tpncp.input_port_101
        Unsigned 8-bit integer
    tpncp.input_port_102  tpncp.input_port_102
        Unsigned 8-bit integer
    tpncp.input_port_103  tpncp.input_port_103
        Unsigned 8-bit integer
    tpncp.input_port_104  tpncp.input_port_104
        Unsigned 8-bit integer
    tpncp.input_port_105  tpncp.input_port_105
        Unsigned 8-bit integer
    tpncp.input_port_106  tpncp.input_port_106
        Unsigned 8-bit integer
    tpncp.input_port_107  tpncp.input_port_107
        Unsigned 8-bit integer
    tpncp.input_port_108  tpncp.input_port_108
        Unsigned 8-bit integer
    tpncp.input_port_109  tpncp.input_port_109
        Unsigned 8-bit integer
    tpncp.input_port_11  tpncp.input_port_11
        Unsigned 8-bit integer
    tpncp.input_port_110  tpncp.input_port_110
        Unsigned 8-bit integer
    tpncp.input_port_111  tpncp.input_port_111
        Unsigned 8-bit integer
    tpncp.input_port_112  tpncp.input_port_112
        Unsigned 8-bit integer
    tpncp.input_port_113  tpncp.input_port_113
        Unsigned 8-bit integer
    tpncp.input_port_114  tpncp.input_port_114
        Unsigned 8-bit integer
    tpncp.input_port_115  tpncp.input_port_115
        Unsigned 8-bit integer
    tpncp.input_port_116  tpncp.input_port_116
        Unsigned 8-bit integer
    tpncp.input_port_117  tpncp.input_port_117
        Unsigned 8-bit integer
    tpncp.input_port_118  tpncp.input_port_118
        Unsigned 8-bit integer
    tpncp.input_port_119  tpncp.input_port_119
        Unsigned 8-bit integer
    tpncp.input_port_12  tpncp.input_port_12
        Unsigned 8-bit integer
    tpncp.input_port_120  tpncp.input_port_120
        Unsigned 8-bit integer
    tpncp.input_port_121  tpncp.input_port_121
        Unsigned 8-bit integer
    tpncp.input_port_122  tpncp.input_port_122
        Unsigned 8-bit integer
    tpncp.input_port_123  tpncp.input_port_123
        Unsigned 8-bit integer
    tpncp.input_port_124  tpncp.input_port_124
        Unsigned 8-bit integer
    tpncp.input_port_125  tpncp.input_port_125
        Unsigned 8-bit integer
    tpncp.input_port_126  tpncp.input_port_126
        Unsigned 8-bit integer
    tpncp.input_port_127  tpncp.input_port_127
        Unsigned 8-bit integer
    tpncp.input_port_128  tpncp.input_port_128
        Unsigned 8-bit integer
    tpncp.input_port_129  tpncp.input_port_129
        Unsigned 8-bit integer
    tpncp.input_port_13  tpncp.input_port_13
        Unsigned 8-bit integer
    tpncp.input_port_130  tpncp.input_port_130
        Unsigned 8-bit integer
    tpncp.input_port_131  tpncp.input_port_131
        Unsigned 8-bit integer
    tpncp.input_port_132  tpncp.input_port_132
        Unsigned 8-bit integer
    tpncp.input_port_133  tpncp.input_port_133
        Unsigned 8-bit integer
    tpncp.input_port_134  tpncp.input_port_134
        Unsigned 8-bit integer
    tpncp.input_port_135  tpncp.input_port_135
        Unsigned 8-bit integer
    tpncp.input_port_136  tpncp.input_port_136
        Unsigned 8-bit integer
    tpncp.input_port_137  tpncp.input_port_137
        Unsigned 8-bit integer
    tpncp.input_port_138  tpncp.input_port_138
        Unsigned 8-bit integer
    tpncp.input_port_139  tpncp.input_port_139
        Unsigned 8-bit integer
    tpncp.input_port_14  tpncp.input_port_14
        Unsigned 8-bit integer
    tpncp.input_port_140  tpncp.input_port_140
        Unsigned 8-bit integer
    tpncp.input_port_141  tpncp.input_port_141
        Unsigned 8-bit integer
    tpncp.input_port_142  tpncp.input_port_142
        Unsigned 8-bit integer
    tpncp.input_port_143  tpncp.input_port_143
        Unsigned 8-bit integer
    tpncp.input_port_144  tpncp.input_port_144
        Unsigned 8-bit integer
    tpncp.input_port_145  tpncp.input_port_145
        Unsigned 8-bit integer
    tpncp.input_port_146  tpncp.input_port_146
        Unsigned 8-bit integer
    tpncp.input_port_147  tpncp.input_port_147
        Unsigned 8-bit integer
    tpncp.input_port_148  tpncp.input_port_148
        Unsigned 8-bit integer
    tpncp.input_port_149  tpncp.input_port_149
        Unsigned 8-bit integer
    tpncp.input_port_15  tpncp.input_port_15
        Unsigned 8-bit integer
    tpncp.input_port_150  tpncp.input_port_150
        Unsigned 8-bit integer
    tpncp.input_port_151  tpncp.input_port_151
        Unsigned 8-bit integer
    tpncp.input_port_152  tpncp.input_port_152
        Unsigned 8-bit integer
    tpncp.input_port_153  tpncp.input_port_153
        Unsigned 8-bit integer
    tpncp.input_port_154  tpncp.input_port_154
        Unsigned 8-bit integer
    tpncp.input_port_155  tpncp.input_port_155
        Unsigned 8-bit integer
    tpncp.input_port_156  tpncp.input_port_156
        Unsigned 8-bit integer
    tpncp.input_port_157  tpncp.input_port_157
        Unsigned 8-bit integer
    tpncp.input_port_158  tpncp.input_port_158
        Unsigned 8-bit integer
    tpncp.input_port_159  tpncp.input_port_159
        Unsigned 8-bit integer
    tpncp.input_port_16  tpncp.input_port_16
        Unsigned 8-bit integer
    tpncp.input_port_160  tpncp.input_port_160
        Unsigned 8-bit integer
    tpncp.input_port_161  tpncp.input_port_161
        Unsigned 8-bit integer
    tpncp.input_port_162  tpncp.input_port_162
        Unsigned 8-bit integer
    tpncp.input_port_163  tpncp.input_port_163
        Unsigned 8-bit integer
    tpncp.input_port_164  tpncp.input_port_164
        Unsigned 8-bit integer
    tpncp.input_port_165  tpncp.input_port_165
        Unsigned 8-bit integer
    tpncp.input_port_166  tpncp.input_port_166
        Unsigned 8-bit integer
    tpncp.input_port_167  tpncp.input_port_167
        Unsigned 8-bit integer
    tpncp.input_port_168  tpncp.input_port_168
        Unsigned 8-bit integer
    tpncp.input_port_169  tpncp.input_port_169
        Unsigned 8-bit integer
    tpncp.input_port_17  tpncp.input_port_17
        Unsigned 8-bit integer
    tpncp.input_port_170  tpncp.input_port_170
        Unsigned 8-bit integer
    tpncp.input_port_171  tpncp.input_port_171
        Unsigned 8-bit integer
    tpncp.input_port_172  tpncp.input_port_172
        Unsigned 8-bit integer
    tpncp.input_port_173  tpncp.input_port_173
        Unsigned 8-bit integer
    tpncp.input_port_174  tpncp.input_port_174
        Unsigned 8-bit integer
    tpncp.input_port_175  tpncp.input_port_175
        Unsigned 8-bit integer
    tpncp.input_port_176  tpncp.input_port_176
        Unsigned 8-bit integer
    tpncp.input_port_177  tpncp.input_port_177
        Unsigned 8-bit integer
    tpncp.input_port_178  tpncp.input_port_178
        Unsigned 8-bit integer
    tpncp.input_port_179  tpncp.input_port_179
        Unsigned 8-bit integer
    tpncp.input_port_18  tpncp.input_port_18
        Unsigned 8-bit integer
    tpncp.input_port_180  tpncp.input_port_180
        Unsigned 8-bit integer
    tpncp.input_port_181  tpncp.input_port_181
        Unsigned 8-bit integer
    tpncp.input_port_182  tpncp.input_port_182
        Unsigned 8-bit integer
    tpncp.input_port_183  tpncp.input_port_183
        Unsigned 8-bit integer
    tpncp.input_port_184  tpncp.input_port_184
        Unsigned 8-bit integer
    tpncp.input_port_185  tpncp.input_port_185
        Unsigned 8-bit integer
    tpncp.input_port_186  tpncp.input_port_186
        Unsigned 8-bit integer
    tpncp.input_port_187  tpncp.input_port_187
        Unsigned 8-bit integer
    tpncp.input_port_188  tpncp.input_port_188
        Unsigned 8-bit integer
    tpncp.input_port_189  tpncp.input_port_189
        Unsigned 8-bit integer
    tpncp.input_port_19  tpncp.input_port_19
        Unsigned 8-bit integer
    tpncp.input_port_190  tpncp.input_port_190
        Unsigned 8-bit integer
    tpncp.input_port_191  tpncp.input_port_191
        Unsigned 8-bit integer
    tpncp.input_port_192  tpncp.input_port_192
        Unsigned 8-bit integer
    tpncp.input_port_193  tpncp.input_port_193
        Unsigned 8-bit integer
    tpncp.input_port_194  tpncp.input_port_194
        Unsigned 8-bit integer
    tpncp.input_port_195  tpncp.input_port_195
        Unsigned 8-bit integer
    tpncp.input_port_196  tpncp.input_port_196
        Unsigned 8-bit integer
    tpncp.input_port_197  tpncp.input_port_197
        Unsigned 8-bit integer
    tpncp.input_port_198  tpncp.input_port_198
        Unsigned 8-bit integer
    tpncp.input_port_199  tpncp.input_port_199
        Unsigned 8-bit integer
    tpncp.input_port_2  tpncp.input_port_2
        Unsigned 8-bit integer
    tpncp.input_port_20  tpncp.input_port_20
        Unsigned 8-bit integer
    tpncp.input_port_200  tpncp.input_port_200
        Unsigned 8-bit integer
    tpncp.input_port_201  tpncp.input_port_201
        Unsigned 8-bit integer
    tpncp.input_port_202  tpncp.input_port_202
        Unsigned 8-bit integer
    tpncp.input_port_203  tpncp.input_port_203
        Unsigned 8-bit integer
    tpncp.input_port_204  tpncp.input_port_204
        Unsigned 8-bit integer
    tpncp.input_port_205  tpncp.input_port_205
        Unsigned 8-bit integer
    tpncp.input_port_206  tpncp.input_port_206
        Unsigned 8-bit integer
    tpncp.input_port_207  tpncp.input_port_207
        Unsigned 8-bit integer
    tpncp.input_port_208  tpncp.input_port_208
        Unsigned 8-bit integer
    tpncp.input_port_209  tpncp.input_port_209
        Unsigned 8-bit integer
    tpncp.input_port_21  tpncp.input_port_21
        Unsigned 8-bit integer
    tpncp.input_port_210  tpncp.input_port_210
        Unsigned 8-bit integer
    tpncp.input_port_211  tpncp.input_port_211
        Unsigned 8-bit integer
    tpncp.input_port_212  tpncp.input_port_212
        Unsigned 8-bit integer
    tpncp.input_port_213  tpncp.input_port_213
        Unsigned 8-bit integer
    tpncp.input_port_214  tpncp.input_port_214
        Unsigned 8-bit integer
    tpncp.input_port_215  tpncp.input_port_215
        Unsigned 8-bit integer
    tpncp.input_port_216  tpncp.input_port_216
        Unsigned 8-bit integer
    tpncp.input_port_217  tpncp.input_port_217
        Unsigned 8-bit integer
    tpncp.input_port_218  tpncp.input_port_218
        Unsigned 8-bit integer
    tpncp.input_port_219  tpncp.input_port_219
        Unsigned 8-bit integer
    tpncp.input_port_22  tpncp.input_port_22
        Unsigned 8-bit integer
    tpncp.input_port_220  tpncp.input_port_220
        Unsigned 8-bit integer
    tpncp.input_port_221  tpncp.input_port_221
        Unsigned 8-bit integer
    tpncp.input_port_222  tpncp.input_port_222
        Unsigned 8-bit integer
    tpncp.input_port_223  tpncp.input_port_223
        Unsigned 8-bit integer
    tpncp.input_port_224  tpncp.input_port_224
        Unsigned 8-bit integer
    tpncp.input_port_225  tpncp.input_port_225
        Unsigned 8-bit integer
    tpncp.input_port_226  tpncp.input_port_226
        Unsigned 8-bit integer
    tpncp.input_port_227  tpncp.input_port_227
        Unsigned 8-bit integer
    tpncp.input_port_228  tpncp.input_port_228
        Unsigned 8-bit integer
    tpncp.input_port_229  tpncp.input_port_229
        Unsigned 8-bit integer
    tpncp.input_port_23  tpncp.input_port_23
        Unsigned 8-bit integer
    tpncp.input_port_230  tpncp.input_port_230
        Unsigned 8-bit integer
    tpncp.input_port_231  tpncp.input_port_231
        Unsigned 8-bit integer
    tpncp.input_port_232  tpncp.input_port_232
        Unsigned 8-bit integer
    tpncp.input_port_233  tpncp.input_port_233
        Unsigned 8-bit integer
    tpncp.input_port_234  tpncp.input_port_234
        Unsigned 8-bit integer
    tpncp.input_port_235  tpncp.input_port_235
        Unsigned 8-bit integer
    tpncp.input_port_236  tpncp.input_port_236
        Unsigned 8-bit integer
    tpncp.input_port_237  tpncp.input_port_237
        Unsigned 8-bit integer
    tpncp.input_port_238  tpncp.input_port_238
        Unsigned 8-bit integer
    tpncp.input_port_239  tpncp.input_port_239
        Unsigned 8-bit integer
    tpncp.input_port_24  tpncp.input_port_24
        Unsigned 8-bit integer
    tpncp.input_port_240  tpncp.input_port_240
        Unsigned 8-bit integer
    tpncp.input_port_241  tpncp.input_port_241
        Unsigned 8-bit integer
    tpncp.input_port_242  tpncp.input_port_242
        Unsigned 8-bit integer
    tpncp.input_port_243  tpncp.input_port_243
        Unsigned 8-bit integer
    tpncp.input_port_244  tpncp.input_port_244
        Unsigned 8-bit integer
    tpncp.input_port_245  tpncp.input_port_245
        Unsigned 8-bit integer
    tpncp.input_port_246  tpncp.input_port_246
        Unsigned 8-bit integer
    tpncp.input_port_247  tpncp.input_port_247
        Unsigned 8-bit integer
    tpncp.input_port_248  tpncp.input_port_248
        Unsigned 8-bit integer
    tpncp.input_port_249  tpncp.input_port_249
        Unsigned 8-bit integer
    tpncp.input_port_25  tpncp.input_port_25
        Unsigned 8-bit integer
    tpncp.input_port_250  tpncp.input_port_250
        Unsigned 8-bit integer
    tpncp.input_port_251  tpncp.input_port_251
        Unsigned 8-bit integer
    tpncp.input_port_252  tpncp.input_port_252
        Unsigned 8-bit integer
    tpncp.input_port_253  tpncp.input_port_253
        Unsigned 8-bit integer
    tpncp.input_port_254  tpncp.input_port_254
        Unsigned 8-bit integer
    tpncp.input_port_255  tpncp.input_port_255
        Unsigned 8-bit integer
    tpncp.input_port_256  tpncp.input_port_256
        Unsigned 8-bit integer
    tpncp.input_port_257  tpncp.input_port_257
        Unsigned 8-bit integer
    tpncp.input_port_258  tpncp.input_port_258
        Unsigned 8-bit integer
    tpncp.input_port_259  tpncp.input_port_259
        Unsigned 8-bit integer
    tpncp.input_port_26  tpncp.input_port_26
        Unsigned 8-bit integer
    tpncp.input_port_260  tpncp.input_port_260
        Unsigned 8-bit integer
    tpncp.input_port_261  tpncp.input_port_261
        Unsigned 8-bit integer
    tpncp.input_port_262  tpncp.input_port_262
        Unsigned 8-bit integer
    tpncp.input_port_263  tpncp.input_port_263
        Unsigned 8-bit integer
    tpncp.input_port_264  tpncp.input_port_264
        Unsigned 8-bit integer
    tpncp.input_port_265  tpncp.input_port_265
        Unsigned 8-bit integer
    tpncp.input_port_266  tpncp.input_port_266
        Unsigned 8-bit integer
    tpncp.input_port_267  tpncp.input_port_267
        Unsigned 8-bit integer
    tpncp.input_port_268  tpncp.input_port_268
        Unsigned 8-bit integer
    tpncp.input_port_269  tpncp.input_port_269
        Unsigned 8-bit integer
    tpncp.input_port_27  tpncp.input_port_27
        Unsigned 8-bit integer
    tpncp.input_port_270  tpncp.input_port_270
        Unsigned 8-bit integer
    tpncp.input_port_271  tpncp.input_port_271
        Unsigned 8-bit integer
    tpncp.input_port_272  tpncp.input_port_272
        Unsigned 8-bit integer
    tpncp.input_port_273  tpncp.input_port_273
        Unsigned 8-bit integer
    tpncp.input_port_274  tpncp.input_port_274
        Unsigned 8-bit integer
    tpncp.input_port_275  tpncp.input_port_275
        Unsigned 8-bit integer
    tpncp.input_port_276  tpncp.input_port_276
        Unsigned 8-bit integer
    tpncp.input_port_277  tpncp.input_port_277
        Unsigned 8-bit integer
    tpncp.input_port_278  tpncp.input_port_278
        Unsigned 8-bit integer
    tpncp.input_port_279  tpncp.input_port_279
        Unsigned 8-bit integer
    tpncp.input_port_28  tpncp.input_port_28
        Unsigned 8-bit integer
    tpncp.input_port_280  tpncp.input_port_280
        Unsigned 8-bit integer
    tpncp.input_port_281  tpncp.input_port_281
        Unsigned 8-bit integer
    tpncp.input_port_282  tpncp.input_port_282
        Unsigned 8-bit integer
    tpncp.input_port_283  tpncp.input_port_283
        Unsigned 8-bit integer
    tpncp.input_port_284  tpncp.input_port_284
        Unsigned 8-bit integer
    tpncp.input_port_285  tpncp.input_port_285
        Unsigned 8-bit integer
    tpncp.input_port_286  tpncp.input_port_286
        Unsigned 8-bit integer
    tpncp.input_port_287  tpncp.input_port_287
        Unsigned 8-bit integer
    tpncp.input_port_288  tpncp.input_port_288
        Unsigned 8-bit integer
    tpncp.input_port_289  tpncp.input_port_289
        Unsigned 8-bit integer
    tpncp.input_port_29  tpncp.input_port_29
        Unsigned 8-bit integer
    tpncp.input_port_290  tpncp.input_port_290
        Unsigned 8-bit integer
    tpncp.input_port_291  tpncp.input_port_291
        Unsigned 8-bit integer
    tpncp.input_port_292  tpncp.input_port_292
        Unsigned 8-bit integer
    tpncp.input_port_293  tpncp.input_port_293
        Unsigned 8-bit integer
    tpncp.input_port_294  tpncp.input_port_294
        Unsigned 8-bit integer
    tpncp.input_port_295  tpncp.input_port_295
        Unsigned 8-bit integer
    tpncp.input_port_296  tpncp.input_port_296
        Unsigned 8-bit integer
    tpncp.input_port_297  tpncp.input_port_297
        Unsigned 8-bit integer
    tpncp.input_port_298  tpncp.input_port_298
        Unsigned 8-bit integer
    tpncp.input_port_299  tpncp.input_port_299
        Unsigned 8-bit integer
    tpncp.input_port_3  tpncp.input_port_3
        Unsigned 8-bit integer
    tpncp.input_port_30  tpncp.input_port_30
        Unsigned 8-bit integer
    tpncp.input_port_300  tpncp.input_port_300
        Unsigned 8-bit integer
    tpncp.input_port_301  tpncp.input_port_301
        Unsigned 8-bit integer
    tpncp.input_port_302  tpncp.input_port_302
        Unsigned 8-bit integer
    tpncp.input_port_303  tpncp.input_port_303
        Unsigned 8-bit integer
    tpncp.input_port_304  tpncp.input_port_304
        Unsigned 8-bit integer
    tpncp.input_port_305  tpncp.input_port_305
        Unsigned 8-bit integer
    tpncp.input_port_306  tpncp.input_port_306
        Unsigned 8-bit integer
    tpncp.input_port_307  tpncp.input_port_307
        Unsigned 8-bit integer
    tpncp.input_port_308  tpncp.input_port_308
        Unsigned 8-bit integer
    tpncp.input_port_309  tpncp.input_port_309
        Unsigned 8-bit integer
    tpncp.input_port_31  tpncp.input_port_31
        Unsigned 8-bit integer
    tpncp.input_port_310  tpncp.input_port_310
        Unsigned 8-bit integer
    tpncp.input_port_311  tpncp.input_port_311
        Unsigned 8-bit integer
    tpncp.input_port_312  tpncp.input_port_312
        Unsigned 8-bit integer
    tpncp.input_port_313  tpncp.input_port_313
        Unsigned 8-bit integer
    tpncp.input_port_314  tpncp.input_port_314
        Unsigned 8-bit integer
    tpncp.input_port_315  tpncp.input_port_315
        Unsigned 8-bit integer
    tpncp.input_port_316  tpncp.input_port_316
        Unsigned 8-bit integer
    tpncp.input_port_317  tpncp.input_port_317
        Unsigned 8-bit integer
    tpncp.input_port_318  tpncp.input_port_318
        Unsigned 8-bit integer
    tpncp.input_port_319  tpncp.input_port_319
        Unsigned 8-bit integer
    tpncp.input_port_32  tpncp.input_port_32
        Unsigned 8-bit integer
    tpncp.input_port_320  tpncp.input_port_320
        Unsigned 8-bit integer
    tpncp.input_port_321  tpncp.input_port_321
        Unsigned 8-bit integer
    tpncp.input_port_322  tpncp.input_port_322
        Unsigned 8-bit integer
    tpncp.input_port_323  tpncp.input_port_323
        Unsigned 8-bit integer
    tpncp.input_port_324  tpncp.input_port_324
        Unsigned 8-bit integer
    tpncp.input_port_325  tpncp.input_port_325
        Unsigned 8-bit integer
    tpncp.input_port_326  tpncp.input_port_326
        Unsigned 8-bit integer
    tpncp.input_port_327  tpncp.input_port_327
        Unsigned 8-bit integer
    tpncp.input_port_328  tpncp.input_port_328
        Unsigned 8-bit integer
    tpncp.input_port_329  tpncp.input_port_329
        Unsigned 8-bit integer
    tpncp.input_port_33  tpncp.input_port_33
        Unsigned 8-bit integer
    tpncp.input_port_330  tpncp.input_port_330
        Unsigned 8-bit integer
    tpncp.input_port_331  tpncp.input_port_331
        Unsigned 8-bit integer
    tpncp.input_port_332  tpncp.input_port_332
        Unsigned 8-bit integer
    tpncp.input_port_333  tpncp.input_port_333
        Unsigned 8-bit integer
    tpncp.input_port_334  tpncp.input_port_334
        Unsigned 8-bit integer
    tpncp.input_port_335  tpncp.input_port_335
        Unsigned 8-bit integer
    tpncp.input_port_336  tpncp.input_port_336
        Unsigned 8-bit integer
    tpncp.input_port_337  tpncp.input_port_337
        Unsigned 8-bit integer
    tpncp.input_port_338  tpncp.input_port_338
        Unsigned 8-bit integer
    tpncp.input_port_339  tpncp.input_port_339
        Unsigned 8-bit integer
    tpncp.input_port_34  tpncp.input_port_34
        Unsigned 8-bit integer
    tpncp.input_port_340  tpncp.input_port_340
        Unsigned 8-bit integer
    tpncp.input_port_341  tpncp.input_port_341
        Unsigned 8-bit integer
    tpncp.input_port_342  tpncp.input_port_342
        Unsigned 8-bit integer
    tpncp.input_port_343  tpncp.input_port_343
        Unsigned 8-bit integer
    tpncp.input_port_344  tpncp.input_port_344
        Unsigned 8-bit integer
    tpncp.input_port_345  tpncp.input_port_345
        Unsigned 8-bit integer
    tpncp.input_port_346  tpncp.input_port_346
        Unsigned 8-bit integer
    tpncp.input_port_347  tpncp.input_port_347
        Unsigned 8-bit integer
    tpncp.input_port_348  tpncp.input_port_348
        Unsigned 8-bit integer
    tpncp.input_port_349  tpncp.input_port_349
        Unsigned 8-bit integer
    tpncp.input_port_35  tpncp.input_port_35
        Unsigned 8-bit integer
    tpncp.input_port_350  tpncp.input_port_350
        Unsigned 8-bit integer
    tpncp.input_port_351  tpncp.input_port_351
        Unsigned 8-bit integer
    tpncp.input_port_352  tpncp.input_port_352
        Unsigned 8-bit integer
    tpncp.input_port_353  tpncp.input_port_353
        Unsigned 8-bit integer
    tpncp.input_port_354  tpncp.input_port_354
        Unsigned 8-bit integer
    tpncp.input_port_355  tpncp.input_port_355
        Unsigned 8-bit integer
    tpncp.input_port_356  tpncp.input_port_356
        Unsigned 8-bit integer
    tpncp.input_port_357  tpncp.input_port_357
        Unsigned 8-bit integer
    tpncp.input_port_358  tpncp.input_port_358
        Unsigned 8-bit integer
    tpncp.input_port_359  tpncp.input_port_359
        Unsigned 8-bit integer
    tpncp.input_port_36  tpncp.input_port_36
        Unsigned 8-bit integer
    tpncp.input_port_360  tpncp.input_port_360
        Unsigned 8-bit integer
    tpncp.input_port_361  tpncp.input_port_361
        Unsigned 8-bit integer
    tpncp.input_port_362  tpncp.input_port_362
        Unsigned 8-bit integer
    tpncp.input_port_363  tpncp.input_port_363
        Unsigned 8-bit integer
    tpncp.input_port_364  tpncp.input_port_364
        Unsigned 8-bit integer
    tpncp.input_port_365  tpncp.input_port_365
        Unsigned 8-bit integer
    tpncp.input_port_366  tpncp.input_port_366
        Unsigned 8-bit integer
    tpncp.input_port_367  tpncp.input_port_367
        Unsigned 8-bit integer
    tpncp.input_port_368  tpncp.input_port_368
        Unsigned 8-bit integer
    tpncp.input_port_369  tpncp.input_port_369
        Unsigned 8-bit integer
    tpncp.input_port_37  tpncp.input_port_37
        Unsigned 8-bit integer
    tpncp.input_port_370  tpncp.input_port_370
        Unsigned 8-bit integer
    tpncp.input_port_371  tpncp.input_port_371
        Unsigned 8-bit integer
    tpncp.input_port_372  tpncp.input_port_372
        Unsigned 8-bit integer
    tpncp.input_port_373  tpncp.input_port_373
        Unsigned 8-bit integer
    tpncp.input_port_374  tpncp.input_port_374
        Unsigned 8-bit integer
    tpncp.input_port_375  tpncp.input_port_375
        Unsigned 8-bit integer
    tpncp.input_port_376  tpncp.input_port_376
        Unsigned 8-bit integer
    tpncp.input_port_377  tpncp.input_port_377
        Unsigned 8-bit integer
    tpncp.input_port_378  tpncp.input_port_378
        Unsigned 8-bit integer
    tpncp.input_port_379  tpncp.input_port_379
        Unsigned 8-bit integer
    tpncp.input_port_38  tpncp.input_port_38
        Unsigned 8-bit integer
    tpncp.input_port_380  tpncp.input_port_380
        Unsigned 8-bit integer
    tpncp.input_port_381  tpncp.input_port_381
        Unsigned 8-bit integer
    tpncp.input_port_382  tpncp.input_port_382
        Unsigned 8-bit integer
    tpncp.input_port_383  tpncp.input_port_383
        Unsigned 8-bit integer
    tpncp.input_port_384  tpncp.input_port_384
        Unsigned 8-bit integer
    tpncp.input_port_385  tpncp.input_port_385
        Unsigned 8-bit integer
    tpncp.input_port_386  tpncp.input_port_386
        Unsigned 8-bit integer
    tpncp.input_port_387  tpncp.input_port_387
        Unsigned 8-bit integer
    tpncp.input_port_388  tpncp.input_port_388
        Unsigned 8-bit integer
    tpncp.input_port_389  tpncp.input_port_389
        Unsigned 8-bit integer
    tpncp.input_port_39  tpncp.input_port_39
        Unsigned 8-bit integer
    tpncp.input_port_390  tpncp.input_port_390
        Unsigned 8-bit integer
    tpncp.input_port_391  tpncp.input_port_391
        Unsigned 8-bit integer
    tpncp.input_port_392  tpncp.input_port_392
        Unsigned 8-bit integer
    tpncp.input_port_393  tpncp.input_port_393
        Unsigned 8-bit integer
    tpncp.input_port_394  tpncp.input_port_394
        Unsigned 8-bit integer
    tpncp.input_port_395  tpncp.input_port_395
        Unsigned 8-bit integer
    tpncp.input_port_396  tpncp.input_port_396
        Unsigned 8-bit integer
    tpncp.input_port_397  tpncp.input_port_397
        Unsigned 8-bit integer
    tpncp.input_port_398  tpncp.input_port_398
        Unsigned 8-bit integer
    tpncp.input_port_399  tpncp.input_port_399
        Unsigned 8-bit integer
    tpncp.input_port_4  tpncp.input_port_4
        Unsigned 8-bit integer
    tpncp.input_port_40  tpncp.input_port_40
        Unsigned 8-bit integer
    tpncp.input_port_400  tpncp.input_port_400
        Unsigned 8-bit integer
    tpncp.input_port_401  tpncp.input_port_401
        Unsigned 8-bit integer
    tpncp.input_port_402  tpncp.input_port_402
        Unsigned 8-bit integer
    tpncp.input_port_403  tpncp.input_port_403
        Unsigned 8-bit integer
    tpncp.input_port_404  tpncp.input_port_404
        Unsigned 8-bit integer
    tpncp.input_port_405  tpncp.input_port_405
        Unsigned 8-bit integer
    tpncp.input_port_406  tpncp.input_port_406
        Unsigned 8-bit integer
    tpncp.input_port_407  tpncp.input_port_407
        Unsigned 8-bit integer
    tpncp.input_port_408  tpncp.input_port_408
        Unsigned 8-bit integer
    tpncp.input_port_409  tpncp.input_port_409
        Unsigned 8-bit integer
    tpncp.input_port_41  tpncp.input_port_41
        Unsigned 8-bit integer
    tpncp.input_port_410  tpncp.input_port_410
        Unsigned 8-bit integer
    tpncp.input_port_411  tpncp.input_port_411
        Unsigned 8-bit integer
    tpncp.input_port_412  tpncp.input_port_412
        Unsigned 8-bit integer
    tpncp.input_port_413  tpncp.input_port_413
        Unsigned 8-bit integer
    tpncp.input_port_414  tpncp.input_port_414
        Unsigned 8-bit integer
    tpncp.input_port_415  tpncp.input_port_415
        Unsigned 8-bit integer
    tpncp.input_port_416  tpncp.input_port_416
        Unsigned 8-bit integer
    tpncp.input_port_417  tpncp.input_port_417
        Unsigned 8-bit integer
    tpncp.input_port_418  tpncp.input_port_418
        Unsigned 8-bit integer
    tpncp.input_port_419  tpncp.input_port_419
        Unsigned 8-bit integer
    tpncp.input_port_42  tpncp.input_port_42
        Unsigned 8-bit integer
    tpncp.input_port_420  tpncp.input_port_420
        Unsigned 8-bit integer
    tpncp.input_port_421  tpncp.input_port_421
        Unsigned 8-bit integer
    tpncp.input_port_422  tpncp.input_port_422
        Unsigned 8-bit integer
    tpncp.input_port_423  tpncp.input_port_423
        Unsigned 8-bit integer
    tpncp.input_port_424  tpncp.input_port_424
        Unsigned 8-bit integer
    tpncp.input_port_425  tpncp.input_port_425
        Unsigned 8-bit integer
    tpncp.input_port_426  tpncp.input_port_426
        Unsigned 8-bit integer
    tpncp.input_port_427  tpncp.input_port_427
        Unsigned 8-bit integer
    tpncp.input_port_428  tpncp.input_port_428
        Unsigned 8-bit integer
    tpncp.input_port_429  tpncp.input_port_429
        Unsigned 8-bit integer
    tpncp.input_port_43  tpncp.input_port_43
        Unsigned 8-bit integer
    tpncp.input_port_430  tpncp.input_port_430
        Unsigned 8-bit integer
    tpncp.input_port_431  tpncp.input_port_431
        Unsigned 8-bit integer
    tpncp.input_port_432  tpncp.input_port_432
        Unsigned 8-bit integer
    tpncp.input_port_433  tpncp.input_port_433
        Unsigned 8-bit integer
    tpncp.input_port_434  tpncp.input_port_434
        Unsigned 8-bit integer
    tpncp.input_port_435  tpncp.input_port_435
        Unsigned 8-bit integer
    tpncp.input_port_436  tpncp.input_port_436
        Unsigned 8-bit integer
    tpncp.input_port_437  tpncp.input_port_437
        Unsigned 8-bit integer
    tpncp.input_port_438  tpncp.input_port_438
        Unsigned 8-bit integer
    tpncp.input_port_439  tpncp.input_port_439
        Unsigned 8-bit integer
    tpncp.input_port_44  tpncp.input_port_44
        Unsigned 8-bit integer
    tpncp.input_port_440  tpncp.input_port_440
        Unsigned 8-bit integer
    tpncp.input_port_441  tpncp.input_port_441
        Unsigned 8-bit integer
    tpncp.input_port_442  tpncp.input_port_442
        Unsigned 8-bit integer
    tpncp.input_port_443  tpncp.input_port_443
        Unsigned 8-bit integer
    tpncp.input_port_444  tpncp.input_port_444
        Unsigned 8-bit integer
    tpncp.input_port_445  tpncp.input_port_445
        Unsigned 8-bit integer
    tpncp.input_port_446  tpncp.input_port_446
        Unsigned 8-bit integer
    tpncp.input_port_447  tpncp.input_port_447
        Unsigned 8-bit integer
    tpncp.input_port_448  tpncp.input_port_448
        Unsigned 8-bit integer
    tpncp.input_port_449  tpncp.input_port_449
        Unsigned 8-bit integer
    tpncp.input_port_45  tpncp.input_port_45
        Unsigned 8-bit integer
    tpncp.input_port_450  tpncp.input_port_450
        Unsigned 8-bit integer
    tpncp.input_port_451  tpncp.input_port_451
        Unsigned 8-bit integer
    tpncp.input_port_452  tpncp.input_port_452
        Unsigned 8-bit integer
    tpncp.input_port_453  tpncp.input_port_453
        Unsigned 8-bit integer
    tpncp.input_port_454  tpncp.input_port_454
        Unsigned 8-bit integer
    tpncp.input_port_455  tpncp.input_port_455
        Unsigned 8-bit integer
    tpncp.input_port_456  tpncp.input_port_456
        Unsigned 8-bit integer
    tpncp.input_port_457  tpncp.input_port_457
        Unsigned 8-bit integer
    tpncp.input_port_458  tpncp.input_port_458
        Unsigned 8-bit integer
    tpncp.input_port_459  tpncp.input_port_459
        Unsigned 8-bit integer
    tpncp.input_port_46  tpncp.input_port_46
        Unsigned 8-bit integer
    tpncp.input_port_460  tpncp.input_port_460
        Unsigned 8-bit integer
    tpncp.input_port_461  tpncp.input_port_461
        Unsigned 8-bit integer
    tpncp.input_port_462  tpncp.input_port_462
        Unsigned 8-bit integer
    tpncp.input_port_463  tpncp.input_port_463
        Unsigned 8-bit integer
    tpncp.input_port_464  tpncp.input_port_464
        Unsigned 8-bit integer
    tpncp.input_port_465  tpncp.input_port_465
        Unsigned 8-bit integer
    tpncp.input_port_466  tpncp.input_port_466
        Unsigned 8-bit integer
    tpncp.input_port_467  tpncp.input_port_467
        Unsigned 8-bit integer
    tpncp.input_port_468  tpncp.input_port_468
        Unsigned 8-bit integer
    tpncp.input_port_469  tpncp.input_port_469
        Unsigned 8-bit integer
    tpncp.input_port_47  tpncp.input_port_47
        Unsigned 8-bit integer
    tpncp.input_port_470  tpncp.input_port_470
        Unsigned 8-bit integer
    tpncp.input_port_471  tpncp.input_port_471
        Unsigned 8-bit integer
    tpncp.input_port_472  tpncp.input_port_472
        Unsigned 8-bit integer
    tpncp.input_port_473  tpncp.input_port_473
        Unsigned 8-bit integer
    tpncp.input_port_474  tpncp.input_port_474
        Unsigned 8-bit integer
    tpncp.input_port_475  tpncp.input_port_475
        Unsigned 8-bit integer
    tpncp.input_port_476  tpncp.input_port_476
        Unsigned 8-bit integer
    tpncp.input_port_477  tpncp.input_port_477
        Unsigned 8-bit integer
    tpncp.input_port_478  tpncp.input_port_478
        Unsigned 8-bit integer
    tpncp.input_port_479  tpncp.input_port_479
        Unsigned 8-bit integer
    tpncp.input_port_48  tpncp.input_port_48
        Unsigned 8-bit integer
    tpncp.input_port_480  tpncp.input_port_480
        Unsigned 8-bit integer
    tpncp.input_port_481  tpncp.input_port_481
        Unsigned 8-bit integer
    tpncp.input_port_482  tpncp.input_port_482
        Unsigned 8-bit integer
    tpncp.input_port_483  tpncp.input_port_483
        Unsigned 8-bit integer
    tpncp.input_port_484  tpncp.input_port_484
        Unsigned 8-bit integer
    tpncp.input_port_485  tpncp.input_port_485
        Unsigned 8-bit integer
    tpncp.input_port_486  tpncp.input_port_486
        Unsigned 8-bit integer
    tpncp.input_port_487  tpncp.input_port_487
        Unsigned 8-bit integer
    tpncp.input_port_488  tpncp.input_port_488
        Unsigned 8-bit integer
    tpncp.input_port_489  tpncp.input_port_489
        Unsigned 8-bit integer
    tpncp.input_port_49  tpncp.input_port_49
        Unsigned 8-bit integer
    tpncp.input_port_490  tpncp.input_port_490
        Unsigned 8-bit integer
    tpncp.input_port_491  tpncp.input_port_491
        Unsigned 8-bit integer
    tpncp.input_port_492  tpncp.input_port_492
        Unsigned 8-bit integer
    tpncp.input_port_493  tpncp.input_port_493
        Unsigned 8-bit integer
    tpncp.input_port_494  tpncp.input_port_494
        Unsigned 8-bit integer
    tpncp.input_port_495  tpncp.input_port_495
        Unsigned 8-bit integer
    tpncp.input_port_496  tpncp.input_port_496
        Unsigned 8-bit integer
    tpncp.input_port_497  tpncp.input_port_497
        Unsigned 8-bit integer
    tpncp.input_port_498  tpncp.input_port_498
        Unsigned 8-bit integer
    tpncp.input_port_499  tpncp.input_port_499
        Unsigned 8-bit integer
    tpncp.input_port_5  tpncp.input_port_5
        Unsigned 8-bit integer
    tpncp.input_port_50  tpncp.input_port_50
        Unsigned 8-bit integer
    tpncp.input_port_500  tpncp.input_port_500
        Unsigned 8-bit integer
    tpncp.input_port_501  tpncp.input_port_501
        Unsigned 8-bit integer
    tpncp.input_port_502  tpncp.input_port_502
        Unsigned 8-bit integer
    tpncp.input_port_503  tpncp.input_port_503
        Unsigned 8-bit integer
    tpncp.input_port_51  tpncp.input_port_51
        Unsigned 8-bit integer
    tpncp.input_port_52  tpncp.input_port_52
        Unsigned 8-bit integer
    tpncp.input_port_53  tpncp.input_port_53
        Unsigned 8-bit integer
    tpncp.input_port_54  tpncp.input_port_54
        Unsigned 8-bit integer
    tpncp.input_port_55  tpncp.input_port_55
        Unsigned 8-bit integer
    tpncp.input_port_56  tpncp.input_port_56
        Unsigned 8-bit integer
    tpncp.input_port_57  tpncp.input_port_57
        Unsigned 8-bit integer
    tpncp.input_port_58  tpncp.input_port_58
        Unsigned 8-bit integer
    tpncp.input_port_59  tpncp.input_port_59
        Unsigned 8-bit integer
    tpncp.input_port_6  tpncp.input_port_6
        Unsigned 8-bit integer
    tpncp.input_port_60  tpncp.input_port_60
        Unsigned 8-bit integer
    tpncp.input_port_61  tpncp.input_port_61
        Unsigned 8-bit integer
    tpncp.input_port_62  tpncp.input_port_62
        Unsigned 8-bit integer
    tpncp.input_port_63  tpncp.input_port_63
        Unsigned 8-bit integer
    tpncp.input_port_64  tpncp.input_port_64
        Unsigned 8-bit integer
    tpncp.input_port_65  tpncp.input_port_65
        Unsigned 8-bit integer
    tpncp.input_port_66  tpncp.input_port_66
        Unsigned 8-bit integer
    tpncp.input_port_67  tpncp.input_port_67
        Unsigned 8-bit integer
    tpncp.input_port_68  tpncp.input_port_68
        Unsigned 8-bit integer
    tpncp.input_port_69  tpncp.input_port_69
        Unsigned 8-bit integer
    tpncp.input_port_7  tpncp.input_port_7
        Unsigned 8-bit integer
    tpncp.input_port_70  tpncp.input_port_70
        Unsigned 8-bit integer
    tpncp.input_port_71  tpncp.input_port_71
        Unsigned 8-bit integer
    tpncp.input_port_72  tpncp.input_port_72
        Unsigned 8-bit integer
    tpncp.input_port_73  tpncp.input_port_73
        Unsigned 8-bit integer
    tpncp.input_port_74  tpncp.input_port_74
        Unsigned 8-bit integer
    tpncp.input_port_75  tpncp.input_port_75
        Unsigned 8-bit integer
    tpncp.input_port_76  tpncp.input_port_76
        Unsigned 8-bit integer
    tpncp.input_port_77  tpncp.input_port_77
        Unsigned 8-bit integer
    tpncp.input_port_78  tpncp.input_port_78
        Unsigned 8-bit integer
    tpncp.input_port_79  tpncp.input_port_79
        Unsigned 8-bit integer
    tpncp.input_port_8  tpncp.input_port_8
        Unsigned 8-bit integer
    tpncp.input_port_80  tpncp.input_port_80
        Unsigned 8-bit integer
    tpncp.input_port_81  tpncp.input_port_81
        Unsigned 8-bit integer
    tpncp.input_port_82  tpncp.input_port_82
        Unsigned 8-bit integer
    tpncp.input_port_83  tpncp.input_port_83
        Unsigned 8-bit integer
    tpncp.input_port_84  tpncp.input_port_84
        Unsigned 8-bit integer
    tpncp.input_port_85  tpncp.input_port_85
        Unsigned 8-bit integer
    tpncp.input_port_86  tpncp.input_port_86
        Unsigned 8-bit integer
    tpncp.input_port_87  tpncp.input_port_87
        Unsigned 8-bit integer
    tpncp.input_port_88  tpncp.input_port_88
        Unsigned 8-bit integer
    tpncp.input_port_89  tpncp.input_port_89
        Unsigned 8-bit integer
    tpncp.input_port_9  tpncp.input_port_9
        Unsigned 8-bit integer
    tpncp.input_port_90  tpncp.input_port_90
        Unsigned 8-bit integer
    tpncp.input_port_91  tpncp.input_port_91
        Unsigned 8-bit integer
    tpncp.input_port_92  tpncp.input_port_92
        Unsigned 8-bit integer
    tpncp.input_port_93  tpncp.input_port_93
        Unsigned 8-bit integer
    tpncp.input_port_94  tpncp.input_port_94
        Unsigned 8-bit integer
    tpncp.input_port_95  tpncp.input_port_95
        Unsigned 8-bit integer
    tpncp.input_port_96  tpncp.input_port_96
        Unsigned 8-bit integer
    tpncp.input_port_97  tpncp.input_port_97
        Unsigned 8-bit integer
    tpncp.input_port_98  tpncp.input_port_98
        Unsigned 8-bit integer
    tpncp.input_port_99  tpncp.input_port_99
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_0  tpncp.input_tdm_bus_0
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_1  tpncp.input_tdm_bus_1
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_10  tpncp.input_tdm_bus_10
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_100  tpncp.input_tdm_bus_100
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_101  tpncp.input_tdm_bus_101
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_102  tpncp.input_tdm_bus_102
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_103  tpncp.input_tdm_bus_103
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_104  tpncp.input_tdm_bus_104
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_105  tpncp.input_tdm_bus_105
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_106  tpncp.input_tdm_bus_106
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_107  tpncp.input_tdm_bus_107
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_108  tpncp.input_tdm_bus_108
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_109  tpncp.input_tdm_bus_109
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_11  tpncp.input_tdm_bus_11
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_110  tpncp.input_tdm_bus_110
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_111  tpncp.input_tdm_bus_111
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_112  tpncp.input_tdm_bus_112
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_113  tpncp.input_tdm_bus_113
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_114  tpncp.input_tdm_bus_114
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_115  tpncp.input_tdm_bus_115
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_116  tpncp.input_tdm_bus_116
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_117  tpncp.input_tdm_bus_117
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_118  tpncp.input_tdm_bus_118
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_119  tpncp.input_tdm_bus_119
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_12  tpncp.input_tdm_bus_12
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_120  tpncp.input_tdm_bus_120
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_121  tpncp.input_tdm_bus_121
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_122  tpncp.input_tdm_bus_122
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_123  tpncp.input_tdm_bus_123
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_124  tpncp.input_tdm_bus_124
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_125  tpncp.input_tdm_bus_125
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_126  tpncp.input_tdm_bus_126
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_127  tpncp.input_tdm_bus_127
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_128  tpncp.input_tdm_bus_128
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_129  tpncp.input_tdm_bus_129
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_13  tpncp.input_tdm_bus_13
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_130  tpncp.input_tdm_bus_130
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_131  tpncp.input_tdm_bus_131
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_132  tpncp.input_tdm_bus_132
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_133  tpncp.input_tdm_bus_133
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_134  tpncp.input_tdm_bus_134
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_135  tpncp.input_tdm_bus_135
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_136  tpncp.input_tdm_bus_136
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_137  tpncp.input_tdm_bus_137
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_138  tpncp.input_tdm_bus_138
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_139  tpncp.input_tdm_bus_139
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_14  tpncp.input_tdm_bus_14
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_140  tpncp.input_tdm_bus_140
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_141  tpncp.input_tdm_bus_141
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_142  tpncp.input_tdm_bus_142
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_143  tpncp.input_tdm_bus_143
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_144  tpncp.input_tdm_bus_144
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_145  tpncp.input_tdm_bus_145
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_146  tpncp.input_tdm_bus_146
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_147  tpncp.input_tdm_bus_147
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_148  tpncp.input_tdm_bus_148
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_149  tpncp.input_tdm_bus_149
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_15  tpncp.input_tdm_bus_15
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_150  tpncp.input_tdm_bus_150
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_151  tpncp.input_tdm_bus_151
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_152  tpncp.input_tdm_bus_152
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_153  tpncp.input_tdm_bus_153
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_154  tpncp.input_tdm_bus_154
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_155  tpncp.input_tdm_bus_155
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_156  tpncp.input_tdm_bus_156
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_157  tpncp.input_tdm_bus_157
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_158  tpncp.input_tdm_bus_158
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_159  tpncp.input_tdm_bus_159
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_16  tpncp.input_tdm_bus_16
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_160  tpncp.input_tdm_bus_160
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_161  tpncp.input_tdm_bus_161
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_162  tpncp.input_tdm_bus_162
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_163  tpncp.input_tdm_bus_163
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_164  tpncp.input_tdm_bus_164
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_165  tpncp.input_tdm_bus_165
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_166  tpncp.input_tdm_bus_166
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_167  tpncp.input_tdm_bus_167
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_168  tpncp.input_tdm_bus_168
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_169  tpncp.input_tdm_bus_169
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_17  tpncp.input_tdm_bus_17
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_170  tpncp.input_tdm_bus_170
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_171  tpncp.input_tdm_bus_171
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_172  tpncp.input_tdm_bus_172
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_173  tpncp.input_tdm_bus_173
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_174  tpncp.input_tdm_bus_174
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_175  tpncp.input_tdm_bus_175
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_176  tpncp.input_tdm_bus_176
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_177  tpncp.input_tdm_bus_177
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_178  tpncp.input_tdm_bus_178
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_179  tpncp.input_tdm_bus_179
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_18  tpncp.input_tdm_bus_18
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_180  tpncp.input_tdm_bus_180
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_181  tpncp.input_tdm_bus_181
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_182  tpncp.input_tdm_bus_182
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_183  tpncp.input_tdm_bus_183
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_184  tpncp.input_tdm_bus_184
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_185  tpncp.input_tdm_bus_185
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_186  tpncp.input_tdm_bus_186
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_187  tpncp.input_tdm_bus_187
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_188  tpncp.input_tdm_bus_188
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_189  tpncp.input_tdm_bus_189
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_19  tpncp.input_tdm_bus_19
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_190  tpncp.input_tdm_bus_190
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_191  tpncp.input_tdm_bus_191
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_192  tpncp.input_tdm_bus_192
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_193  tpncp.input_tdm_bus_193
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_194  tpncp.input_tdm_bus_194
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_195  tpncp.input_tdm_bus_195
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_196  tpncp.input_tdm_bus_196
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_197  tpncp.input_tdm_bus_197
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_198  tpncp.input_tdm_bus_198
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_199  tpncp.input_tdm_bus_199
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_2  tpncp.input_tdm_bus_2
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_20  tpncp.input_tdm_bus_20
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_200  tpncp.input_tdm_bus_200
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_201  tpncp.input_tdm_bus_201
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_202  tpncp.input_tdm_bus_202
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_203  tpncp.input_tdm_bus_203
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_204  tpncp.input_tdm_bus_204
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_205  tpncp.input_tdm_bus_205
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_206  tpncp.input_tdm_bus_206
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_207  tpncp.input_tdm_bus_207
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_208  tpncp.input_tdm_bus_208
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_209  tpncp.input_tdm_bus_209
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_21  tpncp.input_tdm_bus_21
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_210  tpncp.input_tdm_bus_210
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_211  tpncp.input_tdm_bus_211
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_212  tpncp.input_tdm_bus_212
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_213  tpncp.input_tdm_bus_213
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_214  tpncp.input_tdm_bus_214
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_215  tpncp.input_tdm_bus_215
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_216  tpncp.input_tdm_bus_216
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_217  tpncp.input_tdm_bus_217
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_218  tpncp.input_tdm_bus_218
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_219  tpncp.input_tdm_bus_219
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_22  tpncp.input_tdm_bus_22
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_220  tpncp.input_tdm_bus_220
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_221  tpncp.input_tdm_bus_221
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_222  tpncp.input_tdm_bus_222
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_223  tpncp.input_tdm_bus_223
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_224  tpncp.input_tdm_bus_224
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_225  tpncp.input_tdm_bus_225
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_226  tpncp.input_tdm_bus_226
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_227  tpncp.input_tdm_bus_227
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_228  tpncp.input_tdm_bus_228
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_229  tpncp.input_tdm_bus_229
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_23  tpncp.input_tdm_bus_23
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_230  tpncp.input_tdm_bus_230
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_231  tpncp.input_tdm_bus_231
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_232  tpncp.input_tdm_bus_232
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_233  tpncp.input_tdm_bus_233
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_234  tpncp.input_tdm_bus_234
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_235  tpncp.input_tdm_bus_235
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_236  tpncp.input_tdm_bus_236
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_237  tpncp.input_tdm_bus_237
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_238  tpncp.input_tdm_bus_238
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_239  tpncp.input_tdm_bus_239
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_24  tpncp.input_tdm_bus_24
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_240  tpncp.input_tdm_bus_240
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_241  tpncp.input_tdm_bus_241
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_242  tpncp.input_tdm_bus_242
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_243  tpncp.input_tdm_bus_243
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_244  tpncp.input_tdm_bus_244
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_245  tpncp.input_tdm_bus_245
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_246  tpncp.input_tdm_bus_246
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_247  tpncp.input_tdm_bus_247
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_248  tpncp.input_tdm_bus_248
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_249  tpncp.input_tdm_bus_249
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_25  tpncp.input_tdm_bus_25
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_250  tpncp.input_tdm_bus_250
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_251  tpncp.input_tdm_bus_251
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_252  tpncp.input_tdm_bus_252
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_253  tpncp.input_tdm_bus_253
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_254  tpncp.input_tdm_bus_254
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_255  tpncp.input_tdm_bus_255
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_256  tpncp.input_tdm_bus_256
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_257  tpncp.input_tdm_bus_257
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_258  tpncp.input_tdm_bus_258
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_259  tpncp.input_tdm_bus_259
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_26  tpncp.input_tdm_bus_26
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_260  tpncp.input_tdm_bus_260
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_261  tpncp.input_tdm_bus_261
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_262  tpncp.input_tdm_bus_262
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_263  tpncp.input_tdm_bus_263
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_264  tpncp.input_tdm_bus_264
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_265  tpncp.input_tdm_bus_265
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_266  tpncp.input_tdm_bus_266
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_267  tpncp.input_tdm_bus_267
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_268  tpncp.input_tdm_bus_268
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_269  tpncp.input_tdm_bus_269
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_27  tpncp.input_tdm_bus_27
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_270  tpncp.input_tdm_bus_270
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_271  tpncp.input_tdm_bus_271
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_272  tpncp.input_tdm_bus_272
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_273  tpncp.input_tdm_bus_273
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_274  tpncp.input_tdm_bus_274
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_275  tpncp.input_tdm_bus_275
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_276  tpncp.input_tdm_bus_276
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_277  tpncp.input_tdm_bus_277
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_278  tpncp.input_tdm_bus_278
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_279  tpncp.input_tdm_bus_279
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_28  tpncp.input_tdm_bus_28
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_280  tpncp.input_tdm_bus_280
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_281  tpncp.input_tdm_bus_281
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_282  tpncp.input_tdm_bus_282
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_283  tpncp.input_tdm_bus_283
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_284  tpncp.input_tdm_bus_284
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_285  tpncp.input_tdm_bus_285
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_286  tpncp.input_tdm_bus_286
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_287  tpncp.input_tdm_bus_287
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_288  tpncp.input_tdm_bus_288
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_289  tpncp.input_tdm_bus_289
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_29  tpncp.input_tdm_bus_29
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_290  tpncp.input_tdm_bus_290
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_291  tpncp.input_tdm_bus_291
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_292  tpncp.input_tdm_bus_292
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_293  tpncp.input_tdm_bus_293
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_294  tpncp.input_tdm_bus_294
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_295  tpncp.input_tdm_bus_295
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_296  tpncp.input_tdm_bus_296
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_297  tpncp.input_tdm_bus_297
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_298  tpncp.input_tdm_bus_298
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_299  tpncp.input_tdm_bus_299
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_3  tpncp.input_tdm_bus_3
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_30  tpncp.input_tdm_bus_30
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_300  tpncp.input_tdm_bus_300
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_301  tpncp.input_tdm_bus_301
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_302  tpncp.input_tdm_bus_302
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_303  tpncp.input_tdm_bus_303
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_304  tpncp.input_tdm_bus_304
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_305  tpncp.input_tdm_bus_305
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_306  tpncp.input_tdm_bus_306
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_307  tpncp.input_tdm_bus_307
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_308  tpncp.input_tdm_bus_308
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_309  tpncp.input_tdm_bus_309
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_31  tpncp.input_tdm_bus_31
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_310  tpncp.input_tdm_bus_310
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_311  tpncp.input_tdm_bus_311
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_312  tpncp.input_tdm_bus_312
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_313  tpncp.input_tdm_bus_313
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_314  tpncp.input_tdm_bus_314
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_315  tpncp.input_tdm_bus_315
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_316  tpncp.input_tdm_bus_316
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_317  tpncp.input_tdm_bus_317
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_318  tpncp.input_tdm_bus_318
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_319  tpncp.input_tdm_bus_319
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_32  tpncp.input_tdm_bus_32
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_320  tpncp.input_tdm_bus_320
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_321  tpncp.input_tdm_bus_321
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_322  tpncp.input_tdm_bus_322
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_323  tpncp.input_tdm_bus_323
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_324  tpncp.input_tdm_bus_324
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_325  tpncp.input_tdm_bus_325
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_326  tpncp.input_tdm_bus_326
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_327  tpncp.input_tdm_bus_327
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_328  tpncp.input_tdm_bus_328
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_329  tpncp.input_tdm_bus_329
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_33  tpncp.input_tdm_bus_33
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_330  tpncp.input_tdm_bus_330
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_331  tpncp.input_tdm_bus_331
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_332  tpncp.input_tdm_bus_332
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_333  tpncp.input_tdm_bus_333
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_334  tpncp.input_tdm_bus_334
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_335  tpncp.input_tdm_bus_335
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_336  tpncp.input_tdm_bus_336
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_337  tpncp.input_tdm_bus_337
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_338  tpncp.input_tdm_bus_338
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_339  tpncp.input_tdm_bus_339
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_34  tpncp.input_tdm_bus_34
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_340  tpncp.input_tdm_bus_340
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_341  tpncp.input_tdm_bus_341
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_342  tpncp.input_tdm_bus_342
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_343  tpncp.input_tdm_bus_343
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_344  tpncp.input_tdm_bus_344
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_345  tpncp.input_tdm_bus_345
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_346  tpncp.input_tdm_bus_346
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_347  tpncp.input_tdm_bus_347
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_348  tpncp.input_tdm_bus_348
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_349  tpncp.input_tdm_bus_349
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_35  tpncp.input_tdm_bus_35
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_350  tpncp.input_tdm_bus_350
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_351  tpncp.input_tdm_bus_351
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_352  tpncp.input_tdm_bus_352
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_353  tpncp.input_tdm_bus_353
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_354  tpncp.input_tdm_bus_354
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_355  tpncp.input_tdm_bus_355
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_356  tpncp.input_tdm_bus_356
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_357  tpncp.input_tdm_bus_357
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_358  tpncp.input_tdm_bus_358
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_359  tpncp.input_tdm_bus_359
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_36  tpncp.input_tdm_bus_36
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_360  tpncp.input_tdm_bus_360
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_361  tpncp.input_tdm_bus_361
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_362  tpncp.input_tdm_bus_362
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_363  tpncp.input_tdm_bus_363
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_364  tpncp.input_tdm_bus_364
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_365  tpncp.input_tdm_bus_365
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_366  tpncp.input_tdm_bus_366
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_367  tpncp.input_tdm_bus_367
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_368  tpncp.input_tdm_bus_368
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_369  tpncp.input_tdm_bus_369
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_37  tpncp.input_tdm_bus_37
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_370  tpncp.input_tdm_bus_370
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_371  tpncp.input_tdm_bus_371
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_372  tpncp.input_tdm_bus_372
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_373  tpncp.input_tdm_bus_373
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_374  tpncp.input_tdm_bus_374
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_375  tpncp.input_tdm_bus_375
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_376  tpncp.input_tdm_bus_376
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_377  tpncp.input_tdm_bus_377
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_378  tpncp.input_tdm_bus_378
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_379  tpncp.input_tdm_bus_379
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_38  tpncp.input_tdm_bus_38
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_380  tpncp.input_tdm_bus_380
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_381  tpncp.input_tdm_bus_381
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_382  tpncp.input_tdm_bus_382
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_383  tpncp.input_tdm_bus_383
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_384  tpncp.input_tdm_bus_384
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_385  tpncp.input_tdm_bus_385
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_386  tpncp.input_tdm_bus_386
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_387  tpncp.input_tdm_bus_387
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_388  tpncp.input_tdm_bus_388
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_389  tpncp.input_tdm_bus_389
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_39  tpncp.input_tdm_bus_39
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_390  tpncp.input_tdm_bus_390
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_391  tpncp.input_tdm_bus_391
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_392  tpncp.input_tdm_bus_392
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_393  tpncp.input_tdm_bus_393
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_394  tpncp.input_tdm_bus_394
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_395  tpncp.input_tdm_bus_395
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_396  tpncp.input_tdm_bus_396
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_397  tpncp.input_tdm_bus_397
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_398  tpncp.input_tdm_bus_398
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_399  tpncp.input_tdm_bus_399
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_4  tpncp.input_tdm_bus_4
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_40  tpncp.input_tdm_bus_40
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_400  tpncp.input_tdm_bus_400
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_401  tpncp.input_tdm_bus_401
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_402  tpncp.input_tdm_bus_402
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_403  tpncp.input_tdm_bus_403
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_404  tpncp.input_tdm_bus_404
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_405  tpncp.input_tdm_bus_405
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_406  tpncp.input_tdm_bus_406
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_407  tpncp.input_tdm_bus_407
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_408  tpncp.input_tdm_bus_408
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_409  tpncp.input_tdm_bus_409
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_41  tpncp.input_tdm_bus_41
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_410  tpncp.input_tdm_bus_410
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_411  tpncp.input_tdm_bus_411
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_412  tpncp.input_tdm_bus_412
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_413  tpncp.input_tdm_bus_413
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_414  tpncp.input_tdm_bus_414
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_415  tpncp.input_tdm_bus_415
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_416  tpncp.input_tdm_bus_416
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_417  tpncp.input_tdm_bus_417
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_418  tpncp.input_tdm_bus_418
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_419  tpncp.input_tdm_bus_419
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_42  tpncp.input_tdm_bus_42
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_420  tpncp.input_tdm_bus_420
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_421  tpncp.input_tdm_bus_421
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_422  tpncp.input_tdm_bus_422
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_423  tpncp.input_tdm_bus_423
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_424  tpncp.input_tdm_bus_424
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_425  tpncp.input_tdm_bus_425
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_426  tpncp.input_tdm_bus_426
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_427  tpncp.input_tdm_bus_427
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_428  tpncp.input_tdm_bus_428
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_429  tpncp.input_tdm_bus_429
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_43  tpncp.input_tdm_bus_43
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_430  tpncp.input_tdm_bus_430
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_431  tpncp.input_tdm_bus_431
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_432  tpncp.input_tdm_bus_432
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_433  tpncp.input_tdm_bus_433
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_434  tpncp.input_tdm_bus_434
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_435  tpncp.input_tdm_bus_435
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_436  tpncp.input_tdm_bus_436
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_437  tpncp.input_tdm_bus_437
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_438  tpncp.input_tdm_bus_438
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_439  tpncp.input_tdm_bus_439
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_44  tpncp.input_tdm_bus_44
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_440  tpncp.input_tdm_bus_440
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_441  tpncp.input_tdm_bus_441
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_442  tpncp.input_tdm_bus_442
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_443  tpncp.input_tdm_bus_443
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_444  tpncp.input_tdm_bus_444
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_445  tpncp.input_tdm_bus_445
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_446  tpncp.input_tdm_bus_446
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_447  tpncp.input_tdm_bus_447
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_448  tpncp.input_tdm_bus_448
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_449  tpncp.input_tdm_bus_449
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_45  tpncp.input_tdm_bus_45
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_450  tpncp.input_tdm_bus_450
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_451  tpncp.input_tdm_bus_451
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_452  tpncp.input_tdm_bus_452
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_453  tpncp.input_tdm_bus_453
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_454  tpncp.input_tdm_bus_454
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_455  tpncp.input_tdm_bus_455
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_456  tpncp.input_tdm_bus_456
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_457  tpncp.input_tdm_bus_457
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_458  tpncp.input_tdm_bus_458
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_459  tpncp.input_tdm_bus_459
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_46  tpncp.input_tdm_bus_46
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_460  tpncp.input_tdm_bus_460
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_461  tpncp.input_tdm_bus_461
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_462  tpncp.input_tdm_bus_462
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_463  tpncp.input_tdm_bus_463
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_464  tpncp.input_tdm_bus_464
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_465  tpncp.input_tdm_bus_465
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_466  tpncp.input_tdm_bus_466
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_467  tpncp.input_tdm_bus_467
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_468  tpncp.input_tdm_bus_468
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_469  tpncp.input_tdm_bus_469
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_47  tpncp.input_tdm_bus_47
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_470  tpncp.input_tdm_bus_470
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_471  tpncp.input_tdm_bus_471
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_472  tpncp.input_tdm_bus_472
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_473  tpncp.input_tdm_bus_473
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_474  tpncp.input_tdm_bus_474
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_475  tpncp.input_tdm_bus_475
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_476  tpncp.input_tdm_bus_476
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_477  tpncp.input_tdm_bus_477
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_478  tpncp.input_tdm_bus_478
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_479  tpncp.input_tdm_bus_479
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_48  tpncp.input_tdm_bus_48
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_480  tpncp.input_tdm_bus_480
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_481  tpncp.input_tdm_bus_481
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_482  tpncp.input_tdm_bus_482
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_483  tpncp.input_tdm_bus_483
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_484  tpncp.input_tdm_bus_484
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_485  tpncp.input_tdm_bus_485
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_486  tpncp.input_tdm_bus_486
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_487  tpncp.input_tdm_bus_487
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_488  tpncp.input_tdm_bus_488
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_489  tpncp.input_tdm_bus_489
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_49  tpncp.input_tdm_bus_49
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_490  tpncp.input_tdm_bus_490
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_491  tpncp.input_tdm_bus_491
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_492  tpncp.input_tdm_bus_492
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_493  tpncp.input_tdm_bus_493
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_494  tpncp.input_tdm_bus_494
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_495  tpncp.input_tdm_bus_495
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_496  tpncp.input_tdm_bus_496
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_497  tpncp.input_tdm_bus_497
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_498  tpncp.input_tdm_bus_498
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_499  tpncp.input_tdm_bus_499
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_5  tpncp.input_tdm_bus_5
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_50  tpncp.input_tdm_bus_50
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_500  tpncp.input_tdm_bus_500
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_501  tpncp.input_tdm_bus_501
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_502  tpncp.input_tdm_bus_502
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_503  tpncp.input_tdm_bus_503
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_51  tpncp.input_tdm_bus_51
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_52  tpncp.input_tdm_bus_52
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_53  tpncp.input_tdm_bus_53
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_54  tpncp.input_tdm_bus_54
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_55  tpncp.input_tdm_bus_55
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_56  tpncp.input_tdm_bus_56
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_57  tpncp.input_tdm_bus_57
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_58  tpncp.input_tdm_bus_58
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_59  tpncp.input_tdm_bus_59
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_6  tpncp.input_tdm_bus_6
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_60  tpncp.input_tdm_bus_60
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_61  tpncp.input_tdm_bus_61
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_62  tpncp.input_tdm_bus_62
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_63  tpncp.input_tdm_bus_63
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_64  tpncp.input_tdm_bus_64
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_65  tpncp.input_tdm_bus_65
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_66  tpncp.input_tdm_bus_66
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_67  tpncp.input_tdm_bus_67
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_68  tpncp.input_tdm_bus_68
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_69  tpncp.input_tdm_bus_69
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_7  tpncp.input_tdm_bus_7
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_70  tpncp.input_tdm_bus_70
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_71  tpncp.input_tdm_bus_71
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_72  tpncp.input_tdm_bus_72
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_73  tpncp.input_tdm_bus_73
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_74  tpncp.input_tdm_bus_74
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_75  tpncp.input_tdm_bus_75
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_76  tpncp.input_tdm_bus_76
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_77  tpncp.input_tdm_bus_77
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_78  tpncp.input_tdm_bus_78
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_79  tpncp.input_tdm_bus_79
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_8  tpncp.input_tdm_bus_8
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_80  tpncp.input_tdm_bus_80
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_81  tpncp.input_tdm_bus_81
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_82  tpncp.input_tdm_bus_82
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_83  tpncp.input_tdm_bus_83
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_84  tpncp.input_tdm_bus_84
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_85  tpncp.input_tdm_bus_85
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_86  tpncp.input_tdm_bus_86
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_87  tpncp.input_tdm_bus_87
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_88  tpncp.input_tdm_bus_88
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_89  tpncp.input_tdm_bus_89
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_9  tpncp.input_tdm_bus_9
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_90  tpncp.input_tdm_bus_90
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_91  tpncp.input_tdm_bus_91
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_92  tpncp.input_tdm_bus_92
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_93  tpncp.input_tdm_bus_93
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_94  tpncp.input_tdm_bus_94
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_95  tpncp.input_tdm_bus_95
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_96  tpncp.input_tdm_bus_96
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_97  tpncp.input_tdm_bus_97
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_98  tpncp.input_tdm_bus_98
        Unsigned 8-bit integer
    tpncp.input_tdm_bus_99  tpncp.input_tdm_bus_99
        Unsigned 8-bit integer
    tpncp.input_time_slot_0  tpncp.input_time_slot_0
        Unsigned 16-bit integer
    tpncp.input_time_slot_1  tpncp.input_time_slot_1
        Unsigned 16-bit integer
    tpncp.input_time_slot_10  tpncp.input_time_slot_10
        Unsigned 16-bit integer
    tpncp.input_time_slot_100  tpncp.input_time_slot_100
        Unsigned 16-bit integer
    tpncp.input_time_slot_101  tpncp.input_time_slot_101
        Unsigned 16-bit integer
    tpncp.input_time_slot_102  tpncp.input_time_slot_102
        Unsigned 16-bit integer
    tpncp.input_time_slot_103  tpncp.input_time_slot_103
        Unsigned 16-bit integer
    tpncp.input_time_slot_104  tpncp.input_time_slot_104
        Unsigned 16-bit integer
    tpncp.input_time_slot_105  tpncp.input_time_slot_105
        Unsigned 16-bit integer
    tpncp.input_time_slot_106  tpncp.input_time_slot_106
        Unsigned 16-bit integer
    tpncp.input_time_slot_107  tpncp.input_time_slot_107
        Unsigned 16-bit integer
    tpncp.input_time_slot_108  tpncp.input_time_slot_108
        Unsigned 16-bit integer
    tpncp.input_time_slot_109  tpncp.input_time_slot_109
        Unsigned 16-bit integer
    tpncp.input_time_slot_11  tpncp.input_time_slot_11
        Unsigned 16-bit integer
    tpncp.input_time_slot_110  tpncp.input_time_slot_110
        Unsigned 16-bit integer
    tpncp.input_time_slot_111  tpncp.input_time_slot_111
        Unsigned 16-bit integer
    tpncp.input_time_slot_112  tpncp.input_time_slot_112
        Unsigned 16-bit integer
    tpncp.input_time_slot_113  tpncp.input_time_slot_113
        Unsigned 16-bit integer
    tpncp.input_time_slot_114  tpncp.input_time_slot_114
        Unsigned 16-bit integer
    tpncp.input_time_slot_115  tpncp.input_time_slot_115
        Unsigned 16-bit integer
    tpncp.input_time_slot_116  tpncp.input_time_slot_116
        Unsigned 16-bit integer
    tpncp.input_time_slot_117  tpncp.input_time_slot_117
        Unsigned 16-bit integer
    tpncp.input_time_slot_118  tpncp.input_time_slot_118
        Unsigned 16-bit integer
    tpncp.input_time_slot_119  tpncp.input_time_slot_119
        Unsigned 16-bit integer
    tpncp.input_time_slot_12  tpncp.input_time_slot_12
        Unsigned 16-bit integer
    tpncp.input_time_slot_120  tpncp.input_time_slot_120
        Unsigned 16-bit integer
    tpncp.input_time_slot_121  tpncp.input_time_slot_121
        Unsigned 16-bit integer
    tpncp.input_time_slot_122  tpncp.input_time_slot_122
        Unsigned 16-bit integer
    tpncp.input_time_slot_123  tpncp.input_time_slot_123
        Unsigned 16-bit integer
    tpncp.input_time_slot_124  tpncp.input_time_slot_124
        Unsigned 16-bit integer
    tpncp.input_time_slot_125  tpncp.input_time_slot_125
        Unsigned 16-bit integer
    tpncp.input_time_slot_126  tpncp.input_time_slot_126
        Unsigned 16-bit integer
    tpncp.input_time_slot_127  tpncp.input_time_slot_127
        Unsigned 16-bit integer
    tpncp.input_time_slot_128  tpncp.input_time_slot_128
        Unsigned 16-bit integer
    tpncp.input_time_slot_129  tpncp.input_time_slot_129
        Unsigned 16-bit integer
    tpncp.input_time_slot_13  tpncp.input_time_slot_13
        Unsigned 16-bit integer
    tpncp.input_time_slot_130  tpncp.input_time_slot_130
        Unsigned 16-bit integer
    tpncp.input_time_slot_131  tpncp.input_time_slot_131
        Unsigned 16-bit integer
    tpncp.input_time_slot_132  tpncp.input_time_slot_132
        Unsigned 16-bit integer
    tpncp.input_time_slot_133  tpncp.input_time_slot_133
        Unsigned 16-bit integer
    tpncp.input_time_slot_134  tpncp.input_time_slot_134
        Unsigned 16-bit integer
    tpncp.input_time_slot_135  tpncp.input_time_slot_135
        Unsigned 16-bit integer
    tpncp.input_time_slot_136  tpncp.input_time_slot_136
        Unsigned 16-bit integer
    tpncp.input_time_slot_137  tpncp.input_time_slot_137
        Unsigned 16-bit integer
    tpncp.input_time_slot_138  tpncp.input_time_slot_138
        Unsigned 16-bit integer
    tpncp.input_time_slot_139  tpncp.input_time_slot_139
        Unsigned 16-bit integer
    tpncp.input_time_slot_14  tpncp.input_time_slot_14
        Unsigned 16-bit integer
    tpncp.input_time_slot_140  tpncp.input_time_slot_140
        Unsigned 16-bit integer
    tpncp.input_time_slot_141  tpncp.input_time_slot_141
        Unsigned 16-bit integer
    tpncp.input_time_slot_142  tpncp.input_time_slot_142
        Unsigned 16-bit integer
    tpncp.input_time_slot_143  tpncp.input_time_slot_143
        Unsigned 16-bit integer
    tpncp.input_time_slot_144  tpncp.input_time_slot_144
        Unsigned 16-bit integer
    tpncp.input_time_slot_145  tpncp.input_time_slot_145
        Unsigned 16-bit integer
    tpncp.input_time_slot_146  tpncp.input_time_slot_146
        Unsigned 16-bit integer
    tpncp.input_time_slot_147  tpncp.input_time_slot_147
        Unsigned 16-bit integer
    tpncp.input_time_slot_148  tpncp.input_time_slot_148
        Unsigned 16-bit integer
    tpncp.input_time_slot_149  tpncp.input_time_slot_149
        Unsigned 16-bit integer
    tpncp.input_time_slot_15  tpncp.input_time_slot_15
        Unsigned 16-bit integer
    tpncp.input_time_slot_150  tpncp.input_time_slot_150
        Unsigned 16-bit integer
    tpncp.input_time_slot_151  tpncp.input_time_slot_151
        Unsigned 16-bit integer
    tpncp.input_time_slot_152  tpncp.input_time_slot_152
        Unsigned 16-bit integer
    tpncp.input_time_slot_153  tpncp.input_time_slot_153
        Unsigned 16-bit integer
    tpncp.input_time_slot_154  tpncp.input_time_slot_154
        Unsigned 16-bit integer
    tpncp.input_time_slot_155  tpncp.input_time_slot_155
        Unsigned 16-bit integer
    tpncp.input_time_slot_156  tpncp.input_time_slot_156
        Unsigned 16-bit integer
    tpncp.input_time_slot_157  tpncp.input_time_slot_157
        Unsigned 16-bit integer
    tpncp.input_time_slot_158  tpncp.input_time_slot_158
        Unsigned 16-bit integer
    tpncp.input_time_slot_159  tpncp.input_time_slot_159
        Unsigned 16-bit integer
    tpncp.input_time_slot_16  tpncp.input_time_slot_16
        Unsigned 16-bit integer
    tpncp.input_time_slot_160  tpncp.input_time_slot_160
        Unsigned 16-bit integer
    tpncp.input_time_slot_161  tpncp.input_time_slot_161
        Unsigned 16-bit integer
    tpncp.input_time_slot_162  tpncp.input_time_slot_162
        Unsigned 16-bit integer
    tpncp.input_time_slot_163  tpncp.input_time_slot_163
        Unsigned 16-bit integer
    tpncp.input_time_slot_164  tpncp.input_time_slot_164
        Unsigned 16-bit integer
    tpncp.input_time_slot_165  tpncp.input_time_slot_165
        Unsigned 16-bit integer
    tpncp.input_time_slot_166  tpncp.input_time_slot_166
        Unsigned 16-bit integer
    tpncp.input_time_slot_167  tpncp.input_time_slot_167
        Unsigned 16-bit integer
    tpncp.input_time_slot_168  tpncp.input_time_slot_168
        Unsigned 16-bit integer
    tpncp.input_time_slot_169  tpncp.input_time_slot_169
        Unsigned 16-bit integer
    tpncp.input_time_slot_17  tpncp.input_time_slot_17
        Unsigned 16-bit integer
    tpncp.input_time_slot_170  tpncp.input_time_slot_170
        Unsigned 16-bit integer
    tpncp.input_time_slot_171  tpncp.input_time_slot_171
        Unsigned 16-bit integer
    tpncp.input_time_slot_172  tpncp.input_time_slot_172
        Unsigned 16-bit integer
    tpncp.input_time_slot_173  tpncp.input_time_slot_173
        Unsigned 16-bit integer
    tpncp.input_time_slot_174  tpncp.input_time_slot_174
        Unsigned 16-bit integer
    tpncp.input_time_slot_175  tpncp.input_time_slot_175
        Unsigned 16-bit integer
    tpncp.input_time_slot_176  tpncp.input_time_slot_176
        Unsigned 16-bit integer
    tpncp.input_time_slot_177  tpncp.input_time_slot_177
        Unsigned 16-bit integer
    tpncp.input_time_slot_178  tpncp.input_time_slot_178
        Unsigned 16-bit integer
    tpncp.input_time_slot_179  tpncp.input_time_slot_179
        Unsigned 16-bit integer
    tpncp.input_time_slot_18  tpncp.input_time_slot_18
        Unsigned 16-bit integer
    tpncp.input_time_slot_180  tpncp.input_time_slot_180
        Unsigned 16-bit integer
    tpncp.input_time_slot_181  tpncp.input_time_slot_181
        Unsigned 16-bit integer
    tpncp.input_time_slot_182  tpncp.input_time_slot_182
        Unsigned 16-bit integer
    tpncp.input_time_slot_183  tpncp.input_time_slot_183
        Unsigned 16-bit integer
    tpncp.input_time_slot_184  tpncp.input_time_slot_184
        Unsigned 16-bit integer
    tpncp.input_time_slot_185  tpncp.input_time_slot_185
        Unsigned 16-bit integer
    tpncp.input_time_slot_186  tpncp.input_time_slot_186
        Unsigned 16-bit integer
    tpncp.input_time_slot_187  tpncp.input_time_slot_187
        Unsigned 16-bit integer
    tpncp.input_time_slot_188  tpncp.input_time_slot_188
        Unsigned 16-bit integer
    tpncp.input_time_slot_189  tpncp.input_time_slot_189
        Unsigned 16-bit integer
    tpncp.input_time_slot_19  tpncp.input_time_slot_19
        Unsigned 16-bit integer
    tpncp.input_time_slot_190  tpncp.input_time_slot_190
        Unsigned 16-bit integer
    tpncp.input_time_slot_191  tpncp.input_time_slot_191
        Unsigned 16-bit integer
    tpncp.input_time_slot_192  tpncp.input_time_slot_192
        Unsigned 16-bit integer
    tpncp.input_time_slot_193  tpncp.input_time_slot_193
        Unsigned 16-bit integer
    tpncp.input_time_slot_194  tpncp.input_time_slot_194
        Unsigned 16-bit integer
    tpncp.input_time_slot_195  tpncp.input_time_slot_195
        Unsigned 16-bit integer
    tpncp.input_time_slot_196  tpncp.input_time_slot_196
        Unsigned 16-bit integer
    tpncp.input_time_slot_197  tpncp.input_time_slot_197
        Unsigned 16-bit integer
    tpncp.input_time_slot_198  tpncp.input_time_slot_198
        Unsigned 16-bit integer
    tpncp.input_time_slot_199  tpncp.input_time_slot_199
        Unsigned 16-bit integer
    tpncp.input_time_slot_2  tpncp.input_time_slot_2
        Unsigned 16-bit integer
    tpncp.input_time_slot_20  tpncp.input_time_slot_20
        Unsigned 16-bit integer
    tpncp.input_time_slot_200  tpncp.input_time_slot_200
        Unsigned 16-bit integer
    tpncp.input_time_slot_201  tpncp.input_time_slot_201
        Unsigned 16-bit integer
    tpncp.input_time_slot_202  tpncp.input_time_slot_202
        Unsigned 16-bit integer
    tpncp.input_time_slot_203  tpncp.input_time_slot_203
        Unsigned 16-bit integer
    tpncp.input_time_slot_204  tpncp.input_time_slot_204
        Unsigned 16-bit integer
    tpncp.input_time_slot_205  tpncp.input_time_slot_205
        Unsigned 16-bit integer
    tpncp.input_time_slot_206  tpncp.input_time_slot_206
        Unsigned 16-bit integer
    tpncp.input_time_slot_207  tpncp.input_time_slot_207
        Unsigned 16-bit integer
    tpncp.input_time_slot_208  tpncp.input_time_slot_208
        Unsigned 16-bit integer
    tpncp.input_time_slot_209  tpncp.input_time_slot_209
        Unsigned 16-bit integer
    tpncp.input_time_slot_21  tpncp.input_time_slot_21
        Unsigned 16-bit integer
    tpncp.input_time_slot_210  tpncp.input_time_slot_210
        Unsigned 16-bit integer
    tpncp.input_time_slot_211  tpncp.input_time_slot_211
        Unsigned 16-bit integer
    tpncp.input_time_slot_212  tpncp.input_time_slot_212
        Unsigned 16-bit integer
    tpncp.input_time_slot_213  tpncp.input_time_slot_213
        Unsigned 16-bit integer
    tpncp.input_time_slot_214  tpncp.input_time_slot_214
        Unsigned 16-bit integer
    tpncp.input_time_slot_215  tpncp.input_time_slot_215
        Unsigned 16-bit integer
    tpncp.input_time_slot_216  tpncp.input_time_slot_216
        Unsigned 16-bit integer
    tpncp.input_time_slot_217  tpncp.input_time_slot_217
        Unsigned 16-bit integer
    tpncp.input_time_slot_218  tpncp.input_time_slot_218
        Unsigned 16-bit integer
    tpncp.input_time_slot_219  tpncp.input_time_slot_219
        Unsigned 16-bit integer
    tpncp.input_time_slot_22  tpncp.input_time_slot_22
        Unsigned 16-bit integer
    tpncp.input_time_slot_220  tpncp.input_time_slot_220
        Unsigned 16-bit integer
    tpncp.input_time_slot_221  tpncp.input_time_slot_221
        Unsigned 16-bit integer
    tpncp.input_time_slot_222  tpncp.input_time_slot_222
        Unsigned 16-bit integer
    tpncp.input_time_slot_223  tpncp.input_time_slot_223
        Unsigned 16-bit integer
    tpncp.input_time_slot_224  tpncp.input_time_slot_224
        Unsigned 16-bit integer
    tpncp.input_time_slot_225  tpncp.input_time_slot_225
        Unsigned 16-bit integer
    tpncp.input_time_slot_226  tpncp.input_time_slot_226
        Unsigned 16-bit integer
    tpncp.input_time_slot_227  tpncp.input_time_slot_227
        Unsigned 16-bit integer
    tpncp.input_time_slot_228  tpncp.input_time_slot_228
        Unsigned 16-bit integer
    tpncp.input_time_slot_229  tpncp.input_time_slot_229
        Unsigned 16-bit integer
    tpncp.input_time_slot_23  tpncp.input_time_slot_23
        Unsigned 16-bit integer
    tpncp.input_time_slot_230  tpncp.input_time_slot_230
        Unsigned 16-bit integer
    tpncp.input_time_slot_231  tpncp.input_time_slot_231
        Unsigned 16-bit integer
    tpncp.input_time_slot_232  tpncp.input_time_slot_232
        Unsigned 16-bit integer
    tpncp.input_time_slot_233  tpncp.input_time_slot_233
        Unsigned 16-bit integer
    tpncp.input_time_slot_234  tpncp.input_time_slot_234
        Unsigned 16-bit integer
    tpncp.input_time_slot_235  tpncp.input_time_slot_235
        Unsigned 16-bit integer
    tpncp.input_time_slot_236  tpncp.input_time_slot_236
        Unsigned 16-bit integer
    tpncp.input_time_slot_237  tpncp.input_time_slot_237
        Unsigned 16-bit integer
    tpncp.input_time_slot_238  tpncp.input_time_slot_238
        Unsigned 16-bit integer
    tpncp.input_time_slot_239  tpncp.input_time_slot_239
        Unsigned 16-bit integer
    tpncp.input_time_slot_24  tpncp.input_time_slot_24
        Unsigned 16-bit integer
    tpncp.input_time_slot_240  tpncp.input_time_slot_240
        Unsigned 16-bit integer
    tpncp.input_time_slot_241  tpncp.input_time_slot_241
        Unsigned 16-bit integer
    tpncp.input_time_slot_242  tpncp.input_time_slot_242
        Unsigned 16-bit integer
    tpncp.input_time_slot_243  tpncp.input_time_slot_243
        Unsigned 16-bit integer
    tpncp.input_time_slot_244  tpncp.input_time_slot_244
        Unsigned 16-bit integer
    tpncp.input_time_slot_245  tpncp.input_time_slot_245
        Unsigned 16-bit integer
    tpncp.input_time_slot_246  tpncp.input_time_slot_246
        Unsigned 16-bit integer
    tpncp.input_time_slot_247  tpncp.input_time_slot_247
        Unsigned 16-bit integer
    tpncp.input_time_slot_248  tpncp.input_time_slot_248
        Unsigned 16-bit integer
    tpncp.input_time_slot_249  tpncp.input_time_slot_249
        Unsigned 16-bit integer
    tpncp.input_time_slot_25  tpncp.input_time_slot_25
        Unsigned 16-bit integer
    tpncp.input_time_slot_250  tpncp.input_time_slot_250
        Unsigned 16-bit integer
    tpncp.input_time_slot_251  tpncp.input_time_slot_251
        Unsigned 16-bit integer
    tpncp.input_time_slot_252  tpncp.input_time_slot_252
        Unsigned 16-bit integer
    tpncp.input_time_slot_253  tpncp.input_time_slot_253
        Unsigned 16-bit integer
    tpncp.input_time_slot_254  tpncp.input_time_slot_254
        Unsigned 16-bit integer
    tpncp.input_time_slot_255  tpncp.input_time_slot_255
        Unsigned 16-bit integer
    tpncp.input_time_slot_256  tpncp.input_time_slot_256
        Unsigned 16-bit integer
    tpncp.input_time_slot_257  tpncp.input_time_slot_257
        Unsigned 16-bit integer
    tpncp.input_time_slot_258  tpncp.input_time_slot_258
        Unsigned 16-bit integer
    tpncp.input_time_slot_259  tpncp.input_time_slot_259
        Unsigned 16-bit integer
    tpncp.input_time_slot_26  tpncp.input_time_slot_26
        Unsigned 16-bit integer
    tpncp.input_time_slot_260  tpncp.input_time_slot_260
        Unsigned 16-bit integer
    tpncp.input_time_slot_261  tpncp.input_time_slot_261
        Unsigned 16-bit integer
    tpncp.input_time_slot_262  tpncp.input_time_slot_262
        Unsigned 16-bit integer
    tpncp.input_time_slot_263  tpncp.input_time_slot_263
        Unsigned 16-bit integer
    tpncp.input_time_slot_264  tpncp.input_time_slot_264
        Unsigned 16-bit integer
    tpncp.input_time_slot_265  tpncp.input_time_slot_265
        Unsigned 16-bit integer
    tpncp.input_time_slot_266  tpncp.input_time_slot_266
        Unsigned 16-bit integer
    tpncp.input_time_slot_267  tpncp.input_time_slot_267
        Unsigned 16-bit integer
    tpncp.input_time_slot_268  tpncp.input_time_slot_268
        Unsigned 16-bit integer
    tpncp.input_time_slot_269  tpncp.input_time_slot_269
        Unsigned 16-bit integer
    tpncp.input_time_slot_27  tpncp.input_time_slot_27
        Unsigned 16-bit integer
    tpncp.input_time_slot_270  tpncp.input_time_slot_270
        Unsigned 16-bit integer
    tpncp.input_time_slot_271  tpncp.input_time_slot_271
        Unsigned 16-bit integer
    tpncp.input_time_slot_272  tpncp.input_time_slot_272
        Unsigned 16-bit integer
    tpncp.input_time_slot_273  tpncp.input_time_slot_273
        Unsigned 16-bit integer
    tpncp.input_time_slot_274  tpncp.input_time_slot_274
        Unsigned 16-bit integer
    tpncp.input_time_slot_275  tpncp.input_time_slot_275
        Unsigned 16-bit integer
    tpncp.input_time_slot_276  tpncp.input_time_slot_276
        Unsigned 16-bit integer
    tpncp.input_time_slot_277  tpncp.input_time_slot_277
        Unsigned 16-bit integer
    tpncp.input_time_slot_278  tpncp.input_time_slot_278
        Unsigned 16-bit integer
    tpncp.input_time_slot_279  tpncp.input_time_slot_279
        Unsigned 16-bit integer
    tpncp.input_time_slot_28  tpncp.input_time_slot_28
        Unsigned 16-bit integer
    tpncp.input_time_slot_280  tpncp.input_time_slot_280
        Unsigned 16-bit integer
    tpncp.input_time_slot_281  tpncp.input_time_slot_281
        Unsigned 16-bit integer
    tpncp.input_time_slot_282  tpncp.input_time_slot_282
        Unsigned 16-bit integer
    tpncp.input_time_slot_283  tpncp.input_time_slot_283
        Unsigned 16-bit integer
    tpncp.input_time_slot_284  tpncp.input_time_slot_284
        Unsigned 16-bit integer
    tpncp.input_time_slot_285  tpncp.input_time_slot_285
        Unsigned 16-bit integer
    tpncp.input_time_slot_286  tpncp.input_time_slot_286
        Unsigned 16-bit integer
    tpncp.input_time_slot_287  tpncp.input_time_slot_287
        Unsigned 16-bit integer
    tpncp.input_time_slot_288  tpncp.input_time_slot_288
        Unsigned 16-bit integer
    tpncp.input_time_slot_289  tpncp.input_time_slot_289
        Unsigned 16-bit integer
    tpncp.input_time_slot_29  tpncp.input_time_slot_29
        Unsigned 16-bit integer
    tpncp.input_time_slot_290  tpncp.input_time_slot_290
        Unsigned 16-bit integer
    tpncp.input_time_slot_291  tpncp.input_time_slot_291
        Unsigned 16-bit integer
    tpncp.input_time_slot_292  tpncp.input_time_slot_292
        Unsigned 16-bit integer
    tpncp.input_time_slot_293  tpncp.input_time_slot_293
        Unsigned 16-bit integer
    tpncp.input_time_slot_294  tpncp.input_time_slot_294
        Unsigned 16-bit integer
    tpncp.input_time_slot_295  tpncp.input_time_slot_295
        Unsigned 16-bit integer
    tpncp.input_time_slot_296  tpncp.input_time_slot_296
        Unsigned 16-bit integer
    tpncp.input_time_slot_297  tpncp.input_time_slot_297
        Unsigned 16-bit integer
    tpncp.input_time_slot_298  tpncp.input_time_slot_298
        Unsigned 16-bit integer
    tpncp.input_time_slot_299  tpncp.input_time_slot_299
        Unsigned 16-bit integer
    tpncp.input_time_slot_3  tpncp.input_time_slot_3
        Unsigned 16-bit integer
    tpncp.input_time_slot_30  tpncp.input_time_slot_30
        Unsigned 16-bit integer
    tpncp.input_time_slot_300  tpncp.input_time_slot_300
        Unsigned 16-bit integer
    tpncp.input_time_slot_301  tpncp.input_time_slot_301
        Unsigned 16-bit integer
    tpncp.input_time_slot_302  tpncp.input_time_slot_302
        Unsigned 16-bit integer
    tpncp.input_time_slot_303  tpncp.input_time_slot_303
        Unsigned 16-bit integer
    tpncp.input_time_slot_304  tpncp.input_time_slot_304
        Unsigned 16-bit integer
    tpncp.input_time_slot_305  tpncp.input_time_slot_305
        Unsigned 16-bit integer
    tpncp.input_time_slot_306  tpncp.input_time_slot_306
        Unsigned 16-bit integer
    tpncp.input_time_slot_307  tpncp.input_time_slot_307
        Unsigned 16-bit integer
    tpncp.input_time_slot_308  tpncp.input_time_slot_308
        Unsigned 16-bit integer
    tpncp.input_time_slot_309  tpncp.input_time_slot_309
        Unsigned 16-bit integer
    tpncp.input_time_slot_31  tpncp.input_time_slot_31
        Unsigned 16-bit integer
    tpncp.input_time_slot_310  tpncp.input_time_slot_310
        Unsigned 16-bit integer
    tpncp.input_time_slot_311  tpncp.input_time_slot_311
        Unsigned 16-bit integer
    tpncp.input_time_slot_312  tpncp.input_time_slot_312
        Unsigned 16-bit integer
    tpncp.input_time_slot_313  tpncp.input_time_slot_313
        Unsigned 16-bit integer
    tpncp.input_time_slot_314  tpncp.input_time_slot_314
        Unsigned 16-bit integer
    tpncp.input_time_slot_315  tpncp.input_time_slot_315
        Unsigned 16-bit integer
    tpncp.input_time_slot_316  tpncp.input_time_slot_316
        Unsigned 16-bit integer
    tpncp.input_time_slot_317  tpncp.input_time_slot_317
        Unsigned 16-bit integer
    tpncp.input_time_slot_318  tpncp.input_time_slot_318
        Unsigned 16-bit integer
    tpncp.input_time_slot_319  tpncp.input_time_slot_319
        Unsigned 16-bit integer
    tpncp.input_time_slot_32  tpncp.input_time_slot_32
        Unsigned 16-bit integer
    tpncp.input_time_slot_320  tpncp.input_time_slot_320
        Unsigned 16-bit integer
    tpncp.input_time_slot_321  tpncp.input_time_slot_321
        Unsigned 16-bit integer
    tpncp.input_time_slot_322  tpncp.input_time_slot_322
        Unsigned 16-bit integer
    tpncp.input_time_slot_323  tpncp.input_time_slot_323
        Unsigned 16-bit integer
    tpncp.input_time_slot_324  tpncp.input_time_slot_324
        Unsigned 16-bit integer
    tpncp.input_time_slot_325  tpncp.input_time_slot_325
        Unsigned 16-bit integer
    tpncp.input_time_slot_326  tpncp.input_time_slot_326
        Unsigned 16-bit integer
    tpncp.input_time_slot_327  tpncp.input_time_slot_327
        Unsigned 16-bit integer
    tpncp.input_time_slot_328  tpncp.input_time_slot_328
        Unsigned 16-bit integer
    tpncp.input_time_slot_329  tpncp.input_time_slot_329
        Unsigned 16-bit integer
    tpncp.input_time_slot_33  tpncp.input_time_slot_33
        Unsigned 16-bit integer
    tpncp.input_time_slot_330  tpncp.input_time_slot_330
        Unsigned 16-bit integer
    tpncp.input_time_slot_331  tpncp.input_time_slot_331
        Unsigned 16-bit integer
    tpncp.input_time_slot_332  tpncp.input_time_slot_332
        Unsigned 16-bit integer
    tpncp.input_time_slot_333  tpncp.input_time_slot_333
        Unsigned 16-bit integer
    tpncp.input_time_slot_334  tpncp.input_time_slot_334
        Unsigned 16-bit integer
    tpncp.input_time_slot_335  tpncp.input_time_slot_335
        Unsigned 16-bit integer
    tpncp.input_time_slot_336  tpncp.input_time_slot_336
        Unsigned 16-bit integer
    tpncp.input_time_slot_337  tpncp.input_time_slot_337
        Unsigned 16-bit integer
    tpncp.input_time_slot_338  tpncp.input_time_slot_338
        Unsigned 16-bit integer
    tpncp.input_time_slot_339  tpncp.input_time_slot_339
        Unsigned 16-bit integer
    tpncp.input_time_slot_34  tpncp.input_time_slot_34
        Unsigned 16-bit integer
    tpncp.input_time_slot_340  tpncp.input_time_slot_340
        Unsigned 16-bit integer
    tpncp.input_time_slot_341  tpncp.input_time_slot_341
        Unsigned 16-bit integer
    tpncp.input_time_slot_342  tpncp.input_time_slot_342
        Unsigned 16-bit integer
    tpncp.input_time_slot_343  tpncp.input_time_slot_343
        Unsigned 16-bit integer
    tpncp.input_time_slot_344  tpncp.input_time_slot_344
        Unsigned 16-bit integer
    tpncp.input_time_slot_345  tpncp.input_time_slot_345
        Unsigned 16-bit integer
    tpncp.input_time_slot_346  tpncp.input_time_slot_346
        Unsigned 16-bit integer
    tpncp.input_time_slot_347  tpncp.input_time_slot_347
        Unsigned 16-bit integer
    tpncp.input_time_slot_348  tpncp.input_time_slot_348
        Unsigned 16-bit integer
    tpncp.input_time_slot_349  tpncp.input_time_slot_349
        Unsigned 16-bit integer
    tpncp.input_time_slot_35  tpncp.input_time_slot_35
        Unsigned 16-bit integer
    tpncp.input_time_slot_350  tpncp.input_time_slot_350
        Unsigned 16-bit integer
    tpncp.input_time_slot_351  tpncp.input_time_slot_351
        Unsigned 16-bit integer
    tpncp.input_time_slot_352  tpncp.input_time_slot_352
        Unsigned 16-bit integer
    tpncp.input_time_slot_353  tpncp.input_time_slot_353
        Unsigned 16-bit integer
    tpncp.input_time_slot_354  tpncp.input_time_slot_354
        Unsigned 16-bit integer
    tpncp.input_time_slot_355  tpncp.input_time_slot_355
        Unsigned 16-bit integer
    tpncp.input_time_slot_356  tpncp.input_time_slot_356
        Unsigned 16-bit integer
    tpncp.input_time_slot_357  tpncp.input_time_slot_357
        Unsigned 16-bit integer
    tpncp.input_time_slot_358  tpncp.input_time_slot_358
        Unsigned 16-bit integer
    tpncp.input_time_slot_359  tpncp.input_time_slot_359
        Unsigned 16-bit integer
    tpncp.input_time_slot_36  tpncp.input_time_slot_36
        Unsigned 16-bit integer
    tpncp.input_time_slot_360  tpncp.input_time_slot_360
        Unsigned 16-bit integer
    tpncp.input_time_slot_361  tpncp.input_time_slot_361
        Unsigned 16-bit integer
    tpncp.input_time_slot_362  tpncp.input_time_slot_362
        Unsigned 16-bit integer
    tpncp.input_time_slot_363  tpncp.input_time_slot_363
        Unsigned 16-bit integer
    tpncp.input_time_slot_364  tpncp.input_time_slot_364
        Unsigned 16-bit integer
    tpncp.input_time_slot_365  tpncp.input_time_slot_365
        Unsigned 16-bit integer
    tpncp.input_time_slot_366  tpncp.input_time_slot_366
        Unsigned 16-bit integer
    tpncp.input_time_slot_367  tpncp.input_time_slot_367
        Unsigned 16-bit integer
    tpncp.input_time_slot_368  tpncp.input_time_slot_368
        Unsigned 16-bit integer
    tpncp.input_time_slot_369  tpncp.input_time_slot_369
        Unsigned 16-bit integer
    tpncp.input_time_slot_37  tpncp.input_time_slot_37
        Unsigned 16-bit integer
    tpncp.input_time_slot_370  tpncp.input_time_slot_370
        Unsigned 16-bit integer
    tpncp.input_time_slot_371  tpncp.input_time_slot_371
        Unsigned 16-bit integer
    tpncp.input_time_slot_372  tpncp.input_time_slot_372
        Unsigned 16-bit integer
    tpncp.input_time_slot_373  tpncp.input_time_slot_373
        Unsigned 16-bit integer
    tpncp.input_time_slot_374  tpncp.input_time_slot_374
        Unsigned 16-bit integer
    tpncp.input_time_slot_375  tpncp.input_time_slot_375
        Unsigned 16-bit integer
    tpncp.input_time_slot_376  tpncp.input_time_slot_376
        Unsigned 16-bit integer
    tpncp.input_time_slot_377  tpncp.input_time_slot_377
        Unsigned 16-bit integer
    tpncp.input_time_slot_378  tpncp.input_time_slot_378
        Unsigned 16-bit integer
    tpncp.input_time_slot_379  tpncp.input_time_slot_379
        Unsigned 16-bit integer
    tpncp.input_time_slot_38  tpncp.input_time_slot_38
        Unsigned 16-bit integer
    tpncp.input_time_slot_380  tpncp.input_time_slot_380
        Unsigned 16-bit integer
    tpncp.input_time_slot_381  tpncp.input_time_slot_381
        Unsigned 16-bit integer
    tpncp.input_time_slot_382  tpncp.input_time_slot_382
        Unsigned 16-bit integer
    tpncp.input_time_slot_383  tpncp.input_time_slot_383
        Unsigned 16-bit integer
    tpncp.input_time_slot_384  tpncp.input_time_slot_384
        Unsigned 16-bit integer
    tpncp.input_time_slot_385  tpncp.input_time_slot_385
        Unsigned 16-bit integer
    tpncp.input_time_slot_386  tpncp.input_time_slot_386
        Unsigned 16-bit integer
    tpncp.input_time_slot_387  tpncp.input_time_slot_387
        Unsigned 16-bit integer
    tpncp.input_time_slot_388  tpncp.input_time_slot_388
        Unsigned 16-bit integer
    tpncp.input_time_slot_389  tpncp.input_time_slot_389
        Unsigned 16-bit integer
    tpncp.input_time_slot_39  tpncp.input_time_slot_39
        Unsigned 16-bit integer
    tpncp.input_time_slot_390  tpncp.input_time_slot_390
        Unsigned 16-bit integer
    tpncp.input_time_slot_391  tpncp.input_time_slot_391
        Unsigned 16-bit integer
    tpncp.input_time_slot_392  tpncp.input_time_slot_392
        Unsigned 16-bit integer
    tpncp.input_time_slot_393  tpncp.input_time_slot_393
        Unsigned 16-bit integer
    tpncp.input_time_slot_394  tpncp.input_time_slot_394
        Unsigned 16-bit integer
    tpncp.input_time_slot_395  tpncp.input_time_slot_395
        Unsigned 16-bit integer
    tpncp.input_time_slot_396  tpncp.input_time_slot_396
        Unsigned 16-bit integer
    tpncp.input_time_slot_397  tpncp.input_time_slot_397
        Unsigned 16-bit integer
    tpncp.input_time_slot_398  tpncp.input_time_slot_398
        Unsigned 16-bit integer
    tpncp.input_time_slot_399  tpncp.input_time_slot_399
        Unsigned 16-bit integer
    tpncp.input_time_slot_4  tpncp.input_time_slot_4
        Unsigned 16-bit integer
    tpncp.input_time_slot_40  tpncp.input_time_slot_40
        Unsigned 16-bit integer
    tpncp.input_time_slot_400  tpncp.input_time_slot_400
        Unsigned 16-bit integer
    tpncp.input_time_slot_401  tpncp.input_time_slot_401
        Unsigned 16-bit integer
    tpncp.input_time_slot_402  tpncp.input_time_slot_402
        Unsigned 16-bit integer
    tpncp.input_time_slot_403  tpncp.input_time_slot_403
        Unsigned 16-bit integer
    tpncp.input_time_slot_404  tpncp.input_time_slot_404
        Unsigned 16-bit integer
    tpncp.input_time_slot_405  tpncp.input_time_slot_405
        Unsigned 16-bit integer
    tpncp.input_time_slot_406  tpncp.input_time_slot_406
        Unsigned 16-bit integer
    tpncp.input_time_slot_407  tpncp.input_time_slot_407
        Unsigned 16-bit integer
    tpncp.input_time_slot_408  tpncp.input_time_slot_408
        Unsigned 16-bit integer
    tpncp.input_time_slot_409  tpncp.input_time_slot_409
        Unsigned 16-bit integer
    tpncp.input_time_slot_41  tpncp.input_time_slot_41
        Unsigned 16-bit integer
    tpncp.input_time_slot_410  tpncp.input_time_slot_410
        Unsigned 16-bit integer
    tpncp.input_time_slot_411  tpncp.input_time_slot_411
        Unsigned 16-bit integer
    tpncp.input_time_slot_412  tpncp.input_time_slot_412
        Unsigned 16-bit integer
    tpncp.input_time_slot_413  tpncp.input_time_slot_413
        Unsigned 16-bit integer
    tpncp.input_time_slot_414  tpncp.input_time_slot_414
        Unsigned 16-bit integer
    tpncp.input_time_slot_415  tpncp.input_time_slot_415
        Unsigned 16-bit integer
    tpncp.input_time_slot_416  tpncp.input_time_slot_416
        Unsigned 16-bit integer
    tpncp.input_time_slot_417  tpncp.input_time_slot_417
        Unsigned 16-bit integer
    tpncp.input_time_slot_418  tpncp.input_time_slot_418
        Unsigned 16-bit integer
    tpncp.input_time_slot_419  tpncp.input_time_slot_419
        Unsigned 16-bit integer
    tpncp.input_time_slot_42  tpncp.input_time_slot_42
        Unsigned 16-bit integer
    tpncp.input_time_slot_420  tpncp.input_time_slot_420
        Unsigned 16-bit integer
    tpncp.input_time_slot_421  tpncp.input_time_slot_421
        Unsigned 16-bit integer
    tpncp.input_time_slot_422  tpncp.input_time_slot_422
        Unsigned 16-bit integer
    tpncp.input_time_slot_423  tpncp.input_time_slot_423
        Unsigned 16-bit integer
    tpncp.input_time_slot_424  tpncp.input_time_slot_424
        Unsigned 16-bit integer
    tpncp.input_time_slot_425  tpncp.input_time_slot_425
        Unsigned 16-bit integer
    tpncp.input_time_slot_426  tpncp.input_time_slot_426
        Unsigned 16-bit integer
    tpncp.input_time_slot_427  tpncp.input_time_slot_427
        Unsigned 16-bit integer
    tpncp.input_time_slot_428  tpncp.input_time_slot_428
        Unsigned 16-bit integer
    tpncp.input_time_slot_429  tpncp.input_time_slot_429
        Unsigned 16-bit integer
    tpncp.input_time_slot_43  tpncp.input_time_slot_43
        Unsigned 16-bit integer
    tpncp.input_time_slot_430  tpncp.input_time_slot_430
        Unsigned 16-bit integer
    tpncp.input_time_slot_431  tpncp.input_time_slot_431
        Unsigned 16-bit integer
    tpncp.input_time_slot_432  tpncp.input_time_slot_432
        Unsigned 16-bit integer
    tpncp.input_time_slot_433  tpncp.input_time_slot_433
        Unsigned 16-bit integer
    tpncp.input_time_slot_434  tpncp.input_time_slot_434
        Unsigned 16-bit integer
    tpncp.input_time_slot_435  tpncp.input_time_slot_435
        Unsigned 16-bit integer
    tpncp.input_time_slot_436  tpncp.input_time_slot_436
        Unsigned 16-bit integer
    tpncp.input_time_slot_437  tpncp.input_time_slot_437
        Unsigned 16-bit integer
    tpncp.input_time_slot_438  tpncp.input_time_slot_438
        Unsigned 16-bit integer
    tpncp.input_time_slot_439  tpncp.input_time_slot_439
        Unsigned 16-bit integer
    tpncp.input_time_slot_44  tpncp.input_time_slot_44
        Unsigned 16-bit integer
    tpncp.input_time_slot_440  tpncp.input_time_slot_440
        Unsigned 16-bit integer
    tpncp.input_time_slot_441  tpncp.input_time_slot_441
        Unsigned 16-bit integer
    tpncp.input_time_slot_442  tpncp.input_time_slot_442
        Unsigned 16-bit integer
    tpncp.input_time_slot_443  tpncp.input_time_slot_443
        Unsigned 16-bit integer
    tpncp.input_time_slot_444  tpncp.input_time_slot_444
        Unsigned 16-bit integer
    tpncp.input_time_slot_445  tpncp.input_time_slot_445
        Unsigned 16-bit integer
    tpncp.input_time_slot_446  tpncp.input_time_slot_446
        Unsigned 16-bit integer
    tpncp.input_time_slot_447  tpncp.input_time_slot_447
        Unsigned 16-bit integer
    tpncp.input_time_slot_448  tpncp.input_time_slot_448
        Unsigned 16-bit integer
    tpncp.input_time_slot_449  tpncp.input_time_slot_449
        Unsigned 16-bit integer
    tpncp.input_time_slot_45  tpncp.input_time_slot_45
        Unsigned 16-bit integer
    tpncp.input_time_slot_450  tpncp.input_time_slot_450
        Unsigned 16-bit integer
    tpncp.input_time_slot_451  tpncp.input_time_slot_451
        Unsigned 16-bit integer
    tpncp.input_time_slot_452  tpncp.input_time_slot_452
        Unsigned 16-bit integer
    tpncp.input_time_slot_453  tpncp.input_time_slot_453
        Unsigned 16-bit integer
    tpncp.input_time_slot_454  tpncp.input_time_slot_454
        Unsigned 16-bit integer
    tpncp.input_time_slot_455  tpncp.input_time_slot_455
        Unsigned 16-bit integer
    tpncp.input_time_slot_456  tpncp.input_time_slot_456
        Unsigned 16-bit integer
    tpncp.input_time_slot_457  tpncp.input_time_slot_457
        Unsigned 16-bit integer
    tpncp.input_time_slot_458  tpncp.input_time_slot_458
        Unsigned 16-bit integer
    tpncp.input_time_slot_459  tpncp.input_time_slot_459
        Unsigned 16-bit integer
    tpncp.input_time_slot_46  tpncp.input_time_slot_46
        Unsigned 16-bit integer
    tpncp.input_time_slot_460  tpncp.input_time_slot_460
        Unsigned 16-bit integer
    tpncp.input_time_slot_461  tpncp.input_time_slot_461
        Unsigned 16-bit integer
    tpncp.input_time_slot_462  tpncp.input_time_slot_462
        Unsigned 16-bit integer
    tpncp.input_time_slot_463  tpncp.input_time_slot_463
        Unsigned 16-bit integer
    tpncp.input_time_slot_464  tpncp.input_time_slot_464
        Unsigned 16-bit integer
    tpncp.input_time_slot_465  tpncp.input_time_slot_465
        Unsigned 16-bit integer
    tpncp.input_time_slot_466  tpncp.input_time_slot_466
        Unsigned 16-bit integer
    tpncp.input_time_slot_467  tpncp.input_time_slot_467
        Unsigned 16-bit integer
    tpncp.input_time_slot_468  tpncp.input_time_slot_468
        Unsigned 16-bit integer
    tpncp.input_time_slot_469  tpncp.input_time_slot_469
        Unsigned 16-bit integer
    tpncp.input_time_slot_47  tpncp.input_time_slot_47
        Unsigned 16-bit integer
    tpncp.input_time_slot_470  tpncp.input_time_slot_470
        Unsigned 16-bit integer
    tpncp.input_time_slot_471  tpncp.input_time_slot_471
        Unsigned 16-bit integer
    tpncp.input_time_slot_472  tpncp.input_time_slot_472
        Unsigned 16-bit integer
    tpncp.input_time_slot_473  tpncp.input_time_slot_473
        Unsigned 16-bit integer
    tpncp.input_time_slot_474  tpncp.input_time_slot_474
        Unsigned 16-bit integer
    tpncp.input_time_slot_475  tpncp.input_time_slot_475
        Unsigned 16-bit integer
    tpncp.input_time_slot_476  tpncp.input_time_slot_476
        Unsigned 16-bit integer
    tpncp.input_time_slot_477  tpncp.input_time_slot_477
        Unsigned 16-bit integer
    tpncp.input_time_slot_478  tpncp.input_time_slot_478
        Unsigned 16-bit integer
    tpncp.input_time_slot_479  tpncp.input_time_slot_479
        Unsigned 16-bit integer
    tpncp.input_time_slot_48  tpncp.input_time_slot_48
        Unsigned 16-bit integer
    tpncp.input_time_slot_480  tpncp.input_time_slot_480
        Unsigned 16-bit integer
    tpncp.input_time_slot_481  tpncp.input_time_slot_481
        Unsigned 16-bit integer
    tpncp.input_time_slot_482  tpncp.input_time_slot_482
        Unsigned 16-bit integer
    tpncp.input_time_slot_483  tpncp.input_time_slot_483
        Unsigned 16-bit integer
    tpncp.input_time_slot_484  tpncp.input_time_slot_484
        Unsigned 16-bit integer
    tpncp.input_time_slot_485  tpncp.input_time_slot_485
        Unsigned 16-bit integer
    tpncp.input_time_slot_486  tpncp.input_time_slot_486
        Unsigned 16-bit integer
    tpncp.input_time_slot_487  tpncp.input_time_slot_487
        Unsigned 16-bit integer
    tpncp.input_time_slot_488  tpncp.input_time_slot_488
        Unsigned 16-bit integer
    tpncp.input_time_slot_489  tpncp.input_time_slot_489
        Unsigned 16-bit integer
    tpncp.input_time_slot_49  tpncp.input_time_slot_49
        Unsigned 16-bit integer
    tpncp.input_time_slot_490  tpncp.input_time_slot_490
        Unsigned 16-bit integer
    tpncp.input_time_slot_491  tpncp.input_time_slot_491
        Unsigned 16-bit integer
    tpncp.input_time_slot_492  tpncp.input_time_slot_492
        Unsigned 16-bit integer
    tpncp.input_time_slot_493  tpncp.input_time_slot_493
        Unsigned 16-bit integer
    tpncp.input_time_slot_494  tpncp.input_time_slot_494
        Unsigned 16-bit integer
    tpncp.input_time_slot_495  tpncp.input_time_slot_495
        Unsigned 16-bit integer
    tpncp.input_time_slot_496  tpncp.input_time_slot_496
        Unsigned 16-bit integer
    tpncp.input_time_slot_497  tpncp.input_time_slot_497
        Unsigned 16-bit integer
    tpncp.input_time_slot_498  tpncp.input_time_slot_498
        Unsigned 16-bit integer
    tpncp.input_time_slot_499  tpncp.input_time_slot_499
        Unsigned 16-bit integer
    tpncp.input_time_slot_5  tpncp.input_time_slot_5
        Unsigned 16-bit integer
    tpncp.input_time_slot_50  tpncp.input_time_slot_50
        Unsigned 16-bit integer
    tpncp.input_time_slot_500  tpncp.input_time_slot_500
        Unsigned 16-bit integer
    tpncp.input_time_slot_501  tpncp.input_time_slot_501
        Unsigned 16-bit integer
    tpncp.input_time_slot_502  tpncp.input_time_slot_502
        Unsigned 16-bit integer
    tpncp.input_time_slot_503  tpncp.input_time_slot_503
        Unsigned 16-bit integer
    tpncp.input_time_slot_51  tpncp.input_time_slot_51
        Unsigned 16-bit integer
    tpncp.input_time_slot_52  tpncp.input_time_slot_52
        Unsigned 16-bit integer
    tpncp.input_time_slot_53  tpncp.input_time_slot_53
        Unsigned 16-bit integer
    tpncp.input_time_slot_54  tpncp.input_time_slot_54
        Unsigned 16-bit integer
    tpncp.input_time_slot_55  tpncp.input_time_slot_55
        Unsigned 16-bit integer
    tpncp.input_time_slot_56  tpncp.input_time_slot_56
        Unsigned 16-bit integer
    tpncp.input_time_slot_57  tpncp.input_time_slot_57
        Unsigned 16-bit integer
    tpncp.input_time_slot_58  tpncp.input_time_slot_58
        Unsigned 16-bit integer
    tpncp.input_time_slot_59  tpncp.input_time_slot_59
        Unsigned 16-bit integer
    tpncp.input_time_slot_6  tpncp.input_time_slot_6
        Unsigned 16-bit integer
    tpncp.input_time_slot_60  tpncp.input_time_slot_60
        Unsigned 16-bit integer
    tpncp.input_time_slot_61  tpncp.input_time_slot_61
        Unsigned 16-bit integer
    tpncp.input_time_slot_62  tpncp.input_time_slot_62
        Unsigned 16-bit integer
    tpncp.input_time_slot_63  tpncp.input_time_slot_63
        Unsigned 16-bit integer
    tpncp.input_time_slot_64  tpncp.input_time_slot_64
        Unsigned 16-bit integer
    tpncp.input_time_slot_65  tpncp.input_time_slot_65
        Unsigned 16-bit integer
    tpncp.input_time_slot_66  tpncp.input_time_slot_66
        Unsigned 16-bit integer
    tpncp.input_time_slot_67  tpncp.input_time_slot_67
        Unsigned 16-bit integer
    tpncp.input_time_slot_68  tpncp.input_time_slot_68
        Unsigned 16-bit integer
    tpncp.input_time_slot_69  tpncp.input_time_slot_69
        Unsigned 16-bit integer
    tpncp.input_time_slot_7  tpncp.input_time_slot_7
        Unsigned 16-bit integer
    tpncp.input_time_slot_70  tpncp.input_time_slot_70
        Unsigned 16-bit integer
    tpncp.input_time_slot_71  tpncp.input_time_slot_71
        Unsigned 16-bit integer
    tpncp.input_time_slot_72  tpncp.input_time_slot_72
        Unsigned 16-bit integer
    tpncp.input_time_slot_73  tpncp.input_time_slot_73
        Unsigned 16-bit integer
    tpncp.input_time_slot_74  tpncp.input_time_slot_74
        Unsigned 16-bit integer
    tpncp.input_time_slot_75  tpncp.input_time_slot_75
        Unsigned 16-bit integer
    tpncp.input_time_slot_76  tpncp.input_time_slot_76
        Unsigned 16-bit integer
    tpncp.input_time_slot_77  tpncp.input_time_slot_77
        Unsigned 16-bit integer
    tpncp.input_time_slot_78  tpncp.input_time_slot_78
        Unsigned 16-bit integer
    tpncp.input_time_slot_79  tpncp.input_time_slot_79
        Unsigned 16-bit integer
    tpncp.input_time_slot_8  tpncp.input_time_slot_8
        Unsigned 16-bit integer
    tpncp.input_time_slot_80  tpncp.input_time_slot_80
        Unsigned 16-bit integer
    tpncp.input_time_slot_81  tpncp.input_time_slot_81
        Unsigned 16-bit integer
    tpncp.input_time_slot_82  tpncp.input_time_slot_82
        Unsigned 16-bit integer
    tpncp.input_time_slot_83  tpncp.input_time_slot_83
        Unsigned 16-bit integer
    tpncp.input_time_slot_84  tpncp.input_time_slot_84
        Unsigned 16-bit integer
    tpncp.input_time_slot_85  tpncp.input_time_slot_85
        Unsigned 16-bit integer
    tpncp.input_time_slot_86  tpncp.input_time_slot_86
        Unsigned 16-bit integer
    tpncp.input_time_slot_87  tpncp.input_time_slot_87
        Unsigned 16-bit integer
    tpncp.input_time_slot_88  tpncp.input_time_slot_88
        Unsigned 16-bit integer
    tpncp.input_time_slot_89  tpncp.input_time_slot_89
        Unsigned 16-bit integer
    tpncp.input_time_slot_9  tpncp.input_time_slot_9
        Unsigned 16-bit integer
    tpncp.input_time_slot_90  tpncp.input_time_slot_90
        Unsigned 16-bit integer
    tpncp.input_time_slot_91  tpncp.input_time_slot_91
        Unsigned 16-bit integer
    tpncp.input_time_slot_92  tpncp.input_time_slot_92
        Unsigned 16-bit integer
    tpncp.input_time_slot_93  tpncp.input_time_slot_93
        Unsigned 16-bit integer
    tpncp.input_time_slot_94  tpncp.input_time_slot_94
        Unsigned 16-bit integer
    tpncp.input_time_slot_95  tpncp.input_time_slot_95
        Unsigned 16-bit integer
    tpncp.input_time_slot_96  tpncp.input_time_slot_96
        Unsigned 16-bit integer
    tpncp.input_time_slot_97  tpncp.input_time_slot_97
        Unsigned 16-bit integer
    tpncp.input_time_slot_98  tpncp.input_time_slot_98
        Unsigned 16-bit integer
    tpncp.input_time_slot_99  tpncp.input_time_slot_99
        Unsigned 16-bit integer
    tpncp.input_voice_signaling_mode_0  tpncp.input_voice_signaling_mode_0
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_1  tpncp.input_voice_signaling_mode_1
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_10  tpncp.input_voice_signaling_mode_10
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_100  tpncp.input_voice_signaling_mode_100
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_101  tpncp.input_voice_signaling_mode_101
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_102  tpncp.input_voice_signaling_mode_102
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_103  tpncp.input_voice_signaling_mode_103
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_104  tpncp.input_voice_signaling_mode_104
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_105  tpncp.input_voice_signaling_mode_105
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_106  tpncp.input_voice_signaling_mode_106
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_107  tpncp.input_voice_signaling_mode_107
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_108  tpncp.input_voice_signaling_mode_108
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_109  tpncp.input_voice_signaling_mode_109
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_11  tpncp.input_voice_signaling_mode_11
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_110  tpncp.input_voice_signaling_mode_110
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_111  tpncp.input_voice_signaling_mode_111
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_112  tpncp.input_voice_signaling_mode_112
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_113  tpncp.input_voice_signaling_mode_113
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_114  tpncp.input_voice_signaling_mode_114
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_115  tpncp.input_voice_signaling_mode_115
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_116  tpncp.input_voice_signaling_mode_116
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_117  tpncp.input_voice_signaling_mode_117
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_118  tpncp.input_voice_signaling_mode_118
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_119  tpncp.input_voice_signaling_mode_119
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_12  tpncp.input_voice_signaling_mode_12
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_120  tpncp.input_voice_signaling_mode_120
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_121  tpncp.input_voice_signaling_mode_121
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_122  tpncp.input_voice_signaling_mode_122
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_123  tpncp.input_voice_signaling_mode_123
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_124  tpncp.input_voice_signaling_mode_124
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_125  tpncp.input_voice_signaling_mode_125
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_126  tpncp.input_voice_signaling_mode_126
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_127  tpncp.input_voice_signaling_mode_127
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_128  tpncp.input_voice_signaling_mode_128
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_129  tpncp.input_voice_signaling_mode_129
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_13  tpncp.input_voice_signaling_mode_13
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_130  tpncp.input_voice_signaling_mode_130
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_131  tpncp.input_voice_signaling_mode_131
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_132  tpncp.input_voice_signaling_mode_132
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_133  tpncp.input_voice_signaling_mode_133
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_134  tpncp.input_voice_signaling_mode_134
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_135  tpncp.input_voice_signaling_mode_135
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_136  tpncp.input_voice_signaling_mode_136
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_137  tpncp.input_voice_signaling_mode_137
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_138  tpncp.input_voice_signaling_mode_138
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_139  tpncp.input_voice_signaling_mode_139
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_14  tpncp.input_voice_signaling_mode_14
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_140  tpncp.input_voice_signaling_mode_140
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_141  tpncp.input_voice_signaling_mode_141
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_142  tpncp.input_voice_signaling_mode_142
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_143  tpncp.input_voice_signaling_mode_143
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_144  tpncp.input_voice_signaling_mode_144
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_145  tpncp.input_voice_signaling_mode_145
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_146  tpncp.input_voice_signaling_mode_146
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_147  tpncp.input_voice_signaling_mode_147
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_148  tpncp.input_voice_signaling_mode_148
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_149  tpncp.input_voice_signaling_mode_149
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_15  tpncp.input_voice_signaling_mode_15
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_150  tpncp.input_voice_signaling_mode_150
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_151  tpncp.input_voice_signaling_mode_151
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_152  tpncp.input_voice_signaling_mode_152
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_153  tpncp.input_voice_signaling_mode_153
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_154  tpncp.input_voice_signaling_mode_154
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_155  tpncp.input_voice_signaling_mode_155
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_156  tpncp.input_voice_signaling_mode_156
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_157  tpncp.input_voice_signaling_mode_157
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_158  tpncp.input_voice_signaling_mode_158
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_159  tpncp.input_voice_signaling_mode_159
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_16  tpncp.input_voice_signaling_mode_16
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_160  tpncp.input_voice_signaling_mode_160
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_161  tpncp.input_voice_signaling_mode_161
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_162  tpncp.input_voice_signaling_mode_162
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_163  tpncp.input_voice_signaling_mode_163
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_164  tpncp.input_voice_signaling_mode_164
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_165  tpncp.input_voice_signaling_mode_165
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_166  tpncp.input_voice_signaling_mode_166
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_167  tpncp.input_voice_signaling_mode_167
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_168  tpncp.input_voice_signaling_mode_168
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_169  tpncp.input_voice_signaling_mode_169
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_17  tpncp.input_voice_signaling_mode_17
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_170  tpncp.input_voice_signaling_mode_170
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_171  tpncp.input_voice_signaling_mode_171
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_172  tpncp.input_voice_signaling_mode_172
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_173  tpncp.input_voice_signaling_mode_173
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_174  tpncp.input_voice_signaling_mode_174
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_175  tpncp.input_voice_signaling_mode_175
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_176  tpncp.input_voice_signaling_mode_176
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_177  tpncp.input_voice_signaling_mode_177
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_178  tpncp.input_voice_signaling_mode_178
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_179  tpncp.input_voice_signaling_mode_179
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_18  tpncp.input_voice_signaling_mode_18
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_180  tpncp.input_voice_signaling_mode_180
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_181  tpncp.input_voice_signaling_mode_181
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_182  tpncp.input_voice_signaling_mode_182
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_183  tpncp.input_voice_signaling_mode_183
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_184  tpncp.input_voice_signaling_mode_184
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_185  tpncp.input_voice_signaling_mode_185
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_186  tpncp.input_voice_signaling_mode_186
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_187  tpncp.input_voice_signaling_mode_187
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_188  tpncp.input_voice_signaling_mode_188
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_189  tpncp.input_voice_signaling_mode_189
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_19  tpncp.input_voice_signaling_mode_19
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_190  tpncp.input_voice_signaling_mode_190
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_191  tpncp.input_voice_signaling_mode_191
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_192  tpncp.input_voice_signaling_mode_192
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_193  tpncp.input_voice_signaling_mode_193
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_194  tpncp.input_voice_signaling_mode_194
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_195  tpncp.input_voice_signaling_mode_195
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_196  tpncp.input_voice_signaling_mode_196
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_197  tpncp.input_voice_signaling_mode_197
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_198  tpncp.input_voice_signaling_mode_198
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_199  tpncp.input_voice_signaling_mode_199
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_2  tpncp.input_voice_signaling_mode_2
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_20  tpncp.input_voice_signaling_mode_20
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_200  tpncp.input_voice_signaling_mode_200
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_201  tpncp.input_voice_signaling_mode_201
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_202  tpncp.input_voice_signaling_mode_202
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_203  tpncp.input_voice_signaling_mode_203
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_204  tpncp.input_voice_signaling_mode_204
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_205  tpncp.input_voice_signaling_mode_205
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_206  tpncp.input_voice_signaling_mode_206
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_207  tpncp.input_voice_signaling_mode_207
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_208  tpncp.input_voice_signaling_mode_208
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_209  tpncp.input_voice_signaling_mode_209
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_21  tpncp.input_voice_signaling_mode_21
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_210  tpncp.input_voice_signaling_mode_210
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_211  tpncp.input_voice_signaling_mode_211
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_212  tpncp.input_voice_signaling_mode_212
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_213  tpncp.input_voice_signaling_mode_213
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_214  tpncp.input_voice_signaling_mode_214
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_215  tpncp.input_voice_signaling_mode_215
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_216  tpncp.input_voice_signaling_mode_216
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_217  tpncp.input_voice_signaling_mode_217
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_218  tpncp.input_voice_signaling_mode_218
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_219  tpncp.input_voice_signaling_mode_219
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_22  tpncp.input_voice_signaling_mode_22
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_220  tpncp.input_voice_signaling_mode_220
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_221  tpncp.input_voice_signaling_mode_221
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_222  tpncp.input_voice_signaling_mode_222
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_223  tpncp.input_voice_signaling_mode_223
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_224  tpncp.input_voice_signaling_mode_224
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_225  tpncp.input_voice_signaling_mode_225
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_226  tpncp.input_voice_signaling_mode_226
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_227  tpncp.input_voice_signaling_mode_227
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_228  tpncp.input_voice_signaling_mode_228
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_229  tpncp.input_voice_signaling_mode_229
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_23  tpncp.input_voice_signaling_mode_23
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_230  tpncp.input_voice_signaling_mode_230
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_231  tpncp.input_voice_signaling_mode_231
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_232  tpncp.input_voice_signaling_mode_232
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_233  tpncp.input_voice_signaling_mode_233
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_234  tpncp.input_voice_signaling_mode_234
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_235  tpncp.input_voice_signaling_mode_235
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_236  tpncp.input_voice_signaling_mode_236
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_237  tpncp.input_voice_signaling_mode_237
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_238  tpncp.input_voice_signaling_mode_238
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_239  tpncp.input_voice_signaling_mode_239
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_24  tpncp.input_voice_signaling_mode_24
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_240  tpncp.input_voice_signaling_mode_240
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_241  tpncp.input_voice_signaling_mode_241
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_242  tpncp.input_voice_signaling_mode_242
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_243  tpncp.input_voice_signaling_mode_243
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_244  tpncp.input_voice_signaling_mode_244
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_245  tpncp.input_voice_signaling_mode_245
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_246  tpncp.input_voice_signaling_mode_246
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_247  tpncp.input_voice_signaling_mode_247
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_248  tpncp.input_voice_signaling_mode_248
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_249  tpncp.input_voice_signaling_mode_249
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_25  tpncp.input_voice_signaling_mode_25
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_250  tpncp.input_voice_signaling_mode_250
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_251  tpncp.input_voice_signaling_mode_251
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_252  tpncp.input_voice_signaling_mode_252
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_253  tpncp.input_voice_signaling_mode_253
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_254  tpncp.input_voice_signaling_mode_254
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_255  tpncp.input_voice_signaling_mode_255
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_256  tpncp.input_voice_signaling_mode_256
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_257  tpncp.input_voice_signaling_mode_257
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_258  tpncp.input_voice_signaling_mode_258
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_259  tpncp.input_voice_signaling_mode_259
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_26  tpncp.input_voice_signaling_mode_26
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_260  tpncp.input_voice_signaling_mode_260
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_261  tpncp.input_voice_signaling_mode_261
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_262  tpncp.input_voice_signaling_mode_262
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_263  tpncp.input_voice_signaling_mode_263
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_264  tpncp.input_voice_signaling_mode_264
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_265  tpncp.input_voice_signaling_mode_265
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_266  tpncp.input_voice_signaling_mode_266
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_267  tpncp.input_voice_signaling_mode_267
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_268  tpncp.input_voice_signaling_mode_268
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_269  tpncp.input_voice_signaling_mode_269
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_27  tpncp.input_voice_signaling_mode_27
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_270  tpncp.input_voice_signaling_mode_270
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_271  tpncp.input_voice_signaling_mode_271
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_272  tpncp.input_voice_signaling_mode_272
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_273  tpncp.input_voice_signaling_mode_273
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_274  tpncp.input_voice_signaling_mode_274
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_275  tpncp.input_voice_signaling_mode_275
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_276  tpncp.input_voice_signaling_mode_276
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_277  tpncp.input_voice_signaling_mode_277
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_278  tpncp.input_voice_signaling_mode_278
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_279  tpncp.input_voice_signaling_mode_279
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_28  tpncp.input_voice_signaling_mode_28
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_280  tpncp.input_voice_signaling_mode_280
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_281  tpncp.input_voice_signaling_mode_281
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_282  tpncp.input_voice_signaling_mode_282
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_283  tpncp.input_voice_signaling_mode_283
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_284  tpncp.input_voice_signaling_mode_284
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_285  tpncp.input_voice_signaling_mode_285
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_286  tpncp.input_voice_signaling_mode_286
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_287  tpncp.input_voice_signaling_mode_287
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_288  tpncp.input_voice_signaling_mode_288
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_289  tpncp.input_voice_signaling_mode_289
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_29  tpncp.input_voice_signaling_mode_29
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_290  tpncp.input_voice_signaling_mode_290
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_291  tpncp.input_voice_signaling_mode_291
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_292  tpncp.input_voice_signaling_mode_292
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_293  tpncp.input_voice_signaling_mode_293
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_294  tpncp.input_voice_signaling_mode_294
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_295  tpncp.input_voice_signaling_mode_295
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_296  tpncp.input_voice_signaling_mode_296
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_297  tpncp.input_voice_signaling_mode_297
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_298  tpncp.input_voice_signaling_mode_298
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_299  tpncp.input_voice_signaling_mode_299
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_3  tpncp.input_voice_signaling_mode_3
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_30  tpncp.input_voice_signaling_mode_30
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_300  tpncp.input_voice_signaling_mode_300
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_301  tpncp.input_voice_signaling_mode_301
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_302  tpncp.input_voice_signaling_mode_302
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_303  tpncp.input_voice_signaling_mode_303
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_304  tpncp.input_voice_signaling_mode_304
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_305  tpncp.input_voice_signaling_mode_305
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_306  tpncp.input_voice_signaling_mode_306
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_307  tpncp.input_voice_signaling_mode_307
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_308  tpncp.input_voice_signaling_mode_308
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_309  tpncp.input_voice_signaling_mode_309
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_31  tpncp.input_voice_signaling_mode_31
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_310  tpncp.input_voice_signaling_mode_310
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_311  tpncp.input_voice_signaling_mode_311
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_312  tpncp.input_voice_signaling_mode_312
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_313  tpncp.input_voice_signaling_mode_313
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_314  tpncp.input_voice_signaling_mode_314
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_315  tpncp.input_voice_signaling_mode_315
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_316  tpncp.input_voice_signaling_mode_316
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_317  tpncp.input_voice_signaling_mode_317
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_318  tpncp.input_voice_signaling_mode_318
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_319  tpncp.input_voice_signaling_mode_319
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_32  tpncp.input_voice_signaling_mode_32
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_320  tpncp.input_voice_signaling_mode_320
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_321  tpncp.input_voice_signaling_mode_321
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_322  tpncp.input_voice_signaling_mode_322
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_323  tpncp.input_voice_signaling_mode_323
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_324  tpncp.input_voice_signaling_mode_324
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_325  tpncp.input_voice_signaling_mode_325
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_326  tpncp.input_voice_signaling_mode_326
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_327  tpncp.input_voice_signaling_mode_327
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_328  tpncp.input_voice_signaling_mode_328
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_329  tpncp.input_voice_signaling_mode_329
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_33  tpncp.input_voice_signaling_mode_33
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_330  tpncp.input_voice_signaling_mode_330
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_331  tpncp.input_voice_signaling_mode_331
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_332  tpncp.input_voice_signaling_mode_332
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_333  tpncp.input_voice_signaling_mode_333
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_334  tpncp.input_voice_signaling_mode_334
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_335  tpncp.input_voice_signaling_mode_335
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_336  tpncp.input_voice_signaling_mode_336
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_337  tpncp.input_voice_signaling_mode_337
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_338  tpncp.input_voice_signaling_mode_338
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_339  tpncp.input_voice_signaling_mode_339
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_34  tpncp.input_voice_signaling_mode_34
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_340  tpncp.input_voice_signaling_mode_340
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_341  tpncp.input_voice_signaling_mode_341
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_342  tpncp.input_voice_signaling_mode_342
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_343  tpncp.input_voice_signaling_mode_343
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_344  tpncp.input_voice_signaling_mode_344
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_345  tpncp.input_voice_signaling_mode_345
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_346  tpncp.input_voice_signaling_mode_346
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_347  tpncp.input_voice_signaling_mode_347
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_348  tpncp.input_voice_signaling_mode_348
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_349  tpncp.input_voice_signaling_mode_349
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_35  tpncp.input_voice_signaling_mode_35
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_350  tpncp.input_voice_signaling_mode_350
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_351  tpncp.input_voice_signaling_mode_351
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_352  tpncp.input_voice_signaling_mode_352
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_353  tpncp.input_voice_signaling_mode_353
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_354  tpncp.input_voice_signaling_mode_354
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_355  tpncp.input_voice_signaling_mode_355
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_356  tpncp.input_voice_signaling_mode_356
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_357  tpncp.input_voice_signaling_mode_357
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_358  tpncp.input_voice_signaling_mode_358
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_359  tpncp.input_voice_signaling_mode_359
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_36  tpncp.input_voice_signaling_mode_36
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_360  tpncp.input_voice_signaling_mode_360
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_361  tpncp.input_voice_signaling_mode_361
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_362  tpncp.input_voice_signaling_mode_362
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_363  tpncp.input_voice_signaling_mode_363
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_364  tpncp.input_voice_signaling_mode_364
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_365  tpncp.input_voice_signaling_mode_365
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_366  tpncp.input_voice_signaling_mode_366
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_367  tpncp.input_voice_signaling_mode_367
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_368  tpncp.input_voice_signaling_mode_368
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_369  tpncp.input_voice_signaling_mode_369
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_37  tpncp.input_voice_signaling_mode_37
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_370  tpncp.input_voice_signaling_mode_370
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_371  tpncp.input_voice_signaling_mode_371
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_372  tpncp.input_voice_signaling_mode_372
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_373  tpncp.input_voice_signaling_mode_373
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_374  tpncp.input_voice_signaling_mode_374
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_375  tpncp.input_voice_signaling_mode_375
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_376  tpncp.input_voice_signaling_mode_376
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_377  tpncp.input_voice_signaling_mode_377
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_378  tpncp.input_voice_signaling_mode_378
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_379  tpncp.input_voice_signaling_mode_379
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_38  tpncp.input_voice_signaling_mode_38
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_380  tpncp.input_voice_signaling_mode_380
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_381  tpncp.input_voice_signaling_mode_381
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_382  tpncp.input_voice_signaling_mode_382
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_383  tpncp.input_voice_signaling_mode_383
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_384  tpncp.input_voice_signaling_mode_384
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_385  tpncp.input_voice_signaling_mode_385
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_386  tpncp.input_voice_signaling_mode_386
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_387  tpncp.input_voice_signaling_mode_387
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_388  tpncp.input_voice_signaling_mode_388
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_389  tpncp.input_voice_signaling_mode_389
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_39  tpncp.input_voice_signaling_mode_39
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_390  tpncp.input_voice_signaling_mode_390
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_391  tpncp.input_voice_signaling_mode_391
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_392  tpncp.input_voice_signaling_mode_392
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_393  tpncp.input_voice_signaling_mode_393
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_394  tpncp.input_voice_signaling_mode_394
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_395  tpncp.input_voice_signaling_mode_395
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_396  tpncp.input_voice_signaling_mode_396
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_397  tpncp.input_voice_signaling_mode_397
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_398  tpncp.input_voice_signaling_mode_398
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_399  tpncp.input_voice_signaling_mode_399
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_4  tpncp.input_voice_signaling_mode_4
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_40  tpncp.input_voice_signaling_mode_40
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_400  tpncp.input_voice_signaling_mode_400
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_401  tpncp.input_voice_signaling_mode_401
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_402  tpncp.input_voice_signaling_mode_402
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_403  tpncp.input_voice_signaling_mode_403
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_404  tpncp.input_voice_signaling_mode_404
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_405  tpncp.input_voice_signaling_mode_405
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_406  tpncp.input_voice_signaling_mode_406
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_407  tpncp.input_voice_signaling_mode_407
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_408  tpncp.input_voice_signaling_mode_408
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_409  tpncp.input_voice_signaling_mode_409
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_41  tpncp.input_voice_signaling_mode_41
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_410  tpncp.input_voice_signaling_mode_410
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_411  tpncp.input_voice_signaling_mode_411
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_412  tpncp.input_voice_signaling_mode_412
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_413  tpncp.input_voice_signaling_mode_413
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_414  tpncp.input_voice_signaling_mode_414
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_415  tpncp.input_voice_signaling_mode_415
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_416  tpncp.input_voice_signaling_mode_416
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_417  tpncp.input_voice_signaling_mode_417
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_418  tpncp.input_voice_signaling_mode_418
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_419  tpncp.input_voice_signaling_mode_419
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_42  tpncp.input_voice_signaling_mode_42
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_420  tpncp.input_voice_signaling_mode_420
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_421  tpncp.input_voice_signaling_mode_421
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_422  tpncp.input_voice_signaling_mode_422
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_423  tpncp.input_voice_signaling_mode_423
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_424  tpncp.input_voice_signaling_mode_424
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_425  tpncp.input_voice_signaling_mode_425
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_426  tpncp.input_voice_signaling_mode_426
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_427  tpncp.input_voice_signaling_mode_427
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_428  tpncp.input_voice_signaling_mode_428
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_429  tpncp.input_voice_signaling_mode_429
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_43  tpncp.input_voice_signaling_mode_43
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_430  tpncp.input_voice_signaling_mode_430
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_431  tpncp.input_voice_signaling_mode_431
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_432  tpncp.input_voice_signaling_mode_432
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_433  tpncp.input_voice_signaling_mode_433
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_434  tpncp.input_voice_signaling_mode_434
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_435  tpncp.input_voice_signaling_mode_435
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_436  tpncp.input_voice_signaling_mode_436
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_437  tpncp.input_voice_signaling_mode_437
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_438  tpncp.input_voice_signaling_mode_438
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_439  tpncp.input_voice_signaling_mode_439
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_44  tpncp.input_voice_signaling_mode_44
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_440  tpncp.input_voice_signaling_mode_440
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_441  tpncp.input_voice_signaling_mode_441
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_442  tpncp.input_voice_signaling_mode_442
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_443  tpncp.input_voice_signaling_mode_443
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_444  tpncp.input_voice_signaling_mode_444
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_445  tpncp.input_voice_signaling_mode_445
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_446  tpncp.input_voice_signaling_mode_446
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_447  tpncp.input_voice_signaling_mode_447
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_448  tpncp.input_voice_signaling_mode_448
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_449  tpncp.input_voice_signaling_mode_449
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_45  tpncp.input_voice_signaling_mode_45
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_450  tpncp.input_voice_signaling_mode_450
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_451  tpncp.input_voice_signaling_mode_451
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_452  tpncp.input_voice_signaling_mode_452
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_453  tpncp.input_voice_signaling_mode_453
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_454  tpncp.input_voice_signaling_mode_454
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_455  tpncp.input_voice_signaling_mode_455
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_456  tpncp.input_voice_signaling_mode_456
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_457  tpncp.input_voice_signaling_mode_457
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_458  tpncp.input_voice_signaling_mode_458
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_459  tpncp.input_voice_signaling_mode_459
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_46  tpncp.input_voice_signaling_mode_46
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_460  tpncp.input_voice_signaling_mode_460
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_461  tpncp.input_voice_signaling_mode_461
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_462  tpncp.input_voice_signaling_mode_462
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_463  tpncp.input_voice_signaling_mode_463
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_464  tpncp.input_voice_signaling_mode_464
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_465  tpncp.input_voice_signaling_mode_465
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_466  tpncp.input_voice_signaling_mode_466
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_467  tpncp.input_voice_signaling_mode_467
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_468  tpncp.input_voice_signaling_mode_468
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_469  tpncp.input_voice_signaling_mode_469
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_47  tpncp.input_voice_signaling_mode_47
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_470  tpncp.input_voice_signaling_mode_470
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_471  tpncp.input_voice_signaling_mode_471
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_472  tpncp.input_voice_signaling_mode_472
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_473  tpncp.input_voice_signaling_mode_473
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_474  tpncp.input_voice_signaling_mode_474
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_475  tpncp.input_voice_signaling_mode_475
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_476  tpncp.input_voice_signaling_mode_476
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_477  tpncp.input_voice_signaling_mode_477
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_478  tpncp.input_voice_signaling_mode_478
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_479  tpncp.input_voice_signaling_mode_479
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_48  tpncp.input_voice_signaling_mode_48
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_480  tpncp.input_voice_signaling_mode_480
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_481  tpncp.input_voice_signaling_mode_481
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_482  tpncp.input_voice_signaling_mode_482
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_483  tpncp.input_voice_signaling_mode_483
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_484  tpncp.input_voice_signaling_mode_484
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_485  tpncp.input_voice_signaling_mode_485
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_486  tpncp.input_voice_signaling_mode_486
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_487  tpncp.input_voice_signaling_mode_487
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_488  tpncp.input_voice_signaling_mode_488
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_489  tpncp.input_voice_signaling_mode_489
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_49  tpncp.input_voice_signaling_mode_49
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_490  tpncp.input_voice_signaling_mode_490
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_491  tpncp.input_voice_signaling_mode_491
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_492  tpncp.input_voice_signaling_mode_492
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_493  tpncp.input_voice_signaling_mode_493
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_494  tpncp.input_voice_signaling_mode_494
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_495  tpncp.input_voice_signaling_mode_495
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_496  tpncp.input_voice_signaling_mode_496
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_497  tpncp.input_voice_signaling_mode_497
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_498  tpncp.input_voice_signaling_mode_498
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_499  tpncp.input_voice_signaling_mode_499
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_5  tpncp.input_voice_signaling_mode_5
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_50  tpncp.input_voice_signaling_mode_50
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_500  tpncp.input_voice_signaling_mode_500
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_501  tpncp.input_voice_signaling_mode_501
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_502  tpncp.input_voice_signaling_mode_502
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_503  tpncp.input_voice_signaling_mode_503
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_51  tpncp.input_voice_signaling_mode_51
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_52  tpncp.input_voice_signaling_mode_52
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_53  tpncp.input_voice_signaling_mode_53
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_54  tpncp.input_voice_signaling_mode_54
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_55  tpncp.input_voice_signaling_mode_55
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_56  tpncp.input_voice_signaling_mode_56
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_57  tpncp.input_voice_signaling_mode_57
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_58  tpncp.input_voice_signaling_mode_58
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_59  tpncp.input_voice_signaling_mode_59
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_6  tpncp.input_voice_signaling_mode_6
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_60  tpncp.input_voice_signaling_mode_60
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_61  tpncp.input_voice_signaling_mode_61
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_62  tpncp.input_voice_signaling_mode_62
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_63  tpncp.input_voice_signaling_mode_63
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_64  tpncp.input_voice_signaling_mode_64
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_65  tpncp.input_voice_signaling_mode_65
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_66  tpncp.input_voice_signaling_mode_66
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_67  tpncp.input_voice_signaling_mode_67
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_68  tpncp.input_voice_signaling_mode_68
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_69  tpncp.input_voice_signaling_mode_69
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_7  tpncp.input_voice_signaling_mode_7
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_70  tpncp.input_voice_signaling_mode_70
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_71  tpncp.input_voice_signaling_mode_71
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_72  tpncp.input_voice_signaling_mode_72
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_73  tpncp.input_voice_signaling_mode_73
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_74  tpncp.input_voice_signaling_mode_74
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_75  tpncp.input_voice_signaling_mode_75
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_76  tpncp.input_voice_signaling_mode_76
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_77  tpncp.input_voice_signaling_mode_77
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_78  tpncp.input_voice_signaling_mode_78
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_79  tpncp.input_voice_signaling_mode_79
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_8  tpncp.input_voice_signaling_mode_8
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_80  tpncp.input_voice_signaling_mode_80
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_81  tpncp.input_voice_signaling_mode_81
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_82  tpncp.input_voice_signaling_mode_82
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_83  tpncp.input_voice_signaling_mode_83
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_84  tpncp.input_voice_signaling_mode_84
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_85  tpncp.input_voice_signaling_mode_85
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_86  tpncp.input_voice_signaling_mode_86
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_87  tpncp.input_voice_signaling_mode_87
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_88  tpncp.input_voice_signaling_mode_88
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_89  tpncp.input_voice_signaling_mode_89
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_9  tpncp.input_voice_signaling_mode_9
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_90  tpncp.input_voice_signaling_mode_90
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_91  tpncp.input_voice_signaling_mode_91
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_92  tpncp.input_voice_signaling_mode_92
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_93  tpncp.input_voice_signaling_mode_93
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_94  tpncp.input_voice_signaling_mode_94
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_95  tpncp.input_voice_signaling_mode_95
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_96  tpncp.input_voice_signaling_mode_96
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_97  tpncp.input_voice_signaling_mode_97
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_98  tpncp.input_voice_signaling_mode_98
        Unsigned 8-bit integer
    tpncp.input_voice_signaling_mode_99  tpncp.input_voice_signaling_mode_99
        Unsigned 8-bit integer
    tpncp.instance_type  tpncp.instance_type
        Signed 32-bit integer
    tpncp.inter_cas_time_0  tpncp.inter_cas_time_0
        Signed 32-bit integer
    tpncp.inter_cas_time_1  tpncp.inter_cas_time_1
        Signed 32-bit integer
    tpncp.inter_cas_time_10  tpncp.inter_cas_time_10
        Signed 32-bit integer
    tpncp.inter_cas_time_11  tpncp.inter_cas_time_11
        Signed 32-bit integer
    tpncp.inter_cas_time_12  tpncp.inter_cas_time_12
        Signed 32-bit integer
    tpncp.inter_cas_time_13  tpncp.inter_cas_time_13
        Signed 32-bit integer
    tpncp.inter_cas_time_14  tpncp.inter_cas_time_14
        Signed 32-bit integer
    tpncp.inter_cas_time_15  tpncp.inter_cas_time_15
        Signed 32-bit integer
    tpncp.inter_cas_time_16  tpncp.inter_cas_time_16
        Signed 32-bit integer
    tpncp.inter_cas_time_17  tpncp.inter_cas_time_17
        Signed 32-bit integer
    tpncp.inter_cas_time_18  tpncp.inter_cas_time_18
        Signed 32-bit integer
    tpncp.inter_cas_time_19  tpncp.inter_cas_time_19
        Signed 32-bit integer
    tpncp.inter_cas_time_2  tpncp.inter_cas_time_2
        Signed 32-bit integer
    tpncp.inter_cas_time_20  tpncp.inter_cas_time_20
        Signed 32-bit integer
    tpncp.inter_cas_time_21  tpncp.inter_cas_time_21
        Signed 32-bit integer
    tpncp.inter_cas_time_22  tpncp.inter_cas_time_22
        Signed 32-bit integer
    tpncp.inter_cas_time_23  tpncp.inter_cas_time_23
        Signed 32-bit integer
    tpncp.inter_cas_time_24  tpncp.inter_cas_time_24
        Signed 32-bit integer
    tpncp.inter_cas_time_25  tpncp.inter_cas_time_25
        Signed 32-bit integer
    tpncp.inter_cas_time_26  tpncp.inter_cas_time_26
        Signed 32-bit integer
    tpncp.inter_cas_time_27  tpncp.inter_cas_time_27
        Signed 32-bit integer
    tpncp.inter_cas_time_28  tpncp.inter_cas_time_28
        Signed 32-bit integer
    tpncp.inter_cas_time_29  tpncp.inter_cas_time_29
        Signed 32-bit integer
    tpncp.inter_cas_time_3  tpncp.inter_cas_time_3
        Signed 32-bit integer
    tpncp.inter_cas_time_30  tpncp.inter_cas_time_30
        Signed 32-bit integer
    tpncp.inter_cas_time_31  tpncp.inter_cas_time_31
        Signed 32-bit integer
    tpncp.inter_cas_time_32  tpncp.inter_cas_time_32
        Signed 32-bit integer
    tpncp.inter_cas_time_33  tpncp.inter_cas_time_33
        Signed 32-bit integer
    tpncp.inter_cas_time_34  tpncp.inter_cas_time_34
        Signed 32-bit integer
    tpncp.inter_cas_time_35  tpncp.inter_cas_time_35
        Signed 32-bit integer
    tpncp.inter_cas_time_36  tpncp.inter_cas_time_36
        Signed 32-bit integer
    tpncp.inter_cas_time_37  tpncp.inter_cas_time_37
        Signed 32-bit integer
    tpncp.inter_cas_time_38  tpncp.inter_cas_time_38
        Signed 32-bit integer
    tpncp.inter_cas_time_39  tpncp.inter_cas_time_39
        Signed 32-bit integer
    tpncp.inter_cas_time_4  tpncp.inter_cas_time_4
        Signed 32-bit integer
    tpncp.inter_cas_time_40  tpncp.inter_cas_time_40
        Signed 32-bit integer
    tpncp.inter_cas_time_41  tpncp.inter_cas_time_41
        Signed 32-bit integer
    tpncp.inter_cas_time_42  tpncp.inter_cas_time_42
        Signed 32-bit integer
    tpncp.inter_cas_time_43  tpncp.inter_cas_time_43
        Signed 32-bit integer
    tpncp.inter_cas_time_44  tpncp.inter_cas_time_44
        Signed 32-bit integer
    tpncp.inter_cas_time_45  tpncp.inter_cas_time_45
        Signed 32-bit integer
    tpncp.inter_cas_time_46  tpncp.inter_cas_time_46
        Signed 32-bit integer
    tpncp.inter_cas_time_47  tpncp.inter_cas_time_47
        Signed 32-bit integer
    tpncp.inter_cas_time_48  tpncp.inter_cas_time_48
        Signed 32-bit integer
    tpncp.inter_cas_time_49  tpncp.inter_cas_time_49
        Signed 32-bit integer
    tpncp.inter_cas_time_5  tpncp.inter_cas_time_5
        Signed 32-bit integer
    tpncp.inter_cas_time_6  tpncp.inter_cas_time_6
        Signed 32-bit integer
    tpncp.inter_cas_time_7  tpncp.inter_cas_time_7
        Signed 32-bit integer
    tpncp.inter_cas_time_8  tpncp.inter_cas_time_8
        Signed 32-bit integer
    tpncp.inter_cas_time_9  tpncp.inter_cas_time_9
        Signed 32-bit integer
    tpncp.inter_digit_critical_timer  tpncp.inter_digit_critical_timer
        Signed 32-bit integer
    tpncp.inter_digit_time_0  tpncp.inter_digit_time_0
        Signed 32-bit integer
    tpncp.inter_digit_time_1  tpncp.inter_digit_time_1
        Signed 32-bit integer
    tpncp.inter_digit_time_10  tpncp.inter_digit_time_10
        Signed 32-bit integer
    tpncp.inter_digit_time_11  tpncp.inter_digit_time_11
        Signed 32-bit integer
    tpncp.inter_digit_time_12  tpncp.inter_digit_time_12
        Signed 32-bit integer
    tpncp.inter_digit_time_13  tpncp.inter_digit_time_13
        Signed 32-bit integer
    tpncp.inter_digit_time_14  tpncp.inter_digit_time_14
        Signed 32-bit integer
    tpncp.inter_digit_time_15  tpncp.inter_digit_time_15
        Signed 32-bit integer
    tpncp.inter_digit_time_16  tpncp.inter_digit_time_16
        Signed 32-bit integer
    tpncp.inter_digit_time_17  tpncp.inter_digit_time_17
        Signed 32-bit integer
    tpncp.inter_digit_time_18  tpncp.inter_digit_time_18
        Signed 32-bit integer
    tpncp.inter_digit_time_19  tpncp.inter_digit_time_19
        Signed 32-bit integer
    tpncp.inter_digit_time_2  tpncp.inter_digit_time_2
        Signed 32-bit integer
    tpncp.inter_digit_time_20  tpncp.inter_digit_time_20
        Signed 32-bit integer
    tpncp.inter_digit_time_21  tpncp.inter_digit_time_21
        Signed 32-bit integer
    tpncp.inter_digit_time_22  tpncp.inter_digit_time_22
        Signed 32-bit integer
    tpncp.inter_digit_time_23  tpncp.inter_digit_time_23
        Signed 32-bit integer
    tpncp.inter_digit_time_24  tpncp.inter_digit_time_24
        Signed 32-bit integer
    tpncp.inter_digit_time_25  tpncp.inter_digit_time_25
        Signed 32-bit integer
    tpncp.inter_digit_time_26  tpncp.inter_digit_time_26
        Signed 32-bit integer
    tpncp.inter_digit_time_27  tpncp.inter_digit_time_27
        Signed 32-bit integer
    tpncp.inter_digit_time_28  tpncp.inter_digit_time_28
        Signed 32-bit integer
    tpncp.inter_digit_time_29  tpncp.inter_digit_time_29
        Signed 32-bit integer
    tpncp.inter_digit_time_3  tpncp.inter_digit_time_3
        Signed 32-bit integer
    tpncp.inter_digit_time_30  tpncp.inter_digit_time_30
        Signed 32-bit integer
    tpncp.inter_digit_time_31  tpncp.inter_digit_time_31
        Signed 32-bit integer
    tpncp.inter_digit_time_32  tpncp.inter_digit_time_32
        Signed 32-bit integer
    tpncp.inter_digit_time_33  tpncp.inter_digit_time_33
        Signed 32-bit integer
    tpncp.inter_digit_time_34  tpncp.inter_digit_time_34
        Signed 32-bit integer
    tpncp.inter_digit_time_35  tpncp.inter_digit_time_35
        Signed 32-bit integer
    tpncp.inter_digit_time_36  tpncp.inter_digit_time_36
        Signed 32-bit integer
    tpncp.inter_digit_time_37  tpncp.inter_digit_time_37
        Signed 32-bit integer
    tpncp.inter_digit_time_38  tpncp.inter_digit_time_38
        Signed 32-bit integer
    tpncp.inter_digit_time_39  tpncp.inter_digit_time_39
        Signed 32-bit integer
    tpncp.inter_digit_time_4  tpncp.inter_digit_time_4
        Signed 32-bit integer
    tpncp.inter_digit_time_5  tpncp.inter_digit_time_5
        Signed 32-bit integer
    tpncp.inter_digit_time_6  tpncp.inter_digit_time_6
        Signed 32-bit integer
    tpncp.inter_digit_time_7  tpncp.inter_digit_time_7
        Signed 32-bit integer
    tpncp.inter_digit_time_8  tpncp.inter_digit_time_8
        Signed 32-bit integer
    tpncp.inter_digit_time_9  tpncp.inter_digit_time_9
        Signed 32-bit integer
    tpncp.inter_digit_timer  tpncp.inter_digit_timer
        Signed 32-bit integer
    tpncp.inter_exchange_prefix_num  tpncp.inter_exchange_prefix_num
        String
    tpncp.interaction_required  tpncp.interaction_required
        Unsigned 8-bit integer
    tpncp.interface_type  tpncp.interface_type
        Signed 32-bit integer
    tpncp.internal_vcc_handle  tpncp.internal_vcc_handle
        Signed 16-bit integer
    tpncp.interval  tpncp.interval
        Signed 32-bit integer
    tpncp.interval_length  tpncp.interval_length
        Signed 32-bit integer
    tpncp.invoke_id  tpncp.invoke_id
        Signed 32-bit integer
    tpncp.ip_address  tpncp.ip_address
        Unsigned 32-bit integer
    tpncp.ip_address_0  tpncp.ip_address_0
        Unsigned 32-bit integer
    tpncp.ip_address_1  tpncp.ip_address_1
        Unsigned 32-bit integer
    tpncp.ip_address_2  tpncp.ip_address_2
        Unsigned 32-bit integer
    tpncp.ip_address_3  tpncp.ip_address_3
        Unsigned 32-bit integer
    tpncp.ip_address_4  tpncp.ip_address_4
        Unsigned 32-bit integer
    tpncp.ip_address_5  tpncp.ip_address_5
        Unsigned 32-bit integer
    tpncp.ip_dst_addr  tpncp.ip_dst_addr
        Unsigned 32-bit integer
    tpncp.ip_precedence  tpncp.ip_precedence
        Signed 32-bit integer
    tpncp.ip_tos_field_in_udp_packet  tpncp.ip_tos_field_in_udp_packet
        Unsigned 8-bit integer
    tpncp.iptos  tpncp.iptos
        Signed 32-bit integer
    tpncp.ipv6_addr_0  tpncp.ipv6_addr_0
        Unsigned 32-bit integer
    tpncp.ipv6_addr_1  tpncp.ipv6_addr_1
        Unsigned 32-bit integer
    tpncp.ipv6_addr_2  tpncp.ipv6_addr_2
        Unsigned 32-bit integer
    tpncp.ipv6_addr_3  tpncp.ipv6_addr_3
        Unsigned 32-bit integer
    tpncp.is_active  tpncp.is_active
        Unsigned 8-bit integer
    tpncp.is_available  tpncp.is_available
        Unsigned 8-bit integer
    tpncp.is_burn_success  tpncp.is_burn_success
        Unsigned 8-bit integer
    tpncp.is_data_flow_control  tpncp.is_data_flow_control
        Unsigned 8-bit integer
    tpncp.is_duplex_0  tpncp.is_duplex_0
        Signed 32-bit integer
    tpncp.is_duplex_1  tpncp.is_duplex_1
        Signed 32-bit integer
    tpncp.is_duplex_2  tpncp.is_duplex_2
        Signed 32-bit integer
    tpncp.is_duplex_3  tpncp.is_duplex_3
        Signed 32-bit integer
    tpncp.is_duplex_4  tpncp.is_duplex_4
        Signed 32-bit integer
    tpncp.is_duplex_5  tpncp.is_duplex_5
        Signed 32-bit integer
    tpncp.is_enable_listener_only_participants  tpncp.is_enable_listener_only_participants
        Signed 32-bit integer
    tpncp.is_external_grammar  tpncp.is_external_grammar
        Unsigned 8-bit integer
    tpncp.is_last  tpncp.is_last
        Signed 32-bit integer
    tpncp.is_link_up_0  tpncp.is_link_up_0
        Signed 32-bit integer
    tpncp.is_link_up_1  tpncp.is_link_up_1
        Signed 32-bit integer
    tpncp.is_link_up_2  tpncp.is_link_up_2
        Signed 32-bit integer
    tpncp.is_link_up_3  tpncp.is_link_up_3
        Signed 32-bit integer
    tpncp.is_link_up_4  tpncp.is_link_up_4
        Signed 32-bit integer
    tpncp.is_link_up_5  tpncp.is_link_up_5
        Signed 32-bit integer
    tpncp.is_load_success  tpncp.is_load_success
        Unsigned 8-bit integer
    tpncp.is_multiple_ip_addresses_enabled_0  tpncp.is_multiple_ip_addresses_enabled_0
        Signed 32-bit integer
    tpncp.is_multiple_ip_addresses_enabled_1  tpncp.is_multiple_ip_addresses_enabled_1
        Signed 32-bit integer
    tpncp.is_multiple_ip_addresses_enabled_2  tpncp.is_multiple_ip_addresses_enabled_2
        Signed 32-bit integer
    tpncp.is_multiple_ip_addresses_enabled_3  tpncp.is_multiple_ip_addresses_enabled_3
        Signed 32-bit integer
    tpncp.is_multiple_ip_addresses_enabled_4  tpncp.is_multiple_ip_addresses_enabled_4
        Signed 32-bit integer
    tpncp.is_multiple_ip_addresses_enabled_5  tpncp.is_multiple_ip_addresses_enabled_5
        Signed 32-bit integer
    tpncp.is_proxy_lcp_required  tpncp.is_proxy_lcp_required
        Unsigned 8-bit integer
    tpncp.is_repeat_dial_string  tpncp.is_repeat_dial_string
        Signed 32-bit integer
    tpncp.is_single_tunnel_required  tpncp.is_single_tunnel_required
        Unsigned 8-bit integer
    tpncp.is_threshold_alarm_active  tpncp.is_threshold_alarm_active
        Unsigned 8-bit integer
    tpncp.is_tunnel_auth_required  tpncp.is_tunnel_auth_required
        Unsigned 8-bit integer
    tpncp.is_tunnel_security_required  tpncp.is_tunnel_security_required
        Unsigned 8-bit integer
    tpncp.is_vlan_enabled_0  tpncp.is_vlan_enabled_0
        Signed 32-bit integer
    tpncp.is_vlan_enabled_1  tpncp.is_vlan_enabled_1
        Signed 32-bit integer
    tpncp.is_vlan_enabled_2  tpncp.is_vlan_enabled_2
        Signed 32-bit integer
    tpncp.is_vlan_enabled_3  tpncp.is_vlan_enabled_3
        Signed 32-bit integer
    tpncp.is_vlan_enabled_4  tpncp.is_vlan_enabled_4
        Signed 32-bit integer
    tpncp.is_vlan_enabled_5  tpncp.is_vlan_enabled_5
        Signed 32-bit integer
    tpncp.is_vmwi  tpncp.is_vmwi
        Unsigned 8-bit integer
    tpncp.isdn_progress_ind_description  tpncp.isdn_progress_ind_description
        Signed 32-bit integer
    tpncp.isdn_progress_ind_location  tpncp.isdn_progress_ind_location
        Signed 32-bit integer
    tpncp.isup_msg_type  tpncp.isup_msg_type
        Signed 32-bit integer
    tpncp.iterations  tpncp.iterations
        Unsigned 16-bit integer
    tpncp.jb_abs_max_delay  tpncp.jb_abs_max_delay
        Unsigned 16-bit integer
    tpncp.jb_max_delay  tpncp.jb_max_delay
        Unsigned 16-bit integer
    tpncp.jb_nom_delay  tpncp.jb_nom_delay
        Unsigned 16-bit integer
    tpncp.jitter  tpncp.jitter
        Unsigned 32-bit integer
    tpncp.jitter_buf_accum_delay  tpncp.jitter_buf_accum_delay
        Unsigned 32-bit integer
    tpncp.jitter_buf_error_cnt  tpncp.jitter_buf_error_cnt
        Unsigned 32-bit integer
    tpncp.keep_digits  tpncp.keep_digits
        Signed 32-bit integer
    tpncp.key  tpncp.key
        String
    tpncp.key_length  tpncp.key_length
        Signed 32-bit integer
    tpncp.keypad_size  tpncp.keypad_size
        Signed 32-bit integer
    tpncp.keypad_string  tpncp.keypad_string
        String
    tpncp.keys_patterns  tpncp.keys_patterns
        String
    tpncp.l2tp_tunnel_id  tpncp.l2tp_tunnel_id
        Unsigned 16-bit integer
    tpncp.l_ais  tpncp.l_ais
        Signed 32-bit integer
    tpncp.l_rdi  tpncp.l_rdi
        Signed 32-bit integer
    tpncp.largest_conference_enable  tpncp.largest_conference_enable
        Signed 32-bit integer
    tpncp.last_cas  tpncp.last_cas
        Signed 32-bit integer
    tpncp.last_current_disconnect_duration  tpncp.last_current_disconnect_duration
        Unsigned 32-bit integer
    tpncp.last_rtt  tpncp.last_rtt
        Unsigned 32-bit integer
    tpncp.last_value  tpncp.last_value
        Signed 32-bit integer
    tpncp.lcd  tpncp.lcd
        Signed 32-bit integer
    tpncp.length  Length
        Unsigned 16-bit integer
    tpncp.license_key  tpncp.license_key
        String
    tpncp.light_conf_handle  tpncp.light_conf_handle
        Signed 32-bit integer
    tpncp.line_code_violation  tpncp.line_code_violation
        Signed 32-bit integer
    tpncp.line_errored_seconds  tpncp.line_errored_seconds
        Signed 32-bit integer
    tpncp.line_in_file  tpncp.line_in_file
        Signed 32-bit integer
    tpncp.line_number  tpncp.line_number
        Signed 32-bit integer
    tpncp.line_polarity  tpncp.line_polarity
        Signed 32-bit integer
    tpncp.line_polarity_state  tpncp.line_polarity_state
        Signed 32-bit integer
    tpncp.link  tpncp.link
        Signed 32-bit integer
    tpncp.link_event_cause  tpncp.link_event_cause
        Signed 32-bit integer
    tpncp.link_id  tpncp.link_id
        Signed 32-bit integer
    tpncp.link_set  tpncp.link_set
        Signed 32-bit integer
    tpncp.link_set_event_cause  tpncp.link_set_event_cause
        Signed 32-bit integer
    tpncp.link_set_name  tpncp.link_set_name
        String
    tpncp.link_set_no  tpncp.link_set_no
        Signed 32-bit integer
    tpncp.linked_id_presence  tpncp.linked_id_presence
        Signed 32-bit integer
    tpncp.links_configured_no  tpncp.links_configured_no
        Signed 32-bit integer
    tpncp.links_no_0  tpncp.links_no_0
        Signed 32-bit integer
    tpncp.links_no_1  tpncp.links_no_1
        Signed 32-bit integer
    tpncp.links_no_10  tpncp.links_no_10
        Signed 32-bit integer
    tpncp.links_no_11  tpncp.links_no_11
        Signed 32-bit integer
    tpncp.links_no_12  tpncp.links_no_12
        Signed 32-bit integer
    tpncp.links_no_13  tpncp.links_no_13
        Signed 32-bit integer
    tpncp.links_no_14  tpncp.links_no_14
        Signed 32-bit integer
    tpncp.links_no_15  tpncp.links_no_15
        Signed 32-bit integer
    tpncp.links_no_2  tpncp.links_no_2
        Signed 32-bit integer
    tpncp.links_no_3  tpncp.links_no_3
        Signed 32-bit integer
    tpncp.links_no_4  tpncp.links_no_4
        Signed 32-bit integer
    tpncp.links_no_5  tpncp.links_no_5
        Signed 32-bit integer
    tpncp.links_no_6  tpncp.links_no_6
        Signed 32-bit integer
    tpncp.links_no_7  tpncp.links_no_7
        Signed 32-bit integer
    tpncp.links_no_8  tpncp.links_no_8
        Signed 32-bit integer
    tpncp.links_no_9  tpncp.links_no_9
        Signed 32-bit integer
    tpncp.links_per_card  tpncp.links_per_card
        Signed 32-bit integer
    tpncp.links_per_linkset  tpncp.links_per_linkset
        Signed 32-bit integer
    tpncp.links_slc_0  tpncp.links_slc_0
        Signed 32-bit integer
    tpncp.links_slc_1  tpncp.links_slc_1
        Signed 32-bit integer
    tpncp.links_slc_10  tpncp.links_slc_10
        Signed 32-bit integer
    tpncp.links_slc_11  tpncp.links_slc_11
        Signed 32-bit integer
    tpncp.links_slc_12  tpncp.links_slc_12
        Signed 32-bit integer
    tpncp.links_slc_13  tpncp.links_slc_13
        Signed 32-bit integer
    tpncp.links_slc_14  tpncp.links_slc_14
        Signed 32-bit integer
    tpncp.links_slc_15  tpncp.links_slc_15
        Signed 32-bit integer
    tpncp.links_slc_2  tpncp.links_slc_2
        Signed 32-bit integer
    tpncp.links_slc_3  tpncp.links_slc_3
        Signed 32-bit integer
    tpncp.links_slc_4  tpncp.links_slc_4
        Signed 32-bit integer
    tpncp.links_slc_5  tpncp.links_slc_5
        Signed 32-bit integer
    tpncp.links_slc_6  tpncp.links_slc_6
        Signed 32-bit integer
    tpncp.links_slc_7  tpncp.links_slc_7
        Signed 32-bit integer
    tpncp.links_slc_8  tpncp.links_slc_8
        Signed 32-bit integer
    tpncp.links_slc_9  tpncp.links_slc_9
        Signed 32-bit integer
    tpncp.linkset_timer_sets  tpncp.linkset_timer_sets
        Signed 32-bit integer
    tpncp.linksets_per_routeset  tpncp.linksets_per_routeset
        Signed 32-bit integer
    tpncp.linksets_per_sn  tpncp.linksets_per_sn
        Signed 32-bit integer
    tpncp.llid  tpncp.llid
        String
    tpncp.lo_alarm_status_0  tpncp.lo_alarm_status_0
        Signed 32-bit integer
    tpncp.lo_alarm_status_1  tpncp.lo_alarm_status_1
        Signed 32-bit integer
    tpncp.lo_alarm_status_10  tpncp.lo_alarm_status_10
        Signed 32-bit integer
    tpncp.lo_alarm_status_11  tpncp.lo_alarm_status_11
        Signed 32-bit integer
    tpncp.lo_alarm_status_12  tpncp.lo_alarm_status_12
        Signed 32-bit integer
    tpncp.lo_alarm_status_13  tpncp.lo_alarm_status_13
        Signed 32-bit integer
    tpncp.lo_alarm_status_14  tpncp.lo_alarm_status_14
        Signed 32-bit integer
    tpncp.lo_alarm_status_15  tpncp.lo_alarm_status_15
        Signed 32-bit integer
    tpncp.lo_alarm_status_16  tpncp.lo_alarm_status_16
        Signed 32-bit integer
    tpncp.lo_alarm_status_17  tpncp.lo_alarm_status_17
        Signed 32-bit integer
    tpncp.lo_alarm_status_18  tpncp.lo_alarm_status_18
        Signed 32-bit integer
    tpncp.lo_alarm_status_19  tpncp.lo_alarm_status_19
        Signed 32-bit integer
    tpncp.lo_alarm_status_2  tpncp.lo_alarm_status_2
        Signed 32-bit integer
    tpncp.lo_alarm_status_20  tpncp.lo_alarm_status_20
        Signed 32-bit integer
    tpncp.lo_alarm_status_21  tpncp.lo_alarm_status_21
        Signed 32-bit integer
    tpncp.lo_alarm_status_22  tpncp.lo_alarm_status_22
        Signed 32-bit integer
    tpncp.lo_alarm_status_23  tpncp.lo_alarm_status_23
        Signed 32-bit integer
    tpncp.lo_alarm_status_24  tpncp.lo_alarm_status_24
        Signed 32-bit integer
    tpncp.lo_alarm_status_25  tpncp.lo_alarm_status_25
        Signed 32-bit integer
    tpncp.lo_alarm_status_26  tpncp.lo_alarm_status_26
        Signed 32-bit integer
    tpncp.lo_alarm_status_27  tpncp.lo_alarm_status_27
        Signed 32-bit integer
    tpncp.lo_alarm_status_28  tpncp.lo_alarm_status_28
        Signed 32-bit integer
    tpncp.lo_alarm_status_29  tpncp.lo_alarm_status_29
        Signed 32-bit integer
    tpncp.lo_alarm_status_3  tpncp.lo_alarm_status_3
        Signed 32-bit integer
    tpncp.lo_alarm_status_30  tpncp.lo_alarm_status_30
        Signed 32-bit integer
    tpncp.lo_alarm_status_31  tpncp.lo_alarm_status_31
        Signed 32-bit integer
    tpncp.lo_alarm_status_32  tpncp.lo_alarm_status_32
        Signed 32-bit integer
    tpncp.lo_alarm_status_33  tpncp.lo_alarm_status_33
        Signed 32-bit integer
    tpncp.lo_alarm_status_34  tpncp.lo_alarm_status_34
        Signed 32-bit integer
    tpncp.lo_alarm_status_35  tpncp.lo_alarm_status_35
        Signed 32-bit integer
    tpncp.lo_alarm_status_36  tpncp.lo_alarm_status_36
        Signed 32-bit integer
    tpncp.lo_alarm_status_37  tpncp.lo_alarm_status_37
        Signed 32-bit integer
    tpncp.lo_alarm_status_38  tpncp.lo_alarm_status_38
        Signed 32-bit integer
    tpncp.lo_alarm_status_39  tpncp.lo_alarm_status_39
        Signed 32-bit integer
    tpncp.lo_alarm_status_4  tpncp.lo_alarm_status_4
        Signed 32-bit integer
    tpncp.lo_alarm_status_40  tpncp.lo_alarm_status_40
        Signed 32-bit integer
    tpncp.lo_alarm_status_41  tpncp.lo_alarm_status_41
        Signed 32-bit integer
    tpncp.lo_alarm_status_42  tpncp.lo_alarm_status_42
        Signed 32-bit integer
    tpncp.lo_alarm_status_43  tpncp.lo_alarm_status_43
        Signed 32-bit integer
    tpncp.lo_alarm_status_44  tpncp.lo_alarm_status_44
        Signed 32-bit integer
    tpncp.lo_alarm_status_45  tpncp.lo_alarm_status_45
        Signed 32-bit integer
    tpncp.lo_alarm_status_46  tpncp.lo_alarm_status_46
        Signed 32-bit integer
    tpncp.lo_alarm_status_47  tpncp.lo_alarm_status_47
        Signed 32-bit integer
    tpncp.lo_alarm_status_48  tpncp.lo_alarm_status_48
        Signed 32-bit integer
    tpncp.lo_alarm_status_49  tpncp.lo_alarm_status_49
        Signed 32-bit integer
    tpncp.lo_alarm_status_5  tpncp.lo_alarm_status_5
        Signed 32-bit integer
    tpncp.lo_alarm_status_50  tpncp.lo_alarm_status_50
        Signed 32-bit integer
    tpncp.lo_alarm_status_51  tpncp.lo_alarm_status_51
        Signed 32-bit integer
    tpncp.lo_alarm_status_52  tpncp.lo_alarm_status_52
        Signed 32-bit integer
    tpncp.lo_alarm_status_53  tpncp.lo_alarm_status_53
        Signed 32-bit integer
    tpncp.lo_alarm_status_54  tpncp.lo_alarm_status_54
        Signed 32-bit integer
    tpncp.lo_alarm_status_55  tpncp.lo_alarm_status_55
        Signed 32-bit integer
    tpncp.lo_alarm_status_56  tpncp.lo_alarm_status_56
        Signed 32-bit integer
    tpncp.lo_alarm_status_57  tpncp.lo_alarm_status_57
        Signed 32-bit integer
    tpncp.lo_alarm_status_58  tpncp.lo_alarm_status_58
        Signed 32-bit integer
    tpncp.lo_alarm_status_59  tpncp.lo_alarm_status_59
        Signed 32-bit integer
    tpncp.lo_alarm_status_6  tpncp.lo_alarm_status_6
        Signed 32-bit integer
    tpncp.lo_alarm_status_60  tpncp.lo_alarm_status_60
        Signed 32-bit integer
    tpncp.lo_alarm_status_61  tpncp.lo_alarm_status_61
        Signed 32-bit integer
    tpncp.lo_alarm_status_62  tpncp.lo_alarm_status_62
        Signed 32-bit integer
    tpncp.lo_alarm_status_63  tpncp.lo_alarm_status_63
        Signed 32-bit integer
    tpncp.lo_alarm_status_64  tpncp.lo_alarm_status_64
        Signed 32-bit integer
    tpncp.lo_alarm_status_65  tpncp.lo_alarm_status_65
        Signed 32-bit integer
    tpncp.lo_alarm_status_66  tpncp.lo_alarm_status_66
        Signed 32-bit integer
    tpncp.lo_alarm_status_67  tpncp.lo_alarm_status_67
        Signed 32-bit integer
    tpncp.lo_alarm_status_68  tpncp.lo_alarm_status_68
        Signed 32-bit integer
    tpncp.lo_alarm_status_69  tpncp.lo_alarm_status_69
        Signed 32-bit integer
    tpncp.lo_alarm_status_7  tpncp.lo_alarm_status_7
        Signed 32-bit integer
    tpncp.lo_alarm_status_70  tpncp.lo_alarm_status_70
        Signed 32-bit integer
    tpncp.lo_alarm_status_71  tpncp.lo_alarm_status_71
        Signed 32-bit integer
    tpncp.lo_alarm_status_72  tpncp.lo_alarm_status_72
        Signed 32-bit integer
    tpncp.lo_alarm_status_73  tpncp.lo_alarm_status_73
        Signed 32-bit integer
    tpncp.lo_alarm_status_74  tpncp.lo_alarm_status_74
        Signed 32-bit integer
    tpncp.lo_alarm_status_75  tpncp.lo_alarm_status_75
        Signed 32-bit integer
    tpncp.lo_alarm_status_76  tpncp.lo_alarm_status_76
        Signed 32-bit integer
    tpncp.lo_alarm_status_77  tpncp.lo_alarm_status_77
        Signed 32-bit integer
    tpncp.lo_alarm_status_78  tpncp.lo_alarm_status_78
        Signed 32-bit integer
    tpncp.lo_alarm_status_79  tpncp.lo_alarm_status_79
        Signed 32-bit integer
    tpncp.lo_alarm_status_8  tpncp.lo_alarm_status_8
        Signed 32-bit integer
    tpncp.lo_alarm_status_80  tpncp.lo_alarm_status_80
        Signed 32-bit integer
    tpncp.lo_alarm_status_81  tpncp.lo_alarm_status_81
        Signed 32-bit integer
    tpncp.lo_alarm_status_82  tpncp.lo_alarm_status_82
        Signed 32-bit integer
    tpncp.lo_alarm_status_83  tpncp.lo_alarm_status_83
        Signed 32-bit integer
    tpncp.lo_alarm_status_9  tpncp.lo_alarm_status_9
        Signed 32-bit integer
    tpncp.local_port_0  tpncp.local_port_0
        Signed 32-bit integer
    tpncp.local_port_1  tpncp.local_port_1
        Signed 32-bit integer
    tpncp.local_port_10  tpncp.local_port_10
        Signed 32-bit integer
    tpncp.local_port_11  tpncp.local_port_11
        Signed 32-bit integer
    tpncp.local_port_12  tpncp.local_port_12
        Signed 32-bit integer
    tpncp.local_port_13  tpncp.local_port_13
        Signed 32-bit integer
    tpncp.local_port_14  tpncp.local_port_14
        Signed 32-bit integer
    tpncp.local_port_15  tpncp.local_port_15
        Signed 32-bit integer
    tpncp.local_port_16  tpncp.local_port_16
        Signed 32-bit integer
    tpncp.local_port_17  tpncp.local_port_17
        Signed 32-bit integer
    tpncp.local_port_18  tpncp.local_port_18
        Signed 32-bit integer
    tpncp.local_port_19  tpncp.local_port_19
        Signed 32-bit integer
    tpncp.local_port_2  tpncp.local_port_2
        Signed 32-bit integer
    tpncp.local_port_20  tpncp.local_port_20
        Signed 32-bit integer
    tpncp.local_port_21  tpncp.local_port_21
        Signed 32-bit integer
    tpncp.local_port_22  tpncp.local_port_22
        Signed 32-bit integer
    tpncp.local_port_23  tpncp.local_port_23
        Signed 32-bit integer
    tpncp.local_port_24  tpncp.local_port_24
        Signed 32-bit integer
    tpncp.local_port_25  tpncp.local_port_25
        Signed 32-bit integer
    tpncp.local_port_26  tpncp.local_port_26
        Signed 32-bit integer
    tpncp.local_port_27  tpncp.local_port_27
        Signed 32-bit integer
    tpncp.local_port_28  tpncp.local_port_28
        Signed 32-bit integer
    tpncp.local_port_29  tpncp.local_port_29
        Signed 32-bit integer
    tpncp.local_port_3  tpncp.local_port_3
        Signed 32-bit integer
    tpncp.local_port_30  tpncp.local_port_30
        Signed 32-bit integer
    tpncp.local_port_31  tpncp.local_port_31
        Signed 32-bit integer
    tpncp.local_port_4  tpncp.local_port_4
        Signed 32-bit integer
    tpncp.local_port_5  tpncp.local_port_5
        Signed 32-bit integer
    tpncp.local_port_6  tpncp.local_port_6
        Signed 32-bit integer
    tpncp.local_port_7  tpncp.local_port_7
        Signed 32-bit integer
    tpncp.local_port_8  tpncp.local_port_8
        Signed 32-bit integer
    tpncp.local_port_9  tpncp.local_port_9
        Signed 32-bit integer
    tpncp.local_rtp_port  tpncp.local_rtp_port
        Unsigned 16-bit integer
    tpncp.local_session_id  tpncp.local_session_id
        Signed 32-bit integer
    tpncp.local_session_seq_num  tpncp.local_session_seq_num
        Signed 32-bit integer
    tpncp.locally_inhibited  tpncp.locally_inhibited
        Signed 32-bit integer
    tpncp.lof  tpncp.lof
        Signed 32-bit integer
    tpncp.loop_back_port_state_0  tpncp.loop_back_port_state_0
        Signed 32-bit integer
    tpncp.loop_back_port_state_1  tpncp.loop_back_port_state_1
        Signed 32-bit integer
    tpncp.loop_back_port_state_2  tpncp.loop_back_port_state_2
        Signed 32-bit integer
    tpncp.loop_back_port_state_3  tpncp.loop_back_port_state_3
        Signed 32-bit integer
    tpncp.loop_back_port_state_4  tpncp.loop_back_port_state_4
        Signed 32-bit integer
    tpncp.loop_back_port_state_5  tpncp.loop_back_port_state_5
        Signed 32-bit integer
    tpncp.loop_back_port_state_6  tpncp.loop_back_port_state_6
        Signed 32-bit integer
    tpncp.loop_back_port_state_7  tpncp.loop_back_port_state_7
        Signed 32-bit integer
    tpncp.loop_back_port_state_8  tpncp.loop_back_port_state_8
        Signed 32-bit integer
    tpncp.loop_back_port_state_9  tpncp.loop_back_port_state_9
        Signed 32-bit integer
    tpncp.loop_back_status  tpncp.loop_back_status
        Signed 32-bit integer
    tpncp.loop_code  tpncp.loop_code
        Signed 32-bit integer
    tpncp.loop_direction  tpncp.loop_direction
        Signed 32-bit integer
    tpncp.loop_type  tpncp.loop_type
        Signed 32-bit integer
    tpncp.lop  tpncp.lop
        Signed 32-bit integer
    tpncp.los  tpncp.los
        Signed 32-bit integer
    tpncp.los_of_signal  tpncp.los_of_signal
        Signed 32-bit integer
    tpncp.los_port_state_0  tpncp.los_port_state_0
        Signed 32-bit integer
    tpncp.los_port_state_1  tpncp.los_port_state_1
        Signed 32-bit integer
    tpncp.los_port_state_2  tpncp.los_port_state_2
        Signed 32-bit integer
    tpncp.los_port_state_3  tpncp.los_port_state_3
        Signed 32-bit integer
    tpncp.los_port_state_4  tpncp.los_port_state_4
        Signed 32-bit integer
    tpncp.los_port_state_5  tpncp.los_port_state_5
        Signed 32-bit integer
    tpncp.los_port_state_6  tpncp.los_port_state_6
        Signed 32-bit integer
    tpncp.los_port_state_7  tpncp.los_port_state_7
        Signed 32-bit integer
    tpncp.los_port_state_8  tpncp.los_port_state_8
        Signed 32-bit integer
    tpncp.los_port_state_9  tpncp.los_port_state_9
        Signed 32-bit integer
    tpncp.loss_of_frame  tpncp.loss_of_frame
        Signed 32-bit integer
    tpncp.loss_of_signal  tpncp.loss_of_signal
        Signed 32-bit integer
    tpncp.loss_rate  tpncp.loss_rate
        Unsigned 8-bit integer
    tpncp.lost_crc4multiframe_sync  tpncp.lost_crc4multiframe_sync
        Signed 32-bit integer
    tpncp.low_threshold  tpncp.low_threshold
        Signed 32-bit integer
    tpncp.m  tpncp.m
        Signed 32-bit integer
    tpncp.maal_state  tpncp.maal_state
        Unsigned 8-bit integer
    tpncp.mac_addr_lsb  tpncp.mac_addr_lsb
        Signed 32-bit integer
    tpncp.mac_addr_lsb_0  tpncp.mac_addr_lsb_0
        Signed 32-bit integer
    tpncp.mac_addr_lsb_1  tpncp.mac_addr_lsb_1
        Signed 32-bit integer
    tpncp.mac_addr_lsb_2  tpncp.mac_addr_lsb_2
        Signed 32-bit integer
    tpncp.mac_addr_lsb_3  tpncp.mac_addr_lsb_3
        Signed 32-bit integer
    tpncp.mac_addr_lsb_4  tpncp.mac_addr_lsb_4
        Signed 32-bit integer
    tpncp.mac_addr_lsb_5  tpncp.mac_addr_lsb_5
        Signed 32-bit integer
    tpncp.mac_addr_msb  tpncp.mac_addr_msb
        Signed 32-bit integer
    tpncp.mac_addr_msb_0  tpncp.mac_addr_msb_0
        Signed 32-bit integer
    tpncp.mac_addr_msb_1  tpncp.mac_addr_msb_1
        Signed 32-bit integer
    tpncp.mac_addr_msb_2  tpncp.mac_addr_msb_2
        Signed 32-bit integer
    tpncp.mac_addr_msb_3  tpncp.mac_addr_msb_3
        Signed 32-bit integer
    tpncp.mac_addr_msb_4  tpncp.mac_addr_msb_4
        Signed 32-bit integer
    tpncp.mac_addr_msb_5  tpncp.mac_addr_msb_5
        Signed 32-bit integer
    tpncp.maintenance_field_m1  tpncp.maintenance_field_m1
        Signed 32-bit integer
    tpncp.maintenance_field_m2  tpncp.maintenance_field_m2
        Signed 32-bit integer
    tpncp.maintenance_field_m3  tpncp.maintenance_field_m3
        Signed 32-bit integer
    tpncp.master_temperature  tpncp.master_temperature
        Signed 32-bit integer
    tpncp.match_grammar_name  tpncp.match_grammar_name
        String
    tpncp.matched_map_index  tpncp.matched_map_index
        Signed 32-bit integer
    tpncp.matched_map_num  tpncp.matched_map_num
        Signed 32-bit integer
    tpncp.matched_value  tpncp.matched_value
        String
    tpncp.max  tpncp.max
        Signed 32-bit integer
    tpncp.max_ack_time_out  tpncp.max_ack_time_out
        Unsigned 32-bit integer
    tpncp.max_attempts  tpncp.max_attempts
        Signed 32-bit integer
    tpncp.max_dial_string_length  tpncp.max_dial_string_length
        Signed 32-bit integer
    tpncp.max_dtmf_digits_in_caller_id_string  tpncp.max_dtmf_digits_in_caller_id_string
        Unsigned 8-bit integer
    tpncp.max_end_dial_timer  tpncp.max_end_dial_timer
        Signed 32-bit integer
    tpncp.max_long_inter_digit_timer  tpncp.max_long_inter_digit_timer
        Signed 32-bit integer
    tpncp.max_num_of_indexes  tpncp.max_num_of_indexes
        Signed 32-bit integer
    tpncp.max_participants  tpncp.max_participants
        Signed 32-bit integer
    tpncp.max_rtt  tpncp.max_rtt
        Unsigned 32-bit integer
    tpncp.max_short_inter_digit_timer  tpncp.max_short_inter_digit_timer
        Signed 16-bit integer
    tpncp.max_simultaneous_speakers  tpncp.max_simultaneous_speakers
        Signed 32-bit integer
    tpncp.max_start_timer  tpncp.max_start_timer
        Signed 32-bit integer
    tpncp.mbs  tpncp.mbs
        Signed 32-bit integer
    tpncp.measurement_error  tpncp.measurement_error
        Signed 32-bit integer
    tpncp.measurement_mode  tpncp.measurement_mode
        Signed 32-bit integer
    tpncp.measurement_trigger  tpncp.measurement_trigger
        Signed 32-bit integer
    tpncp.measurement_unit  tpncp.measurement_unit
        Signed 32-bit integer
    tpncp.media_gateway_address_0  tpncp.media_gateway_address_0
        Unsigned 32-bit integer
    tpncp.media_gateway_address_1  tpncp.media_gateway_address_1
        Unsigned 32-bit integer
    tpncp.media_gateway_address_2  tpncp.media_gateway_address_2
        Unsigned 32-bit integer
    tpncp.media_gateway_address_3  tpncp.media_gateway_address_3
        Unsigned 32-bit integer
    tpncp.media_gateway_address_4  tpncp.media_gateway_address_4
        Unsigned 32-bit integer
    tpncp.media_gateway_address_5  tpncp.media_gateway_address_5
        Unsigned 32-bit integer
    tpncp.media_ip_address_0  tpncp.media_ip_address_0
        Unsigned 32-bit integer
    tpncp.media_ip_address_1  tpncp.media_ip_address_1
        Unsigned 32-bit integer
    tpncp.media_ip_address_2  tpncp.media_ip_address_2
        Unsigned 32-bit integer
    tpncp.media_ip_address_3  tpncp.media_ip_address_3
        Unsigned 32-bit integer
    tpncp.media_ip_address_4  tpncp.media_ip_address_4
        Unsigned 32-bit integer
    tpncp.media_ip_address_5  tpncp.media_ip_address_5
        Unsigned 32-bit integer
    tpncp.media_subnet_mask_address_0  tpncp.media_subnet_mask_address_0
        Unsigned 32-bit integer
    tpncp.media_subnet_mask_address_1  tpncp.media_subnet_mask_address_1
        Unsigned 32-bit integer
    tpncp.media_subnet_mask_address_2  tpncp.media_subnet_mask_address_2
        Unsigned 32-bit integer
    tpncp.media_subnet_mask_address_3  tpncp.media_subnet_mask_address_3
        Unsigned 32-bit integer
    tpncp.media_subnet_mask_address_4  tpncp.media_subnet_mask_address_4
        Unsigned 32-bit integer
    tpncp.media_subnet_mask_address_5  tpncp.media_subnet_mask_address_5
        Unsigned 32-bit integer
    tpncp.media_type  tpncp.media_type
        Signed 32-bit integer
    tpncp.media_types_enabled  tpncp.media_types_enabled
        Signed 32-bit integer
    tpncp.media_vlan_id_0  tpncp.media_vlan_id_0
        Unsigned 32-bit integer
    tpncp.media_vlan_id_1  tpncp.media_vlan_id_1
        Unsigned 32-bit integer
    tpncp.media_vlan_id_2  tpncp.media_vlan_id_2
        Unsigned 32-bit integer
    tpncp.media_vlan_id_3  tpncp.media_vlan_id_3
        Unsigned 32-bit integer
    tpncp.media_vlan_id_4  tpncp.media_vlan_id_4
        Unsigned 32-bit integer
    tpncp.media_vlan_id_5  tpncp.media_vlan_id_5
        Unsigned 32-bit integer
    tpncp.mediation_packet_format  tpncp.mediation_packet_format
        Signed 32-bit integer
    tpncp.message  tpncp.message
        String
    tpncp.message_id  tpncp.message_id
        Signed 32-bit integer
    tpncp.message_length  tpncp.message_length
        Unsigned 8-bit integer
    tpncp.message_type  tpncp.message_type
        Signed 32-bit integer
    tpncp.message_waiting_indication  tpncp.message_waiting_indication
        Signed 32-bit integer
    tpncp.method  tpncp.method
        Unsigned 32-bit integer
    tpncp.mf_transport_type  tpncp.mf_transport_type
        Unsigned 8-bit integer
    tpncp.mgci_paddr  tpncp.mgci_paddr
        Unsigned 32-bit integer
    tpncp.mgci_paddr_0  tpncp.mgci_paddr_0
        Unsigned 32-bit integer
    tpncp.mgci_paddr_1  tpncp.mgci_paddr_1
        Unsigned 32-bit integer
    tpncp.mgci_paddr_2  tpncp.mgci_paddr_2
        Unsigned 32-bit integer
    tpncp.mgci_paddr_3  tpncp.mgci_paddr_3
        Unsigned 32-bit integer
    tpncp.mgci_paddr_4  tpncp.mgci_paddr_4
        Unsigned 32-bit integer
    tpncp.min  tpncp.min
        Signed 32-bit integer
    tpncp.min_digit_len  tpncp.min_digit_len
        Signed 32-bit integer
    tpncp.min_dtmf_digits_in_caller_id_string  tpncp.min_dtmf_digits_in_caller_id_string
        Unsigned 8-bit integer
    tpncp.min_gap_size  tpncp.min_gap_size
        Unsigned 8-bit integer
    tpncp.min_inter_digit_len  tpncp.min_inter_digit_len
        Signed 32-bit integer
    tpncp.min_long_event_timer  tpncp.min_long_event_timer
        Signed 32-bit integer
    tpncp.min_rtt  tpncp.min_rtt
        Unsigned 32-bit integer
    tpncp.minute  tpncp.minute
        Signed 32-bit integer
    tpncp.minutes  tpncp.minutes
        Signed 32-bit integer
    tpncp.mlpp_circuit_reserved  tpncp.mlpp_circuit_reserved
        Signed 32-bit integer
    tpncp.mlpp_coding_standard  tpncp.mlpp_coding_standard
        Signed 32-bit integer
    tpncp.mlpp_domain_0  tpncp.mlpp_domain_0
        Unsigned 8-bit integer
    tpncp.mlpp_domain_1  tpncp.mlpp_domain_1
        Unsigned 8-bit integer
    tpncp.mlpp_domain_2  tpncp.mlpp_domain_2
        Unsigned 8-bit integer
    tpncp.mlpp_domain_3  tpncp.mlpp_domain_3
        Unsigned 8-bit integer
    tpncp.mlpp_domain_4  tpncp.mlpp_domain_4
        Unsigned 8-bit integer
    tpncp.mlpp_domain_size  tpncp.mlpp_domain_size
        Signed 32-bit integer
    tpncp.mlpp_lfb_ind  tpncp.mlpp_lfb_ind
        Signed 32-bit integer
    tpncp.mlpp_prec_level  tpncp.mlpp_prec_level
        Signed 32-bit integer
    tpncp.mlpp_precedence_level_change_privilege  tpncp.mlpp_precedence_level_change_privilege
        Signed 32-bit integer
    tpncp.mlpp_present  tpncp.mlpp_present
        Unsigned 32-bit integer
    tpncp.mlpp_status_request  tpncp.mlpp_status_request
        Signed 32-bit integer
    tpncp.mode  tpncp.mode
        Signed 32-bit integer
    tpncp.modem_address_and_control_compression  tpncp.modem_address_and_control_compression
        Unsigned 8-bit integer
    tpncp.modem_bypass_output_gain  tpncp.modem_bypass_output_gain
        Unsigned 16-bit integer
    tpncp.modem_compression  tpncp.modem_compression
        Unsigned 8-bit integer
    tpncp.modem_data_mode  tpncp.modem_data_mode
        Unsigned 8-bit integer
    tpncp.modem_data_protocol  tpncp.modem_data_protocol
        Unsigned 8-bit integer
    tpncp.modem_debug_mode  tpncp.modem_debug_mode
        Unsigned 8-bit integer
    tpncp.modem_disable_line_quality_monitoring  tpncp.modem_disable_line_quality_monitoring
        Unsigned 8-bit integer
    tpncp.modem_max_rate  tpncp.modem_max_rate
        Unsigned 8-bit integer
    tpncp.modem_on_hold_mode  tpncp.modem_on_hold_mode
        Unsigned 8-bit integer
    tpncp.modem_on_hold_time_out  tpncp.modem_on_hold_time_out
        Unsigned 8-bit integer
    tpncp.modem_pstn_access  tpncp.modem_pstn_access
        Unsigned 8-bit integer
    tpncp.modem_ras_call_type  tpncp.modem_ras_call_type
        Unsigned 8-bit integer
    tpncp.modem_rtp_bypass_payload_type  tpncp.modem_rtp_bypass_payload_type
        Unsigned 8-bit integer
    tpncp.modem_standard  tpncp.modem_standard
        Unsigned 8-bit integer
    tpncp.modify_t1e1_span_code  tpncp.modify_t1e1_span_code
        Signed 32-bit integer
    tpncp.modulation_type  tpncp.modulation_type
        Signed 32-bit integer
    tpncp.module  tpncp.module
        Signed 16-bit integer
    tpncp.module_firm_ware  tpncp.module_firm_ware
        Signed 32-bit integer
    tpncp.module_origin  tpncp.module_origin
        Signed 32-bit integer
    tpncp.monitor_signaling_changes_only  tpncp.monitor_signaling_changes_only
        Unsigned 8-bit integer
    tpncp.month  tpncp.month
        Signed 32-bit integer
    tpncp.mos_cq  tpncp.mos_cq
        Unsigned 8-bit integer
    tpncp.mos_lq  tpncp.mos_lq
        Unsigned 8-bit integer
    tpncp.ms_alarms_status_0  tpncp.ms_alarms_status_0
        Signed 32-bit integer
    tpncp.ms_alarms_status_1  tpncp.ms_alarms_status_1
        Signed 32-bit integer
    tpncp.ms_alarms_status_2  tpncp.ms_alarms_status_2
        Signed 32-bit integer
    tpncp.ms_alarms_status_3  tpncp.ms_alarms_status_3
        Signed 32-bit integer
    tpncp.ms_alarms_status_4  tpncp.ms_alarms_status_4
        Signed 32-bit integer
    tpncp.ms_alarms_status_5  tpncp.ms_alarms_status_5
        Signed 32-bit integer
    tpncp.ms_alarms_status_6  tpncp.ms_alarms_status_6
        Signed 32-bit integer
    tpncp.ms_alarms_status_7  tpncp.ms_alarms_status_7
        Signed 32-bit integer
    tpncp.ms_alarms_status_8  tpncp.ms_alarms_status_8
        Signed 32-bit integer
    tpncp.ms_alarms_status_9  tpncp.ms_alarms_status_9
        Signed 32-bit integer
    tpncp.msec_duration  tpncp.msec_duration
        Signed 32-bit integer
    tpncp.msg_centre_id_0  tpncp.msg_centre_id_0
        Signed 32-bit integer
    tpncp.msg_centre_id_1  tpncp.msg_centre_id_1
        Signed 32-bit integer
    tpncp.msg_centre_id_2  tpncp.msg_centre_id_2
        Signed 32-bit integer
    tpncp.msg_centre_id_3  tpncp.msg_centre_id_3
        Signed 32-bit integer
    tpncp.msg_centre_id_4  tpncp.msg_centre_id_4
        Signed 32-bit integer
    tpncp.msg_centre_id_5  tpncp.msg_centre_id_5
        Signed 32-bit integer
    tpncp.msg_centre_id_6  tpncp.msg_centre_id_6
        Signed 32-bit integer
    tpncp.msg_centre_id_7  tpncp.msg_centre_id_7
        Signed 32-bit integer
    tpncp.msg_centre_id_8  tpncp.msg_centre_id_8
        Signed 32-bit integer
    tpncp.msg_centre_id_9  tpncp.msg_centre_id_9
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_0  tpncp.msg_centre_id_msg_centre_id_0
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_1  tpncp.msg_centre_id_msg_centre_id_1
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_2  tpncp.msg_centre_id_msg_centre_id_2
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_3  tpncp.msg_centre_id_msg_centre_id_3
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_4  tpncp.msg_centre_id_msg_centre_id_4
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_5  tpncp.msg_centre_id_msg_centre_id_5
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_6  tpncp.msg_centre_id_msg_centre_id_6
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_7  tpncp.msg_centre_id_msg_centre_id_7
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_8  tpncp.msg_centre_id_msg_centre_id_8
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_9  tpncp.msg_centre_id_msg_centre_id_9
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_type_0  tpncp.msg_centre_id_msg_centre_id_type_0
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_type_1  tpncp.msg_centre_id_msg_centre_id_type_1
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_type_2  tpncp.msg_centre_id_msg_centre_id_type_2
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_type_3  tpncp.msg_centre_id_msg_centre_id_type_3
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_type_4  tpncp.msg_centre_id_msg_centre_id_type_4
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_type_5  tpncp.msg_centre_id_msg_centre_id_type_5
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_type_6  tpncp.msg_centre_id_msg_centre_id_type_6
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_type_7  tpncp.msg_centre_id_msg_centre_id_type_7
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_type_8  tpncp.msg_centre_id_msg_centre_id_type_8
        Signed 32-bit integer
    tpncp.msg_centre_id_msg_centre_id_type_9  tpncp.msg_centre_id_msg_centre_id_type_9
        Signed 32-bit integer
    tpncp.msg_centre_id_numeric_string_0  tpncp.msg_centre_id_numeric_string_0
        String
    tpncp.msg_centre_id_numeric_string_1  tpncp.msg_centre_id_numeric_string_1
        String
    tpncp.msg_centre_id_numeric_string_2  tpncp.msg_centre_id_numeric_string_2
        String
    tpncp.msg_centre_id_numeric_string_3  tpncp.msg_centre_id_numeric_string_3
        String
    tpncp.msg_centre_id_numeric_string_4  tpncp.msg_centre_id_numeric_string_4
        String
    tpncp.msg_centre_id_numeric_string_5  tpncp.msg_centre_id_numeric_string_5
        String
    tpncp.msg_centre_id_numeric_string_6  tpncp.msg_centre_id_numeric_string_6
        String
    tpncp.msg_centre_id_numeric_string_7  tpncp.msg_centre_id_numeric_string_7
        String
    tpncp.msg_centre_id_numeric_string_8  tpncp.msg_centre_id_numeric_string_8
        String
    tpncp.msg_centre_id_numeric_string_9  tpncp.msg_centre_id_numeric_string_9
        String
    tpncp.msg_centre_id_party_number_number_0  tpncp.msg_centre_id_party_number_number_0
        String
    tpncp.msg_centre_id_party_number_number_1  tpncp.msg_centre_id_party_number_number_1
        String
    tpncp.msg_centre_id_party_number_number_2  tpncp.msg_centre_id_party_number_number_2
        String
    tpncp.msg_centre_id_party_number_number_3  tpncp.msg_centre_id_party_number_number_3
        String
    tpncp.msg_centre_id_party_number_number_4  tpncp.msg_centre_id_party_number_number_4
        String
    tpncp.msg_centre_id_party_number_number_5  tpncp.msg_centre_id_party_number_number_5
        String
    tpncp.msg_centre_id_party_number_number_6  tpncp.msg_centre_id_party_number_number_6
        String
    tpncp.msg_centre_id_party_number_number_7  tpncp.msg_centre_id_party_number_number_7
        String
    tpncp.msg_centre_id_party_number_number_8  tpncp.msg_centre_id_party_number_number_8
        String
    tpncp.msg_centre_id_party_number_number_9  tpncp.msg_centre_id_party_number_number_9
        String
    tpncp.msg_centre_id_party_number_party_number_type_0  tpncp.msg_centre_id_party_number_party_number_type_0
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_party_number_type_1  tpncp.msg_centre_id_party_number_party_number_type_1
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_party_number_type_2  tpncp.msg_centre_id_party_number_party_number_type_2
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_party_number_type_3  tpncp.msg_centre_id_party_number_party_number_type_3
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_party_number_type_4  tpncp.msg_centre_id_party_number_party_number_type_4
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_party_number_type_5  tpncp.msg_centre_id_party_number_party_number_type_5
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_party_number_type_6  tpncp.msg_centre_id_party_number_party_number_type_6
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_party_number_type_7  tpncp.msg_centre_id_party_number_party_number_type_7
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_party_number_type_8  tpncp.msg_centre_id_party_number_party_number_type_8
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_party_number_type_9  tpncp.msg_centre_id_party_number_party_number_type_9
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_type_of_number_0  tpncp.msg_centre_id_party_number_type_of_number_0
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_type_of_number_1  tpncp.msg_centre_id_party_number_type_of_number_1
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_type_of_number_2  tpncp.msg_centre_id_party_number_type_of_number_2
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_type_of_number_3  tpncp.msg_centre_id_party_number_type_of_number_3
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_type_of_number_4  tpncp.msg_centre_id_party_number_type_of_number_4
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_type_of_number_5  tpncp.msg_centre_id_party_number_type_of_number_5
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_type_of_number_6  tpncp.msg_centre_id_party_number_type_of_number_6
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_type_of_number_7  tpncp.msg_centre_id_party_number_type_of_number_7
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_type_of_number_8  tpncp.msg_centre_id_party_number_type_of_number_8
        Signed 32-bit integer
    tpncp.msg_centre_id_party_number_type_of_number_9  tpncp.msg_centre_id_party_number_type_of_number_9
        Signed 32-bit integer
    tpncp.msg_centre_id_type_0  tpncp.msg_centre_id_type_0
        Signed 32-bit integer
    tpncp.msg_centre_id_type_1  tpncp.msg_centre_id_type_1
        Signed 32-bit integer
    tpncp.msg_centre_id_type_2  tpncp.msg_centre_id_type_2
        Signed 32-bit integer
    tpncp.msg_centre_id_type_3  tpncp.msg_centre_id_type_3
        Signed 32-bit integer
    tpncp.msg_centre_id_type_4  tpncp.msg_centre_id_type_4
        Signed 32-bit integer
    tpncp.msg_centre_id_type_5  tpncp.msg_centre_id_type_5
        Signed 32-bit integer
    tpncp.msg_centre_id_type_6  tpncp.msg_centre_id_type_6
        Signed 32-bit integer
    tpncp.msg_centre_id_type_7  tpncp.msg_centre_id_type_7
        Signed 32-bit integer
    tpncp.msg_centre_id_type_8  tpncp.msg_centre_id_type_8
        Signed 32-bit integer
    tpncp.msg_centre_id_type_9  tpncp.msg_centre_id_type_9
        Signed 32-bit integer
    tpncp.msg_type  tpncp.msg_type
        Signed 32-bit integer
    tpncp.msu_error_cause  tpncp.msu_error_cause
        Signed 32-bit integer
    tpncp.mute_mode  tpncp.mute_mode
        Signed 32-bit integer
    tpncp.muted_participant_id  tpncp.muted_participant_id
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_0  tpncp.muted_participants_handle_list_0
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_1  tpncp.muted_participants_handle_list_1
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_10  tpncp.muted_participants_handle_list_10
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_100  tpncp.muted_participants_handle_list_100
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_101  tpncp.muted_participants_handle_list_101
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_102  tpncp.muted_participants_handle_list_102
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_103  tpncp.muted_participants_handle_list_103
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_104  tpncp.muted_participants_handle_list_104
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_105  tpncp.muted_participants_handle_list_105
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_106  tpncp.muted_participants_handle_list_106
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_107  tpncp.muted_participants_handle_list_107
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_108  tpncp.muted_participants_handle_list_108
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_109  tpncp.muted_participants_handle_list_109
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_11  tpncp.muted_participants_handle_list_11
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_110  tpncp.muted_participants_handle_list_110
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_111  tpncp.muted_participants_handle_list_111
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_112  tpncp.muted_participants_handle_list_112
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_113  tpncp.muted_participants_handle_list_113
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_114  tpncp.muted_participants_handle_list_114
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_115  tpncp.muted_participants_handle_list_115
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_116  tpncp.muted_participants_handle_list_116
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_117  tpncp.muted_participants_handle_list_117
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_118  tpncp.muted_participants_handle_list_118
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_119  tpncp.muted_participants_handle_list_119
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_12  tpncp.muted_participants_handle_list_12
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_120  tpncp.muted_participants_handle_list_120
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_121  tpncp.muted_participants_handle_list_121
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_122  tpncp.muted_participants_handle_list_122
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_123  tpncp.muted_participants_handle_list_123
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_124  tpncp.muted_participants_handle_list_124
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_125  tpncp.muted_participants_handle_list_125
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_126  tpncp.muted_participants_handle_list_126
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_127  tpncp.muted_participants_handle_list_127
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_128  tpncp.muted_participants_handle_list_128
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_129  tpncp.muted_participants_handle_list_129
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_13  tpncp.muted_participants_handle_list_13
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_130  tpncp.muted_participants_handle_list_130
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_131  tpncp.muted_participants_handle_list_131
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_132  tpncp.muted_participants_handle_list_132
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_133  tpncp.muted_participants_handle_list_133
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_134  tpncp.muted_participants_handle_list_134
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_135  tpncp.muted_participants_handle_list_135
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_136  tpncp.muted_participants_handle_list_136
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_137  tpncp.muted_participants_handle_list_137
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_138  tpncp.muted_participants_handle_list_138
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_139  tpncp.muted_participants_handle_list_139
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_14  tpncp.muted_participants_handle_list_14
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_140  tpncp.muted_participants_handle_list_140
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_141  tpncp.muted_participants_handle_list_141
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_142  tpncp.muted_participants_handle_list_142
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_143  tpncp.muted_participants_handle_list_143
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_144  tpncp.muted_participants_handle_list_144
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_145  tpncp.muted_participants_handle_list_145
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_146  tpncp.muted_participants_handle_list_146
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_147  tpncp.muted_participants_handle_list_147
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_148  tpncp.muted_participants_handle_list_148
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_149  tpncp.muted_participants_handle_list_149
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_15  tpncp.muted_participants_handle_list_15
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_150  tpncp.muted_participants_handle_list_150
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_151  tpncp.muted_participants_handle_list_151
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_152  tpncp.muted_participants_handle_list_152
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_153  tpncp.muted_participants_handle_list_153
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_154  tpncp.muted_participants_handle_list_154
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_155  tpncp.muted_participants_handle_list_155
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_156  tpncp.muted_participants_handle_list_156
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_157  tpncp.muted_participants_handle_list_157
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_158  tpncp.muted_participants_handle_list_158
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_159  tpncp.muted_participants_handle_list_159
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_16  tpncp.muted_participants_handle_list_16
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_160  tpncp.muted_participants_handle_list_160
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_161  tpncp.muted_participants_handle_list_161
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_162  tpncp.muted_participants_handle_list_162
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_163  tpncp.muted_participants_handle_list_163
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_164  tpncp.muted_participants_handle_list_164
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_165  tpncp.muted_participants_handle_list_165
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_166  tpncp.muted_participants_handle_list_166
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_167  tpncp.muted_participants_handle_list_167
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_168  tpncp.muted_participants_handle_list_168
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_169  tpncp.muted_participants_handle_list_169
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_17  tpncp.muted_participants_handle_list_17
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_170  tpncp.muted_participants_handle_list_170
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_171  tpncp.muted_participants_handle_list_171
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_172  tpncp.muted_participants_handle_list_172
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_173  tpncp.muted_participants_handle_list_173
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_174  tpncp.muted_participants_handle_list_174
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_175  tpncp.muted_participants_handle_list_175
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_176  tpncp.muted_participants_handle_list_176
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_177  tpncp.muted_participants_handle_list_177
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_178  tpncp.muted_participants_handle_list_178
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_179  tpncp.muted_participants_handle_list_179
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_18  tpncp.muted_participants_handle_list_18
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_180  tpncp.muted_participants_handle_list_180
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_181  tpncp.muted_participants_handle_list_181
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_182  tpncp.muted_participants_handle_list_182
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_183  tpncp.muted_participants_handle_list_183
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_184  tpncp.muted_participants_handle_list_184
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_185  tpncp.muted_participants_handle_list_185
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_186  tpncp.muted_participants_handle_list_186
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_187  tpncp.muted_participants_handle_list_187
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_188  tpncp.muted_participants_handle_list_188
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_189  tpncp.muted_participants_handle_list_189
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_19  tpncp.muted_participants_handle_list_19
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_190  tpncp.muted_participants_handle_list_190
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_191  tpncp.muted_participants_handle_list_191
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_192  tpncp.muted_participants_handle_list_192
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_193  tpncp.muted_participants_handle_list_193
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_194  tpncp.muted_participants_handle_list_194
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_195  tpncp.muted_participants_handle_list_195
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_196  tpncp.muted_participants_handle_list_196
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_197  tpncp.muted_participants_handle_list_197
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_198  tpncp.muted_participants_handle_list_198
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_199  tpncp.muted_participants_handle_list_199
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_2  tpncp.muted_participants_handle_list_2
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_20  tpncp.muted_participants_handle_list_20
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_200  tpncp.muted_participants_handle_list_200
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_201  tpncp.muted_participants_handle_list_201
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_202  tpncp.muted_participants_handle_list_202
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_203  tpncp.muted_participants_handle_list_203
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_204  tpncp.muted_participants_handle_list_204
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_205  tpncp.muted_participants_handle_list_205
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_206  tpncp.muted_participants_handle_list_206
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_207  tpncp.muted_participants_handle_list_207
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_208  tpncp.muted_participants_handle_list_208
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_209  tpncp.muted_participants_handle_list_209
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_21  tpncp.muted_participants_handle_list_21
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_210  tpncp.muted_participants_handle_list_210
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_211  tpncp.muted_participants_handle_list_211
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_212  tpncp.muted_participants_handle_list_212
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_213  tpncp.muted_participants_handle_list_213
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_214  tpncp.muted_participants_handle_list_214
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_215  tpncp.muted_participants_handle_list_215
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_216  tpncp.muted_participants_handle_list_216
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_217  tpncp.muted_participants_handle_list_217
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_218  tpncp.muted_participants_handle_list_218
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_219  tpncp.muted_participants_handle_list_219
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_22  tpncp.muted_participants_handle_list_22
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_220  tpncp.muted_participants_handle_list_220
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_221  tpncp.muted_participants_handle_list_221
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_222  tpncp.muted_participants_handle_list_222
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_223  tpncp.muted_participants_handle_list_223
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_224  tpncp.muted_participants_handle_list_224
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_225  tpncp.muted_participants_handle_list_225
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_226  tpncp.muted_participants_handle_list_226
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_227  tpncp.muted_participants_handle_list_227
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_228  tpncp.muted_participants_handle_list_228
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_229  tpncp.muted_participants_handle_list_229
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_23  tpncp.muted_participants_handle_list_23
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_230  tpncp.muted_participants_handle_list_230
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_231  tpncp.muted_participants_handle_list_231
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_232  tpncp.muted_participants_handle_list_232
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_233  tpncp.muted_participants_handle_list_233
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_234  tpncp.muted_participants_handle_list_234
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_235  tpncp.muted_participants_handle_list_235
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_236  tpncp.muted_participants_handle_list_236
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_237  tpncp.muted_participants_handle_list_237
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_238  tpncp.muted_participants_handle_list_238
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_239  tpncp.muted_participants_handle_list_239
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_24  tpncp.muted_participants_handle_list_24
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_240  tpncp.muted_participants_handle_list_240
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_241  tpncp.muted_participants_handle_list_241
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_242  tpncp.muted_participants_handle_list_242
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_243  tpncp.muted_participants_handle_list_243
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_244  tpncp.muted_participants_handle_list_244
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_245  tpncp.muted_participants_handle_list_245
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_246  tpncp.muted_participants_handle_list_246
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_247  tpncp.muted_participants_handle_list_247
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_248  tpncp.muted_participants_handle_list_248
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_249  tpncp.muted_participants_handle_list_249
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_25  tpncp.muted_participants_handle_list_25
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_250  tpncp.muted_participants_handle_list_250
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_251  tpncp.muted_participants_handle_list_251
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_252  tpncp.muted_participants_handle_list_252
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_253  tpncp.muted_participants_handle_list_253
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_254  tpncp.muted_participants_handle_list_254
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_255  tpncp.muted_participants_handle_list_255
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_26  tpncp.muted_participants_handle_list_26
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_27  tpncp.muted_participants_handle_list_27
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_28  tpncp.muted_participants_handle_list_28
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_29  tpncp.muted_participants_handle_list_29
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_3  tpncp.muted_participants_handle_list_3
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_30  tpncp.muted_participants_handle_list_30
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_31  tpncp.muted_participants_handle_list_31
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_32  tpncp.muted_participants_handle_list_32
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_33  tpncp.muted_participants_handle_list_33
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_34  tpncp.muted_participants_handle_list_34
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_35  tpncp.muted_participants_handle_list_35
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_36  tpncp.muted_participants_handle_list_36
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_37  tpncp.muted_participants_handle_list_37
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_38  tpncp.muted_participants_handle_list_38
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_39  tpncp.muted_participants_handle_list_39
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_4  tpncp.muted_participants_handle_list_4
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_40  tpncp.muted_participants_handle_list_40
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_41  tpncp.muted_participants_handle_list_41
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_42  tpncp.muted_participants_handle_list_42
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_43  tpncp.muted_participants_handle_list_43
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_44  tpncp.muted_participants_handle_list_44
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_45  tpncp.muted_participants_handle_list_45
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_46  tpncp.muted_participants_handle_list_46
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_47  tpncp.muted_participants_handle_list_47
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_48  tpncp.muted_participants_handle_list_48
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_49  tpncp.muted_participants_handle_list_49
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_5  tpncp.muted_participants_handle_list_5
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_50  tpncp.muted_participants_handle_list_50
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_51  tpncp.muted_participants_handle_list_51
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_52  tpncp.muted_participants_handle_list_52
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_53  tpncp.muted_participants_handle_list_53
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_54  tpncp.muted_participants_handle_list_54
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_55  tpncp.muted_participants_handle_list_55
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_56  tpncp.muted_participants_handle_list_56
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_57  tpncp.muted_participants_handle_list_57
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_58  tpncp.muted_participants_handle_list_58
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_59  tpncp.muted_participants_handle_list_59
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_6  tpncp.muted_participants_handle_list_6
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_60  tpncp.muted_participants_handle_list_60
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_61  tpncp.muted_participants_handle_list_61
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_62  tpncp.muted_participants_handle_list_62
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_63  tpncp.muted_participants_handle_list_63
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_64  tpncp.muted_participants_handle_list_64
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_65  tpncp.muted_participants_handle_list_65
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_66  tpncp.muted_participants_handle_list_66
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_67  tpncp.muted_participants_handle_list_67
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_68  tpncp.muted_participants_handle_list_68
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_69  tpncp.muted_participants_handle_list_69
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_7  tpncp.muted_participants_handle_list_7
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_70  tpncp.muted_participants_handle_list_70
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_71  tpncp.muted_participants_handle_list_71
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_72  tpncp.muted_participants_handle_list_72
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_73  tpncp.muted_participants_handle_list_73
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_74  tpncp.muted_participants_handle_list_74
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_75  tpncp.muted_participants_handle_list_75
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_76  tpncp.muted_participants_handle_list_76
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_77  tpncp.muted_participants_handle_list_77
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_78  tpncp.muted_participants_handle_list_78
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_79  tpncp.muted_participants_handle_list_79
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_8  tpncp.muted_participants_handle_list_8
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_80  tpncp.muted_participants_handle_list_80
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_81  tpncp.muted_participants_handle_list_81
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_82  tpncp.muted_participants_handle_list_82
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_83  tpncp.muted_participants_handle_list_83
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_84  tpncp.muted_participants_handle_list_84
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_85  tpncp.muted_participants_handle_list_85
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_86  tpncp.muted_participants_handle_list_86
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_87  tpncp.muted_participants_handle_list_87
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_88  tpncp.muted_participants_handle_list_88
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_89  tpncp.muted_participants_handle_list_89
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_9  tpncp.muted_participants_handle_list_9
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_90  tpncp.muted_participants_handle_list_90
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_91  tpncp.muted_participants_handle_list_91
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_92  tpncp.muted_participants_handle_list_92
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_93  tpncp.muted_participants_handle_list_93
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_94  tpncp.muted_participants_handle_list_94
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_95  tpncp.muted_participants_handle_list_95
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_96  tpncp.muted_participants_handle_list_96
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_97  tpncp.muted_participants_handle_list_97
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_98  tpncp.muted_participants_handle_list_98
        Signed 32-bit integer
    tpncp.muted_participants_handle_list_99  tpncp.muted_participants_handle_list_99
        Signed 32-bit integer
    tpncp.nai  tpncp.nai
        Signed 32-bit integer
    tpncp.name  tpncp.name
        String
    tpncp.name_availability  tpncp.name_availability
        Unsigned 8-bit integer
    tpncp.nb_of_messages_0  tpncp.nb_of_messages_0
        Signed 32-bit integer
    tpncp.nb_of_messages_1  tpncp.nb_of_messages_1
        Signed 32-bit integer
    tpncp.nb_of_messages_2  tpncp.nb_of_messages_2
        Signed 32-bit integer
    tpncp.nb_of_messages_3  tpncp.nb_of_messages_3
        Signed 32-bit integer
    tpncp.nb_of_messages_4  tpncp.nb_of_messages_4
        Signed 32-bit integer
    tpncp.nb_of_messages_5  tpncp.nb_of_messages_5
        Signed 32-bit integer
    tpncp.nb_of_messages_6  tpncp.nb_of_messages_6
        Signed 32-bit integer
    tpncp.nb_of_messages_7  tpncp.nb_of_messages_7
        Signed 32-bit integer
    tpncp.nb_of_messages_8  tpncp.nb_of_messages_8
        Signed 32-bit integer
    tpncp.nb_of_messages_9  tpncp.nb_of_messages_9
        Signed 32-bit integer
    tpncp.net_cause  tpncp.net_cause
        Signed 32-bit integer
    tpncp.net_unreachable  tpncp.net_unreachable
        Unsigned 32-bit integer
    tpncp.network_code  tpncp.network_code
        String
    tpncp.network_indicator  tpncp.network_indicator
        Signed 32-bit integer
    tpncp.network_status  tpncp.network_status
        Signed 32-bit integer
    tpncp.network_system_message_status  tpncp.network_system_message_status
        Unsigned 8-bit integer
    tpncp.network_type  tpncp.network_type
        Unsigned 8-bit integer
    tpncp.new_admin_state  tpncp.new_admin_state
        Signed 32-bit integer
    tpncp.new_clock_source  tpncp.new_clock_source
        Signed 32-bit integer
    tpncp.new_clock_state  tpncp.new_clock_state
        Signed 32-bit integer
    tpncp.new_lock_clock_source  tpncp.new_lock_clock_source
        Signed 32-bit integer
    tpncp.new_state  tpncp.new_state
        Signed 32-bit integer
    tpncp.ni  tpncp.ni
        Signed 32-bit integer
    tpncp.nmarc  tpncp.nmarc
        Unsigned 16-bit integer
    tpncp.no_input_timeout  tpncp.no_input_timeout
        Signed 32-bit integer
    tpncp.no_of_channels  tpncp.no_of_channels
        Signed 32-bit integer
    tpncp.no_of_mgc  tpncp.no_of_mgc
        Signed 32-bit integer
    tpncp.no_operation_interval  tpncp.no_operation_interval
        Unsigned 32-bit integer
    tpncp.no_operation_sending_mode  tpncp.no_operation_sending_mode
        Unsigned 8-bit integer
    tpncp.node_connection_info  tpncp.node_connection_info
        Signed 32-bit integer
    tpncp.node_connection_status  tpncp.node_connection_status
        Signed 32-bit integer
    tpncp.node_id  tpncp.node_id
        Signed 32-bit integer
    tpncp.noise_level  tpncp.noise_level
        Unsigned 8-bit integer
    tpncp.noise_reduction_activation_direction  tpncp.noise_reduction_activation_direction
        Unsigned 8-bit integer
    tpncp.noise_reduction_intensity  tpncp.noise_reduction_intensity
        Unsigned 8-bit integer
    tpncp.noise_suppression_enable  tpncp.noise_suppression_enable
        Signed 32-bit integer
    tpncp.noisy_environment_mode  tpncp.noisy_environment_mode
        Unsigned 8-bit integer
    tpncp.non_notification_reason  tpncp.non_notification_reason
        Signed 32-bit integer
    tpncp.normal_cmd  tpncp.normal_cmd
        Signed 32-bit integer
    tpncp.not_used  tpncp.not_used
        Signed 32-bit integer
    tpncp.notify_indicator_description  tpncp.notify_indicator_description
        Signed 32-bit integer
    tpncp.notify_indicator_ext_size  tpncp.notify_indicator_ext_size
        Signed 32-bit integer
    tpncp.notify_indicator_present  tpncp.notify_indicator_present
        Signed 32-bit integer
    tpncp.nsap_address  tpncp.nsap_address
        String
    tpncp.nse_mode  tpncp.nse_mode
        Unsigned 8-bit integer
    tpncp.nse_payload_type  tpncp.nse_payload_type
        Unsigned 8-bit integer
    tpncp.nte_max_duration  tpncp.nte_max_duration
        Signed 32-bit integer
    tpncp.ntt_called_numbering_plan_identifier  tpncp.ntt_called_numbering_plan_identifier
        String
    tpncp.ntt_called_type_of_number  tpncp.ntt_called_type_of_number
        Unsigned 8-bit integer
    tpncp.ntt_direct_inward_dialing_signalling_form  tpncp.ntt_direct_inward_dialing_signalling_form
        Unsigned 8-bit integer
    tpncp.num_active  tpncp.num_active
        Signed 32-bit integer
    tpncp.num_active_to_nw  tpncp.num_active_to_nw
        Signed 32-bit integer
    tpncp.num_attempts  tpncp.num_attempts
        Unsigned 32-bit integer
    tpncp.num_broken  tpncp.num_broken
        Signed 32-bit integer
    tpncp.num_changes  tpncp.num_changes
        Signed 32-bit integer
    tpncp.num_cmd_processed  tpncp.num_cmd_processed
        Signed 32-bit integer
    tpncp.num_data  tpncp.num_data
        Signed 32-bit integer
    tpncp.num_digits  tpncp.num_digits
        Signed 32-bit integer
    tpncp.num_djb_errors  tpncp.num_djb_errors
        Signed 32-bit integer
    tpncp.num_error_info_msg  tpncp.num_error_info_msg
        Signed 32-bit integer
    tpncp.num_fax  tpncp.num_fax
        Signed 32-bit integer
    tpncp.num_of_active_conferences  tpncp.num_of_active_conferences
        Signed 32-bit integer
    tpncp.num_of_active_participants  tpncp.num_of_active_participants
        Signed 32-bit integer
    tpncp.num_of_active_speakers  tpncp.num_of_active_speakers
        Signed 32-bit integer
    tpncp.num_of_added_voice_prompts  tpncp.num_of_added_voice_prompts
        Signed 32-bit integer
    tpncp.num_of_analog_channels  tpncp.num_of_analog_channels
        Signed 32-bit integer
    tpncp.num_of_announcements  tpncp.num_of_announcements
        Signed 32-bit integer
    tpncp.num_of_cid  tpncp.num_of_cid
        Signed 16-bit integer
    tpncp.num_of_components  tpncp.num_of_components
        Signed 32-bit integer
    tpncp.num_of_decoder_bfi  tpncp.num_of_decoder_bfi
        Unsigned 16-bit integer
    tpncp.num_of_listener_only_participants  tpncp.num_of_listener_only_participants
        Signed 32-bit integer
    tpncp.num_of_muted_participants  tpncp.num_of_muted_participants
        Signed 32-bit integer
    tpncp.num_of_participants  tpncp.num_of_participants
        Signed 32-bit integer
    tpncp.num_of_qsig_mwi_interrogate_result  tpncp.num_of_qsig_mwi_interrogate_result
        Unsigned 8-bit integer
    tpncp.num_of_received_bfi  tpncp.num_of_received_bfi
        Unsigned 16-bit integer
    tpncp.num_of_ss_components  tpncp.num_of_ss_components
        Signed 32-bit integer
    tpncp.num_ports  tpncp.num_ports
        Signed 32-bit integer
    tpncp.num_rx_packet  tpncp.num_rx_packet
        Signed 32-bit integer
    tpncp.num_status_sent  tpncp.num_status_sent
        Signed 32-bit integer
    tpncp.num_tx_packet  tpncp.num_tx_packet
        Signed 32-bit integer
    tpncp.num_voice_prompts  tpncp.num_voice_prompts
        Signed 32-bit integer
    tpncp.number  tpncp.number
        String
    tpncp.number_0  tpncp.number_0
        String
    tpncp.number_1  tpncp.number_1
        String
    tpncp.number_2  tpncp.number_2
        String
    tpncp.number_3  tpncp.number_3
        String
    tpncp.number_4  tpncp.number_4
        String
    tpncp.number_5  tpncp.number_5
        String
    tpncp.number_6  tpncp.number_6
        String
    tpncp.number_7  tpncp.number_7
        String
    tpncp.number_8  tpncp.number_8
        String
    tpncp.number_9  tpncp.number_9
        String
    tpncp.number_availability  tpncp.number_availability
        Unsigned 8-bit integer
    tpncp.number_of_bit_reports  tpncp.number_of_bit_reports
        Signed 32-bit integer
    tpncp.number_of_channels  tpncp.number_of_channels
        String
    tpncp.number_of_connections  tpncp.number_of_connections
        Unsigned 32-bit integer
    tpncp.number_of_errors  tpncp.number_of_errors
        Signed 32-bit integer
    tpncp.number_of_fax_pages  tpncp.number_of_fax_pages
        Signed 32-bit integer
    tpncp.number_of_fax_pages_so_far  tpncp.number_of_fax_pages_so_far
        Signed 32-bit integer
    tpncp.number_of_pulses  tpncp.number_of_pulses
        Signed 32-bit integer
    tpncp.number_of_rfci  tpncp.number_of_rfci
        Unsigned 8-bit integer
    tpncp.number_of_trunks  tpncp.number_of_trunks
        Signed 32-bit integer
    tpncp.numbering_plan_identifier  tpncp.numbering_plan_identifier
        String
    tpncp.numeric_string_0  tpncp.numeric_string_0
        String
    tpncp.numeric_string_1  tpncp.numeric_string_1
        String
    tpncp.numeric_string_2  tpncp.numeric_string_2
        String
    tpncp.numeric_string_3  tpncp.numeric_string_3
        String
    tpncp.numeric_string_4  tpncp.numeric_string_4
        String
    tpncp.numeric_string_5  tpncp.numeric_string_5
        String
    tpncp.numeric_string_6  tpncp.numeric_string_6
        String
    tpncp.numeric_string_7  tpncp.numeric_string_7
        String
    tpncp.numeric_string_8  tpncp.numeric_string_8
        String
    tpncp.numeric_string_9  tpncp.numeric_string_9
        String
    tpncp.oam_type  tpncp.oam_type
        Signed 32-bit integer
    tpncp.occupied  tpncp.occupied
        Signed 32-bit integer
    tpncp.octet_count  tpncp.octet_count
        Unsigned 32-bit integer
    tpncp.offset  tpncp.offset
        Signed 32-bit integer
    tpncp.old_clock_state  tpncp.old_clock_state
        Signed 32-bit integer
    tpncp.old_command_id  Command ID
        Unsigned 16-bit integer
    tpncp.old_event_seq_number  Sequence number
        Unsigned 32-bit integer
    tpncp.old_lock_clock_source  tpncp.old_lock_clock_source
        Signed 32-bit integer
    tpncp.old_remote_rtcpip_add  tpncp.old_remote_rtcpip_add
        Unsigned 32-bit integer
    tpncp.old_remote_rtpip_addr  tpncp.old_remote_rtpip_addr
        Signed 32-bit integer
    tpncp.old_remote_t38ip_addr  tpncp.old_remote_t38ip_addr
        Signed 32-bit integer
    tpncp.old_state  tpncp.old_state
        Signed 32-bit integer
    tpncp.old_video_conference_switching_interval  tpncp.old_video_conference_switching_interval
        Signed 32-bit integer
    tpncp.old_video_enable_active_speaker_highlight  tpncp.old_video_enable_active_speaker_highlight
        Signed 32-bit integer
    tpncp.old_voice_prompt_repository_id  tpncp.old_voice_prompt_repository_id
        Signed 32-bit integer
    tpncp.opc  tpncp.opc
        Unsigned 32-bit integer
    tpncp.open_channel_spare1  tpncp.open_channel_spare1
        Unsigned 8-bit integer
    tpncp.open_channel_spare2  tpncp.open_channel_spare2
        Unsigned 8-bit integer
    tpncp.open_channel_spare3  tpncp.open_channel_spare3
        Unsigned 8-bit integer
    tpncp.open_channel_spare4  tpncp.open_channel_spare4
        Unsigned 8-bit integer
    tpncp.open_channel_spare5  tpncp.open_channel_spare5
        Unsigned 8-bit integer
    tpncp.open_channel_spare6  tpncp.open_channel_spare6
        Unsigned 8-bit integer
    tpncp.open_channel_without_dsp  tpncp.open_channel_without_dsp
        Unsigned 8-bit integer
    tpncp.oper_state  tpncp.oper_state
        Signed 32-bit integer
    tpncp.operation_id  tpncp.operation_id
        Signed 32-bit integer
    tpncp.operational_state  tpncp.operational_state
        Signed 32-bit integer
    tpncp.origin  tpncp.origin
        Signed 32-bit integer
    tpncp.originating_line_information  tpncp.originating_line_information
        Signed 32-bit integer
    tpncp.originating_nr_number_0  tpncp.originating_nr_number_0
        String
    tpncp.originating_nr_number_1  tpncp.originating_nr_number_1
        String
    tpncp.originating_nr_number_2  tpncp.originating_nr_number_2
        String
    tpncp.originating_nr_number_3  tpncp.originating_nr_number_3
        String
    tpncp.originating_nr_number_4  tpncp.originating_nr_number_4
        String
    tpncp.originating_nr_number_5  tpncp.originating_nr_number_5
        String
    tpncp.originating_nr_number_6  tpncp.originating_nr_number_6
        String
    tpncp.originating_nr_number_7  tpncp.originating_nr_number_7
        String
    tpncp.originating_nr_number_8  tpncp.originating_nr_number_8
        String
    tpncp.originating_nr_number_9  tpncp.originating_nr_number_9
        String
    tpncp.originating_nr_party_number_type_0  tpncp.originating_nr_party_number_type_0
        Signed 32-bit integer
    tpncp.originating_nr_party_number_type_1  tpncp.originating_nr_party_number_type_1
        Signed 32-bit integer
    tpncp.originating_nr_party_number_type_2  tpncp.originating_nr_party_number_type_2
        Signed 32-bit integer
    tpncp.originating_nr_party_number_type_3  tpncp.originating_nr_party_number_type_3
        Signed 32-bit integer
    tpncp.originating_nr_party_number_type_4  tpncp.originating_nr_party_number_type_4
        Signed 32-bit integer
    tpncp.originating_nr_party_number_type_5  tpncp.originating_nr_party_number_type_5
        Signed 32-bit integer
    tpncp.originating_nr_party_number_type_6  tpncp.originating_nr_party_number_type_6
        Signed 32-bit integer
    tpncp.originating_nr_party_number_type_7  tpncp.originating_nr_party_number_type_7
        Signed 32-bit integer
    tpncp.originating_nr_party_number_type_8  tpncp.originating_nr_party_number_type_8
        Signed 32-bit integer
    tpncp.originating_nr_party_number_type_9  tpncp.originating_nr_party_number_type_9
        Signed 32-bit integer
    tpncp.originating_nr_type_of_number_0  tpncp.originating_nr_type_of_number_0
        Signed 32-bit integer
    tpncp.originating_nr_type_of_number_1  tpncp.originating_nr_type_of_number_1
        Signed 32-bit integer
    tpncp.originating_nr_type_of_number_2  tpncp.originating_nr_type_of_number_2
        Signed 32-bit integer
    tpncp.originating_nr_type_of_number_3  tpncp.originating_nr_type_of_number_3
        Signed 32-bit integer
    tpncp.originating_nr_type_of_number_4  tpncp.originating_nr_type_of_number_4
        Signed 32-bit integer
    tpncp.originating_nr_type_of_number_5  tpncp.originating_nr_type_of_number_5
        Signed 32-bit integer
    tpncp.originating_nr_type_of_number_6  tpncp.originating_nr_type_of_number_6
        Signed 32-bit integer
    tpncp.originating_nr_type_of_number_7  tpncp.originating_nr_type_of_number_7
        Signed 32-bit integer
    tpncp.originating_nr_type_of_number_8  tpncp.originating_nr_type_of_number_8
        Signed 32-bit integer
    tpncp.originating_nr_type_of_number_9  tpncp.originating_nr_type_of_number_9
        Signed 32-bit integer
    tpncp.osc_speed  tpncp.osc_speed
        Signed 32-bit integer
    tpncp.other_call_conn_id  tpncp.other_call_conn_id
        Signed 32-bit integer
    tpncp.other_call_handle  tpncp.other_call_handle
        Signed 32-bit integer
    tpncp.other_call_trunk_id  tpncp.other_call_trunk_id
        Signed 32-bit integer
    tpncp.other_v5_user_port_id  tpncp.other_v5_user_port_id
        Signed 32-bit integer
    tpncp.out_of_farme  tpncp.out_of_farme
        Signed 32-bit integer
    tpncp.out_of_frame  tpncp.out_of_frame
        Signed 32-bit integer
    tpncp.out_of_frame_counter  tpncp.out_of_frame_counter
        Unsigned 16-bit integer
    tpncp.out_of_service  tpncp.out_of_service
        Signed 32-bit integer
    tpncp.output_gain  tpncp.output_gain
        Signed 32-bit integer
    tpncp.output_port_0  tpncp.output_port_0
        Unsigned 8-bit integer
    tpncp.output_port_1  tpncp.output_port_1
        Unsigned 8-bit integer
    tpncp.output_port_10  tpncp.output_port_10
        Unsigned 8-bit integer
    tpncp.output_port_100  tpncp.output_port_100
        Unsigned 8-bit integer
    tpncp.output_port_101  tpncp.output_port_101
        Unsigned 8-bit integer
    tpncp.output_port_102  tpncp.output_port_102
        Unsigned 8-bit integer
    tpncp.output_port_103  tpncp.output_port_103
        Unsigned 8-bit integer
    tpncp.output_port_104  tpncp.output_port_104
        Unsigned 8-bit integer
    tpncp.output_port_105  tpncp.output_port_105
        Unsigned 8-bit integer
    tpncp.output_port_106  tpncp.output_port_106
        Unsigned 8-bit integer
    tpncp.output_port_107  tpncp.output_port_107
        Unsigned 8-bit integer
    tpncp.output_port_108  tpncp.output_port_108
        Unsigned 8-bit integer
    tpncp.output_port_109  tpncp.output_port_109
        Unsigned 8-bit integer
    tpncp.output_port_11  tpncp.output_port_11
        Unsigned 8-bit integer
    tpncp.output_port_110  tpncp.output_port_110
        Unsigned 8-bit integer
    tpncp.output_port_111  tpncp.output_port_111
        Unsigned 8-bit integer
    tpncp.output_port_112  tpncp.output_port_112
        Unsigned 8-bit integer
    tpncp.output_port_113  tpncp.output_port_113
        Unsigned 8-bit integer
    tpncp.output_port_114  tpncp.output_port_114
        Unsigned 8-bit integer
    tpncp.output_port_115  tpncp.output_port_115
        Unsigned 8-bit integer
    tpncp.output_port_116  tpncp.output_port_116
        Unsigned 8-bit integer
    tpncp.output_port_117  tpncp.output_port_117
        Unsigned 8-bit integer
    tpncp.output_port_118  tpncp.output_port_118
        Unsigned 8-bit integer
    tpncp.output_port_119  tpncp.output_port_119
        Unsigned 8-bit integer
    tpncp.output_port_12  tpncp.output_port_12
        Unsigned 8-bit integer
    tpncp.output_port_120  tpncp.output_port_120
        Unsigned 8-bit integer
    tpncp.output_port_121  tpncp.output_port_121
        Unsigned 8-bit integer
    tpncp.output_port_122  tpncp.output_port_122
        Unsigned 8-bit integer
    tpncp.output_port_123  tpncp.output_port_123
        Unsigned 8-bit integer
    tpncp.output_port_124  tpncp.output_port_124
        Unsigned 8-bit integer
    tpncp.output_port_125  tpncp.output_port_125
        Unsigned 8-bit integer
    tpncp.output_port_126  tpncp.output_port_126
        Unsigned 8-bit integer
    tpncp.output_port_127  tpncp.output_port_127
        Unsigned 8-bit integer
    tpncp.output_port_128  tpncp.output_port_128
        Unsigned 8-bit integer
    tpncp.output_port_129  tpncp.output_port_129
        Unsigned 8-bit integer
    tpncp.output_port_13  tpncp.output_port_13
        Unsigned 8-bit integer
    tpncp.output_port_130  tpncp.output_port_130
        Unsigned 8-bit integer
    tpncp.output_port_131  tpncp.output_port_131
        Unsigned 8-bit integer
    tpncp.output_port_132  tpncp.output_port_132
        Unsigned 8-bit integer
    tpncp.output_port_133  tpncp.output_port_133
        Unsigned 8-bit integer
    tpncp.output_port_134  tpncp.output_port_134
        Unsigned 8-bit integer
    tpncp.output_port_135  tpncp.output_port_135
        Unsigned 8-bit integer
    tpncp.output_port_136  tpncp.output_port_136
        Unsigned 8-bit integer
    tpncp.output_port_137  tpncp.output_port_137
        Unsigned 8-bit integer
    tpncp.output_port_138  tpncp.output_port_138
        Unsigned 8-bit integer
    tpncp.output_port_139  tpncp.output_port_139
        Unsigned 8-bit integer
    tpncp.output_port_14  tpncp.output_port_14
        Unsigned 8-bit integer
    tpncp.output_port_140  tpncp.output_port_140
        Unsigned 8-bit integer
    tpncp.output_port_141  tpncp.output_port_141
        Unsigned 8-bit integer
    tpncp.output_port_142  tpncp.output_port_142
        Unsigned 8-bit integer
    tpncp.output_port_143  tpncp.output_port_143
        Unsigned 8-bit integer
    tpncp.output_port_144  tpncp.output_port_144
        Unsigned 8-bit integer
    tpncp.output_port_145  tpncp.output_port_145
        Unsigned 8-bit integer
    tpncp.output_port_146  tpncp.output_port_146
        Unsigned 8-bit integer
    tpncp.output_port_147  tpncp.output_port_147
        Unsigned 8-bit integer
    tpncp.output_port_148  tpncp.output_port_148
        Unsigned 8-bit integer
    tpncp.output_port_149  tpncp.output_port_149
        Unsigned 8-bit integer
    tpncp.output_port_15  tpncp.output_port_15
        Unsigned 8-bit integer
    tpncp.output_port_150  tpncp.output_port_150
        Unsigned 8-bit integer
    tpncp.output_port_151  tpncp.output_port_151
        Unsigned 8-bit integer
    tpncp.output_port_152  tpncp.output_port_152
        Unsigned 8-bit integer
    tpncp.output_port_153  tpncp.output_port_153
        Unsigned 8-bit integer
    tpncp.output_port_154  tpncp.output_port_154
        Unsigned 8-bit integer
    tpncp.output_port_155  tpncp.output_port_155
        Unsigned 8-bit integer
    tpncp.output_port_156  tpncp.output_port_156
        Unsigned 8-bit integer
    tpncp.output_port_157  tpncp.output_port_157
        Unsigned 8-bit integer
    tpncp.output_port_158  tpncp.output_port_158
        Unsigned 8-bit integer
    tpncp.output_port_159  tpncp.output_port_159
        Unsigned 8-bit integer
    tpncp.output_port_16  tpncp.output_port_16
        Unsigned 8-bit integer
    tpncp.output_port_160  tpncp.output_port_160
        Unsigned 8-bit integer
    tpncp.output_port_161  tpncp.output_port_161
        Unsigned 8-bit integer
    tpncp.output_port_162  tpncp.output_port_162
        Unsigned 8-bit integer
    tpncp.output_port_163  tpncp.output_port_163
        Unsigned 8-bit integer
    tpncp.output_port_164  tpncp.output_port_164
        Unsigned 8-bit integer
    tpncp.output_port_165  tpncp.output_port_165
        Unsigned 8-bit integer
    tpncp.output_port_166  tpncp.output_port_166
        Unsigned 8-bit integer
    tpncp.output_port_167  tpncp.output_port_167
        Unsigned 8-bit integer
    tpncp.output_port_168  tpncp.output_port_168
        Unsigned 8-bit integer
    tpncp.output_port_169  tpncp.output_port_169
        Unsigned 8-bit integer
    tpncp.output_port_17  tpncp.output_port_17
        Unsigned 8-bit integer
    tpncp.output_port_170  tpncp.output_port_170
        Unsigned 8-bit integer
    tpncp.output_port_171  tpncp.output_port_171
        Unsigned 8-bit integer
    tpncp.output_port_172  tpncp.output_port_172
        Unsigned 8-bit integer
    tpncp.output_port_173  tpncp.output_port_173
        Unsigned 8-bit integer
    tpncp.output_port_174  tpncp.output_port_174
        Unsigned 8-bit integer
    tpncp.output_port_175  tpncp.output_port_175
        Unsigned 8-bit integer
    tpncp.output_port_176  tpncp.output_port_176
        Unsigned 8-bit integer
    tpncp.output_port_177  tpncp.output_port_177
        Unsigned 8-bit integer
    tpncp.output_port_178  tpncp.output_port_178
        Unsigned 8-bit integer
    tpncp.output_port_179  tpncp.output_port_179
        Unsigned 8-bit integer
    tpncp.output_port_18  tpncp.output_port_18
        Unsigned 8-bit integer
    tpncp.output_port_180  tpncp.output_port_180
        Unsigned 8-bit integer
    tpncp.output_port_181  tpncp.output_port_181
        Unsigned 8-bit integer
    tpncp.output_port_182  tpncp.output_port_182
        Unsigned 8-bit integer
    tpncp.output_port_183  tpncp.output_port_183
        Unsigned 8-bit integer
    tpncp.output_port_184  tpncp.output_port_184
        Unsigned 8-bit integer
    tpncp.output_port_185  tpncp.output_port_185
        Unsigned 8-bit integer
    tpncp.output_port_186  tpncp.output_port_186
        Unsigned 8-bit integer
    tpncp.output_port_187  tpncp.output_port_187
        Unsigned 8-bit integer
    tpncp.output_port_188  tpncp.output_port_188
        Unsigned 8-bit integer
    tpncp.output_port_189  tpncp.output_port_189
        Unsigned 8-bit integer
    tpncp.output_port_19  tpncp.output_port_19
        Unsigned 8-bit integer
    tpncp.output_port_190  tpncp.output_port_190
        Unsigned 8-bit integer
    tpncp.output_port_191  tpncp.output_port_191
        Unsigned 8-bit integer
    tpncp.output_port_192  tpncp.output_port_192
        Unsigned 8-bit integer
    tpncp.output_port_193  tpncp.output_port_193
        Unsigned 8-bit integer
    tpncp.output_port_194  tpncp.output_port_194
        Unsigned 8-bit integer
    tpncp.output_port_195  tpncp.output_port_195
        Unsigned 8-bit integer
    tpncp.output_port_196  tpncp.output_port_196
        Unsigned 8-bit integer
    tpncp.output_port_197  tpncp.output_port_197
        Unsigned 8-bit integer
    tpncp.output_port_198  tpncp.output_port_198
        Unsigned 8-bit integer
    tpncp.output_port_199  tpncp.output_port_199
        Unsigned 8-bit integer
    tpncp.output_port_2  tpncp.output_port_2
        Unsigned 8-bit integer
    tpncp.output_port_20  tpncp.output_port_20
        Unsigned 8-bit integer
    tpncp.output_port_200  tpncp.output_port_200
        Unsigned 8-bit integer
    tpncp.output_port_201  tpncp.output_port_201
        Unsigned 8-bit integer
    tpncp.output_port_202  tpncp.output_port_202
        Unsigned 8-bit integer
    tpncp.output_port_203  tpncp.output_port_203
        Unsigned 8-bit integer
    tpncp.output_port_204  tpncp.output_port_204
        Unsigned 8-bit integer
    tpncp.output_port_205  tpncp.output_port_205
        Unsigned 8-bit integer
    tpncp.output_port_206  tpncp.output_port_206
        Unsigned 8-bit integer
    tpncp.output_port_207  tpncp.output_port_207
        Unsigned 8-bit integer
    tpncp.output_port_208  tpncp.output_port_208
        Unsigned 8-bit integer
    tpncp.output_port_209  tpncp.output_port_209
        Unsigned 8-bit integer
    tpncp.output_port_21  tpncp.output_port_21
        Unsigned 8-bit integer
    tpncp.output_port_210  tpncp.output_port_210
        Unsigned 8-bit integer
    tpncp.output_port_211  tpncp.output_port_211
        Unsigned 8-bit integer
    tpncp.output_port_212  tpncp.output_port_212
        Unsigned 8-bit integer
    tpncp.output_port_213  tpncp.output_port_213
        Unsigned 8-bit integer
    tpncp.output_port_214  tpncp.output_port_214
        Unsigned 8-bit integer
    tpncp.output_port_215  tpncp.output_port_215
        Unsigned 8-bit integer
    tpncp.output_port_216  tpncp.output_port_216
        Unsigned 8-bit integer
    tpncp.output_port_217  tpncp.output_port_217
        Unsigned 8-bit integer
    tpncp.output_port_218  tpncp.output_port_218
        Unsigned 8-bit integer
    tpncp.output_port_219  tpncp.output_port_219
        Unsigned 8-bit integer
    tpncp.output_port_22  tpncp.output_port_22
        Unsigned 8-bit integer
    tpncp.output_port_220  tpncp.output_port_220
        Unsigned 8-bit integer
    tpncp.output_port_221  tpncp.output_port_221
        Unsigned 8-bit integer
    tpncp.output_port_222  tpncp.output_port_222
        Unsigned 8-bit integer
    tpncp.output_port_223  tpncp.output_port_223
        Unsigned 8-bit integer
    tpncp.output_port_224  tpncp.output_port_224
        Unsigned 8-bit integer
    tpncp.output_port_225  tpncp.output_port_225
        Unsigned 8-bit integer
    tpncp.output_port_226  tpncp.output_port_226
        Unsigned 8-bit integer
    tpncp.output_port_227  tpncp.output_port_227
        Unsigned 8-bit integer
    tpncp.output_port_228  tpncp.output_port_228
        Unsigned 8-bit integer
    tpncp.output_port_229  tpncp.output_port_229
        Unsigned 8-bit integer
    tpncp.output_port_23  tpncp.output_port_23
        Unsigned 8-bit integer
    tpncp.output_port_230  tpncp.output_port_230
        Unsigned 8-bit integer
    tpncp.output_port_231  tpncp.output_port_231
        Unsigned 8-bit integer
    tpncp.output_port_232  tpncp.output_port_232
        Unsigned 8-bit integer
    tpncp.output_port_233  tpncp.output_port_233
        Unsigned 8-bit integer
    tpncp.output_port_234  tpncp.output_port_234
        Unsigned 8-bit integer
    tpncp.output_port_235  tpncp.output_port_235
        Unsigned 8-bit integer
    tpncp.output_port_236  tpncp.output_port_236
        Unsigned 8-bit integer
    tpncp.output_port_237  tpncp.output_port_237
        Unsigned 8-bit integer
    tpncp.output_port_238  tpncp.output_port_238
        Unsigned 8-bit integer
    tpncp.output_port_239  tpncp.output_port_239
        Unsigned 8-bit integer
    tpncp.output_port_24  tpncp.output_port_24
        Unsigned 8-bit integer
    tpncp.output_port_240  tpncp.output_port_240
        Unsigned 8-bit integer
    tpncp.output_port_241  tpncp.output_port_241
        Unsigned 8-bit integer
    tpncp.output_port_242  tpncp.output_port_242
        Unsigned 8-bit integer
    tpncp.output_port_243  tpncp.output_port_243
        Unsigned 8-bit integer
    tpncp.output_port_244  tpncp.output_port_244
        Unsigned 8-bit integer
    tpncp.output_port_245  tpncp.output_port_245
        Unsigned 8-bit integer
    tpncp.output_port_246  tpncp.output_port_246
        Unsigned 8-bit integer
    tpncp.output_port_247  tpncp.output_port_247
        Unsigned 8-bit integer
    tpncp.output_port_248  tpncp.output_port_248
        Unsigned 8-bit integer
    tpncp.output_port_249  tpncp.output_port_249
        Unsigned 8-bit integer
    tpncp.output_port_25  tpncp.output_port_25
        Unsigned 8-bit integer
    tpncp.output_port_250  tpncp.output_port_250
        Unsigned 8-bit integer
    tpncp.output_port_251  tpncp.output_port_251
        Unsigned 8-bit integer
    tpncp.output_port_252  tpncp.output_port_252
        Unsigned 8-bit integer
    tpncp.output_port_253  tpncp.output_port_253
        Unsigned 8-bit integer
    tpncp.output_port_254  tpncp.output_port_254
        Unsigned 8-bit integer
    tpncp.output_port_255  tpncp.output_port_255
        Unsigned 8-bit integer
    tpncp.output_port_256  tpncp.output_port_256
        Unsigned 8-bit integer
    tpncp.output_port_257  tpncp.output_port_257
        Unsigned 8-bit integer
    tpncp.output_port_258  tpncp.output_port_258
        Unsigned 8-bit integer
    tpncp.output_port_259  tpncp.output_port_259
        Unsigned 8-bit integer
    tpncp.output_port_26  tpncp.output_port_26
        Unsigned 8-bit integer
    tpncp.output_port_260  tpncp.output_port_260
        Unsigned 8-bit integer
    tpncp.output_port_261  tpncp.output_port_261
        Unsigned 8-bit integer
    tpncp.output_port_262  tpncp.output_port_262
        Unsigned 8-bit integer
    tpncp.output_port_263  tpncp.output_port_263
        Unsigned 8-bit integer
    tpncp.output_port_264  tpncp.output_port_264
        Unsigned 8-bit integer
    tpncp.output_port_265  tpncp.output_port_265
        Unsigned 8-bit integer
    tpncp.output_port_266  tpncp.output_port_266
        Unsigned 8-bit integer
    tpncp.output_port_267  tpncp.output_port_267
        Unsigned 8-bit integer
    tpncp.output_port_268  tpncp.output_port_268
        Unsigned 8-bit integer
    tpncp.output_port_269  tpncp.output_port_269
        Unsigned 8-bit integer
    tpncp.output_port_27  tpncp.output_port_27
        Unsigned 8-bit integer
    tpncp.output_port_270  tpncp.output_port_270
        Unsigned 8-bit integer
    tpncp.output_port_271  tpncp.output_port_271
        Unsigned 8-bit integer
    tpncp.output_port_272  tpncp.output_port_272
        Unsigned 8-bit integer
    tpncp.output_port_273  tpncp.output_port_273
        Unsigned 8-bit integer
    tpncp.output_port_274  tpncp.output_port_274
        Unsigned 8-bit integer
    tpncp.output_port_275  tpncp.output_port_275
        Unsigned 8-bit integer
    tpncp.output_port_276  tpncp.output_port_276
        Unsigned 8-bit integer
    tpncp.output_port_277  tpncp.output_port_277
        Unsigned 8-bit integer
    tpncp.output_port_278  tpncp.output_port_278
        Unsigned 8-bit integer
    tpncp.output_port_279  tpncp.output_port_279
        Unsigned 8-bit integer
    tpncp.output_port_28  tpncp.output_port_28
        Unsigned 8-bit integer
    tpncp.output_port_280  tpncp.output_port_280
        Unsigned 8-bit integer
    tpncp.output_port_281  tpncp.output_port_281
        Unsigned 8-bit integer
    tpncp.output_port_282  tpncp.output_port_282
        Unsigned 8-bit integer
    tpncp.output_port_283  tpncp.output_port_283
        Unsigned 8-bit integer
    tpncp.output_port_284  tpncp.output_port_284
        Unsigned 8-bit integer
    tpncp.output_port_285  tpncp.output_port_285
        Unsigned 8-bit integer
    tpncp.output_port_286  tpncp.output_port_286
        Unsigned 8-bit integer
    tpncp.output_port_287  tpncp.output_port_287
        Unsigned 8-bit integer
    tpncp.output_port_288  tpncp.output_port_288
        Unsigned 8-bit integer
    tpncp.output_port_289  tpncp.output_port_289
        Unsigned 8-bit integer
    tpncp.output_port_29  tpncp.output_port_29
        Unsigned 8-bit integer
    tpncp.output_port_290  tpncp.output_port_290
        Unsigned 8-bit integer
    tpncp.output_port_291  tpncp.output_port_291
        Unsigned 8-bit integer
    tpncp.output_port_292  tpncp.output_port_292
        Unsigned 8-bit integer
    tpncp.output_port_293  tpncp.output_port_293
        Unsigned 8-bit integer
    tpncp.output_port_294  tpncp.output_port_294
        Unsigned 8-bit integer
    tpncp.output_port_295  tpncp.output_port_295
        Unsigned 8-bit integer
    tpncp.output_port_296  tpncp.output_port_296
        Unsigned 8-bit integer
    tpncp.output_port_297  tpncp.output_port_297
        Unsigned 8-bit integer
    tpncp.output_port_298  tpncp.output_port_298
        Unsigned 8-bit integer
    tpncp.output_port_299  tpncp.output_port_299
        Unsigned 8-bit integer
    tpncp.output_port_3  tpncp.output_port_3
        Unsigned 8-bit integer
    tpncp.output_port_30  tpncp.output_port_30
        Unsigned 8-bit integer
    tpncp.output_port_300  tpncp.output_port_300
        Unsigned 8-bit integer
    tpncp.output_port_301  tpncp.output_port_301
        Unsigned 8-bit integer
    tpncp.output_port_302  tpncp.output_port_302
        Unsigned 8-bit integer
    tpncp.output_port_303  tpncp.output_port_303
        Unsigned 8-bit integer
    tpncp.output_port_304  tpncp.output_port_304
        Unsigned 8-bit integer
    tpncp.output_port_305  tpncp.output_port_305
        Unsigned 8-bit integer
    tpncp.output_port_306  tpncp.output_port_306
        Unsigned 8-bit integer
    tpncp.output_port_307  tpncp.output_port_307
        Unsigned 8-bit integer
    tpncp.output_port_308  tpncp.output_port_308
        Unsigned 8-bit integer
    tpncp.output_port_309  tpncp.output_port_309
        Unsigned 8-bit integer
    tpncp.output_port_31  tpncp.output_port_31
        Unsigned 8-bit integer
    tpncp.output_port_310  tpncp.output_port_310
        Unsigned 8-bit integer
    tpncp.output_port_311  tpncp.output_port_311
        Unsigned 8-bit integer
    tpncp.output_port_312  tpncp.output_port_312
        Unsigned 8-bit integer
    tpncp.output_port_313  tpncp.output_port_313
        Unsigned 8-bit integer
    tpncp.output_port_314  tpncp.output_port_314
        Unsigned 8-bit integer
    tpncp.output_port_315  tpncp.output_port_315
        Unsigned 8-bit integer
    tpncp.output_port_316  tpncp.output_port_316
        Unsigned 8-bit integer
    tpncp.output_port_317  tpncp.output_port_317
        Unsigned 8-bit integer
    tpncp.output_port_318  tpncp.output_port_318
        Unsigned 8-bit integer
    tpncp.output_port_319  tpncp.output_port_319
        Unsigned 8-bit integer
    tpncp.output_port_32  tpncp.output_port_32
        Unsigned 8-bit integer
    tpncp.output_port_320  tpncp.output_port_320
        Unsigned 8-bit integer
    tpncp.output_port_321  tpncp.output_port_321
        Unsigned 8-bit integer
    tpncp.output_port_322  tpncp.output_port_322
        Unsigned 8-bit integer
    tpncp.output_port_323  tpncp.output_port_323
        Unsigned 8-bit integer
    tpncp.output_port_324  tpncp.output_port_324
        Unsigned 8-bit integer
    tpncp.output_port_325  tpncp.output_port_325
        Unsigned 8-bit integer
    tpncp.output_port_326  tpncp.output_port_326
        Unsigned 8-bit integer
    tpncp.output_port_327  tpncp.output_port_327
        Unsigned 8-bit integer
    tpncp.output_port_328  tpncp.output_port_328
        Unsigned 8-bit integer
    tpncp.output_port_329  tpncp.output_port_329
        Unsigned 8-bit integer
    tpncp.output_port_33  tpncp.output_port_33
        Unsigned 8-bit integer
    tpncp.output_port_330  tpncp.output_port_330
        Unsigned 8-bit integer
    tpncp.output_port_331  tpncp.output_port_331
        Unsigned 8-bit integer
    tpncp.output_port_332  tpncp.output_port_332
        Unsigned 8-bit integer
    tpncp.output_port_333  tpncp.output_port_333
        Unsigned 8-bit integer
    tpncp.output_port_334  tpncp.output_port_334
        Unsigned 8-bit integer
    tpncp.output_port_335  tpncp.output_port_335
        Unsigned 8-bit integer
    tpncp.output_port_336  tpncp.output_port_336
        Unsigned 8-bit integer
    tpncp.output_port_337  tpncp.output_port_337
        Unsigned 8-bit integer
    tpncp.output_port_338  tpncp.output_port_338
        Unsigned 8-bit integer
    tpncp.output_port_339  tpncp.output_port_339
        Unsigned 8-bit integer
    tpncp.output_port_34  tpncp.output_port_34
        Unsigned 8-bit integer
    tpncp.output_port_340  tpncp.output_port_340
        Unsigned 8-bit integer
    tpncp.output_port_341  tpncp.output_port_341
        Unsigned 8-bit integer
    tpncp.output_port_342  tpncp.output_port_342
        Unsigned 8-bit integer
    tpncp.output_port_343  tpncp.output_port_343
        Unsigned 8-bit integer
    tpncp.output_port_344  tpncp.output_port_344
        Unsigned 8-bit integer
    tpncp.output_port_345  tpncp.output_port_345
        Unsigned 8-bit integer
    tpncp.output_port_346  tpncp.output_port_346
        Unsigned 8-bit integer
    tpncp.output_port_347  tpncp.output_port_347
        Unsigned 8-bit integer
    tpncp.output_port_348  tpncp.output_port_348
        Unsigned 8-bit integer
    tpncp.output_port_349  tpncp.output_port_349
        Unsigned 8-bit integer
    tpncp.output_port_35  tpncp.output_port_35
        Unsigned 8-bit integer
    tpncp.output_port_350  tpncp.output_port_350
        Unsigned 8-bit integer
    tpncp.output_port_351  tpncp.output_port_351
        Unsigned 8-bit integer
    tpncp.output_port_352  tpncp.output_port_352
        Unsigned 8-bit integer
    tpncp.output_port_353  tpncp.output_port_353
        Unsigned 8-bit integer
    tpncp.output_port_354  tpncp.output_port_354
        Unsigned 8-bit integer
    tpncp.output_port_355  tpncp.output_port_355
        Unsigned 8-bit integer
    tpncp.output_port_356  tpncp.output_port_356
        Unsigned 8-bit integer
    tpncp.output_port_357  tpncp.output_port_357
        Unsigned 8-bit integer
    tpncp.output_port_358  tpncp.output_port_358
        Unsigned 8-bit integer
    tpncp.output_port_359  tpncp.output_port_359
        Unsigned 8-bit integer
    tpncp.output_port_36  tpncp.output_port_36
        Unsigned 8-bit integer
    tpncp.output_port_360  tpncp.output_port_360
        Unsigned 8-bit integer
    tpncp.output_port_361  tpncp.output_port_361
        Unsigned 8-bit integer
    tpncp.output_port_362  tpncp.output_port_362
        Unsigned 8-bit integer
    tpncp.output_port_363  tpncp.output_port_363
        Unsigned 8-bit integer
    tpncp.output_port_364  tpncp.output_port_364
        Unsigned 8-bit integer
    tpncp.output_port_365  tpncp.output_port_365
        Unsigned 8-bit integer
    tpncp.output_port_366  tpncp.output_port_366
        Unsigned 8-bit integer
    tpncp.output_port_367  tpncp.output_port_367
        Unsigned 8-bit integer
    tpncp.output_port_368  tpncp.output_port_368
        Unsigned 8-bit integer
    tpncp.output_port_369  tpncp.output_port_369
        Unsigned 8-bit integer
    tpncp.output_port_37  tpncp.output_port_37
        Unsigned 8-bit integer
    tpncp.output_port_370  tpncp.output_port_370
        Unsigned 8-bit integer
    tpncp.output_port_371  tpncp.output_port_371
        Unsigned 8-bit integer
    tpncp.output_port_372  tpncp.output_port_372
        Unsigned 8-bit integer
    tpncp.output_port_373  tpncp.output_port_373
        Unsigned 8-bit integer
    tpncp.output_port_374  tpncp.output_port_374
        Unsigned 8-bit integer
    tpncp.output_port_375  tpncp.output_port_375
        Unsigned 8-bit integer
    tpncp.output_port_376  tpncp.output_port_376
        Unsigned 8-bit integer
    tpncp.output_port_377  tpncp.output_port_377
        Unsigned 8-bit integer
    tpncp.output_port_378  tpncp.output_port_378
        Unsigned 8-bit integer
    tpncp.output_port_379  tpncp.output_port_379
        Unsigned 8-bit integer
    tpncp.output_port_38  tpncp.output_port_38
        Unsigned 8-bit integer
    tpncp.output_port_380  tpncp.output_port_380
        Unsigned 8-bit integer
    tpncp.output_port_381  tpncp.output_port_381
        Unsigned 8-bit integer
    tpncp.output_port_382  tpncp.output_port_382
        Unsigned 8-bit integer
    tpncp.output_port_383  tpncp.output_port_383
        Unsigned 8-bit integer
    tpncp.output_port_384  tpncp.output_port_384
        Unsigned 8-bit integer
    tpncp.output_port_385  tpncp.output_port_385
        Unsigned 8-bit integer
    tpncp.output_port_386  tpncp.output_port_386
        Unsigned 8-bit integer
    tpncp.output_port_387  tpncp.output_port_387
        Unsigned 8-bit integer
    tpncp.output_port_388  tpncp.output_port_388
        Unsigned 8-bit integer
    tpncp.output_port_389  tpncp.output_port_389
        Unsigned 8-bit integer
    tpncp.output_port_39  tpncp.output_port_39
        Unsigned 8-bit integer
    tpncp.output_port_390  tpncp.output_port_390
        Unsigned 8-bit integer
    tpncp.output_port_391  tpncp.output_port_391
        Unsigned 8-bit integer
    tpncp.output_port_392  tpncp.output_port_392
        Unsigned 8-bit integer
    tpncp.output_port_393  tpncp.output_port_393
        Unsigned 8-bit integer
    tpncp.output_port_394  tpncp.output_port_394
        Unsigned 8-bit integer
    tpncp.output_port_395  tpncp.output_port_395
        Unsigned 8-bit integer
    tpncp.output_port_396  tpncp.output_port_396
        Unsigned 8-bit integer
    tpncp.output_port_397  tpncp.output_port_397
        Unsigned 8-bit integer
    tpncp.output_port_398  tpncp.output_port_398
        Unsigned 8-bit integer
    tpncp.output_port_399  tpncp.output_port_399
        Unsigned 8-bit integer
    tpncp.output_port_4  tpncp.output_port_4
        Unsigned 8-bit integer
    tpncp.output_port_40  tpncp.output_port_40
        Unsigned 8-bit integer
    tpncp.output_port_400  tpncp.output_port_400
        Unsigned 8-bit integer
    tpncp.output_port_401  tpncp.output_port_401
        Unsigned 8-bit integer
    tpncp.output_port_402  tpncp.output_port_402
        Unsigned 8-bit integer
    tpncp.output_port_403  tpncp.output_port_403
        Unsigned 8-bit integer
    tpncp.output_port_404  tpncp.output_port_404
        Unsigned 8-bit integer
    tpncp.output_port_405  tpncp.output_port_405
        Unsigned 8-bit integer
    tpncp.output_port_406  tpncp.output_port_406
        Unsigned 8-bit integer
    tpncp.output_port_407  tpncp.output_port_407
        Unsigned 8-bit integer
    tpncp.output_port_408  tpncp.output_port_408
        Unsigned 8-bit integer
    tpncp.output_port_409  tpncp.output_port_409
        Unsigned 8-bit integer
    tpncp.output_port_41  tpncp.output_port_41
        Unsigned 8-bit integer
    tpncp.output_port_410  tpncp.output_port_410
        Unsigned 8-bit integer
    tpncp.output_port_411  tpncp.output_port_411
        Unsigned 8-bit integer
    tpncp.output_port_412  tpncp.output_port_412
        Unsigned 8-bit integer
    tpncp.output_port_413  tpncp.output_port_413
        Unsigned 8-bit integer
    tpncp.output_port_414  tpncp.output_port_414
        Unsigned 8-bit integer
    tpncp.output_port_415  tpncp.output_port_415
        Unsigned 8-bit integer
    tpncp.output_port_416  tpncp.output_port_416
        Unsigned 8-bit integer
    tpncp.output_port_417  tpncp.output_port_417
        Unsigned 8-bit integer
    tpncp.output_port_418  tpncp.output_port_418
        Unsigned 8-bit integer
    tpncp.output_port_419  tpncp.output_port_419
        Unsigned 8-bit integer
    tpncp.output_port_42  tpncp.output_port_42
        Unsigned 8-bit integer
    tpncp.output_port_420  tpncp.output_port_420
        Unsigned 8-bit integer
    tpncp.output_port_421  tpncp.output_port_421
        Unsigned 8-bit integer
    tpncp.output_port_422  tpncp.output_port_422
        Unsigned 8-bit integer
    tpncp.output_port_423  tpncp.output_port_423
        Unsigned 8-bit integer
    tpncp.output_port_424  tpncp.output_port_424
        Unsigned 8-bit integer
    tpncp.output_port_425  tpncp.output_port_425
        Unsigned 8-bit integer
    tpncp.output_port_426  tpncp.output_port_426
        Unsigned 8-bit integer
    tpncp.output_port_427  tpncp.output_port_427
        Unsigned 8-bit integer
    tpncp.output_port_428  tpncp.output_port_428
        Unsigned 8-bit integer
    tpncp.output_port_429  tpncp.output_port_429
        Unsigned 8-bit integer
    tpncp.output_port_43  tpncp.output_port_43
        Unsigned 8-bit integer
    tpncp.output_port_430  tpncp.output_port_430
        Unsigned 8-bit integer
    tpncp.output_port_431  tpncp.output_port_431
        Unsigned 8-bit integer
    tpncp.output_port_432  tpncp.output_port_432
        Unsigned 8-bit integer
    tpncp.output_port_433  tpncp.output_port_433
        Unsigned 8-bit integer
    tpncp.output_port_434  tpncp.output_port_434
        Unsigned 8-bit integer
    tpncp.output_port_435  tpncp.output_port_435
        Unsigned 8-bit integer
    tpncp.output_port_436  tpncp.output_port_436
        Unsigned 8-bit integer
    tpncp.output_port_437  tpncp.output_port_437
        Unsigned 8-bit integer
    tpncp.output_port_438  tpncp.output_port_438
        Unsigned 8-bit integer
    tpncp.output_port_439  tpncp.output_port_439
        Unsigned 8-bit integer
    tpncp.output_port_44  tpncp.output_port_44
        Unsigned 8-bit integer
    tpncp.output_port_440  tpncp.output_port_440
        Unsigned 8-bit integer
    tpncp.output_port_441  tpncp.output_port_441
        Unsigned 8-bit integer
    tpncp.output_port_442  tpncp.output_port_442
        Unsigned 8-bit integer
    tpncp.output_port_443  tpncp.output_port_443
        Unsigned 8-bit integer
    tpncp.output_port_444  tpncp.output_port_444
        Unsigned 8-bit integer
    tpncp.output_port_445  tpncp.output_port_445
        Unsigned 8-bit integer
    tpncp.output_port_446  tpncp.output_port_446
        Unsigned 8-bit integer
    tpncp.output_port_447  tpncp.output_port_447
        Unsigned 8-bit integer
    tpncp.output_port_448  tpncp.output_port_448
        Unsigned 8-bit integer
    tpncp.output_port_449  tpncp.output_port_449
        Unsigned 8-bit integer
    tpncp.output_port_45  tpncp.output_port_45
        Unsigned 8-bit integer
    tpncp.output_port_450  tpncp.output_port_450
        Unsigned 8-bit integer
    tpncp.output_port_451  tpncp.output_port_451
        Unsigned 8-bit integer
    tpncp.output_port_452  tpncp.output_port_452
        Unsigned 8-bit integer
    tpncp.output_port_453  tpncp.output_port_453
        Unsigned 8-bit integer
    tpncp.output_port_454  tpncp.output_port_454
        Unsigned 8-bit integer
    tpncp.output_port_455  tpncp.output_port_455
        Unsigned 8-bit integer
    tpncp.output_port_456  tpncp.output_port_456
        Unsigned 8-bit integer
    tpncp.output_port_457  tpncp.output_port_457
        Unsigned 8-bit integer
    tpncp.output_port_458  tpncp.output_port_458
        Unsigned 8-bit integer
    tpncp.output_port_459  tpncp.output_port_459
        Unsigned 8-bit integer
    tpncp.output_port_46  tpncp.output_port_46
        Unsigned 8-bit integer
    tpncp.output_port_460  tpncp.output_port_460
        Unsigned 8-bit integer
    tpncp.output_port_461  tpncp.output_port_461
        Unsigned 8-bit integer
    tpncp.output_port_462  tpncp.output_port_462
        Unsigned 8-bit integer
    tpncp.output_port_463  tpncp.output_port_463
        Unsigned 8-bit integer
    tpncp.output_port_464  tpncp.output_port_464
        Unsigned 8-bit integer
    tpncp.output_port_465  tpncp.output_port_465
        Unsigned 8-bit integer
    tpncp.output_port_466  tpncp.output_port_466
        Unsigned 8-bit integer
    tpncp.output_port_467  tpncp.output_port_467
        Unsigned 8-bit integer
    tpncp.output_port_468  tpncp.output_port_468
        Unsigned 8-bit integer
    tpncp.output_port_469  tpncp.output_port_469
        Unsigned 8-bit integer
    tpncp.output_port_47  tpncp.output_port_47
        Unsigned 8-bit integer
    tpncp.output_port_470  tpncp.output_port_470
        Unsigned 8-bit integer
    tpncp.output_port_471  tpncp.output_port_471
        Unsigned 8-bit integer
    tpncp.output_port_472  tpncp.output_port_472
        Unsigned 8-bit integer
    tpncp.output_port_473  tpncp.output_port_473
        Unsigned 8-bit integer
    tpncp.output_port_474  tpncp.output_port_474
        Unsigned 8-bit integer
    tpncp.output_port_475  tpncp.output_port_475
        Unsigned 8-bit integer
    tpncp.output_port_476  tpncp.output_port_476
        Unsigned 8-bit integer
    tpncp.output_port_477  tpncp.output_port_477
        Unsigned 8-bit integer
    tpncp.output_port_478  tpncp.output_port_478
        Unsigned 8-bit integer
    tpncp.output_port_479  tpncp.output_port_479
        Unsigned 8-bit integer
    tpncp.output_port_48  tpncp.output_port_48
        Unsigned 8-bit integer
    tpncp.output_port_480  tpncp.output_port_480
        Unsigned 8-bit integer
    tpncp.output_port_481  tpncp.output_port_481
        Unsigned 8-bit integer
    tpncp.output_port_482  tpncp.output_port_482
        Unsigned 8-bit integer
    tpncp.output_port_483  tpncp.output_port_483
        Unsigned 8-bit integer
    tpncp.output_port_484  tpncp.output_port_484
        Unsigned 8-bit integer
    tpncp.output_port_485  tpncp.output_port_485
        Unsigned 8-bit integer
    tpncp.output_port_486  tpncp.output_port_486
        Unsigned 8-bit integer
    tpncp.output_port_487  tpncp.output_port_487
        Unsigned 8-bit integer
    tpncp.output_port_488  tpncp.output_port_488
        Unsigned 8-bit integer
    tpncp.output_port_489  tpncp.output_port_489
        Unsigned 8-bit integer
    tpncp.output_port_49  tpncp.output_port_49
        Unsigned 8-bit integer
    tpncp.output_port_490  tpncp.output_port_490
        Unsigned 8-bit integer
    tpncp.output_port_491  tpncp.output_port_491
        Unsigned 8-bit integer
    tpncp.output_port_492  tpncp.output_port_492
        Unsigned 8-bit integer
    tpncp.output_port_493  tpncp.output_port_493
        Unsigned 8-bit integer
    tpncp.output_port_494  tpncp.output_port_494
        Unsigned 8-bit integer
    tpncp.output_port_495  tpncp.output_port_495
        Unsigned 8-bit integer
    tpncp.output_port_496  tpncp.output_port_496
        Unsigned 8-bit integer
    tpncp.output_port_497  tpncp.output_port_497
        Unsigned 8-bit integer
    tpncp.output_port_498  tpncp.output_port_498
        Unsigned 8-bit integer
    tpncp.output_port_499  tpncp.output_port_499
        Unsigned 8-bit integer
    tpncp.output_port_5  tpncp.output_port_5
        Unsigned 8-bit integer
    tpncp.output_port_50  tpncp.output_port_50
        Unsigned 8-bit integer
    tpncp.output_port_500  tpncp.output_port_500
        Unsigned 8-bit integer
    tpncp.output_port_501  tpncp.output_port_501
        Unsigned 8-bit integer
    tpncp.output_port_502  tpncp.output_port_502
        Unsigned 8-bit integer
    tpncp.output_port_503  tpncp.output_port_503
        Unsigned 8-bit integer
    tpncp.output_port_51  tpncp.output_port_51
        Unsigned 8-bit integer
    tpncp.output_port_52  tpncp.output_port_52
        Unsigned 8-bit integer
    tpncp.output_port_53  tpncp.output_port_53
        Unsigned 8-bit integer
    tpncp.output_port_54  tpncp.output_port_54
        Unsigned 8-bit integer
    tpncp.output_port_55  tpncp.output_port_55
        Unsigned 8-bit integer
    tpncp.output_port_56  tpncp.output_port_56
        Unsigned 8-bit integer
    tpncp.output_port_57  tpncp.output_port_57
        Unsigned 8-bit integer
    tpncp.output_port_58  tpncp.output_port_58
        Unsigned 8-bit integer
    tpncp.output_port_59  tpncp.output_port_59
        Unsigned 8-bit integer
    tpncp.output_port_6  tpncp.output_port_6
        Unsigned 8-bit integer
    tpncp.output_port_60  tpncp.output_port_60
        Unsigned 8-bit integer
    tpncp.output_port_61  tpncp.output_port_61
        Unsigned 8-bit integer
    tpncp.output_port_62  tpncp.output_port_62
        Unsigned 8-bit integer
    tpncp.output_port_63  tpncp.output_port_63
        Unsigned 8-bit integer
    tpncp.output_port_64  tpncp.output_port_64
        Unsigned 8-bit integer
    tpncp.output_port_65  tpncp.output_port_65
        Unsigned 8-bit integer
    tpncp.output_port_66  tpncp.output_port_66
        Unsigned 8-bit integer
    tpncp.output_port_67  tpncp.output_port_67
        Unsigned 8-bit integer
    tpncp.output_port_68  tpncp.output_port_68
        Unsigned 8-bit integer
    tpncp.output_port_69  tpncp.output_port_69
        Unsigned 8-bit integer
    tpncp.output_port_7  tpncp.output_port_7
        Unsigned 8-bit integer
    tpncp.output_port_70  tpncp.output_port_70
        Unsigned 8-bit integer
    tpncp.output_port_71  tpncp.output_port_71
        Unsigned 8-bit integer
    tpncp.output_port_72  tpncp.output_port_72
        Unsigned 8-bit integer
    tpncp.output_port_73  tpncp.output_port_73
        Unsigned 8-bit integer
    tpncp.output_port_74  tpncp.output_port_74
        Unsigned 8-bit integer
    tpncp.output_port_75  tpncp.output_port_75
        Unsigned 8-bit integer
    tpncp.output_port_76  tpncp.output_port_76
        Unsigned 8-bit integer
    tpncp.output_port_77  tpncp.output_port_77
        Unsigned 8-bit integer
    tpncp.output_port_78  tpncp.output_port_78
        Unsigned 8-bit integer
    tpncp.output_port_79  tpncp.output_port_79
        Unsigned 8-bit integer
    tpncp.output_port_8  tpncp.output_port_8
        Unsigned 8-bit integer
    tpncp.output_port_80  tpncp.output_port_80
        Unsigned 8-bit integer
    tpncp.output_port_81  tpncp.output_port_81
        Unsigned 8-bit integer
    tpncp.output_port_82  tpncp.output_port_82
        Unsigned 8-bit integer
    tpncp.output_port_83  tpncp.output_port_83
        Unsigned 8-bit integer
    tpncp.output_port_84  tpncp.output_port_84
        Unsigned 8-bit integer
    tpncp.output_port_85  tpncp.output_port_85
        Unsigned 8-bit integer
    tpncp.output_port_86  tpncp.output_port_86
        Unsigned 8-bit integer
    tpncp.output_port_87  tpncp.output_port_87
        Unsigned 8-bit integer
    tpncp.output_port_88  tpncp.output_port_88
        Unsigned 8-bit integer
    tpncp.output_port_89  tpncp.output_port_89
        Unsigned 8-bit integer
    tpncp.output_port_9  tpncp.output_port_9
        Unsigned 8-bit integer
    tpncp.output_port_90  tpncp.output_port_90
        Unsigned 8-bit integer
    tpncp.output_port_91  tpncp.output_port_91
        Unsigned 8-bit integer
    tpncp.output_port_92  tpncp.output_port_92
        Unsigned 8-bit integer
    tpncp.output_port_93  tpncp.output_port_93
        Unsigned 8-bit integer
    tpncp.output_port_94  tpncp.output_port_94
        Unsigned 8-bit integer
    tpncp.output_port_95  tpncp.output_port_95
        Unsigned 8-bit integer
    tpncp.output_port_96  tpncp.output_port_96
        Unsigned 8-bit integer
    tpncp.output_port_97  tpncp.output_port_97
        Unsigned 8-bit integer
    tpncp.output_port_98  tpncp.output_port_98
        Unsigned 8-bit integer
    tpncp.output_port_99  tpncp.output_port_99
        Unsigned 8-bit integer
    tpncp.output_port_state_0  tpncp.output_port_state_0
        Signed 32-bit integer
    tpncp.output_port_state_1  tpncp.output_port_state_1
        Signed 32-bit integer
    tpncp.output_port_state_2  tpncp.output_port_state_2
        Signed 32-bit integer
    tpncp.output_port_state_3  tpncp.output_port_state_3
        Signed 32-bit integer
    tpncp.output_port_state_4  tpncp.output_port_state_4
        Signed 32-bit integer
    tpncp.output_port_state_5  tpncp.output_port_state_5
        Signed 32-bit integer
    tpncp.output_port_state_6  tpncp.output_port_state_6
        Signed 32-bit integer
    tpncp.output_port_state_7  tpncp.output_port_state_7
        Signed 32-bit integer
    tpncp.output_port_state_8  tpncp.output_port_state_8
        Signed 32-bit integer
    tpncp.output_port_state_9  tpncp.output_port_state_9
        Signed 32-bit integer
    tpncp.output_tdm_bus  tpncp.output_tdm_bus
        Unsigned 16-bit integer
    tpncp.output_time_slot_0  tpncp.output_time_slot_0
        Unsigned 16-bit integer
    tpncp.output_time_slot_1  tpncp.output_time_slot_1
        Unsigned 16-bit integer
    tpncp.output_time_slot_10  tpncp.output_time_slot_10
        Unsigned 16-bit integer
    tpncp.output_time_slot_100  tpncp.output_time_slot_100
        Unsigned 16-bit integer
    tpncp.output_time_slot_101  tpncp.output_time_slot_101
        Unsigned 16-bit integer
    tpncp.output_time_slot_102  tpncp.output_time_slot_102
        Unsigned 16-bit integer
    tpncp.output_time_slot_103  tpncp.output_time_slot_103
        Unsigned 16-bit integer
    tpncp.output_time_slot_104  tpncp.output_time_slot_104
        Unsigned 16-bit integer
    tpncp.output_time_slot_105  tpncp.output_time_slot_105
        Unsigned 16-bit integer
    tpncp.output_time_slot_106  tpncp.output_time_slot_106
        Unsigned 16-bit integer
    tpncp.output_time_slot_107  tpncp.output_time_slot_107
        Unsigned 16-bit integer
    tpncp.output_time_slot_108  tpncp.output_time_slot_108
        Unsigned 16-bit integer
    tpncp.output_time_slot_109  tpncp.output_time_slot_109
        Unsigned 16-bit integer
    tpncp.output_time_slot_11  tpncp.output_time_slot_11
        Unsigned 16-bit integer
    tpncp.output_time_slot_110  tpncp.output_time_slot_110
        Unsigned 16-bit integer
    tpncp.output_time_slot_111  tpncp.output_time_slot_111
        Unsigned 16-bit integer
    tpncp.output_time_slot_112  tpncp.output_time_slot_112
        Unsigned 16-bit integer
    tpncp.output_time_slot_113  tpncp.output_time_slot_113
        Unsigned 16-bit integer
    tpncp.output_time_slot_114  tpncp.output_time_slot_114
        Unsigned 16-bit integer
    tpncp.output_time_slot_115  tpncp.output_time_slot_115
        Unsigned 16-bit integer
    tpncp.output_time_slot_116  tpncp.output_time_slot_116
        Unsigned 16-bit integer
    tpncp.output_time_slot_117  tpncp.output_time_slot_117
        Unsigned 16-bit integer
    tpncp.output_time_slot_118  tpncp.output_time_slot_118
        Unsigned 16-bit integer
    tpncp.output_time_slot_119  tpncp.output_time_slot_119
        Unsigned 16-bit integer
    tpncp.output_time_slot_12  tpncp.output_time_slot_12
        Unsigned 16-bit integer
    tpncp.output_time_slot_120  tpncp.output_time_slot_120
        Unsigned 16-bit integer
    tpncp.output_time_slot_121  tpncp.output_time_slot_121
        Unsigned 16-bit integer
    tpncp.output_time_slot_122  tpncp.output_time_slot_122
        Unsigned 16-bit integer
    tpncp.output_time_slot_123  tpncp.output_time_slot_123
        Unsigned 16-bit integer
    tpncp.output_time_slot_124  tpncp.output_time_slot_124
        Unsigned 16-bit integer
    tpncp.output_time_slot_125  tpncp.output_time_slot_125
        Unsigned 16-bit integer
    tpncp.output_time_slot_126  tpncp.output_time_slot_126
        Unsigned 16-bit integer
    tpncp.output_time_slot_127  tpncp.output_time_slot_127
        Unsigned 16-bit integer
    tpncp.output_time_slot_128  tpncp.output_time_slot_128
        Unsigned 16-bit integer
    tpncp.output_time_slot_129  tpncp.output_time_slot_129
        Unsigned 16-bit integer
    tpncp.output_time_slot_13  tpncp.output_time_slot_13
        Unsigned 16-bit integer
    tpncp.output_time_slot_130  tpncp.output_time_slot_130
        Unsigned 16-bit integer
    tpncp.output_time_slot_131  tpncp.output_time_slot_131
        Unsigned 16-bit integer
    tpncp.output_time_slot_132  tpncp.output_time_slot_132
        Unsigned 16-bit integer
    tpncp.output_time_slot_133  tpncp.output_time_slot_133
        Unsigned 16-bit integer
    tpncp.output_time_slot_134  tpncp.output_time_slot_134
        Unsigned 16-bit integer
    tpncp.output_time_slot_135  tpncp.output_time_slot_135
        Unsigned 16-bit integer
    tpncp.output_time_slot_136  tpncp.output_time_slot_136
        Unsigned 16-bit integer
    tpncp.output_time_slot_137  tpncp.output_time_slot_137
        Unsigned 16-bit integer
    tpncp.output_time_slot_138  tpncp.output_time_slot_138
        Unsigned 16-bit integer
    tpncp.output_time_slot_139  tpncp.output_time_slot_139
        Unsigned 16-bit integer
    tpncp.output_time_slot_14  tpncp.output_time_slot_14
        Unsigned 16-bit integer
    tpncp.output_time_slot_140  tpncp.output_time_slot_140
        Unsigned 16-bit integer
    tpncp.output_time_slot_141  tpncp.output_time_slot_141
        Unsigned 16-bit integer
    tpncp.output_time_slot_142  tpncp.output_time_slot_142
        Unsigned 16-bit integer
    tpncp.output_time_slot_143  tpncp.output_time_slot_143
        Unsigned 16-bit integer
    tpncp.output_time_slot_144  tpncp.output_time_slot_144
        Unsigned 16-bit integer
    tpncp.output_time_slot_145  tpncp.output_time_slot_145
        Unsigned 16-bit integer
    tpncp.output_time_slot_146  tpncp.output_time_slot_146
        Unsigned 16-bit integer
    tpncp.output_time_slot_147  tpncp.output_time_slot_147
        Unsigned 16-bit integer
    tpncp.output_time_slot_148  tpncp.output_time_slot_148
        Unsigned 16-bit integer
    tpncp.output_time_slot_149  tpncp.output_time_slot_149
        Unsigned 16-bit integer
    tpncp.output_time_slot_15  tpncp.output_time_slot_15
        Unsigned 16-bit integer
    tpncp.output_time_slot_150  tpncp.output_time_slot_150
        Unsigned 16-bit integer
    tpncp.output_time_slot_151  tpncp.output_time_slot_151
        Unsigned 16-bit integer
    tpncp.output_time_slot_152  tpncp.output_time_slot_152
        Unsigned 16-bit integer
    tpncp.output_time_slot_153  tpncp.output_time_slot_153
        Unsigned 16-bit integer
    tpncp.output_time_slot_154  tpncp.output_time_slot_154
        Unsigned 16-bit integer
    tpncp.output_time_slot_155  tpncp.output_time_slot_155
        Unsigned 16-bit integer
    tpncp.output_time_slot_156  tpncp.output_time_slot_156
        Unsigned 16-bit integer
    tpncp.output_time_slot_157  tpncp.output_time_slot_157
        Unsigned 16-bit integer
    tpncp.output_time_slot_158  tpncp.output_time_slot_158
        Unsigned 16-bit integer
    tpncp.output_time_slot_159  tpncp.output_time_slot_159
        Unsigned 16-bit integer
    tpncp.output_time_slot_16  tpncp.output_time_slot_16
        Unsigned 16-bit integer
    tpncp.output_time_slot_160  tpncp.output_time_slot_160
        Unsigned 16-bit integer
    tpncp.output_time_slot_161  tpncp.output_time_slot_161
        Unsigned 16-bit integer
    tpncp.output_time_slot_162  tpncp.output_time_slot_162
        Unsigned 16-bit integer
    tpncp.output_time_slot_163  tpncp.output_time_slot_163
        Unsigned 16-bit integer
    tpncp.output_time_slot_164  tpncp.output_time_slot_164
        Unsigned 16-bit integer
    tpncp.output_time_slot_165  tpncp.output_time_slot_165
        Unsigned 16-bit integer
    tpncp.output_time_slot_166  tpncp.output_time_slot_166
        Unsigned 16-bit integer
    tpncp.output_time_slot_167  tpncp.output_time_slot_167
        Unsigned 16-bit integer
    tpncp.output_time_slot_168  tpncp.output_time_slot_168
        Unsigned 16-bit integer
    tpncp.output_time_slot_169  tpncp.output_time_slot_169
        Unsigned 16-bit integer
    tpncp.output_time_slot_17  tpncp.output_time_slot_17
        Unsigned 16-bit integer
    tpncp.output_time_slot_170  tpncp.output_time_slot_170
        Unsigned 16-bit integer
    tpncp.output_time_slot_171  tpncp.output_time_slot_171
        Unsigned 16-bit integer
    tpncp.output_time_slot_172  tpncp.output_time_slot_172
        Unsigned 16-bit integer
    tpncp.output_time_slot_173  tpncp.output_time_slot_173
        Unsigned 16-bit integer
    tpncp.output_time_slot_174  tpncp.output_time_slot_174
        Unsigned 16-bit integer
    tpncp.output_time_slot_175  tpncp.output_time_slot_175
        Unsigned 16-bit integer
    tpncp.output_time_slot_176  tpncp.output_time_slot_176
        Unsigned 16-bit integer
    tpncp.output_time_slot_177  tpncp.output_time_slot_177
        Unsigned 16-bit integer
    tpncp.output_time_slot_178  tpncp.output_time_slot_178
        Unsigned 16-bit integer
    tpncp.output_time_slot_179  tpncp.output_time_slot_179
        Unsigned 16-bit integer
    tpncp.output_time_slot_18  tpncp.output_time_slot_18
        Unsigned 16-bit integer
    tpncp.output_time_slot_180  tpncp.output_time_slot_180
        Unsigned 16-bit integer
    tpncp.output_time_slot_181  tpncp.output_time_slot_181
        Unsigned 16-bit integer
    tpncp.output_time_slot_182  tpncp.output_time_slot_182
        Unsigned 16-bit integer
    tpncp.output_time_slot_183  tpncp.output_time_slot_183
        Unsigned 16-bit integer
    tpncp.output_time_slot_184  tpncp.output_time_slot_184
        Unsigned 16-bit integer
    tpncp.output_time_slot_185  tpncp.output_time_slot_185
        Unsigned 16-bit integer
    tpncp.output_time_slot_186  tpncp.output_time_slot_186
        Unsigned 16-bit integer
    tpncp.output_time_slot_187  tpncp.output_time_slot_187
        Unsigned 16-bit integer
    tpncp.output_time_slot_188  tpncp.output_time_slot_188
        Unsigned 16-bit integer
    tpncp.output_time_slot_189  tpncp.output_time_slot_189
        Unsigned 16-bit integer
    tpncp.output_time_slot_19  tpncp.output_time_slot_19
        Unsigned 16-bit integer
    tpncp.output_time_slot_190  tpncp.output_time_slot_190
        Unsigned 16-bit integer
    tpncp.output_time_slot_191  tpncp.output_time_slot_191
        Unsigned 16-bit integer
    tpncp.output_time_slot_192  tpncp.output_time_slot_192
        Unsigned 16-bit integer
    tpncp.output_time_slot_193  tpncp.output_time_slot_193
        Unsigned 16-bit integer
    tpncp.output_time_slot_194  tpncp.output_time_slot_194
        Unsigned 16-bit integer
    tpncp.output_time_slot_195  tpncp.output_time_slot_195
        Unsigned 16-bit integer
    tpncp.output_time_slot_196  tpncp.output_time_slot_196
        Unsigned 16-bit integer
    tpncp.output_time_slot_197  tpncp.output_time_slot_197
        Unsigned 16-bit integer
    tpncp.output_time_slot_198  tpncp.output_time_slot_198
        Unsigned 16-bit integer
    tpncp.output_time_slot_199  tpncp.output_time_slot_199
        Unsigned 16-bit integer
    tpncp.output_time_slot_2  tpncp.output_time_slot_2
        Unsigned 16-bit integer
    tpncp.output_time_slot_20  tpncp.output_time_slot_20
        Unsigned 16-bit integer
    tpncp.output_time_slot_200  tpncp.output_time_slot_200
        Unsigned 16-bit integer
    tpncp.output_time_slot_201  tpncp.output_time_slot_201
        Unsigned 16-bit integer
    tpncp.output_time_slot_202  tpncp.output_time_slot_202
        Unsigned 16-bit integer
    tpncp.output_time_slot_203  tpncp.output_time_slot_203
        Unsigned 16-bit integer
    tpncp.output_time_slot_204  tpncp.output_time_slot_204
        Unsigned 16-bit integer
    tpncp.output_time_slot_205  tpncp.output_time_slot_205
        Unsigned 16-bit integer
    tpncp.output_time_slot_206  tpncp.output_time_slot_206
        Unsigned 16-bit integer
    tpncp.output_time_slot_207  tpncp.output_time_slot_207
        Unsigned 16-bit integer
    tpncp.output_time_slot_208  tpncp.output_time_slot_208
        Unsigned 16-bit integer
    tpncp.output_time_slot_209  tpncp.output_time_slot_209
        Unsigned 16-bit integer
    tpncp.output_time_slot_21  tpncp.output_time_slot_21
        Unsigned 16-bit integer
    tpncp.output_time_slot_210  tpncp.output_time_slot_210
        Unsigned 16-bit integer
    tpncp.output_time_slot_211  tpncp.output_time_slot_211
        Unsigned 16-bit integer
    tpncp.output_time_slot_212  tpncp.output_time_slot_212
        Unsigned 16-bit integer
    tpncp.output_time_slot_213  tpncp.output_time_slot_213
        Unsigned 16-bit integer
    tpncp.output_time_slot_214  tpncp.output_time_slot_214
        Unsigned 16-bit integer
    tpncp.output_time_slot_215  tpncp.output_time_slot_215
        Unsigned 16-bit integer
    tpncp.output_time_slot_216  tpncp.output_time_slot_216
        Unsigned 16-bit integer
    tpncp.output_time_slot_217  tpncp.output_time_slot_217
        Unsigned 16-bit integer
    tpncp.output_time_slot_218  tpncp.output_time_slot_218
        Unsigned 16-bit integer
    tpncp.output_time_slot_219  tpncp.output_time_slot_219
        Unsigned 16-bit integer
    tpncp.output_time_slot_22  tpncp.output_time_slot_22
        Unsigned 16-bit integer
    tpncp.output_time_slot_220  tpncp.output_time_slot_220
        Unsigned 16-bit integer
    tpncp.output_time_slot_221  tpncp.output_time_slot_221
        Unsigned 16-bit integer
    tpncp.output_time_slot_222  tpncp.output_time_slot_222
        Unsigned 16-bit integer
    tpncp.output_time_slot_223  tpncp.output_time_slot_223
        Unsigned 16-bit integer
    tpncp.output_time_slot_224  tpncp.output_time_slot_224
        Unsigned 16-bit integer
    tpncp.output_time_slot_225  tpncp.output_time_slot_225
        Unsigned 16-bit integer
    tpncp.output_time_slot_226  tpncp.output_time_slot_226
        Unsigned 16-bit integer
    tpncp.output_time_slot_227  tpncp.output_time_slot_227
        Unsigned 16-bit integer
    tpncp.output_time_slot_228  tpncp.output_time_slot_228
        Unsigned 16-bit integer
    tpncp.output_time_slot_229  tpncp.output_time_slot_229
        Unsigned 16-bit integer
    tpncp.output_time_slot_23  tpncp.output_time_slot_23
        Unsigned 16-bit integer
    tpncp.output_time_slot_230  tpncp.output_time_slot_230
        Unsigned 16-bit integer
    tpncp.output_time_slot_231  tpncp.output_time_slot_231
        Unsigned 16-bit integer
    tpncp.output_time_slot_232  tpncp.output_time_slot_232
        Unsigned 16-bit integer
    tpncp.output_time_slot_233  tpncp.output_time_slot_233
        Unsigned 16-bit integer
    tpncp.output_time_slot_234  tpncp.output_time_slot_234
        Unsigned 16-bit integer
    tpncp.output_time_slot_235  tpncp.output_time_slot_235
        Unsigned 16-bit integer
    tpncp.output_time_slot_236  tpncp.output_time_slot_236
        Unsigned 16-bit integer
    tpncp.output_time_slot_237  tpncp.output_time_slot_237
        Unsigned 16-bit integer
    tpncp.output_time_slot_238  tpncp.output_time_slot_238
        Unsigned 16-bit integer
    tpncp.output_time_slot_239  tpncp.output_time_slot_239
        Unsigned 16-bit integer
    tpncp.output_time_slot_24  tpncp.output_time_slot_24
        Unsigned 16-bit integer
    tpncp.output_time_slot_240  tpncp.output_time_slot_240
        Unsigned 16-bit integer
    tpncp.output_time_slot_241  tpncp.output_time_slot_241
        Unsigned 16-bit integer
    tpncp.output_time_slot_242  tpncp.output_time_slot_242
        Unsigned 16-bit integer
    tpncp.output_time_slot_243  tpncp.output_time_slot_243
        Unsigned 16-bit integer
    tpncp.output_time_slot_244  tpncp.output_time_slot_244
        Unsigned 16-bit integer
    tpncp.output_time_slot_245  tpncp.output_time_slot_245
        Unsigned 16-bit integer
    tpncp.output_time_slot_246  tpncp.output_time_slot_246
        Unsigned 16-bit integer
    tpncp.output_time_slot_247  tpncp.output_time_slot_247
        Unsigned 16-bit integer
    tpncp.output_time_slot_248  tpncp.output_time_slot_248
        Unsigned 16-bit integer
    tpncp.output_time_slot_249  tpncp.output_time_slot_249
        Unsigned 16-bit integer
    tpncp.output_time_slot_25  tpncp.output_time_slot_25
        Unsigned 16-bit integer
    tpncp.output_time_slot_250  tpncp.output_time_slot_250
        Unsigned 16-bit integer
    tpncp.output_time_slot_251  tpncp.output_time_slot_251
        Unsigned 16-bit integer
    tpncp.output_time_slot_252  tpncp.output_time_slot_252
        Unsigned 16-bit integer
    tpncp.output_time_slot_253  tpncp.output_time_slot_253
        Unsigned 16-bit integer
    tpncp.output_time_slot_254  tpncp.output_time_slot_254
        Unsigned 16-bit integer
    tpncp.output_time_slot_255  tpncp.output_time_slot_255
        Unsigned 16-bit integer
    tpncp.output_time_slot_256  tpncp.output_time_slot_256
        Unsigned 16-bit integer
    tpncp.output_time_slot_257  tpncp.output_time_slot_257
        Unsigned 16-bit integer
    tpncp.output_time_slot_258  tpncp.output_time_slot_258
        Unsigned 16-bit integer
    tpncp.output_time_slot_259  tpncp.output_time_slot_259
        Unsigned 16-bit integer
    tpncp.output_time_slot_26  tpncp.output_time_slot_26
        Unsigned 16-bit integer
    tpncp.output_time_slot_260  tpncp.output_time_slot_260
        Unsigned 16-bit integer
    tpncp.output_time_slot_261  tpncp.output_time_slot_261
        Unsigned 16-bit integer
    tpncp.output_time_slot_262  tpncp.output_time_slot_262
        Unsigned 16-bit integer
    tpncp.output_time_slot_263  tpncp.output_time_slot_263
        Unsigned 16-bit integer
    tpncp.output_time_slot_264  tpncp.output_time_slot_264
        Unsigned 16-bit integer
    tpncp.output_time_slot_265  tpncp.output_time_slot_265
        Unsigned 16-bit integer
    tpncp.output_time_slot_266  tpncp.output_time_slot_266
        Unsigned 16-bit integer
    tpncp.output_time_slot_267  tpncp.output_time_slot_267
        Unsigned 16-bit integer
    tpncp.output_time_slot_268  tpncp.output_time_slot_268
        Unsigned 16-bit integer
    tpncp.output_time_slot_269  tpncp.output_time_slot_269
        Unsigned 16-bit integer
    tpncp.output_time_slot_27  tpncp.output_time_slot_27
        Unsigned 16-bit integer
    tpncp.output_time_slot_270  tpncp.output_time_slot_270
        Unsigned 16-bit integer
    tpncp.output_time_slot_271  tpncp.output_time_slot_271
        Unsigned 16-bit integer
    tpncp.output_time_slot_272  tpncp.output_time_slot_272
        Unsigned 16-bit integer
    tpncp.output_time_slot_273  tpncp.output_time_slot_273
        Unsigned 16-bit integer
    tpncp.output_time_slot_274  tpncp.output_time_slot_274
        Unsigned 16-bit integer
    tpncp.output_time_slot_275  tpncp.output_time_slot_275
        Unsigned 16-bit integer
    tpncp.output_time_slot_276  tpncp.output_time_slot_276
        Unsigned 16-bit integer
    tpncp.output_time_slot_277  tpncp.output_time_slot_277
        Unsigned 16-bit integer
    tpncp.output_time_slot_278  tpncp.output_time_slot_278
        Unsigned 16-bit integer
    tpncp.output_time_slot_279  tpncp.output_time_slot_279
        Unsigned 16-bit integer
    tpncp.output_time_slot_28  tpncp.output_time_slot_28
        Unsigned 16-bit integer
    tpncp.output_time_slot_280  tpncp.output_time_slot_280
        Unsigned 16-bit integer
    tpncp.output_time_slot_281  tpncp.output_time_slot_281
        Unsigned 16-bit integer
    tpncp.output_time_slot_282  tpncp.output_time_slot_282
        Unsigned 16-bit integer
    tpncp.output_time_slot_283  tpncp.output_time_slot_283
        Unsigned 16-bit integer
    tpncp.output_time_slot_284  tpncp.output_time_slot_284
        Unsigned 16-bit integer
    tpncp.output_time_slot_285  tpncp.output_time_slot_285
        Unsigned 16-bit integer
    tpncp.output_time_slot_286  tpncp.output_time_slot_286
        Unsigned 16-bit integer
    tpncp.output_time_slot_287  tpncp.output_time_slot_287
        Unsigned 16-bit integer
    tpncp.output_time_slot_288  tpncp.output_time_slot_288
        Unsigned 16-bit integer
    tpncp.output_time_slot_289  tpncp.output_time_slot_289
        Unsigned 16-bit integer
    tpncp.output_time_slot_29  tpncp.output_time_slot_29
        Unsigned 16-bit integer
    tpncp.output_time_slot_290  tpncp.output_time_slot_290
        Unsigned 16-bit integer
    tpncp.output_time_slot_291  tpncp.output_time_slot_291
        Unsigned 16-bit integer
    tpncp.output_time_slot_292  tpncp.output_time_slot_292
        Unsigned 16-bit integer
    tpncp.output_time_slot_293  tpncp.output_time_slot_293
        Unsigned 16-bit integer
    tpncp.output_time_slot_294  tpncp.output_time_slot_294
        Unsigned 16-bit integer
    tpncp.output_time_slot_295  tpncp.output_time_slot_295
        Unsigned 16-bit integer
    tpncp.output_time_slot_296  tpncp.output_time_slot_296
        Unsigned 16-bit integer
    tpncp.output_time_slot_297  tpncp.output_time_slot_297
        Unsigned 16-bit integer
    tpncp.output_time_slot_298  tpncp.output_time_slot_298
        Unsigned 16-bit integer
    tpncp.output_time_slot_299  tpncp.output_time_slot_299
        Unsigned 16-bit integer
    tpncp.output_time_slot_3  tpncp.output_time_slot_3
        Unsigned 16-bit integer
    tpncp.output_time_slot_30  tpncp.output_time_slot_30
        Unsigned 16-bit integer
    tpncp.output_time_slot_300  tpncp.output_time_slot_300
        Unsigned 16-bit integer
    tpncp.output_time_slot_301  tpncp.output_time_slot_301
        Unsigned 16-bit integer
    tpncp.output_time_slot_302  tpncp.output_time_slot_302
        Unsigned 16-bit integer
    tpncp.output_time_slot_303  tpncp.output_time_slot_303
        Unsigned 16-bit integer
    tpncp.output_time_slot_304  tpncp.output_time_slot_304
        Unsigned 16-bit integer
    tpncp.output_time_slot_305  tpncp.output_time_slot_305
        Unsigned 16-bit integer
    tpncp.output_time_slot_306  tpncp.output_time_slot_306
        Unsigned 16-bit integer
    tpncp.output_time_slot_307  tpncp.output_time_slot_307
        Unsigned 16-bit integer
    tpncp.output_time_slot_308  tpncp.output_time_slot_308
        Unsigned 16-bit integer
    tpncp.output_time_slot_309  tpncp.output_time_slot_309
        Unsigned 16-bit integer
    tpncp.output_time_slot_31  tpncp.output_time_slot_31
        Unsigned 16-bit integer
    tpncp.output_time_slot_310  tpncp.output_time_slot_310
        Unsigned 16-bit integer
    tpncp.output_time_slot_311  tpncp.output_time_slot_311
        Unsigned 16-bit integer
    tpncp.output_time_slot_312  tpncp.output_time_slot_312
        Unsigned 16-bit integer
    tpncp.output_time_slot_313  tpncp.output_time_slot_313
        Unsigned 16-bit integer
    tpncp.output_time_slot_314  tpncp.output_time_slot_314
        Unsigned 16-bit integer
    tpncp.output_time_slot_315  tpncp.output_time_slot_315
        Unsigned 16-bit integer
    tpncp.output_time_slot_316  tpncp.output_time_slot_316
        Unsigned 16-bit integer
    tpncp.output_time_slot_317  tpncp.output_time_slot_317
        Unsigned 16-bit integer
    tpncp.output_time_slot_318  tpncp.output_time_slot_318
        Unsigned 16-bit integer
    tpncp.output_time_slot_319  tpncp.output_time_slot_319
        Unsigned 16-bit integer
    tpncp.output_time_slot_32  tpncp.output_time_slot_32
        Unsigned 16-bit integer
    tpncp.output_time_slot_320  tpncp.output_time_slot_320
        Unsigned 16-bit integer
    tpncp.output_time_slot_321  tpncp.output_time_slot_321
        Unsigned 16-bit integer
    tpncp.output_time_slot_322  tpncp.output_time_slot_322
        Unsigned 16-bit integer
    tpncp.output_time_slot_323  tpncp.output_time_slot_323
        Unsigned 16-bit integer
    tpncp.output_time_slot_324  tpncp.output_time_slot_324
        Unsigned 16-bit integer
    tpncp.output_time_slot_325  tpncp.output_time_slot_325
        Unsigned 16-bit integer
    tpncp.output_time_slot_326  tpncp.output_time_slot_326
        Unsigned 16-bit integer
    tpncp.output_time_slot_327  tpncp.output_time_slot_327
        Unsigned 16-bit integer
    tpncp.output_time_slot_328  tpncp.output_time_slot_328
        Unsigned 16-bit integer
    tpncp.output_time_slot_329  tpncp.output_time_slot_329
        Unsigned 16-bit integer
    tpncp.output_time_slot_33  tpncp.output_time_slot_33
        Unsigned 16-bit integer
    tpncp.output_time_slot_330  tpncp.output_time_slot_330
        Unsigned 16-bit integer
    tpncp.output_time_slot_331  tpncp.output_time_slot_331
        Unsigned 16-bit integer
    tpncp.output_time_slot_332  tpncp.output_time_slot_332
        Unsigned 16-bit integer
    tpncp.output_time_slot_333  tpncp.output_time_slot_333
        Unsigned 16-bit integer
    tpncp.output_time_slot_334  tpncp.output_time_slot_334
        Unsigned 16-bit integer
    tpncp.output_time_slot_335  tpncp.output_time_slot_335
        Unsigned 16-bit integer
    tpncp.output_time_slot_336  tpncp.output_time_slot_336
        Unsigned 16-bit integer
    tpncp.output_time_slot_337  tpncp.output_time_slot_337
        Unsigned 16-bit integer
    tpncp.output_time_slot_338  tpncp.output_time_slot_338
        Unsigned 16-bit integer
    tpncp.output_time_slot_339  tpncp.output_time_slot_339
        Unsigned 16-bit integer
    tpncp.output_time_slot_34  tpncp.output_time_slot_34
        Unsigned 16-bit integer
    tpncp.output_time_slot_340  tpncp.output_time_slot_340
        Unsigned 16-bit integer
    tpncp.output_time_slot_341  tpncp.output_time_slot_341
        Unsigned 16-bit integer
    tpncp.output_time_slot_342  tpncp.output_time_slot_342
        Unsigned 16-bit integer
    tpncp.output_time_slot_343  tpncp.output_time_slot_343
        Unsigned 16-bit integer
    tpncp.output_time_slot_344  tpncp.output_time_slot_344
        Unsigned 16-bit integer
    tpncp.output_time_slot_345  tpncp.output_time_slot_345
        Unsigned 16-bit integer
    tpncp.output_time_slot_346  tpncp.output_time_slot_346
        Unsigned 16-bit integer
    tpncp.output_time_slot_347  tpncp.output_time_slot_347
        Unsigned 16-bit integer
    tpncp.output_time_slot_348  tpncp.output_time_slot_348
        Unsigned 16-bit integer
    tpncp.output_time_slot_349  tpncp.output_time_slot_349
        Unsigned 16-bit integer
    tpncp.output_time_slot_35  tpncp.output_time_slot_35
        Unsigned 16-bit integer
    tpncp.output_time_slot_350  tpncp.output_time_slot_350
        Unsigned 16-bit integer
    tpncp.output_time_slot_351  tpncp.output_time_slot_351
        Unsigned 16-bit integer
    tpncp.output_time_slot_352  tpncp.output_time_slot_352
        Unsigned 16-bit integer
    tpncp.output_time_slot_353  tpncp.output_time_slot_353
        Unsigned 16-bit integer
    tpncp.output_time_slot_354  tpncp.output_time_slot_354
        Unsigned 16-bit integer
    tpncp.output_time_slot_355  tpncp.output_time_slot_355
        Unsigned 16-bit integer
    tpncp.output_time_slot_356  tpncp.output_time_slot_356
        Unsigned 16-bit integer
    tpncp.output_time_slot_357  tpncp.output_time_slot_357
        Unsigned 16-bit integer
    tpncp.output_time_slot_358  tpncp.output_time_slot_358
        Unsigned 16-bit integer
    tpncp.output_time_slot_359  tpncp.output_time_slot_359
        Unsigned 16-bit integer
    tpncp.output_time_slot_36  tpncp.output_time_slot_36
        Unsigned 16-bit integer
    tpncp.output_time_slot_360  tpncp.output_time_slot_360
        Unsigned 16-bit integer
    tpncp.output_time_slot_361  tpncp.output_time_slot_361
        Unsigned 16-bit integer
    tpncp.output_time_slot_362  tpncp.output_time_slot_362
        Unsigned 16-bit integer
    tpncp.output_time_slot_363  tpncp.output_time_slot_363
        Unsigned 16-bit integer
    tpncp.output_time_slot_364  tpncp.output_time_slot_364
        Unsigned 16-bit integer
    tpncp.output_time_slot_365  tpncp.output_time_slot_365
        Unsigned 16-bit integer
    tpncp.output_time_slot_366  tpncp.output_time_slot_366
        Unsigned 16-bit integer
    tpncp.output_time_slot_367  tpncp.output_time_slot_367
        Unsigned 16-bit integer
    tpncp.output_time_slot_368  tpncp.output_time_slot_368
        Unsigned 16-bit integer
    tpncp.output_time_slot_369  tpncp.output_time_slot_369
        Unsigned 16-bit integer
    tpncp.output_time_slot_37  tpncp.output_time_slot_37
        Unsigned 16-bit integer
    tpncp.output_time_slot_370  tpncp.output_time_slot_370
        Unsigned 16-bit integer
    tpncp.output_time_slot_371  tpncp.output_time_slot_371
        Unsigned 16-bit integer
    tpncp.output_time_slot_372  tpncp.output_time_slot_372
        Unsigned 16-bit integer
    tpncp.output_time_slot_373  tpncp.output_time_slot_373
        Unsigned 16-bit integer
    tpncp.output_time_slot_374  tpncp.output_time_slot_374
        Unsigned 16-bit integer
    tpncp.output_time_slot_375  tpncp.output_time_slot_375
        Unsigned 16-bit integer
    tpncp.output_time_slot_376  tpncp.output_time_slot_376
        Unsigned 16-bit integer
    tpncp.output_time_slot_377  tpncp.output_time_slot_377
        Unsigned 16-bit integer
    tpncp.output_time_slot_378  tpncp.output_time_slot_378
        Unsigned 16-bit integer
    tpncp.output_time_slot_379  tpncp.output_time_slot_379
        Unsigned 16-bit integer
    tpncp.output_time_slot_38  tpncp.output_time_slot_38
        Unsigned 16-bit integer
    tpncp.output_time_slot_380  tpncp.output_time_slot_380
        Unsigned 16-bit integer
    tpncp.output_time_slot_381  tpncp.output_time_slot_381
        Unsigned 16-bit integer
    tpncp.output_time_slot_382  tpncp.output_time_slot_382
        Unsigned 16-bit integer
    tpncp.output_time_slot_383  tpncp.output_time_slot_383
        Unsigned 16-bit integer
    tpncp.output_time_slot_384  tpncp.output_time_slot_384
        Unsigned 16-bit integer
    tpncp.output_time_slot_385  tpncp.output_time_slot_385
        Unsigned 16-bit integer
    tpncp.output_time_slot_386  tpncp.output_time_slot_386
        Unsigned 16-bit integer
    tpncp.output_time_slot_387  tpncp.output_time_slot_387
        Unsigned 16-bit integer
    tpncp.output_time_slot_388  tpncp.output_time_slot_388
        Unsigned 16-bit integer
    tpncp.output_time_slot_389  tpncp.output_time_slot_389
        Unsigned 16-bit integer
    tpncp.output_time_slot_39  tpncp.output_time_slot_39
        Unsigned 16-bit integer
    tpncp.output_time_slot_390  tpncp.output_time_slot_390
        Unsigned 16-bit integer
    tpncp.output_time_slot_391  tpncp.output_time_slot_391
        Unsigned 16-bit integer
    tpncp.output_time_slot_392  tpncp.output_time_slot_392
        Unsigned 16-bit integer
    tpncp.output_time_slot_393  tpncp.output_time_slot_393
        Unsigned 16-bit integer
    tpncp.output_time_slot_394  tpncp.output_time_slot_394
        Unsigned 16-bit integer
    tpncp.output_time_slot_395  tpncp.output_time_slot_395
        Unsigned 16-bit integer
    tpncp.output_time_slot_396  tpncp.output_time_slot_396
        Unsigned 16-bit integer
    tpncp.output_time_slot_397  tpncp.output_time_slot_397
        Unsigned 16-bit integer
    tpncp.output_time_slot_398  tpncp.output_time_slot_398
        Unsigned 16-bit integer
    tpncp.output_time_slot_399  tpncp.output_time_slot_399
        Unsigned 16-bit integer
    tpncp.output_time_slot_4  tpncp.output_time_slot_4
        Unsigned 16-bit integer
    tpncp.output_time_slot_40  tpncp.output_time_slot_40
        Unsigned 16-bit integer
    tpncp.output_time_slot_400  tpncp.output_time_slot_400
        Unsigned 16-bit integer
    tpncp.output_time_slot_401  tpncp.output_time_slot_401
        Unsigned 16-bit integer
    tpncp.output_time_slot_402  tpncp.output_time_slot_402
        Unsigned 16-bit integer
    tpncp.output_time_slot_403  tpncp.output_time_slot_403
        Unsigned 16-bit integer
    tpncp.output_time_slot_404  tpncp.output_time_slot_404
        Unsigned 16-bit integer
    tpncp.output_time_slot_405  tpncp.output_time_slot_405
        Unsigned 16-bit integer
    tpncp.output_time_slot_406  tpncp.output_time_slot_406
        Unsigned 16-bit integer
    tpncp.output_time_slot_407  tpncp.output_time_slot_407
        Unsigned 16-bit integer
    tpncp.output_time_slot_408  tpncp.output_time_slot_408
        Unsigned 16-bit integer
    tpncp.output_time_slot_409  tpncp.output_time_slot_409
        Unsigned 16-bit integer
    tpncp.output_time_slot_41  tpncp.output_time_slot_41
        Unsigned 16-bit integer
    tpncp.output_time_slot_410  tpncp.output_time_slot_410
        Unsigned 16-bit integer
    tpncp.output_time_slot_411  tpncp.output_time_slot_411
        Unsigned 16-bit integer
    tpncp.output_time_slot_412  tpncp.output_time_slot_412
        Unsigned 16-bit integer
    tpncp.output_time_slot_413  tpncp.output_time_slot_413
        Unsigned 16-bit integer
    tpncp.output_time_slot_414  tpncp.output_time_slot_414
        Unsigned 16-bit integer
    tpncp.output_time_slot_415  tpncp.output_time_slot_415
        Unsigned 16-bit integer
    tpncp.output_time_slot_416  tpncp.output_time_slot_416
        Unsigned 16-bit integer
    tpncp.output_time_slot_417  tpncp.output_time_slot_417
        Unsigned 16-bit integer
    tpncp.output_time_slot_418  tpncp.output_time_slot_418
        Unsigned 16-bit integer
    tpncp.output_time_slot_419  tpncp.output_time_slot_419
        Unsigned 16-bit integer
    tpncp.output_time_slot_42  tpncp.output_time_slot_42
        Unsigned 16-bit integer
    tpncp.output_time_slot_420  tpncp.output_time_slot_420
        Unsigned 16-bit integer
    tpncp.output_time_slot_421  tpncp.output_time_slot_421
        Unsigned 16-bit integer
    tpncp.output_time_slot_422  tpncp.output_time_slot_422
        Unsigned 16-bit integer
    tpncp.output_time_slot_423  tpncp.output_time_slot_423
        Unsigned 16-bit integer
    tpncp.output_time_slot_424  tpncp.output_time_slot_424
        Unsigned 16-bit integer
    tpncp.output_time_slot_425  tpncp.output_time_slot_425
        Unsigned 16-bit integer
    tpncp.output_time_slot_426  tpncp.output_time_slot_426
        Unsigned 16-bit integer
    tpncp.output_time_slot_427  tpncp.output_time_slot_427
        Unsigned 16-bit integer
    tpncp.output_time_slot_428  tpncp.output_time_slot_428
        Unsigned 16-bit integer
    tpncp.output_time_slot_429  tpncp.output_time_slot_429
        Unsigned 16-bit integer
    tpncp.output_time_slot_43  tpncp.output_time_slot_43
        Unsigned 16-bit integer
    tpncp.output_time_slot_430  tpncp.output_time_slot_430
        Unsigned 16-bit integer
    tpncp.output_time_slot_431  tpncp.output_time_slot_431
        Unsigned 16-bit integer
    tpncp.output_time_slot_432  tpncp.output_time_slot_432
        Unsigned 16-bit integer
    tpncp.output_time_slot_433  tpncp.output_time_slot_433
        Unsigned 16-bit integer
    tpncp.output_time_slot_434  tpncp.output_time_slot_434
        Unsigned 16-bit integer
    tpncp.output_time_slot_435  tpncp.output_time_slot_435
        Unsigned 16-bit integer
    tpncp.output_time_slot_436  tpncp.output_time_slot_436
        Unsigned 16-bit integer
    tpncp.output_time_slot_437  tpncp.output_time_slot_437
        Unsigned 16-bit integer
    tpncp.output_time_slot_438  tpncp.output_time_slot_438
        Unsigned 16-bit integer
    tpncp.output_time_slot_439  tpncp.output_time_slot_439
        Unsigned 16-bit integer
    tpncp.output_time_slot_44  tpncp.output_time_slot_44
        Unsigned 16-bit integer
    tpncp.output_time_slot_440  tpncp.output_time_slot_440
        Unsigned 16-bit integer
    tpncp.output_time_slot_441  tpncp.output_time_slot_441
        Unsigned 16-bit integer
    tpncp.output_time_slot_442  tpncp.output_time_slot_442
        Unsigned 16-bit integer
    tpncp.output_time_slot_443  tpncp.output_time_slot_443
        Unsigned 16-bit integer
    tpncp.output_time_slot_444  tpncp.output_time_slot_444
        Unsigned 16-bit integer
    tpncp.output_time_slot_445  tpncp.output_time_slot_445
        Unsigned 16-bit integer
    tpncp.output_time_slot_446  tpncp.output_time_slot_446
        Unsigned 16-bit integer
    tpncp.output_time_slot_447  tpncp.output_time_slot_447
        Unsigned 16-bit integer
    tpncp.output_time_slot_448  tpncp.output_time_slot_448
        Unsigned 16-bit integer
    tpncp.output_time_slot_449  tpncp.output_time_slot_449
        Unsigned 16-bit integer
    tpncp.output_time_slot_45  tpncp.output_time_slot_45
        Unsigned 16-bit integer
    tpncp.output_time_slot_450  tpncp.output_time_slot_450
        Unsigned 16-bit integer
    tpncp.output_time_slot_451  tpncp.output_time_slot_451
        Unsigned 16-bit integer
    tpncp.output_time_slot_452  tpncp.output_time_slot_452
        Unsigned 16-bit integer
    tpncp.output_time_slot_453  tpncp.output_time_slot_453
        Unsigned 16-bit integer
    tpncp.output_time_slot_454  tpncp.output_time_slot_454
        Unsigned 16-bit integer
    tpncp.output_time_slot_455  tpncp.output_time_slot_455
        Unsigned 16-bit integer
    tpncp.output_time_slot_456  tpncp.output_time_slot_456
        Unsigned 16-bit integer
    tpncp.output_time_slot_457  tpncp.output_time_slot_457
        Unsigned 16-bit integer
    tpncp.output_time_slot_458  tpncp.output_time_slot_458
        Unsigned 16-bit integer
    tpncp.output_time_slot_459  tpncp.output_time_slot_459
        Unsigned 16-bit integer
    tpncp.output_time_slot_46  tpncp.output_time_slot_46
        Unsigned 16-bit integer
    tpncp.output_time_slot_460  tpncp.output_time_slot_460
        Unsigned 16-bit integer
    tpncp.output_time_slot_461  tpncp.output_time_slot_461
        Unsigned 16-bit integer
    tpncp.output_time_slot_462  tpncp.output_time_slot_462
        Unsigned 16-bit integer
    tpncp.output_time_slot_463  tpncp.output_time_slot_463
        Unsigned 16-bit integer
    tpncp.output_time_slot_464  tpncp.output_time_slot_464
        Unsigned 16-bit integer
    tpncp.output_time_slot_465  tpncp.output_time_slot_465
        Unsigned 16-bit integer
    tpncp.output_time_slot_466  tpncp.output_time_slot_466
        Unsigned 16-bit integer
    tpncp.output_time_slot_467  tpncp.output_time_slot_467
        Unsigned 16-bit integer
    tpncp.output_time_slot_468  tpncp.output_time_slot_468
        Unsigned 16-bit integer
    tpncp.output_time_slot_469  tpncp.output_time_slot_469
        Unsigned 16-bit integer
    tpncp.output_time_slot_47  tpncp.output_time_slot_47
        Unsigned 16-bit integer
    tpncp.output_time_slot_470  tpncp.output_time_slot_470
        Unsigned 16-bit integer
    tpncp.output_time_slot_471  tpncp.output_time_slot_471
        Unsigned 16-bit integer
    tpncp.output_time_slot_472  tpncp.output_time_slot_472
        Unsigned 16-bit integer
    tpncp.output_time_slot_473  tpncp.output_time_slot_473
        Unsigned 16-bit integer
    tpncp.output_time_slot_474  tpncp.output_time_slot_474
        Unsigned 16-bit integer
    tpncp.output_time_slot_475  tpncp.output_time_slot_475
        Unsigned 16-bit integer
    tpncp.output_time_slot_476  tpncp.output_time_slot_476
        Unsigned 16-bit integer
    tpncp.output_time_slot_477  tpncp.output_time_slot_477
        Unsigned 16-bit integer
    tpncp.output_time_slot_478  tpncp.output_time_slot_478
        Unsigned 16-bit integer
    tpncp.output_time_slot_479  tpncp.output_time_slot_479
        Unsigned 16-bit integer
    tpncp.output_time_slot_48  tpncp.output_time_slot_48
        Unsigned 16-bit integer
    tpncp.output_time_slot_480  tpncp.output_time_slot_480
        Unsigned 16-bit integer
    tpncp.output_time_slot_481  tpncp.output_time_slot_481
        Unsigned 16-bit integer
    tpncp.output_time_slot_482  tpncp.output_time_slot_482
        Unsigned 16-bit integer
    tpncp.output_time_slot_483  tpncp.output_time_slot_483
        Unsigned 16-bit integer
    tpncp.output_time_slot_484  tpncp.output_time_slot_484
        Unsigned 16-bit integer
    tpncp.output_time_slot_485  tpncp.output_time_slot_485
        Unsigned 16-bit integer
    tpncp.output_time_slot_486  tpncp.output_time_slot_486
        Unsigned 16-bit integer
    tpncp.output_time_slot_487  tpncp.output_time_slot_487
        Unsigned 16-bit integer
    tpncp.output_time_slot_488  tpncp.output_time_slot_488
        Unsigned 16-bit integer
    tpncp.output_time_slot_489  tpncp.output_time_slot_489
        Unsigned 16-bit integer
    tpncp.output_time_slot_49  tpncp.output_time_slot_49
        Unsigned 16-bit integer
    tpncp.output_time_slot_490  tpncp.output_time_slot_490
        Unsigned 16-bit integer
    tpncp.output_time_slot_491  tpncp.output_time_slot_491
        Unsigned 16-bit integer
    tpncp.output_time_slot_492  tpncp.output_time_slot_492
        Unsigned 16-bit integer
    tpncp.output_time_slot_493  tpncp.output_time_slot_493
        Unsigned 16-bit integer
    tpncp.output_time_slot_494  tpncp.output_time_slot_494
        Unsigned 16-bit integer
    tpncp.output_time_slot_495  tpncp.output_time_slot_495
        Unsigned 16-bit integer
    tpncp.output_time_slot_496  tpncp.output_time_slot_496
        Unsigned 16-bit integer
    tpncp.output_time_slot_497  tpncp.output_time_slot_497
        Unsigned 16-bit integer
    tpncp.output_time_slot_498  tpncp.output_time_slot_498
        Unsigned 16-bit integer
    tpncp.output_time_slot_499  tpncp.output_time_slot_499
        Unsigned 16-bit integer
    tpncp.output_time_slot_5  tpncp.output_time_slot_5
        Unsigned 16-bit integer
    tpncp.output_time_slot_50  tpncp.output_time_slot_50
        Unsigned 16-bit integer
    tpncp.output_time_slot_500  tpncp.output_time_slot_500
        Unsigned 16-bit integer
    tpncp.output_time_slot_501  tpncp.output_time_slot_501
        Unsigned 16-bit integer
    tpncp.output_time_slot_502  tpncp.output_time_slot_502
        Unsigned 16-bit integer
    tpncp.output_time_slot_503  tpncp.output_time_slot_503
        Unsigned 16-bit integer
    tpncp.output_time_slot_51  tpncp.output_time_slot_51
        Unsigned 16-bit integer
    tpncp.output_time_slot_52  tpncp.output_time_slot_52
        Unsigned 16-bit integer
    tpncp.output_time_slot_53  tpncp.output_time_slot_53
        Unsigned 16-bit integer
    tpncp.output_time_slot_54  tpncp.output_time_slot_54
        Unsigned 16-bit integer
    tpncp.output_time_slot_55  tpncp.output_time_slot_55
        Unsigned 16-bit integer
    tpncp.output_time_slot_56  tpncp.output_time_slot_56
        Unsigned 16-bit integer
    tpncp.output_time_slot_57  tpncp.output_time_slot_57
        Unsigned 16-bit integer
    tpncp.output_time_slot_58  tpncp.output_time_slot_58
        Unsigned 16-bit integer
    tpncp.output_time_slot_59  tpncp.output_time_slot_59
        Unsigned 16-bit integer
    tpncp.output_time_slot_6  tpncp.output_time_slot_6
        Unsigned 16-bit integer
    tpncp.output_time_slot_60  tpncp.output_time_slot_60
        Unsigned 16-bit integer
    tpncp.output_time_slot_61  tpncp.output_time_slot_61
        Unsigned 16-bit integer
    tpncp.output_time_slot_62  tpncp.output_time_slot_62
        Unsigned 16-bit integer
    tpncp.output_time_slot_63  tpncp.output_time_slot_63
        Unsigned 16-bit integer
    tpncp.output_time_slot_64  tpncp.output_time_slot_64
        Unsigned 16-bit integer
    tpncp.output_time_slot_65  tpncp.output_time_slot_65
        Unsigned 16-bit integer
    tpncp.output_time_slot_66  tpncp.output_time_slot_66
        Unsigned 16-bit integer
    tpncp.output_time_slot_67  tpncp.output_time_slot_67
        Unsigned 16-bit integer
    tpncp.output_time_slot_68  tpncp.output_time_slot_68
        Unsigned 16-bit integer
    tpncp.output_time_slot_69  tpncp.output_time_slot_69
        Unsigned 16-bit integer
    tpncp.output_time_slot_7  tpncp.output_time_slot_7
        Unsigned 16-bit integer
    tpncp.output_time_slot_70  tpncp.output_time_slot_70
        Unsigned 16-bit integer
    tpncp.output_time_slot_71  tpncp.output_time_slot_71
        Unsigned 16-bit integer
    tpncp.output_time_slot_72  tpncp.output_time_slot_72
        Unsigned 16-bit integer
    tpncp.output_time_slot_73  tpncp.output_time_slot_73
        Unsigned 16-bit integer
    tpncp.output_time_slot_74  tpncp.output_time_slot_74
        Unsigned 16-bit integer
    tpncp.output_time_slot_75  tpncp.output_time_slot_75
        Unsigned 16-bit integer
    tpncp.output_time_slot_76  tpncp.output_time_slot_76
        Unsigned 16-bit integer
    tpncp.output_time_slot_77  tpncp.output_time_slot_77
        Unsigned 16-bit integer
    tpncp.output_time_slot_78  tpncp.output_time_slot_78
        Unsigned 16-bit integer
    tpncp.output_time_slot_79  tpncp.output_time_slot_79
        Unsigned 16-bit integer
    tpncp.output_time_slot_8  tpncp.output_time_slot_8
        Unsigned 16-bit integer
    tpncp.output_time_slot_80  tpncp.output_time_slot_80
        Unsigned 16-bit integer
    tpncp.output_time_slot_81  tpncp.output_time_slot_81
        Unsigned 16-bit integer
    tpncp.output_time_slot_82  tpncp.output_time_slot_82
        Unsigned 16-bit integer
    tpncp.output_time_slot_83  tpncp.output_time_slot_83
        Unsigned 16-bit integer
    tpncp.output_time_slot_84  tpncp.output_time_slot_84
        Unsigned 16-bit integer
    tpncp.output_time_slot_85  tpncp.output_time_slot_85
        Unsigned 16-bit integer
    tpncp.output_time_slot_86  tpncp.output_time_slot_86
        Unsigned 16-bit integer
    tpncp.output_time_slot_87  tpncp.output_time_slot_87
        Unsigned 16-bit integer
    tpncp.output_time_slot_88  tpncp.output_time_slot_88
        Unsigned 16-bit integer
    tpncp.output_time_slot_89  tpncp.output_time_slot_89
        Unsigned 16-bit integer
    tpncp.output_time_slot_9  tpncp.output_time_slot_9
        Unsigned 16-bit integer
    tpncp.output_time_slot_90  tpncp.output_time_slot_90
        Unsigned 16-bit integer
    tpncp.output_time_slot_91  tpncp.output_time_slot_91
        Unsigned 16-bit integer
    tpncp.output_time_slot_92  tpncp.output_time_slot_92
        Unsigned 16-bit integer
    tpncp.output_time_slot_93  tpncp.output_time_slot_93
        Unsigned 16-bit integer
    tpncp.output_time_slot_94  tpncp.output_time_slot_94
        Unsigned 16-bit integer
    tpncp.output_time_slot_95  tpncp.output_time_slot_95
        Unsigned 16-bit integer
    tpncp.output_time_slot_96  tpncp.output_time_slot_96
        Unsigned 16-bit integer
    tpncp.output_time_slot_97  tpncp.output_time_slot_97
        Unsigned 16-bit integer
    tpncp.output_time_slot_98  tpncp.output_time_slot_98
        Unsigned 16-bit integer
    tpncp.output_time_slot_99  tpncp.output_time_slot_99
        Unsigned 16-bit integer
    tpncp.over_run_cnt  tpncp.over_run_cnt
        Unsigned 32-bit integer
    tpncp.overlap_digits  tpncp.overlap_digits
        String
    tpncp.override_connections  tpncp.override_connections
        Signed 32-bit integer
    tpncp.overwrite  tpncp.overwrite
        Signed 32-bit integer
    tpncp.ovlp_digit_string  tpncp.ovlp_digit_string
        String
    tpncp.p_ais  tpncp.p_ais
        Signed 32-bit integer
    tpncp.p_rdi  tpncp.p_rdi
        Signed 32-bit integer
    tpncp.packet_cable_call_content_connection_id  tpncp.packet_cable_call_content_connection_id
        Signed 32-bit integer
    tpncp.packet_count  tpncp.packet_count
        Unsigned 32-bit integer
    tpncp.packet_counter  tpncp.packet_counter
        Unsigned 32-bit integer
    tpncp.packets_to_dsp_cnt  tpncp.packets_to_dsp_cnt
        Unsigned 32-bit integer
    tpncp.pad1  tpncp.pad1
        String
    tpncp.pad2  tpncp.pad2
        String
    tpncp.pad3  tpncp.pad3
        String
    tpncp.pad4  tpncp.pad4
        Unsigned 8-bit integer
    tpncp.pad5  tpncp.pad5
        String
    tpncp.pad6  tpncp.pad6
        Unsigned 8-bit integer
    tpncp.pad7  tpncp.pad7
        String
    tpncp.pad_key  tpncp.pad_key
        String
    tpncp.padding  tpncp.padding
        String
    tpncp.param1  tpncp.param1
        Signed 32-bit integer
    tpncp.param2  tpncp.param2
        Signed 32-bit integer
    tpncp.param3  tpncp.param3
        Signed 32-bit integer
    tpncp.param4  tpncp.param4
        Signed 32-bit integer
    tpncp.parameter_id  tpncp.parameter_id
        Signed 16-bit integer
    tpncp.partial_response  tpncp.partial_response
        Unsigned 8-bit integer
    tpncp.participant_handle  tpncp.participant_handle
        Signed 32-bit integer
    tpncp.participant_id  tpncp.participant_id
        Signed 32-bit integer
    tpncp.participant_source  tpncp.participant_source
        Signed 32-bit integer
    tpncp.participant_source_0  tpncp.participant_source_0
        Signed 32-bit integer
    tpncp.participant_source_1  tpncp.participant_source_1
        Signed 32-bit integer
    tpncp.participant_source_2  tpncp.participant_source_2
        Signed 32-bit integer
    tpncp.participant_type  tpncp.participant_type
        Signed 32-bit integer
    tpncp.participants_handle_list_0  tpncp.participants_handle_list_0
        Signed 32-bit integer
    tpncp.participants_handle_list_1  tpncp.participants_handle_list_1
        Signed 32-bit integer
    tpncp.participants_handle_list_10  tpncp.participants_handle_list_10
        Signed 32-bit integer
    tpncp.participants_handle_list_100  tpncp.participants_handle_list_100
        Signed 32-bit integer
    tpncp.participants_handle_list_101  tpncp.participants_handle_list_101
        Signed 32-bit integer
    tpncp.participants_handle_list_102  tpncp.participants_handle_list_102
        Signed 32-bit integer
    tpncp.participants_handle_list_103  tpncp.participants_handle_list_103
        Signed 32-bit integer
    tpncp.participants_handle_list_104  tpncp.participants_handle_list_104
        Signed 32-bit integer
    tpncp.participants_handle_list_105  tpncp.participants_handle_list_105
        Signed 32-bit integer
    tpncp.participants_handle_list_106  tpncp.participants_handle_list_106
        Signed 32-bit integer
    tpncp.participants_handle_list_107  tpncp.participants_handle_list_107
        Signed 32-bit integer
    tpncp.participants_handle_list_108  tpncp.participants_handle_list_108
        Signed 32-bit integer
    tpncp.participants_handle_list_109  tpncp.participants_handle_list_109
        Signed 32-bit integer
    tpncp.participants_handle_list_11  tpncp.participants_handle_list_11
        Signed 32-bit integer
    tpncp.participants_handle_list_110  tpncp.participants_handle_list_110
        Signed 32-bit integer
    tpncp.participants_handle_list_111  tpncp.participants_handle_list_111
        Signed 32-bit integer
    tpncp.participants_handle_list_112  tpncp.participants_handle_list_112
        Signed 32-bit integer
    tpncp.participants_handle_list_113  tpncp.participants_handle_list_113
        Signed 32-bit integer
    tpncp.participants_handle_list_114  tpncp.participants_handle_list_114
        Signed 32-bit integer
    tpncp.participants_handle_list_115  tpncp.participants_handle_list_115
        Signed 32-bit integer
    tpncp.participants_handle_list_116  tpncp.participants_handle_list_116
        Signed 32-bit integer
    tpncp.participants_handle_list_117  tpncp.participants_handle_list_117
        Signed 32-bit integer
    tpncp.participants_handle_list_118  tpncp.participants_handle_list_118
        Signed 32-bit integer
    tpncp.participants_handle_list_119  tpncp.participants_handle_list_119
        Signed 32-bit integer
    tpncp.participants_handle_list_12  tpncp.participants_handle_list_12
        Signed 32-bit integer
    tpncp.participants_handle_list_120  tpncp.participants_handle_list_120
        Signed 32-bit integer
    tpncp.participants_handle_list_121  tpncp.participants_handle_list_121
        Signed 32-bit integer
    tpncp.participants_handle_list_122  tpncp.participants_handle_list_122
        Signed 32-bit integer
    tpncp.participants_handle_list_123  tpncp.participants_handle_list_123
        Signed 32-bit integer
    tpncp.participants_handle_list_124  tpncp.participants_handle_list_124
        Signed 32-bit integer
    tpncp.participants_handle_list_125  tpncp.participants_handle_list_125
        Signed 32-bit integer
    tpncp.participants_handle_list_126  tpncp.participants_handle_list_126
        Signed 32-bit integer
    tpncp.participants_handle_list_127  tpncp.participants_handle_list_127
        Signed 32-bit integer
    tpncp.participants_handle_list_128  tpncp.participants_handle_list_128
        Signed 32-bit integer
    tpncp.participants_handle_list_129  tpncp.participants_handle_list_129
        Signed 32-bit integer
    tpncp.participants_handle_list_13  tpncp.participants_handle_list_13
        Signed 32-bit integer
    tpncp.participants_handle_list_130  tpncp.participants_handle_list_130
        Signed 32-bit integer
    tpncp.participants_handle_list_131  tpncp.participants_handle_list_131
        Signed 32-bit integer
    tpncp.participants_handle_list_132  tpncp.participants_handle_list_132
        Signed 32-bit integer
    tpncp.participants_handle_list_133  tpncp.participants_handle_list_133
        Signed 32-bit integer
    tpncp.participants_handle_list_134  tpncp.participants_handle_list_134
        Signed 32-bit integer
    tpncp.participants_handle_list_135  tpncp.participants_handle_list_135
        Signed 32-bit integer
    tpncp.participants_handle_list_136  tpncp.participants_handle_list_136
        Signed 32-bit integer
    tpncp.participants_handle_list_137  tpncp.participants_handle_list_137
        Signed 32-bit integer
    tpncp.participants_handle_list_138  tpncp.participants_handle_list_138
        Signed 32-bit integer
    tpncp.participants_handle_list_139  tpncp.participants_handle_list_139
        Signed 32-bit integer
    tpncp.participants_handle_list_14  tpncp.participants_handle_list_14
        Signed 32-bit integer
    tpncp.participants_handle_list_140  tpncp.participants_handle_list_140
        Signed 32-bit integer
    tpncp.participants_handle_list_141  tpncp.participants_handle_list_141
        Signed 32-bit integer
    tpncp.participants_handle_list_142  tpncp.participants_handle_list_142
        Signed 32-bit integer
    tpncp.participants_handle_list_143  tpncp.participants_handle_list_143
        Signed 32-bit integer
    tpncp.participants_handle_list_144  tpncp.participants_handle_list_144
        Signed 32-bit integer
    tpncp.participants_handle_list_145  tpncp.participants_handle_list_145
        Signed 32-bit integer
    tpncp.participants_handle_list_146  tpncp.participants_handle_list_146
        Signed 32-bit integer
    tpncp.participants_handle_list_147  tpncp.participants_handle_list_147
        Signed 32-bit integer
    tpncp.participants_handle_list_148  tpncp.participants_handle_list_148
        Signed 32-bit integer
    tpncp.participants_handle_list_149  tpncp.participants_handle_list_149
        Signed 32-bit integer
    tpncp.participants_handle_list_15  tpncp.participants_handle_list_15
        Signed 32-bit integer
    tpncp.participants_handle_list_150  tpncp.participants_handle_list_150
        Signed 32-bit integer
    tpncp.participants_handle_list_151  tpncp.participants_handle_list_151
        Signed 32-bit integer
    tpncp.participants_handle_list_152  tpncp.participants_handle_list_152
        Signed 32-bit integer
    tpncp.participants_handle_list_153  tpncp.participants_handle_list_153
        Signed 32-bit integer
    tpncp.participants_handle_list_154  tpncp.participants_handle_list_154
        Signed 32-bit integer
    tpncp.participants_handle_list_155  tpncp.participants_handle_list_155
        Signed 32-bit integer
    tpncp.participants_handle_list_156  tpncp.participants_handle_list_156
        Signed 32-bit integer
    tpncp.participants_handle_list_157  tpncp.participants_handle_list_157
        Signed 32-bit integer
    tpncp.participants_handle_list_158  tpncp.participants_handle_list_158
        Signed 32-bit integer
    tpncp.participants_handle_list_159  tpncp.participants_handle_list_159
        Signed 32-bit integer
    tpncp.participants_handle_list_16  tpncp.participants_handle_list_16
        Signed 32-bit integer
    tpncp.participants_handle_list_160  tpncp.participants_handle_list_160
        Signed 32-bit integer
    tpncp.participants_handle_list_161  tpncp.participants_handle_list_161
        Signed 32-bit integer
    tpncp.participants_handle_list_162  tpncp.participants_handle_list_162
        Signed 32-bit integer
    tpncp.participants_handle_list_163  tpncp.participants_handle_list_163
        Signed 32-bit integer
    tpncp.participants_handle_list_164  tpncp.participants_handle_list_164
        Signed 32-bit integer
    tpncp.participants_handle_list_165  tpncp.participants_handle_list_165
        Signed 32-bit integer
    tpncp.participants_handle_list_166  tpncp.participants_handle_list_166
        Signed 32-bit integer
    tpncp.participants_handle_list_167  tpncp.participants_handle_list_167
        Signed 32-bit integer
    tpncp.participants_handle_list_168  tpncp.participants_handle_list_168
        Signed 32-bit integer
    tpncp.participants_handle_list_169  tpncp.participants_handle_list_169
        Signed 32-bit integer
    tpncp.participants_handle_list_17  tpncp.participants_handle_list_17
        Signed 32-bit integer
    tpncp.participants_handle_list_170  tpncp.participants_handle_list_170
        Signed 32-bit integer
    tpncp.participants_handle_list_171  tpncp.participants_handle_list_171
        Signed 32-bit integer
    tpncp.participants_handle_list_172  tpncp.participants_handle_list_172
        Signed 32-bit integer
    tpncp.participants_handle_list_173  tpncp.participants_handle_list_173
        Signed 32-bit integer
    tpncp.participants_handle_list_174  tpncp.participants_handle_list_174
        Signed 32-bit integer
    tpncp.participants_handle_list_175  tpncp.participants_handle_list_175
        Signed 32-bit integer
    tpncp.participants_handle_list_176  tpncp.participants_handle_list_176
        Signed 32-bit integer
    tpncp.participants_handle_list_177  tpncp.participants_handle_list_177
        Signed 32-bit integer
    tpncp.participants_handle_list_178  tpncp.participants_handle_list_178
        Signed 32-bit integer
    tpncp.participants_handle_list_179  tpncp.participants_handle_list_179
        Signed 32-bit integer
    tpncp.participants_handle_list_18  tpncp.participants_handle_list_18
        Signed 32-bit integer
    tpncp.participants_handle_list_180  tpncp.participants_handle_list_180
        Signed 32-bit integer
    tpncp.participants_handle_list_181  tpncp.participants_handle_list_181
        Signed 32-bit integer
    tpncp.participants_handle_list_182  tpncp.participants_handle_list_182
        Signed 32-bit integer
    tpncp.participants_handle_list_183  tpncp.participants_handle_list_183
        Signed 32-bit integer
    tpncp.participants_handle_list_184  tpncp.participants_handle_list_184
        Signed 32-bit integer
    tpncp.participants_handle_list_185  tpncp.participants_handle_list_185
        Signed 32-bit integer
    tpncp.participants_handle_list_186  tpncp.participants_handle_list_186
        Signed 32-bit integer
    tpncp.participants_handle_list_187  tpncp.participants_handle_list_187
        Signed 32-bit integer
    tpncp.participants_handle_list_188  tpncp.participants_handle_list_188
        Signed 32-bit integer
    tpncp.participants_handle_list_189  tpncp.participants_handle_list_189
        Signed 32-bit integer
    tpncp.participants_handle_list_19  tpncp.participants_handle_list_19
        Signed 32-bit integer
    tpncp.participants_handle_list_190  tpncp.participants_handle_list_190
        Signed 32-bit integer
    tpncp.participants_handle_list_191  tpncp.participants_handle_list_191
        Signed 32-bit integer
    tpncp.participants_handle_list_192  tpncp.participants_handle_list_192
        Signed 32-bit integer
    tpncp.participants_handle_list_193  tpncp.participants_handle_list_193
        Signed 32-bit integer
    tpncp.participants_handle_list_194  tpncp.participants_handle_list_194
        Signed 32-bit integer
    tpncp.participants_handle_list_195  tpncp.participants_handle_list_195
        Signed 32-bit integer
    tpncp.participants_handle_list_196  tpncp.participants_handle_list_196
        Signed 32-bit integer
    tpncp.participants_handle_list_197  tpncp.participants_handle_list_197
        Signed 32-bit integer
    tpncp.participants_handle_list_198  tpncp.participants_handle_list_198
        Signed 32-bit integer
    tpncp.participants_handle_list_199  tpncp.participants_handle_list_199
        Signed 32-bit integer
    tpncp.participants_handle_list_2  tpncp.participants_handle_list_2
        Signed 32-bit integer
    tpncp.participants_handle_list_20  tpncp.participants_handle_list_20
        Signed 32-bit integer
    tpncp.participants_handle_list_200  tpncp.participants_handle_list_200
        Signed 32-bit integer
    tpncp.participants_handle_list_201  tpncp.participants_handle_list_201
        Signed 32-bit integer
    tpncp.participants_handle_list_202  tpncp.participants_handle_list_202
        Signed 32-bit integer
    tpncp.participants_handle_list_203  tpncp.participants_handle_list_203
        Signed 32-bit integer
    tpncp.participants_handle_list_204  tpncp.participants_handle_list_204
        Signed 32-bit integer
    tpncp.participants_handle_list_205  tpncp.participants_handle_list_205
        Signed 32-bit integer
    tpncp.participants_handle_list_206  tpncp.participants_handle_list_206
        Signed 32-bit integer
    tpncp.participants_handle_list_207  tpncp.participants_handle_list_207
        Signed 32-bit integer
    tpncp.participants_handle_list_208  tpncp.participants_handle_list_208
        Signed 32-bit integer
    tpncp.participants_handle_list_209  tpncp.participants_handle_list_209
        Signed 32-bit integer
    tpncp.participants_handle_list_21  tpncp.participants_handle_list_21
        Signed 32-bit integer
    tpncp.participants_handle_list_210  tpncp.participants_handle_list_210
        Signed 32-bit integer
    tpncp.participants_handle_list_211  tpncp.participants_handle_list_211
        Signed 32-bit integer
    tpncp.participants_handle_list_212  tpncp.participants_handle_list_212
        Signed 32-bit integer
    tpncp.participants_handle_list_213  tpncp.participants_handle_list_213
        Signed 32-bit integer
    tpncp.participants_handle_list_214  tpncp.participants_handle_list_214
        Signed 32-bit integer
    tpncp.participants_handle_list_215  tpncp.participants_handle_list_215
        Signed 32-bit integer
    tpncp.participants_handle_list_216  tpncp.participants_handle_list_216
        Signed 32-bit integer
    tpncp.participants_handle_list_217  tpncp.participants_handle_list_217
        Signed 32-bit integer
    tpncp.participants_handle_list_218  tpncp.participants_handle_list_218
        Signed 32-bit integer
    tpncp.participants_handle_list_219  tpncp.participants_handle_list_219
        Signed 32-bit integer
    tpncp.participants_handle_list_22  tpncp.participants_handle_list_22
        Signed 32-bit integer
    tpncp.participants_handle_list_220  tpncp.participants_handle_list_220
        Signed 32-bit integer
    tpncp.participants_handle_list_221  tpncp.participants_handle_list_221
        Signed 32-bit integer
    tpncp.participants_handle_list_222  tpncp.participants_handle_list_222
        Signed 32-bit integer
    tpncp.participants_handle_list_223  tpncp.participants_handle_list_223
        Signed 32-bit integer
    tpncp.participants_handle_list_224  tpncp.participants_handle_list_224
        Signed 32-bit integer
    tpncp.participants_handle_list_225  tpncp.participants_handle_list_225
        Signed 32-bit integer
    tpncp.participants_handle_list_226  tpncp.participants_handle_list_226
        Signed 32-bit integer
    tpncp.participants_handle_list_227  tpncp.participants_handle_list_227
        Signed 32-bit integer
    tpncp.participants_handle_list_228  tpncp.participants_handle_list_228
        Signed 32-bit integer
    tpncp.participants_handle_list_229  tpncp.participants_handle_list_229
        Signed 32-bit integer
    tpncp.participants_handle_list_23  tpncp.participants_handle_list_23
        Signed 32-bit integer
    tpncp.participants_handle_list_230  tpncp.participants_handle_list_230
        Signed 32-bit integer
    tpncp.participants_handle_list_231  tpncp.participants_handle_list_231
        Signed 32-bit integer
    tpncp.participants_handle_list_232  tpncp.participants_handle_list_232
        Signed 32-bit integer
    tpncp.participants_handle_list_233  tpncp.participants_handle_list_233
        Signed 32-bit integer
    tpncp.participants_handle_list_234  tpncp.participants_handle_list_234
        Signed 32-bit integer
    tpncp.participants_handle_list_235  tpncp.participants_handle_list_235
        Signed 32-bit integer
    tpncp.participants_handle_list_236  tpncp.participants_handle_list_236
        Signed 32-bit integer
    tpncp.participants_handle_list_237  tpncp.participants_handle_list_237
        Signed 32-bit integer
    tpncp.participants_handle_list_238  tpncp.participants_handle_list_238
        Signed 32-bit integer
    tpncp.participants_handle_list_239  tpncp.participants_handle_list_239
        Signed 32-bit integer
    tpncp.participants_handle_list_24  tpncp.participants_handle_list_24
        Signed 32-bit integer
    tpncp.participants_handle_list_240  tpncp.participants_handle_list_240
        Signed 32-bit integer
    tpncp.participants_handle_list_241  tpncp.participants_handle_list_241
        Signed 32-bit integer
    tpncp.participants_handle_list_242  tpncp.participants_handle_list_242
        Signed 32-bit integer
    tpncp.participants_handle_list_243  tpncp.participants_handle_list_243
        Signed 32-bit integer
    tpncp.participants_handle_list_244  tpncp.participants_handle_list_244
        Signed 32-bit integer
    tpncp.participants_handle_list_245  tpncp.participants_handle_list_245
        Signed 32-bit integer
    tpncp.participants_handle_list_246  tpncp.participants_handle_list_246
        Signed 32-bit integer
    tpncp.participants_handle_list_247  tpncp.participants_handle_list_247
        Signed 32-bit integer
    tpncp.participants_handle_list_248  tpncp.participants_handle_list_248
        Signed 32-bit integer
    tpncp.participants_handle_list_249  tpncp.participants_handle_list_249
        Signed 32-bit integer
    tpncp.participants_handle_list_25  tpncp.participants_handle_list_25
        Signed 32-bit integer
    tpncp.participants_handle_list_250  tpncp.participants_handle_list_250
        Signed 32-bit integer
    tpncp.participants_handle_list_251  tpncp.participants_handle_list_251
        Signed 32-bit integer
    tpncp.participants_handle_list_252  tpncp.participants_handle_list_252
        Signed 32-bit integer
    tpncp.participants_handle_list_253  tpncp.participants_handle_list_253
        Signed 32-bit integer
    tpncp.participants_handle_list_254  tpncp.participants_handle_list_254
        Signed 32-bit integer
    tpncp.participants_handle_list_255  tpncp.participants_handle_list_255
        Signed 32-bit integer
    tpncp.participants_handle_list_26  tpncp.participants_handle_list_26
        Signed 32-bit integer
    tpncp.participants_handle_list_27  tpncp.participants_handle_list_27
        Signed 32-bit integer
    tpncp.participants_handle_list_28  tpncp.participants_handle_list_28
        Signed 32-bit integer
    tpncp.participants_handle_list_29  tpncp.participants_handle_list_29
        Signed 32-bit integer
    tpncp.participants_handle_list_3  tpncp.participants_handle_list_3
        Signed 32-bit integer
    tpncp.participants_handle_list_30  tpncp.participants_handle_list_30
        Signed 32-bit integer
    tpncp.participants_handle_list_31  tpncp.participants_handle_list_31
        Signed 32-bit integer
    tpncp.participants_handle_list_32  tpncp.participants_handle_list_32
        Signed 32-bit integer
    tpncp.participants_handle_list_33  tpncp.participants_handle_list_33
        Signed 32-bit integer
    tpncp.participants_handle_list_34  tpncp.participants_handle_list_34
        Signed 32-bit integer
    tpncp.participants_handle_list_35  tpncp.participants_handle_list_35
        Signed 32-bit integer
    tpncp.participants_handle_list_36  tpncp.participants_handle_list_36
        Signed 32-bit integer
    tpncp.participants_handle_list_37  tpncp.participants_handle_list_37
        Signed 32-bit integer
    tpncp.participants_handle_list_38  tpncp.participants_handle_list_38
        Signed 32-bit integer
    tpncp.participants_handle_list_39  tpncp.participants_handle_list_39
        Signed 32-bit integer
    tpncp.participants_handle_list_4  tpncp.participants_handle_list_4
        Signed 32-bit integer
    tpncp.participants_handle_list_40  tpncp.participants_handle_list_40
        Signed 32-bit integer
    tpncp.participants_handle_list_41  tpncp.participants_handle_list_41
        Signed 32-bit integer
    tpncp.participants_handle_list_42  tpncp.participants_handle_list_42
        Signed 32-bit integer
    tpncp.participants_handle_list_43  tpncp.participants_handle_list_43
        Signed 32-bit integer
    tpncp.participants_handle_list_44  tpncp.participants_handle_list_44
        Signed 32-bit integer
    tpncp.participants_handle_list_45  tpncp.participants_handle_list_45
        Signed 32-bit integer
    tpncp.participants_handle_list_46  tpncp.participants_handle_list_46
        Signed 32-bit integer
    tpncp.participants_handle_list_47  tpncp.participants_handle_list_47
        Signed 32-bit integer
    tpncp.participants_handle_list_48  tpncp.participants_handle_list_48
        Signed 32-bit integer
    tpncp.participants_handle_list_49  tpncp.participants_handle_list_49
        Signed 32-bit integer
    tpncp.participants_handle_list_5  tpncp.participants_handle_list_5
        Signed 32-bit integer
    tpncp.participants_handle_list_50  tpncp.participants_handle_list_50
        Signed 32-bit integer
    tpncp.participants_handle_list_51  tpncp.participants_handle_list_51
        Signed 32-bit integer
    tpncp.participants_handle_list_52  tpncp.participants_handle_list_52
        Signed 32-bit integer
    tpncp.participants_handle_list_53  tpncp.participants_handle_list_53
        Signed 32-bit integer
    tpncp.participants_handle_list_54  tpncp.participants_handle_list_54
        Signed 32-bit integer
    tpncp.participants_handle_list_55  tpncp.participants_handle_list_55
        Signed 32-bit integer
    tpncp.participants_handle_list_56  tpncp.participants_handle_list_56
        Signed 32-bit integer
    tpncp.participants_handle_list_57  tpncp.participants_handle_list_57
        Signed 32-bit integer
    tpncp.participants_handle_list_58  tpncp.participants_handle_list_58
        Signed 32-bit integer
    tpncp.participants_handle_list_59  tpncp.participants_handle_list_59
        Signed 32-bit integer
    tpncp.participants_handle_list_6  tpncp.participants_handle_list_6
        Signed 32-bit integer
    tpncp.participants_handle_list_60  tpncp.participants_handle_list_60
        Signed 32-bit integer
    tpncp.participants_handle_list_61  tpncp.participants_handle_list_61
        Signed 32-bit integer
    tpncp.participants_handle_list_62  tpncp.participants_handle_list_62
        Signed 32-bit integer
    tpncp.participants_handle_list_63  tpncp.participants_handle_list_63
        Signed 32-bit integer
    tpncp.participants_handle_list_64  tpncp.participants_handle_list_64
        Signed 32-bit integer
    tpncp.participants_handle_list_65  tpncp.participants_handle_list_65
        Signed 32-bit integer
    tpncp.participants_handle_list_66  tpncp.participants_handle_list_66
        Signed 32-bit integer
    tpncp.participants_handle_list_67  tpncp.participants_handle_list_67
        Signed 32-bit integer
    tpncp.participants_handle_list_68  tpncp.participants_handle_list_68
        Signed 32-bit integer
    tpncp.participants_handle_list_69  tpncp.participants_handle_list_69
        Signed 32-bit integer
    tpncp.participants_handle_list_7  tpncp.participants_handle_list_7
        Signed 32-bit integer
    tpncp.participants_handle_list_70  tpncp.participants_handle_list_70
        Signed 32-bit integer
    tpncp.participants_handle_list_71  tpncp.participants_handle_list_71
        Signed 32-bit integer
    tpncp.participants_handle_list_72  tpncp.participants_handle_list_72
        Signed 32-bit integer
    tpncp.participants_handle_list_73  tpncp.participants_handle_list_73
        Signed 32-bit integer
    tpncp.participants_handle_list_74  tpncp.participants_handle_list_74
        Signed 32-bit integer
    tpncp.participants_handle_list_75  tpncp.participants_handle_list_75
        Signed 32-bit integer
    tpncp.participants_handle_list_76  tpncp.participants_handle_list_76
        Signed 32-bit integer
    tpncp.participants_handle_list_77  tpncp.participants_handle_list_77
        Signed 32-bit integer
    tpncp.participants_handle_list_78  tpncp.participants_handle_list_78
        Signed 32-bit integer
    tpncp.participants_handle_list_79  tpncp.participants_handle_list_79
        Signed 32-bit integer
    tpncp.participants_handle_list_8  tpncp.participants_handle_list_8
        Signed 32-bit integer
    tpncp.participants_handle_list_80  tpncp.participants_handle_list_80
        Signed 32-bit integer
    tpncp.participants_handle_list_81  tpncp.participants_handle_list_81
        Signed 32-bit integer
    tpncp.participants_handle_list_82  tpncp.participants_handle_list_82
        Signed 32-bit integer
    tpncp.participants_handle_list_83  tpncp.participants_handle_list_83
        Signed 32-bit integer
    tpncp.participants_handle_list_84  tpncp.participants_handle_list_84
        Signed 32-bit integer
    tpncp.participants_handle_list_85  tpncp.participants_handle_list_85
        Signed 32-bit integer
    tpncp.participants_handle_list_86  tpncp.participants_handle_list_86
        Signed 32-bit integer
    tpncp.participants_handle_list_87  tpncp.participants_handle_list_87
        Signed 32-bit integer
    tpncp.participants_handle_list_88  tpncp.participants_handle_list_88
        Signed 32-bit integer
    tpncp.participants_handle_list_89  tpncp.participants_handle_list_89
        Signed 32-bit integer
    tpncp.participants_handle_list_9  tpncp.participants_handle_list_9
        Signed 32-bit integer
    tpncp.participants_handle_list_90  tpncp.participants_handle_list_90
        Signed 32-bit integer
    tpncp.participants_handle_list_91  tpncp.participants_handle_list_91
        Signed 32-bit integer
    tpncp.participants_handle_list_92  tpncp.participants_handle_list_92
        Signed 32-bit integer
    tpncp.participants_handle_list_93  tpncp.participants_handle_list_93
        Signed 32-bit integer
    tpncp.participants_handle_list_94  tpncp.participants_handle_list_94
        Signed 32-bit integer
    tpncp.participants_handle_list_95  tpncp.participants_handle_list_95
        Signed 32-bit integer
    tpncp.participants_handle_list_96  tpncp.participants_handle_list_96
        Signed 32-bit integer
    tpncp.participants_handle_list_97  tpncp.participants_handle_list_97
        Signed 32-bit integer
    tpncp.participants_handle_list_98  tpncp.participants_handle_list_98
        Signed 32-bit integer
    tpncp.participants_handle_list_99  tpncp.participants_handle_list_99
        Signed 32-bit integer
    tpncp.party_number_number_0  tpncp.party_number_number_0
        String
    tpncp.party_number_number_1  tpncp.party_number_number_1
        String
    tpncp.party_number_number_2  tpncp.party_number_number_2
        String
    tpncp.party_number_number_3  tpncp.party_number_number_3
        String
    tpncp.party_number_number_4  tpncp.party_number_number_4
        String
    tpncp.party_number_number_5  tpncp.party_number_number_5
        String
    tpncp.party_number_number_6  tpncp.party_number_number_6
        String
    tpncp.party_number_number_7  tpncp.party_number_number_7
        String
    tpncp.party_number_number_8  tpncp.party_number_number_8
        String
    tpncp.party_number_number_9  tpncp.party_number_number_9
        String
    tpncp.party_number_party_number_type_0  tpncp.party_number_party_number_type_0
        Signed 32-bit integer
    tpncp.party_number_party_number_type_1  tpncp.party_number_party_number_type_1
        Signed 32-bit integer
    tpncp.party_number_party_number_type_2  tpncp.party_number_party_number_type_2
        Signed 32-bit integer
    tpncp.party_number_party_number_type_3  tpncp.party_number_party_number_type_3
        Signed 32-bit integer
    tpncp.party_number_party_number_type_4  tpncp.party_number_party_number_type_4
        Signed 32-bit integer
    tpncp.party_number_party_number_type_5  tpncp.party_number_party_number_type_5
        Signed 32-bit integer
    tpncp.party_number_party_number_type_6  tpncp.party_number_party_number_type_6
        Signed 32-bit integer
    tpncp.party_number_party_number_type_7  tpncp.party_number_party_number_type_7
        Signed 32-bit integer
    tpncp.party_number_party_number_type_8  tpncp.party_number_party_number_type_8
        Signed 32-bit integer
    tpncp.party_number_party_number_type_9  tpncp.party_number_party_number_type_9
        Signed 32-bit integer
    tpncp.party_number_type_0  tpncp.party_number_type_0
        Signed 32-bit integer
    tpncp.party_number_type_1  tpncp.party_number_type_1
        Signed 32-bit integer
    tpncp.party_number_type_2  tpncp.party_number_type_2
        Signed 32-bit integer
    tpncp.party_number_type_3  tpncp.party_number_type_3
        Signed 32-bit integer
    tpncp.party_number_type_4  tpncp.party_number_type_4
        Signed 32-bit integer
    tpncp.party_number_type_5  tpncp.party_number_type_5
        Signed 32-bit integer
    tpncp.party_number_type_6  tpncp.party_number_type_6
        Signed 32-bit integer
    tpncp.party_number_type_7  tpncp.party_number_type_7
        Signed 32-bit integer
    tpncp.party_number_type_8  tpncp.party_number_type_8
        Signed 32-bit integer
    tpncp.party_number_type_9  tpncp.party_number_type_9
        Signed 32-bit integer
    tpncp.party_number_type_of_number_0  tpncp.party_number_type_of_number_0
        Signed 32-bit integer
    tpncp.party_number_type_of_number_1  tpncp.party_number_type_of_number_1
        Signed 32-bit integer
    tpncp.party_number_type_of_number_2  tpncp.party_number_type_of_number_2
        Signed 32-bit integer
    tpncp.party_number_type_of_number_3  tpncp.party_number_type_of_number_3
        Signed 32-bit integer
    tpncp.party_number_type_of_number_4  tpncp.party_number_type_of_number_4
        Signed 32-bit integer
    tpncp.party_number_type_of_number_5  tpncp.party_number_type_of_number_5
        Signed 32-bit integer
    tpncp.party_number_type_of_number_6  tpncp.party_number_type_of_number_6
        Signed 32-bit integer
    tpncp.party_number_type_of_number_7  tpncp.party_number_type_of_number_7
        Signed 32-bit integer
    tpncp.party_number_type_of_number_8  tpncp.party_number_type_of_number_8
        Signed 32-bit integer
    tpncp.party_number_type_of_number_9  tpncp.party_number_type_of_number_9
        Signed 32-bit integer
    tpncp.path_coding_violation  tpncp.path_coding_violation
        Signed 32-bit integer
    tpncp.path_failed  tpncp.path_failed
        Signed 32-bit integer
    tpncp.pattern  tpncp.pattern
        Unsigned 32-bit integer
    tpncp.pattern_detector_cmd  tpncp.pattern_detector_cmd
        Signed 32-bit integer
    tpncp.pattern_expected  tpncp.pattern_expected
        Unsigned 8-bit integer
    tpncp.pattern_index  tpncp.pattern_index
        Signed 32-bit integer
    tpncp.pattern_received  tpncp.pattern_received
        Unsigned 8-bit integer
    tpncp.patterns  tpncp.patterns
        String
    tpncp.payload  tpncp.payload
        String
    tpncp.payload_length  tpncp.payload_length
        Unsigned 16-bit integer
    tpncp.payload_type_0  tpncp.payload_type_0
        Signed 32-bit integer
    tpncp.payload_type_1  tpncp.payload_type_1
        Signed 32-bit integer
    tpncp.payload_type_2  tpncp.payload_type_2
        Signed 32-bit integer
    tpncp.payload_type_3  tpncp.payload_type_3
        Signed 32-bit integer
    tpncp.payload_type_4  tpncp.payload_type_4
        Signed 32-bit integer
    tpncp.pcm_coder_type  tpncp.pcm_coder_type
        Unsigned 8-bit integer
    tpncp.pcm_switch_bit_return_code  tpncp.pcm_switch_bit_return_code
        Signed 32-bit integer
    tpncp.pcm_sync_fail_number  tpncp.pcm_sync_fail_number
        Signed 32-bit integer
    tpncp.pcr  tpncp.pcr
        Signed 32-bit integer
    tpncp.peer_info_ip_dst_addr  tpncp.peer_info_ip_dst_addr
        Unsigned 32-bit integer
    tpncp.peer_info_udp_dst_port  tpncp.peer_info_udp_dst_port
        Unsigned 16-bit integer
    tpncp.performance_monitoring_element  tpncp.performance_monitoring_element
        Signed 32-bit integer
    tpncp.performance_monitoring_enable  tpncp.performance_monitoring_enable
        Signed 32-bit integer
    tpncp.performance_monitoring_interval  tpncp.performance_monitoring_interval
        Signed 32-bit integer
    tpncp.performance_monitoring_state  tpncp.performance_monitoring_state
        Signed 32-bit integer
    tpncp.pfe  tpncp.pfe
        Signed 32-bit integer
    tpncp.phy_test_bit_return_code  tpncp.phy_test_bit_return_code
        Signed 32-bit integer
    tpncp.phys_channel  tpncp.phys_channel
        Signed 32-bit integer
    tpncp.phys_core_num  tpncp.phys_core_num
        Signed 32-bit integer
    tpncp.physical_link_status  tpncp.physical_link_status
        Signed 32-bit integer
    tpncp.physical_link_type  tpncp.physical_link_type
        Signed 32-bit integer
    tpncp.plan  tpncp.plan
        Signed 32-bit integer
    tpncp.play_bytes_processed  tpncp.play_bytes_processed
        Unsigned 32-bit integer
    tpncp.play_coder  tpncp.play_coder
        Signed 32-bit integer
    tpncp.play_timing  tpncp.play_timing
        Unsigned 8-bit integer
    tpncp.playing_time  tpncp.playing_time
        Signed 32-bit integer
    tpncp.plm  tpncp.plm
        Signed 32-bit integer
    tpncp.polarity_status  tpncp.polarity_status
        Signed 32-bit integer
    tpncp.port  tpncp.port
        Unsigned 8-bit integer
    tpncp.port_activity_mode_0  tpncp.port_activity_mode_0
        Signed 32-bit integer
    tpncp.port_activity_mode_1  tpncp.port_activity_mode_1
        Signed 32-bit integer
    tpncp.port_activity_mode_2  tpncp.port_activity_mode_2
        Signed 32-bit integer
    tpncp.port_activity_mode_3  tpncp.port_activity_mode_3
        Signed 32-bit integer
    tpncp.port_activity_mode_4  tpncp.port_activity_mode_4
        Signed 32-bit integer
    tpncp.port_activity_mode_5  tpncp.port_activity_mode_5
        Signed 32-bit integer
    tpncp.port_control_state  tpncp.port_control_state
        Signed 32-bit integer
    tpncp.port_id  tpncp.port_id
        Unsigned 32-bit integer
    tpncp.port_id_0  tpncp.port_id_0
        Unsigned 32-bit integer
    tpncp.port_id_1  tpncp.port_id_1
        Unsigned 32-bit integer
    tpncp.port_id_2  tpncp.port_id_2
        Unsigned 32-bit integer
    tpncp.port_id_3  tpncp.port_id_3
        Unsigned 32-bit integer
    tpncp.port_id_4  tpncp.port_id_4
        Unsigned 32-bit integer
    tpncp.port_id_5  tpncp.port_id_5
        Unsigned 32-bit integer
    tpncp.port_speed_0  tpncp.port_speed_0
        Signed 32-bit integer
    tpncp.port_speed_1  tpncp.port_speed_1
        Signed 32-bit integer
    tpncp.port_speed_2  tpncp.port_speed_2
        Signed 32-bit integer
    tpncp.port_speed_3  tpncp.port_speed_3
        Signed 32-bit integer
    tpncp.port_speed_4  tpncp.port_speed_4
        Signed 32-bit integer
    tpncp.port_speed_5  tpncp.port_speed_5
        Signed 32-bit integer
    tpncp.port_unreachable  tpncp.port_unreachable
        Unsigned 32-bit integer
    tpncp.port_user_mode_0  tpncp.port_user_mode_0
        Signed 32-bit integer
    tpncp.port_user_mode_1  tpncp.port_user_mode_1
        Signed 32-bit integer
    tpncp.port_user_mode_2  tpncp.port_user_mode_2
        Signed 32-bit integer
    tpncp.port_user_mode_3  tpncp.port_user_mode_3
        Signed 32-bit integer
    tpncp.port_user_mode_4  tpncp.port_user_mode_4
        Signed 32-bit integer
    tpncp.port_user_mode_5  tpncp.port_user_mode_5
        Signed 32-bit integer
    tpncp.post_speech_timer  tpncp.post_speech_timer
        Signed 32-bit integer
    tpncp.pre_speech_timer  tpncp.pre_speech_timer
        Signed 32-bit integer
    tpncp.prerecorded_tone_hdr  tpncp.prerecorded_tone_hdr
        String
    tpncp.presentation  tpncp.presentation
        Signed 32-bit integer
    tpncp.primary_clock_source  tpncp.primary_clock_source
        Signed 32-bit integer
    tpncp.primary_clock_source_status  tpncp.primary_clock_source_status
        Signed 32-bit integer
    tpncp.primary_language  tpncp.primary_language
        Signed 32-bit integer
    tpncp.priority_0  tpncp.priority_0
        Signed 32-bit integer
    tpncp.priority_1  tpncp.priority_1
        Signed 32-bit integer
    tpncp.priority_2  tpncp.priority_2
        Signed 32-bit integer
    tpncp.priority_3  tpncp.priority_3
        Signed 32-bit integer
    tpncp.priority_4  tpncp.priority_4
        Signed 32-bit integer
    tpncp.priority_5  tpncp.priority_5
        Signed 32-bit integer
    tpncp.priority_6  tpncp.priority_6
        Signed 32-bit integer
    tpncp.priority_7  tpncp.priority_7
        Signed 32-bit integer
    tpncp.priority_8  tpncp.priority_8
        Signed 32-bit integer
    tpncp.priority_9  tpncp.priority_9
        Signed 32-bit integer
    tpncp.probable_cause  tpncp.probable_cause
        Signed 32-bit integer
    tpncp.profile_entry  tpncp.profile_entry
        Unsigned 8-bit integer
    tpncp.profile_group  tpncp.profile_group
        Unsigned 8-bit integer
    tpncp.profile_id  tpncp.profile_id
        Unsigned 8-bit integer
    tpncp.progress_cause  tpncp.progress_cause
        Signed 32-bit integer
    tpncp.progress_ind  tpncp.progress_ind
        Signed 32-bit integer
    tpncp.progress_ind_description  tpncp.progress_ind_description
        Signed 32-bit integer
    tpncp.progress_ind_location  tpncp.progress_ind_location
        Signed 32-bit integer
    tpncp.prompt_timer  tpncp.prompt_timer
        Signed 16-bit integer
    tpncp.protocol_unreachable  tpncp.protocol_unreachable
        Unsigned 32-bit integer
    tpncp.pstn_stack_message_add_or_conn_id  tpncp.pstn_stack_message_add_or_conn_id
        Signed 32-bit integer
    tpncp.pstn_stack_message_code  tpncp.pstn_stack_message_code
        Signed 32-bit integer
    tpncp.pstn_stack_message_data  tpncp.pstn_stack_message_data
        String
    tpncp.pstn_stack_message_data_size  tpncp.pstn_stack_message_data_size
        Signed 32-bit integer
    tpncp.pstn_stack_message_from  tpncp.pstn_stack_message_from
        Signed 32-bit integer
    tpncp.pstn_stack_message_inf0  tpncp.pstn_stack_message_inf0
        Signed 32-bit integer
    tpncp.pstn_stack_message_nai  tpncp.pstn_stack_message_nai
        Signed 32-bit integer
    tpncp.pstn_stack_message_sapi  tpncp.pstn_stack_message_sapi
        Signed 32-bit integer
    tpncp.pstn_stack_message_to  tpncp.pstn_stack_message_to
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_0  tpncp.pstn_trunk_bchannels_status_0
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_1  tpncp.pstn_trunk_bchannels_status_1
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_10  tpncp.pstn_trunk_bchannels_status_10
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_11  tpncp.pstn_trunk_bchannels_status_11
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_12  tpncp.pstn_trunk_bchannels_status_12
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_13  tpncp.pstn_trunk_bchannels_status_13
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_14  tpncp.pstn_trunk_bchannels_status_14
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_15  tpncp.pstn_trunk_bchannels_status_15
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_16  tpncp.pstn_trunk_bchannels_status_16
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_17  tpncp.pstn_trunk_bchannels_status_17
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_18  tpncp.pstn_trunk_bchannels_status_18
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_19  tpncp.pstn_trunk_bchannels_status_19
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_2  tpncp.pstn_trunk_bchannels_status_2
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_20  tpncp.pstn_trunk_bchannels_status_20
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_21  tpncp.pstn_trunk_bchannels_status_21
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_22  tpncp.pstn_trunk_bchannels_status_22
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_23  tpncp.pstn_trunk_bchannels_status_23
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_24  tpncp.pstn_trunk_bchannels_status_24
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_25  tpncp.pstn_trunk_bchannels_status_25
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_26  tpncp.pstn_trunk_bchannels_status_26
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_27  tpncp.pstn_trunk_bchannels_status_27
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_28  tpncp.pstn_trunk_bchannels_status_28
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_29  tpncp.pstn_trunk_bchannels_status_29
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_3  tpncp.pstn_trunk_bchannels_status_3
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_30  tpncp.pstn_trunk_bchannels_status_30
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_31  tpncp.pstn_trunk_bchannels_status_31
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_4  tpncp.pstn_trunk_bchannels_status_4
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_5  tpncp.pstn_trunk_bchannels_status_5
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_6  tpncp.pstn_trunk_bchannels_status_6
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_7  tpncp.pstn_trunk_bchannels_status_7
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_8  tpncp.pstn_trunk_bchannels_status_8
        Signed 32-bit integer
    tpncp.pstn_trunk_bchannels_status_9  tpncp.pstn_trunk_bchannels_status_9
        Signed 32-bit integer
    tpncp.pulse_count  tpncp.pulse_count
        Signed 32-bit integer
    tpncp.pulse_duration_type  tpncp.pulse_duration_type
        Signed 32-bit integer
    tpncp.pulse_type  tpncp.pulse_type
        Signed 32-bit integer
    tpncp.qcelp13_rate  tpncp.qcelp13_rate
        Signed 32-bit integer
    tpncp.qcelp8_rate  tpncp.qcelp8_rate
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_alignment  tpncp.qsig_mwi_interrogate_result_alignment
        String
    tpncp.qsig_mwi_interrogate_result_basic_service_0  tpncp.qsig_mwi_interrogate_result_basic_service_0
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_basic_service_1  tpncp.qsig_mwi_interrogate_result_basic_service_1
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_basic_service_2  tpncp.qsig_mwi_interrogate_result_basic_service_2
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_basic_service_3  tpncp.qsig_mwi_interrogate_result_basic_service_3
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_basic_service_4  tpncp.qsig_mwi_interrogate_result_basic_service_4
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_basic_service_5  tpncp.qsig_mwi_interrogate_result_basic_service_5
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_basic_service_6  tpncp.qsig_mwi_interrogate_result_basic_service_6
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_basic_service_7  tpncp.qsig_mwi_interrogate_result_basic_service_7
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_basic_service_8  tpncp.qsig_mwi_interrogate_result_basic_service_8
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_basic_service_9  tpncp.qsig_mwi_interrogate_result_basic_service_9
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_extension_0  tpncp.qsig_mwi_interrogate_result_extension_0
        String
    tpncp.qsig_mwi_interrogate_result_extension_1  tpncp.qsig_mwi_interrogate_result_extension_1
        String
    tpncp.qsig_mwi_interrogate_result_extension_2  tpncp.qsig_mwi_interrogate_result_extension_2
        String
    tpncp.qsig_mwi_interrogate_result_extension_3  tpncp.qsig_mwi_interrogate_result_extension_3
        String
    tpncp.qsig_mwi_interrogate_result_extension_4  tpncp.qsig_mwi_interrogate_result_extension_4
        String
    tpncp.qsig_mwi_interrogate_result_extension_5  tpncp.qsig_mwi_interrogate_result_extension_5
        String
    tpncp.qsig_mwi_interrogate_result_extension_6  tpncp.qsig_mwi_interrogate_result_extension_6
        String
    tpncp.qsig_mwi_interrogate_result_extension_7  tpncp.qsig_mwi_interrogate_result_extension_7
        String
    tpncp.qsig_mwi_interrogate_result_extension_8  tpncp.qsig_mwi_interrogate_result_extension_8
        String
    tpncp.qsig_mwi_interrogate_result_extension_9  tpncp.qsig_mwi_interrogate_result_extension_9
        String
    tpncp.qsig_mwi_interrogate_result_extension_size_0  tpncp.qsig_mwi_interrogate_result_extension_size_0
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_extension_size_1  tpncp.qsig_mwi_interrogate_result_extension_size_1
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_extension_size_2  tpncp.qsig_mwi_interrogate_result_extension_size_2
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_extension_size_3  tpncp.qsig_mwi_interrogate_result_extension_size_3
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_extension_size_4  tpncp.qsig_mwi_interrogate_result_extension_size_4
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_extension_size_5  tpncp.qsig_mwi_interrogate_result_extension_size_5
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_extension_size_6  tpncp.qsig_mwi_interrogate_result_extension_size_6
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_extension_size_7  tpncp.qsig_mwi_interrogate_result_extension_size_7
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_extension_size_8  tpncp.qsig_mwi_interrogate_result_extension_size_8
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_extension_size_9  tpncp.qsig_mwi_interrogate_result_extension_size_9
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_0  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_0
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_1  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_1
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_2  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_2
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_3  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_3
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_4  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_4
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_5  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_5
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_6  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_6
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_7  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_7
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_8  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_8
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_9  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_9
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_0  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_0
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_1  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_1
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_2  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_2
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_3  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_3
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_4  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_4
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_5  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_5
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_6  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_6
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_7  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_7
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_8  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_8
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_9  tpncp.qsig_mwi_interrogate_result_msg_centre_id_msg_centre_id_type_9
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_0  tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_0
        String
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_1  tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_1
        String
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_2  tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_2
        String
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_3  tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_3
        String
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_4  tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_4
        String
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_5  tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_5
        String
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_6  tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_6
        String
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_7  tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_7
        String
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_8  tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_8
        String
    tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_9  tpncp.qsig_mwi_interrogate_result_msg_centre_id_numeric_string_9
        String
    tpncp.qsig_mwi_interrogate_result_nb_of_messages_0  tpncp.qsig_mwi_interrogate_result_nb_of_messages_0
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_nb_of_messages_1  tpncp.qsig_mwi_interrogate_result_nb_of_messages_1
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_nb_of_messages_2  tpncp.qsig_mwi_interrogate_result_nb_of_messages_2
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_nb_of_messages_3  tpncp.qsig_mwi_interrogate_result_nb_of_messages_3
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_nb_of_messages_4  tpncp.qsig_mwi_interrogate_result_nb_of_messages_4
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_nb_of_messages_5  tpncp.qsig_mwi_interrogate_result_nb_of_messages_5
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_nb_of_messages_6  tpncp.qsig_mwi_interrogate_result_nb_of_messages_6
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_nb_of_messages_7  tpncp.qsig_mwi_interrogate_result_nb_of_messages_7
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_nb_of_messages_8  tpncp.qsig_mwi_interrogate_result_nb_of_messages_8
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_nb_of_messages_9  tpncp.qsig_mwi_interrogate_result_nb_of_messages_9
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_number_0  tpncp.qsig_mwi_interrogate_result_originating_nr_number_0
        String
    tpncp.qsig_mwi_interrogate_result_originating_nr_number_1  tpncp.qsig_mwi_interrogate_result_originating_nr_number_1
        String
    tpncp.qsig_mwi_interrogate_result_originating_nr_number_2  tpncp.qsig_mwi_interrogate_result_originating_nr_number_2
        String
    tpncp.qsig_mwi_interrogate_result_originating_nr_number_3  tpncp.qsig_mwi_interrogate_result_originating_nr_number_3
        String
    tpncp.qsig_mwi_interrogate_result_originating_nr_number_4  tpncp.qsig_mwi_interrogate_result_originating_nr_number_4
        String
    tpncp.qsig_mwi_interrogate_result_originating_nr_number_5  tpncp.qsig_mwi_interrogate_result_originating_nr_number_5
        String
    tpncp.qsig_mwi_interrogate_result_originating_nr_number_6  tpncp.qsig_mwi_interrogate_result_originating_nr_number_6
        String
    tpncp.qsig_mwi_interrogate_result_originating_nr_number_7  tpncp.qsig_mwi_interrogate_result_originating_nr_number_7
        String
    tpncp.qsig_mwi_interrogate_result_originating_nr_number_8  tpncp.qsig_mwi_interrogate_result_originating_nr_number_8
        String
    tpncp.qsig_mwi_interrogate_result_originating_nr_number_9  tpncp.qsig_mwi_interrogate_result_originating_nr_number_9
        String
    tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_0  tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_0
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_1  tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_1
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_2  tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_2
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_3  tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_3
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_4  tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_4
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_5  tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_5
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_6  tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_6
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_7  tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_7
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_8  tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_8
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_9  tpncp.qsig_mwi_interrogate_result_originating_nr_party_number_type_9
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_0  tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_0
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_1  tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_1
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_2  tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_2
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_3  tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_3
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_4  tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_4
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_5  tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_5
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_6  tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_6
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_7  tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_7
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_8  tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_8
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_9  tpncp.qsig_mwi_interrogate_result_originating_nr_type_of_number_9
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_priority_0  tpncp.qsig_mwi_interrogate_result_priority_0
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_priority_1  tpncp.qsig_mwi_interrogate_result_priority_1
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_priority_2  tpncp.qsig_mwi_interrogate_result_priority_2
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_priority_3  tpncp.qsig_mwi_interrogate_result_priority_3
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_priority_4  tpncp.qsig_mwi_interrogate_result_priority_4
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_priority_5  tpncp.qsig_mwi_interrogate_result_priority_5
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_priority_6  tpncp.qsig_mwi_interrogate_result_priority_6
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_priority_7  tpncp.qsig_mwi_interrogate_result_priority_7
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_priority_8  tpncp.qsig_mwi_interrogate_result_priority_8
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_priority_9  tpncp.qsig_mwi_interrogate_result_priority_9
        Signed 32-bit integer
    tpncp.qsig_mwi_interrogate_result_time_stamp_0  tpncp.qsig_mwi_interrogate_result_time_stamp_0
        String
    tpncp.qsig_mwi_interrogate_result_time_stamp_1  tpncp.qsig_mwi_interrogate_result_time_stamp_1
        String
    tpncp.qsig_mwi_interrogate_result_time_stamp_2  tpncp.qsig_mwi_interrogate_result_time_stamp_2
        String
    tpncp.qsig_mwi_interrogate_result_time_stamp_3  tpncp.qsig_mwi_interrogate_result_time_stamp_3
        String
    tpncp.qsig_mwi_interrogate_result_time_stamp_4  tpncp.qsig_mwi_interrogate_result_time_stamp_4
        String
    tpncp.qsig_mwi_interrogate_result_time_stamp_5  tpncp.qsig_mwi_interrogate_result_time_stamp_5
        String
    tpncp.qsig_mwi_interrogate_result_time_stamp_6  tpncp.qsig_mwi_interrogate_result_time_stamp_6
        String
    tpncp.qsig_mwi_interrogate_result_time_stamp_7  tpncp.qsig_mwi_interrogate_result_time_stamp_7
        String
    tpncp.qsig_mwi_interrogate_result_time_stamp_8  tpncp.qsig_mwi_interrogate_result_time_stamp_8
        String
    tpncp.qsig_mwi_interrogate_result_time_stamp_9  tpncp.qsig_mwi_interrogate_result_time_stamp_9
        String
    tpncp.query_result  tpncp.query_result
        Signed 32-bit integer
    tpncp.query_seq_no  tpncp.query_seq_no
        Signed 32-bit integer
    tpncp.r_factor  tpncp.r_factor
        Unsigned 8-bit integer
    tpncp.rai  tpncp.rai
        Signed 32-bit integer
    tpncp.ras_debug_mode  tpncp.ras_debug_mode
        Unsigned 8-bit integer
    tpncp.rate_type  tpncp.rate_type
        Signed 32-bit integer
    tpncp.ready_for_update  tpncp.ready_for_update
        Signed 32-bit integer
    tpncp.rear_firm_ware_ver  tpncp.rear_firm_ware_ver
        Signed 32-bit integer
    tpncp.rear_io_id  tpncp.rear_io_id
        Signed 32-bit integer
    tpncp.reason  tpncp.reason
        Unsigned 32-bit integer
    tpncp.reassembly_timeout  tpncp.reassembly_timeout
        Unsigned 32-bit integer
    tpncp.rec_buff_size  tpncp.rec_buff_size
        Signed 32-bit integer
    tpncp.receive_window_size_offered  tpncp.receive_window_size_offered
        Unsigned 16-bit integer
    tpncp.received  tpncp.received
        Unsigned 32-bit integer
    tpncp.received_before_trigger  tpncp.received_before_trigger
        Unsigned 8-bit integer
    tpncp.received_octets  tpncp.received_octets
        Unsigned 32-bit integer
    tpncp.received_packets  tpncp.received_packets
        Unsigned 32-bit integer
    tpncp.recognize_timeout  tpncp.recognize_timeout
        Signed 32-bit integer
    tpncp.record_bytes_processed  tpncp.record_bytes_processed
        Signed 32-bit integer
    tpncp.record_coder  tpncp.record_coder
        Signed 32-bit integer
    tpncp.record_length_timer  tpncp.record_length_timer
        Signed 32-bit integer
    tpncp.record_points  tpncp.record_points
        Unsigned 32-bit integer
    tpncp.recording_id  tpncp.recording_id
        String
    tpncp.recording_time  tpncp.recording_time
        Signed 32-bit integer
    tpncp.red_alarm  tpncp.red_alarm
        Signed 32-bit integer
    tpncp.redirecting_number  tpncp.redirecting_number
        String
    tpncp.redirecting_number_plan  tpncp.redirecting_number_plan
        Signed 32-bit integer
    tpncp.redirecting_number_pres  tpncp.redirecting_number_pres
        Signed 32-bit integer
    tpncp.redirecting_number_reason  tpncp.redirecting_number_reason
        Signed 32-bit integer
    tpncp.redirecting_number_screen  tpncp.redirecting_number_screen
        Signed 32-bit integer
    tpncp.redirecting_number_size  tpncp.redirecting_number_size
        Signed 32-bit integer
    tpncp.redirecting_number_type  tpncp.redirecting_number_type
        Signed 32-bit integer
    tpncp.redirecting_phone_num  tpncp.redirecting_phone_num
        String
    tpncp.redundant_cmd  tpncp.redundant_cmd
        Signed 32-bit integer
    tpncp.ref_energy  tpncp.ref_energy
        Signed 32-bit integer
    tpncp.reg  tpncp.reg
        Signed 32-bit integer
    tpncp.register_value  tpncp.register_value
        Signed 32-bit integer
    tpncp.registration_state  tpncp.registration_state
        Signed 32-bit integer
    tpncp.reinput_key_sequence  tpncp.reinput_key_sequence
        String
    tpncp.relay_bypass  tpncp.relay_bypass
        Signed 32-bit integer
    tpncp.release_indication_cause  tpncp.release_indication_cause
        Signed 32-bit integer
    tpncp.remote_alarm  tpncp.remote_alarm
        Unsigned 16-bit integer
    tpncp.remote_alarm_received  tpncp.remote_alarm_received
        Signed 32-bit integer
    tpncp.remote_apip  tpncp.remote_apip
        Unsigned 32-bit integer
    tpncp.remote_disconnect  tpncp.remote_disconnect
        Signed 32-bit integer
    tpncp.remote_file_coder  tpncp.remote_file_coder
        Signed 32-bit integer
    tpncp.remote_file_duration  tpncp.remote_file_duration
        Signed 32-bit integer
    tpncp.remote_file_query_result  tpncp.remote_file_query_result
        Signed 32-bit integer
    tpncp.remote_gwip  tpncp.remote_gwip
        Unsigned 32-bit integer
    tpncp.remote_ip_addr  tpncp.remote_ip_addr
        Signed 32-bit integer
    tpncp.remote_ip_addr_0  tpncp.remote_ip_addr_0
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_1  tpncp.remote_ip_addr_1
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_10  tpncp.remote_ip_addr_10
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_11  tpncp.remote_ip_addr_11
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_12  tpncp.remote_ip_addr_12
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_13  tpncp.remote_ip_addr_13
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_14  tpncp.remote_ip_addr_14
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_15  tpncp.remote_ip_addr_15
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_16  tpncp.remote_ip_addr_16
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_17  tpncp.remote_ip_addr_17
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_18  tpncp.remote_ip_addr_18
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_19  tpncp.remote_ip_addr_19
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_2  tpncp.remote_ip_addr_2
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_20  tpncp.remote_ip_addr_20
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_21  tpncp.remote_ip_addr_21
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_22  tpncp.remote_ip_addr_22
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_23  tpncp.remote_ip_addr_23
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_24  tpncp.remote_ip_addr_24
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_25  tpncp.remote_ip_addr_25
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_26  tpncp.remote_ip_addr_26
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_27  tpncp.remote_ip_addr_27
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_28  tpncp.remote_ip_addr_28
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_29  tpncp.remote_ip_addr_29
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_3  tpncp.remote_ip_addr_3
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_30  tpncp.remote_ip_addr_30
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_31  tpncp.remote_ip_addr_31
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_4  tpncp.remote_ip_addr_4
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_5  tpncp.remote_ip_addr_5
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_6  tpncp.remote_ip_addr_6
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_7  tpncp.remote_ip_addr_7
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_8  tpncp.remote_ip_addr_8
        Unsigned 32-bit integer
    tpncp.remote_ip_addr_9  tpncp.remote_ip_addr_9
        Unsigned 32-bit integer
    tpncp.remote_port_0  tpncp.remote_port_0
        Signed 32-bit integer
    tpncp.remote_port_1  tpncp.remote_port_1
        Signed 32-bit integer
    tpncp.remote_port_10  tpncp.remote_port_10
        Signed 32-bit integer
    tpncp.remote_port_11  tpncp.remote_port_11
        Signed 32-bit integer
    tpncp.remote_port_12  tpncp.remote_port_12
        Signed 32-bit integer
    tpncp.remote_port_13  tpncp.remote_port_13
        Signed 32-bit integer
    tpncp.remote_port_14  tpncp.remote_port_14
        Signed 32-bit integer
    tpncp.remote_port_15  tpncp.remote_port_15
        Signed 32-bit integer
    tpncp.remote_port_16  tpncp.remote_port_16
        Signed 32-bit integer
    tpncp.remote_port_17  tpncp.remote_port_17
        Signed 32-bit integer
    tpncp.remote_port_18  tpncp.remote_port_18
        Signed 32-bit integer
    tpncp.remote_port_19  tpncp.remote_port_19
        Signed 32-bit integer
    tpncp.remote_port_2  tpncp.remote_port_2
        Signed 32-bit integer
    tpncp.remote_port_20  tpncp.remote_port_20
        Signed 32-bit integer
    tpncp.remote_port_21  tpncp.remote_port_21
        Signed 32-bit integer
    tpncp.remote_port_22  tpncp.remote_port_22
        Signed 32-bit integer
    tpncp.remote_port_23  tpncp.remote_port_23
        Signed 32-bit integer
    tpncp.remote_port_24  tpncp.remote_port_24
        Signed 32-bit integer
    tpncp.remote_port_25  tpncp.remote_port_25
        Signed 32-bit integer
    tpncp.remote_port_26  tpncp.remote_port_26
        Signed 32-bit integer
    tpncp.remote_port_27  tpncp.remote_port_27
        Signed 32-bit integer
    tpncp.remote_port_28  tpncp.remote_port_28
        Signed 32-bit integer
    tpncp.remote_port_29  tpncp.remote_port_29
        Signed 32-bit integer
    tpncp.remote_port_3  tpncp.remote_port_3
        Signed 32-bit integer
    tpncp.remote_port_30  tpncp.remote_port_30
        Signed 32-bit integer
    tpncp.remote_port_31  tpncp.remote_port_31
        Signed 32-bit integer
    tpncp.remote_port_4  tpncp.remote_port_4
        Signed 32-bit integer
    tpncp.remote_port_5  tpncp.remote_port_5
        Signed 32-bit integer
    tpncp.remote_port_6  tpncp.remote_port_6
        Signed 32-bit integer
    tpncp.remote_port_7  tpncp.remote_port_7
        Signed 32-bit integer
    tpncp.remote_port_8  tpncp.remote_port_8
        Signed 32-bit integer
    tpncp.remote_port_9  tpncp.remote_port_9
        Signed 32-bit integer
    tpncp.remote_rtcp_port  tpncp.remote_rtcp_port
        Unsigned 16-bit integer
    tpncp.remote_rtcpip_add_address_family  tpncp.remote_rtcpip_add_address_family
        Signed 32-bit integer
    tpncp.remote_rtcpip_add_ipv6_addr_0  tpncp.remote_rtcpip_add_ipv6_addr_0
        Unsigned 32-bit integer
    tpncp.remote_rtcpip_add_ipv6_addr_1  tpncp.remote_rtcpip_add_ipv6_addr_1
        Unsigned 32-bit integer
    tpncp.remote_rtcpip_add_ipv6_addr_2  tpncp.remote_rtcpip_add_ipv6_addr_2
        Unsigned 32-bit integer
    tpncp.remote_rtcpip_add_ipv6_addr_3  tpncp.remote_rtcpip_add_ipv6_addr_3
        Unsigned 32-bit integer
    tpncp.remote_rtcpip_addr_address_family  tpncp.remote_rtcpip_addr_address_family
        Signed 32-bit integer
    tpncp.remote_rtcpip_addr_ipv6_addr_0  tpncp.remote_rtcpip_addr_ipv6_addr_0
        Unsigned 32-bit integer
    tpncp.remote_rtcpip_addr_ipv6_addr_1  tpncp.remote_rtcpip_addr_ipv6_addr_1
        Unsigned 32-bit integer
    tpncp.remote_rtcpip_addr_ipv6_addr_2  tpncp.remote_rtcpip_addr_ipv6_addr_2
        Unsigned 32-bit integer
    tpncp.remote_rtcpip_addr_ipv6_addr_3  tpncp.remote_rtcpip_addr_ipv6_addr_3
        Unsigned 32-bit integer
    tpncp.remote_rtp_port  tpncp.remote_rtp_port
        Unsigned 16-bit integer
    tpncp.remote_rtpip_addr_address_family  tpncp.remote_rtpip_addr_address_family
        Signed 32-bit integer
    tpncp.remote_rtpip_addr_ipv6_addr_0  tpncp.remote_rtpip_addr_ipv6_addr_0
        Unsigned 32-bit integer
    tpncp.remote_rtpip_addr_ipv6_addr_1  tpncp.remote_rtpip_addr_ipv6_addr_1
        Unsigned 32-bit integer
    tpncp.remote_rtpip_addr_ipv6_addr_2  tpncp.remote_rtpip_addr_ipv6_addr_2
        Unsigned 32-bit integer
    tpncp.remote_rtpip_addr_ipv6_addr_3  tpncp.remote_rtpip_addr_ipv6_addr_3
        Unsigned 32-bit integer
    tpncp.remote_session_id  tpncp.remote_session_id
        Signed 32-bit integer
    tpncp.remote_session_seq_num  tpncp.remote_session_seq_num
        Signed 32-bit integer
    tpncp.remote_t38_port  tpncp.remote_t38_port
        Signed 32-bit integer
    tpncp.remote_t38ip_addr_address_family  tpncp.remote_t38ip_addr_address_family
        Signed 32-bit integer
    tpncp.remote_t38ip_addr_ipv6_addr_0  tpncp.remote_t38ip_addr_ipv6_addr_0
        Unsigned 32-bit integer
    tpncp.remote_t38ip_addr_ipv6_addr_1  tpncp.remote_t38ip_addr_ipv6_addr_1
        Unsigned 32-bit integer
    tpncp.remote_t38ip_addr_ipv6_addr_2  tpncp.remote_t38ip_addr_ipv6_addr_2
        Unsigned 32-bit integer
    tpncp.remote_t38ip_addr_ipv6_addr_3  tpncp.remote_t38ip_addr_ipv6_addr_3
        Unsigned 32-bit integer
    tpncp.remotely_inhibited  tpncp.remotely_inhibited
        Signed 32-bit integer
    tpncp.repeat  tpncp.repeat
        Unsigned 8-bit integer
    tpncp.repeated_dial_string_total_duration  tpncp.repeated_dial_string_total_duration
        Signed 32-bit integer
    tpncp.repeated_string_total_duration  tpncp.repeated_string_total_duration
        Signed 32-bit integer
    tpncp.repetition_indicator  tpncp.repetition_indicator
        Signed 32-bit integer
    tpncp.report_error_on_received_stream_enable  tpncp.report_error_on_received_stream_enable
        Unsigned 8-bit integer
    tpncp.report_lbc  tpncp.report_lbc
        Signed 32-bit integer
    tpncp.report_reason  tpncp.report_reason
        Signed 32-bit integer
    tpncp.report_type  tpncp.report_type
        Signed 32-bit integer
    tpncp.report_ubc  tpncp.report_ubc
        Signed 32-bit integer
    tpncp.reporting_pulse_count  tpncp.reporting_pulse_count
        Signed 32-bit integer
    tpncp.request  tpncp.request
        Signed 32-bit integer
    tpncp.reserve  tpncp.reserve
        String
    tpncp.reserve1  tpncp.reserve1
        String
    tpncp.reserve2  tpncp.reserve2
        String
    tpncp.reserve3  tpncp.reserve3
        String
    tpncp.reserve4  tpncp.reserve4
        String
    tpncp.reserve_0  tpncp.reserve_0
        Signed 32-bit integer
    tpncp.reserve_1  tpncp.reserve_1
        Signed 32-bit integer
    tpncp.reserve_2  tpncp.reserve_2
        Signed 32-bit integer
    tpncp.reserve_3  tpncp.reserve_3
        Signed 32-bit integer
    tpncp.reserve_4  tpncp.reserve_4
        Signed 32-bit integer
    tpncp.reserve_5  tpncp.reserve_5
        Signed 32-bit integer
    tpncp.reserved  Reserved
        Unsigned 16-bit integer
    tpncp.reserved1  tpncp.reserved1
        Signed 32-bit integer
    tpncp.reserved2  tpncp.reserved2
        Signed 32-bit integer
    tpncp.reserved3  tpncp.reserved3
        Signed 32-bit integer
    tpncp.reserved4  tpncp.reserved4
        Signed 32-bit integer
    tpncp.reserved5  tpncp.reserved5
        Signed 32-bit integer
    tpncp.reserved_0  tpncp.reserved_0
        Signed 32-bit integer
    tpncp.reserved_1  tpncp.reserved_1
        Signed 32-bit integer
    tpncp.reserved_10  tpncp.reserved_10
        Signed 16-bit integer
    tpncp.reserved_11  tpncp.reserved_11
        Signed 16-bit integer
    tpncp.reserved_2  tpncp.reserved_2
        Signed 32-bit integer
    tpncp.reserved_3  tpncp.reserved_3
        Signed 32-bit integer
    tpncp.reserved_4  tpncp.reserved_4
        Signed 16-bit integer
    tpncp.reserved_5  tpncp.reserved_5
        Signed 16-bit integer
    tpncp.reserved_6  tpncp.reserved_6
        Signed 16-bit integer
    tpncp.reserved_7  tpncp.reserved_7
        Signed 16-bit integer
    tpncp.reserved_8  tpncp.reserved_8
        Signed 16-bit integer
    tpncp.reserved_9  tpncp.reserved_9
        Signed 16-bit integer
    tpncp.reset_cmd  tpncp.reset_cmd
        Signed 32-bit integer
    tpncp.reset_mode  tpncp.reset_mode
        Signed 32-bit integer
    tpncp.reset_source_report_bit_return_code  tpncp.reset_source_report_bit_return_code
        Signed 32-bit integer
    tpncp.reset_total  tpncp.reset_total
        Unsigned 8-bit integer
    tpncp.residual_echo_return_loss  tpncp.residual_echo_return_loss
        Unsigned 8-bit integer
    tpncp.response_code  tpncp.response_code
        Signed 32-bit integer
    tpncp.restart_key_sequence  tpncp.restart_key_sequence
        String
    tpncp.resume_call_action_code  tpncp.resume_call_action_code
        Signed 32-bit integer
    tpncp.resynchronized  tpncp.resynchronized
        Unsigned 16-bit integer
    tpncp.ret_cause  tpncp.ret_cause
        Signed 32-bit integer
    tpncp.retrc  tpncp.retrc
        Unsigned 16-bit integer
    tpncp.return_code  tpncp.return_code
        Signed 32-bit integer
    tpncp.return_key_sequence  tpncp.return_key_sequence
        String
    tpncp.rev_num  tpncp.rev_num
        Signed 32-bit integer
    tpncp.reversal_polarity  tpncp.reversal_polarity
        Signed 32-bit integer
    tpncp.rfc  tpncp.rfc
        Signed 32-bit integer
    tpncp.rfc2833_rtp_rx_payload_type  tpncp.rfc2833_rtp_rx_payload_type
        Unsigned 8-bit integer
    tpncp.rfc2833_rtp_tx_payload_type  tpncp.rfc2833_rtp_tx_payload_type
        Unsigned 8-bit integer
    tpncp.ria_crc  tpncp.ria_crc
        Signed 32-bit integer
    tpncp.ring  tpncp.ring
        Signed 32-bit integer
    tpncp.ring_splash  tpncp.ring_splash
        Signed 32-bit integer
    tpncp.ring_state  tpncp.ring_state
        Signed 32-bit integer
    tpncp.ring_type  tpncp.ring_type
        Signed 32-bit integer
    tpncp.round_trip  tpncp.round_trip
        Unsigned 32-bit integer
    tpncp.route_set  tpncp.route_set
        Signed 32-bit integer
    tpncp.route_set_event_cause  tpncp.route_set_event_cause
        Signed 32-bit integer
    tpncp.route_set_name  tpncp.route_set_name
        String
    tpncp.route_set_no  tpncp.route_set_no
        Signed 32-bit integer
    tpncp.routesets_per_sn  tpncp.routesets_per_sn
        Signed 32-bit integer
    tpncp.rs_alarms_status_0  tpncp.rs_alarms_status_0
        Signed 32-bit integer
    tpncp.rs_alarms_status_1  tpncp.rs_alarms_status_1
        Signed 32-bit integer
    tpncp.rs_alarms_status_2  tpncp.rs_alarms_status_2
        Signed 32-bit integer
    tpncp.rs_alarms_status_3  tpncp.rs_alarms_status_3
        Signed 32-bit integer
    tpncp.rs_alarms_status_4  tpncp.rs_alarms_status_4
        Signed 32-bit integer
    tpncp.rs_alarms_status_5  tpncp.rs_alarms_status_5
        Signed 32-bit integer
    tpncp.rs_alarms_status_6  tpncp.rs_alarms_status_6
        Signed 32-bit integer
    tpncp.rs_alarms_status_7  tpncp.rs_alarms_status_7
        Signed 32-bit integer
    tpncp.rs_alarms_status_8  tpncp.rs_alarms_status_8
        Signed 32-bit integer
    tpncp.rs_alarms_status_9  tpncp.rs_alarms_status_9
        Signed 32-bit integer
    tpncp.rsip_reason  tpncp.rsip_reason
        Signed 16-bit integer
    tpncp.rt_delay  tpncp.rt_delay
        Unsigned 16-bit integer
    tpncp.rtcp_authentication_algorithm  tpncp.rtcp_authentication_algorithm
        Unsigned 8-bit integer
    tpncp.rtcp_bye_reason  tpncp.rtcp_bye_reason
        String
    tpncp.rtcp_bye_reason_length  tpncp.rtcp_bye_reason_length
        Unsigned 8-bit integer
    tpncp.rtcp_encryption_algorithm  tpncp.rtcp_encryption_algorithm
        Unsigned 8-bit integer
    tpncp.rtcp_encryption_key  tpncp.rtcp_encryption_key
        String
    tpncp.rtcp_encryption_key_size  tpncp.rtcp_encryption_key_size
        Unsigned 32-bit integer
    tpncp.rtcp_extension_msg  tpncp.rtcp_extension_msg
        String
    tpncp.rtcp_icmp_received_data_icmp_type  tpncp.rtcp_icmp_received_data_icmp_type
        Unsigned 8-bit integer
    tpncp.rtcp_icmp_received_data_icmp_unreachable_counter  tpncp.rtcp_icmp_received_data_icmp_unreachable_counter
        Unsigned 32-bit integer
    tpncp.rtcp_mac_key  tpncp.rtcp_mac_key
        String
    tpncp.rtcp_mac_key_size  tpncp.rtcp_mac_key_size
        Unsigned 32-bit integer
    tpncp.rtcp_mean_tx_interval  tpncp.rtcp_mean_tx_interval
        Signed 32-bit integer
    tpncp.rtcp_peer_info_ip_dst_addr  tpncp.rtcp_peer_info_ip_dst_addr
        Unsigned 32-bit integer
    tpncp.rtcp_peer_info_udp_dst_port  tpncp.rtcp_peer_info_udp_dst_port
        Unsigned 16-bit integer
    tpncp.rtp_active  tpncp.rtp_active
        Unsigned 8-bit integer
    tpncp.rtp_authentication_algorithm  tpncp.rtp_authentication_algorithm
        Unsigned 8-bit integer
    tpncp.rtp_encryption_algorithm  tpncp.rtp_encryption_algorithm
        Unsigned 8-bit integer
    tpncp.rtp_encryption_key  tpncp.rtp_encryption_key
        String
    tpncp.rtp_encryption_key_size  tpncp.rtp_encryption_key_size
        Unsigned 32-bit integer
    tpncp.rtp_init_key  tpncp.rtp_init_key
        String
    tpncp.rtp_init_key_size  tpncp.rtp_init_key_size
        Unsigned 32-bit integer
    tpncp.rtp_mac_key  tpncp.rtp_mac_key
        String
    tpncp.rtp_mac_key_size  tpncp.rtp_mac_key_size
        Unsigned 32-bit integer
    tpncp.rtp_no_operation_payload_type  tpncp.rtp_no_operation_payload_type
        Unsigned 8-bit integer
    tpncp.rtp_redundancy_depth  tpncp.rtp_redundancy_depth
        Signed 32-bit integer
    tpncp.rtp_redundancy_rfc2198_payload_type  tpncp.rtp_redundancy_rfc2198_payload_type
        Unsigned 8-bit integer
    tpncp.rtp_reflector_mode  tpncp.rtp_reflector_mode
        Unsigned 8-bit integer
    tpncp.rtp_seq_num  tpncp.rtp_seq_num
        Unsigned 16-bit integer
    tpncp.rtp_sequence_number_mode  tpncp.rtp_sequence_number_mode
        Signed 32-bit integer
    tpncp.rtp_silence_indicator_coefficients_number  tpncp.rtp_silence_indicator_coefficients_number
        Signed 32-bit integer
    tpncp.rtp_silence_indicator_packets_enable  tpncp.rtp_silence_indicator_packets_enable
        Unsigned 8-bit integer
    tpncp.rtp_time_stamp  tpncp.rtp_time_stamp
        Unsigned 32-bit integer
    tpncp.rtpdtmfrfc2833_payload_type  tpncp.rtpdtmfrfc2833_payload_type
        Unsigned 8-bit integer
    tpncp.rtpssrc  tpncp.rtpssrc
        Unsigned 32-bit integer
    tpncp.rtpssrc_mode  tpncp.rtpssrc_mode
        Signed 32-bit integer
    tpncp.rx_broken_connection  tpncp.rx_broken_connection
        Unsigned 8-bit integer
    tpncp.rx_bytes  tpncp.rx_bytes
        Unsigned 32-bit integer
    tpncp.rx_config  tpncp.rx_config
        Unsigned 8-bit integer
    tpncp.rx_config_zero_fill  tpncp.rx_config_zero_fill
        Unsigned 8-bit integer
    tpncp.rx_dtmf_hang_over_time  tpncp.rx_dtmf_hang_over_time
        Signed 16-bit integer
    tpncp.rx_dumped_pckts_cnt  tpncp.rx_dumped_pckts_cnt
        Unsigned 16-bit integer
    tpncp.rx_rtcp_privacy_key  tpncp.rx_rtcp_privacy_key
        String
    tpncp.rx_rtcpmac_key  tpncp.rx_rtcpmac_key
        String
    tpncp.rx_rtp_initialization_key  tpncp.rx_rtp_initialization_key
        String
    tpncp.rx_rtp_payload_type  tpncp.rx_rtp_payload_type
        Signed 32-bit integer
    tpncp.rx_rtp_privacy_key  tpncp.rx_rtp_privacy_key
        String
    tpncp.rx_rtp_time_stamp  tpncp.rx_rtp_time_stamp
        Unsigned 32-bit integer
    tpncp.rx_rtpmac_key  tpncp.rx_rtpmac_key
        String
    tpncp.s_nname  tpncp.s_nname
        String
    tpncp.sample_based_coders_rtp_packet_interval  tpncp.sample_based_coders_rtp_packet_interval
        Unsigned 8-bit integer
    tpncp.sce  tpncp.sce
        Signed 32-bit integer
    tpncp.scr  tpncp.scr
        Signed 32-bit integer
    tpncp.screening  tpncp.screening
        Signed 32-bit integer
    tpncp.sdh_lp_mappingtype  tpncp.sdh_lp_mappingtype
        Signed 32-bit integer
    tpncp.sdh_sonet_mode  tpncp.sdh_sonet_mode
        Signed 32-bit integer
    tpncp.sdram_bit_return_code  tpncp.sdram_bit_return_code
        Signed 32-bit integer
    tpncp.second  tpncp.second
        Signed 32-bit integer
    tpncp.second_digit_country_code  tpncp.second_digit_country_code
        Unsigned 8-bit integer
    tpncp.second_redirecting_number_plan  tpncp.second_redirecting_number_plan
        Signed 32-bit integer
    tpncp.second_redirecting_number_pres  tpncp.second_redirecting_number_pres
        Signed 32-bit integer
    tpncp.second_redirecting_number_reason  tpncp.second_redirecting_number_reason
        Signed 32-bit integer
    tpncp.second_redirecting_number_screen  tpncp.second_redirecting_number_screen
        Signed 32-bit integer
    tpncp.second_redirecting_number_size  tpncp.second_redirecting_number_size
        Signed 32-bit integer
    tpncp.second_redirecting_number_type  tpncp.second_redirecting_number_type
        Signed 32-bit integer
    tpncp.second_redirecting_phone_num  tpncp.second_redirecting_phone_num
        String
    tpncp.second_tone_duration  tpncp.second_tone_duration
        Unsigned 32-bit integer
    tpncp.secondary_clock_source  tpncp.secondary_clock_source
        Signed 32-bit integer
    tpncp.secondary_clock_source_status  tpncp.secondary_clock_source_status
        Signed 32-bit integer
    tpncp.secondary_language  tpncp.secondary_language
        Signed 32-bit integer
    tpncp.seconds  tpncp.seconds
        Signed 32-bit integer
    tpncp.section  tpncp.section
        Signed 32-bit integer
    tpncp.security_cmd_offset  tpncp.security_cmd_offset
        Signed 32-bit integer
    tpncp.segment  tpncp.segment
        Signed 32-bit integer
    tpncp.seized_line  tpncp.seized_line
        Signed 32-bit integer
    tpncp.send_alarm_operation  tpncp.send_alarm_operation
        Signed 32-bit integer
    tpncp.send_dummy_packets  tpncp.send_dummy_packets
        Unsigned 8-bit integer
    tpncp.send_each_digit  tpncp.send_each_digit
        Signed 32-bit integer
    tpncp.send_event_board_started_flag  tpncp.send_event_board_started_flag
        Signed 32-bit integer
    tpncp.send_once  tpncp.send_once
        Signed 32-bit integer
    tpncp.send_rtcp_bye_packet_mode  tpncp.send_rtcp_bye_packet_mode
        Signed 32-bit integer
    tpncp.sending_complete  tpncp.sending_complete
        Signed 32-bit integer
    tpncp.sending_mode  tpncp.sending_mode
        Signed 32-bit integer
    tpncp.sensor_id  tpncp.sensor_id
        Signed 32-bit integer
    tpncp.seq_number  Sequence number
        Unsigned 16-bit integer
    tpncp.sequence_number  tpncp.sequence_number
        Unsigned 16-bit integer
    tpncp.sequence_number_for_detection  tpncp.sequence_number_for_detection
        Signed 16-bit integer
    tpncp.sequence_response_type  tpncp.sequence_response_type
        Signed 32-bit integer
    tpncp.serial_id  tpncp.serial_id
        Signed 32-bit integer
    tpncp.serial_num  tpncp.serial_num
        Signed 32-bit integer
    tpncp.server_id  tpncp.server_id
        Unsigned 32-bit integer
    tpncp.service_change_delay  tpncp.service_change_delay
        Signed 32-bit integer
    tpncp.service_change_reason  tpncp.service_change_reason
        Unsigned 32-bit integer
    tpncp.service_error_type  tpncp.service_error_type
        Signed 32-bit integer
    tpncp.service_report_type  tpncp.service_report_type
        Signed 32-bit integer
    tpncp.service_status  tpncp.service_status
        Signed 32-bit integer
    tpncp.service_type  tpncp.service_type
        Signed 32-bit integer
    tpncp.session_id  tpncp.session_id
        Signed 32-bit integer
    tpncp.set_mode_action  tpncp.set_mode_action
        Signed 32-bit integer
    tpncp.set_mode_code  tpncp.set_mode_code
        Signed 32-bit integer
    tpncp.severely_errored_framing_seconds  tpncp.severely_errored_framing_seconds
        Signed 32-bit integer
    tpncp.severely_errored_seconds  tpncp.severely_errored_seconds
        Signed 32-bit integer
    tpncp.severity  tpncp.severity
        Signed 32-bit integer
    tpncp.si  tpncp.si
        Signed 32-bit integer
    tpncp.signal_generation_enable  tpncp.signal_generation_enable
        Signed 32-bit integer
    tpncp.signal_level  tpncp.signal_level
        Signed 32-bit integer
    tpncp.signal_level_decimal  tpncp.signal_level_decimal
        Signed 16-bit integer
    tpncp.signal_level_integer  tpncp.signal_level_integer
        Signed 16-bit integer
    tpncp.signal_lost  tpncp.signal_lost
        Unsigned 16-bit integer
    tpncp.signal_type  tpncp.signal_type
        Signed 32-bit integer
    tpncp.signaling_detectors_control  tpncp.signaling_detectors_control
        Signed 32-bit integer
    tpncp.signaling_input_connection_bus  tpncp.signaling_input_connection_bus
        Signed 32-bit integer
    tpncp.signaling_input_connection_occupied  tpncp.signaling_input_connection_occupied
        Signed 32-bit integer
    tpncp.signaling_input_connection_port  tpncp.signaling_input_connection_port
        Signed 32-bit integer
    tpncp.signaling_input_connection_time_slot  tpncp.signaling_input_connection_time_slot
        Signed 32-bit integer
    tpncp.signaling_system  tpncp.signaling_system
        Signed 32-bit integer
    tpncp.signaling_system_0  tpncp.signaling_system_0
        Signed 32-bit integer
    tpncp.signaling_system_1  tpncp.signaling_system_1
        Signed 32-bit integer
    tpncp.signaling_system_10  tpncp.signaling_system_10
        Signed 32-bit integer
    tpncp.signaling_system_11  tpncp.signaling_system_11
        Signed 32-bit integer
    tpncp.signaling_system_12  tpncp.signaling_system_12
        Signed 32-bit integer
    tpncp.signaling_system_13  tpncp.signaling_system_13
        Signed 32-bit integer
    tpncp.signaling_system_14  tpncp.signaling_system_14
        Signed 32-bit integer
    tpncp.signaling_system_15  tpncp.signaling_system_15
        Signed 32-bit integer
    tpncp.signaling_system_16  tpncp.signaling_system_16
        Signed 32-bit integer
    tpncp.signaling_system_17  tpncp.signaling_system_17
        Signed 32-bit integer
    tpncp.signaling_system_18  tpncp.signaling_system_18
        Signed 32-bit integer
    tpncp.signaling_system_19  tpncp.signaling_system_19
        Signed 32-bit integer
    tpncp.signaling_system_2  tpncp.signaling_system_2
        Signed 32-bit integer
    tpncp.signaling_system_20  tpncp.signaling_system_20
        Signed 32-bit integer
    tpncp.signaling_system_21  tpncp.signaling_system_21
        Signed 32-bit integer
    tpncp.signaling_system_22  tpncp.signaling_system_22
        Signed 32-bit integer
    tpncp.signaling_system_23  tpncp.signaling_system_23
        Signed 32-bit integer
    tpncp.signaling_system_24  tpncp.signaling_system_24
        Signed 32-bit integer
    tpncp.signaling_system_25  tpncp.signaling_system_25
        Signed 32-bit integer
    tpncp.signaling_system_26  tpncp.signaling_system_26
        Signed 32-bit integer
    tpncp.signaling_system_27  tpncp.signaling_system_27
        Signed 32-bit integer
    tpncp.signaling_system_28  tpncp.signaling_system_28
        Signed 32-bit integer
    tpncp.signaling_system_29  tpncp.signaling_system_29
        Signed 32-bit integer
    tpncp.signaling_system_3  tpncp.signaling_system_3
        Signed 32-bit integer
    tpncp.signaling_system_30  tpncp.signaling_system_30
        Signed 32-bit integer
    tpncp.signaling_system_31  tpncp.signaling_system_31
        Signed 32-bit integer
    tpncp.signaling_system_32  tpncp.signaling_system_32
        Signed 32-bit integer
    tpncp.signaling_system_33  tpncp.signaling_system_33
        Signed 32-bit integer
    tpncp.signaling_system_34  tpncp.signaling_system_34
        Signed 32-bit integer
    tpncp.signaling_system_35  tpncp.signaling_system_35
        Signed 32-bit integer
    tpncp.signaling_system_36  tpncp.signaling_system_36
        Signed 32-bit integer
    tpncp.signaling_system_37  tpncp.signaling_system_37
        Signed 32-bit integer
    tpncp.signaling_system_38  tpncp.signaling_system_38
        Signed 32-bit integer
    tpncp.signaling_system_39  tpncp.signaling_system_39
        Signed 32-bit integer
    tpncp.signaling_system_4  tpncp.signaling_system_4
        Signed 32-bit integer
    tpncp.signaling_system_5  tpncp.signaling_system_5
        Signed 32-bit integer
    tpncp.signaling_system_6  tpncp.signaling_system_6
        Signed 32-bit integer
    tpncp.signaling_system_7  tpncp.signaling_system_7
        Signed 32-bit integer
    tpncp.signaling_system_8  tpncp.signaling_system_8
        Signed 32-bit integer
    tpncp.signaling_system_9  tpncp.signaling_system_9
        Signed 32-bit integer
    tpncp.silence_length_between_iterations  tpncp.silence_length_between_iterations
        Unsigned 32-bit integer
    tpncp.single_listener_participant_id  tpncp.single_listener_participant_id
        Signed 32-bit integer
    tpncp.single_vcc  tpncp.single_vcc
        Unsigned 8-bit integer
    tpncp.size  tpncp.size
        Signed 32-bit integer
    tpncp.skip_interval  tpncp.skip_interval
        Signed 32-bit integer
    tpncp.slave_temperature  tpncp.slave_temperature
        Signed 32-bit integer
    tpncp.slc  tpncp.slc
        Signed 32-bit integer
    tpncp.sli  tpncp.sli
        Signed 32-bit integer
    tpncp.slot_name  tpncp.slot_name
        String
    tpncp.sls  tpncp.sls
        Signed 32-bit integer
    tpncp.smooth_average_round_trip  tpncp.smooth_average_round_trip
        Unsigned 32-bit integer
    tpncp.sn  tpncp.sn
        Signed 32-bit integer
    tpncp.sn_event_cause  tpncp.sn_event_cause
        Signed 32-bit integer
    tpncp.sn_timer_sets  tpncp.sn_timer_sets
        Signed 32-bit integer
    tpncp.sns_per_card  tpncp.sns_per_card
        Signed 32-bit integer
    tpncp.source  tpncp.source
        String
    tpncp.source_category  tpncp.source_category
        Signed 32-bit integer
    tpncp.source_cid  tpncp.source_cid
        Signed 32-bit integer
    tpncp.source_direction  tpncp.source_direction
        Signed 32-bit integer
    tpncp.source_ip_address_family  tpncp.source_ip_address_family
        Signed 32-bit integer
    tpncp.source_ip_ipv6_addr_0  tpncp.source_ip_ipv6_addr_0
        Unsigned 32-bit integer
    tpncp.source_ip_ipv6_addr_1  tpncp.source_ip_ipv6_addr_1
        Unsigned 32-bit integer
    tpncp.source_ip_ipv6_addr_2  tpncp.source_ip_ipv6_addr_2
        Unsigned 32-bit integer
    tpncp.source_ip_ipv6_addr_3  tpncp.source_ip_ipv6_addr_3
        Unsigned 32-bit integer
    tpncp.source_number_non_notification_reason  tpncp.source_number_non_notification_reason
        Signed 32-bit integer
    tpncp.source_number_plan  tpncp.source_number_plan
        Signed 32-bit integer
    tpncp.source_number_pres  tpncp.source_number_pres
        Signed 32-bit integer
    tpncp.source_number_screening  tpncp.source_number_screening
        Signed 32-bit integer
    tpncp.source_number_type  tpncp.source_number_type
        Signed 32-bit integer
    tpncp.source_phone_num  tpncp.source_phone_num
        String
    tpncp.source_phone_sub_num  tpncp.source_phone_sub_num
        String
    tpncp.source_route_failed  tpncp.source_route_failed
        Unsigned 32-bit integer
    tpncp.source_sub_address_format  tpncp.source_sub_address_format
        Signed 32-bit integer
    tpncp.source_sub_address_type  tpncp.source_sub_address_type
        Signed 32-bit integer
    tpncp.sp_stp  tpncp.sp_stp
        Signed 32-bit integer
    tpncp.speed  tpncp.speed
        Signed 32-bit integer
    tpncp.ss1_num_of_qsig_mwi_interrogate_result  tpncp.ss1_num_of_qsig_mwi_interrogate_result
        Unsigned 8-bit integer
    tpncp.ss1_qsig_mwi_interrogate_result_alignment  tpncp.ss1_qsig_mwi_interrogate_result_alignment
        String
    tpncp.ss2_num_of_qsig_mwi_interrogate_result  tpncp.ss2_num_of_qsig_mwi_interrogate_result
        Unsigned 8-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_alignment  tpncp.ss2_qsig_mwi_interrogate_result_alignment
        String
    tpncp.ss2_qsig_mwi_interrogate_result_basic_service_0  tpncp.ss2_qsig_mwi_interrogate_result_basic_service_0
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_basic_service_1  tpncp.ss2_qsig_mwi_interrogate_result_basic_service_1
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_basic_service_2  tpncp.ss2_qsig_mwi_interrogate_result_basic_service_2
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_basic_service_3  tpncp.ss2_qsig_mwi_interrogate_result_basic_service_3
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_basic_service_4  tpncp.ss2_qsig_mwi_interrogate_result_basic_service_4
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_basic_service_5  tpncp.ss2_qsig_mwi_interrogate_result_basic_service_5
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_basic_service_6  tpncp.ss2_qsig_mwi_interrogate_result_basic_service_6
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_basic_service_7  tpncp.ss2_qsig_mwi_interrogate_result_basic_service_7
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_basic_service_8  tpncp.ss2_qsig_mwi_interrogate_result_basic_service_8
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_basic_service_9  tpncp.ss2_qsig_mwi_interrogate_result_basic_service_9
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_extension_0  tpncp.ss2_qsig_mwi_interrogate_result_extension_0
        String
    tpncp.ss2_qsig_mwi_interrogate_result_extension_1  tpncp.ss2_qsig_mwi_interrogate_result_extension_1
        String
    tpncp.ss2_qsig_mwi_interrogate_result_extension_2  tpncp.ss2_qsig_mwi_interrogate_result_extension_2
        String
    tpncp.ss2_qsig_mwi_interrogate_result_extension_3  tpncp.ss2_qsig_mwi_interrogate_result_extension_3
        String
    tpncp.ss2_qsig_mwi_interrogate_result_extension_4  tpncp.ss2_qsig_mwi_interrogate_result_extension_4
        String
    tpncp.ss2_qsig_mwi_interrogate_result_extension_5  tpncp.ss2_qsig_mwi_interrogate_result_extension_5
        String
    tpncp.ss2_qsig_mwi_interrogate_result_extension_6  tpncp.ss2_qsig_mwi_interrogate_result_extension_6
        String
    tpncp.ss2_qsig_mwi_interrogate_result_extension_7  tpncp.ss2_qsig_mwi_interrogate_result_extension_7
        String
    tpncp.ss2_qsig_mwi_interrogate_result_extension_8  tpncp.ss2_qsig_mwi_interrogate_result_extension_8
        String
    tpncp.ss2_qsig_mwi_interrogate_result_extension_9  tpncp.ss2_qsig_mwi_interrogate_result_extension_9
        String
    tpncp.ss2_qsig_mwi_interrogate_result_extension_size_0  tpncp.ss2_qsig_mwi_interrogate_result_extension_size_0
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_extension_size_1  tpncp.ss2_qsig_mwi_interrogate_result_extension_size_1
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_extension_size_2  tpncp.ss2_qsig_mwi_interrogate_result_extension_size_2
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_extension_size_3  tpncp.ss2_qsig_mwi_interrogate_result_extension_size_3
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_extension_size_4  tpncp.ss2_qsig_mwi_interrogate_result_extension_size_4
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_extension_size_5  tpncp.ss2_qsig_mwi_interrogate_result_extension_size_5
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_extension_size_6  tpncp.ss2_qsig_mwi_interrogate_result_extension_size_6
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_extension_size_7  tpncp.ss2_qsig_mwi_interrogate_result_extension_size_7
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_extension_size_8  tpncp.ss2_qsig_mwi_interrogate_result_extension_size_8
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_extension_size_9  tpncp.ss2_qsig_mwi_interrogate_result_extension_size_9
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_0  tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_0
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_1  tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_1
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_2  tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_2
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_3  tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_3
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_4  tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_4
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_5  tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_5
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_6  tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_6
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_7  tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_7
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_8  tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_8
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_9  tpncp.ss2_qsig_mwi_interrogate_result_nb_of_messages_9
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_0  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_0
        String
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_1  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_1
        String
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_2  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_2
        String
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_3  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_3
        String
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_4  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_4
        String
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_5  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_5
        String
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_6  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_6
        String
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_7  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_7
        String
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_8  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_8
        String
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_9  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_number_9
        String
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_0  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_0
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_1  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_1
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_2  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_2
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_3  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_3
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_4  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_4
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_5  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_5
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_6  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_6
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_7  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_7
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_8  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_8
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_9  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_party_number_type_9
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_0  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_0
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_1  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_1
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_2  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_2
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_3  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_3
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_4  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_4
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_5  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_5
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_6  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_6
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_7  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_7
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_8  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_8
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_9  tpncp.ss2_qsig_mwi_interrogate_result_originating_nr_type_of_number_9
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_priority_0  tpncp.ss2_qsig_mwi_interrogate_result_priority_0
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_priority_1  tpncp.ss2_qsig_mwi_interrogate_result_priority_1
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_priority_2  tpncp.ss2_qsig_mwi_interrogate_result_priority_2
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_priority_3  tpncp.ss2_qsig_mwi_interrogate_result_priority_3
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_priority_4  tpncp.ss2_qsig_mwi_interrogate_result_priority_4
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_priority_5  tpncp.ss2_qsig_mwi_interrogate_result_priority_5
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_priority_6  tpncp.ss2_qsig_mwi_interrogate_result_priority_6
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_priority_7  tpncp.ss2_qsig_mwi_interrogate_result_priority_7
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_priority_8  tpncp.ss2_qsig_mwi_interrogate_result_priority_8
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_priority_9  tpncp.ss2_qsig_mwi_interrogate_result_priority_9
        Signed 32-bit integer
    tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_0  tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_0
        String
    tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_1  tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_1
        String
    tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_2  tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_2
        String
    tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_3  tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_3
        String
    tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_4  tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_4
        String
    tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_5  tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_5
        String
    tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_6  tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_6
        String
    tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_7  tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_7
        String
    tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_8  tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_8
        String
    tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_9  tpncp.ss2_qsig_mwi_interrogate_result_time_stamp_9
        String
    tpncp.ss7_additional_info  tpncp.ss7_additional_info
        String
    tpncp.ss7_config_text  tpncp.ss7_config_text
        String
    tpncp.ss7_mon_msg  tpncp.ss7_mon_msg
        String
    tpncp.ss7_mon_msg_size  tpncp.ss7_mon_msg_size
        Signed 32-bit integer
    tpncp.sscf_state  tpncp.sscf_state
        Unsigned 8-bit integer
    tpncp.sscop_state  tpncp.sscop_state
        Unsigned 8-bit integer
    tpncp.ssf_spare  tpncp.ssf_spare
        Signed 32-bit integer
    tpncp.ssrc  tpncp.ssrc
        Unsigned 32-bit integer
    tpncp.ssrc_sender  tpncp.ssrc_sender
        Unsigned 32-bit integer
    tpncp.start  tpncp.start
        Signed 32-bit integer
    tpncp.start_channel_id  tpncp.start_channel_id
        Signed 32-bit integer
    tpncp.start_end_testing  tpncp.start_end_testing
        Signed 32-bit integer
    tpncp.start_event  tpncp.start_event
        Signed 32-bit integer
    tpncp.start_index  tpncp.start_index
        Signed 32-bit integer
    tpncp.static_mapped_channels_count  tpncp.static_mapped_channels_count
        Signed 32-bit integer
    tpncp.status  tpncp.status
        Signed 32-bit integer
    tpncp.status_0  tpncp.status_0
        Signed 32-bit integer
    tpncp.status_1  tpncp.status_1
        Signed 32-bit integer
    tpncp.status_2  tpncp.status_2
        Signed 32-bit integer
    tpncp.status_3  tpncp.status_3
        Signed 32-bit integer
    tpncp.status_4  tpncp.status_4
        Signed 32-bit integer
    tpncp.status_flag  tpncp.status_flag
        Signed 32-bit integer
    tpncp.steady_signal  tpncp.steady_signal
        Signed 32-bit integer
    tpncp.stm_number  tpncp.stm_number
        Unsigned 8-bit integer
    tpncp.stop_mode  tpncp.stop_mode
        Signed 32-bit integer
    tpncp.stream_id  tpncp.stream_id
        Unsigned 32-bit integer
    tpncp.su_type  tpncp.su_type
        Signed 32-bit integer
    tpncp.sub_add_odd_indicator  tpncp.sub_add_odd_indicator
        Signed 32-bit integer
    tpncp.sub_add_type  tpncp.sub_add_type
        Signed 32-bit integer
    tpncp.sub_generic_event_family  tpncp.sub_generic_event_family
        Signed 32-bit integer
    tpncp.subnet_mask  tpncp.subnet_mask
        Unsigned 32-bit integer
    tpncp.subnet_mask_address_0  tpncp.subnet_mask_address_0
        Unsigned 32-bit integer
    tpncp.subnet_mask_address_1  tpncp.subnet_mask_address_1
        Unsigned 32-bit integer
    tpncp.subnet_mask_address_2  tpncp.subnet_mask_address_2
        Unsigned 32-bit integer
    tpncp.subnet_mask_address_3  tpncp.subnet_mask_address_3
        Unsigned 32-bit integer
    tpncp.subnet_mask_address_4  tpncp.subnet_mask_address_4
        Unsigned 32-bit integer
    tpncp.subnet_mask_address_5  tpncp.subnet_mask_address_5
        Unsigned 32-bit integer
    tpncp.subtype  tpncp.subtype
        Unsigned 8-bit integer
    tpncp.sum_additional_ts_enable  tpncp.sum_additional_ts_enable
        Unsigned 8-bit integer
    tpncp.sum_rtt  tpncp.sum_rtt
        Unsigned 32-bit integer
    tpncp.summation_detection_origin  tpncp.summation_detection_origin
        Signed 32-bit integer
    tpncp.suppress_end_event  tpncp.suppress_end_event
        Signed 32-bit integer
    tpncp.suppression_indicator  tpncp.suppression_indicator
        Signed 32-bit integer
    tpncp.suspend_call_action_code  tpncp.suspend_call_action_code
        Signed 32-bit integer
    tpncp.switching_option  tpncp.switching_option
        Signed 32-bit integer
    tpncp.sync_not_possible  tpncp.sync_not_possible
        Unsigned 16-bit integer
    tpncp.t1e1_span_code  tpncp.t1e1_span_code
        Signed 32-bit integer
    tpncp.t38_active  tpncp.t38_active
        Unsigned 8-bit integer
    tpncp.t38_fax_relay_ecm_mode  tpncp.t38_fax_relay_ecm_mode
        Unsigned 8-bit integer
    tpncp.t38_fax_relay_protection_mode  tpncp.t38_fax_relay_protection_mode
        Signed 32-bit integer
    tpncp.t38_fax_session_immediate_start  tpncp.t38_fax_session_immediate_start
        Unsigned 8-bit integer
    tpncp.t38_icmp_received_data_icmp_code_fragmentation_needed_and_df_set  tpncp.t38_icmp_received_data_icmp_code_fragmentation_needed_and_df_set
        Unsigned 32-bit integer
    tpncp.t38_icmp_received_data_icmp_code_host_unreachable  tpncp.t38_icmp_received_data_icmp_code_host_unreachable
        Unsigned 32-bit integer
    tpncp.t38_icmp_received_data_icmp_code_net_unreachable  tpncp.t38_icmp_received_data_icmp_code_net_unreachable
        Unsigned 32-bit integer
    tpncp.t38_icmp_received_data_icmp_code_port_unreachable  tpncp.t38_icmp_received_data_icmp_code_port_unreachable
        Unsigned 32-bit integer
    tpncp.t38_icmp_received_data_icmp_code_protocol_unreachable  tpncp.t38_icmp_received_data_icmp_code_protocol_unreachable
        Unsigned 32-bit integer
    tpncp.t38_icmp_received_data_icmp_code_source_route_failed  tpncp.t38_icmp_received_data_icmp_code_source_route_failed
        Unsigned 32-bit integer
    tpncp.t38_icmp_received_data_icmp_type  tpncp.t38_icmp_received_data_icmp_type
        Unsigned 8-bit integer
    tpncp.t38_icmp_received_data_icmp_unreachable_counter  tpncp.t38_icmp_received_data_icmp_unreachable_counter
        Unsigned 32-bit integer
    tpncp.t38_icmp_received_data_peer_info_ip_dst_addr  tpncp.t38_icmp_received_data_peer_info_ip_dst_addr
        Unsigned 32-bit integer
    tpncp.t38_icmp_received_data_peer_info_udp_dst_port  tpncp.t38_icmp_received_data_peer_info_udp_dst_port
        Unsigned 16-bit integer
    tpncp.t38_peer_info_ip_dst_addr  tpncp.t38_peer_info_ip_dst_addr
        Unsigned 32-bit integer
    tpncp.t38_peer_info_udp_dst_port  tpncp.t38_peer_info_udp_dst_port
        Unsigned 16-bit integer
    tpncp.tag  tpncp.tag
        Signed 32-bit integer
    tpncp.tag0  tpncp.tag0
        Signed 32-bit integer
    tpncp.tag1  tpncp.tag1
        Signed 32-bit integer
    tpncp.tag2  tpncp.tag2
        Signed 32-bit integer
    tpncp.talker_participant_id  tpncp.talker_participant_id
        Signed 32-bit integer
    tpncp.tar_file_url  tpncp.tar_file_url
        String
    tpncp.target_addr  tpncp.target_addr
        Signed 32-bit integer
    tpncp.tdm_bus_in  tpncp.tdm_bus_in
        Signed 32-bit integer
    tpncp.tdm_bus_input_channel  tpncp.tdm_bus_input_channel
        Unsigned 8-bit integer
    tpncp.tdm_bus_input_port  tpncp.tdm_bus_input_port
        Unsigned 8-bit integer
    tpncp.tdm_bus_out  tpncp.tdm_bus_out
        Signed 32-bit integer
    tpncp.tdm_bus_output_channel  tpncp.tdm_bus_output_channel
        Unsigned 8-bit integer
    tpncp.tdm_bus_output_disable  tpncp.tdm_bus_output_disable
        Unsigned 8-bit integer
    tpncp.tdm_bus_output_port  tpncp.tdm_bus_output_port
        Unsigned 8-bit integer
    tpncp.tdm_bus_type  tpncp.tdm_bus_type
        Signed 32-bit integer
    tpncp.temp  tpncp.temp
        Signed 32-bit integer
    tpncp.ter_type  tpncp.ter_type
        Signed 32-bit integer
    tpncp.termination_cause  tpncp.termination_cause
        Signed 32-bit integer
    tpncp.termination_result  tpncp.termination_result
        Signed 32-bit integer
    tpncp.termination_state  tpncp.termination_state
        Signed 32-bit integer
    tpncp.test_mode  tpncp.test_mode
        Signed 32-bit integer
    tpncp.test_result  tpncp.test_result
        Signed 32-bit integer
    tpncp.test_results  tpncp.test_results
        Signed 32-bit integer
    tpncp.test_tone_enable  tpncp.test_tone_enable
        Signed 32-bit integer
    tpncp.text_to_speak  tpncp.text_to_speak
        String
    tpncp.textual_description  tpncp.textual_description
        String
    tpncp.tfc  tpncp.tfc
        Signed 32-bit integer
    tpncp.tftp_server_ip  tpncp.tftp_server_ip
        Unsigned 32-bit integer
    tpncp.third_digit_country_code  tpncp.third_digit_country_code
        Unsigned 8-bit integer
    tpncp.third_tone_duration  tpncp.third_tone_duration
        Unsigned 32-bit integer
    tpncp.time  tpncp.time
        String
    tpncp.time_above_high_threshold  tpncp.time_above_high_threshold
        Signed 16-bit integer
    tpncp.time_below_low_threshold  tpncp.time_below_low_threshold
        Signed 16-bit integer
    tpncp.time_between_high_low_threshold  tpncp.time_between_high_low_threshold
        Signed 16-bit integer
    tpncp.time_milli_sec  tpncp.time_milli_sec
        Signed 16-bit integer
    tpncp.time_out_value  tpncp.time_out_value
        Unsigned 8-bit integer
    tpncp.time_sec  tpncp.time_sec
        Signed 32-bit integer
    tpncp.time_slot  tpncp.time_slot
        Signed 32-bit integer
    tpncp.time_slot_number  tpncp.time_slot_number
        Unsigned 8-bit integer
    tpncp.time_stamp  tpncp.time_stamp
        Unsigned 32-bit integer
    tpncp.time_stamp_0  tpncp.time_stamp_0
        String
    tpncp.time_stamp_1  tpncp.time_stamp_1
        String
    tpncp.time_stamp_2  tpncp.time_stamp_2
        String
    tpncp.time_stamp_3  tpncp.time_stamp_3
        String
    tpncp.time_stamp_4  tpncp.time_stamp_4
        String
    tpncp.time_stamp_5  tpncp.time_stamp_5
        String
    tpncp.time_stamp_6  tpncp.time_stamp_6
        String
    tpncp.time_stamp_7  tpncp.time_stamp_7
        String
    tpncp.time_stamp_8  tpncp.time_stamp_8
        String
    tpncp.time_stamp_9  tpncp.time_stamp_9
        String
    tpncp.timer_idx  tpncp.timer_idx
        Signed 32-bit integer
    tpncp.timeslot  tpncp.timeslot
        Signed 32-bit integer
    tpncp.to_entity  tpncp.to_entity
        Signed 32-bit integer
    tpncp.to_fiber_link  tpncp.to_fiber_link
        Signed 32-bit integer
    tpncp.to_trunk  tpncp.to_trunk
        Signed 32-bit integer
    tpncp.tone_component_reserved  tpncp.tone_component_reserved
        String
    tpncp.tone_component_reserved_0  tpncp.tone_component_reserved_0
        String
    tpncp.tone_component_reserved_1  tpncp.tone_component_reserved_1
        String
    tpncp.tone_duration  tpncp.tone_duration
        Unsigned 32-bit integer
    tpncp.tone_generation_interface  tpncp.tone_generation_interface
        Unsigned 8-bit integer
    tpncp.tone_index  tpncp.tone_index
        Signed 32-bit integer
    tpncp.tone_level  tpncp.tone_level
        Unsigned 32-bit integer
    tpncp.tone_number  tpncp.tone_number
        Signed 32-bit integer
    tpncp.tone_reserved  tpncp.tone_reserved
        String
    tpncp.tone_type  tpncp.tone_type
        Signed 32-bit integer
    tpncp.total  tpncp.total
        Signed 32-bit integer
    tpncp.total_duration_time  tpncp.total_duration_time
        Unsigned 32-bit integer
    tpncp.total_remote_file_length  tpncp.total_remote_file_length
        Signed 32-bit integer
    tpncp.total_vaild_dsp_channels_left  tpncp.total_vaild_dsp_channels_left
        Signed 32-bit integer
    tpncp.total_voice_prompt_length  tpncp.total_voice_prompt_length
        Signed 32-bit integer
    tpncp.tpncp_port  tpncp.tpncp_port
        Unsigned 32-bit integer
    tpncp.tpncpip  tpncp.tpncpip
        Unsigned 32-bit integer
    tpncp.tr08_alarm_format  tpncp.tr08_alarm_format
        Signed 32-bit integer
    tpncp.tr08_field  tpncp.tr08_field
        Signed 32-bit integer
    tpncp.tr08_group_id  tpncp.tr08_group_id
        Signed 32-bit integer
    tpncp.tr08_last_line_switch_received  tpncp.tr08_last_line_switch_received
        Signed 32-bit integer
    tpncp.tr08_line_switch  tpncp.tr08_line_switch
        Signed 32-bit integer
    tpncp.tr08_line_switch_state  tpncp.tr08_line_switch_state
        Signed 32-bit integer
    tpncp.tr08_maintenance_info_detection  tpncp.tr08_maintenance_info_detection
        Signed 32-bit integer
    tpncp.tr08_member  tpncp.tr08_member
        Signed 32-bit integer
    tpncp.trace_level  tpncp.trace_level
        Signed 32-bit integer
    tpncp.traffic_type  tpncp.traffic_type
        Unsigned 32-bit integer
    tpncp.transaction_id  tpncp.transaction_id
        Unsigned 32-bit integer
    tpncp.transceiver_port_state_0  tpncp.transceiver_port_state_0
        Signed 32-bit integer
    tpncp.transceiver_port_state_1  tpncp.transceiver_port_state_1
        Signed 32-bit integer
    tpncp.transceiver_port_state_2  tpncp.transceiver_port_state_2
        Signed 32-bit integer
    tpncp.transceiver_port_state_3  tpncp.transceiver_port_state_3
        Signed 32-bit integer
    tpncp.transceiver_port_state_4  tpncp.transceiver_port_state_4
        Signed 32-bit integer
    tpncp.transceiver_port_state_5  tpncp.transceiver_port_state_5
        Signed 32-bit integer
    tpncp.transceiver_port_state_6  tpncp.transceiver_port_state_6
        Signed 32-bit integer
    tpncp.transceiver_port_state_7  tpncp.transceiver_port_state_7
        Signed 32-bit integer
    tpncp.transceiver_port_state_8  tpncp.transceiver_port_state_8
        Signed 32-bit integer
    tpncp.transceiver_port_state_9  tpncp.transceiver_port_state_9
        Signed 32-bit integer
    tpncp.transcode  tpncp.transcode
        Unsigned 8-bit integer
    tpncp.transfer_cap  tpncp.transfer_cap
        Signed 32-bit integer
    tpncp.transmitted  tpncp.transmitted
        Unsigned 32-bit integer
    tpncp.transport_media  tpncp.transport_media
        Unsigned 8-bit integer
    tpncp.trap_acl_type  tpncp.trap_acl_type
        Signed 32-bit integer
    tpncp.trap_id  tpncp.trap_id
        Unsigned 32-bit integer
    tpncp.trap_uniq_id  tpncp.trap_uniq_id
        Signed 32-bit integer
    tpncp.trigger_cause  tpncp.trigger_cause
        Signed 32-bit integer
    tpncp.trigger_event  tpncp.trigger_event
        Signed 32-bit integer
    tpncp.trigger_on_duration  tpncp.trigger_on_duration
        Signed 32-bit integer
    tpncp.trunk  tpncp.trunk
        Signed 32-bit integer
    tpncp.trunk_b_channel  tpncp.trunk_b_channel
        Signed 16-bit integer
    tpncp.trunk_blocking_mode  tpncp.trunk_blocking_mode
        Signed 32-bit integer
    tpncp.trunk_blocking_mode_status  tpncp.trunk_blocking_mode_status
        Signed 32-bit integer
    tpncp.trunk_count  tpncp.trunk_count
        Signed 32-bit integer
    tpncp.trunk_id  tpncp.trunk_id
        Signed 32-bit integer
    tpncp.trunk_id1  tpncp.trunk_id1
        Signed 32-bit integer
    tpncp.trunk_id2  tpncp.trunk_id2
        Signed 32-bit integer
    tpncp.trunk_number  tpncp.trunk_number
        Signed 16-bit integer
    tpncp.trunk_number_0  tpncp.trunk_number_0
        Unsigned 32-bit integer
    tpncp.trunk_number_1  tpncp.trunk_number_1
        Unsigned 32-bit integer
    tpncp.trunk_number_10  tpncp.trunk_number_10
        Unsigned 32-bit integer
    tpncp.trunk_number_11  tpncp.trunk_number_11
        Unsigned 32-bit integer
    tpncp.trunk_number_12  tpncp.trunk_number_12
        Unsigned 32-bit integer
    tpncp.trunk_number_13  tpncp.trunk_number_13
        Unsigned 32-bit integer
    tpncp.trunk_number_14  tpncp.trunk_number_14
        Unsigned 32-bit integer
    tpncp.trunk_number_15  tpncp.trunk_number_15
        Unsigned 32-bit integer
    tpncp.trunk_number_16  tpncp.trunk_number_16
        Unsigned 32-bit integer
    tpncp.trunk_number_17  tpncp.trunk_number_17
        Unsigned 32-bit integer
    tpncp.trunk_number_18  tpncp.trunk_number_18
        Unsigned 32-bit integer
    tpncp.trunk_number_19  tpncp.trunk_number_19
        Unsigned 32-bit integer
    tpncp.trunk_number_2  tpncp.trunk_number_2
        Unsigned 32-bit integer
    tpncp.trunk_number_20  tpncp.trunk_number_20
        Unsigned 32-bit integer
    tpncp.trunk_number_21  tpncp.trunk_number_21
        Unsigned 32-bit integer
    tpncp.trunk_number_22  tpncp.trunk_number_22
        Unsigned 32-bit integer
    tpncp.trunk_number_23  tpncp.trunk_number_23
        Unsigned 32-bit integer
    tpncp.trunk_number_24  tpncp.trunk_number_24
        Unsigned 32-bit integer
    tpncp.trunk_number_25  tpncp.trunk_number_25
        Unsigned 32-bit integer
    tpncp.trunk_number_26  tpncp.trunk_number_26
        Unsigned 32-bit integer
    tpncp.trunk_number_27  tpncp.trunk_number_27
        Unsigned 32-bit integer
    tpncp.trunk_number_28  tpncp.trunk_number_28
        Unsigned 32-bit integer
    tpncp.trunk_number_29  tpncp.trunk_number_29
        Unsigned 32-bit integer
    tpncp.trunk_number_3  tpncp.trunk_number_3
        Unsigned 32-bit integer
    tpncp.trunk_number_30  tpncp.trunk_number_30
        Unsigned 32-bit integer
    tpncp.trunk_number_31  tpncp.trunk_number_31
        Unsigned 32-bit integer
    tpncp.trunk_number_32  tpncp.trunk_number_32
        Unsigned 32-bit integer
    tpncp.trunk_number_33  tpncp.trunk_number_33
        Unsigned 32-bit integer
    tpncp.trunk_number_34  tpncp.trunk_number_34
        Unsigned 32-bit integer
    tpncp.trunk_number_35  tpncp.trunk_number_35
        Unsigned 32-bit integer
    tpncp.trunk_number_36  tpncp.trunk_number_36
        Unsigned 32-bit integer
    tpncp.trunk_number_37  tpncp.trunk_number_37
        Unsigned 32-bit integer
    tpncp.trunk_number_38  tpncp.trunk_number_38
        Unsigned 32-bit integer
    tpncp.trunk_number_39  tpncp.trunk_number_39
        Unsigned 32-bit integer
    tpncp.trunk_number_4  tpncp.trunk_number_4
        Unsigned 32-bit integer
    tpncp.trunk_number_40  tpncp.trunk_number_40
        Unsigned 32-bit integer
    tpncp.trunk_number_41  tpncp.trunk_number_41
        Unsigned 32-bit integer
    tpncp.trunk_number_42  tpncp.trunk_number_42
        Unsigned 32-bit integer
    tpncp.trunk_number_43  tpncp.trunk_number_43
        Unsigned 32-bit integer
    tpncp.trunk_number_44  tpncp.trunk_number_44
        Unsigned 32-bit integer
    tpncp.trunk_number_45  tpncp.trunk_number_45
        Unsigned 32-bit integer
    tpncp.trunk_number_46  tpncp.trunk_number_46
        Unsigned 32-bit integer
    tpncp.trunk_number_47  tpncp.trunk_number_47
        Unsigned 32-bit integer
    tpncp.trunk_number_48  tpncp.trunk_number_48
        Unsigned 32-bit integer
    tpncp.trunk_number_49  tpncp.trunk_number_49
        Unsigned 32-bit integer
    tpncp.trunk_number_5  tpncp.trunk_number_5
        Unsigned 32-bit integer
    tpncp.trunk_number_50  tpncp.trunk_number_50
        Unsigned 32-bit integer
    tpncp.trunk_number_51  tpncp.trunk_number_51
        Unsigned 32-bit integer
    tpncp.trunk_number_52  tpncp.trunk_number_52
        Unsigned 32-bit integer
    tpncp.trunk_number_53  tpncp.trunk_number_53
        Unsigned 32-bit integer
    tpncp.trunk_number_54  tpncp.trunk_number_54
        Unsigned 32-bit integer
    tpncp.trunk_number_55  tpncp.trunk_number_55
        Unsigned 32-bit integer
    tpncp.trunk_number_56  tpncp.trunk_number_56
        Unsigned 32-bit integer
    tpncp.trunk_number_57  tpncp.trunk_number_57
        Unsigned 32-bit integer
    tpncp.trunk_number_58  tpncp.trunk_number_58
        Unsigned 32-bit integer
    tpncp.trunk_number_59  tpncp.trunk_number_59
        Unsigned 32-bit integer
    tpncp.trunk_number_6  tpncp.trunk_number_6
        Unsigned 32-bit integer
    tpncp.trunk_number_60  tpncp.trunk_number_60
        Unsigned 32-bit integer
    tpncp.trunk_number_61  tpncp.trunk_number_61
        Unsigned 32-bit integer
    tpncp.trunk_number_62  tpncp.trunk_number_62
        Unsigned 32-bit integer
    tpncp.trunk_number_63  tpncp.trunk_number_63
        Unsigned 32-bit integer
    tpncp.trunk_number_64  tpncp.trunk_number_64
        Unsigned 32-bit integer
    tpncp.trunk_number_65  tpncp.trunk_number_65
        Unsigned 32-bit integer
    tpncp.trunk_number_66  tpncp.trunk_number_66
        Unsigned 32-bit integer
    tpncp.trunk_number_67  tpncp.trunk_number_67
        Unsigned 32-bit integer
    tpncp.trunk_number_68  tpncp.trunk_number_68
        Unsigned 32-bit integer
    tpncp.trunk_number_69  tpncp.trunk_number_69
        Unsigned 32-bit integer
    tpncp.trunk_number_7  tpncp.trunk_number_7
        Unsigned 32-bit integer
    tpncp.trunk_number_70  tpncp.trunk_number_70
        Unsigned 32-bit integer
    tpncp.trunk_number_71  tpncp.trunk_number_71
        Unsigned 32-bit integer
    tpncp.trunk_number_72  tpncp.trunk_number_72
        Unsigned 32-bit integer
    tpncp.trunk_number_73  tpncp.trunk_number_73
        Unsigned 32-bit integer
    tpncp.trunk_number_74  tpncp.trunk_number_74
        Unsigned 32-bit integer
    tpncp.trunk_number_75  tpncp.trunk_number_75
        Unsigned 32-bit integer
    tpncp.trunk_number_76  tpncp.trunk_number_76
        Unsigned 32-bit integer
    tpncp.trunk_number_77  tpncp.trunk_number_77
        Unsigned 32-bit integer
    tpncp.trunk_number_78  tpncp.trunk_number_78
        Unsigned 32-bit integer
    tpncp.trunk_number_79  tpncp.trunk_number_79
        Unsigned 32-bit integer
    tpncp.trunk_number_8  tpncp.trunk_number_8
        Unsigned 32-bit integer
    tpncp.trunk_number_80  tpncp.trunk_number_80
        Unsigned 32-bit integer
    tpncp.trunk_number_81  tpncp.trunk_number_81
        Unsigned 32-bit integer
    tpncp.trunk_number_82  tpncp.trunk_number_82
        Unsigned 32-bit integer
    tpncp.trunk_number_83  tpncp.trunk_number_83
        Unsigned 32-bit integer
    tpncp.trunk_number_9  tpncp.trunk_number_9
        Unsigned 32-bit integer
    tpncp.trunk_pack_software_compilation_type  tpncp.trunk_pack_software_compilation_type
        Unsigned 8-bit integer
    tpncp.trunk_pack_software_date  tpncp.trunk_pack_software_date
        String
    tpncp.trunk_pack_software_fix_num  tpncp.trunk_pack_software_fix_num
        Signed 32-bit integer
    tpncp.trunk_pack_software_minor_ver  tpncp.trunk_pack_software_minor_ver
        Signed 32-bit integer
    tpncp.trunk_pack_software_stream_name  tpncp.trunk_pack_software_stream_name
        String
    tpncp.trunk_pack_software_ver  tpncp.trunk_pack_software_ver
        Signed 32-bit integer
    tpncp.trunk_pack_software_version_string  tpncp.trunk_pack_software_version_string
        String
    tpncp.trunk_status  tpncp.trunk_status
        Signed 32-bit integer
    tpncp.trunk_testing_fsk_duration  tpncp.trunk_testing_fsk_duration
        Signed 32-bit integer
    tpncp.ts_trib_inst  tpncp.ts_trib_inst
        Unsigned 32-bit integer
    tpncp.tty_transport_type  tpncp.tty_transport_type
        Unsigned 8-bit integer
    tpncp.tu_digit  tpncp.tu_digit
        Unsigned 32-bit integer
    tpncp.tu_digit_0  tpncp.tu_digit_0
        Unsigned 32-bit integer
    tpncp.tu_digit_1  tpncp.tu_digit_1
        Unsigned 32-bit integer
    tpncp.tu_digit_10  tpncp.tu_digit_10
        Unsigned 32-bit integer
    tpncp.tu_digit_11  tpncp.tu_digit_11
        Unsigned 32-bit integer
    tpncp.tu_digit_12  tpncp.tu_digit_12
        Unsigned 32-bit integer
    tpncp.tu_digit_13  tpncp.tu_digit_13
        Unsigned 32-bit integer
    tpncp.tu_digit_14  tpncp.tu_digit_14
        Unsigned 32-bit integer
    tpncp.tu_digit_15  tpncp.tu_digit_15
        Unsigned 32-bit integer
    tpncp.tu_digit_16  tpncp.tu_digit_16
        Unsigned 32-bit integer
    tpncp.tu_digit_17  tpncp.tu_digit_17
        Unsigned 32-bit integer
    tpncp.tu_digit_18  tpncp.tu_digit_18
        Unsigned 32-bit integer
    tpncp.tu_digit_19  tpncp.tu_digit_19
        Unsigned 32-bit integer
    tpncp.tu_digit_2  tpncp.tu_digit_2
        Unsigned 32-bit integer
    tpncp.tu_digit_20  tpncp.tu_digit_20
        Unsigned 32-bit integer
    tpncp.tu_digit_21  tpncp.tu_digit_21
        Unsigned 32-bit integer
    tpncp.tu_digit_22  tpncp.tu_digit_22
        Unsigned 32-bit integer
    tpncp.tu_digit_23  tpncp.tu_digit_23
        Unsigned 32-bit integer
    tpncp.tu_digit_24  tpncp.tu_digit_24
        Unsigned 32-bit integer
    tpncp.tu_digit_25  tpncp.tu_digit_25
        Unsigned 32-bit integer
    tpncp.tu_digit_26  tpncp.tu_digit_26
        Unsigned 32-bit integer
    tpncp.tu_digit_27  tpncp.tu_digit_27
        Unsigned 32-bit integer
    tpncp.tu_digit_28  tpncp.tu_digit_28
        Unsigned 32-bit integer
    tpncp.tu_digit_29  tpncp.tu_digit_29
        Unsigned 32-bit integer
    tpncp.tu_digit_3  tpncp.tu_digit_3
        Unsigned 32-bit integer
    tpncp.tu_digit_30  tpncp.tu_digit_30
        Unsigned 32-bit integer
    tpncp.tu_digit_31  tpncp.tu_digit_31
        Unsigned 32-bit integer
    tpncp.tu_digit_32  tpncp.tu_digit_32
        Unsigned 32-bit integer
    tpncp.tu_digit_33  tpncp.tu_digit_33
        Unsigned 32-bit integer
    tpncp.tu_digit_34  tpncp.tu_digit_34
        Unsigned 32-bit integer
    tpncp.tu_digit_35  tpncp.tu_digit_35
        Unsigned 32-bit integer
    tpncp.tu_digit_36  tpncp.tu_digit_36
        Unsigned 32-bit integer
    tpncp.tu_digit_37  tpncp.tu_digit_37
        Unsigned 32-bit integer
    tpncp.tu_digit_38  tpncp.tu_digit_38
        Unsigned 32-bit integer
    tpncp.tu_digit_39  tpncp.tu_digit_39
        Unsigned 32-bit integer
    tpncp.tu_digit_4  tpncp.tu_digit_4
        Unsigned 32-bit integer
    tpncp.tu_digit_40  tpncp.tu_digit_40
        Unsigned 32-bit integer
    tpncp.tu_digit_41  tpncp.tu_digit_41
        Unsigned 32-bit integer
    tpncp.tu_digit_42  tpncp.tu_digit_42
        Unsigned 32-bit integer
    tpncp.tu_digit_43  tpncp.tu_digit_43
        Unsigned 32-bit integer
    tpncp.tu_digit_44  tpncp.tu_digit_44
        Unsigned 32-bit integer
    tpncp.tu_digit_45  tpncp.tu_digit_45
        Unsigned 32-bit integer
    tpncp.tu_digit_46  tpncp.tu_digit_46
        Unsigned 32-bit integer
    tpncp.tu_digit_47  tpncp.tu_digit_47
        Unsigned 32-bit integer
    tpncp.tu_digit_48  tpncp.tu_digit_48
        Unsigned 32-bit integer
    tpncp.tu_digit_49  tpncp.tu_digit_49
        Unsigned 32-bit integer
    tpncp.tu_digit_5  tpncp.tu_digit_5
        Unsigned 32-bit integer
    tpncp.tu_digit_50  tpncp.tu_digit_50
        Unsigned 32-bit integer
    tpncp.tu_digit_51  tpncp.tu_digit_51
        Unsigned 32-bit integer
    tpncp.tu_digit_52  tpncp.tu_digit_52
        Unsigned 32-bit integer
    tpncp.tu_digit_53  tpncp.tu_digit_53
        Unsigned 32-bit integer
    tpncp.tu_digit_54  tpncp.tu_digit_54
        Unsigned 32-bit integer
    tpncp.tu_digit_55  tpncp.tu_digit_55
        Unsigned 32-bit integer
    tpncp.tu_digit_56  tpncp.tu_digit_56
        Unsigned 32-bit integer
    tpncp.tu_digit_57  tpncp.tu_digit_57
        Unsigned 32-bit integer
    tpncp.tu_digit_58  tpncp.tu_digit_58
        Unsigned 32-bit integer
    tpncp.tu_digit_59  tpncp.tu_digit_59
        Unsigned 32-bit integer
    tpncp.tu_digit_6  tpncp.tu_digit_6
        Unsigned 32-bit integer
    tpncp.tu_digit_60  tpncp.tu_digit_60
        Unsigned 32-bit integer
    tpncp.tu_digit_61  tpncp.tu_digit_61
        Unsigned 32-bit integer
    tpncp.tu_digit_62  tpncp.tu_digit_62
        Unsigned 32-bit integer
    tpncp.tu_digit_63  tpncp.tu_digit_63
        Unsigned 32-bit integer
    tpncp.tu_digit_64  tpncp.tu_digit_64
        Unsigned 32-bit integer
    tpncp.tu_digit_65  tpncp.tu_digit_65
        Unsigned 32-bit integer
    tpncp.tu_digit_66  tpncp.tu_digit_66
        Unsigned 32-bit integer
    tpncp.tu_digit_67  tpncp.tu_digit_67
        Unsigned 32-bit integer
    tpncp.tu_digit_68  tpncp.tu_digit_68
        Unsigned 32-bit integer
    tpncp.tu_digit_69  tpncp.tu_digit_69
        Unsigned 32-bit integer
    tpncp.tu_digit_7  tpncp.tu_digit_7
        Unsigned 32-bit integer
    tpncp.tu_digit_70  tpncp.tu_digit_70
        Unsigned 32-bit integer
    tpncp.tu_digit_71  tpncp.tu_digit_71
        Unsigned 32-bit integer
    tpncp.tu_digit_72  tpncp.tu_digit_72
        Unsigned 32-bit integer
    tpncp.tu_digit_73  tpncp.tu_digit_73
        Unsigned 32-bit integer
    tpncp.tu_digit_74  tpncp.tu_digit_74
        Unsigned 32-bit integer
    tpncp.tu_digit_75  tpncp.tu_digit_75
        Unsigned 32-bit integer
    tpncp.tu_digit_76  tpncp.tu_digit_76
        Unsigned 32-bit integer
    tpncp.tu_digit_77  tpncp.tu_digit_77
        Unsigned 32-bit integer
    tpncp.tu_digit_78  tpncp.tu_digit_78
        Unsigned 32-bit integer
    tpncp.tu_digit_79  tpncp.tu_digit_79
        Unsigned 32-bit integer
    tpncp.tu_digit_8  tpncp.tu_digit_8
        Unsigned 32-bit integer
    tpncp.tu_digit_80  tpncp.tu_digit_80
        Unsigned 32-bit integer
    tpncp.tu_digit_81  tpncp.tu_digit_81
        Unsigned 32-bit integer
    tpncp.tu_digit_82  tpncp.tu_digit_82
        Unsigned 32-bit integer
    tpncp.tu_digit_83  tpncp.tu_digit_83
        Unsigned 32-bit integer
    tpncp.tu_digit_9  tpncp.tu_digit_9
        Unsigned 32-bit integer
    tpncp.tu_number  tpncp.tu_number
        Unsigned 8-bit integer
    tpncp.tug2_digit  tpncp.tug2_digit
        Unsigned 32-bit integer
    tpncp.tug2_digit_0  tpncp.tug2_digit_0
        Unsigned 32-bit integer
    tpncp.tug2_digit_1  tpncp.tug2_digit_1
        Unsigned 32-bit integer
    tpncp.tug2_digit_10  tpncp.tug2_digit_10
        Unsigned 32-bit integer
    tpncp.tug2_digit_11  tpncp.tug2_digit_11
        Unsigned 32-bit integer
    tpncp.tug2_digit_12  tpncp.tug2_digit_12
        Unsigned 32-bit integer
    tpncp.tug2_digit_13  tpncp.tug2_digit_13
        Unsigned 32-bit integer
    tpncp.tug2_digit_14  tpncp.tug2_digit_14
        Unsigned 32-bit integer
    tpncp.tug2_digit_15  tpncp.tug2_digit_15
        Unsigned 32-bit integer
    tpncp.tug2_digit_16  tpncp.tug2_digit_16
        Unsigned 32-bit integer
    tpncp.tug2_digit_17  tpncp.tug2_digit_17
        Unsigned 32-bit integer
    tpncp.tug2_digit_18  tpncp.tug2_digit_18
        Unsigned 32-bit integer
    tpncp.tug2_digit_19  tpncp.tug2_digit_19
        Unsigned 32-bit integer
    tpncp.tug2_digit_2  tpncp.tug2_digit_2
        Unsigned 32-bit integer
    tpncp.tug2_digit_20  tpncp.tug2_digit_20
        Unsigned 32-bit integer
    tpncp.tug2_digit_21  tpncp.tug2_digit_21
        Unsigned 32-bit integer
    tpncp.tug2_digit_22  tpncp.tug2_digit_22
        Unsigned 32-bit integer
    tpncp.tug2_digit_23  tpncp.tug2_digit_23
        Unsigned 32-bit integer
    tpncp.tug2_digit_24  tpncp.tug2_digit_24
        Unsigned 32-bit integer
    tpncp.tug2_digit_25  tpncp.tug2_digit_25
        Unsigned 32-bit integer
    tpncp.tug2_digit_26  tpncp.tug2_digit_26
        Unsigned 32-bit integer
    tpncp.tug2_digit_27  tpncp.tug2_digit_27
        Unsigned 32-bit integer
    tpncp.tug2_digit_28  tpncp.tug2_digit_28
        Unsigned 32-bit integer
    tpncp.tug2_digit_29  tpncp.tug2_digit_29
        Unsigned 32-bit integer
    tpncp.tug2_digit_3  tpncp.tug2_digit_3
        Unsigned 32-bit integer
    tpncp.tug2_digit_30  tpncp.tug2_digit_30
        Unsigned 32-bit integer
    tpncp.tug2_digit_31  tpncp.tug2_digit_31
        Unsigned 32-bit integer
    tpncp.tug2_digit_32  tpncp.tug2_digit_32
        Unsigned 32-bit integer
    tpncp.tug2_digit_33  tpncp.tug2_digit_33
        Unsigned 32-bit integer
    tpncp.tug2_digit_34  tpncp.tug2_digit_34
        Unsigned 32-bit integer
    tpncp.tug2_digit_35  tpncp.tug2_digit_35
        Unsigned 32-bit integer
    tpncp.tug2_digit_36  tpncp.tug2_digit_36
        Unsigned 32-bit integer
    tpncp.tug2_digit_37  tpncp.tug2_digit_37
        Unsigned 32-bit integer
    tpncp.tug2_digit_38  tpncp.tug2_digit_38
        Unsigned 32-bit integer
    tpncp.tug2_digit_39  tpncp.tug2_digit_39
        Unsigned 32-bit integer
    tpncp.tug2_digit_4  tpncp.tug2_digit_4
        Unsigned 32-bit integer
    tpncp.tug2_digit_40  tpncp.tug2_digit_40
        Unsigned 32-bit integer
    tpncp.tug2_digit_41  tpncp.tug2_digit_41
        Unsigned 32-bit integer
    tpncp.tug2_digit_42  tpncp.tug2_digit_42
        Unsigned 32-bit integer
    tpncp.tug2_digit_43  tpncp.tug2_digit_43
        Unsigned 32-bit integer
    tpncp.tug2_digit_44  tpncp.tug2_digit_44
        Unsigned 32-bit integer
    tpncp.tug2_digit_45  tpncp.tug2_digit_45
        Unsigned 32-bit integer
    tpncp.tug2_digit_46  tpncp.tug2_digit_46
        Unsigned 32-bit integer
    tpncp.tug2_digit_47  tpncp.tug2_digit_47
        Unsigned 32-bit integer
    tpncp.tug2_digit_48  tpncp.tug2_digit_48
        Unsigned 32-bit integer
    tpncp.tug2_digit_49  tpncp.tug2_digit_49
        Unsigned 32-bit integer
    tpncp.tug2_digit_5  tpncp.tug2_digit_5
        Unsigned 32-bit integer
    tpncp.tug2_digit_50  tpncp.tug2_digit_50
        Unsigned 32-bit integer
    tpncp.tug2_digit_51  tpncp.tug2_digit_51
        Unsigned 32-bit integer
    tpncp.tug2_digit_52  tpncp.tug2_digit_52
        Unsigned 32-bit integer
    tpncp.tug2_digit_53  tpncp.tug2_digit_53
        Unsigned 32-bit integer
    tpncp.tug2_digit_54  tpncp.tug2_digit_54
        Unsigned 32-bit integer
    tpncp.tug2_digit_55  tpncp.tug2_digit_55
        Unsigned 32-bit integer
    tpncp.tug2_digit_56  tpncp.tug2_digit_56
        Unsigned 32-bit integer
    tpncp.tug2_digit_57  tpncp.tug2_digit_57
        Unsigned 32-bit integer
    tpncp.tug2_digit_58  tpncp.tug2_digit_58
        Unsigned 32-bit integer
    tpncp.tug2_digit_59  tpncp.tug2_digit_59
        Unsigned 32-bit integer
    tpncp.tug2_digit_6  tpncp.tug2_digit_6
        Unsigned 32-bit integer
    tpncp.tug2_digit_60  tpncp.tug2_digit_60
        Unsigned 32-bit integer
    tpncp.tug2_digit_61  tpncp.tug2_digit_61
        Unsigned 32-bit integer
    tpncp.tug2_digit_62  tpncp.tug2_digit_62
        Unsigned 32-bit integer
    tpncp.tug2_digit_63  tpncp.tug2_digit_63
        Unsigned 32-bit integer
    tpncp.tug2_digit_64  tpncp.tug2_digit_64
        Unsigned 32-bit integer
    tpncp.tug2_digit_65  tpncp.tug2_digit_65
        Unsigned 32-bit integer
    tpncp.tug2_digit_66  tpncp.tug2_digit_66
        Unsigned 32-bit integer
    tpncp.tug2_digit_67  tpncp.tug2_digit_67
        Unsigned 32-bit integer
    tpncp.tug2_digit_68  tpncp.tug2_digit_68
        Unsigned 32-bit integer
    tpncp.tug2_digit_69  tpncp.tug2_digit_69
        Unsigned 32-bit integer
    tpncp.tug2_digit_7  tpncp.tug2_digit_7
        Unsigned 32-bit integer
    tpncp.tug2_digit_70  tpncp.tug2_digit_70
        Unsigned 32-bit integer
    tpncp.tug2_digit_71  tpncp.tug2_digit_71
        Unsigned 32-bit integer
    tpncp.tug2_digit_72  tpncp.tug2_digit_72
        Unsigned 32-bit integer
    tpncp.tug2_digit_73  tpncp.tug2_digit_73
        Unsigned 32-bit integer
    tpncp.tug2_digit_74  tpncp.tug2_digit_74
        Unsigned 32-bit integer
    tpncp.tug2_digit_75  tpncp.tug2_digit_75
        Unsigned 32-bit integer
    tpncp.tug2_digit_76  tpncp.tug2_digit_76
        Unsigned 32-bit integer
    tpncp.tug2_digit_77  tpncp.tug2_digit_77
        Unsigned 32-bit integer
    tpncp.tug2_digit_78  tpncp.tug2_digit_78
        Unsigned 32-bit integer
    tpncp.tug2_digit_79  tpncp.tug2_digit_79
        Unsigned 32-bit integer
    tpncp.tug2_digit_8  tpncp.tug2_digit_8
        Unsigned 32-bit integer
    tpncp.tug2_digit_80  tpncp.tug2_digit_80
        Unsigned 32-bit integer
    tpncp.tug2_digit_81  tpncp.tug2_digit_81
        Unsigned 32-bit integer
    tpncp.tug2_digit_82  tpncp.tug2_digit_82
        Unsigned 32-bit integer
    tpncp.tug2_digit_83  tpncp.tug2_digit_83
        Unsigned 32-bit integer
    tpncp.tug2_digit_9  tpncp.tug2_digit_9
        Unsigned 32-bit integer
    tpncp.tug_number  tpncp.tug_number
        Unsigned 8-bit integer
    tpncp.tunnel_id  tpncp.tunnel_id
        Signed 32-bit integer
    tpncp.tx_bytes  tpncp.tx_bytes
        Unsigned 32-bit integer
    tpncp.tx_dtmf_hang_over_time  tpncp.tx_dtmf_hang_over_time
        Signed 16-bit integer
    tpncp.tx_last_cas  tpncp.tx_last_cas
        Unsigned 8-bit integer
    tpncp.tx_last_em  tpncp.tx_last_em
        Unsigned 8-bit integer
    tpncp.tx_monitor_signaling_changes_only  tpncp.tx_monitor_signaling_changes_only
        Unsigned 8-bit integer
    tpncp.tx_over_run_cnt  tpncp.tx_over_run_cnt
        Unsigned 16-bit integer
    tpncp.tx_relay_mode  tpncp.tx_relay_mode
        Unsigned 8-bit integer
    tpncp.tx_rtcp_privacy_key  tpncp.tx_rtcp_privacy_key
        String
    tpncp.tx_rtcpmac_key  tpncp.tx_rtcpmac_key
        String
    tpncp.tx_rtp_initialization_key  tpncp.tx_rtp_initialization_key
        String
    tpncp.tx_rtp_payload_type  tpncp.tx_rtp_payload_type
        Signed 32-bit integer
    tpncp.tx_rtp_privacy_key  tpncp.tx_rtp_privacy_key
        String
    tpncp.tx_rtp_time_stamp  tpncp.tx_rtp_time_stamp
        Unsigned 32-bit integer
    tpncp.tx_rtpmac_key  tpncp.tx_rtpmac_key
        String
    tpncp.type  tpncp.type
        Signed 32-bit integer
    tpncp.type_of_calling_user  tpncp.type_of_calling_user
        Unsigned 8-bit integer
    tpncp.type_of_forwarded_call  tpncp.type_of_forwarded_call
        Unsigned 8-bit integer
    tpncp.type_of_number  tpncp.type_of_number
        Unsigned 8-bit integer
    tpncp.type_of_number_0  tpncp.type_of_number_0
        Signed 32-bit integer
    tpncp.type_of_number_1  tpncp.type_of_number_1
        Signed 32-bit integer
    tpncp.type_of_number_2  tpncp.type_of_number_2
        Signed 32-bit integer
    tpncp.type_of_number_3  tpncp.type_of_number_3
        Signed 32-bit integer
    tpncp.type_of_number_4  tpncp.type_of_number_4
        Signed 32-bit integer
    tpncp.type_of_number_5  tpncp.type_of_number_5
        Signed 32-bit integer
    tpncp.type_of_number_6  tpncp.type_of_number_6
        Signed 32-bit integer
    tpncp.type_of_number_7  tpncp.type_of_number_7
        Signed 32-bit integer
    tpncp.type_of_number_8  tpncp.type_of_number_8
        Signed 32-bit integer
    tpncp.type_of_number_9  tpncp.type_of_number_9
        Signed 32-bit integer
    tpncp.udp_dst_port  tpncp.udp_dst_port
        Unsigned 16-bit integer
    tpncp.umts_protocol_mode  tpncp.umts_protocol_mode
        Unsigned 8-bit integer
    tpncp.un_available_seconds  tpncp.un_available_seconds
        Signed 32-bit integer
    tpncp.under_run_cnt  tpncp.under_run_cnt
        Unsigned 32-bit integer
    tpncp.uneq  tpncp.uneq
        Signed 32-bit integer
    tpncp.uni_directional_pci_mode  tpncp.uni_directional_pci_mode
        Signed 32-bit integer
    tpncp.uni_directional_rtp  tpncp.uni_directional_rtp
        Unsigned 8-bit integer
    tpncp.unlocked_clock  tpncp.unlocked_clock
        Signed 32-bit integer
    tpncp.up_down  tpncp.up_down
        Unsigned 32-bit integer
    tpncp.up_iu_deliver_erroneous_sdu  tpncp.up_iu_deliver_erroneous_sdu
        Unsigned 8-bit integer
    tpncp.up_local_rate  tpncp.up_local_rate
        Unsigned 8-bit integer
    tpncp.up_mode  tpncp.up_mode
        Unsigned 8-bit integer
    tpncp.up_pcm_coder  tpncp.up_pcm_coder
        Unsigned 8-bit integer
    tpncp.up_pdu_type  tpncp.up_pdu_type
        Unsigned 8-bit integer
    tpncp.up_remote_rate  tpncp.up_remote_rate
        Unsigned 8-bit integer
    tpncp.up_rfci_indicators  tpncp.up_rfci_indicators
        Unsigned 16-bit integer
    tpncp.up_rfci_values  tpncp.up_rfci_values
        String
    tpncp.up_support_mode_type  tpncp.up_support_mode_type
        Unsigned 8-bit integer
    tpncp.up_time  tpncp.up_time
        Signed 32-bit integer
    tpncp.up_version  tpncp.up_version
        Unsigned 16-bit integer
    tpncp.url_to_remote_file  tpncp.url_to_remote_file
        String
    tpncp.use_channel_id_as_dsp_handle  tpncp.use_channel_id_as_dsp_handle
        Signed 32-bit integer
    tpncp.use_end_dial_key  tpncp.use_end_dial_key
        Signed 32-bit integer
    tpncp.use_ni_or_pci  tpncp.use_ni_or_pci
        Unsigned 8-bit integer
    tpncp.user_data  tpncp.user_data
        Unsigned 16-bit integer
    tpncp.user_info_l1_protocol  tpncp.user_info_l1_protocol
        Signed 32-bit integer
    tpncp.utterance  tpncp.utterance
        String
    tpncp.uui_data  tpncp.uui_data
        String
    tpncp.uui_data_length  tpncp.uui_data_length
        Signed 32-bit integer
    tpncp.uui_protocol_description  tpncp.uui_protocol_description
        Signed 32-bit integer
    tpncp.uui_sequence_num  tpncp.uui_sequence_num
        Signed 32-bit integer
    tpncp.v150_channel_count  tpncp.v150_channel_count
        Signed 32-bit integer
    tpncp.v21_modem_transport_type  tpncp.v21_modem_transport_type
        Signed 32-bit integer
    tpncp.v22_modem_transport_type  tpncp.v22_modem_transport_type
        Signed 32-bit integer
    tpncp.v23_modem_transport_type  tpncp.v23_modem_transport_type
        Signed 32-bit integer
    tpncp.v32_modem_transport_type  tpncp.v32_modem_transport_type
        Signed 32-bit integer
    tpncp.v34_fax_transport_type  tpncp.v34_fax_transport_type
        Signed 32-bit integer
    tpncp.v34_modem_transport_type  tpncp.v34_modem_transport_type
        Signed 32-bit integer
    tpncp.v5_bcc_process_id  tpncp.v5_bcc_process_id
        Signed 32-bit integer
    tpncp.v5_confirmation_ind  tpncp.v5_confirmation_ind
        Signed 32-bit integer
    tpncp.v5_interface_id  tpncp.v5_interface_id
        Signed 32-bit integer
    tpncp.v5_reason_type  tpncp.v5_reason_type
        Signed 32-bit integer
    tpncp.v5_reject_cause  tpncp.v5_reject_cause
        Signed 32-bit integer
    tpncp.v5_trace_level  tpncp.v5_trace_level
        Signed 32-bit integer
    tpncp.v5_user_port_id  tpncp.v5_user_port_id
        Signed 32-bit integer
    tpncp.val  tpncp.val
        Signed 32-bit integer
    tpncp.value  tpncp.value
        Signed 32-bit integer
    tpncp.variant  tpncp.variant
        Signed 32-bit integer
    tpncp.vbr_coder_hangover  tpncp.vbr_coder_hangover
        Unsigned 8-bit integer
    tpncp.vbr_coder_header_format  tpncp.vbr_coder_header_format
        Unsigned 8-bit integer
    tpncp.vbr_coder_noise_suppression  tpncp.vbr_coder_noise_suppression
        Unsigned 8-bit integer
    tpncp.vcc_handle  tpncp.vcc_handle
        Unsigned 32-bit integer
    tpncp.vcc_id  tpncp.vcc_id
        Signed 32-bit integer
    tpncp.vcc_params_atm_port  tpncp.vcc_params_atm_port
        Unsigned 32-bit integer
    tpncp.vcc_params_vci  tpncp.vcc_params_vci
        Unsigned 32-bit integer
    tpncp.vcc_params_vpi  tpncp.vcc_params_vpi
        Unsigned 32-bit integer
    tpncp.vci  tpncp.vci
        Unsigned 16-bit integer
    tpncp.vci_lsb  tpncp.vci_lsb
        Unsigned 8-bit integer
    tpncp.vci_msb  tpncp.vci_msb
        Unsigned 8-bit integer
    tpncp.version  Version
        Unsigned 16-bit integer
    tpncp.video_broken_connection_event_activation_mode  tpncp.video_broken_connection_event_activation_mode
        Unsigned 8-bit integer
    tpncp.video_broken_connection_event_timeout  tpncp.video_broken_connection_event_timeout
        Unsigned 32-bit integer
    tpncp.video_buffering_verifier_occupancy  tpncp.video_buffering_verifier_occupancy
        Unsigned 8-bit integer
    tpncp.video_buffering_verifier_size  tpncp.video_buffering_verifier_size
        Signed 32-bit integer
    tpncp.video_conference_switching_interval  tpncp.video_conference_switching_interval
        Signed 32-bit integer
    tpncp.video_decoder_coder  tpncp.video_decoder_coder
        Unsigned 8-bit integer
    tpncp.video_decoder_customized_height  tpncp.video_decoder_customized_height
        Unsigned 16-bit integer
    tpncp.video_decoder_customized_width  tpncp.video_decoder_customized_width
        Unsigned 16-bit integer
    tpncp.video_decoder_deblocking_filter_strength  tpncp.video_decoder_deblocking_filter_strength
        Unsigned 8-bit integer
    tpncp.video_decoder_level_at_profile  tpncp.video_decoder_level_at_profile
        Unsigned 16-bit integer
    tpncp.video_decoder_max_frame_rate  tpncp.video_decoder_max_frame_rate
        Unsigned 8-bit integer
    tpncp.video_decoder_resolution_type  tpncp.video_decoder_resolution_type
        Unsigned 8-bit integer
    tpncp.video_djb_optimization_factor  tpncp.video_djb_optimization_factor
        Signed 32-bit integer
    tpncp.video_enable_active_speaker_highlight  tpncp.video_enable_active_speaker_highlight
        Signed 32-bit integer
    tpncp.video_enable_audio_video_synchronization  tpncp.video_enable_audio_video_synchronization
        Unsigned 8-bit integer
    tpncp.video_enable_encoder_denoising_filter  tpncp.video_enable_encoder_denoising_filter
        Unsigned 8-bit integer
    tpncp.video_enable_re_sync_header  tpncp.video_enable_re_sync_header
        Unsigned 8-bit integer
    tpncp.video_enable_test_pattern  tpncp.video_enable_test_pattern
        Unsigned 8-bit integer
    tpncp.video_encoder_coder  tpncp.video_encoder_coder
        Unsigned 8-bit integer
    tpncp.video_encoder_customized_height  tpncp.video_encoder_customized_height
        Unsigned 16-bit integer
    tpncp.video_encoder_customized_width  tpncp.video_encoder_customized_width
        Unsigned 16-bit integer
    tpncp.video_encoder_intra_interval  tpncp.video_encoder_intra_interval
        Signed 32-bit integer
    tpncp.video_encoder_level_at_profile  tpncp.video_encoder_level_at_profile
        Unsigned 16-bit integer
    tpncp.video_encoder_max_frame_rate  tpncp.video_encoder_max_frame_rate
        Unsigned 8-bit integer
    tpncp.video_encoder_resolution_type  tpncp.video_encoder_resolution_type
        Unsigned 8-bit integer
    tpncp.video_extension_cmd_offset  tpncp.video_extension_cmd_offset
        Unsigned 32-bit integer
    tpncp.video_ip_tos_field_in_udp_packet  tpncp.video_ip_tos_field_in_udp_packet
        Unsigned 8-bit integer
    tpncp.video_is_disable_rtcp_interval_randomization  tpncp.video_is_disable_rtcp_interval_randomization
        Unsigned 8-bit integer
    tpncp.video_is_self_view  tpncp.video_is_self_view
        Signed 32-bit integer
    tpncp.video_jitter_buffer_max_delay  tpncp.video_jitter_buffer_max_delay
        Signed 32-bit integer
    tpncp.video_jitter_buffer_min_delay  tpncp.video_jitter_buffer_min_delay
        Signed 32-bit integer
    tpncp.video_max_decoder_bit_rate  tpncp.video_max_decoder_bit_rate
        Signed 32-bit integer
    tpncp.video_max_packet_size  tpncp.video_max_packet_size
        Signed 32-bit integer
    tpncp.video_max_participants  tpncp.video_max_participants
        Signed 32-bit integer
    tpncp.video_max_time_between_av_synchronization_events  tpncp.video_max_time_between_av_synchronization_events
        Signed 32-bit integer
    tpncp.video_mediation_level  tpncp.video_mediation_level
        Signed 32-bit integer
    tpncp.video_open_video_channel_without_dsp  tpncp.video_open_video_channel_without_dsp
        Unsigned 8-bit integer
    tpncp.video_participant_layout  tpncp.video_participant_layout
        Signed 32-bit integer
    tpncp.video_participant_name  tpncp.video_participant_name
        String
    tpncp.video_participant_trigger_mode  tpncp.video_participant_trigger_mode
        Signed 32-bit integer
    tpncp.video_participant_type  tpncp.video_participant_type
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_0  tpncp.video_participant_view_at_location_0
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_1  tpncp.video_participant_view_at_location_1
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_10  tpncp.video_participant_view_at_location_10
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_11  tpncp.video_participant_view_at_location_11
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_12  tpncp.video_participant_view_at_location_12
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_13  tpncp.video_participant_view_at_location_13
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_14  tpncp.video_participant_view_at_location_14
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_15  tpncp.video_participant_view_at_location_15
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_2  tpncp.video_participant_view_at_location_2
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_3  tpncp.video_participant_view_at_location_3
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_4  tpncp.video_participant_view_at_location_4
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_5  tpncp.video_participant_view_at_location_5
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_6  tpncp.video_participant_view_at_location_6
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_7  tpncp.video_participant_view_at_location_7
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_8  tpncp.video_participant_view_at_location_8
        Signed 32-bit integer
    tpncp.video_participant_view_at_location_9  tpncp.video_participant_view_at_location_9
        Signed 32-bit integer
    tpncp.video_quality_parameter_for_rate_control  tpncp.video_quality_parameter_for_rate_control
        Unsigned 8-bit integer
    tpncp.video_rate_control_type  tpncp.video_rate_control_type
        Signed 16-bit integer
    tpncp.video_remote_rtcp_port  tpncp.video_remote_rtcp_port
        Unsigned 16-bit integer
    tpncp.video_remote_rtcpip_add_address_family  tpncp.video_remote_rtcpip_add_address_family
        Signed 32-bit integer
    tpncp.video_remote_rtcpip_add_ipv6_addr_0  tpncp.video_remote_rtcpip_add_ipv6_addr_0
        Unsigned 32-bit integer
    tpncp.video_remote_rtcpip_add_ipv6_addr_1  tpncp.video_remote_rtcpip_add_ipv6_addr_1
        Unsigned 32-bit integer
    tpncp.video_remote_rtcpip_add_ipv6_addr_2  tpncp.video_remote_rtcpip_add_ipv6_addr_2
        Unsigned 32-bit integer
    tpncp.video_remote_rtcpip_add_ipv6_addr_3  tpncp.video_remote_rtcpip_add_ipv6_addr_3
        Unsigned 32-bit integer
    tpncp.video_remote_rtp_port  tpncp.video_remote_rtp_port
        Unsigned 16-bit integer
    tpncp.video_rtcp_mean_tx_interval  tpncp.video_rtcp_mean_tx_interval
        Unsigned 16-bit integer
    tpncp.video_rtcpcname  tpncp.video_rtcpcname
        String
    tpncp.video_rtp_ssrc  tpncp.video_rtp_ssrc
        Unsigned 32-bit integer
    tpncp.video_rx_packetization_mode  tpncp.video_rx_packetization_mode
        Unsigned 8-bit integer
    tpncp.video_rx_rtp_payload_type  tpncp.video_rx_rtp_payload_type
        Signed 32-bit integer
    tpncp.video_synchronization_method  tpncp.video_synchronization_method
        Unsigned 8-bit integer
    tpncp.video_target_bitrate  tpncp.video_target_bitrate
        Signed 32-bit integer
    tpncp.video_transmit_sequence_number  tpncp.video_transmit_sequence_number
        Unsigned 32-bit integer
    tpncp.video_transmit_time_stamp  tpncp.video_transmit_time_stamp
        Unsigned 32-bit integer
    tpncp.video_tx_packetization_mode  tpncp.video_tx_packetization_mode
        Unsigned 8-bit integer
    tpncp.video_tx_rtp_payload_type  tpncp.video_tx_rtp_payload_type
        Signed 32-bit integer
    tpncp.video_uni_directional_rtp  tpncp.video_uni_directional_rtp
        Unsigned 8-bit integer
    tpncp.vlan_id_0  tpncp.vlan_id_0
        Unsigned 32-bit integer
    tpncp.vlan_id_1  tpncp.vlan_id_1
        Unsigned 32-bit integer
    tpncp.vlan_id_2  tpncp.vlan_id_2
        Unsigned 32-bit integer
    tpncp.vlan_id_3  tpncp.vlan_id_3
        Unsigned 32-bit integer
    tpncp.vlan_id_4  tpncp.vlan_id_4
        Unsigned 32-bit integer
    tpncp.vlan_id_5  tpncp.vlan_id_5
        Unsigned 32-bit integer
    tpncp.vlan_traffic_type  tpncp.vlan_traffic_type
        Signed 32-bit integer
    tpncp.vmwi_status  tpncp.vmwi_status
        Unsigned 8-bit integer
    tpncp.voice_input_connection_bus  tpncp.voice_input_connection_bus
        Signed 32-bit integer
    tpncp.voice_input_connection_occupied  tpncp.voice_input_connection_occupied
        Signed 32-bit integer
    tpncp.voice_input_connection_port  tpncp.voice_input_connection_port
        Signed 32-bit integer
    tpncp.voice_input_connection_time_slot  tpncp.voice_input_connection_time_slot
        Signed 32-bit integer
    tpncp.voice_packet_loss_counter  tpncp.voice_packet_loss_counter
        Unsigned 32-bit integer
    tpncp.voice_packetizer_stack_ver  tpncp.voice_packetizer_stack_ver
        Signed 32-bit integer
    tpncp.voice_payload_format  tpncp.voice_payload_format
        Unsigned 8-bit integer
    tpncp.voice_prompt_addition_status  tpncp.voice_prompt_addition_status
        Signed 32-bit integer
    tpncp.voice_prompt_coder  tpncp.voice_prompt_coder
        Signed 32-bit integer
    tpncp.voice_prompt_duration  tpncp.voice_prompt_duration
        Signed 32-bit integer
    tpncp.voice_prompt_id  tpncp.voice_prompt_id
        Signed 32-bit integer
    tpncp.voice_prompt_query_result  tpncp.voice_prompt_query_result
        Signed 32-bit integer
    tpncp.voice_quality_monitoring_burst_threshold  tpncp.voice_quality_monitoring_burst_threshold
        Signed 32-bit integer
    tpncp.voice_quality_monitoring_delay_threshold  tpncp.voice_quality_monitoring_delay_threshold
        Signed 32-bit integer
    tpncp.voice_quality_monitoring_end_of_call_r_val_delay_threshold  tpncp.voice_quality_monitoring_end_of_call_r_val_delay_threshold
        Signed 32-bit integer
    tpncp.voice_quality_monitoring_minimum_gap_size  tpncp.voice_quality_monitoring_minimum_gap_size
        Unsigned 8-bit integer
    tpncp.voice_quality_monitoring_mode  tpncp.voice_quality_monitoring_mode
        Unsigned 8-bit integer
    tpncp.voice_quality_monitoring_mode_zero_fill  tpncp.voice_quality_monitoring_mode_zero_fill
        Unsigned 8-bit integer
    tpncp.voice_signaling_mode  tpncp.voice_signaling_mode
        Unsigned 16-bit integer
    tpncp.voice_spare1  tpncp.voice_spare1
        Unsigned 8-bit integer
    tpncp.voice_spare2  tpncp.voice_spare2
        Unsigned 8-bit integer
    tpncp.voice_stream_error_code  tpncp.voice_stream_error_code
        Signed 32-bit integer
    tpncp.voice_stream_type  tpncp.voice_stream_type
        Signed 32-bit integer
    tpncp.voice_volume  tpncp.voice_volume
        Signed 32-bit integer
    tpncp.voltage_bit_return_code  tpncp.voltage_bit_return_code
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_0  tpncp.voltage_current_bit_return_code_0
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_1  tpncp.voltage_current_bit_return_code_1
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_10  tpncp.voltage_current_bit_return_code_10
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_11  tpncp.voltage_current_bit_return_code_11
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_12  tpncp.voltage_current_bit_return_code_12
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_13  tpncp.voltage_current_bit_return_code_13
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_14  tpncp.voltage_current_bit_return_code_14
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_15  tpncp.voltage_current_bit_return_code_15
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_16  tpncp.voltage_current_bit_return_code_16
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_17  tpncp.voltage_current_bit_return_code_17
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_18  tpncp.voltage_current_bit_return_code_18
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_19  tpncp.voltage_current_bit_return_code_19
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_2  tpncp.voltage_current_bit_return_code_2
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_20  tpncp.voltage_current_bit_return_code_20
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_21  tpncp.voltage_current_bit_return_code_21
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_22  tpncp.voltage_current_bit_return_code_22
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_23  tpncp.voltage_current_bit_return_code_23
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_3  tpncp.voltage_current_bit_return_code_3
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_4  tpncp.voltage_current_bit_return_code_4
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_5  tpncp.voltage_current_bit_return_code_5
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_6  tpncp.voltage_current_bit_return_code_6
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_7  tpncp.voltage_current_bit_return_code_7
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_8  tpncp.voltage_current_bit_return_code_8
        Signed 32-bit integer
    tpncp.voltage_current_bit_return_code_9  tpncp.voltage_current_bit_return_code_9
        Signed 32-bit integer
    tpncp.volume  tpncp.volume
        Signed 32-bit integer
    tpncp.vp_end_index_0  tpncp.vp_end_index_0
        Signed 32-bit integer
    tpncp.vp_end_index_1  tpncp.vp_end_index_1
        Signed 32-bit integer
    tpncp.vp_start_index_0  tpncp.vp_start_index_0
        Signed 32-bit integer
    tpncp.vp_start_index_1  tpncp.vp_start_index_1
        Signed 32-bit integer
    tpncp.vpi  tpncp.vpi
        Unsigned 16-bit integer
    tpncp.vrh  tpncp.vrh
        Unsigned 32-bit integer
    tpncp.vrmr  tpncp.vrmr
        Unsigned 32-bit integer
    tpncp.vrr  tpncp.vrr
        Unsigned 32-bit integer
    tpncp.vta  tpncp.vta
        Unsigned 32-bit integer
    tpncp.vtms  tpncp.vtms
        Unsigned 32-bit integer
    tpncp.vtpa  tpncp.vtpa
        Unsigned 32-bit integer
    tpncp.vtps  tpncp.vtps
        Unsigned 32-bit integer
    tpncp.vts  tpncp.vts
        Unsigned 32-bit integer
    tpncp.wrong_payload_type  tpncp.wrong_payload_type
        Signed 32-bit integer
    tpncp.year  tpncp.year
        Signed 32-bit integer
    tpncp.zero_fill  tpncp.zero_fill
        String
    tpncp.zero_fill1  tpncp.zero_fill1
        Unsigned 8-bit integer
    tpncp.zero_fill2  tpncp.zero_fill2
        Unsigned 8-bit integer
    tpncp.zero_fill3  tpncp.zero_fill3
        String
    tpncp.zero_fill_padding  tpncp.zero_fill_padding
        Unsigned 8-bit integer

AudioCodes Trunk Trace (actrace)

    actrace.cas.bchannel  BChannel
        Signed 32-bit integer
    actrace.cas.conn_id  Connection ID
        Signed 32-bit integer
    actrace.cas.curr_state  Current State
        Signed 32-bit integer
    actrace.cas.event  Event
        Signed 32-bit integer
        New Event
    actrace.cas.function  Function
        Signed 32-bit integer
    actrace.cas.next_state  Next State
        Signed 32-bit integer
    actrace.cas.par0  Parameter 0
        Signed 32-bit integer
    actrace.cas.par1  Parameter 1
        Signed 32-bit integer
    actrace.cas.par2  Parameter 2
        Signed 32-bit integer
    actrace.cas.source  Source
        Signed 32-bit integer
    actrace.cas.time  Time
        Signed 32-bit integer
        Capture Time
    actrace.cas.trunk  Trunk Number
        Signed 32-bit integer
    actrace.isdn.dir  Direction
        Signed 32-bit integer
    actrace.isdn.length  Length
        Signed 16-bit integer
    actrace.isdn.trunk  Trunk Number
        Signed 16-bit integer

Authentication Header (ah)

    ah.icv  AH ICV
        Byte array
        IP Authentication Header Integrity Check Value
    ah.sequence  AH Sequence
        Unsigned 32-bit integer
        IP Authentication Header Sequence Number
    ah.spi  AH SPI
        Unsigned 32-bit integer
        IP Authentication Header Security Parameters Index

B.A.T.M.A.N. Advanced Protocol (batadv)

    batadv.batman.flags  Flags
        Unsigned 8-bit integer
    batadv.batman.flags.directlink  DirectLink
        Boolean
    batadv.batman.flags.primaries_first_hop  PRIMARIES_FIRST_HOP
        Boolean
    batadv.batman.flags.vis_server  VIS_SERVER
        Boolean
    batadv.batman.gwflags  Gateway Flags
        Unsigned 8-bit integer
    batadv.batman.hna  Host Network Announcement
        6-byte Hardware (MAC) Address
    batadv.batman.num_hna  Number of HNAs
        Unsigned 8-bit integer
    batadv.batman.orig  Originator
        6-byte Hardware (MAC) Address
    batadv.batman.packet_type  Packet Type
        Unsigned 8-bit integer
    batadv.batman.pad  Padding
        Unsigned 8-bit integer
    batadv.batman.prev_sender  Received from
        6-byte Hardware (MAC) Address
    batadv.batman.seq  Sequence number
        Unsigned 16-bit integer
    batadv.batman.tq  Transmission Quality
        Unsigned 8-bit integer
    batadv.batman.ttl  Time to Live
        Unsigned 8-bit integer
    batadv.batman.version  Version
        Unsigned 8-bit integer
    batadv.bcast.orig  Originator
        6-byte Hardware (MAC) Address
    batadv.bcast.pad  Padding
        Unsigned 8-bit integer
    batadv.bcast.seq  Sequence number
        Unsigned 16-bit integer
    batadv.bcast.ttl  Time to Live
        Unsigned 8-bit integer
    batadv.bcast.version  Version
        Unsigned 8-bit integer
    batadv.icmp.dst  Destination
        6-byte Hardware (MAC) Address
    batadv.icmp.msg_type  Message Type
        Unsigned 8-bit integer
    batadv.icmp.orig  Originator
        6-byte Hardware (MAC) Address
    batadv.icmp.seq  Sequence number
        Unsigned 16-bit integer
    batadv.icmp.ttl  Time to Live
        Unsigned 8-bit integer
    batadv.icmp.uid  UID
        Unsigned 8-bit integer
    batadv.icmp.version  Version
        Unsigned 8-bit integer
    batadv.unicast.dst  Destination
        6-byte Hardware (MAC) Address
    batadv.unicast.ttl  Time to Live
        Unsigned 8-bit integer
    batadv.unicast.version  Version
        Unsigned 8-bit integer
    batadv.vis.entries  Entries
        Unsigned 8-bit integer
        Number of entries
    batadv.vis.quality  Quality
        Unsigned 8-bit integer
    batadv.vis.sender_orig  Forwarding Originator
        6-byte Hardware (MAC) Address
    batadv.vis.seq  Sequence number
        Unsigned 8-bit integer
    batadv.vis.target_orig  Target Originator
        6-byte Hardware (MAC) Address
    batadv.vis.ttl  Time to Live
        Unsigned 8-bit integer
    batadv.vis.type  Type
        Unsigned 8-bit integer
    batadv.vis.version  Version
        Unsigned 8-bit integer
    batadv.vis.vis_orig  Originator
        6-byte Hardware (MAC) Address
    hf_batadv_vis_entry.dst  Destination
        6-byte Hardware (MAC) Address
    hf_batadv_vis_entry.src  Source
        6-byte Hardware (MAC) Address

B.A.T.M.A.N. Layer 3 Protocol (bat)

    bat.batman.flags  Flags
        Unsigned 8-bit integer
    bat.batman.flags.directlink  DirectLink
        Boolean
    bat.batman.flags.unidirectional  Unidirectional
        Boolean
    bat.batman.gwflags  Gateway Flags
        Unsigned 8-bit integer
    bat.batman.gwport  Gateway Port
        Unsigned 16-bit integer
    bat.batman.hna_len  Number of HNAs
        Unsigned 8-bit integer
    bat.batman.hna_netmask  HNA Netmask
        Unsigned 8-bit integer
    bat.batman.hna_network  HNA Network
        IPv4 address
    bat.batman.old_orig  Received from
        IPv4 address
    bat.batman.orig  Originator
        IPv4 address
    bat.batman.seq  Sequence number
        Unsigned 16-bit integer
    bat.batman.tq  Transmission Quality
        Unsigned 8-bit integer
    bat.batman.ttl  Time to Live
        Unsigned 8-bit integer
    bat.batman.version  Version
        Unsigned 8-bit integer
    bat.gw.ip  IP
        IPv4 address
    bat.gw.type  Type
        Unsigned 8-bit integer
    bat.vis.data_ip  IP
        IPv4 address
    bat.vis.data_type  Type
        Unsigned 8-bit integer
    bat.vis.gwflags  Gateway Flags
        Unsigned 8-bit integer
    bat.vis.netmask  Netmask
        Unsigned 8-bit integer
    bat.vis.sender_ip  Originator
        IPv4 address
    bat.vis.tq  Transmission Quality
        Unsigned 16-bit integer
    bat.vis.tq_max  Maximum Transmission Quality
        Unsigned 16-bit integer
    bat.vis.version  Version
        Unsigned 8-bit integer

BACnet MS/TP (mstp)

    mstp.checksum_bad  Bad
        Boolean
        True: checksum doesn't match packet content; False: matches content or not checked
    mstp.checksum_good  Good
        Boolean
        True: checksum matches packet content; False: doesn't match content or not checked
    mstp.data_crc  Data CRC
        Unsigned 16-bit integer
        MS/TP Data CRC
    mstp.dst  Destination Address
        Unsigned 8-bit integer
        Destination MS/TP MAC Address
    mstp.frame_type  Frame Type
        Unsigned 8-bit integer
        MS/TP Frame Type
    mstp.hdr_crc  Header CRC
        Unsigned 8-bit integer
        MS/TP Header CRC
    mstp.len  Length
        Unsigned 16-bit integer
        MS/TP Data Length
    mstp.preamble_55  Preamble 55
        Unsigned 8-bit integer
        MS/TP Preamble 55
    mstp.preamble_FF  Preamble FF
        Unsigned 8-bit integer
        MS/TP Preamble FF
    mstp.src  Source Address
        Unsigned 8-bit integer
        Source MS/TP MAC Address
    mstp.vendorid  VendorID
        Unsigned 16-bit integer
        MS/TP Vendor ID of proprietary frametypes

BACnet Virtual Link Control (bvlc)

    bvlc.bdt_ip  IP
        IPv4 address
        BDT IP
    bvlc.bdt_mask  Mask
        Byte array
        BDT Broadcast Distribution Mask
    bvlc.bdt_port  Port
        Unsigned 16-bit integer
        BDT Port
    bvlc.fdt_ip  IP
        IPv4 address
        FDT IP
    bvlc.fdt_port  Port
        Unsigned 16-bit integer
        FDT Port
    bvlc.fdt_timeout  Timeout
        Unsigned 16-bit integer
        Foreign Device Timeout (seconds)
    bvlc.fdt_ttl  TTL
        Unsigned 16-bit integer
        Foreign Device Time To Live
    bvlc.function  Function
        Unsigned 8-bit integer
        BVLC Function
    bvlc.fwd_ip  IP
        IPv4 address
        FWD IP
    bvlc.fwd_port  Port
        Unsigned 16-bit integer
        FWD Port
    bvlc.length  BVLC-Length
        Unsigned 16-bit integer
        Length of BVLC
    bvlc.reg_ttl  TTL
        Unsigned 16-bit integer
        Foreign Device Time To Live
    bvlc.result  Result
        Unsigned 16-bit integer
        Result Code
    bvlc.type  Type
        Unsigned 8-bit integer

BCTP Q.1990 (bctp)

    bctp.bvei  BVEI
        Unsigned 16-bit integer
        BCTP Version Error Indicator
    bctp.bvi  BVI
        Unsigned 16-bit integer
        BCTP Version Indicator
    bctp.tpei  TPEI
        Unsigned 16-bit integer
        Tunneled Protocol Error Indicator
    bctp.tpi  TPI
        Unsigned 16-bit integer
        Tunneled Protocol Indicator

BEA Tuxedo (tuxedo)

    tuxedo.magic  Magic
        Unsigned 32-bit integer
        TUXEDO magic
    tuxedo.opcode  Opcode
        Unsigned 32-bit integer
        TUXEDO opcode

BSS LCS Assistance Protocol (bsslap)

    gsm_bsslap.MS_pow  MS Power
        Unsigned 8-bit integer
        MS power
    gsm_bsslap.cause  Cause
        Unsigned 8-bit integer
    gsm_bsslap.cell_id_disc  Cell identification Discriminator
        Unsigned 8-bit integer
    gsm_bsslap.elem_id  Element ID
        Unsigned 8-bit integer
    gsm_bsslap.lac  Location Area Code
        Unsigned 8-bit integer
    gsm_bsslap.msg_type  Message Type IE
        Unsigned 8-bit integer
    gsm_bsslap.poll_rep  Number of polling repetitions
        Unsigned 8-bit integer
    gsm_bsslap.rrlp_flg  RRLP Flag
        Unsigned 8-bit integer
        Cause
    gsm_bsslap.ta  Timing Advance
        Unsigned 8-bit integer
    gsm_bsslap.tfi  TFI
        Unsigned 8-bit integer
    gsm_bsslap.timerValue  Timer Value
        Unsigned 8-bit integer

BSSAP/BSAP (bssap)

    bsap.dlci.cc  Control Channel
        Unsigned 8-bit integer
    bsap.dlci.rsvd  Reserved
        Unsigned 8-bit integer
    bsap.dlci.sapi  SAPI
        Unsigned 8-bit integer
    bsap.pdu_type  Message Type
        Unsigned 8-bit integer
    bssap.Gs_cause_ie  Gs Cause IE
        No value
    bssap.Tom_prot_disc  TOM Protocol Discriminator
        Unsigned 8-bit integer
    bssap.cell_global_id_ie  Cell global identity IE
        No value
    bssap.cn_id  CN-Id
        Unsigned 16-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.dlink_tnl_pld_cntrl_amd_inf_ie  Downlink Tunnel Payload Control and Info IE
        No value
    bssap.emlpp_prio_ie  eMLPP Priority IE
        No value
    bssap.erroneous_msg_ie  Erroneous message IE
        No value
    bssap.extension  Extension
        Boolean
    bssap.global_cn_id  Global CN-Id
        Byte array
    bssap.global_cn_id_ie  Global CN-Id IE
        No value
    bssap.gprs_loc_upd_type  eMLPP Priority
        Unsigned 8-bit integer
    bssap.ie_data  IE Data
        Byte array
    bssap.imei  IMEI
        String
    bssap.imei_ie  IMEI IE
        No value
    bssap.imeisv  IMEISV
        String
    bssap.imesiv  IMEISV IE
        No value
    bssap.imsi  IMSI
        String
    bssap.imsi_det_from_gprs_serv_type  IMSI detach from GPRS service type
        Unsigned 8-bit integer
    bssap.imsi_ie  IMSI IE
        No value
    bssap.info_req  Information requested
        Unsigned 8-bit integer
    bssap.info_req_ie  Information requested IE
        No value
    bssap.length  Length
        Unsigned 8-bit integer
    bssap.loc_area_id_ie  Location area identifier IE
        No value
    bssap.loc_inf_age  AgeOfLocationInformation in minutes
        Unsigned 16-bit integer
    bssap.loc_inf_age_ie  Location information age IE
        No value
    bssap.loc_upd_type_ie  GPRS location update type IE
        No value
    bssap.mm_information  MM information IE
        No value
    bssap.mobile_id_ie  Mobile identity IE
        No value
    bssap.mobile_station_state  Mobile station state
        Unsigned 8-bit integer
    bssap.mobile_station_state_ie  Mobile station state IE
        No value
    bssap.mobile_stn_cls_mrk1_ie  Mobile station classmark 1 IE
        No value
    bssap.msi_det_from_gprs_serv_type_ie  IMSI detach from GPRS service type IE
        No value
    bssap.msi_det_from_non_gprs_serv_type_ie  IMSI detach from non-GPRS service IE
        No value
    bssap.number_plan  Numbering plan identification
        Unsigned 8-bit integer
    bssap.pdu_type  Message Type
        Unsigned 8-bit integer
    bssap.plmn_id  PLMN-Id
        Byte array
    bssap.ptmsi  PTMSI
        Byte array
    bssap.ptmsi_ie  PTMSI IE
        No value
    bssap.reject_cause_ie  Reject cause IE
        No value
    bssap.sgsn_number  SGSN number
        String
    bssap.tmsi  TMSI
        Byte array
    bssap.tmsi_ie  TMSI IE
        No value
    bssap.tmsi_status  TMSI status
        Boolean
    bssap.tmsi_status_ie  TMSI status IE
        No value
    bssap.tunnel_prio  Tunnel Priority
        Unsigned 8-bit integer
    bssap.type_of_number  Type of number
        Unsigned 8-bit integer
    bssap.ulink_tnl_pld_cntrl_amd_inf_ie  Uplink Tunnel Payload Control and Info IE
        No value
    bssap.vlr_number  VLR number
        String
    bssap.vlr_number_ie  VLR number IE
        No value
    bssap_plus.iei  IEI
        Unsigned 8-bit integer
    bssap_plus.msg_type  Message Type
        Unsigned 8-bit integer

Banyan Vines ARP (vines_arp)

Banyan Vines Echo (vines_echo)

Banyan Vines Fragmentation Protocol (vines_frp)

Banyan Vines ICP (vines_icp)

Banyan Vines IP (vines_ip)

    vines_ip.protocol  Protocol
        Unsigned 8-bit integer
        Vines protocol

Banyan Vines IPC (vines_ipc)

Banyan Vines LLC (vines_llc)

Banyan Vines RTP (vines_rtp)

Banyan Vines SPP (vines_spp)

Base Station Subsystem GPRS Protocol (bssgp)

    bssgp.appid  Application ID
        Unsigned 8-bit integer
    bssgp.bvci  BVCI
        Unsigned 16-bit integer
    bssgp.ci  CI
        Unsigned 16-bit integer
        Cell Identity
    bssgp.ie_type  IE Type
        Unsigned 8-bit integer
        Information element type
    bssgp.iei.nacc_cause  NACC Cause
        Unsigned 8-bit integer
    bssgp.imei  IMEI
        String
    bssgp.imeisv  IMEISV
        String
    bssgp.imsi  IMSI
        String
    bssgp.lac  LAC
        Unsigned 16-bit integer
    bssgp.mcc  MCC
        Unsigned 8-bit integer
    bssgp.mnc  MNC
        Unsigned 8-bit integer
    bssgp.nri  NRI
        Unsigned 16-bit integer
    bssgp.nsei  NSEI
        Unsigned 16-bit integer
    bssgp.pdu_type  PDU Type
        Unsigned 8-bit integer
    bssgp.rac  RAC
        Unsigned 8-bit integer
    bssgp.rad  Routing Address Discriminator
        Unsigned 8-bit integer
    bssgp.ran_inf_req_pdu_type_ext  PDU Type Extension
        Unsigned 8-bit integer
    bssgp.ran_req_pdu_type_ext  PDU Type Extension
        Unsigned 8-bit integer
    bssgp.rcid  Reporting Cell Identity
        Unsigned 64-bit integer
    bssgp.rrc_si_type  RRC SI type
        Unsigned 8-bit integer
    bssgp.tlli  TLLI
        Unsigned 32-bit integer
    bssgp.tmsi_ptmsi  TMSI/PTMSI
        Unsigned 32-bit integer

Basic Encoding Rules (ASN.1 X.690) (ber)

    ber.arbitrary  arbitrary
        Byte array
        ber.T_arbitrary
    ber.bitstring.empty  Empty
        Unsigned 8-bit integer
        This is an empty bitstring
    ber.bitstring.padding  Padding
        Unsigned 8-bit integer
        Number of unused bits in the last octet of the bitstring
    ber.constructed.OCTETSTRING  OCTETSTRING
        Byte array
        This is a component of an constructed OCTETSTRING
    ber.data_value_descriptor  data-value-descriptor
        String
        ber.ObjectDescriptor
    ber.direct_reference  direct-reference
        Object Identifier
        ber.OBJECT_IDENTIFIER
    ber.encoding  encoding
        Unsigned 32-bit integer
        ber.T_encoding
    ber.id.class  Class
        Unsigned 8-bit integer
        Class of BER TLV Identifier
    ber.id.pc  P/C
        Boolean
        Primitive or Constructed BER encoding
    ber.id.tag  Tag
        Unsigned 8-bit integer
        Tag value for non-Universal classes
    ber.id.uni_tag  Tag
        Unsigned 8-bit integer
        Universal tag type
    ber.indirect_reference  indirect-reference
        Signed 32-bit integer
        ber.INTEGER
    ber.length  Length
        Unsigned 32-bit integer
        Length of contents
    ber.no_oid  No OID
        No value
        No OID supplied to call_ber_oid_callback
    ber.octet_aligned  octet-aligned
        Byte array
        ber.T_octet_aligned
    ber.oid_not_implemented  OID not implemented
        No value
        Dissector for OID not implemented
    ber.single_ASN1_type  single-ASN1-type
        No value
        ber.T_single_ASN1_type
    ber.unknown.BITSTRING  BITSTRING
        Byte array
        This is an unknown BITSTRING
    ber.unknown.BMPString  BMPString
        String
        This is an unknown BMPString
    ber.unknown.BOOLEAN  BOOLEAN
        Unsigned 8-bit integer
        This is an unknown BOOLEAN
    ber.unknown.ENUMERATED  ENUMERATED
        Unsigned 32-bit integer
        This is an unknown ENUMERATED
    ber.unknown.GRAPHICSTRING  GRAPHICSTRING
        String
        This is an unknown GRAPHICSTRING
    ber.unknown.GeneralString  GeneralString
        String
        This is an unknown GeneralString
    ber.unknown.GeneralizedTime  GeneralizedTime
        String
        This is an unknown GeneralizedTime
    ber.unknown.IA5String  IA5String
        String
        This is an unknown IA5String
    ber.unknown.INTEGER  INTEGER
        Unsigned 32-bit integer
        This is an unknown INTEGER
    ber.unknown.NumericString  NumericString
        String
        This is an unknown NumericString
    ber.unknown.OCTETSTRING  OCTETSTRING
        Byte array
        This is an unknown OCTETSTRING
    ber.unknown.OID  OID
        Object Identifier
        This is an unknown Object Identifier
    ber.unknown.PrintableString  PrintableString
        String
        This is an unknown PrintableString
    ber.unknown.TeletexString  TeletexString
        String
        This is an unknown TeletexString
    ber.unknown.UTCTime  UTCTime
        String
        This is an unknown UTCTime
    ber.unknown.UTF8String  UTF8String
        String
        This is an unknown UTF8String
    ber.unknown.UniversalString  UniversalString
        String
        This is an unknown UniversalString
    ber.unknown.VisibleString  VisibleString
        String
        This is an unknown VisibleString
    ber.unknown.primitive  Primitive [BER encoded]
        No value
        This is a BER encoded Primitive

Bearer Independent Call Control (bicc)

    bicc.cic  Call identification Code (CIC)
        Unsigned 32-bit integer

Bidirectional Forwarding Detection Control Message (bfd)

    bfd.auth.key  Authentication Key ID
        Unsigned 8-bit integer
        The Authentication Key ID, identifies which password is in use for this packet
    bfd.auth.len  Authentication Length
        Unsigned 8-bit integer
        The length, in bytes, of the authentication section
    bfd.auth.password  Password
        String
        The simple password in use on this session
    bfd.auth.seq_num  Sequence Number
        Unsigned 32-bit integer
        The Sequence Number is periodically incremented to prevent replay attacks
    bfd.auth.type  Authentication Type
        Unsigned 8-bit integer
        The type of authentication in use on this session
    bfd.desired_min_tx_interval  Desired Min TX Interval
        Unsigned 32-bit integer
        The minimum interval to use when transmitting BFD Control packets
    bfd.detect_time_multiplier  Detect Time Multiplier
        Unsigned 8-bit integer
        The transmit interval multiplied by this value is the failure detection time
    bfd.diag  Diagnostic Code
        Unsigned 8-bit integer
        This field give the reason for a BFD session failure
    bfd.flags  Message Flags
        Unsigned 8-bit integer
    bfd.flags.a  Authentication Present
        Boolean
        The Authentication Section is present
    bfd.flags.c  Control Plane Independent
        Boolean
        If set, the BFD implementation is implemented in the forwarding plane
    bfd.flags.d  Demand
        Boolean
    bfd.flags.f  Final
        Boolean
    bfd.flags.h  I hear you
        Boolean
    bfd.flags.m  Multipoint
        Boolean
        Reserved for future point-to-multipoint extensions
    bfd.flags.p  Poll
        Boolean
    bfd.message_length  Message Length
        Unsigned 8-bit integer
        Length of the BFD Control packet, in bytes
    bfd.my_discriminator  My Discriminator
        Unsigned 32-bit integer
    bfd.required_min_echo_interval  Required Min Echo Interval
        Unsigned 32-bit integer
        The minimum interval between received BFD Echo packets that this system can support
    bfd.required_min_rx_interval  Required Min RX Interval
        Unsigned 32-bit integer
        The minimum interval between received BFD Control packets that this system can support
    bfd.sta  Session State
        Unsigned 8-bit integer
        The BFD state as seen by the transmitting system
    bfd.version  Protocol Version
        Unsigned 8-bit integer
        The version number of the BFD protocol
    bfd.your_discriminator  Your Discriminator
        Unsigned 32-bit integer

BitTorrent (bittorrent)

    bittorrent.azureus_msg  Azureus Message
        No value
    bittorrent.bdict  Dictionary
        No value
    bittorrent.bdict.entry  Entry
        No value
    bittorrent.bint  Integer
        Signed 32-bit integer
    bittorrent.blist  List
        No value
    bittorrent.bstr  String
        String
    bittorrent.bstr.length  String Length
        Unsigned 32-bit integer
    bittorrent.info_hash  SHA1 Hash of info dictionary
        Byte array
    bittorrent.jpc.addr  Cache Address
        String
    bittorrent.jpc.addr.length  Cache Address Length
        Unsigned 32-bit integer
    bittorrent.jpc.port  Port
        Unsigned 32-bit integer
    bittorrent.jpc.session  Session ID
        Unsigned 32-bit integer
    bittorrent.length  Field Length
        Unsigned 32-bit integer
    bittorrent.msg  Message
        No value
    bittorrent.msg.aztype  Message Type
        String
    bittorrent.msg.bitfield  Bitfield data
        Byte array
    bittorrent.msg.length  Message Length
        Unsigned 32-bit integer
    bittorrent.msg.prio  Message Priority
        Unsigned 8-bit integer
    bittorrent.msg.type  Message Type
        Unsigned 8-bit integer
    bittorrent.msg.typelen  Message Type Length
        Unsigned 32-bit integer
    bittorrent.peer_id  Peer ID
        Byte array
    bittorrent.piece.begin  Begin offset of piece
        Unsigned 32-bit integer
    bittorrent.piece.data  Data in a piece
        Byte array
    bittorrent.piece.index  Piece index
        Unsigned 32-bit integer
    bittorrent.piece.length  Piece Length
        Unsigned 32-bit integer
    bittorrent.protocol.name  Protocol Name
        String
    bittorrent.protocol.name.length  Protocol Name Length
        Unsigned 8-bit integer
    bittorrent.reserved  Reserved Extension Bytes
        Byte array

Bitswapped ITU-T Recommendation H.223 (h223_bitswapped)

Blocks Extensible Exchange Protocol (beep)

    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

Blubster/Piolet MANOLITO Protocol (manolito)

    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)

Bluetooth AMP Packet (btamp)

    btamp.assoc  Assoc
        Byte array
    btamp.assoc_size  Assoc Size
        Unsigned 16-bit integer
    btamp.cmd_code  Command Code
        Unsigned 8-bit integer
        L2CAP Command Code
    btamp.cmd_data  Command Data
        No value
        L2CAP Command Data
    btamp.cmd_ident  Command Identifier
        Unsigned 8-bit integer
        L2CAP Command Identifier
    btamp.cmd_length  Command Length
        Unsigned 8-bit integer
        L2CAP Command Length
    btamp.command  Command
        No value
        L2CAP Command
    btamp.create_status  Status
        Unsigned 8-bit integer
    btamp.ctrl_entry  Controller entry
        No value
    btamp.ctrl_id  Controller ID
        Unsigned 8-bit integer
    btamp.ctrl_list  Controller list
        No value
    btamp.ctrl_status  Controller Status
        Unsigned 8-bit integer
    btamp.ctrl_type  Controller Type
        Unsigned 8-bit integer
    btamp.disc_status  Status
        Unsigned 8-bit integer
    btamp.extfeatures  Extended Features
        Unsigned 16-bit integer
        Extended Features Mask
    btamp.guaranteed_type  Guaranteed Service type
        Boolean
    btamp.lctrl_id  Local Controller ID
        Unsigned 8-bit integer
    btamp.max_guaran_bw  Max Guaranteed Bandwidth
        Unsigned 32-bit integer
    btamp.min_latency  Minimum latency
        Unsigned 32-bit integer
    btamp.mps  MPS/MTU
        Unsigned 16-bit integer
        MPS/MTU Size
    btamp.pal_caps_mask  PAL Capabilities Mask
        No value
    btamp.rctrl_id  Remote Controller ID
        Unsigned 8-bit integer
    btamp.status  Status
        Unsigned 8-bit integer
    btamp.total_bw  Total Bandwidth
        Unsigned 32-bit integer
    btl2cap.rej_reason  Reason
        Unsigned 16-bit integer

Bluetooth HCI (hci_h1)

    hci_h1.direction  Direction
        Signed 8-bit integer
        HCI Packet Direction Sent/Rcvd/Unknown
    hci_h1.type  HCI Packet Type
        Unsigned 8-bit integer

Bluetooth HCI ACL Packet (bthci_acl)

    btacl.bc_flag  BC Flag
        Unsigned 16-bit integer
        Broadcast Flag
    btacl.chandle  Connection Handle
        Unsigned 16-bit integer
    btacl.continuation_to  This is a continuation to the PDU in frame
        Frame number
        This is a continuation to the PDU in frame #
    btacl.data  Data
        No value
    btacl.length  Data Total Length
        Unsigned 16-bit integer
    btacl.pb_flag  PB Flag
        Unsigned 16-bit integer
        Packet Boundary Flag
    btacl.reassembled_in  This PDU is reassembled in frame
        Frame number
        This PDU is reassembled in frame #

Bluetooth HCI Command (bthci_cmd)

    bthci_cmd.afh_ch_assessment_mode  AFH Channel Assessment Mode
        Unsigned 8-bit integer
    bthci_cmd.afh_ch_classification  Channel Classification
        No value
    bthci_cmd.air_coding_format  Air Coding Format
        Unsigned 16-bit integer
    bthci_cmd.allow_role_switch  Allow Role Switch
        Unsigned 8-bit integer
    bthci_cmd.auth_enable  Authentication Enable
        Unsigned 8-bit integer
    bthci_cmd.auth_requirements  Authentication Requirements
        Unsigned 8-bit integer
    bthci_cmd.auto_accept_flag  Auto Accept Flag
        Unsigned 8-bit integer
        Class of Device of Interest
    bthci_cmd.bd_addr  BD_ADDR:
        No value
        Bluetooth Device Address
    bthci_cmd.beacon_max_int  Beacon Max Interval
        Unsigned 16-bit integer
        Maximal acceptable number of Baseband slots between consecutive beacons.
    bthci_cmd.beacon_min_int  Beacon Min Interval
        Unsigned 16-bit integer
        Minimum acceptable number of Baseband slots between consecutive beacons.
    bthci_cmd.class_of_device  Class of Device
        Unsigned 24-bit integer
    bthci_cmd.class_of_device_mask  Class of Device Mask
        Unsigned 24-bit integer
        Bit Mask used to determine which bits of the Class of Device parameter are of interest.
    bthci_cmd.clock_offset  Clock Offset
        Unsigned 16-bit integer
        Bit 2-16 of the Clock Offset between CLKmaster-CLKslave
    bthci_cmd.clock_offset_valid  Clock_Offset_Valid_Flag
        Unsigned 16-bit integer
        Indicates if clock offset is valid
    bthci_cmd.connection_handle  Connection Handle
        Unsigned 16-bit integer
    bthci_cmd.delay_variation  Delay Variation
        Unsigned 32-bit integer
        Delay Variation, in microseconds
    bthci_cmd.delete_all_flag  Delete All Flag
        Unsigned 8-bit integer
    bthci_cmd.device_name  Device Name
        NULL terminated string
        Userfriendly descriptive name for the device
    bthci_cmd.eir_data  Data
        Byte array
        EIR Data
    bthci_cmd.eir_data_type  Type
        Unsigned 8-bit integer
        Data Type
    bthci_cmd.eir_struct_length  Length
        Unsigned 8-bit integer
        Structure Length
    bthci_cmd.encrypt_mode  Encryption Mode
        Unsigned 8-bit integer
    bthci_cmd.encryption_enable  Encryption Enable
        Unsigned 8-bit integer
    bthci_cmd.err_data_reporting  Erroneous Data Reporting
        Unsigned 8-bit integer
    bthci_cmd.evt_mask_00  Inquiry Complete
        Unsigned 8-bit integer
        Inquiry Complete Bit
    bthci_cmd.evt_mask_01  Inquiry Result
        Unsigned 8-bit integer
        Inquiry Result Bit
    bthci_cmd.evt_mask_02  Connect Complete
        Unsigned 8-bit integer
        Connection Complete Bit
    bthci_cmd.evt_mask_03  Connect Request
        Unsigned 8-bit integer
        Connect Request Bit
    bthci_cmd.evt_mask_04  Disconnect Complete
        Unsigned 8-bit integer
        Disconnect Complete Bit
    bthci_cmd.evt_mask_05  Auth Complete
        Unsigned 8-bit integer
        Auth Complete Bit
    bthci_cmd.evt_mask_06  Remote Name Req Complete
        Unsigned 8-bit integer
        Remote Name Req Complete Bit
    bthci_cmd.evt_mask_07  Encrypt Change
        Unsigned 8-bit integer
        Encrypt Change Bit
    bthci_cmd.evt_mask_10  Change Connection Link Key Complete
        Unsigned 8-bit integer
        Change Connection Link Key Complete Bit
    bthci_cmd.evt_mask_11  Master Link Key Complete
        Unsigned 8-bit integer
        Master Link Key Complete Bit
    bthci_cmd.evt_mask_12  Read Remote Supported Features
        Unsigned 8-bit integer
        Read Remote Supported Features Bit
    bthci_cmd.evt_mask_13  Read Remote Ver Info Complete
        Unsigned 8-bit integer
        Read Remote Ver Info Complete Bit
    bthci_cmd.evt_mask_14  QoS Setup Complete
        Unsigned 8-bit integer
        QoS Setup Complete Bit
    bthci_cmd.evt_mask_17  Hardware Error
        Unsigned 8-bit integer
        Hardware Error Bit
    bthci_cmd.evt_mask_20  Flush Occurred
        Unsigned 8-bit integer
        Flush Occurred Bit
    bthci_cmd.evt_mask_21  Role Change
        Unsigned 8-bit integer
        Role Change Bit
    bthci_cmd.evt_mask_23  Mode Change
        Unsigned 8-bit integer
        Mode Change Bit
    bthci_cmd.evt_mask_24  Return Link Keys
        Unsigned 8-bit integer
        Return Link Keys Bit
    bthci_cmd.evt_mask_25  PIN Code Request
        Unsigned 8-bit integer
        PIN Code Request Bit
    bthci_cmd.evt_mask_26  Link Key Request
        Unsigned 8-bit integer
        Link Key Request Bit
    bthci_cmd.evt_mask_27  Link Key Notification
        Unsigned 8-bit integer
        Link Key Notification Bit
    bthci_cmd.evt_mask_30  Loopback Command
        Unsigned 8-bit integer
        Loopback Command Bit
    bthci_cmd.evt_mask_31  Data Buffer Overflow
        Unsigned 8-bit integer
        Data Buffer Overflow Bit
    bthci_cmd.evt_mask_32  Max Slots Change
        Unsigned 8-bit integer
        Max Slots Change Bit
    bthci_cmd.evt_mask_33  Read Clock Offset Complete
        Unsigned 8-bit integer
        Read Clock Offset Complete Bit
    bthci_cmd.evt_mask_34  Connection Packet Type Changed
        Unsigned 8-bit integer
        Connection Packet Type Changed Bit
    bthci_cmd.evt_mask_35  QoS Violation
        Unsigned 8-bit integer
        QoS Violation Bit
    bthci_cmd.evt_mask_36  Page Scan Mode Change
        Unsigned 8-bit integer
        Page Scan Mode Change Bit
    bthci_cmd.evt_mask_37  Page Scan Repetition Mode Change
        Unsigned 8-bit integer
        Page Scan Repetition Mode Change Bit
    bthci_cmd.evt_mask_40  Flow Specification Complete
        Unsigned 8-bit integer
        Flow Specification Complete Bit
    bthci_cmd.evt_mask_41  Inquiry Result With RSSI
        Unsigned 8-bit integer
        Inquiry Result With RSSI Bit
    bthci_cmd.evt_mask_42  Read Remote Ext. Features Complete
        Unsigned 8-bit integer
        Read Remote Ext. Features Complete Bit
    bthci_cmd.evt_mask_53  Synchronous Connection Complete
        Unsigned 8-bit integer
        Synchronous Connection Complete Bit
    bthci_cmd.evt_mask_54  Synchronous Connection Changed
        Unsigned 8-bit integer
        Synchronous Connection Changed Bit
    bthci_cmd.evt_mask_55  Sniff Subrate
        Unsigned 8-bit integer
        Sniff Subrate Bit
    bthci_cmd.evt_mask_56  Extended Inquiry Result
        Unsigned 8-bit integer
        Extended Inquiry Result Bit
    bthci_cmd.evt_mask_57  Encryption Key Refresh Complete
        Unsigned 8-bit integer
        Encryption Key Refresh Complete Bit
    bthci_cmd.evt_mask_60  IO Capability Request
        Unsigned 8-bit integer
        IO Capability Request Bit
    bthci_cmd.evt_mask_61  IO Capability Response
        Unsigned 8-bit integer
        IO Capability Response Bit
    bthci_cmd.evt_mask_62  User Confirmation Request
        Unsigned 8-bit integer
        User Confirmation Request Bit
    bthci_cmd.evt_mask_63  User Passkey Request
        Unsigned 8-bit integer
        User Passkey Request Bit
    bthci_cmd.evt_mask_64  Remote OOB Data Request
        Unsigned 8-bit integer
        Remote OOB Data Request Bit
    bthci_cmd.evt_mask_65  Simple Pairing Complete
        Unsigned 8-bit integer
        Simple Pairing Complete Bit
    bthci_cmd.evt_mask_67  Link Supervision Timeout Changed
        Unsigned 8-bit integer
        Link Supervision Timeout Changed Bit
    bthci_cmd.evt_mask_70  Enhanced Flush Complete
        Unsigned 8-bit integer
        Enhanced Flush Complete Bit
    bthci_cmd.evt_mask_72  User Passkey Notification
        Unsigned 8-bit integer
        User Passkey Notification Bit
    bthci_cmd.evt_mask_73  Keypress Notification
        Unsigned 8-bit integer
        Keypress Notification Bit
    bthci_cmd.fec_required  FEC Required
        Unsigned 8-bit integer
    bthci_cmd.filter_condition_type  Filter Condition Type
        Unsigned 8-bit integer
    bthci_cmd.filter_type  Filter Type
        Unsigned 8-bit integer
    bthci_cmd.flags  Flags
        Unsigned 8-bit integer
    bthci_cmd.flow_contr_enable  Flow Control Enable
        Unsigned 8-bit integer
    bthci_cmd.flow_control  SCO Flow Control
        Unsigned 8-bit integer
    bthci_cmd.flush_packet_type  Packet Type
        Unsigned 8-bit integer
    bthci_cmd.hash_c  Hash C
        Unsigned 16-bit integer
    bthci_cmd.hold_mode_inquiry  Suspend Inquiry Scan
        Unsigned 8-bit integer
        Device can enter low power state
    bthci_cmd.hold_mode_max_int  Hold Mode Max Interval
        Unsigned 16-bit integer
        Maximal acceptable number of Baseband slots to wait in Hold Mode.
    bthci_cmd.hold_mode_min_int  Hold Mode Min Interval
        Unsigned 16-bit integer
        Minimum acceptable number of Baseband slots to wait in Hold Mode.
    bthci_cmd.hold_mode_page  Suspend Page Scan
        Unsigned 8-bit integer
        Device can enter low power state
    bthci_cmd.hold_mode_periodic  Suspend Periodic Inquiries
        Unsigned 8-bit integer
        Device can enter low power state
    bthci_cmd.input_coding  Input Coding
        Unsigned 16-bit integer
        Authentication Enable
    bthci_cmd.input_data_format  Input Data Format
        Unsigned 16-bit integer
    bthci_cmd.input_sample_size  Input Sample Size
        Unsigned 16-bit integer
    bthci_cmd.inq_length  Inquiry Length
        Unsigned 8-bit integer
        Inquiry Length (*1.28s)
    bthci_cmd.inq_scan_type  Scan Type
        Unsigned 8-bit integer
    bthci_cmd.interval  Interval
        Unsigned 16-bit integer
    bthci_cmd.io_capability  IO Capability
        Unsigned 8-bit integer
    bthci_cmd.key_flag  Key Flag
        Unsigned 8-bit integer
    bthci_cmd.lap  LAP
        Unsigned 24-bit integer
        LAP for the inquiry access code
    bthci_cmd.latency  Latency
        Unsigned 32-bit integer
        Latency, in microseconds
    bthci_cmd.lin_pcm_bit_pos  Linear PCM Bit Pos
        Unsigned 16-bit integer
        # bit pos. that MSB of sample is away from starting at MSB
    bthci_cmd.link_key  Link Key
        Byte array
        Link Key for the associated BD_ADDR
    bthci_cmd.link_policy_hold  Enable Hold Mode
        Unsigned 16-bit integer
    bthci_cmd.link_policy_park  Enable Park Mode
        Unsigned 16-bit integer
    bthci_cmd.link_policy_sniff  Enable Sniff Mode
        Unsigned 16-bit integer
    bthci_cmd.link_policy_switch  Enable Master Slave Switch
        Unsigned 16-bit integer
    bthci_cmd.loopback_mode  Loopback Mode
        Unsigned 8-bit integer
    bthci_cmd.max_data_length_acl  Host ACL Data Packet Length (bytes)
        Unsigned 16-bit integer
        Max Host ACL Data Packet length of data portion host is able to accept
    bthci_cmd.max_data_length_sco  Host SCO Data Packet Length (bytes)
        Unsigned 8-bit integer
        Max Host SCO Data Packet length of data portion host is able to accept
    bthci_cmd.max_data_num_acl  Host Total Num ACL Data Packets
        Unsigned 16-bit integer
        Total Number of HCI ACL Data Packets that can be stored in the data buffers of the Host
    bthci_cmd.max_data_num_sco  Host Total Num SCO Data Packets
        Unsigned 16-bit integer
        Total Number of HCI SCO Data Packets that can be stored in the data buffers of the Host
    bthci_cmd.max_latency  Max. Latency
        Unsigned 16-bit integer
        Max. Latency in baseband slots
    bthci_cmd.max_latency_ms  Max. Latency (ms)
        Unsigned 16-bit integer
    bthci_cmd.max_period_length  Max Period Length
        Unsigned 16-bit integer
        Maximum amount of time specified between consecutive inquiries.
    bthci_cmd.min_local_timeout  Min. Local Timeout
        Unsigned 16-bit integer
        Min. Local Timeout in baseband slots
    bthci_cmd.min_period_length  Min Period Length
        Unsigned 16-bit integer
        Minimum amount of time specified between consecutive inquiries.
    bthci_cmd.min_remote_timeout  Min. Remote Timeout
        Unsigned 16-bit integer
        Min. Remote Timeout in baseband slots
    bthci_cmd.notification_type  Notification Type
        Unsigned 8-bit integer
    bthci_cmd.num_broad_retran  Num Broadcast Retran
        Unsigned 8-bit integer
        Number of Broadcast Retransmissions
    bthci_cmd.num_compl_packets  Number of Completed Packets
        Unsigned 16-bit integer
        Number of Completed HCI Data Packets
    bthci_cmd.num_curr_iac  Number of Current IAC
        Unsigned 8-bit integer
        Number of IACs which are currently in use
    bthci_cmd.num_handles  Number of Handles
        Unsigned 8-bit integer
    bthci_cmd.num_responses  Num Responses
        Unsigned 8-bit integer
        Number of Responses
    bthci_cmd.ocf  ocf
        Unsigned 16-bit integer
        Opcode Command Field
    bthci_cmd.ogf  ogf
        Unsigned 16-bit integer
        Opcode Group Field
    bthci_cmd.oob_data_present  OOB Data Present
        Unsigned 8-bit integer
    bthci_cmd.opcode  Command Opcode
        Unsigned 16-bit integer
        HCI Command Opcode
    bthci_cmd.packet_type_2dh1  Packet Type 2-DH1
        Unsigned 16-bit integer
    bthci_cmd.packet_type_2dh3  Packet Type 2-DH3
        Unsigned 16-bit integer
    bthci_cmd.packet_type_2dh5  Packet Type 2-DH5
        Unsigned 16-bit integer
    bthci_cmd.packet_type_3dh1  Packet Type 3-DH1
        Unsigned 16-bit integer
    bthci_cmd.packet_type_3dh3  Packet Type 3-DH3
        Unsigned 16-bit integer
    bthci_cmd.packet_type_3dh5  Packet Type 3-DH5
        Unsigned 16-bit integer
    bthci_cmd.packet_type_dh1  Packet Type DH1
        Unsigned 16-bit integer
    bthci_cmd.packet_type_dh3  Packet Type DH3
        Unsigned 16-bit integer
    bthci_cmd.packet_type_dh5  Packet Type DH5
        Unsigned 16-bit integer
    bthci_cmd.packet_type_dm1  Packet Type DM1
        Unsigned 16-bit integer
    bthci_cmd.packet_type_dm3  Packet Type DM3
        Unsigned 16-bit integer
    bthci_cmd.packet_type_dm5  Packet Type DM5
        Unsigned 16-bit integer
    bthci_cmd.packet_type_hv1  Packet Type HV1
        Unsigned 16-bit integer
    bthci_cmd.packet_type_hv2  Packet Type HV2
        Unsigned 16-bit integer
    bthci_cmd.packet_type_hv3  Packet Type HV3
        Unsigned 16-bit integer
    bthci_cmd.page_number  Page Number
        Unsigned 8-bit integer
    bthci_cmd.page_scan_mode  Page Scan Mode
        Unsigned 8-bit integer
    bthci_cmd.page_scan_period_mode  Page Scan Period Mode
        Unsigned 8-bit integer
    bthci_cmd.page_scan_repetition_mode  Page Scan Repetition Mode
        Unsigned 8-bit integer
    bthci_cmd.param_length  Parameter Total Length
        Unsigned 8-bit integer
    bthci_cmd.params  Command Parameters
        Byte array
    bthci_cmd.passkey  Passkey
        Unsigned 32-bit integer
    bthci_cmd.peak_bandwidth  Peak Bandwidth
        Unsigned 32-bit integer
        Peak Bandwidth, in bytes per second
    bthci_cmd.pin_code  PIN Code
        String
    bthci_cmd.pin_code_length  PIN Code Length
        Unsigned 8-bit integer
    bthci_cmd.pin_type  PIN Type
        Unsigned 8-bit integer
        PIN Types
    bthci_cmd.power_level  Power Level (dBm)
        Signed 8-bit integer
    bthci_cmd.power_level_type  Type
        Unsigned 8-bit integer
    bthci_cmd.randomizer_r  Randomizer R
        Unsigned 16-bit integer
    bthci_cmd.read_all_flag  Read All Flag
        Unsigned 8-bit integer
    bthci_cmd.reason  Reason
        Unsigned 8-bit integer
    bthci_cmd.retransmission_effort  Retransmission Effort
        Unsigned 8-bit integer
    bthci_cmd.role  Role
        Unsigned 8-bit integer
    bthci_cmd.rx_bandwidth  Rx Bandwidth (bytes/s)
        Unsigned 32-bit integer
        Rx Bandwidth
    bthci_cmd.scan_enable  Scan Enable
        Unsigned 8-bit integer
    bthci_cmd.sco_packet_type_2ev3  Packet Type 2-EV3
        Unsigned 16-bit integer
    bthci_cmd.sco_packet_type_2ev5  Packet Type 2-EV5
        Unsigned 16-bit integer
    bthci_cmd.sco_packet_type_3ev3  Packet Type 3-EV3
        Unsigned 16-bit integer
    bthci_cmd.sco_packet_type_3ev5  Packet Type 3-EV5
        Unsigned 16-bit integer
    bthci_cmd.sco_packet_type_ev3  Packet Type EV3
        Unsigned 16-bit integer
    bthci_cmd.sco_packet_type_ev4  Packet Type EV4
        Unsigned 16-bit integer
    bthci_cmd.sco_packet_type_ev5  Packet Type EV5
        Unsigned 16-bit integer
    bthci_cmd.sco_packet_type_hv1  Packet Type HV1
        Unsigned 16-bit integer
    bthci_cmd.sco_packet_type_hv2  Packet Type HV2
        Unsigned 16-bit integer
    bthci_cmd.sco_packet_type_hv3  Packet Type HV3
        Unsigned 16-bit integer
    bthci_cmd.service_class_uuid128  UUID
        Byte array
        128-bit Service Class UUID
    bthci_cmd.service_class_uuid16  UUID
        Unsigned 16-bit integer
        16-bit Service Class UUID
    bthci_cmd.service_class_uuid32  UUID
        Unsigned 32-bit integer
        32-bit Service Class UUID
    bthci_cmd.service_type  Service Type
        Unsigned 8-bit integer
    bthci_cmd.simple_pairing_debug_mode  Simple Pairing Debug Mode
        Unsigned 8-bit integer
    bthci_cmd.simple_pairing_mode  Simple Pairing Mode
        Unsigned 8-bit integer
    bthci_cmd.sniff_attempt  Sniff Attempt
        Unsigned 16-bit integer
        Number of Baseband receive slots for sniff attempt.
    bthci_cmd.sniff_max_int  Sniff Max Interval
        Unsigned 16-bit integer
        Maximal acceptable number of Baseband slots between each sniff period.
    bthci_cmd.sniff_min_int  Sniff Min Interval
        Unsigned 16-bit integer
        Minimum acceptable number of Baseband slots between each sniff period.
    bthci_cmd.status  Status
        Unsigned 8-bit integer
    bthci_cmd.timeout  Timeout
        Unsigned 16-bit integer
        Number of Baseband slots for timeout.
    bthci_cmd.token_bucket_size  Available Token Bucket Size
        Unsigned 32-bit integer
        Token Bucket Size in bytes
    bthci_cmd.token_rate  Available Token Rate
        Unsigned 32-bit integer
        Token Rate, in bytes per second
    bthci_cmd.tx_bandwidth  Tx Bandwidth (bytes/s)
        Unsigned 32-bit integer
        Tx Bandwidth
    bthci_cmd.which_clock  Which Clock
        Unsigned 8-bit integer
    bthci_cmd.window  Interval
        Unsigned 16-bit integer
        Window
    bthci_cmd_num_link_keys  Number of Link Keys
        Unsigned 8-bit integer

Bluetooth HCI Event (bthci_evt)

    bthci_evt.afh_ch_assessment_mode  AFH Channel Assessment Mode
        Unsigned 8-bit integer
    bthci_evt.afh_channel_map  AFH Channel Map
        Length byte array pair
    bthci_evt.afh_mode  AFH Mode
        Unsigned 8-bit integer
    bthci_evt.air_mode  Air Mode
        Unsigned 8-bit integer
    bthci_evt.auth_enable  Authentication
        Unsigned 8-bit integer
        Authentication Enable
    bthci_evt.auth_requirements  Authentication Requirements
        Unsigned 8-bit integer
    bthci_evt.bd_addr  BD_ADDR:
        No value
        Bluetooth Device Address
    bthci_evt.class_of_device  Class of Device
        Unsigned 24-bit integer
    bthci_evt.clock  Clock
        Unsigned 32-bit integer
    bthci_evt.clock_accuracy  Clock
        Unsigned 16-bit integer
    bthci_evt.clock_offset  Clock Offset
        Unsigned 16-bit integer
        Bit 2-16 of the Clock Offset between CLKmaster-CLKslave
    bthci_evt.code  Event Code
        Unsigned 8-bit integer
    bthci_evt.com_opcode  Command Opcode
        Unsigned 16-bit integer
    bthci_evt.comp_id  Manufacturer Name
        Unsigned 16-bit integer
        Manufacturer Name of Bluetooth Hardware
    bthci_evt.connection_handle  Connection Handle
        Unsigned 16-bit integer
    bthci_evt.country_code  Country Code
        Unsigned 8-bit integer
    bthci_evt.current_mode  Current Mode
        Unsigned 8-bit integer
    bthci_evt.delay_variation  Available Delay Variation
        Unsigned 32-bit integer
        Available Delay Variation, in microseconds
    bthci_evt.device_name  Device Name
        NULL terminated string
        Userfriendly descriptive name for the device
    bthci_evt.encryption_enable  Encryption Enable
        Unsigned 8-bit integer
    bthci_evt.encryption_mode  Encryption Mode
        Unsigned 8-bit integer
    bthci_evt.err_data_reporting  Erroneous Data Reporting
        Unsigned 8-bit integer
    bthci_evt.failed_contact_counter  Failed Contact Counter
        Unsigned 16-bit integer
    bthci_evt.fec_required  FEC Required
        Unsigned 8-bit integer
    bthci_evt.flags  Flags
        Unsigned 8-bit integer
    bthci_evt.flow_direction  Flow Direction
        Unsigned 8-bit integer
    bthci_evt.hardware_code  Hardware Code
        Unsigned 8-bit integer
        Hardware Code (implementation specific)
    bthci_evt.hash_c  Hash C
        Unsigned 16-bit integer
    bthci_evt.hci_vers_nr  HCI Version
        Unsigned 8-bit integer
        Version of the Current HCI
    bthci_evt.hold_mode_inquiry  Suspend Inquiry Scan
        Unsigned 8-bit integer
        Device can enter low power state
    bthci_evt.hold_mode_page  Suspend Page Scan
        Unsigned 8-bit integer
        Device can enter low power state
    bthci_evt.hold_mode_periodic  Suspend Periodic Inquiries
        Unsigned 8-bit integer
        Device can enter low power state
    bthci_evt.input_coding  Input Coding
        Unsigned 16-bit integer
        Authentication Enable
    bthci_evt.input_data_format  Input Data Format
        Unsigned 16-bit integer
    bthci_evt.input_sample_size  Input Sample Size
        Unsigned 16-bit integer
    bthci_evt.inq_scan_type  Scan Type
        Unsigned 8-bit integer
    bthci_evt.interval  Interval
        Unsigned 16-bit integer
        Interval - Number of Baseband slots
    bthci_evt.io_capability  IO Capability
        Unsigned 8-bit integer
    bthci_evt.key_flag  Key Flag
        Unsigned 8-bit integer
    bthci_evt.key_type  Key Type
        Unsigned 8-bit integer
    bthci_evt.latency  Available Latency
        Unsigned 32-bit integer
        Available Latency, in microseconds
    bthci_evt.link_key  Link Key
        Byte array
        Link Key for the associated BD_ADDR
    bthci_evt.link_policy_hold  Enable Hold Mode
        Unsigned 16-bit integer
    bthci_evt.link_policy_park  Enable Park Mode
        Unsigned 16-bit integer
    bthci_evt.link_policy_sniff  Enable Sniff Mode
        Unsigned 16-bit integer
    bthci_evt.link_policy_switch  Enable Master Slave Switch
        Unsigned 16-bit integer
    bthci_evt.link_quality  Link Quality
        Unsigned 8-bit integer
        Link Quality (0x00 - 0xFF Higher Value = Better Link)
    bthci_evt.link_supervision_timeout  Link Supervision Timeout
        Unsigned 16-bit integer
    bthci_evt.link_type  Link Type
        Unsigned 8-bit integer
    bthci_evt.link_type_2dh1  ACL Link Type 2-DH1
        Unsigned 16-bit integer
    bthci_evt.link_type_2dh3  ACL Link Type 2-DH3
        Unsigned 16-bit integer
    bthci_evt.link_type_2dh5  ACL Link Type 2-DH5
        Unsigned 16-bit integer
    bthci_evt.link_type_3dh1  ACL Link Type 3-DH1
        Unsigned 16-bit integer
    bthci_evt.link_type_3dh3  ACL Link Type 3-DH3
        Unsigned 16-bit integer
    bthci_evt.link_type_3dh5  ACL Link Type 3-DH5
        Unsigned 16-bit integer
    bthci_evt.link_type_dh1  ACL Link Type DH1
        Unsigned 16-bit integer
    bthci_evt.link_type_dh3  ACL Link Type DH3
        Unsigned 16-bit integer
    bthci_evt.link_type_dh5  ACL Link Type DH5
        Unsigned 16-bit integer
    bthci_evt.link_type_dm1  ACL Link Type DM1
        Unsigned 16-bit integer
    bthci_evt.link_type_dm3  ACL Link Type DM3
        Unsigned 16-bit integer
    bthci_evt.link_type_dm5  ACL Link Type DM5
        Unsigned 16-bit integer
    bthci_evt.link_type_hv1  SCO Link Type HV1
        Unsigned 16-bit integer
    bthci_evt.link_type_hv2  SCO Link Type HV2
        Unsigned 16-bit integer
    bthci_evt.link_type_hv3  SCO Link Type HV3
        Unsigned 16-bit integer
    bthci_evt.lmp_feature  3-slot packets
        Unsigned 8-bit integer
    bthci_evt.lmp_handle  LMP Handle
        Unsigned 16-bit integer
    bthci_evt.lmp_sub_vers_nr  LMP Subversion
        Unsigned 16-bit integer
        Subversion of the Current LMP
    bthci_evt.lmp_vers_nr  LMP Version
        Unsigned 8-bit integer
        Version of the Current LMP
    bthci_evt.local_supported_cmds  Local Supported Commands
        Byte array
    bthci_evt.loopback_mode  Loopback Mode
        Unsigned 8-bit integer
    bthci_evt.max_data_length_acl  Host ACL Data Packet Length (bytes)
        Unsigned 16-bit integer
        Max Host ACL Data Packet length of data portion host is able to accept
    bthci_evt.max_data_length_sco  Host SCO Data Packet Length (bytes)
        Unsigned 8-bit integer
        Max Host SCO Data Packet length of data portion host is able to accept
    bthci_evt.max_data_num_acl  Host Total Num ACL Data Packets
        Unsigned 16-bit integer
        Total Number of HCI ACL Data Packets that can be stored in the data buffers of the Host
    bthci_evt.max_data_num_sco  Host Total Num SCO Data Packets
        Unsigned 16-bit integer
        Total Number of HCI SCO Data Packets that can be stored in the data buffers of the Host
    bthci_evt.max_num_keys  Max Num Keys
        Unsigned 16-bit integer
        Total Number of Link Keys that the Host Controller can store
    bthci_evt.max_page_number  Max. Page Number
        Unsigned 8-bit integer
    bthci_evt.max_rx_latency  Max. Rx Latency
        Unsigned 16-bit integer
    bthci_evt.max_slots  Maximum Number of Slots
        Unsigned 8-bit integer
        Maximum Number of slots allowed for baseband packets
    bthci_evt.max_tx_latency  Max. Tx Latency
        Unsigned 16-bit integer
    bthci_evt.min_local_timeout  Min. Local Timeout
        Unsigned 16-bit integer
    bthci_evt.min_remote_timeout  Min. Remote Timeout
        Unsigned 16-bit integer
    bthci_evt.notification_type  Notification Type
        Unsigned 8-bit integer
    bthci_evt.num_broad_retran  Num Broadcast Retran
        Unsigned 8-bit integer
        Number of Broadcast Retransmissions
    bthci_evt.num_command_packets  Number of Allowed Command Packets
        Unsigned 8-bit integer
    bthci_evt.num_compl_packets  Number of Completed Packets
        Unsigned 16-bit integer
        The number of HCI Data Packets that have been completed
    bthci_evt.num_curr_iac  Num Current IAC
        Unsigned 8-bit integer
        Num of IACs currently in use to simultaneously listen
    bthci_evt.num_handles  Number of Connection Handles
        Unsigned 8-bit integer
        Number of Connection Handles and Num_HCI_Data_Packets parameter pairs
    bthci_evt.num_keys  Number of Link Keys
        Unsigned 8-bit integer
        Number of Link Keys contained
    bthci_evt.num_keys_deleted  Number of Link Keys Deleted
        Unsigned 16-bit integer
    bthci_evt.num_keys_read  Number of Link Keys Read
        Unsigned 16-bit integer
    bthci_evt.num_keys_written  Number of Link Keys Written
        Unsigned 8-bit integer
    bthci_evt.num_responses  Number of responses
        Unsigned 8-bit integer
        Number of Responses from Inquiry
    bthci_evt.num_supp_iac  Num Support IAC
        Unsigned 8-bit integer
        Num of supported IAC the device can simultaneously listen
    bthci_evt.numeric_value  Numeric Value
        Unsigned 32-bit integer
    bthci_evt.ocf  ocf
        Unsigned 16-bit integer
        Opcode Command Field
    bthci_evt.ogf  ogf
        Unsigned 16-bit integer
        Opcode Group Field
    bthci_evt.oob_data_present  OOB Data Present
        Unsigned 8-bit integer
    bthci_evt.page_number  Page Number
        Unsigned 8-bit integer
    bthci_evt.page_scan_mode  Page Scan Mode
        Unsigned 8-bit integer
    bthci_evt.page_scan_period_mode  Page Scan Period Mode
        Unsigned 8-bit integer
    bthci_evt.page_scan_repetition_mode  Page Scan Repetition Mode
        Unsigned 8-bit integer
    bthci_evt.param_length  Parameter Total Length
        Unsigned 8-bit integer
    bthci_evt.params  Event Parameter
        No value
    bthci_evt.passkey  Passkey
        Unsigned 32-bit integer
    bthci_evt.peak_bandwidth  Available Peak Bandwidth
        Unsigned 32-bit integer
        Available Peak Bandwidth, in bytes per second
    bthci_evt.pin_type  PIN Type
        Unsigned 8-bit integer
        PIN Types
    bthci_evt.power_level_type  Type
        Unsigned 8-bit integer
    bthci_evt.randomizer_r  Randomizer R
        Unsigned 16-bit integer
    bthci_evt.reason  Reason
        Unsigned 8-bit integer
    bthci_evt.remote_name  Remote Name
        NULL terminated string
        Userfriendly descriptive name for the remote device
    bthci_evt.ret_params  Return Parameter
        No value
    bthci_evt.role  Role
        Unsigned 8-bit integer
    bthci_evt.rssi  RSSI (dB)
        Signed 8-bit integer
    bthci_evt.scan_enable  Scan
        Unsigned 8-bit integer
        Scan Enable
    bthci_evt.sco_flow_cont_enable  SCO Flow Control
        Unsigned 8-bit integer
        SCO Flow Control Enable
    bthci_evt.service_type  Service Type
        Unsigned 8-bit integer
    bthci_evt.simple_pairing_mode  Simple Pairing Mode
        Unsigned 8-bit integer
    bthci_evt.status  Status
        Unsigned 8-bit integer
    bthci_evt.sync_link_type  Link Type
        Unsigned 8-bit integer
    bthci_evt.sync_rtx_window  Retransmit Window
        Unsigned 8-bit integer
    bthci_evt.sync_rx_pkt_len  Rx Packet Length
        Unsigned 16-bit integer
    bthci_evt.sync_tx_interval  Transmit Interval
        Unsigned 8-bit integer
    bthci_evt.sync_tx_pkt_len  Tx Packet Length
        Unsigned 16-bit integer
    bthci_evt.timeout  Timeout
        Unsigned 16-bit integer
        Number of Baseband slots for timeout.
    bthci_evt.token_bucket_size  Token Bucket Size
        Unsigned 32-bit integer
        Token Bucket Size (bytes)
    bthci_evt.token_rate  Available Token Rate
        Unsigned 32-bit integer
        Available Token Rate, in bytes per second
    bthci_evt.transmit_power_level  Transmit Power Level (dBm)
        Signed 8-bit integer
    bthci_evt.window  Interval
        Unsigned 16-bit integer
        Window
    bthci_evt_curr_role  Current Role
        Unsigned 8-bit integer
        Current role for this connection handle

Bluetooth HCI H4 (hci_h4)

    hci_h4.direction  Direction
        Unsigned 8-bit integer
        HCI Packet Direction Sent/Rcvd
    hci_h4.type  HCI Packet Type
        Unsigned 8-bit integer

Bluetooth HCI SCO Packet (bthci_sco)

    btsco.chandle  Connection Handle
        Unsigned 16-bit integer
    btsco.data  Data
        No value
    btsco.length  Data Total Length
        Unsigned 8-bit integer

Bluetooth L2CAP Packet (btl2cap)

    btl2cap.cid  CID
        Unsigned 16-bit integer
        L2CAP Channel Identifier
    btl2cap.cmd_code  Command Code
        Unsigned 8-bit integer
        L2CAP Command Code
    btl2cap.cmd_data  Command Data
        No value
        L2CAP Command Data
    btl2cap.cmd_ident  Command Identifier
        Unsigned 8-bit integer
        L2CAP Command Identifier
    btl2cap.cmd_length  Command Length
        Unsigned 8-bit integer
        L2CAP Command Length
    btl2cap.command  Command
        No value
        L2CAP Command
    btl2cap.conf_param_option  Configuration Parameter Option
        No value
    btl2cap.conf_result  Result
        Unsigned 16-bit integer
        Configuration Result
    btl2cap.continuation  Continuation Flag
        Boolean
    btl2cap.continuation_to  This is a continuation to the SDU in frame
        Frame number
        This is a continuation to the SDU in frame #
    btl2cap.control  Control field
        No value
    btl2cap.control_reqseq  ReqSeq
        Unsigned 16-bit integer
        Request Sequence Number
    btl2cap.control_retransmissiondisable  R
        Unsigned 16-bit integer
        Retransmission Disable
    btl2cap.control_sar  Segmentation and reassembly
        Unsigned 16-bit integer
    btl2cap.control_supervisory  S
        Unsigned 16-bit integer
        Supervisory Function
    btl2cap.control_txseq  TxSeq
        Unsigned 16-bit integer
        Transmitted Sequence Number
    btl2cap.control_type  Frame Type
        Unsigned 16-bit integer
    btl2cap.ctrl_id  Controller ID
        Unsigned 8-bit integer
    btl2cap.dcid  Destination CID
        Unsigned 16-bit integer
        Destination Channel Identifier
    btl2cap.dctrl_id  Controller ID
        Unsigned 8-bit integer
        Destination Controller ID
    btl2cap.fcs  FCS
        Unsigned 16-bit integer
        Frame Check Sequence
    btl2cap.icid  Initiator CID
        Unsigned 16-bit integer
        Initiator Channel Identifier
    btl2cap.info_bidirqos  Bi-Directional QOS
        Unsigned 8-bit integer
        Bi-Directional QOS support
    btl2cap.info_enh_retransmission  Enhancded Retransmission Mode
        Unsigned 8-bit integer
        Enhancded Retransmission mode support
    btl2cap.info_extfeatures  Extended Features
        No value
        Extended Features Mask
    btl2cap.info_fcs  FCS
        Unsigned 8-bit integer
        FCS support
    btl2cap.info_fixedchan  Fixed Channels
        Unsigned 8-bit integer
        Fixed Channels support
    btl2cap.info_fixedchans  Fixed Channels
        No value
    btl2cap.info_fixedchans_amp_man  AMP Manager protocol
        Unsigned 32-bit integer
    btl2cap.info_fixedchans_amp_test  AMP Test Manager
        Unsigned 32-bit integer
    btl2cap.info_fixedchans_connless  Connectionless reception
        Unsigned 32-bit integer
    btl2cap.info_fixedchans_null  Null identifier
        Unsigned 32-bit integer
    btl2cap.info_fixedchans_signal  L2CAP signaling channel
        Unsigned 32-bit integer
    btl2cap.info_flow_spec  Extended Flow Specification for BR/EDR
        Unsigned 8-bit integer
        Extended Flow Specification for BR/EDR support
    btl2cap.info_flowcontrol  Flow Control Mode
        Unsigned 8-bit integer
        Flow Control mode support
    btl2cap.info_mtu  Remote Entity MTU
        Unsigned 16-bit integer
        Remote entity acceptable connectionless MTU
    btl2cap.info_result  Result
        Unsigned 16-bit integer
        Information about the success of the request
    btl2cap.info_retransmission  Retransmission Mode
        Unsigned 8-bit integer
        Retransmission mode support
    btl2cap.info_streaming  Streaming Mode
        Unsigned 8-bit integer
        Streaming mode support
    btl2cap.info_type  Information Type
        Unsigned 16-bit integer
        Type of implementation-specific information
    btl2cap.info_unicast  Unicast Connectionless Data Reception
        Unsigned 8-bit integer
        Unicast Connectionless Data Reception support
    btl2cap.info_window  Extended Window Size
        Unsigned 8-bit integer
        Extended Window Size support
    btl2cap.length  Length
        Unsigned 16-bit integer
        L2CAP Payload Length
    btl2cap.maxtransmit  MaxTransmit
        Unsigned 8-bit integer
        Maximum I-frame retransmissions
    btl2cap.monitortimeout  Monitor Timeout (ms)
        Unsigned 16-bit integer
        S-frame transmission interval (milliseconds)
    btl2cap.move_result  Move Result
        Unsigned 16-bit integer
    btl2cap.mps  MPS
        Unsigned 16-bit integer
        Maximum PDU Payload Size
    btl2cap.option_access_latency  Access Latency (us)
        Unsigned 32-bit integer
        Access Latency (microseconds)
    btl2cap.option_delayvar  Delay Variation (microseconds)
        Unsigned 32-bit integer
        Difference between maximum and minimum delay (microseconds)
    btl2cap.option_fcs  FCS
        Unsigned 16-bit integer
        Frame Check Sequence
    btl2cap.option_flags  Flags
        Unsigned 8-bit integer
        Flags - must be set to 0 (Reserved for future use)
    btl2cap.option_flushto  Flush Timeout (ms)
        Unsigned 16-bit integer
        Flush Timeout in milliseconds
    btl2cap.option_ident  Identifier
        Unsigned 8-bit integer
        Flow Specification Identifier
    btl2cap.option_latency  Latency (microseconds)
        Unsigned 32-bit integer
        Maximal acceptable delay (microseconds)
    btl2cap.option_length  Length
        Unsigned 8-bit integer
        Number of octets in option payload
    btl2cap.option_mtu  MTU
        Unsigned 16-bit integer
        Maximum Transmission Unit
    btl2cap.option_peakbandwidth  Peak Bandwidth (bytes/s)
        Unsigned 32-bit integer
        Limit how fast packets may be sent (bytes/s)
    btl2cap.option_sdu_arrival_time  SDU Inter-arrival Time (us)
        Unsigned 32-bit integer
        SDU Inter-arrival Time (microseconds)
    btl2cap.option_sdu_size  Maximum SDU Size
        Unsigned 16-bit integer
    btl2cap.option_servicetype  Service Type
        Unsigned 8-bit integer
        Level of service required
    btl2cap.option_tokenbsize  Token Bucket Size (bytes)
        Unsigned 32-bit integer
        Size of the token bucket (bytes)
    btl2cap.option_tokenrate  Token Rate (bytes/s)
        Unsigned 32-bit integer
        Rate at which traffic credits are granted (bytes/s)
    btl2cap.option_type  Type
        Unsigned 8-bit integer
        Type of option
    btl2cap.option_window  Extended Window Size
        Unsigned 16-bit integer
    btl2cap.payload  Payload
        Byte array
        L2CAP Payload
    btl2cap.psm  PSM
        Unsigned 16-bit integer
        Protocol/Service Multiplexer
    btl2cap.reassembled_in  This SDU is reassembled in frame
        Frame number
        This SDU is reassembled in frame #
    btl2cap.result  Result
        Unsigned 16-bit integer
    btl2cap.retransmissionmode  Mode
        Unsigned 8-bit integer
        Retransmission/Flow Control mode
    btl2cap.retransmittimeout  Retransmit timeout (ms)
        Unsigned 16-bit integer
        Retransmission timeout (milliseconds)
    btl2cap.scid  Source CID
        Unsigned 16-bit integer
        Source Channel Identifier
    btl2cap.sdulength  SDU Length
        Unsigned 16-bit integer
    btl2cap.sig_mtu  Maximum Signalling MTU
        Unsigned 16-bit integer
    btl2cap.status  Status
        Unsigned 16-bit integer
    btl2cap.txwindow  TxWindow
        Unsigned 8-bit integer
        Retransmission window size

Bluetooth OBEX (btobex)

    btobex.constants  Constants
        Unsigned 8-bit integer
        Constants
    btobex.data  Obex Data
        No value
        Obex Data
    btobex.final_flag  Final Flag
        Boolean
        Final Flag
    btobex.flags  Flags
        Unsigned 8-bit integer
        Flags
    btobex.fragment  OBEX Fragment
        Frame number
        btobex Fragment
    btobex.fragment.error  Defragmentation error
        Frame number
        Defragmentation error due to illegal fragments
    btobex.fragment.multipletails  Multiple tail fragments found
        Boolean
        Several tails were found when defragmenting the packet
    btobex.fragment.overlap  Fragment overlap
        Boolean
        Fragment overlaps with other fragments
    btobex.fragment.overlap.conflict  Conflicting data in fragment overlap
        Boolean
        Overlapping fragments contained conflicting data
    btobex.fragment.toolongfragment  Fragment too long
        Boolean
        Fragment contained data past end of packet
    btobex.fragments  OBEX Fragments
        No value
        btobex Fragments
    btobex.hdr_id  Header Id
        Unsigned 8-bit integer
        Header Id
    btobex.hdr_val_byte  Value
        Unsigned 8-bit integer
        Byte Sequence Value
    btobex.hdr_val_byte_seq  Value
        Byte array
        Byte Value
    btobex.hdr_val_long  Value
        Unsigned 32-bit integer
        4-byte Value
    btobex.max_pkt_len  Max. Packet Length
        Unsigned 16-bit integer
        Maximum Packet Length
    btobex.opcode  Opcode
        Unsigned 8-bit integer
        Request Opcode
    btobex.pkt_hdr_len  Length
        Unsigned 16-bit integer
        Header Length
    btobex.pkt_hdr_val_uc  Value
        String
        Unicode Value
    btobex.pkt_len  Packet Length
        Unsigned 16-bit integer
        Packet Length
    btobex.reassembled.length  Reassembled OBEX length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    btobex.reassembled_in  Reassembled OBEX in frame
        Frame number
        This OBEX frame is reassembled in this frame
    btobex.resp_code  Response Code
        Unsigned 8-bit integer
        Response Code
    btobex.set_path_flags_0  Go back one folder (../) first
        Boolean
        Go back one folder (../) first
    btobex.set_path_flags_1  Do not create folder, if not existing
        Boolean
        Do not create folder, if not existing
    btobex.version  Version
        Unsigned 8-bit integer
        Obex Version

Bluetooth RFCOMM Packet (btrfcomm)

    btrfcomm.cr  C/R Flag
        Unsigned 8-bit integer
        Command/Response flag
    btrfcomm.credits  Credits
        Unsigned 8-bit integer
        Flow control: number of UIH frames allowed to send
    btrfcomm.dlci  DLCI
        Unsigned 8-bit integer
        RFCOMM DLCI
    btrfcomm.ea  EA Flag
        Unsigned 8-bit integer
        EA flag (should be always 1)
    btrfcomm.error_recovery_mode  Error Recovery Mode
        Unsigned 8-bit integer
    btrfcomm.fcs  Frame Check Sequence
        Unsigned 8-bit integer
        Checksum over frame
    btrfcomm.frame_type  Frame type
        Unsigned 8-bit integer
        Command/Response flag
    btrfcomm.len  Payload length
        Unsigned 16-bit integer
        Frame length
    btrfcomm.max_frame_size  Max Frame Size
        Unsigned 16-bit integer
        Maximum Frame Size
    btrfcomm.max_retrans  Max Retrans
        Unsigned 8-bit integer
        Maximum number of retransmissions
    btrfcomm.mcc.cmd  C/R Flag
        Unsigned 8-bit integer
        Command/Response flag
    btrfcomm.mcc.cr  C/R Flag
        Unsigned 8-bit integer
        Command/Response flag
    btrfcomm.mcc.ea  EA Flag
        Unsigned 8-bit integer
        EA flag (should be always 1)
    btrfcomm.mcc.len  MCC Length
        Unsigned 16-bit integer
        Length of MCC data
    btrfcomm.msc.bl  Length of break in units of 200ms
        Unsigned 8-bit integer
    btrfcomm.msc.dv  Data Valid (DV)
        Unsigned 8-bit integer
        Data Valid
    btrfcomm.msc.fc  Flow Control (FC)
        Unsigned 8-bit integer
        Flow Control
    btrfcomm.msc.ic  Incoming Call Indicator (IC)
        Unsigned 8-bit integer
        Incoming Call Indicator
    btrfcomm.msc.rtc  Ready To Communicate (RTC)
        Unsigned 8-bit integer
        Ready To Communicate
    btrfcomm.msc.rtr  Ready To Receive (RTR)
        Unsigned 8-bit integer
        Ready To Receive
    btrfcomm.pf  P/F flag
        Unsigned 8-bit integer
        Poll/Final bit
    btrfcomm.pn.cl  Convergence layer
        Unsigned 8-bit integer
        Convergence layer used for that particular DLCI
    btrfcomm.pn.i  Type of frame
        Unsigned 8-bit integer
        Type of information frames used for that particular DLCI
    btrfcomm.priority  Priority
        Unsigned 8-bit integer

Bluetooth SDP (btsdp)

    btsdp.error_code  ErrorCode
        Unsigned 16-bit integer
        Error Code
    btsdp.len  ParameterLength
        Unsigned 16-bit integer
    btsdp.pdu  PDU
        Unsigned 8-bit integer
        PDU type
    btsdp.ssares.byte_count  AttributeListsByteCount
        Unsigned 16-bit integer
        count of bytes in attribute list response
    btsdp.ssr.current_count  CurrentServiceRecordCount
        Unsigned 16-bit integer
        count of service records in this message
    btsdp.ssr.total_count  TotalServiceRecordCount
        Unsigned 16-bit integer
        Total count of service records
    btsdp.tid  TransactionID
        Unsigned 16-bit integer
        Transaction ID

Boardwalk (brdwlk)

    brdwlk.drop  Packet Dropped
        Boolean
    brdwlk.eof  EOF
        Unsigned 8-bit integer
    brdwlk.error  Error
        Unsigned 8-bit integer
    brdwlk.error.crc  CRC
        Boolean
    brdwlk.error.ctrl  Ctrl Char Inside Frame
        Boolean
    brdwlk.error.ef  Empty Frame
        Boolean
    brdwlk.error.ff  Fifo Full
        Boolean
    brdwlk.error.jumbo  Jumbo FC Frame
        Boolean
    brdwlk.error.nd  No Data
        Boolean
    brdwlk.error.plp  Packet Length Present
        Boolean
    brdwlk.error.tr  Truncated
        Boolean
    brdwlk.pktcnt  Packet Count
        Unsigned 16-bit integer
    brdwlk.plen  Original Packet Length
        Unsigned 32-bit integer
    brdwlk.sof  SOF
        Unsigned 8-bit integer
    brdwlk.vsan  VSAN
        Unsigned 16-bit integer

Boot Parameters (bootparams)

    bootparams.domain  Client Domain
        String
    bootparams.fileid  File ID
        String
    bootparams.filepath  File Path
        String
    bootparams.host  Client Host
        String
    bootparams.hostaddr  Client Address
        IPv4 address
        Address
    bootparams.procedure_v1  V1 Procedure
        Unsigned 32-bit integer
    bootparams.routeraddr  Router Address
        IPv4 address
    bootparams.type  Address Type
        Unsigned 32-bit integer

Bootstrap Protocol (bootp)

    bootp.client_id_uuid  Client Identifier (UUID)
        Globally Unique Identifier
        Client Machine Identifier (UUID)
    bootp.client_network_id_major  Client Network ID Major Version
        Unsigned 8-bit integer
        Client Machine Identifier, Major Version
    bootp.client_network_id_minor  Client Network ID Minor Version
        Unsigned 8-bit integer
        Client Machine Identifier, Major Version
    bootp.cookie  Magic cookie
        IPv4 address
    bootp.dhcp  Frame is DHCP
        Boolean
    bootp.file  Boot file name
        String
    bootp.flags  Bootp flags
        Unsigned 16-bit integer
    bootp.flags.bc  Broadcast flag
        Boolean
    bootp.flags.reserved  Reserved flags
        Unsigned 16-bit integer
    bootp.fqdn.e  Encoding
        Boolean
        If true, name is binary encoded
    bootp.fqdn.mbz  Reserved flags
        Unsigned 8-bit integer
    bootp.fqdn.n  Server DDNS
        Boolean
        If true, server should not do any DDNS updates
    bootp.fqdn.name  Client name
        String
        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.addr_padding  Client hardware address padding
        Byte array
    bootp.hw.len  Hardware address length
        Unsigned 8-bit integer
    bootp.hw.mac_addr  Client MAC address
        6-byte Hardware (MAC) Address
    bootp.hw.type  Hardware type
        Unsigned 8-bit integer
    bootp.id  Transaction ID
        Unsigned 32-bit integer
    bootp.ip.client  Client IP address
        IPv4 address
    bootp.ip.relay  Relay agent IP address
        IPv4 address
    bootp.ip.server  Next server IP address
        IPv4 address
    bootp.ip.your  Your (client) IP address
        IPv4 address
    bootp.option.length  Length
        Unsigned 8-bit integer
        Bootp/Dhcp option length
    bootp.option.type  Option
        Unsigned 8-bit integer
        Bootp/Dhcp option type
    bootp.option.value  Value
        Byte array
        Bootp/Dhcp option value
    bootp.secs  Seconds elapsed
        Unsigned 16-bit integer
    bootp.server  Server host name
        String
    bootp.type  Message type
        Unsigned 8-bit integer
    bootp.vendor  Bootp Vendor Options
        Byte array
    bootp.vendor.alu.app_type  Application Type
        Unsigned 8-bit integer
    bootp.vendor.alu.sip_url  SIP URL
        String
    bootp.vendor.alu.tftp1  Spatial Redundancy TFTP1
        IPv4 address
    bootp.vendor.alu.tftp2  Spatial Redundancy TFTP2
        IPv4 address
    bootp.vendor.alu.vid  Voice VLAN ID
        Unsigned 16-bit integer
    bootp.vendor.docsis.cmcap_len  CM DC Length
        Unsigned 8-bit integer
        DOCSIS Cable Modem Device Capabilities Length
    bootp.vendor.pktc.mtacap_len  MTA DC Length
        Unsigned 8-bit integer
        PacketCable MTA Device Capabilities Length

Border Gateway Protocol (bgp)

    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
    bgp.ssa_l2tpv3_cookie_len  Cookie Length
        Unsigned 8-bit integer
    bgp.ssa_l2tpv3_pref  Preference
        Unsigned 16-bit integer
    bgp.ssa_l2tpv3_s  Sequencing bit
        Boolean
        Sequencing S-bit
    bgp.ssa_l2tpv3_session_id  Session ID
        Unsigned 32-bit integer
    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
    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

Building Automation and Control Network APDU (bacapp)

    bacapp.IPV4  IPV4
        IPv4 address
        IP-Address
    bacapp.IPV6  IPV6
        IPv6 address
        IP-Address
    bacapp.LVT  Length Value Type
        Unsigned 8-bit integer
    bacapp.NAK  NAK
        Boolean
        negative ACK
    bacapp.Port  Port
        Unsigned 16-bit integer
        Port
    bacapp.SA  SA
        Boolean
        Segmented Response accepted
    bacapp.SRV  SRV
        Boolean
        Server
    bacapp.abort_reason  Abort Reason
        Unsigned 8-bit integer
    bacapp.application_tag_number  Application Tag Number
        Unsigned 8-bit integer
    bacapp.confirmed_service  Service Choice
        Unsigned 8-bit integer
    bacapp.context_tag_number  Context Tag Number
        Unsigned 8-bit integer
    bacapp.extended_tag_number  Extended Tag Number
        Unsigned 8-bit integer
    bacapp.fragment  Message fragment
        Frame number
    bacapp.fragment.error  Message defragmentation error
        Frame number
    bacapp.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    bacapp.fragment.overlap  Message fragment overlap
        Boolean
    bacapp.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    bacapp.fragment.too_long_fragment  Message fragment too long
        Boolean
    bacapp.fragments  Message fragments
        No value
    bacapp.instance_number  Instance Number
        Unsigned 32-bit integer
    bacapp.invoke_id  Invoke ID
        Unsigned 8-bit integer
    bacapp.max_adpu_size  Size of Maximum ADPU accepted
        Unsigned 8-bit integer
    bacapp.more_segments  More Segments
        Boolean
        More Segments Follow
    bacapp.named_tag  Named Tag
        Unsigned 8-bit integer
    bacapp.objectType  Object Type
        Unsigned 32-bit integer
    bacapp.pduflags  PDU Flags
        Unsigned 8-bit integer
    bacapp.processId  ProcessIdentifier
        Unsigned 32-bit integer
        Process Identifier
    bacapp.property_identifier  Property Identifier
        Unsigned 32-bit integer
    bacapp.reassembled.in  Reassembled in
        Frame number
    bacapp.reassembled.length  Reassembled BACapp length
        Unsigned 32-bit integer
    bacapp.reject_reason  Reject Reason
        Unsigned 8-bit integer
    bacapp.response_segments  Max Response Segments accepted
        Unsigned 8-bit integer
    bacapp.restart_reason  Restart Reason
        Unsigned 8-bit integer
    bacapp.segmented_request  Segmented Request
        Boolean
    bacapp.sequence_number  Sequence Number
        Unsigned 8-bit integer
    bacapp.string_character_set  String Character Set
        Unsigned 8-bit integer
    bacapp.tag  BACnet Tag
        Byte array
    bacapp.tag_class  Tag Class
        Boolean
    bacapp.tag_value16  Tag Value 16-bit
        Unsigned 16-bit integer
    bacapp.tag_value32  Tag Value 32-bit
        Unsigned 32-bit integer
    bacapp.tag_value8  Tag Value
        Unsigned 8-bit integer
    bacapp.type  APDU Type
        Unsigned 8-bit integer
    bacapp.unconfirmed_service  Unconfirmed Service Choice
        Unsigned 8-bit integer
    bacapp.variable_part  BACnet APDU variable part:
        No value
        BACnet APDU variable part
    bacapp.vendor_identifier  Vendor Identifier
        Unsigned 16-bit integer
    bacapp.window_size  Proposed Window Size
        Unsigned 8-bit integer

Building Automation and Control Network NPDU (bacnet)

    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
    bacnet.dadr_mstp  DADR
        Unsigned 8-bit integer
        Destination MS/TP or ARCNET MAC Address
    bacnet.dadr_tmp  Unknown Destination MAC
        Byte array
    bacnet.dlen  Destination MAC Layer Address Length
        Unsigned 8-bit integer
    bacnet.dnet  Destination Network Address
        Unsigned 16-bit integer
    bacnet.hopc  Hop Count
        Unsigned 8-bit integer
    bacnet.mesgtyp  Network Layer Message Type
        Unsigned 8-bit integer
    bacnet.perf  Performance Index
        Unsigned 8-bit integer
    bacnet.pinfolen  Port Info Length
        Unsigned 8-bit integer
    bacnet.portid  Port ID
        Unsigned 8-bit integer
    bacnet.rejectreason  Reject Reason
        Unsigned 8-bit integer
    bacnet.rportnum  Number of Port Mappings
        Unsigned 8-bit integer
    bacnet.sadr_eth  SADR
        6-byte Hardware (MAC) Address
        Source ISO 8802-3 MAC Address
    bacnet.sadr_mstp  SADR
        Unsigned 8-bit integer
        Source MS/TP or ARCNET MAC Address
    bacnet.sadr_tmp  Unknown Source MAC
        Byte array
    bacnet.slen  Source MAC Layer Address Length
        Unsigned 8-bit integer
    bacnet.snet  Source Network Address
        Unsigned 16-bit integer
    bacnet.term_time_value  Termination Time Value (seconds)
        Unsigned 8-bit integer
        Termination Time Value
    bacnet.vendor  Vendor ID
        Unsigned 16-bit integer
    bacnet.version  Version
        Unsigned 8-bit integer
        BACnet Version

Bundle Protocol (bundle)

    bundle.admin.signal.time  Time of Signal
        Unsigned 64-bit integer
    bundle.admin.status.accept  Reporting Node Accepted Custody
        Boolean
    bundle.admin.status.accepttime  Time of Custody Acceptance
        Unsigned 64-bit integer
    bundle.admin.status.ack  Acknowledged by Application
        Boolean
    bundle.admin.status.acktime  Time of Acknowledgement
        Unsigned 64-bit integer
    bundle.admin.status.delete  Reporting Node Deleted Bundle
        Boolean
    bundle.admin.status.deletetime  Time of Deletion
        Unsigned 64-bit integer
    bundle.admin.status.delivered  Reporting Node Delivered Bundle
        Boolean
    bundle.admin.status.deliverytime  Time of Delivery
        Unsigned 64-bit integer
    bundle.admin.status.flag  Administrative Record Status Flags
        Unsigned 8-bit integer
    bundle.admin.status.forward  Reporting Node Forwarded Bundle
        Boolean
    bundle.admin.status.forwardtime  Time of Forwarding
        Unsigned 64-bit integer
    bundle.admin.status.rcvd  Reporting Node Received Bundle
        Boolean
    bundle.admin.status.receipttime  Time of Receipt
        Unsigned 64-bit integer
    bundle.admin.status.timecopy  Copy of Creation Timestamp
        Unsigned 64-bit integer
    bundle.block.control.delete  Delete Bundle if Block Can't be Processeed
        Boolean
    bundle.block.control.discard  Discard Block If Can't Process
        Boolean
    bundle.block.control.eid  Block Contains an EID-reference Field
        Boolean
    bundle.block.control.flags  Block Processing Control Flags
        Unsigned 8-bit integer
    bundle.block.control.last  Last Block
        Boolean
    bundle.block.control.process  Block Was Forwarded Without Processing
        Boolean
    bundle.block.control.replicate  Replicate Block in Every Fragment
        Boolean
    bundle.block.control.status  Transmit Status if Block Can't be Processeed
        Boolean
    bundle.msg.fragment  Message Fragment
        Frame number
    bundle.msg.fragment.error  Message defragmentation error
        Frame number
    bundle.msg.fragment.multiple_tails  Message has multiple tails
        Boolean
    bundle.msg.fragment.overlap  Message fragment overlap
        Boolean
    bundle.msg.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    bundle.msg.fragment.too_long_fragment  Message fragment too long
        Boolean
    bundle.msg.fragments  Message Fragments
        No value
    bundle.msg.reassembled.in  Reassembled in
        Frame number
    bundle.msg.reassembled.length  Reassembled DTN length
        Unsigned 32-bit integer
    bundle.payload.proc.discard  Discard if Can't Process Header
        Boolean
    bundle.payload.proc.flag  Payload Header Processing Flags
        Unsigned 8-bit integer
    bundle.payload.proc.lastheader  Last Header
        Boolean
    bundle.payload.proc.replicate  Replicate Header in Every Fragment
        Boolean
    bundle.payload.proc.report  Report if Can't Process Header
        Boolean
    bundle.primary.cos.flags  Primary Header COS Flags
        Unsigned 8-bit integer
    bundle.primary.cos.priority  Priority
        Unsigned 8-bit integer
    bundle.primary.custodian  Custodian
        String
    bundle.primary.custodian_scheme  Custodian Scheme
        String
    bundle.primary.custschemeoff  Custodian Scheme Offset
        Unsigned 16-bit integer
    bundle.primary.custsspoff  Custodian SSP Offset
        Unsigned 16-bit integer
    bundle.primary.destination  Destination
        String
    bundle.primary.destination_scheme  Destination Scheme
        String
    bundle.primary.destschemeoff  Destination Scheme Offset
        Unsigned 16-bit integer
    bundle.primary.destssspoff  Destination SSP Offset
        Unsigned 16-bit integer
    bundle.primary.len  Bundle Header Length
        Unsigned 32-bit integer
    bundle.primary.lifetime  Lifetime
        Unsigned 32-bit integer
    bundle.primary.proc.ack  Request Acknowledgement by Application
        Boolean
    bundle.primary.proc.admin  Administrative Record
        Boolean
    bundle.primary.proc.cos  Cloass of Service Flags
        Unsigned 8-bit integer
    bundle.primary.proc.dontfrag  Do Not Fragment Bundle
        Boolean
    bundle.primary.proc.flag  Primary Header Processing Flags
        Unsigned 8-bit integer
    bundle.primary.proc.frag  Bundle is a Fragment
        Boolean
    bundle.primary.proc.gen  General Flags
        Unsigned 8-bit integer
    bundle.primary.proc.single  Destination is Singleton
        Boolean
    bundle.primary.proc.status  Status Report Flags
        Unsigned 8-bit integer
    bundle.primary.proc.xferreq  Request Custody Transfer
        Boolean
    bundle.primary.report  Report
        String
    bundle.primary.report_scheme  Report Scheme
        String
    bundle.primary.rptschemeoff  Report Scheme Offset
        Unsigned 16-bit integer
    bundle.primary.rptsspoff  Report SSP Offset
        Unsigned 16-bit integer
    bundle.primary.source  Source
        String
    bundle.primary.source_scheme  Source Scheme
        String
    bundle.primary.srcschemeoff  Source Scheme Offset
        Unsigned 16-bit integer
    bundle.primary.srcsspoff  Source SSP Offset
        Unsigned 16-bit integer
    bundle.primary.srr.ack  Request Report of Application Ack
        Boolean
    bundle.primary.srr.custaccept  Request Report of Custody Acceptance
        Boolean
    bundle.primary.srr.delete  Request Report of Bundle Deletion
        Boolean
    bundle.primary.srr.delivery  Request Report of Bundle Delivery
        Boolean
    bundle.primary.srr.flag  Primary Header Report Request Flags
        Unsigned 8-bit integer
    bundle.primary.srr.forward  Request Report of Bundle Forwarding
        Boolean
    bundle.primary.srr.report  Request Reception Report
        Boolean
    bundle.primary.timestamp  Creation Timestamp
        Unsigned 64-bit integer
    bundle.tcp_conv.contact_hdr.flags  Flags
        Unsigned 8-bit integer
    bundle.tcp_conv.contact_hdr.flags.ackreq  Bundle Acks Requested
        Boolean
    bundle.tcp_conv.contact_hdr.flags.fragen  Reactive Fragmentation Enabled
        Boolean
    bundle.tcp_conv.contact_hdr.flags.nak  Support Negative Acknowledgements
        Boolean
    bundle.tcp_conv.contact_hdr.keep_alive  Keep Alive
        Unsigned 16-bit integer
    bundle.tcp_conv.contact_hdr.version  Version
        Unsigned 8-bit integer
    bundle.tcp_conv.data.proc.end  Segment contains end of Bundle
        Boolean
    bundle.tcp_conv.data.proc.flag  TCP Convergence Data Flags
        Unsigned 8-bit integer
    bundle.tcp_conv.data.proc.start  Segment contains start of bundle
        Boolean
    bundle.tcp_conv.shutdown.delay  Shutdown Reconnection Delay
        Unsigned 16-bit integer
    bundle.tcp_conv.shutdown.delay.flag  Shutdown includes Reconnection Delay
        Boolean
    bundle.tcp_conv.shutdown.flags  TCP Convergence Shutdown Flags
        Unsigned 8-bit integer
    bundle.tcp_conv.shutdown.reason  Shutdown Reason Code
        Unsigned 8-bit integer
    bundle.tcp_conv.shutdown.reason.flag  Shutdown includes Reason Code
        Boolean
    bundle.version  Bundle Version
        Unsigned 8-bit integer

CCSDS (ccsds)

    ccsds.apid  APID
        Unsigned 16-bit integer
    ccsds.checkword  Checkword Indicator
        Unsigned 8-bit integer
    ccsds.cmd_data_packet  Cmd/Data Packet Indicator
        Unsigned 16-bit integer
    ccsds.coarse_time  Coarse Time
        Unsigned 32-bit integer
    ccsds.dcc  Data Cycle Counter
        Unsigned 16-bit integer
    ccsds.element_id  Element ID
        Unsigned 16-bit integer
    ccsds.extended_format_id  Extended Format ID
        Unsigned 16-bit integer
    ccsds.fine_time  Fine Time
        Unsigned 8-bit integer
    ccsds.format_version_id  Format Version ID
        Unsigned 16-bit integer
    ccsds.frame_id  Frame ID
        Unsigned 8-bit integer
    ccsds.length  Packet Length
        Unsigned 16-bit integer
    ccsds.packet_type  Packet Type (unused for Ku-band)
        Unsigned 8-bit integer
    ccsds.secheader  Secondary Header
        Boolean
        Secondary Header Present
    ccsds.seqflag  Sequence Flags
        Unsigned 16-bit integer
    ccsds.seqnum  Sequence Number
        Unsigned 16-bit integer
    ccsds.spare1  Spare Bit 1
        Unsigned 8-bit integer
        unused spare bit 1
    ccsds.spare2  Spare Bit 2
        Unsigned 16-bit integer
    ccsds.spare3  Spare Bits 3
        Unsigned 8-bit integer
    ccsds.timeid  Time Identifier
        Unsigned 8-bit integer
    ccsds.type  Type
        Unsigned 16-bit integer
    ccsds.version  Version
        Unsigned 16-bit integer
    ccsds.vid  Version Identifier
        Unsigned 16-bit integer
    ccsds.zoe  ZOE TLM
        Unsigned 8-bit integer
        Contains S-band ZOE Packets

CDS Clerk Server Calls (cds_clerkserver)

    cds_clerkserver.opnum  Operation
        Unsigned 16-bit integer

CESoPSN basic NxDS0 mode (no RTP support) (pwcesopsn)

    pwcesopsn.cw  Control Word
        No value
    pwcesopsn.cw.bits03  Bits 0 to 3
        Unsigned 8-bit integer
    pwcesopsn.cw.frag  Fragmentation
        Unsigned 8-bit integer
    pwcesopsn.cw.length  Length
        Unsigned 8-bit integer
    pwcesopsn.cw.lm  L+M bits
        Unsigned 8-bit integer
    pwcesopsn.cw.rbit  R bit: Local CE-bound IWF
        Unsigned 8-bit integer
    pwcesopsn.cw.seqno  Sequence number
        Unsigned 16-bit integer
    pwcesopsn.payload  TDM payload
        Byte array
    pwcesopsn.payload.len  TDM payload length
        Signed 32-bit integer

CFM EOAM 802.1ag/ITU Protocol (cfm)

    cfm.ais.pdu  CFM AIS PDU
        No value
    cfm.all.tlvs  CFM TLVs
        No value
    cfm.aps.data  APS data
        Byte array
    cfm.aps.pdu  CFM APS PDU
        No value
    cfm.ccm.itu.t.y1731  Defined by ITU-T Y.1731
        No value
    cfm.ccm.ma.ep.id  Maintenance Association End Point Identifier
        Unsigned 16-bit integer
    cfm.ccm.maid  Maintenance Association Identifier (MEG ID)
        No value
    cfm.ccm.maid.padding  Zero-Padding
        No value
    cfm.ccm.pdu  CFM CCM PDU
        No value
    cfm.ccm.seq.num  Sequence Number
        Unsigned 32-bit integer
    cfm.dmm.dmr.rxtimestampb  RxTimestampb
        Byte array
    cfm.dmm.dmr.txtimestampb  TxTimestampb
        Byte array
    cfm.dmm.pdu  CFM DMM PDU
        No value
    cfm.dmr.pdu  CFM DMR PDU
        No value
    cfm.exm.pdu  CFM EXM PDU
        No value
    cfm.exr.pdu  CFM EXR PDU
        No value
    cfm.first.tlv.offset  First TLV Offset
        Unsigned 8-bit integer
    cfm.flags  Flags
        Unsigned 8-bit integer
    cfm.flags.ccm.reserved  Reserved
        Unsigned 8-bit integer
    cfm.flags.fwdyes  FwdYes
        Unsigned 8-bit integer
    cfm.flags.interval  Interval Field
        Unsigned 8-bit integer
    cfm.flags.ltm.reserved  Reserved
        Unsigned 8-bit integer
    cfm.flags.ltr.reserved  Reserved
        Unsigned 8-bit integer
    cfm.flags.ltr.terminalmep  TerminalMEP
        Unsigned 8-bit integer
    cfm.flags.period  Period
        Unsigned 8-bit integer
    cfm.flags.rdi  RDI
        Unsigned 8-bit integer
    cfm.flags.reserved  Reserved
        Unsigned 8-bit integer
    cfm.flags.usefdbonly  UseFDBonly
        Unsigned 8-bit integer
    cfm.itu.reserved  Reserved
        Byte array
    cfm.itu.rxfcb  RxFCb
        Byte array
    cfm.itu.txfcb  TxFCb
        Byte array
    cfm.itu.txfcf  TxFCf
        Byte array
    cfm.lb.transaction.id  Loopback Transaction Identifier
        Unsigned 32-bit integer
    cfm.lbm.pdu  CFM LBM PDU
        No value
    cfm.lbr.pdu  CFM LBR PDU
        No value
    cfm.lck.pdu  CFM LCK PDU
        No value
    cfm.lmm.lmr.rxfcf  RxFCf
        Byte array
    cfm.lmm.lmr.txfcb  TxFCb
        Byte array
    cfm.lmm.lmr.txfcf  TxFCf
        Byte array
    cfm.lmm.pdu  CFM LMM PDU
        No value
    cfm.lmr.pdu  CFM LMR PDU
        No value
    cfm.lt.transaction.id  Linktrace Transaction Identifier
        Unsigned 32-bit integer
    cfm.lt.ttl  Linktrace TTL
        Unsigned 8-bit integer
    cfm.ltm.orig.addr  Linktrace Message: Original Address
        6-byte Hardware (MAC) Address
    cfm.ltm.pdu  CFM LTM PDU
        No value
    cfm.ltm.targ.addr  Linktrace Message:   Target Address
        6-byte Hardware (MAC) Address
    cfm.ltr.pdu  CFM LTR PDU
        No value
    cfm.ltr.relay.action  Linktrace Reply Relay Action
        Unsigned 8-bit integer
    cfm.maid.ma.name  Short MA Name
        String
    cfm.maid.ma.name.format  Short MA Name (MEG ID) Format
        Unsigned 8-bit integer
    cfm.maid.ma.name.length  Short MA Name (MEG ID) Length
        Unsigned 8-bit integer
    cfm.maid.md.name  MD Name (String)
        String
    cfm.maid.md.name.format  MD Name Format
        Unsigned 8-bit integer
    cfm.maid.md.name.length  MD Name Length
        Unsigned 8-bit integer
    cfm.maid.md.name.mac  MD Name (MAC)
        6-byte Hardware (MAC) Address
    cfm.maid.md.name.mac.id  MD Name (MAC)
        Byte array
    cfm.mcc.data  MCC data
        Byte array
    cfm.mcc.pdu  CFM MCC PDU
        No value
    cfm.md.level  CFM MD Level
        Unsigned 8-bit integer
    cfm.odm.dmm.dmr.rxtimestampf  RxTimestampf
        Byte array
    cfm.odm.dmm.dmr.txtimestampf  TxTimestampf
        Byte array
    cfm.odm.pdu  CFM 1DM PDU
        No value
    cfm.opcode  CFM OpCode
        Unsigned 8-bit integer
    cfm.raps.flags  R-APS Flags
        Unsigned 8-bit integer
    cfm.raps.flags.dnf  Do Not Flush
        Unsigned 8-bit integer
    cfm.raps.flags.rb  RPL Blocked
        Unsigned 8-bit integer
    cfm.raps.node.id  R-APS Node ID
        6-byte Hardware (MAC) Address
    cfm.raps.pdu  CFM R-APS PDU
        No value
    cfm.raps.req.st  Request/State
        Unsigned 8-bit integer
    cfm.raps.reserved  R-APS Reserved
        Byte array
    cfm.tlv.chassis.id  Chassis ID
        Byte array
    cfm.tlv.chassis.id.length  Chassis ID Length
        Unsigned 8-bit integer
    cfm.tlv.chassis.id.subtype  Chassis ID Sub-type
        Unsigned 8-bit integer
    cfm.tlv.data.value  Data Value
        Byte array
    cfm.tlv.length  TLV Length
        Unsigned 16-bit integer
    cfm.tlv.ltm.egress.id.mac  Egress Identifier - MAC of LT Initiator/Responder
        6-byte Hardware (MAC) Address
    cfm.tlv.ltm.egress.id.ui  Egress Identifier - Unique Identifier
        Byte array
    cfm.tlv.ltr.egress.last.id.mac  Last Egress Identifier - MAC address
        6-byte Hardware (MAC) Address
    cfm.tlv.ltr.egress.last.id.ui  Last Egress Identifier - Unique Identifier
        Byte array
    cfm.tlv.ltr.egress.next.id.mac  Next Egress Identifier - MAC address
        6-byte Hardware (MAC) Address
    cfm.tlv.ltr.egress.next.id.ui  Next Egress Identifier - Unique Identifier
        Byte array
    cfm.tlv.ma.domain  Management Address Domain
        Byte array
    cfm.tlv.ma.domain.length  Management Address Domain Length
        Unsigned 8-bit integer
    cfm.tlv.management.addr  Management Address
        Byte array
    cfm.tlv.management.addr.length  Management Address Length
        Unsigned 8-bit integer
    cfm.tlv.org.spec.oui  OUI
        Byte array
    cfm.tlv.org.spec.subtype  Sub-Type
        Byte array
    cfm.tlv.org.spec.value  Value
        Byte array
    cfm.tlv.port.interface.value  Interface Status value
        Unsigned 8-bit integer
    cfm.tlv.port.status.value  Port Status value
        Unsigned 8-bit integer
    cfm.tlv.reply.egress.action  Egress Action
        Unsigned 8-bit integer
    cfm.tlv.reply.egress.mac.address  Egress MAC address
        6-byte Hardware (MAC) Address
    cfm.tlv.reply.ingress.action  Ingress Action
        Unsigned 8-bit integer
    cfm.tlv.reply.ingress.mac.address  Ingress MAC address
        6-byte Hardware (MAC) Address
    cfm.tlv.tst.crc32  CRC-32
        Byte array
    cfm.tlv.tst.test.pattern  Test Pattern
        No value
    cfm.tlv.tst.test.pattern.type  Test Pattern Type
        Unsigned 8-bit integer
    cfm.tlv.type  TLV Type
        Unsigned 8-bit integer
    cfm.tst.pdu  CFM TST PDU
        No value
    cfm.tst.sequence.num  Sequence Number
        Unsigned 32-bit integer
    cfm.version  CFM Version
        Unsigned 8-bit integer
    cfm.vsm.pdu  CFM VSM PDU
        No value
    cfm.vsr.pdu  CFM VSR PDU
        No value

CIP Class Generic (cipcls)

CIP Connection Configuration Object (cipcco)

CIP Connection Manager (cipcm)

    cip.cm.fwo.cmp  Compatibility
        Unsigned 8-bit integer
        Fwd Open: Compatibility bit
    cip.cm.fwo.consize  Connection Size
        Unsigned 16-bit integer
        Fwd Open: Connection size
    cip.cm.fwo.dir  Direction
        Unsigned 8-bit integer
        Fwd Open: Direction
    cip.cm.fwo.f_v  Connection Size Type
        Unsigned 16-bit integer
        Fwd Open: Fixed or variable connection size
    cip.cm.fwo.major  Major Revision
        Unsigned 8-bit integer
        Fwd Open: Major Revision
    cip.cm.fwo.owner  Owner
        Unsigned 16-bit integer
        Fwd Open: Redundant owner bit
    cip.cm.fwo.prio  Priority
        Unsigned 16-bit integer
        Fwd Open: Connection priority
    cip.cm.fwo.transport  Class
        Unsigned 8-bit integer
        Fwd Open: Transport Class
    cip.cm.fwo.trigger  Trigger
        Unsigned 8-bit integer
        Fwd Open: Production trigger
    cip.cm.fwo.type  Connection Type
        Unsigned 16-bit integer
        Fwd Open: Connection type

CIP Message Router (cipmr)

CRTP (crtp)

    crtp.cid  Context Id
        Unsigned 16-bit integer
        The context identifier of the compressed packet.
    crtp.cnt  Count
        Unsigned 8-bit integer
        The count of the context state packet.
    crtp.flags  Flags
        Unsigned 8-bit integer
        The flags of the full header packet.
    crtp.gen  Generation
        Unsigned 8-bit integer
        The generation of the compressed packet.
    crtp.invalid  Invalid
        Boolean
        The invalid bit of the context state packet.
    crtp.seq  Sequence
        Unsigned 8-bit integer
        The sequence of the compressed packet.

CSM_ENCAPS (csm_encaps)

    csm_encaps.channel  Channel Number
        Unsigned 16-bit integer
        CSM_ENCAPS Channel Number
    csm_encaps.class  Class
        Unsigned 8-bit integer
        CSM_ENCAPS Class
    csm_encaps.ctrl  Control
        Unsigned 8-bit integer
        CSM_ENCAPS Control
    csm_encaps.ctrl.ack  Packet Bit
        Boolean
        Message Packet/ACK Packet
    csm_encaps.ctrl.ack_suppress  ACK Suppress Bit
        Boolean
        ACK Required/ACK Suppressed
    csm_encaps.ctrl.endian  Endian Bit
        Boolean
        Little Endian/Big Endian
    csm_encaps.function_code  Function Code
        Unsigned 16-bit integer
        CSM_ENCAPS Function Code
    csm_encaps.index  Index
        Unsigned 8-bit integer
        CSM_ENCAPS Index
    csm_encaps.length  Length
        Unsigned 8-bit integer
        CSM_ENCAPS Length
    csm_encaps.opcode  Opcode
        Unsigned 16-bit integer
        CSM_ENCAPS Opcode
    csm_encaps.param  Parameter
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter
    csm_encaps.param1  Parameter 1
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 1
    csm_encaps.param10  Parameter 10
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 10
    csm_encaps.param11  Parameter 11
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 11
    csm_encaps.param12  Parameter 12
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 12
    csm_encaps.param13  Parameter 13
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 13
    csm_encaps.param14  Parameter 14
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 14
    csm_encaps.param15  Parameter 15
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 15
    csm_encaps.param16  Parameter 16
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 16
    csm_encaps.param17  Parameter 17
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 17
    csm_encaps.param18  Parameter 18
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 18
    csm_encaps.param19  Parameter 19
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 19
    csm_encaps.param2  Parameter 2
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 2
    csm_encaps.param20  Parameter 20
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 20
    csm_encaps.param21  Parameter 21
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 21
    csm_encaps.param22  Parameter 22
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 22
    csm_encaps.param23  Parameter 23
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 23
    csm_encaps.param24  Parameter 24
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 24
    csm_encaps.param25  Parameter 25
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 25
    csm_encaps.param26  Parameter 26
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 26
    csm_encaps.param27  Parameter 27
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 27
    csm_encaps.param28  Parameter 28
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 28
    csm_encaps.param29  Parameter 29
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 29
    csm_encaps.param3  Parameter 3
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 3
    csm_encaps.param30  Parameter 30
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 30
    csm_encaps.param31  Parameter 31
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 31
    csm_encaps.param32  Parameter 32
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 32
    csm_encaps.param33  Parameter 33
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 33
    csm_encaps.param34  Parameter 34
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 34
    csm_encaps.param35  Parameter 35
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 35
    csm_encaps.param36  Parameter 36
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 36
    csm_encaps.param37  Parameter 37
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 37
    csm_encaps.param38  Parameter 38
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 38
    csm_encaps.param39  Parameter 39
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 39
    csm_encaps.param4  Parameter 4
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 4
    csm_encaps.param40  Parameter 40
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 40
    csm_encaps.param5  Parameter 5
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 5
    csm_encaps.param6  Parameter 6
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 6
    csm_encaps.param7  Parameter 7
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 7
    csm_encaps.param8  Parameter 8
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 8
    csm_encaps.param9  Parameter 9
        Unsigned 16-bit integer
        CSM_ENCAPS Parameter 9
    csm_encaps.reserved  Reserved
        Unsigned 16-bit integer
        CSM_ENCAPS Reserved
    csm_encaps.seq_num  Sequence Number
        Unsigned 8-bit integer
        CSM_ENCAPS Sequence Number
    csm_encaps.type  Type
        Unsigned 8-bit integer
        CSM_ENCAPS Type

Calculation Application Protocol (calcappprotocol)

    calcappprotocol.message_completed  Completed
        Unsigned 64-bit integer
    calcappprotocol.message_flags  Flags
        Unsigned 8-bit integer
    calcappprotocol.message_jobid  JobID
        Unsigned 32-bit integer
    calcappprotocol.message_jobsize  JobSize
        Unsigned 64-bit integer
    calcappprotocol.message_length  Length
        Unsigned 16-bit integer
    calcappprotocol.message_type  Type
        Unsigned 8-bit integer

Call Specification Language (Xcsl) (xcsl)

    xcsl.command  Command
        String
    xcsl.information  Information
        String
    xcsl.parameter  Parameter
        String
    xcsl.protocol_version  Protocol Version
        String
    xcsl.result  Result
        String
    xcsl.transacion_id  Transaction ID
        String

Camel (camel)

    camel.ApplyChargingArg  ApplyChargingArg
        No value
    camel.ApplyChargingGPRSArg  ApplyChargingGPRSArg
        No value
    camel.ApplyChargingReportArg  ApplyChargingReportArg
        Byte array
    camel.ApplyChargingReportGPRSArg  ApplyChargingReportGPRSArg
        No value
    camel.AssistRequestInstructionsArg  AssistRequestInstructionsArg
        No value
    camel.BCSMEvent  BCSMEvent
        No value
    camel.CAMEL_AChBillingChargingCharacteristics  CAMEL-AChBillingChargingCharacteristics
        Unsigned 32-bit integer
    camel.CAMEL_CallResult  CAMEL-CAMEL_CallResult
        Unsigned 32-bit integer
        CAMEL-CallResult
    camel.CAMEL_FCIBillingChargingCharacteristics  CAMEL-FCIBillingChargingCharacteristics
        Unsigned 32-bit integer
    camel.CAMEL_FCIGPRSBillingChargingCharacteristics  CAMEL-FCIGPRSBillingChargingCharacteristics
        Unsigned 32-bit integer
    camel.CAMEL_FCISMSBillingChargingCharacteristics  CAMEL-FCISMSBillingChargingCharacteristics
        Unsigned 32-bit integer
    camel.CAMEL_SCIBillingChargingCharacteristics  CAMEL-SCIBillingChargingCharacteristics
        Unsigned 32-bit integer
    camel.CAMEL_SCIGPRSBillingChargingCharacteristics  CAMEL-SCIGPRSBillingChargingCharacteristics
        Unsigned 32-bit integer
        CAMEL-FSCIGPRSBillingChargingCharacteristics
    camel.CAP_GPRS_ReferenceNumber  CAP-GPRS-ReferenceNumber
        No value
    camel.CAP_U_ABORT_REASON  CAP-U-ABORT-REASON
        Unsigned 32-bit integer
    camel.CallGapArg  CallGapArg
        No value
    camel.CallInformationReportArg  CallInformationReportArg
        No value
    camel.CallInformationRequestArg  CallInformationRequestArg
        No value
    camel.CalledPartyNumber  CalledPartyNumber
        Byte array
    camel.CancelArg  CancelArg
        Unsigned 32-bit integer
    camel.CancelGPRSArg  CancelGPRSArg
        No value
    camel.CellGlobalIdOrServiceAreaIdFixedLength  CellGlobalIdOrServiceAreaIdFixedLength
        Byte array
        LocationInformationGPRS/CellGlobalIdOrServiceAreaIdOrLAI
    camel.ChangeOfLocation  ChangeOfLocation
        Unsigned 32-bit integer
    camel.ConnectArg  ConnectArg
        No value
    camel.ConnectGPRSArg  ConnectGPRSArg
        No value
    camel.ConnectSMSArg  ConnectSMSArg
        No value
    camel.ConnectToResourceArg  ConnectToResourceArg
        No value
    camel.ContinueGPRSArg  ContinueGPRSArg
        No value
    camel.ContinueWithArgumentArg  ContinueWithArgumentArg
        No value
    camel.DisconnectForwardConnectionWithArgumentArg  DisconnectForwardConnectionWithArgumentArg
        No value
    camel.DisconnectLegArg  DisconnectLegArg
        No value
    camel.EntityReleasedArg  EntityReleasedArg
        Unsigned 32-bit integer
    camel.EntityReleasedGPRSArg  EntityReleasedGPRSArg
        No value
    camel.EstablishTemporaryConnectionArg  EstablishTemporaryConnectionArg
        No value
    camel.EventReportBCSMArg  EventReportBCSMArg
        No value
    camel.EventReportGPRSArg  EventReportGPRSArg
        No value
    camel.EventReportSMSArg  EventReportSMSArg
        No value
    camel.ExtensionField  ExtensionField
        No value
    camel.FurnishChargingInformationArg  FurnishChargingInformationArg
        Byte array
    camel.FurnishChargingInformationGPRSArg  FurnishChargingInformationGPRSArg
        Byte array
    camel.FurnishChargingInformationSMSArg  FurnishChargingInformationSMSArg
        Byte array
    camel.GPRSEvent  GPRSEvent
        No value
    camel.GenericNumber  GenericNumber
        Byte array
    camel.InitialDPArg  InitialDPArg
        No value
    camel.InitialDPGPRSArg  InitialDPGPRSArg
        No value
    camel.InitialDPSMSArg  InitialDPSMSArg
        No value
    camel.InitiateCallAttemptArg  InitiateCallAttemptArg
        No value
    camel.InitiateCallAttemptRes  InitiateCallAttemptRes
        No value
    camel.Integer4  Integer4
        Unsigned 32-bit integer
    camel.InvokeId_present  InvokeId.present
        Signed 32-bit integer
        InvokeId_present
    camel.MetDPCriterion  MetDPCriterion
        Unsigned 32-bit integer
    camel.MoveLegArg  MoveLegArg
        No value
    camel.PAR_cancelFailed  PAR-cancelFailed
        No value
    camel.PAR_requestedInfoError  PAR-requestedInfoError
        Unsigned 32-bit integer
    camel.PAR_taskRefused  PAR-taskRefused
        Unsigned 32-bit integer
    camel.PDPAddress_IPv4  PDPAddress IPv4
        IPv4 address
        IPAddress IPv4
    camel.PDPAddress_IPv6  PDPAddress IPv6
        IPv6 address
        IPAddress IPv6
    camel.PDPTypeNumber_etsi  ETSI defined PDP Type Value
        Unsigned 8-bit integer
    camel.PDPTypeNumber_ietf  IETF defined PDP Type Value
        Unsigned 8-bit integer
    camel.PlayAnnouncementArg  PlayAnnouncementArg
        No value
    camel.PlayToneArg  PlayToneArg
        No value
    camel.PromptAndCollectUserInformationArg  PromptAndCollectUserInformationArg
        No value
    camel.RP_Cause  RP Cause
        Unsigned 8-bit integer
        RP Cause Value
    camel.ReceivedInformationArg  ReceivedInformationArg
        Unsigned 32-bit integer
    camel.ReleaseCallArg  ReleaseCallArg
        Byte array
    camel.ReleaseGPRSArg  ReleaseGPRSArg
        No value
    camel.ReleaseSMSArg  ReleaseSMSArg
        Byte array
    camel.RequestReportBCSMEventArg  RequestReportBCSMEventArg
        No value
    camel.RequestReportGPRSEventArg  RequestReportGPRSEventArg
        No value
    camel.RequestReportSMSEventArg  RequestReportSMSEventArg
        No value
    camel.RequestedInformation  RequestedInformation
        No value
    camel.RequestedInformationType  RequestedInformationType
        Unsigned 32-bit integer
    camel.ResetTimerArg  ResetTimerArg
        No value
    camel.ResetTimerGPRSArg  ResetTimerGPRSArg
        No value
    camel.ResetTimerSMSArg  ResetTimerSMSArg
        No value
    camel.SMSEvent  SMSEvent
        No value
    camel.SendChargingInformationArg  SendChargingInformationArg
        No value
    camel.SendChargingInformationGPRSArg  SendChargingInformationGPRSArg
        No value
    camel.SpecializedResourceReportArg  SpecializedResourceReportArg
        Unsigned 32-bit integer
    camel.SplitLegArg  SplitLegArg
        No value
    camel.UnavailableNetworkResource  UnavailableNetworkResource
        Unsigned 32-bit integer
    camel.VariablePart  VariablePart
        Unsigned 32-bit integer
    camel.aChBillingChargingCharacteristics  aChBillingChargingCharacteristics
        Byte array
    camel.aChChargingAddress  aChChargingAddress
        Unsigned 32-bit integer
    camel.aOCAfterAnswer  aOCAfterAnswer
        No value
        AOCSubsequent
    camel.aOCBeforeAnswer  aOCBeforeAnswer
        No value
    camel.aOCGPRS  aOCGPRS
        No value
    camel.aOCInitial  aOCInitial
        No value
        CAI_GSM0224
    camel.aOCSubsequent  aOCSubsequent
        No value
    camel.aOC_extension  aOC-extension
        No value
        CAMEL_SCIBillingChargingCharacteristicsAlt
    camel.absent  absent
        No value
    camel.accessPointName  accessPointName
        String
    camel.active  active
        Boolean
        BOOLEAN
    camel.additionalCallingPartyNumber  additionalCallingPartyNumber
        Byte array
    camel.additionalSupplement  additionalSupplement
        Byte array
        Ext3_QoS_Subscribed
    camel.alertingPattern  alertingPattern
        Byte array
    camel.allAnnouncementsComplete  allAnnouncementsComplete
        No value
    camel.allRequests  allRequests
        No value
    camel.appendFreeFormatData  appendFreeFormatData
        Unsigned 32-bit integer
    camel.applicationTimer  applicationTimer
        Unsigned 32-bit integer
    camel.argument  argument
        No value
    camel.assistingSSPIPRoutingAddress  assistingSSPIPRoutingAddress
        Byte array
    camel.attachChangeOfPositionSpecificInformation  attachChangeOfPositionSpecificInformation
        No value
    camel.attributes  attributes
        Byte array
        OCTET_STRING_SIZE_bound__minAttributesLength_bound__maxAttributesLength
    camel.audibleIndicator  audibleIndicator
        Unsigned 32-bit integer
    camel.automaticRearm  automaticRearm
        No value
    camel.bCSM_Failure  bCSM-Failure
        No value
    camel.backwardServiceInteractionInd  backwardServiceInteractionInd
        No value
    camel.basicGapCriteria  basicGapCriteria
        Unsigned 32-bit integer
    camel.bcsmEvents  bcsmEvents
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_bound__numOfBCSMEvents_OF_BCSMEvent
    camel.bearerCap  bearerCap
        Byte array
    camel.bearerCapability  bearerCapability
        Unsigned 32-bit integer
    camel.bearerCapability2  bearerCapability2
        Unsigned 32-bit integer
        BearerCapability
    camel.bor_InterrogationRequested  bor-InterrogationRequested
        No value
    camel.bothwayThroughConnectionInd  bothwayThroughConnectionInd
        Unsigned 32-bit integer
    camel.burstInterval  burstInterval
        Unsigned 32-bit integer
        INTEGER_1_1200
    camel.burstList  burstList
        No value
    camel.bursts  bursts
        No value
        Burst
    camel.busyCause  busyCause
        Byte array
        Cause
    camel.cAI_GSM0224  cAI-GSM0224
        No value
    camel.cGEncountered  cGEncountered
        Unsigned 32-bit integer
    camel.callAcceptedSpecificInfo  callAcceptedSpecificInfo
        No value
    camel.callAttemptElapsedTimeValue  callAttemptElapsedTimeValue
        Unsigned 32-bit integer
        INTEGER_0_255
    camel.callCompletionTreatmentIndicator  callCompletionTreatmentIndicator
        Byte array
        OCTET_STRING_SIZE_1
    camel.callConnectedElapsedTimeValue  callConnectedElapsedTimeValue
        Unsigned 32-bit integer
        Integer4
    camel.callDiversionTreatmentIndicator  callDiversionTreatmentIndicator
        Byte array
        OCTET_STRING_SIZE_1
    camel.callForwarded  callForwarded
        No value
    camel.callForwardingSS_Pending  callForwardingSS-Pending
        No value
    camel.callLegReleasedAtTcpExpiry  callLegReleasedAtTcpExpiry
        No value
    camel.callReferenceNumber  callReferenceNumber
        Byte array
    camel.callSegmentFailure  callSegmentFailure
        No value
    camel.callSegmentID  callSegmentID
        Unsigned 32-bit integer
    camel.callSegmentToCancel  callSegmentToCancel
        No value
    camel.callStopTimeValue  callStopTimeValue
        String
        DateAndTime
    camel.calledAddressAndService  calledAddressAndService
        No value
    camel.calledAddressValue  calledAddressValue
        Byte array
        Digits
    camel.calledPartyBCDNumber  calledPartyBCDNumber
        Byte array
    camel.calledPartyNumber  calledPartyNumber
        Byte array
    camel.callingAddressAndService  callingAddressAndService
        No value
    camel.callingAddressValue  callingAddressValue
        Byte array
        Digits
    camel.callingPartyNumber  callingPartyNumber
        Byte array
    camel.callingPartyRestrictionIndicator  callingPartyRestrictionIndicator
        Byte array
        OCTET_STRING_SIZE_1
    camel.callingPartysCategory  callingPartysCategory
        Unsigned 16-bit integer
    camel.callingPartysNumber  callingPartysNumber
        Byte array
        SMS_AddressString
    camel.cancelDigit  cancelDigit
        Byte array
        OCTET_STRING_SIZE_1_2
    camel.carrier  carrier
        Byte array
    camel.cause  cause
        Byte array
    camel.cause_indicator  Cause indicator
        Unsigned 8-bit integer
    camel.cellGlobalId  cellGlobalId
        Byte array
        CellGlobalIdOrServiceAreaIdFixedLength
    camel.cellGlobalIdOrServiceAreaIdOrLAI  cellGlobalIdOrServiceAreaIdOrLAI
        Byte array
    camel.changeOfLocationAlt  changeOfLocationAlt
        No value
    camel.changeOfPositionControlInfo  changeOfPositionControlInfo
        Unsigned 32-bit integer
    camel.chargeIndicator  chargeIndicator
        Byte array
    camel.chargeNumber  chargeNumber
        Byte array
    camel.chargingCharacteristics  chargingCharacteristics
        Unsigned 32-bit integer
    camel.chargingID  chargingID
        Byte array
        GPRSChargingID
    camel.chargingResult  chargingResult
        Unsigned 32-bit integer
    camel.chargingRollOver  chargingRollOver
        Unsigned 32-bit integer
    camel.collectInformationAllowed  collectInformationAllowed
        No value
    camel.collectedDigits  collectedDigits
        No value
    camel.collectedInfo  collectedInfo
        Unsigned 32-bit integer
    camel.collectedInfoSpecificInfo  collectedInfoSpecificInfo
        No value
    camel.compoundGapCriteria  compoundGapCriteria
        No value
        CompoundCriteria
    camel.conferenceTreatmentIndicator  conferenceTreatmentIndicator
        Byte array
        OCTET_STRING_SIZE_1
    camel.connectedNumberTreatmentInd  connectedNumberTreatmentInd
        Unsigned 32-bit integer
    camel.continueWithArgumentArgExtension  continueWithArgumentArgExtension
        No value
    camel.controlType  controlType
        Unsigned 32-bit integer
    camel.correlationID  correlationID
        Byte array
    camel.criticality  criticality
        Unsigned 32-bit integer
        CriticalityType
    camel.cug_Index  cug-Index
        Unsigned 32-bit integer
    camel.cug_Interlock  cug-Interlock
        Byte array
    camel.cug_OutgoingAccess  cug-OutgoingAccess
        No value
    camel.cwTreatmentIndicator  cwTreatmentIndicator
        Signed 32-bit integer
        OCTET_STRING_SIZE_1
    camel.dTMFDigitsCompleted  dTMFDigitsCompleted
        Byte array
        Digits
    camel.dTMFDigitsTimeOut  dTMFDigitsTimeOut
        Byte array
        Digits
    camel.date  date
        Byte array
        OCTET_STRING_SIZE_4
    camel.destinationAddress  destinationAddress
        Byte array
        CalledPartyNumber
    camel.destinationReference  destinationReference
        Unsigned 32-bit integer
        Integer4
    camel.destinationRoutingAddress  destinationRoutingAddress
        Unsigned 32-bit integer
    camel.destinationSubscriberNumber  destinationSubscriberNumber
        Byte array
        CalledPartyBCDNumber
    camel.detachSpecificInformation  detachSpecificInformation
        No value
    camel.digit_value  Digit Value
        Unsigned 8-bit integer
    camel.digitsResponse  digitsResponse
        Byte array
        Digits
    camel.disconnectFromIPForbidden  disconnectFromIPForbidden
        Boolean
        BOOLEAN
    camel.disconnectSpecificInformation  disconnectSpecificInformation
        No value
    camel.dpSpecificCriteria  dpSpecificCriteria
        Unsigned 32-bit integer
    camel.dpSpecificCriteriaAlt  dpSpecificCriteriaAlt
        No value
    camel.dpSpecificInfoAlt  dpSpecificInfoAlt
        No value
    camel.duration  duration
        Signed 32-bit integer
    camel.e1  e1
        Unsigned 32-bit integer
        INTEGER_0_8191
    camel.e2  e2
        Unsigned 32-bit integer
        INTEGER_0_8191
    camel.e3  e3
        Unsigned 32-bit integer
        INTEGER_0_8191
    camel.e4  e4
        Unsigned 32-bit integer
        INTEGER_0_8191
    camel.e5  e5
        Unsigned 32-bit integer
        INTEGER_0_8191
    camel.e6  e6
        Unsigned 32-bit integer
        INTEGER_0_8191
    camel.e7  e7
        Unsigned 32-bit integer
        INTEGER_0_8191
    camel.ectTreatmentIndicator  ectTreatmentIndicator
        Signed 32-bit integer
        OCTET_STRING_SIZE_1
    camel.elapsedTime  elapsedTime
        Unsigned 32-bit integer
    camel.elapsedTimeRollOver  elapsedTimeRollOver
        Unsigned 32-bit integer
    camel.elementaryMessageID  elementaryMessageID
        Unsigned 32-bit integer
        Integer4
    camel.elementaryMessageIDs  elementaryMessageIDs
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_bound__numOfMessageIDs_OF_Integer4
    camel.endOfReplyDigit  endOfReplyDigit
        Byte array
        OCTET_STRING_SIZE_1_2
    camel.endUserAddress  endUserAddress
        No value
    camel.enhancedDialledServicesAllowed  enhancedDialledServicesAllowed
        No value
    camel.enteringCellGlobalId  enteringCellGlobalId
        Byte array
        CellGlobalIdOrServiceAreaIdFixedLength
    camel.enteringLocationAreaId  enteringLocationAreaId
        Byte array
        LAIFixedLength
    camel.enteringServiceAreaId  enteringServiceAreaId
        Byte array
        CellGlobalIdOrServiceAreaIdFixedLength
    camel.errcode  errcode
        Unsigned 32-bit integer
        Code
    camel.errorTreatment  errorTreatment
        Unsigned 32-bit integer
    camel.error_code_local  local
        Signed 32-bit integer
        ERROR code
    camel.eventSpecificInformationBCSM  eventSpecificInformationBCSM
        Unsigned 32-bit integer
    camel.eventSpecificInformationSMS  eventSpecificInformationSMS
        Unsigned 32-bit integer
    camel.eventTypeBCSM  eventTypeBCSM
        Unsigned 32-bit integer
    camel.eventTypeSMS  eventTypeSMS
        Unsigned 32-bit integer
    camel.ext_basicServiceCode  ext-basicServiceCode
        Unsigned 32-bit integer
    camel.ext_basicServiceCode2  ext-basicServiceCode2
        Unsigned 32-bit integer
        Ext_BasicServiceCode
    camel.extensionContainer  extensionContainer
        No value
    camel.extension_code_local  local
        Signed 32-bit integer
        Extension local code
    camel.extensions  extensions
        Unsigned 32-bit integer
    camel.fCIBCCCAMELsequence1  fCIBCCCAMELsequence1
        No value
        T_fci_fCIBCCCAMELsequence1
    camel.failureCause  failureCause
        Byte array
        Cause
    camel.firstAnnouncementStarted  firstAnnouncementStarted
        No value
    camel.firstDigitTimeOut  firstDigitTimeOut
        Unsigned 32-bit integer
        INTEGER_1_127
    camel.forwardServiceInteractionInd  forwardServiceInteractionInd
        No value
    camel.forwardedCall  forwardedCall
        No value
    camel.forwardingDestinationNumber  forwardingDestinationNumber
        Byte array
        CalledPartyNumber
    camel.freeFormatData  freeFormatData
        Byte array
        OCTET_STRING_SIZE_bound__minFCIBillingChargingDataLength_bound__maxFCIBillingChargingDataLength
    camel.gGSNAddress  gGSNAddress
        Byte array
        GSN_Address
    camel.gPRSCause  gPRSCause
        Byte array
    camel.gPRSEvent  gPRSEvent
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_bound__numOfGPRSEvents_OF_GPRSEvent
    camel.gPRSEventSpecificInformation  gPRSEventSpecificInformation
        Unsigned 32-bit integer
    camel.gPRSEventType  gPRSEventType
        Unsigned 32-bit integer
    camel.gPRSMSClass  gPRSMSClass
        No value
    camel.gapCriteria  gapCriteria
        Unsigned 32-bit integer
    camel.gapIndicators  gapIndicators
        No value
    camel.gapInterval  gapInterval
        Signed 32-bit integer
        Interval
    camel.gapOnService  gapOnService
        No value
    camel.gapTreatment  gapTreatment
        Unsigned 32-bit integer
    camel.general  general
        Signed 32-bit integer
        GeneralProblem
    camel.genericNumbers  genericNumbers
        Unsigned 32-bit integer
    camel.geographicalInformation  geographicalInformation
        Byte array
    camel.global  global
        Object Identifier
    camel.gmscAddress  gmscAddress
        Byte array
        ISDN_AddressString
    camel.gprsCause  gprsCause
        Byte array
    camel.gsmSCFAddress  gsmSCFAddress
        Byte array
        ISDN_AddressString
    camel.highLayerCompatibility  highLayerCompatibility
        Byte array
    camel.highLayerCompatibility2  highLayerCompatibility2
        Byte array
        HighLayerCompatibility
    camel.holdTreatmentIndicator  holdTreatmentIndicator
        Signed 32-bit integer
        OCTET_STRING_SIZE_1
    camel.iMEI  iMEI
        Byte array
    camel.iMSI  iMSI
        Byte array
    camel.iPSSPCapabilities  iPSSPCapabilities
        Byte array
    camel.inbandInfo  inbandInfo
        No value
    camel.informationToSend  informationToSend
        Unsigned 32-bit integer
    camel.initialDPArgExtension  initialDPArgExtension
        No value
    camel.initiatingEntity  initiatingEntity
        Unsigned 32-bit integer
    camel.initiatorOfServiceChange  initiatorOfServiceChange
        Unsigned 32-bit integer
    camel.integer  integer
        Unsigned 32-bit integer
        Integer4
    camel.interDigitTimeOut  interDigitTimeOut
        Unsigned 32-bit integer
        INTEGER_1_127
    camel.interDigitTimeout  interDigitTimeout
        Unsigned 32-bit integer
        INTEGER_1_127
    camel.inter_MSCHandOver  inter-MSCHandOver
        No value
    camel.inter_PLMNHandOver  inter-PLMNHandOver
        No value
    camel.inter_SystemHandOver  inter-SystemHandOver
        No value
    camel.inter_SystemHandOverToGSM  inter-SystemHandOverToGSM
        No value
    camel.inter_SystemHandOverToUMTS  inter-SystemHandOverToUMTS
        No value
    camel.interruptableAnnInd  interruptableAnnInd
        Boolean
        BOOLEAN
    camel.interval  interval
        Unsigned 32-bit integer
        INTEGER_0_32767
    camel.invoke  invoke
        No value
    camel.invokeID  invokeID
        Signed 32-bit integer
    camel.invokeId  invokeId
        Unsigned 32-bit integer
    camel.ipRoutingAddress  ipRoutingAddress
        Byte array
    camel.leavingCellGlobalId  leavingCellGlobalId
        Byte array
        CellGlobalIdOrServiceAreaIdFixedLength
    camel.leavingLocationAreaId  leavingLocationAreaId
        Byte array
        LAIFixedLength
    camel.leavingServiceAreaId  leavingServiceAreaId
        Byte array
        CellGlobalIdOrServiceAreaIdFixedLength
    camel.legActive  legActive
        Boolean
        BOOLEAN
    camel.legID  legID
        Unsigned 32-bit integer
    camel.legIDToMove  legIDToMove
        Unsigned 32-bit integer
        LegID
    camel.legOrCallSegment  legOrCallSegment
        Unsigned 32-bit integer
    camel.legToBeConnected  legToBeConnected
        Unsigned 32-bit integer
        LegID
    camel.legToBeCreated  legToBeCreated
        Unsigned 32-bit integer
        LegID
    camel.legToBeReleased  legToBeReleased
        Unsigned 32-bit integer
        LegID
    camel.legToBeSplit  legToBeSplit
        Unsigned 32-bit integer
        LegID
    camel.linkedId  linkedId
        Unsigned 32-bit integer
    camel.local  local
        Signed 32-bit integer
    camel.locationAreaId  locationAreaId
        Byte array
        LAIFixedLength
    camel.locationInformation  locationInformation
        No value
    camel.locationInformationGPRS  locationInformationGPRS
        No value
    camel.locationInformationMSC  locationInformationMSC
        No value
        LocationInformation
    camel.locationNumber  locationNumber
        Byte array
    camel.long_QoS_format  long-QoS-format
        Byte array
        Ext_QoS_Subscribed
    camel.lowLayerCompatibility  lowLayerCompatibility
        Byte array
    camel.lowLayerCompatibility2  lowLayerCompatibility2
        Byte array
        LowLayerCompatibility
    camel.mSISDN  mSISDN
        Byte array
        ISDN_AddressString
    camel.maxCallPeriodDuration  maxCallPeriodDuration
        Unsigned 32-bit integer
        INTEGER_1_864000
    camel.maxElapsedTime  maxElapsedTime
        Unsigned 32-bit integer
        INTEGER_1_86400
    camel.maxTransferredVolume  maxTransferredVolume
        Unsigned 32-bit integer
        INTEGER_1_4294967295
    camel.maximumNbOfDigits  maximumNbOfDigits
        Unsigned 32-bit integer
        INTEGER_1_30
    camel.maximumNumberOfDigits  maximumNumberOfDigits
        Unsigned 32-bit integer
        INTEGER_1_30
    camel.messageContent  messageContent
        String
        IA5String_SIZE_bound__minMessageContentLength_bound__maxMessageContentLength
    camel.messageID  messageID
        Unsigned 32-bit integer
    camel.metDPCriteriaList  metDPCriteriaList
        Unsigned 32-bit integer
    camel.metDPCriterionAlt  metDPCriterionAlt
        No value
    camel.midCallControlInfo  midCallControlInfo
        No value
    camel.midCallEvents  midCallEvents
        Unsigned 32-bit integer
        T_omidCallEvents
    camel.minimumNbOfDigits  minimumNbOfDigits
        Unsigned 32-bit integer
        INTEGER_1_30
    camel.minimumNumberOfDigits  minimumNumberOfDigits
        Unsigned 32-bit integer
        INTEGER_1_30
    camel.miscCallInfo  miscCallInfo
        No value
    camel.miscGPRSInfo  miscGPRSInfo
        No value
        MiscCallInfo
    camel.monitorMode  monitorMode
        Unsigned 32-bit integer
    camel.ms_Classmark2  ms-Classmark2
        Byte array
    camel.mscAddress  mscAddress
        Byte array
        ISDN_AddressString
    camel.naOliInfo  naOliInfo
        Byte array
    camel.natureOfServiceChange  natureOfServiceChange
        Unsigned 32-bit integer
    camel.negotiated_QoS  negotiated-QoS
        Unsigned 32-bit integer
        GPRS_QoS
    camel.negotiated_QoS_Extension  negotiated-QoS-Extension
        No value
        GPRS_QoS_Extension
    camel.newCallSegment  newCallSegment
        Unsigned 32-bit integer
        CallSegmentID
    camel.nonCUGCall  nonCUGCall
        No value
    camel.none  none
        No value
    camel.number  number
        Byte array
        Digits
    camel.numberOfBursts  numberOfBursts
        Unsigned 32-bit integer
        INTEGER_1_3
    camel.numberOfDigits  numberOfDigits
        Unsigned 32-bit integer
    camel.numberOfRepetitions  numberOfRepetitions
        Unsigned 32-bit integer
        INTEGER_1_127
    camel.numberOfTonesInBurst  numberOfTonesInBurst
        Unsigned 32-bit integer
        INTEGER_1_3
    camel.oAbandonSpecificInfo  oAbandonSpecificInfo
        No value
    camel.oAnswerSpecificInfo  oAnswerSpecificInfo
        No value
    camel.oCSIApplicable  oCSIApplicable
        No value
    camel.oCalledPartyBusySpecificInfo  oCalledPartyBusySpecificInfo
        No value
    camel.oChangeOfPositionSpecificInfo  oChangeOfPositionSpecificInfo
        No value
    camel.oDisconnectSpecificInfo  oDisconnectSpecificInfo
        No value
    camel.oMidCallSpecificInfo  oMidCallSpecificInfo
        No value
    camel.oNoAnswerSpecificInfo  oNoAnswerSpecificInfo
        No value
    camel.oServiceChangeSpecificInfo  oServiceChangeSpecificInfo
        No value
    camel.oTermSeizedSpecificInfo  oTermSeizedSpecificInfo
        No value
    camel.o_smsFailureSpecificInfo  o-smsFailureSpecificInfo
        No value
    camel.o_smsSubmissionSpecificInfo  o-smsSubmissionSpecificInfo
        No value
    camel.offeredCamel4Functionalities  offeredCamel4Functionalities
        Byte array
    camel.opcode  opcode
        Unsigned 32-bit integer
        Code
    camel.operation  operation
        Signed 32-bit integer
        InvokeID
    camel.or_Call  or-Call
        No value
    camel.originalCalledPartyID  originalCalledPartyID
        Byte array
    camel.originationReference  originationReference
        Unsigned 32-bit integer
        Integer4
    camel.pDPAddress  pDPAddress
        Byte array
    camel.pDPContextEstablishmentAcknowledgementSpecificInformation  pDPContextEstablishmentAcknowledgementSpecificInformation
        No value
    camel.pDPContextEstablishmentSpecificInformation  pDPContextEstablishmentSpecificInformation
        No value
    camel.pDPID  pDPID
        Byte array
    camel.pDPInitiationType  pDPInitiationType
        Unsigned 32-bit integer
    camel.pDPTypeNumber  pDPTypeNumber
        Byte array
    camel.pDPTypeOrganization  pDPTypeOrganization
        Byte array
    camel.parameter  parameter
        No value
    camel.partyToCharge  partyToCharge
        Unsigned 32-bit integer
        ReceivingSideID
    camel.pdpID  pdpID
        Byte array
    camel.pdp_ContextchangeOfPositionSpecificInformation  pdp-ContextchangeOfPositionSpecificInformation
        No value
    camel.present  present
        Signed 32-bit integer
        T_linkedIdPresent
    camel.price  price
        Byte array
        OCTET_STRING_SIZE_4
    camel.problem  problem
        Unsigned 32-bit integer
        T_par_cancelFailedProblem
    camel.qualityOfService  qualityOfService
        No value
    camel.rO_TimeGPRSIfNoTariffSwitch  rO-TimeGPRSIfNoTariffSwitch
        Unsigned 32-bit integer
        INTEGER_0_255
    camel.rO_TimeGPRSIfTariffSwitch  rO-TimeGPRSIfTariffSwitch
        No value
    camel.rO_TimeGPRSSinceLastTariffSwitch  rO-TimeGPRSSinceLastTariffSwitch
        Unsigned 32-bit integer
        INTEGER_0_255
    camel.rO_TimeGPRSTariffSwitchInterval  rO-TimeGPRSTariffSwitchInterval
        Unsigned 32-bit integer
        INTEGER_0_255
    camel.rO_VolumeIfNoTariffSwitch  rO-VolumeIfNoTariffSwitch
        Unsigned 32-bit integer
        INTEGER_0_255
    camel.rO_VolumeIfTariffSwitch  rO-VolumeIfTariffSwitch
        No value
    camel.rO_VolumeSinceLastTariffSwitch  rO-VolumeSinceLastTariffSwitch
        Unsigned 32-bit integer
        INTEGER_0_255
    camel.rO_VolumeTariffSwitchInterval  rO-VolumeTariffSwitchInterval
        Unsigned 32-bit integer
        INTEGER_0_255
    camel.receivingSideID  receivingSideID
        Byte array
        LegType
    camel.redirectingPartyID  redirectingPartyID
        Byte array
    camel.redirectionInformation  redirectionInformation
        Byte array
    camel.reject  reject
        No value
    camel.releaseCause  releaseCause
        Byte array
        Cause
    camel.releaseCauseValue  releaseCauseValue
        Byte array
        Cause
    camel.releaseIfdurationExceeded  releaseIfdurationExceeded
        Boolean
        BOOLEAN
    camel.requestAnnouncementCompleteNotification  requestAnnouncementCompleteNotification
        Boolean
        BOOLEAN
    camel.requestAnnouncementStartedNotification  requestAnnouncementStartedNotification
        Boolean
        BOOLEAN
    camel.requestedInformationList  requestedInformationList
        Unsigned 32-bit integer
    camel.requestedInformationType  requestedInformationType
        Unsigned 32-bit integer
    camel.requestedInformationTypeList  requestedInformationTypeList
        Unsigned 32-bit integer
    camel.requestedInformationValue  requestedInformationValue
        Unsigned 32-bit integer
    camel.requested_QoS  requested-QoS
        Unsigned 32-bit integer
        GPRS_QoS
    camel.requested_QoS_Extension  requested-QoS-Extension
        No value
        GPRS_QoS_Extension
    camel.resourceAddress  resourceAddress
        Unsigned 32-bit integer
    camel.result  result
        No value
    camel.returnError  returnError
        No value
    camel.returnResult  returnResult
        No value
    camel.routeNotPermitted  routeNotPermitted
        No value
    camel.routeSelectFailureSpecificInfo  routeSelectFailureSpecificInfo
        No value
    camel.routeingAreaIdentity  routeingAreaIdentity
        Byte array
        RAIdentity
    camel.routeingAreaUpdate  routeingAreaUpdate
        No value
    camel.sCIBillingChargingCharacteristics  sCIBillingChargingCharacteristics
        Byte array
    camel.sCIGPRSBillingChargingCharacteristics  sCIGPRSBillingChargingCharacteristics
        Byte array
    camel.sGSNCapabilities  sGSNCapabilities
        Byte array
    camel.sMSCAddress  sMSCAddress
        Byte array
        ISDN_AddressString
    camel.sMSEvents  sMSEvents
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_bound__numOfSMSEvents_OF_SMSEvent
    camel.sai_Present  sai-Present
        No value
    camel.scfID  scfID
        Byte array
    camel.secondaryPDP_context  secondaryPDP-context
        No value
    camel.selectedLSAIdentity  selectedLSAIdentity
        Byte array
        LSAIdentity
    camel.sendingSideID  sendingSideID
        Byte array
        LegType
    camel.serviceAreaId  serviceAreaId
        Byte array
        CellGlobalIdOrServiceAreaIdFixedLength
    camel.serviceInteractionIndicatorsTwo  serviceInteractionIndicatorsTwo
        No value
    camel.serviceKey  serviceKey
        Unsigned 32-bit integer
    camel.sgsn_Number  sgsn-Number
        Byte array
        ISDN_AddressString
    camel.short_QoS_format  short-QoS-format
        Byte array
        QoS_Subscribed
    camel.smsReferenceNumber  smsReferenceNumber
        Byte array
        CallReferenceNumber
    camel.srfConnection  srfConnection
        Unsigned 32-bit integer
        CallSegmentID
    camel.srt.deltatime  Service Response Time
        Time duration
        DeltaTime between Request and Response
    camel.srt.deltatime22  Service Response Time
        Time duration
        DeltaTime between EventReport(Disconnect) and Release Call
    camel.srt.deltatime31  Service Response Time
        Time duration
        DeltaTime between InitialDP and Continue
    camel.srt.deltatime35  Service Response Time
        Time duration
        DeltaTime between ApplyCharginReport and ApplyCharging
    camel.srt.deltatime65  Service Response Time
        Time duration
        DeltaTime between InitialDPSMS and ContinueSMS
    camel.srt.deltatime75  Service Response Time
        Time duration
        DeltaTime between InitialDPGPRS and ContinueGPRS
    camel.srt.deltatime80  Service Response Time
        Time duration
        DeltaTime between EventReportGPRS and ContinueGPRS
    camel.srt.duplicate  Request Duplicate
        Unsigned 32-bit integer
    camel.srt.reqframe  Requested Frame
        Frame number
        SRT Request Frame
    camel.srt.request_number  Request Number
        Unsigned 64-bit integer
    camel.srt.rspframe  Response Frame
        Frame number
        SRT Response Frame
    camel.srt.session_id  Session Id
        Unsigned 32-bit integer
    camel.srt.sessiontime  Session duration
        Time duration
        Duration of the TCAP session
    camel.startDigit  startDigit
        Byte array
        OCTET_STRING_SIZE_1_2
    camel.subscribed_QoS  subscribed-QoS
        Unsigned 32-bit integer
        GPRS_QoS
    camel.subscribed_QoS_Extension  subscribed-QoS-Extension
        No value
        GPRS_QoS_Extension
    camel.subscriberState  subscriberState
        Unsigned 32-bit integer
    camel.supplement_to_long_QoS_format  supplement-to-long-QoS-format
        Byte array
        Ext2_QoS_Subscribed
    camel.supportedCamelPhases  supportedCamelPhases
        Byte array
    camel.suppressOutgoingCallBarring  suppressOutgoingCallBarring
        No value
    camel.suppress_D_CSI  suppress-D-CSI
        No value
    camel.suppress_N_CSI  suppress-N-CSI
        No value
    camel.suppress_O_CSI  suppress-O-CSI
        No value
    camel.suppress_T_CSI  suppress-T-CSI
        No value
    camel.suppressionOfAnnouncement  suppressionOfAnnouncement
        No value
    camel.tAnswerSpecificInfo  tAnswerSpecificInfo
        No value
    camel.tBusySpecificInfo  tBusySpecificInfo
        No value
    camel.tChangeOfPositionSpecificInfo  tChangeOfPositionSpecificInfo
        No value
    camel.tDisconnectSpecificInfo  tDisconnectSpecificInfo
        No value
    camel.tMidCallSpecificInfo  tMidCallSpecificInfo
        No value
    camel.tNoAnswerSpecificInfo  tNoAnswerSpecificInfo
        No value
    camel.tPDataCodingScheme  tPDataCodingScheme
        Byte array
    camel.tPProtocolIdentifier  tPProtocolIdentifier
        Byte array
    camel.tPShortMessageSpecificInfo  tPShortMessageSpecificInfo
        Byte array
    camel.tPValidityPeriod  tPValidityPeriod
        Byte array
    camel.tServiceChangeSpecificInfo  tServiceChangeSpecificInfo
        No value
    camel.t_smsDeliverySpecificInfo  t-smsDeliverySpecificInfo
        No value
        T_t_smsDeliverySpecificInfo
    camel.t_smsFailureSpecificInfo  t-smsFailureSpecificInfo
        No value
        T_t_smsFailureSpecificInfo
    camel.tariffSwitchInterval  tariffSwitchInterval
        Unsigned 32-bit integer
        INTEGER_1_86400
    camel.text  text
        No value
    camel.time  time
        Byte array
        OCTET_STRING_SIZE_2
    camel.timeAndTimeZone  timeAndTimeZone
        Byte array
    camel.timeAndTimezone  timeAndTimezone
        Byte array
    camel.timeDurationCharging  timeDurationCharging
        No value
    camel.timeDurationChargingResult  timeDurationChargingResult
        No value
    camel.timeGPRSIfNoTariffSwitch  timeGPRSIfNoTariffSwitch
        Unsigned 32-bit integer
        INTEGER_0_86400
    camel.timeGPRSIfTariffSwitch  timeGPRSIfTariffSwitch
        No value
    camel.timeGPRSSinceLastTariffSwitch  timeGPRSSinceLastTariffSwitch
        Unsigned 32-bit integer
        INTEGER_0_86400
    camel.timeGPRSTariffSwitchInterval  timeGPRSTariffSwitchInterval
        Unsigned 32-bit integer
        INTEGER_0_86400
    camel.timeIfNoTariffSwitch  timeIfNoTariffSwitch
        Unsigned 32-bit integer
    camel.timeIfTariffSwitch  timeIfTariffSwitch
        No value
    camel.timeInformation  timeInformation
        Unsigned 32-bit integer
    camel.timeSinceTariffSwitch  timeSinceTariffSwitch
        Unsigned 32-bit integer
        INTEGER_0_864000
    camel.timerID  timerID
        Unsigned 32-bit integer
    camel.timervalue  timervalue
        Unsigned 32-bit integer
    camel.tone  tone
        Boolean
        BOOLEAN
    camel.toneDuration  toneDuration
        Unsigned 32-bit integer
        INTEGER_1_20
    camel.toneID  toneID
        Unsigned 32-bit integer
        Integer4
    camel.toneInterval  toneInterval
        Unsigned 32-bit integer
        INTEGER_1_20
    camel.transferredVolume  transferredVolume
        Unsigned 32-bit integer
    camel.transferredVolumeRollOver  transferredVolumeRollOver
        Unsigned 32-bit integer
    camel.type  type
        Unsigned 32-bit integer
        Code
    camel.uu_Data  uu-Data
        No value
    camel.value  value
        No value
    camel.variableMessage  variableMessage
        No value
    camel.variableParts  variableParts
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_5_OF_VariablePart
    camel.voiceBack  voiceBack
        Boolean
        BOOLEAN
    camel.voiceInformation  voiceInformation
        Boolean
        BOOLEAN
    camel.volumeIfNoTariffSwitch  volumeIfNoTariffSwitch
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    camel.volumeIfTariffSwitch  volumeIfTariffSwitch
        No value
    camel.volumeSinceLastTariffSwitch  volumeSinceLastTariffSwitch
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    camel.volumeTariffSwitchInterval  volumeTariffSwitchInterval
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    camel.warningPeriod  warningPeriod
        Unsigned 32-bit integer
        INTEGER_1_1200

Canon BJNP (bjnp)

    bjnp.code  Code
        Unsigned 8-bit integer
    bjnp.id  Id
        String
    bjnp.payload  Payload
        Byte array
    bjnp.payload_len  Payload Length
        Unsigned 32-bit integer
    bjnp.seq_no  Sequence Number
        Unsigned 32-bit integer
    bjnp.session_id  Session Id
        Unsigned 16-bit integer
    bjnp.type  Type
        Unsigned 8-bit integer

Cast Client Control Protocol (cast)

    cast.DSCPValue  DSCPValue
        Unsigned 32-bit integer
        DSCPValue.
    cast.MPI  MPI
        Unsigned 32-bit integer
        MPI.
    cast.ORCStatus  ORCStatus
        Unsigned 32-bit integer
        The status of the opened receive channel.
    cast.RTPPayloadFormat  RTPPayloadFormat
        Unsigned 32-bit integer
        RTPPayloadFormat.
    cast.activeConferenceOnRegistration  ActiveConferenceOnRegistration
        Unsigned 32-bit integer
        ActiveConferenceOnRegistration.
    cast.activeStreamsOnRegistration  ActiveStreamsOnRegistration
        Unsigned 32-bit integer
        ActiveStreamsOnRegistration.
    cast.annexNandWFutureUse  AnnexNandWFutureUse
        Unsigned 32-bit integer
        AnnexNandWFutureUse.
    cast.audio  AudioCodec
        Unsigned 32-bit integer
        The audio codec that is in use.
    cast.bandwidth  Bandwidth
        Unsigned 32-bit integer
        Bandwidth.
    cast.bitRate  BitRate
        Unsigned 32-bit integer
        BitRate.
    cast.callIdentifier  Call Identifier
        Unsigned 32-bit integer
        Call identifier for this call.
    cast.callInstance  CallInstance
        Unsigned 32-bit integer
        CallInstance.
    cast.callSecurityStatus  CallSecurityStatus
        Unsigned 32-bit integer
        CallSecurityStatus.
    cast.callState  CallState
        Unsigned 32-bit integer
        CallState.
    cast.callType  Call Type
        Unsigned 32-bit integer
        What type of call, in/out/etc
    cast.calledParty  CalledParty
        String
        The number called.
    cast.calledPartyName  Called Party Name
        String
        The name of the party we are calling.
    cast.callingPartyName  Calling Party Name
        String
        The passed name of the calling party.
    cast.cdpnVoiceMailbox  CdpnVoiceMailbox
        String
        CdpnVoiceMailbox.
    cast.cgpnVoiceMailbox  CgpnVoiceMailbox
        String
        CgpnVoiceMailbox.
    cast.clockConversionCode  ClockConversionCode
        Unsigned 32-bit integer
        ClockConversionCode.
    cast.clockDivisor  ClockDivisor
        Unsigned 32-bit integer
        Clock Divisor.
    cast.confServiceNum  ConfServiceNum
        Unsigned 32-bit integer
        ConfServiceNum.
    cast.conferenceID  Conference ID
        Unsigned 32-bit integer
        The conference ID
    cast.customPictureFormatCount  CustomPictureFormatCount
        Unsigned 32-bit integer
        CustomPictureFormatCount.
    cast.dataCapCount  DataCapCount
        Unsigned 32-bit integer
        DataCapCount.
    cast.data_length  Data Length
        Unsigned 32-bit integer
        Number of bytes in the data portion.
    cast.directoryNumber  Directory Number
        String
        The number we are reporting statistics for.
    cast.echoCancelType  Echo Cancel Type
        Unsigned 32-bit integer
        Is echo cancelling enabled or not
    cast.firstGOB  FirstGOB
        Unsigned 32-bit integer
        FirstGOB.
    cast.firstMB  FirstMB
        Unsigned 32-bit integer
        FirstMB.
    cast.format  Format
        Unsigned 32-bit integer
        Format.
    cast.g723BitRate  G723 BitRate
        Unsigned 32-bit integer
        The G723 bit rate for this stream/JUNK if not g723 stream
    cast.h263_capability_bitfield  H263_capability_bitfield
        Unsigned 32-bit integer
        H263_capability_bitfield.
    cast.ipAddress  IP Address
        IPv4 address
        An IP address
    cast.isConferenceCreator  IsConferenceCreator
        Unsigned 32-bit integer
        IsConferenceCreator.
    cast.lastRedirectingParty  LastRedirectingParty
        String
        LastRedirectingParty.
    cast.lastRedirectingPartyName  LastRedirectingPartyName
        String
        LastRedirectingPartyName.
    cast.lastRedirectingReason  LastRedirectingReason
        Unsigned 32-bit integer
        LastRedirectingReason.
    cast.lastRedirectingVoiceMailbox  LastRedirectingVoiceMailbox
        String
        LastRedirectingVoiceMailbox.
    cast.layout  Layout
        Unsigned 32-bit integer
    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
    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
    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
    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
    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.

Catapult DCT2000 packet (dct2000)

    dct2000.comment  Comment
        String
        Comment
    dct2000.context  Context
        String
        Context name
    dct2000.context_port  Context Port number
        Unsigned 8-bit integer
    dct2000.direction  Direction
        Unsigned 8-bit integer
        Frame direction (Sent or Received)
    dct2000.dissected-length  Dissected length
        Unsigned 16-bit integer
        Number of bytes dissected by subdissector(s)
    dct2000.encapsulation  Wireshark encapsulation
        Unsigned 8-bit integer
        Wireshark frame encapsulation used
    dct2000.error-comment  Error comment
        No value
        Error Comment
    dct2000.ipprim  IPPrim Addresses
        String
    dct2000.ipprim.addr  Address
        IPv4 address
        IPPrim IPv4 Address
    dct2000.ipprim.addrv6  Address
        IPv6 address
        IPPrim IPv6 Address
    dct2000.ipprim.conn-id  Conn Id
        Unsigned 16-bit integer
        IPPrim TCP Connection ID
    dct2000.ipprim.dst  Destination Address
        IPv4 address
        IPPrim IPv4 Destination Address
    dct2000.ipprim.dstv6  Destination Address
        IPv6 address
        IPPrim IPv6 Destination Address
    dct2000.ipprim.src  Source Address
        IPv4 address
        IPPrim IPv4 Source Address
    dct2000.ipprim.srcv6  Source Address
        IPv6 address
        IPPrim IPv6 Source Address
    dct2000.ipprim.tcp.dstport  TCP Destination Port
        Unsigned 16-bit integer
        IPPrim TCP Destination Port
    dct2000.ipprim.tcp.port  TCP Port
        Unsigned 16-bit integer
        IPPrim TCP Port
    dct2000.ipprim.tcp.srcport  TCP Source Port
        Unsigned 16-bit integer
        IPPrim TCP Source Port
    dct2000.ipprim.udp.dstport  UDP Destination Port
        Unsigned 16-bit integer
        IPPrim UDP Destination Port
    dct2000.ipprim.udp.port  UDP Port
        Unsigned 16-bit integer
        IPPrim UDP Port
    dct2000.ipprim.udp.srcport  UDP Source Port
        Unsigned 16-bit integer
        IPPrim UDP Source Port
    dct2000.lte.bcch-transport  BCCH Transport
        Unsigned 16-bit integer
        BCCH Transport Channel
    dct2000.lte.ccpri.channel  Channel
        Unsigned 8-bit integer
    dct2000.lte.ccpri.opcode  CCPRI opcode
        Unsigned 8-bit integer
    dct2000.lte.ccpri.status  Status
        Unsigned 8-bit integer
    dct2000.lte.cellid  Cell-Id
        Unsigned 16-bit integer
        Cell Identifier
    dct2000.lte.drbid  drbid
        Unsigned 8-bit integer
        Data Radio Bearer Identifier
    dct2000.lte.rlc-cnf  CNF
        Boolean
        RLC CNF
    dct2000.lte.rlc-discard-req  Discard Req
        Boolean
        RLC Discard Req
    dct2000.lte.rlc-logchan-type  RLC Logical Channel Type
        Unsigned 8-bit integer
    dct2000.lte.rlc-mui  MUI
        Unsigned 16-bit integer
        RLC MUI
    dct2000.lte.rlc-op  RLC Op
        Unsigned 8-bit integer
        RLC top-level op
    dct2000.lte.srbid  srbid
        Unsigned 8-bit integer
        Signalling Radio Bearer Identifier
    dct2000.lte.ueid  UE Id
        Unsigned 16-bit integer
        User Equipment Identifier
    dct2000.outhdr  Out-header
        String
        DCT2000 protocol outhdr
    dct2000.protocol  DCT2000 protocol
        String
        Original (DCT2000) protocol name
    dct2000.sctpprim  SCTPPrim Addresses
        String
    dct2000.sctpprim.addr  Address
        IPv4 address
        SCTPPrim IPv4 Address
    dct2000.sctpprim.addrv6  Address
        IPv6 address
        SCTPPrim IPv6 Address
    dct2000.sctpprim.dst  Destination Address
        IPv4 address
        SCTPPrim IPv4 Destination Address
    dct2000.sctpprim.dstv6  Destination Address
        IPv6 address
        SCTPPrim IPv6 Destination Address
    dct2000.sctprim.dstport  UDP Destination Port
        Unsigned 16-bit integer
        SCTPPrim Destination Port
    dct2000.timestamp  Timestamp
        Double-precision floating point
        File timestamp
    dct2000.tty  tty contents
        No value
    dct2000.tty-line  tty line
        String
    dct2000.unparsed_data  Unparsed protocol data
        Byte array
        Unparsed DCT2000 protocol data
    dct2000.variant  Protocol variant
        String
        DCT2000 protocol variant

Certificate Management Protocol (cmp)

    cmp.AlgorithmIdentifier  AlgorithmIdentifier
        No value
    cmp.CAKeyUpdateInfoValue  CAKeyUpdateInfoValue
        No value
    cmp.CAProtEncCertValue  CAProtEncCertValue
        Unsigned 32-bit integer
    cmp.CMPCertificate  CMPCertificate
        Unsigned 32-bit integer
    cmp.CertId  CertId
        No value
    cmp.CertResponse  CertResponse
        No value
    cmp.CertStatus  CertStatus
        No value
    cmp.CertificateList  CertificateList
        No value
    cmp.CertifiedKeyPair  CertifiedKeyPair
        No value
    cmp.Challenge  Challenge
        No value
    cmp.ConfirmWaitTimeValue  ConfirmWaitTimeValue
        String
    cmp.CurrentCRLValue  CurrentCRLValue
        No value
    cmp.DHBMParameter  DHBMParameter
        No value
    cmp.EncKeyPairTypesValue  EncKeyPairTypesValue
        Unsigned 32-bit integer
    cmp.ImplicitConfirmValue  ImplicitConfirmValue
        No value
    cmp.InfoTypeAndValue  InfoTypeAndValue
        No value
    cmp.KeyPairParamRepValue  KeyPairParamRepValue
        No value
    cmp.KeyPairParamReqValue  KeyPairParamReqValue
        Object Identifier
    cmp.OrigPKIMessageValue  OrigPKIMessageValue
        Unsigned 32-bit integer
    cmp.PBMParameter  PBMParameter
        No value
    cmp.PKIFreeText_item  PKIFreeText item
        String
        UTF8String
    cmp.PKIMessage  PKIMessage
        No value
    cmp.PKIStatusInfo  PKIStatusInfo
        No value
    cmp.POPODecKeyRespContent_item  POPODecKeyRespContent item
        Signed 32-bit integer
        INTEGER
    cmp.PollRepContent_item  PollRepContent item
        No value
    cmp.PollReqContent_item  PollReqContent item
        No value
    cmp.PreferredSymmAlgValue  PreferredSymmAlgValue
        No value
    cmp.RevDetails  RevDetails
        No value
    cmp.RevPassphraseValue  RevPassphraseValue
        No value
    cmp.SignKeyPairTypesValue  SignKeyPairTypesValue
        Unsigned 32-bit integer
    cmp.SuppLangTagsValue  SuppLangTagsValue
        Unsigned 32-bit integer
    cmp.SuppLangTagsValue_item  SuppLangTagsValue item
        String
        UTF8String
    cmp.UnsupportedOIDsValue  UnsupportedOIDsValue
        Unsigned 32-bit integer
    cmp.UnsupportedOIDsValue_item  UnsupportedOIDsValue item
        Object Identifier
        OBJECT_IDENTIFIER
    cmp.addInfoNotAvailable  addInfoNotAvailable
        Boolean
    cmp.badAlg  badAlg
        Boolean
    cmp.badCertId  badCertId
        Boolean
    cmp.badCertTemplate  badCertTemplate
        Boolean
    cmp.badDataFormat  badDataFormat
        Boolean
    cmp.badMessageCheck  badMessageCheck
        Boolean
    cmp.badPOP  badPOP
        Boolean
    cmp.badRecipientNonce  badRecipientNonce
        Boolean
    cmp.badRequest  badRequest
        Boolean
    cmp.badSenderNonce  badSenderNonce
        Boolean
    cmp.badSinceDate  badSinceDate
        String
        GeneralizedTime
    cmp.badTime  badTime
        Boolean
    cmp.body  body
        Unsigned 32-bit integer
        PKIBody
    cmp.caCerts  caCerts
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_CMPCertificate
    cmp.caPubs  caPubs
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_CMPCertificate
    cmp.cann  cann
        Unsigned 32-bit integer
        CertAnnContent
    cmp.ccp  ccp
        No value
        CertRepMessage
    cmp.ccr  ccr
        Unsigned 32-bit integer
        CertReqMessages
    cmp.certConf  certConf
        Unsigned 32-bit integer
        CertConfirmContent
    cmp.certConfirmed  certConfirmed
        Boolean
    cmp.certDetails  certDetails
        No value
        CertTemplate
    cmp.certHash  certHash
        Byte array
        OCTET_STRING
    cmp.certId  certId
        No value
    cmp.certOrEncCert  certOrEncCert
        Unsigned 32-bit integer
    cmp.certReqId  certReqId
        Signed 32-bit integer
        INTEGER
    cmp.certRevoked  certRevoked
        Boolean
    cmp.certificate  certificate
        Unsigned 32-bit integer
        CMPCertificate
    cmp.certifiedKeyPair  certifiedKeyPair
        No value
    cmp.challenge  challenge
        Byte array
        OCTET_STRING
    cmp.checkAfter  checkAfter
        Signed 32-bit integer
        INTEGER
    cmp.ckuann  ckuann
        No value
        CAKeyUpdAnnContent
    cmp.cp  cp
        No value
        CertRepMessage
    cmp.cr  cr
        Unsigned 32-bit integer
        CertReqMessages
    cmp.crlDetails  crlDetails
        Unsigned 32-bit integer
        Extensions
    cmp.crlEntryDetails  crlEntryDetails
        Unsigned 32-bit integer
        Extensions
    cmp.crlann  crlann
        Unsigned 32-bit integer
        CRLAnnContent
    cmp.crls  crls
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_CertificateList
    cmp.duplicateCertReq  duplicateCertReq
        Boolean
    cmp.encryptedCert  encryptedCert
        No value
        EncryptedValue
    cmp.error  error
        No value
        ErrorMsgContent
    cmp.errorCode  errorCode
        Signed 32-bit integer
        INTEGER
    cmp.errorDetails  errorDetails
        Unsigned 32-bit integer
        PKIFreeText
    cmp.extraCerts  extraCerts
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_CMPCertificate
    cmp.failInfo  failInfo
        Byte array
        PKIFailureInfo
    cmp.freeText  freeText
        Unsigned 32-bit integer
        PKIFreeText
    cmp.generalInfo  generalInfo
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_InfoTypeAndValue
    cmp.genm  genm
        Unsigned 32-bit integer
        GenMsgContent
    cmp.genp  genp
        Unsigned 32-bit integer
        GenRepContent
    cmp.hashAlg  hashAlg
        No value
        AlgorithmIdentifier
    cmp.hashVal  hashVal
        Byte array
        BIT_STRING
    cmp.header  header
        No value
        PKIHeader
    cmp.incorrectData  incorrectData
        Boolean
    cmp.infoType  infoType
        Object Identifier
    cmp.infoValue  infoValue
        No value
    cmp.ip  ip
        No value
        CertRepMessage
    cmp.ir  ir
        Unsigned 32-bit integer
        CertReqMessages
    cmp.iterationCount  iterationCount
        Signed 32-bit integer
        INTEGER
    cmp.keyPairHist  keyPairHist
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_CertifiedKeyPair
    cmp.krp  krp
        No value
        KeyRecRepContent
    cmp.krr  krr
        Unsigned 32-bit integer
        CertReqMessages
    cmp.kup  kup
        No value
        CertRepMessage
    cmp.kur  kur
        Unsigned 32-bit integer
        CertReqMessages
    cmp.mac  mac
        No value
        AlgorithmIdentifier
    cmp.messageTime  messageTime
        String
        GeneralizedTime
    cmp.missingTimeStamp  missingTimeStamp
        Boolean
    cmp.nested  nested
        Unsigned 32-bit integer
        NestedMessageContent
    cmp.newSigCert  newSigCert
        Unsigned 32-bit integer
        CMPCertificate
    cmp.newWithNew  newWithNew
        Unsigned 32-bit integer
        CMPCertificate
    cmp.newWithOld  newWithOld
        Unsigned 32-bit integer
        CMPCertificate
    cmp.notAuthorized  notAuthorized
        Boolean
    cmp.oldWithNew  oldWithNew
        Unsigned 32-bit integer
        CMPCertificate
    cmp.owf  owf
        No value
        AlgorithmIdentifier
    cmp.p10cr  p10cr
        No value
    cmp.pKIStatusInfo  pKIStatusInfo
        No value
    cmp.pkiconf  pkiconf
        No value
        PKIConfirmContent
    cmp.pollRep  pollRep
        Unsigned 32-bit integer
        PollRepContent
    cmp.pollReq  pollReq
        Unsigned 32-bit integer
        PollReqContent
    cmp.popdecc  popdecc
        Unsigned 32-bit integer
        POPODecKeyChallContent
    cmp.popdecr  popdecr
        Unsigned 32-bit integer
        POPODecKeyRespContent
    cmp.privateKey  privateKey
        No value
        EncryptedValue
    cmp.protection  protection
        Byte array
        PKIProtection
    cmp.protectionAlg  protectionAlg
        No value
        AlgorithmIdentifier
    cmp.publicationInfo  publicationInfo
        No value
        PKIPublicationInfo
    cmp.pvno  pvno
        Signed 32-bit integer
    cmp.rann  rann
        No value
        RevAnnContent
    cmp.reason  reason
        Unsigned 32-bit integer
        PKIFreeText
    cmp.recipKID  recipKID
        Byte array
        KeyIdentifier
    cmp.recipNonce  recipNonce
        Byte array
        OCTET_STRING
    cmp.recipient  recipient
        Unsigned 32-bit integer
        GeneralName
    cmp.response  response
        Unsigned 32-bit integer
        SEQUENCE_OF_CertResponse
    cmp.revCerts  revCerts
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_CertId
    cmp.rp  rp
        No value
        RevRepContent
    cmp.rr  rr
        Unsigned 32-bit integer
        RevReqContent
    cmp.rspInfo  rspInfo
        Byte array
        OCTET_STRING
    cmp.salt  salt
        Byte array
        OCTET_STRING
    cmp.sender  sender
        Unsigned 32-bit integer
        GeneralName
    cmp.senderKID  senderKID
        Byte array
        KeyIdentifier
    cmp.senderNonce  senderNonce
        Byte array
        OCTET_STRING
    cmp.signerNotTrusted  signerNotTrusted
        Boolean
    cmp.status  status
        Signed 32-bit integer
        PKIStatus
    cmp.statusInfo  statusInfo
        No value
        PKIStatusInfo
    cmp.statusString  statusString
        Unsigned 32-bit integer
        PKIFreeText
    cmp.systemFailure  systemFailure
        Boolean
    cmp.systemUnavail  systemUnavail
        Boolean
    cmp.tcptrans.length  Length
        Unsigned 32-bit integer
        TCP transport Length of PDU in bytes
    cmp.tcptrans.next_poll_ref  Next Polling Reference
        Unsigned 32-bit integer
        TCP transport Next Polling Reference
    cmp.tcptrans.poll_ref  Polling Reference
        Unsigned 32-bit integer
        TCP transport Polling Reference
    cmp.tcptrans.ttcb  Time to check Back
        Date/Time stamp
        TCP transport Time to check Back
    cmp.tcptrans.type  Type
        Unsigned 8-bit integer
        TCP transport PDU Type
    cmp.tcptrans10.flags  Flags
        Unsigned 8-bit integer
        TCP transport flags
    cmp.tcptrans10.version  Version
        Unsigned 8-bit integer
        TCP transport version
    cmp.timeNotAvailable  timeNotAvailable
        Boolean
    cmp.transactionID  transactionID
        Byte array
        OCTET_STRING
    cmp.transactionIdInUse  transactionIdInUse
        Boolean
    cmp.type.oid  InfoType
        String
        Type of InfoTypeAndValue
    cmp.unacceptedExtension  unacceptedExtension
        Boolean
    cmp.unacceptedPolicy  unacceptedPolicy
        Boolean
    cmp.unsupportedVersion  unsupportedVersion
        Boolean
    cmp.willBeRevokedAt  willBeRevokedAt
        String
        GeneralizedTime
    cmp.witness  witness
        Byte array
        OCTET_STRING
    cmp.wrongAuthority  wrongAuthority
        Boolean
    cmp.wrongIntegrity  wrongIntegrity
        Boolean
    cmp.x509v3PKCert  x509v3PKCert
        No value
        Certificate

Certificate Request Message Format (crmf)

    crmf.Attribute  Attribute
        No value
    crmf.AttributeTypeAndValue  AttributeTypeAndValue
        No value
    crmf.CertId  CertId
        No value
    crmf.CertReqMsg  CertReqMsg
        No value
    crmf.CertRequest  CertRequest
        No value
    crmf.EncKeyWithID  EncKeyWithID
        No value
    crmf.PBMParameter  PBMParameter
        No value
    crmf.ProtocolEncrKey  ProtocolEncrKey
        No value
    crmf.SinglePubInfo  SinglePubInfo
        No value
    crmf.UTF8Pairs  UTF8Pairs
        String
    crmf.action  action
        Signed 32-bit integer
    crmf.agreeMAC  agreeMAC
        No value
        PKMACValue
    crmf.algId  algId
        No value
        AlgorithmIdentifier
    crmf.algorithmIdentifier  algorithmIdentifier
        No value
    crmf.archiveRemGenPrivKey  archiveRemGenPrivKey
        Boolean
        BOOLEAN
    crmf.attributes  attributes
        Unsigned 32-bit integer
    crmf.authInfo  authInfo
        Unsigned 32-bit integer
    crmf.certReq  certReq
        No value
        CertRequest
    crmf.certReqId  certReqId
        Signed 32-bit integer
        INTEGER
    crmf.certTemplate  certTemplate
        No value
    crmf.controls  controls
        Unsigned 32-bit integer
    crmf.dhMAC  dhMAC
        Byte array
        BIT_STRING
    crmf.encSymmKey  encSymmKey
        Byte array
        BIT_STRING
    crmf.encValue  encValue
        Byte array
        BIT_STRING
    crmf.encryptedKey  encryptedKey
        No value
        EnvelopedData
    crmf.encryptedPrivKey  encryptedPrivKey
        Unsigned 32-bit integer
        EncryptedKey
    crmf.encryptedValue  encryptedValue
        No value
    crmf.envelopedData  envelopedData
        No value
    crmf.extensions  extensions
        Unsigned 32-bit integer
    crmf.generalName  generalName
        Unsigned 32-bit integer
    crmf.identifier  identifier
        Unsigned 32-bit integer
    crmf.intendedAlg  intendedAlg
        No value
        AlgorithmIdentifier
    crmf.issuer  issuer
        Unsigned 32-bit integer
        Name
    crmf.issuerUID  issuerUID
        Byte array
        UniqueIdentifier
    crmf.iterationCount  iterationCount
        Signed 32-bit integer
        INTEGER
    crmf.keyAgreement  keyAgreement
        Unsigned 32-bit integer
        POPOPrivKey
    crmf.keyAlg  keyAlg
        No value
        AlgorithmIdentifier
    crmf.keyEncipherment  keyEncipherment
        Unsigned 32-bit integer
        POPOPrivKey
    crmf.keyGenParameters  keyGenParameters
        Byte array
    crmf.mac  mac
        No value
        AlgorithmIdentifier
    crmf.notAfter  notAfter
        Unsigned 32-bit integer
        Time
    crmf.notBefore  notBefore
        Unsigned 32-bit integer
        Time
    crmf.owf  owf
        No value
        AlgorithmIdentifier
    crmf.popo  popo
        Unsigned 32-bit integer
        ProofOfPossession
    crmf.poposkInput  poposkInput
        No value
        POPOSigningKeyInput
    crmf.privateKey  privateKey
        No value
        PrivateKeyInfo
    crmf.privateKeyAlgorithm  privateKeyAlgorithm
        No value
        AlgorithmIdentifier
    crmf.pubInfos  pubInfos
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_SinglePubInfo
    crmf.pubLocation  pubLocation
        Unsigned 32-bit integer
        GeneralName
    crmf.pubMethod  pubMethod
        Signed 32-bit integer
    crmf.publicKey  publicKey
        No value
        SubjectPublicKeyInfo
    crmf.publicKeyMAC  publicKeyMAC
        No value
        PKMACValue
    crmf.raVerified  raVerified
        No value
    crmf.regInfo  regInfo
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_AttributeTypeAndValue
    crmf.salt  salt
        Byte array
        OCTET_STRING
    crmf.sender  sender
        Unsigned 32-bit integer
        GeneralName
    crmf.serialNumber  serialNumber
        Signed 32-bit integer
        INTEGER
    crmf.signature  signature
        No value
        POPOSigningKey
    crmf.signingAlg  signingAlg
        No value
        AlgorithmIdentifier
    crmf.string  string
        String
        UTF8String
    crmf.subject  subject
        Unsigned 32-bit integer
        Name
    crmf.subjectUID  subjectUID
        Byte array
        UniqueIdentifier
    crmf.subsequentMessage  subsequentMessage
        Signed 32-bit integer
    crmf.symmAlg  symmAlg
        No value
        AlgorithmIdentifier
    crmf.thisMessage  thisMessage
        Byte array
        BIT_STRING
    crmf.type  type
        Object Identifier
    crmf.type.oid  Type
        String
        Type of AttributeTypeAndValue
    crmf.validity  validity
        No value
        OptionalValidity
    crmf.value  value
        No value
    crmf.valueHint  valueHint
        Byte array
        OCTET_STRING
    crmf.version  version
        Signed 32-bit integer

Charging ASE (chargingase)

    charging_ase.ChargingMessageType  ChargingMessageType
        Unsigned 32-bit integer
    charging_ase.CommunicationChargeCurrency  CommunicationChargeCurrency
        No value
    charging_ase.CommunicationChargePulse  CommunicationChargePulse
        No value
    charging_ase.ExtensionField  ExtensionField
        No value
    charging_ase.NetworkIdentification  NetworkIdentification
        Object Identifier
    charging_ase.accepted  accepted
        Boolean
    charging_ase.acknowledgementIndicators  acknowledgementIndicators
        Byte array
    charging_ase.addOnChargeCurrency  addOnChargeCurrency
        No value
        CurrencyFactorScale
    charging_ase.addOnChargePulse  addOnChargePulse
        Byte array
        PulseUnits
    charging_ase.addOncharge  addOncharge
        Unsigned 32-bit integer
    charging_ase.aocrg  aocrg
        No value
        AddOnChargingInformation
    charging_ase.callAttemptChargeCurrency  callAttemptChargeCurrency
        No value
        CurrencyFactorScale
    charging_ase.callAttemptChargePulse  callAttemptChargePulse
        Byte array
        PulseUnits
    charging_ase.callAttemptChargesApplicable  callAttemptChargesApplicable
        Boolean
    charging_ase.callSetupChargeCurrency  callSetupChargeCurrency
        No value
        CurrencyFactorScale
    charging_ase.callSetupChargePulse  callSetupChargePulse
        Byte array
        PulseUnits
    charging_ase.chargeUnitTimeInterval  chargeUnitTimeInterval
        Byte array
    charging_ase.chargingControlIndicators  chargingControlIndicators
        Byte array
    charging_ase.chargingTariff  chargingTariff
        Unsigned 32-bit integer
    charging_ase.communicationChargeSequenceCurrency  communicationChargeSequenceCurrency
        Unsigned 32-bit integer
        SEQUENCE_SIZE_minCommunicationTariffNum_maxCommunicationTariffNum_OF_CommunicationChargeCurrency
    charging_ase.communicationChargeSequencePulse  communicationChargeSequencePulse
        Unsigned 32-bit integer
        SEQUENCE_SIZE_minCommunicationTariffNum_maxCommunicationTariffNum_OF_CommunicationChargePulse
    charging_ase.crga  crga
        No value
        ChargingAcknowledgementInformation
    charging_ase.crgt  crgt
        No value
        ChargingTariffInformation
    charging_ase.criticality  criticality
        Unsigned 32-bit integer
        CriticalityType
    charging_ase.currency  currency
        Unsigned 32-bit integer
    charging_ase.currencyFactor  currencyFactor
        Unsigned 32-bit integer
    charging_ase.currencyFactorScale  currencyFactorScale
        No value
    charging_ase.currencyScale  currencyScale
        Signed 32-bit integer
    charging_ase.currentTariffCurrency  currentTariffCurrency
        No value
        TariffCurrencyFormat
    charging_ase.currentTariffPulse  currentTariffPulse
        No value
        TariffPulseFormat
    charging_ase.delayUntilStart  delayUntilStart
        Boolean
    charging_ase.destinationIdentification  destinationIdentification
        No value
        ChargingReferenceIdentification
    charging_ase.extensions  extensions
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_numOfExtensions_OF_ExtensionField
    charging_ase.global  global
        Object Identifier
        OBJECT_IDENTIFIER
    charging_ase.immediateChangeOfActuallyAppliedTariff  immediateChangeOfActuallyAppliedTariff
        Boolean
    charging_ase.local  local
        Signed 32-bit integer
        INTEGER
    charging_ase.networkIdentification  networkIdentification
        Object Identifier
    charging_ase.networkOperators  networkOperators
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxNetworkOperators_OF_NetworkIdentification
    charging_ase.nextTariffCurrency  nextTariffCurrency
        No value
        TariffCurrencyFormat
    charging_ase.nextTariffPulse  nextTariffPulse
        No value
        TariffPulseFormat
    charging_ase.non-cyclicTariff  non-cyclicTariff
        Boolean
    charging_ase.oneTimeCharge  oneTimeCharge
        Boolean
    charging_ase.originationIdentification  originationIdentification
        No value
        ChargingReferenceIdentification
    charging_ase.pulseUnits  pulseUnits
        Byte array
    charging_ase.referenceID  referenceID
        Unsigned 32-bit integer
    charging_ase.start  start
        No value
        StartCharging
    charging_ase.stop  stop
        No value
        StopCharging
    charging_ase.stopIndicators  stopIndicators
        Byte array
    charging_ase.subTariffControl  subTariffControl
        Byte array
    charging_ase.subscriberCharge  subscriberCharge
        Boolean
    charging_ase.tariffControlIndicators  tariffControlIndicators
        Byte array
    charging_ase.tariffCurrency  tariffCurrency
        No value
    charging_ase.tariffDuration  tariffDuration
        Unsigned 32-bit integer
    charging_ase.tariffPulse  tariffPulse
        No value
    charging_ase.tariffSwitchCurrency  tariffSwitchCurrency
        No value
    charging_ase.tariffSwitchPulse  tariffSwitchPulse
        No value
    charging_ase.tariffSwitchoverTime  tariffSwitchoverTime
        Byte array
    charging_ase.type  type
        Unsigned 32-bit integer
        Code
    charging_ase.value  value
        No value

Check Point High Availability Protocol (cpha)

    cpha.cluster_number  Cluster Number
        Unsigned 16-bit integer
    cpha.dst_id  Destination Machine ID
        Unsigned 16-bit integer
    cpha.ethernet_addr  Ethernet Address
        6-byte Hardware (MAC) Address
    cpha.filler  Filler
        Unsigned 16-bit integer
    cpha.ha_mode  HA mode
        Unsigned 16-bit integer
    cpha.ha_time_unit  HA Time unit
        Unsigned 16-bit integer
        HA Time unit (ms)
    cpha.hash_len  Hash list length
        Signed 32-bit integer
    cpha.id_num  Number of IDs reported
        Unsigned 16-bit integer
    cpha.if_trusted  Interface Trusted
        Boolean
    cpha.ifn  Interface Number
        Unsigned 32-bit integer
    cpha.in_assume_up  Interfaces assumed up in the Inbound
        Signed 8-bit integer
    cpha.in_up  Interfaces up in the Inbound
        Signed 8-bit integer
    cpha.ip  IP Address
        IPv4 address
    cpha.machine_num  Machine Number
        Signed 16-bit integer
    cpha.magic_number  CPHAP Magic Number
        Unsigned 16-bit integer
    cpha.opcode  OpCode
        Unsigned 16-bit integer
    cpha.out_assume_up  Interfaces assumed up in the Outbound
        Signed 8-bit integer
    cpha.out_up  Interfaces up in the Outbound
        Signed 8-bit integer
    cpha.policy_id  Policy ID
        Unsigned 16-bit integer
    cpha.random_id  Random ID
        Unsigned 16-bit integer
    cpha.reported_ifs  Reported Interfaces
        Unsigned 32-bit integer
    cpha.seed  Seed
        Unsigned 32-bit integer
    cpha.slot_num  Slot Number
        Signed 16-bit integer
    cpha.src_id  Source Machine ID
        Unsigned 16-bit integer
    cpha.src_if  Source Interface
        Unsigned 16-bit integer
    cpha.status  Status
        Unsigned 32-bit integer
    cpha.version  Protocol Version
        Unsigned 16-bit integer
        CPHAP Version

Checkpoint FW-1 (fw1)

    fw1.chain  Chain Position
        String
    fw1.direction  Direction
        String
    fw1.interface  Interface
        String
    fw1.type  Type
        Unsigned 16-bit integer
    fw1.uuid  UUID
        Unsigned 32-bit integer

China Mobile Point to Point Protocol (cmpp)

    cmpp.Command_Id  Command Id
        Unsigned 32-bit integer
        Command Id of the CMPP messages
    cmpp.Dest_terminal_Id  Destination Address
        String
        MSISDN number which receive the SMS
    cmpp.LinkID  Link ID
        String
    cmpp.Msg_Content  Message Content
        String
    cmpp.Msg_Fmt  Message Format
        Unsigned 8-bit integer
    cmpp.Msg_Id  Msg_Id
        Unsigned 64-bit integer
        Message ID
    cmpp.Msg_Id.ismg_code  ISMG Code
        Unsigned 32-bit integer
        ISMG Code, bit 38 ~ 17
    cmpp.Msg_Id.sequence_id  Msg_Id sequence Id
        Unsigned 16-bit integer
        Msg_Id sequence Id, bit 16 ~ 1
    cmpp.Msg_Id.timestamp  Timestamp
        String
        Timestamp MM/DD HH:MM:SS Bit 64 ~ 39
    cmpp.Msg_Length  Message length
        Unsigned 8-bit integer
        SMS Message length, ASCII must be <= 160 bytes, other must be <= 140 bytes
    cmpp.Report.SMSC_sequence  SMSC_sequence
        Unsigned 32-bit integer
        Sequence number
    cmpp.Sequence_Id  Sequence Id
        Unsigned 32-bit integer
        Sequence Id of the CMPP messages
    cmpp.Servicd_Id  Service ID
        String
        Service ID, a mix of characters, numbers and symbol
    cmpp.TP_pId  TP pId
        Unsigned 8-bit integer
        GSM TP pId Field
    cmpp.TP_udhi  TP udhi
        Unsigned 8-bit integer
        GSM TP udhi field
    cmpp.Total_Length  Total Length
        Unsigned 32-bit integer
        Total length of the CMPP PDU.
    cmpp.Version  Version
        String
        CMPP Version
    cmpp.connect.AuthenticatorSource  Authenticator Source
        String
        Authenticator source, MD5(Source_addr + 9 zero + shared secret + timestamp)
    cmpp.connect.Source_Addr  Source Addr
        String
        Source Address, the SP_Id
    cmpp.connect.Timestamp  Timestamp
        String
        Timestamp MM/DD HH:MM:SS
    cmpp.connect_resp.AuthenticatorISMG  SIMG Authenticate result
        String
        Authenticator result, MD5(Status + AuthenticatorSource + shared secret)
    cmpp.connect_resp.Status  Connect Response Status
        Unsigned 32-bit integer
        Response Status, Value higher then 4 means other error
    cmpp.deliver.Dest_Id  Destination ID
        String
        SP Service ID or server number
    cmpp.deliver.Registered_Delivery  Deliver Report
        Boolean
        The message is a deliver report if this value = 1
    cmpp.deliver.Report  Detail Deliver Report
        No value
        The detail report
    cmpp.deliver.Report.Done_time  Done_time
        String
        Format YYMMDDHHMM
    cmpp.deliver.Report.Status  Deliver Status
        String
    cmpp.deliver.Report.Submit_time  Submit_time
        String
        Format YYMMDDHHMM
    cmpp.deliver.Src_terminal_Id  Src_terminal_Id
        String
        Source MSISDN number, if it is deliver report, this will be the CMPP_SUBMIT destination number
    cmpp.deliver.Src_terminal_type  Fake source terminal type
        Boolean
        Type of the source terminal, can be 0 (real) or 1 (fake)
    cmpp.deliver_resp.Result  Result
        Unsigned 32-bit integer
        Deliver Result
    cmpp.submit.At_time  Send time
        String
        Message send time, format following SMPP 3.3
    cmpp.submit.DestUsr_tl  Destination Address Count
        Unsigned 8-bit integer
        Number of destination address, must smaller then 100
    cmpp.submit.Dest_terminal_type  Fake Destination Terminal
        Boolean
        destination terminal type, 0 is real, 1 is fake
    cmpp.submit.FeeCode  Fee Code
        String
    cmpp.submit.FeeType  Fee Type
        String
    cmpp.submit.Fee_UserType  Charging Informations
        Unsigned 8-bit integer
        Charging Informations, if value is 3, this field will not be used
    cmpp.submit.Fee_terminal_Id  Fee Terminal ID
        String
        Fee Terminal ID, Valid only when Fee_UserType is 3
    cmpp.submit.Fee_terminal_type  Fake Fee Terminal
        Boolean
        Fee terminal type, 0 is real, 1 is fake
    cmpp.submit.Msg_level  Message Level
        Unsigned 8-bit integer
    cmpp.submit.Msg_src  Message Source SP_Id
        String
        Message source SP ID
    cmpp.submit.Pk_number  Part Number
        Unsigned 8-bit integer
        Part number of the message with the same Msg_Id, start from 1
    cmpp.submit.Pk_total  Number of Part
        Unsigned 8-bit integer
        Total number of parts of the message with the same Msg_Id, start from 1
    cmpp.submit.Registered_Delivery  Registered Delivery
        Boolean
        Registered Delivery flag
    cmpp.submit.Src_Id  Source ID
        String
        This value matches SMPP submit_sm source_addr field
    cmpp.submit.Valld_Time  Valid time
        String
        Message Valid Time, format follow SMPP 3.3
    cmpp.submit_resp.Result  Result
        Unsigned 32-bit integer
        Submit Result

Cimetrics MS/TP (cimetrics)

    cimetrics_mstp.timer  Delta Time
        Unsigned 16-bit integer
        Milliseconds
    cimetrics_mstp.value  8-bit value
        Unsigned 8-bit integer
        value

Cisco Auto-RP (auto_rp)

    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

Cisco Discovery Protocol (cdp)

    cdp.checksum  Checksum
        Unsigned 16-bit integer
    cdp.checksum_bad  Bad
        Boolean
        True: checksum doesn't match packet content; False: matches content or not checked
    cdp.checksum_good  Good
        Boolean
        True: checksum matches packet content; False: doesn't match content or not checked
    cdp.deviceid  Device ID
        String
    cdp.platform  Platform
        String
    cdp.portid  Sent through Interface
        String
    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

Cisco Group Management Protocol (cgmp)

    cgmp.count  Count
        Unsigned 8-bit integer
    cgmp.gda  Group Destination Address
        6-byte Hardware (MAC) Address
    cgmp.type  Type
        Unsigned 8-bit integer
    cgmp.usa  Unicast Source Address
        6-byte Hardware (MAC) Address
    cgmp.version  Version
        Unsigned 8-bit integer

Cisco HDLC (chdlc)

    chdlc.address  Address
        Unsigned 8-bit integer
    chdlc.protocol  Protocol
        Unsigned 16-bit integer

Cisco Hot Standby Router Protocol (hsrp)

    hsrp.adv.activegrp  Adv active groups
        Unsigned 8-bit integer
        Advertisement active group count
    hsrp.adv.passivegrp  Adv passive groups
        Unsigned 8-bit integer
        Advertisement passive group count
    hsrp.adv.reserved1  Adv reserved1
        Unsigned 8-bit integer
        Advertisement tlv length
    hsrp.adv.reserved2  Adv reserved2
        Unsigned 32-bit integer
        Advertisement tlv length
    hsrp.adv.state  Adv state
        Unsigned 8-bit integer
        Advertisement tlv length
    hsrp.adv.tlvlength  Adv length
        Unsigned 16-bit integer
        Advertisement tlv length
    hsrp.adv.tlvtype  Adv type
        Unsigned 16-bit integer
        Advertisement tlv type
    hsrp.auth_data  Authentication Data
        String
        Contains a clear-text 8 character reused password
    hsrp.group  Group
        Unsigned 8-bit integer
        This field identifies the standby group
    hsrp.hellotime  Hellotime
        Unsigned 8-bit integer
        The approximate period between the Hello messages that the router sends
    hsrp.holdtime  Holdtime
        Unsigned 8-bit integer
        Time that the current Hello message should be considered valid
    hsrp.md5_ip_address  Sender's IP Address
        IPv4 address
        IP Address of the sender interface
    hsrp.opcode  Op Code
        Unsigned 8-bit integer
        The type of message contained in this packet
    hsrp.priority  Priority
        Unsigned 8-bit integer
        Used to elect the active and standby routers. Numerically higher priority wins vote
    hsrp.reserved  Reserved
        Unsigned 8-bit integer
    hsrp.state  State
        Unsigned 8-bit integer
        The current state of the router sending the message
    hsrp.version  Version
        Unsigned 8-bit integer
        The version of the HSRP messages
    hsrp.virt_ip  Virtual IP Address
        IPv4 address
        The virtual IP address used by this group
    hsrp2._md5_algorithm  MD5 Algorithm
        Unsigned 8-bit integer
        Hash Algorithm used by this group
    hsrp2._md5_flags  MD5 Flags
        Unsigned 8-bit integer
        Undefined
    hsrp2.active_groups  Active Groups
        Unsigned 16-bit integer
        Active group number which becomes the active router myself
    hsrp2.auth_data  Authentication Data
        String
        Contains a clear-text 8 character reused password
    hsrp2.group  Group
        Unsigned 16-bit integer
        This field identifies the standby group
    hsrp2.group_state_tlv  Group State TLV
        Unsigned 8-bit integer
    hsrp2.hellotime  Hellotime
        Unsigned 32-bit integer
        The approximate period between the Hello messages that the router sends
    hsrp2.holdtime  Holdtime
        Unsigned 32-bit integer
        Time that the current Hello message should be considered valid
    hsrp2.identifier  Identifier
        6-byte Hardware (MAC) Address
        BIA value of a sender interafce
    hsrp2.interface_state_tlv  Interface State TLV
        Unsigned 8-bit integer
    hsrp2.ipversion  IP Ver.
        Unsigned 8-bit integer
        The IP protocol version used in this hsrp message
    hsrp2.md5_auth_data  MD5 Authentication Data
        Unsigned 32-bit integer
        MD5 digest string is contained.
    hsrp2.md5_auth_tlv  MD5 Authentication TLV
        Unsigned 8-bit integer
    hsrp2.md5_key_id  MD5 Key ID
        Unsigned 32-bit integer
        This field contains Key chain ID
    hsrp2.opcode  Op Code
        Unsigned 8-bit integer
        The type of message contained in this packet
    hsrp2.passive_groups  Passive Groups
        Unsigned 16-bit integer
        Standby group number which doesn't become the active router myself
    hsrp2.priority  Priority
        Unsigned 32-bit integer
        Used to elect the active and standby routers. Numerically higher priority wins vote
    hsrp2.state  State
        Unsigned 8-bit integer
        The current state of the router sending the message
    hsrp2.text_auth_tlv  Text Authentication TLV
        Unsigned 8-bit integer
    hsrp2.version  Version
        Unsigned 8-bit integer
        The version of the HSRP messages
    hsrp2.virt_ip  Virtual IP Address
        IPv4 address
        The virtual IP address used by this group
    hsrp2.virt_ip_v6  Virtual IPv6 Address
        IPv6 address
        The virtual IPv6 address used by this group

Cisco ISL (isl)

    isl.addr  Source or Destination Address
        6-byte Hardware (MAC) Address
        Source or Destination Hardware Address
    isl.bpdu  BPDU/CDP/VTP
        Boolean
        BPDU/CDP/VTP 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
    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 (Color)
    isl.trailer  Trailer
        Byte array
        Ethernet Trailer or Checksum
    isl.type  Type
        Unsigned 8-bit integer
    isl.user  User
        Unsigned 8-bit integer
        User-defined bits
    isl.user_eth  User
        Unsigned 8-bit integer
        Priority while passing through switch
    isl.vlan_id  VLAN ID
        Unsigned 16-bit integer
        Virtual LAN ID (Color)

Cisco Interior Gateway Routing Protocol (igrp)

    igrp.as  Autonomous System
        Unsigned 16-bit integer
        Autonomous System number
    igrp.update  Update Release
        Unsigned 8-bit integer
        Update Release number

Cisco NetFlow/IPFIX (cflow)

    cflow.aaa_username  AAA username
        String
    cflow.absolute_error  Absolute Error
        Single-precision floating point
    cflow.abstimeend  EndTime
        Date/Time stamp
        Uptime at end of flow
    cflow.abstimestart  StartTime
        Date/Time stamp
        Uptime at start of flow
    cflow.aggmethod  AggMethod
        Unsigned 8-bit integer
        CFlow V8 Aggregation Method
    cflow.aggversion  AggVersion
        Unsigned 8-bit integer
        CFlow V8 Aggregation Version
    cflow.appl_desc  ApplicationDesc
        NULL terminated string
        Application Desc (NBAR)
    cflow.appl_id  ApplicationID
        Unsigned 16-bit integer
        Application ID (NBAR)
    cflow.appl_name  ApplicationName
        NULL terminated string
        Application Name (NBAR)
    cflow.bgpnexthop  BGPNextHop
        IPv4 address
        BGP Router Nexthop
    cflow.bgpnexthopv6  BGPNextHop
        IPv6 address
        BGP Router Nexthop
    cflow.biflow_direction  Biflow Direction
        Unsigned 8-bit integer
    cflow.collection_time_milliseconds  Collection Time Milliseconds
        Date/Time stamp
    cflow.collector_addr  CollectorAddr
        IPv4 address
        Flow Collector Address
    cflow.collector_addr_v6  CollectorAddr
        IPv6 address
        Flow Collector Address
    cflow.collector_certificate  Collector Certificate
        Byte array
    cflow.collector_port  CollectorPort
        Unsigned 16-bit integer
        Flow Collector Port
    cflow.common_properties_id  Common Properties Id
        Unsigned 64-bit integer
    cflow.confidence_level  Confidence Level
        Single-precision floating point
    cflow.count  Count
        Unsigned 16-bit integer
        Count of PDUs
    cflow.data_datarecord_id  DataRecord (Template Id)
        Unsigned 16-bit integer
        DataRecord with corresponding to a template Id
    cflow.data_flowset_id  Data FlowSet (Template Id)
        Unsigned 16-bit integer
        Data FlowSet with corresponding to a template Id
    cflow.datarecord_length  DataRecord Length
        Unsigned 16-bit integer
        DataRecord length
    cflow.digest_hash_value  Digest Hash Value
        Unsigned 64-bit integer
    cflow.direction  Direction
        Unsigned 8-bit integer
    cflow.dot1q_customer_priority  Dot1q Customer Priority
        Unsigned 8-bit integer
    cflow.dot1q_customer_vlan_id  Dot1q Customer Vlan Id
        Unsigned 16-bit integer
    cflow.dot1q_priority  Dot1q Priority
        Unsigned 8-bit integer
    cflow.dot1q_vlan_id  Dot1q Vlan Id
        Unsigned 16-bit integer
    cflow.drop_octets  Dropped Octets
        Unsigned 32-bit integer
        Count of dropped bytes
    cflow.drop_octets64  Dropped Octets
        Unsigned 64-bit integer
        Count of dropped bytes
    cflow.drop_packets  Dropped Packets
        Unsigned 32-bit integer
        Count of dropped packets
    cflow.drop_packets64  Dropped Packets
        Unsigned 64-bit integer
        Count of dropped packets
    cflow.drop_total_octets  Dropped Total Octets
        Unsigned 32-bit integer
        Count of total dropped bytes
    cflow.drop_total_octets64  Dropped Total Octets
        Unsigned 64-bit integer
        Count of total dropped bytes
    cflow.drop_total_packets  Dropped Total Packets
        Unsigned 32-bit integer
        Count of total dropped packets
    cflow.drop_total_packets64  Dropped Total Packets
        Unsigned 64-bit integer
        Count of total dropped packets
    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.dstmac  Destination Mac Address
        6-byte Hardware (MAC) Address
    cflow.dstmask  DstMask
        Unsigned 8-bit integer
        Destination Prefix Mask
    cflow.dstmaskv6  DstMask
        Unsigned 8-bit integer
        IPv6 Destination Prefix Mask
    cflow.dstnet  DstNet
        IPv4 address
        Flow Destination Network
    cflow.dstnetv6  DstNet
        IPv6 address
        Flow Destination Network
    cflow.dstport  DstPort
        Unsigned 16-bit integer
        Flow Destination Port
    cflow.dstprefix  DstPrefix
        IPv4 address
        Flow Destination Prefix
    cflow.egress_acl_id  Egress ACL ID
        Byte array
    cflow.egress_physical_interface  Egress Physical Interface
        Unsigned 32-bit integer
    cflow.egress_vrfid  Egress VRFID
        Unsigned 32-bit integer
    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.ethernet_header_length  Ethernet Header Length
        Unsigned 8-bit integer
    cflow.ethernet_payload_length  Ethernet Payload Length
        Unsigned 16-bit integer
    cflow.ethernet_total_length  Ethernet Total Length
        Unsigned 16-bit integer
    cflow.ethernet_type  Ethernet Type
        Unsigned 16-bit integer
    cflow.export_interface  ExportInterface
        Unsigned 32-bit integer
        Export Interface
    cflow.export_protocol_version  ExportProtocolVersion
        Unsigned 8-bit integer
        Export Protocol Version
    cflow.export_sctp_stream_id  Export Sctp Stream Id
        Unsigned 16-bit integer
    cflow.exporter_addr  ExporterAddr
        IPv4 address
        Flow Exporter Address
    cflow.exporter_addr_v6  ExporterAddr
        IPv6 address
        Flow Exporter Address
    cflow.exporter_certificate  Exporter Certificate
        Byte array
    cflow.exporter_port  ExporterPort
        Unsigned 16-bit integer
        Flow Exporter Port
    cflow.exporter_protocol  ExportTransportProtocol
        Unsigned 8-bit integer
        Transport Protocol used by the Exporting Process
    cflow.exporttime  ExportTime
        Unsigned 32-bit integer
        Time when the flow has been exported
    cflow.field_count  Field Count
        Unsigned 16-bit integer
        Options Template Field Count
    cflow.firewall_event  Firewall Event
        Unsigned 8-bit integer
    cflow.flags  Export Flags
        Unsigned 8-bit integer
        CFlow Flags
    cflow.flow_active_timeout  Flow active timeout
        Unsigned 16-bit integer
    cflow.flow_class  FlowClass
        Unsigned 8-bit integer
        Flow Class
    cflow.flow_end_reason  Flow End Reason
        Unsigned 8-bit integer
    cflow.flow_exporter  FlowExporter
        Byte array
        Flow Exporter
    cflow.flow_id  Flow Id
        Unsigned 64-bit integer
    cflow.flow_inactive_timeout  Flow inactive timeout
        Unsigned 16-bit integer
    cflow.flows  Flows
        Unsigned 32-bit integer
        Flows Aggregated in PDU
    cflow.flowset_id  FlowSet Id
        Unsigned 16-bit integer
    cflow.flowset_length  FlowSet Length
        Unsigned 16-bit integer
        FlowSet length
    cflow.flowsexp  FlowsExp
        Unsigned 32-bit integer
        Flows exported
    cflow.forwarding_code  ForwdCode
        Unsigned 8-bit integer
        Forwarding Code
    cflow.forwarding_status  ForwdStat
        Unsigned 8-bit integer
        Forwarding Status
    cflow.fragment_offset  Fragment Offset
        Unsigned 16-bit integer
    cflow.fw_ext_event  Extended firewall event code
        Unsigned 16-bit integer
    cflow.hash_digest_output  Hash Digest Output
        Boolean
    cflow.hash_initialiser_value  Hash Initialiser Value
        Unsigned 64-bit integer
    cflow.hash_ippayload_offset  Hash IPPayload Offset
        Unsigned 64-bit integer
    cflow.hash_ippayload_size  Hash IPPayload Size
        Unsigned 64-bit integer
    cflow.hash_output_range_max  Hash Output Range Max
        Unsigned 64-bit integer
    cflow.hash_output_range_min  Hash Output Range Min
        Unsigned 64-bit integer
    cflow.hash_selected_range_max  Hash Selected Range Max
        Unsigned 64-bit integer
    cflow.hash_selected_range_min  Hash Selected Range Min
        Unsigned 64-bit integer
    cflow.icmp_ipv4_code  IPv4 ICMP Code
        Unsigned 8-bit integer
        IPv4 ICMP code
    cflow.icmp_ipv4_type  IPv4 ICMP Type
        Unsigned 8-bit integer
        IPv4 ICMP type
    cflow.icmp_ipv6_code  IPv6 ICMP Code
        Unsigned 8-bit integer
        IPv6 ICMP code
    cflow.icmp_ipv6_type  IPv6 ICMP Type
        Unsigned 8-bit integer
        IPv6 ICMP type
    cflow.icmp_type  ICMP Type
        Unsigned 8-bit integer
        ICMP type
    cflow.if_descr  IfDescr
        NULL terminated string
        SNMP Interface Description
    cflow.if_name  IfName
        NULL terminated string
        SNMP Interface Name
    cflow.igmp_type  IGMP Type
        Unsigned 8-bit integer
        IGMP type
    cflow.ignore_octets  Ignored Octets
        Unsigned 32-bit integer
        Count of ignored octets
    cflow.ignore_octets64  Ignored Octets
        Unsigned 64-bit integer
        Count of ignored octets
    cflow.ignore_packets  Ignored Packets
        Unsigned 32-bit integer
        Count of ignored packets
    cflow.ignore_packets64  Ignored Packets
        Unsigned 64-bit integer
        Count of ignored packets
    cflow.information_element_data_type  Information Element Data Type
        Unsigned 8-bit integer
    cflow.information_element_description  Information Element Description
        String
    cflow.information_element_id  Information Element Id
        Unsigned 16-bit integer
    cflow.information_element_name  Information Element Name
        String
    cflow.information_element_range_begin  Information Element Range Begin
        Unsigned 64-bit integer
    cflow.information_element_range_end  Information Element Range End
        Unsigned 64-bit integer
    cflow.information_element_semantics  Information Element Semantics
        Unsigned 8-bit integer
    cflow.information_element_units  Information Element Units
        Unsigned 16-bit integer
    cflow.ingress_acl_id  Ingress ACL ID
        Byte array
    cflow.ingress_physical_interface  Ingress Physical Interface
        Unsigned 32-bit integer
    cflow.ingress_vrfid  Ingress VRFID
        Unsigned 32-bit integer
    cflow.initiator_octets  Initiator Octets
        Unsigned 64-bit integer
    cflow.inputint  InputInt
        Unsigned 16-bit integer
        Flow Input Interface
    cflow.ip_dscp  DSCP
        Unsigned 8-bit integer
        IP DSCP
    cflow.ip_fragment_flags  IP Fragment Flags
        Unsigned 8-bit integer
        IP fragment flags
    cflow.ip_header_length  IP Header Length
        Unsigned 8-bit integer
        IP header length
    cflow.ip_header_words  IPHeaderLen
        Unsigned 8-bit integer
    cflow.ip_payload_length  IP Payload Length
        Unsigned 32-bit integer
        IP payload length
    cflow.ip_precedence  IP Precedence
        Unsigned 8-bit integer
        IP precedence
    cflow.ip_tos  IP TOS
        Unsigned 8-bit integer
        IP type of service
    cflow.ip_total_length  IP Total Length
        Unsigned 16-bit integer
        IP total length
    cflow.ip_ttl  IP TTL
        Unsigned 8-bit integer
        IP time to live
    cflow.ip_version  IPVersion
        Byte array
        IP Version
    cflow.ipv4_ident  IPv4Ident
        Unsigned 16-bit integer
        IPv4 Identifier
    cflow.ipv6_exthdr  IPv6 Extension Headers
        Unsigned 32-bit integer
    cflow.ipv6_next_hdr  IPv6 Next Header
        Unsigned 8-bit integer
        IPv6 next header
    cflow.ipv6_payload_length  IPv6 Payload Length
        Unsigned 16-bit integer
        IPv6 payload length
    cflow.ipv6flowlabel  ipv6FlowLabel
        Unsigned 32-bit integer
        IPv6 Flow Label
    cflow.ipv6flowlabel24  ipv6FlowLabel
        Unsigned 32-bit integer
        IPv6 Flow Label
    cflow.is_multicast  IsMulticast
        Unsigned 8-bit integer
        Is Multicast
    cflow.len  Length
        Unsigned 16-bit integer
        Length of PDUs
    cflow.length_max  MaxLength
        Unsigned 16-bit integer
        Packet Length Max
    cflow.length_min  MinLength
        Unsigned 16-bit integer
        Packet Length Min
    cflow.lower_cilimit  Lower CILimit
        Single-precision floating point
    cflow.max_export_seconds  Max Export Seconds
        Date/Time stamp
    cflow.max_flow_end_microseconds  Max Flow End Microseconds
        Byte array
    cflow.max_flow_end_milliseconds  Max Flow End Milliseconds
        Date/Time stamp
    cflow.max_flow_end_nanoseconds  Max Flow End Nanoseconds
        Byte array
    cflow.max_flow_end_seconds  Max Flow End Seconds
        Date/Time stamp
    cflow.message_md5_checksum  Message MD5 Checksum
        Byte array
    cflow.message_scope  Message Scope
        Unsigned 8-bit integer
    cflow.metro_evc_id  Metro Evc Id
        String
    cflow.metro_evc_type  Metro Evc Type
        Unsigned 8-bit integer
    cflow.min_export_seconds  Min Export Seconds
        Date/Time stamp
    cflow.min_flow_start_microseconds  Min Flow Start Microseconds
        Byte array
    cflow.min_flow_start_milliseconds  Min Flow Start Milliseconds
        Date/Time stamp
    cflow.min_flow_start_nanoseconds  Min Flow Start Nanoseconds
        Byte array
    cflow.min_flow_start_seconds  Min Flow Start Seconds
        Date/Time stamp
    cflow.mp_id  Metering Process Id
        Unsigned 32-bit integer
    cflow.mpls_label_depth  MPLS Label Stack Depth
        Unsigned 32-bit integer
        The number of labels in the MPLS label stack
    cflow.mpls_label_length  MPLS Label Stack Length
        Unsigned 32-bit integer
        The length of the MPLS label stac
    cflow.mpls_label_stack_section  Mpls Label Stack Section
        Byte array
    cflow.mpls_payload_packet_section  Mpls Payload Packet Section
        Byte array
    cflow.mpls_top_label_exp  MPLS Top Label Exp
        Unsigned 8-bit integer
        MPLS top label exp
    cflow.mpls_top_label_prefix_length  Mpls Top Label Prefix Length
        Unsigned 8-bit integer
        Mpls Top Label Prefix Length
    cflow.mpls_top_label_ttl  MPLS Top Label TTL
        Unsigned 8-bit integer
        MPLS top label time to live
    cflow.mpls_vpn_rd  MPLS VPN RD
        Byte array
        MPLS VPN Route Distinguisher
    cflow.muloctets  MulticastOctets
        Unsigned 32-bit integer
        Count of multicast octets
    cflow.mulpackets  MulticastPackets
        Unsigned 32-bit integer
        Count of multicast packets
    cflow.multicast_replication_factor  Multicast Replication Factor
        Byte array
        Multicast Replication Factor
    cflow.nat_event  Nat Event
        Unsigned 8-bit integer
    cflow.nat_originating_address_realm  Nat Originating Address Realm
        Unsigned 8-bit integer
    cflow.nexthop  NextHop
        IPv4 address
        Router nexthop
    cflow.nexthopv6  NextHop
        IPv6 address
        Router nexthop
    cflow.notsent_flows  Not Sent Flows
        Unsigned 32-bit integer
        Count of not sent flows
    cflow.notsent_flows64  Not Sent Flows
        Unsigned 64-bit integer
        Count of not sent flows
    cflow.notsent_octets  Not Sent Octets
        Unsigned 32-bit integer
        Count of not sent octets
    cflow.notsent_octets64  Not Sent Octets
        Unsigned 64-bit integer
        Count of not sent octets
    cflow.notsent_packets  Not Sent Packets
        Unsigned 32-bit integer
        Count of not sent packets
    cflow.notsent_packets64  Not Sent Packets
        Unsigned 64-bit integer
        Count of not sent packets
    cflow.observation_point_id  Observation Point Id
        Unsigned 32-bit integer
    cflow.observation_time_microseconds  Observation Time Microseconds
        Byte array
    cflow.observation_time_milliseconds  Observation Time Milliseconds
        Date/Time stamp
    cflow.observation_time_nanoseconds  Observation Time Nanoseconds
        Byte array
    cflow.observation_time_seconds  Observation Time Seconds
        Date/Time stamp
    cflow.octets  Octets
        Unsigned 32-bit integer
        Count of bytes
    cflow.octets64  Octets
        Unsigned 64-bit integer
        Count of bytes
    cflow.octets_squared  OctetsSquared
        Unsigned 64-bit integer
        Octets Squared
    cflow.octetsexp  OctetsExp
        Unsigned 32-bit integer
        Octets exported
    cflow.od_id  Observation Domain Id
        Unsigned 32-bit integer
        Identifier of an Observation Domain that is locally unique to an Exporting Process
    cflow.opaque_octets  Opaque Octets
        Byte array
    cflow.option_length  Option Length
        Unsigned 16-bit integer
        Option length
    cflow.option_map  OptionMap
        Byte array
        Option Map
    cflow.option_scope_length  Option Scope Length
        Unsigned 16-bit integer
        Option scope length
    cflow.options_flowset_id  Options FlowSet
        Unsigned 16-bit integer
    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.peer_dstas  PeerDstAS
        Unsigned 16-bit integer
        Peer Destination AS
    cflow.peer_srcas  PeerSrcAS
        Unsigned 16-bit integer
        Peer Source AS
    cflow.pie.cace.localaddr4  Local IPv4 Address
        IPv4 address
        Local IPv4 Address (caceLocalIPv4Address)
    cflow.pie.cace.localaddr6  Local IPv6 Address
        IPv6 address
        Local IPv6 Address (caceLocalIPv6Address)
    cflow.pie.cace.localcmd  Local Command
        String
        Local Command (caceLocalProcessCommand)
    cflow.pie.cace.localcmdlen  Local Command Length
        Unsigned 8-bit integer
        Local Command Length (caceLocalProcessCommand)
    cflow.pie.cace.localicmpid  Local ICMP ID
        Unsigned 16-bit integer
        The ICMP identification header field from a locally-originated ICMPv4 or ICMPv6 echo request (caceLocalICMPid)
    cflow.pie.cace.localip4id  Local IPv4 ID
        Unsigned 16-bit integer
        The IPv4 identification header field from a locally-originated packet (caceLocalIPv4id)
    cflow.pie.cace.localpid  Local Process ID
        Unsigned 32-bit integer
        Local Process ID (caceLocalProcessId)
    cflow.pie.cace.localport  Local Port
        Unsigned 16-bit integer
        Local Transport Port (caceLocalTransportPort)
    cflow.pie.cace.localuid  Local User ID
        Unsigned 32-bit integer
        Local User ID (caceLocalProcessUserId)
    cflow.pie.cace.localusername  Local User Name
        String
        Local User Name (caceLocalProcessUserName)
    cflow.pie.cace.localusernamelen  Local Username Length
        Unsigned 8-bit integer
        Local User Name Length (caceLocalProcessUserName)
    cflow.pie.cace.remoteaddr4  Remote IPv4 Address
        IPv4 address
        Remote IPv4 Address (caceRemoteIPv4Address)
    cflow.pie.cace.remoteaddr6  Remote IPv6 Address
        IPv6 address
        Remote IPv6 Address (caceRemoteIPv6Address)
    cflow.pie.cace.remoteport  Remote Port
        Unsigned 16-bit integer
        Remote Transport Port (caceRemoteTransportPort)
    cflow.port_id  Port Id
        Unsigned 32-bit integer
    cflow.post_dot1q_customer_vlan_id  Post Dot1q Customer Vlan Id
        Unsigned 16-bit integer
    cflow.post_dot1q_vlan_id  Post Dot1q Vlan Id
        Unsigned 16-bit integer
    cflow.post_dstmac  Post Destination Mac Address
        6-byte Hardware (MAC) Address
    cflow.post_ip_diff_serv_code_point  Post Ip Diff Serv Code Point
        Unsigned 8-bit integer
        Post Ip Diff Serv Code Point
    cflow.post_ip_precedence  Post Ip Precedence
        Unsigned 8-bit integer
    cflow.post_key  floKeyIndicator
        Boolean
        Flow Key Indicator
    cflow.post_mpls_top_label_exp  Post Mpls Top Label Exp
        Unsigned 8-bit integer
    cflow.post_naptdestination_transport_port  Post NAPT Destination Transport Port
        Unsigned 16-bit integer
    cflow.post_naptsource_transport_port  Post NAPT Source Transport Port
        Unsigned 16-bit integer
    cflow.post_natdestination_ipv4_address  Post NAT Destination IPv4 Address
        IPv4 address
    cflow.post_natsource_ipv4_address  Post NAT Source IPv4 Address
        IPv4 address
    cflow.post_octets  Post Octets
        Unsigned 32-bit integer
        Count of post bytes
    cflow.post_octets64  Post Octets
        Unsigned 64-bit integer
        Count of post bytes
    cflow.post_packets  Post Packets
        Unsigned 32-bit integer
        Count of post packets
    cflow.post_packets64  Post Packets
        Unsigned 64-bit integer
        Count of post packets
    cflow.post_srcmac  Post Source Mac Address
        6-byte Hardware (MAC) Address
    cflow.post_tos  Post IP ToS
        Unsigned 8-bit integer
        Post IP Type of Service
    cflow.post_total_muloctets  Post Total Multicast Octets
        Unsigned 32-bit integer
        Count of post total multicast octets
    cflow.post_total_muloctets64  Post Total Multicast Octets
        Unsigned 64-bit integer
        Count of post total multicast octets
    cflow.post_total_mulpackets  Post Total Multicast Packets
        Unsigned 32-bit integer
        Count of post total multicast packets
    cflow.post_total_mulpackets64  Post Total Multicast Packets
        Unsigned 64-bit integer
        Count of post total multicast packets
    cflow.post_total_octets  Post Total Octets
        Unsigned 32-bit integer
        Count of post total octets
    cflow.post_total_octets64  Post Total Octets
        Unsigned 64-bit integer
        Count of post total octets
    cflow.post_total_packets  Post Total Packets
        Unsigned 32-bit integer
        Count of post total packets
    cflow.post_total_packets64  Post Total Packets
        Unsigned 64-bit integer
        Count of post total packets
    cflow.post_vlanid  Post Vlan Id
        Unsigned 16-bit integer
    cflow.private_enterprise_number  Private Enterprise Number
        Unsigned 32-bit integer
    cflow.protocol  Protocol
        Unsigned 8-bit integer
        IP Protocol
    cflow.pseudo_wire_control_word  Pseudo Wire Control Word
        Unsigned 32-bit integer
    cflow.pseudo_wire_id  Pseudo Wire Id
        Unsigned 32-bit integer
    cflow.pseudo_wire_type  Pseudo Wire Type
        Unsigned 16-bit integer
    cflow.relative_error  Relative Error
        Single-precision floating point
    cflow.responder_octets  Responder Octets
        Unsigned 64-bit integer
    cflow.routersc  Router Shortcut
        IPv4 address
        Router shortcut by switch
    cflow.sampler_mode  SamplerMode
        Unsigned 8-bit integer
        Flow Sampler Mode
    cflow.sampler_name  SamplerName
        NULL terminated string
        Sampler Name
    cflow.sampler_random_interval  SamplerRandomInterval
        Unsigned 32-bit integer
        Flow Sampler Random Interval
    cflow.samplerate  SampleRate
        Unsigned 16-bit integer
        Sample Frequency of exporter
    cflow.sampling_algorithm  Sampling algorithm
        Unsigned 8-bit integer
    cflow.sampling_interval  Sampling interval
        Unsigned 32-bit integer
    cflow.sampling_packet_interval  Sampling Packet Interval
        Unsigned 32-bit integer
    cflow.sampling_packet_space  Sampling Packet Space
        Unsigned 32-bit integer
    cflow.sampling_population  Sampling Population
        Unsigned 32-bit integer
    cflow.sampling_probability  Sampling Probability
        Single-precision floating point
    cflow.sampling_size  Sampling Size
        Unsigned 32-bit integer
    cflow.sampling_time_interval  Sampling Time Interval
        Unsigned 32-bit integer
    cflow.sampling_time_space  Sampling Time Space
        Unsigned 32-bit integer
    cflow.samplingmode  SamplingMode
        Unsigned 16-bit integer
        Sampling Mode of exporter
    cflow.scope  Scope Unknown
        Byte array
        Option Scope Unknown
    cflow.scope_cache  ScopeCache
        Byte array
        Option Scope Cache
    cflow.scope_field_count  Scope Field Count
        Unsigned 16-bit integer
        Options Template Scope Field Count
    cflow.scope_field_length  Scope Field Length
        Unsigned 16-bit integer
        Scope field length
    cflow.scope_field_type  Scope Type
        Unsigned 16-bit integer
        Scope field type
    cflow.scope_interface  ScopeInterface
        Unsigned 32-bit integer
        Option Scope Interface
    cflow.scope_linecard  ScopeLinecard
        Byte array
        Option Scope Linecard
    cflow.scope_system  ScopeSystem
        IPv4 address
        Option Scope System
    cflow.scope_template  ScopeTemplate
        Byte array
        Option Scope Template
    cflow.section_header  SectionHeader
        Byte array
        Header of Packet
    cflow.section_payload  SectionPayload
        Byte array
        Payload of Packet
    cflow.selection_sequence_id  Selection Sequence Id
        Unsigned 64-bit integer
    cflow.selector_algorithm  Selector Algorithm
        Unsigned 16-bit integer
    cflow.selector_id  Selector Id
        Unsigned 16-bit integer
    cflow.selector_id_total_pkts_observed  Selector Id Total Pkts Observed
        Unsigned 64-bit integer
    cflow.selector_id_total_pkts_selected  Selector Id Total Pkts Selected
        Unsigned 64-bit integer
    cflow.selector_name  Selector Name
        String
    cflow.sequence  FlowSequence
        Unsigned 32-bit integer
        Sequence number of flows seen
    cflow.session_scope  Session Scope
        Unsigned 8-bit integer
    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.srcmac  Source Mac Address
        6-byte Hardware (MAC) Address
    cflow.srcmask  SrcMask
        Unsigned 8-bit integer
        Source Prefix Mask
    cflow.srcmaskv6  SrcMask
        Unsigned 8-bit integer
        IPv6 Source Prefix Mask
    cflow.srcnet  SrcNet
        IPv4 address
        Flow Source Network
    cflow.srcnetv6  SrcNet
        IPv6 address
        Flow Source Network
    cflow.srcport  SrcPort
        Unsigned 16-bit integer
        Flow Source Port
    cflow.srcprefix  SrcPrefix
        IPv4 address
        Flow Source Prefix
    cflow.sysuptime  SysUptime
        Unsigned 32-bit integer
        Time since router booted (in milliseconds)
    cflow.tcp_header_length  TCP Header Length
        Unsigned 8-bit integer
        TCP header length
    cflow.tcp_option_map  TCP OptionMap
        Byte array
        TCP Option Map
    cflow.tcp_seq_num  TCP Sequence Number
        Unsigned 32-bit integer
    cflow.tcp_urg_ptr  TCP Urgent Pointer
        Unsigned 32-bit integer
    cflow.tcp_window_scale  Tcp Window Scale
        Unsigned 16-bit integer
    cflow.tcp_windows_size  TCP Windows Size
        Unsigned 16-bit integer
        TCP Windows size
    cflow.tcpflags  TCP Flags
        Unsigned 8-bit integer
    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_pen  PEN
        Unsigned 32-bit integer
        Private Enterprise Number
    cflow.template_field_type  Type
        Unsigned 16-bit integer
        Template field type
    cflow.template_flowset_id  Template FlowSet
        Unsigned 16-bit integer
    cflow.template_id  Template Id
        Unsigned 16-bit integer
    cflow.timedelta  Duration
        Time duration
        Duration of flow sample (end - start)
    cflow.timeend  EndTime
        Time duration
        Uptime at end of flow
    cflow.timestamp  Timestamp
        Date/Time stamp
        Current seconds since epoch
    cflow.timestart  StartTime
        Time duration
        Uptime at start of flow
    cflow.toplabeladdr  TopLabelAddr
        IPv4 address
        Top MPLS label PE address
    cflow.toplabeltype  TopLabelType
        Unsigned 8-bit integer
        Top MPLS label Type
    cflow.tos  IP ToS
        Unsigned 8-bit integer
        IP Type of Service
    cflow.total_tcp_ack  Total TCP ack
        Unsigned 64-bit integer
        Count of total TCP ack
    cflow.total_tcp_fin  Total TCP fin
        Unsigned 64-bit integer
        Count of total TCP fin
    cflow.total_tcp_psh  Total TCP psh
        Unsigned 64-bit integer
        Count of total TCP psh
    cflow.total_tcp_rst  Total TCP rst
        Unsigned 64-bit integer
        Count of total TCP rst
    cflow.total_tcp_syn  Total TCP syn
        Unsigned 64-bit integer
        Count of total TCP syn
    cflow.total_tcp_urg  Total TCP urg
        Unsigned 64-bit integer
        Count of total TCP urg
    cflow.ttl_max  MaxTTL
        Unsigned 8-bit integer
        TTL maximum
    cflow.ttl_min  MinTTL
        Unsigned 8-bit integer
        TTL minimum
    cflow.udp_length  UDP Length
        Unsigned 16-bit integer
        UDP length
    cflow.unix_nsecs  CurrentNSecs
        Unsigned 32-bit integer
        Residual nanoseconds since epoch
    cflow.unix_secs  CurrentSecs
        Unsigned 32-bit integer
        Current seconds since epoch
    cflow.upper_cilimit  Upper CILimit
        Single-precision floating point
    cflow.version  Version
        Unsigned 16-bit integer
        NetFlow Version
    cflow.vlanid  Vlan Id
        Unsigned 16-bit integer
    cflow.vrfname  VRFname
        String
    cflow.wlan_channel_id  Wireless LAN Channel Id
        Unsigned 8-bit integer
    cflow.wlan_ssid  Wireless LAN SSId
        String

Cisco SLARP (slarp)

    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

Cisco Session Management (sm)

    sm.bearer  Bearer ID
        Unsigned 16-bit integer
    sm.channel  Channel ID
        Unsigned 16-bit integer
    sm.context  Context
        Unsigned 32-bit integer
        Context(guesswork!)
    sm.eisup_message_id  Message id
        Unsigned 8-bit integer
        Message id(guesswork!)
    sm.ip_addr  IPv4 address
        IPv4 address
    sm.len  Length
        Unsigned 16-bit integer
    sm.msg_type  Message Type
        Unsigned 16-bit integer
    sm.msgid  Message ID
        Unsigned 16-bit integer
    sm.protocol  Protocol Type
        Unsigned 16-bit integer
    sm.sm_msg_type  SM Message Type
        Unsigned 32-bit integer
    sm.tag  Tag
        Unsigned 16-bit integer
        Tag(guesswork!)

Cisco Wireless IDS Captures (cwids)

    cwids.caplen  Capture length
        Unsigned 16-bit integer
        Captured bytes in record
    cwids.channel  Channel
        Unsigned 8-bit integer
        Channel for this capture
    cwids.reallen  Original length
        Unsigned 16-bit integer
        Original num bytes in frame
    cwids.unknown1  Unknown1
        Byte array
        1st Unknown block - timestamp?
    cwids.unknown2  Unknown2
        Byte array
        2nd Unknown block
    cwids.unknown3  Unknown3
        Byte array
        3rd Unknown block
    cwids.version  Capture Version
        Unsigned 16-bit integer
        Version or format of record

Cisco Wireless LAN Context Control Protocol (wlccp)

    wlccp.80211_apsd_flag  APSD flag
        Unsigned 16-bit integer
        APSD Flag
    wlccp.80211_capabilities  802.11 Capabilities Flags
        Unsigned 16-bit integer
    wlccp.80211_cf_poll_req_flag  CF Poll Request flag
        Unsigned 16-bit integer
        CF Poll Request Flag
    wlccp.80211_cf_pollable_flag  CF Pollable flag
        Unsigned 16-bit integer
        CF Pollable Flag
    wlccp.80211_chan_agility_flag  Channel Agility flag
        Unsigned 16-bit integer
        Channel Agility Flag
    wlccp.80211_ess_flag  ESS flag
        Unsigned 16-bit integer
        Set on by APs in Beacon or Probe Response
    wlccp.80211_ibss_flag  IBSS flag
        Unsigned 16-bit integer
        Set on by STAs in Beacon or Probe Response
    wlccp.80211_pbcc_flag  PBCC flag
        Unsigned 16-bit integer
        PBCC Flag
    wlccp.80211_qos_flag  QOS flag
        Unsigned 16-bit integer
        QOS Flag
    wlccp.80211_reserved  Reserved
        Unsigned 16-bit integer
    wlccp.80211_short_preamble_flag  Short Preamble flag
        Unsigned 16-bit integer
        Short Preamble Flag
    wlccp.80211_short_time_slot_flag  Short Time Slot flag
        Unsigned 16-bit integer
        Short Time Slot Flag
    wlccp.80211_spectrum_mgmt_flag  Spectrum Management flag
        Unsigned 16-bit integer
        Spectrum Management Flag
    wlccp.aaa_auth_type  AAA Authentication Type
        Unsigned 8-bit integer
    wlccp.aaa_keymgmt_type  AAA Key Management Type
        Unsigned 8-bit integer
    wlccp.aaa_msg_type  AAA Message Type
        Unsigned 8-bit integer
    wlccp.ack_required_flag  Ack Required flag
        Unsigned 16-bit integer
        Set on to require an acknowledgement
    wlccp.age  Age
        Unsigned 32-bit integer
        Time since AP became a WDS master
    wlccp.apnodeid  AP Node ID
        No value
    wlccp.apnodeidaddress  AP Node Address
        6-byte Hardware (MAC) Address
    wlccp.apnodetype  AP Node Type
        Unsigned 16-bit integer
    wlccp.apregstatus  Registration Status
        Unsigned 8-bit integer
        AP Registration Status
    wlccp.auth_type  Authentication Type
        Unsigned 8-bit integer
    wlccp.base_message_type  Base message type
        Unsigned 8-bit integer
    wlccp.beacon_interval  Beacon Interval
        Unsigned 16-bit integer
    wlccp.bssid  BSS ID
        6-byte Hardware (MAC) Address
        Basic Service Set ID
    wlccp.cca_busy  CCA Busy
        Unsigned 8-bit integer
    wlccp.channel  Channel
        Unsigned 8-bit integer
    wlccp.cisco_acctg_msg  Cisco Accounting Message
        Byte array
    wlccp.client_mac  Client MAC
        6-byte Hardware (MAC) Address
    wlccp.dest_node_id  Destination node ID
        6-byte Hardware (MAC) Address
    wlccp.dest_node_type  Destination node type
        Unsigned 16-bit integer
    wlccp.destination_node_type  Destination node type
        Unsigned 16-bit integer
        Node type of the hop destination
    wlccp.dsss_dlyd_block_ack_flag  Delayed Block Ack Flag
        Unsigned 16-bit integer
    wlccp.dsss_imm_block_ack_flag  Immediate Block Ack Flag
        Unsigned 16-bit integer
    wlccp.dsss_ofdm_flag  DSSS-OFDM Flag
        Unsigned 16-bit integer
    wlccp.dstmac  Dst MAC
        6-byte Hardware (MAC) Address
        Destination MAC address
    wlccp.duration  Duration
        Unsigned 16-bit integer
    wlccp.eap_msg  EAP Message
        Byte array
    wlccp.eap_pkt_length  EAP Packet Length
        Unsigned 16-bit integer
        EAPOL Type
    wlccp.eapol_msg  EAPOL Message
        No value
    wlccp.eapol_type  EAPOL Type
        Unsigned 8-bit integer
    wlccp.eapol_version  EAPOL Version
        Unsigned 8-bit integer
    wlccp.element_count  Element Count
        Unsigned 8-bit integer
    wlccp.flags  Flags
        Unsigned 16-bit integer
    wlccp.framereport_elements  Frame Report Elements
        No value
    wlccp.hops  Hops
        Unsigned 8-bit integer
        Number of WLCCP hops
    wlccp.hopwise_routing_flag  Hopwise-routing flag
        Unsigned 16-bit integer
        On to force intermediate access points to process the message also
    wlccp.hostname  Hostname
        String
        Hostname of device
    wlccp.inbound_flag  Inbound flag
        Unsigned 16-bit integer
        Message is inbound to the top of the topology tree
    wlccp.interval  Interval
        Unsigned 16-bit integer
    wlccp.ipv4_address  IPv4 Address
        IPv4 address
        IPv4 address
    wlccp.key_mgmt_type  Key Management type
        Unsigned 8-bit integer
    wlccp.key_seq_count  Key Sequence Count
        Unsigned 32-bit integer
    wlccp.length  Length
        Unsigned 16-bit integer
        Length of WLCCP payload (bytes)
    wlccp.mfp_capability  MFP Capability
        Unsigned 16-bit integer
    wlccp.mfp_config  MFP Config
        Unsigned 16-bit integer
    wlccp.mfp_flags  MFP Flags
        Unsigned 16-bit integer
    wlccp.mic_flag  MIC flag
        Unsigned 16-bit integer
        On in a message that must be authenticated and has an authentication TLV
    wlccp.mic_length  MIC Length
        Unsigned 16-bit integer
    wlccp.mic_msg_seq_count  MIC Message Sequence Count
        Unsigned 64-bit integer
    wlccp.mic_value  MIC Value
        Byte array
    wlccp.mode  Mode
        Unsigned 8-bit integer
    wlccp.msg_id  Message ID
        Unsigned 16-bit integer
        Sequence number used to match request/reply pairs
    wlccp.nm_capability  NM Capability
        Unsigned 8-bit integer
    wlccp.nm_version  NM Version
        Unsigned 8-bit integer
    wlccp.nmconfig  NM Config
        Unsigned 8-bit integer
    wlccp.nonce_value  Nonce Value
        Byte array
    wlccp.numframes  Number of frames
        Unsigned 8-bit integer
        Number of Frames
    wlccp.originator  Originator
        6-byte Hardware (MAC) Address
        Originating device's MAC address
    wlccp.originator_node_type  Originator node type
        Unsigned 16-bit integer
        Originating device's node type
    wlccp.outbound_flag  Outbound flag
        Unsigned 16-bit integer
        Message is outbound from the top of the topology tree
    wlccp.parent_ap_mac  Parent AP MAC
        6-byte Hardware (MAC) Address
    wlccp.parenttsf  Parent TSF
        Unsigned 32-bit integer
    wlccp.path_init_reserved  Reserved
        Unsigned 8-bit integer
    wlccp.path_length  Path Length
        Unsigned 8-bit integer
    wlccp.period  Period
        Unsigned 8-bit integer
        Interval between announcements (seconds)
    wlccp.phy_type  PHY Type
        Unsigned 8-bit integer
    wlccp.priority  WDS priority
        Unsigned 8-bit integer
        WDS priority of this access point
    wlccp.radius_username  RADIUS Username
        String
    wlccp.refresh_request_id  Refresh Request ID
        Unsigned 32-bit integer
    wlccp.reg_lifetime  Reg. LifeTime
        Unsigned 8-bit integer
    wlccp.relay_flag  Relay flag
        Unsigned 16-bit integer
        Signifies that this header is immediately followed by a relay node field
    wlccp.relay_node_id  Relay node ID
        6-byte Hardware (MAC) Address
        Node which relayed this message
    wlccp.relay_node_type  Relay node type
        Unsigned 16-bit integer
        Type of node which relayed this message
    wlccp.requ_node_type  Requestor node type
        Unsigned 16-bit integer
        Requesting device's node type
    wlccp.request_reply_flag  Request Reply flag
        Unsigned 8-bit integer
        Set on to request a reply
    wlccp.requestor  Requestor
        6-byte Hardware (MAC) Address
        Requestor device's MAC address
    wlccp.responder  Responder
        6-byte Hardware (MAC) Address
        Responding device's MAC address
    wlccp.responder_node_type  Responder node type
        Unsigned 16-bit integer
        Responding device's node type
    wlccp.response_request_flag  Response request flag
        Unsigned 16-bit integer
        Set on to request a reply
    wlccp.retry_flag  Retry flag
        Unsigned 16-bit integer
        Set on for retransmissions
    wlccp.rm_flags  RM Flags
        Unsigned 8-bit integer
    wlccp.root_cm_flag  Root context manager flag
        Unsigned 16-bit integer
        Set to on to send message to the root context manager of the topology tree
    wlccp.rpi_denisty  RPI Density
        Byte array
    wlccp.rss  RSS
        Signed 8-bit integer
        Received Signal Strength
    wlccp.sap  SAP
        Unsigned 8-bit integer
        Service Access Point
    wlccp.sap_id  SAP ID
        Unsigned 8-bit integer
        Service Access Point ID
    wlccp.sap_version  SAP Version
        Unsigned 8-bit integer
        Service Access Point Version
    wlccp.scan_mode  Scan Mode
        Unsigned 8-bit integer
    wlccp.scm_active_flag  Active flag
        Unsigned 16-bit integer
        Set to on in advertisements from the active SCM
    wlccp.scm_advperiod  Advertisement Period
        Unsigned 8-bit integer
        Average number of seconds between SCM advertisements
    wlccp.scm_attach_count  Attach Count
        Unsigned 8-bit integer
        Attach count of the hop source
    wlccp.scm_bridge_disable_flag  Bridge disable flag
        Unsigned 8-bit integer
        Set to on to indicate that secondary briding is disabled
    wlccp.scm_bridge_priority  Bridge priority
        Unsigned 8-bit integer
        Used to negotiate the designated bridge on a non-STP secondary Ethernet LAN
    wlccp.scm_bridge_priority_flags  Bridge Priority flags
        Unsigned 8-bit integer
    wlccp.scm_election_group  SCM Election Group
        Unsigned 8-bit integer
    wlccp.scm_flags  SCM flags
        Unsigned 16-bit integer
        SCM Flags
    wlccp.scm_hop_address  Hop Address
        6-byte Hardware (MAC) Address
        Source 802 Port Address
    wlccp.scm_hop_count  Hop Count
        Unsigned 8-bit integer
        Number of wireless hops on the path to SCM
    wlccp.scm_instance_age  Instance Age
        Unsigned 32-bit integer
        Instance age of the SCM in seconds
    wlccp.scm_layer2update_flag  Layer2 Update flag
        Unsigned 16-bit integer
        Set to on if WLCCP Layer 2 path updates are enabled
    wlccp.scm_node_id  SCM Node ID
        6-byte Hardware (MAC) Address
        Node ID of the SCM
    wlccp.scm_path_cost  Path cost
        Unsigned 16-bit integer
        Sum of port costs on the path to the SCM
    wlccp.scm_preferred_flag  Preferred flag
        Unsigned 8-bit integer
        Set to off if the SCM is the preferred SCM
    wlccp.scm_priority  SCM Priority
        Unsigned 8-bit integer
    wlccp.scm_priority_flags  SCM Priority flags
        Unsigned 8-bit integer
    wlccp.scm_unattached_flag  Unattached flag
        Unsigned 16-bit integer
        Set to on in advertisements from an unattached node
    wlccp.scm_unknown_short  Unknown Short
        Unsigned 16-bit integer
        SCM Unknown Short Value
    wlccp.scm_unscheduled_flag  Unscheduled flag
        Unsigned 16-bit integer
        Set to on in unscheduled advertisement messages
    wlccp.scmattach_state  SCM Attach State
        Unsigned 8-bit integer
    wlccp.scmstate_change  SCM State Change
        Unsigned 8-bit integer
    wlccp.scmstate_change_reason  SCM State Change Reason
        Unsigned 8-bit integer
    wlccp.session_timeout  Session Timeout
        Unsigned 32-bit integer
    wlccp.source_node_id  Source node ID
        6-byte Hardware (MAC) Address
    wlccp.source_node_type  Source node type
        Unsigned 16-bit integer
    wlccp.srcidx  Source Index
        Unsigned 8-bit integer
    wlccp.srcmac  Src MAC
        6-byte Hardware (MAC) Address
        Source MAC address
    wlccp.station_mac  Station MAC
        6-byte Hardware (MAC) Address
    wlccp.station_type  Station Type
        Unsigned 8-bit integer
    wlccp.status  Status
        Unsigned 8-bit integer
    wlccp.subtype  Subtype
        Unsigned 8-bit integer
        Message Subtype
    wlccp.supp_node_id  Supporting node ID
        6-byte Hardware (MAC) Address
    wlccp.supp_node_type  Destination node type
        Unsigned 16-bit integer
    wlccp.targettsf  Target TSF
        Unsigned 64-bit integer
    wlccp.time_elapsed  Elapsed Time
        Unsigned 16-bit integer
    wlccp.timestamp  Timestamp
        Unsigned 64-bit integer
        Registration Timestamp
    wlccp.tlv  WLCCP TLV
        No value
    wlccp.tlv80211  802.11 TLV Value
        Byte array
    wlccp.tlv_container_flag  TLV Container Flag
        Unsigned 16-bit integer
        Set on if the TLV is a container
    wlccp.tlv_encrypted_flag  TLV Encrypted Flag
        Unsigned 16-bit integer
        Set on if the TLV is encrypted
    wlccp.tlv_flag  TLV flag
        Unsigned 16-bit integer
        Set to indicate that optional TLVs follow the fixed fields
    wlccp.tlv_flags  TLV Flags
        Unsigned 16-bit integer
        TLV Flags, Group and Type
    wlccp.tlv_length  TLV Length
        Unsigned 16-bit integer
    wlccp.tlv_request_flag  TLV Request Flag
        Unsigned 16-bit integer
        Set on if the TLV is a request
    wlccp.tlv_reserved_bit  Reserved bits
        Unsigned 16-bit integer
        Reserved
    wlccp.tlv_unknown_value  Unknown TLV Contents
        Byte array
    wlccp.token  Token
        Unsigned 8-bit integer
    wlccp.token2  2 Byte Token
        Unsigned 16-bit integer
    wlccp.type  Message Type
        Unsigned 8-bit integer
    wlccp.version  Version
        Unsigned 8-bit integer
        Protocol ID/Version
    wlccp.wds_reason  Reason Code
        Unsigned 8-bit integer
    wlccp.wids_msg_type  WIDS Message Type
        Unsigned 8-bit integer
    wlccp.wlccp_null_tlv  NULL TLV
        Byte array
    wlccp.wlccp_tlv_group  TLV Group
        Unsigned 16-bit integer
        TLV Group ID
    wlccp.wlccp_tlv_type  TLV Type
        Unsigned 16-bit integer
        TLV Type ID

Clearcase NFS (clearcase)

    clearcase.procedure_v3  V3 Procedure
        Unsigned 32-bit integer

Cluster TDB (ctdb)

    ctdb.callid  Call Id
        Unsigned 32-bit integer
        Call ID
    ctdb.clientid  ClientId
        Unsigned 32-bit integer
    ctdb.ctrl_flags  CTRL Flags
        Unsigned 32-bit integer
    ctdb.ctrl_opcode  CTRL Opcode
        Unsigned 32-bit integer
    ctdb.data  Data
        Byte array
    ctdb.datalen  Data Length
        Unsigned 32-bit integer
    ctdb.dbid  DB Id
        Unsigned 32-bit integer
        Database ID
    ctdb.dmaster  Dmaster
        Unsigned 32-bit integer
    ctdb.dst  Destination
        Unsigned 32-bit integer
    ctdb.error  Error
        Byte array
    ctdb.errorlen  Error Length
        Unsigned 32-bit integer
    ctdb.generation  Generation
        Unsigned 32-bit integer
    ctdb.hopcount  Hopcount
        Unsigned 32-bit integer
    ctdb.id  Id
        Unsigned 32-bit integer
        Transaction ID
    ctdb.immediate  Immediate
        Boolean
        Force migration of DMASTER?
    ctdb.key  Key
        Byte array
    ctdb.keyhash  KeyHash
        Unsigned 32-bit integer
    ctdb.keylen  Key Length
        Unsigned 32-bit integer
    ctdb.len  Length
        Unsigned 32-bit integer
        Size of CTDB PDU
    ctdb.magic  Magic
        Unsigned 32-bit integer
    ctdb.node_flags  Node Flags
        Unsigned 32-bit integer
    ctdb.node_ip  Node IP
        IPv4 address
    ctdb.num_nodes  Num Nodes
        Unsigned 32-bit integer
    ctdb.opcode  Opcode
        Unsigned 32-bit integer
        CTDB command opcode
    ctdb.pid  PID
        Unsigned 32-bit integer
    ctdb.process_exists  Process Exists
        Boolean
    ctdb.recmaster  Recovery Master
        Unsigned 32-bit integer
    ctdb.recmode  Recovery Mode
        Unsigned 32-bit integer
    ctdb.request_in  Request In
        Frame number
    ctdb.response_in  Response In
        Frame number
    ctdb.rsn  RSN
        Unsigned 64-bit integer
    ctdb.src  Source
        Unsigned 32-bit integer
    ctdb.srvid  SrvId
        Unsigned 64-bit integer
    ctdb.status  Status
        Unsigned 32-bit integer
    ctdb.time  Time since request
        Time duration
    ctdb.version  Version
        Unsigned 32-bit integer
    ctdb.vnn  VNN
        Unsigned 32-bit integer

CoSine IPNOS L2 debug output (cosine)

    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

Common Image Generator Interface (cigi)

    cigi.3_2_los_ext_response  Line of Sight Extended Response
        NULL terminated string
        Line of Sight Extended Response Packet
    cigi.3_2_los_ext_response.alpha  Alpha
        Unsigned 8-bit integer
        Indicates the alpha component of the surface at the point of intersection
    cigi.3_2_los_ext_response.alt_zoff  Altitude (m)/Z Offset(m)
        Double-precision floating point
        Indicates the geodetic altitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's Z axis
    cigi.3_2_los_ext_response.blue  Blue
        Unsigned 8-bit integer
        Indicates the blue color component of the surface at the point of intersection
    cigi.3_2_los_ext_response.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates the entity with which a LOS test vector or segment intersects
    cigi.3_2_los_ext_response.entity_id_valid  Entity ID Valid
        Boolean
        Indicates whether the LOS test vector or segment intersects with an entity
    cigi.3_2_los_ext_response.green  Green
        Unsigned 8-bit integer
        Indicates the green color component of the surface at the point of intersection
    cigi.3_2_los_ext_response.host_frame_number_lsn  Host Frame Number LSN
        Unsigned 8-bit integer
        Least significant nibble of the host frame number parameter of the last IG Control packet received before the HAT or HOT is calculated
    cigi.3_2_los_ext_response.lat_xoff  Latitude (degrees)/X Offset (m)
        Double-precision floating point
        Indicates the geodetic latitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's X axis
    cigi.3_2_los_ext_response.lon_yoff  Longitude (degrees)/Y Offset (m)
        Double-precision floating point
        Indicates the geodetic longitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's Y axis
    cigi.3_2_los_ext_response.los_id  LOS ID
        Unsigned 16-bit integer
        Identifies the LOS response
    cigi.3_2_los_ext_response.material_code  Material Code
        Unsigned 32-bit integer
        Indicates the material code of the surface intersected by the LOS test segment of vector
    cigi.3_2_los_ext_response.normal_vector_azimuth  Normal Vector Azimuth (degrees)
        Single-precision floating point
        Indicates the azimuth of a unit vector normal to the surface intersected by the LOS test segment or vector
    cigi.3_2_los_ext_response.normal_vector_elevation  Normal Vector Elevation (degrees)
        Single-precision floating point
        Indicates the elevation of a unit vector normal to the surface intersected by the LOS test segment or vector
    cigi.3_2_los_ext_response.range  Range (m)
        Double-precision floating point
        Indicates the distance along the LOS test segment or vector from the source point to the point of intersection with an object
    cigi.3_2_los_ext_response.range_valid  Range Valid
        Boolean
        Indicates whether the Range parameter is valid
    cigi.3_2_los_ext_response.red  Red
        Unsigned 8-bit integer
        Indicates the red color component of the surface at the point of intersection
    cigi.3_2_los_ext_response.response_count  Response Count
        Unsigned 8-bit integer
        Indicates the total number of Line of Sight Extended Response packets the IG will return for the corresponding request
    cigi.3_2_los_ext_response.valid  Valid
        Boolean
        Indicates whether this packet contains valid data
    cigi.3_2_los_ext_response.visible  Visible
        Boolean
        Indicates whether the destination point is visible from the source point
    cigi.aerosol_concentration_response  Aerosol Concentration Response
        NULL terminated string
        Aerosol Concentration Response Packet
    cigi.aerosol_concentration_response.aerosol_concentration  Aerosol Concentration (g/m^3)
        Single-precision floating point
        Identifies the concentration of airborne particles
    cigi.aerosol_concentration_response.layer_id  Layer ID
        Unsigned 8-bit integer
        Identifies the weather layer whose aerosol concentration is being described
    cigi.aerosol_concentration_response.request_id  Request ID
        Unsigned 8-bit integer
        Identifies the environmental conditions request to which this response packet corresponds
    cigi.animation_stop_notification  Animation Stop Notification
        NULL terminated string
        Animation Stop Notification Packet
    cigi.animation_stop_notification.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates the entity ID of the animation that has stopped
    cigi.art_part_control  Articulated Parts Control
        NULL terminated string
        Articulated Parts Control Packet
    cigi.art_part_control.entity_id  Entity ID
        Unsigned 16-bit integer
        Identifies the entity to which this data packet will be applied
    cigi.art_part_control.part_enable  Articulated Part Enable
        Boolean
        Determines whether the articulated part submodel should be enabled or disabled within the scene graph
    cigi.art_part_control.part_id  Articulated Part ID
        Unsigned 8-bit integer
        Identifies which articulated part is controlled with this data packet
    cigi.art_part_control.part_state  Articulated Part State
        Boolean
        Indicates whether an articulated part is to be shown in the display
    cigi.art_part_control.pitch  Pitch (degrees)
        Single-precision floating point
        Specifies the pitch of this part with respect to the submodel coordinate system
    cigi.art_part_control.pitch_enable  Pitch Enable
        Boolean
        Identifies whether the articulated part pitch enable in this data packet is manipulated from the host
    cigi.art_part_control.roll  Roll (degrees)
        Single-precision floating point
        Specifies the roll of this part with respect to the submodel coordinate system
    cigi.art_part_control.roll_enable  Roll Enable
        Boolean
        Identifies whether the articulated part roll enable in this data packet is manipulated from the host
    cigi.art_part_control.x_offset  X Offset (m)
        Single-precision floating point
        Identifies the distance along the X axis by which the articulated part should be moved
    cigi.art_part_control.xoff  X Offset (m)
        Single-precision floating point
        Specifies the distance of the articulated part along its X axis
    cigi.art_part_control.xoff_enable  X Offset Enable
        Boolean
        Identifies whether the articulated part x offset in this data packet is manipulated from the host
    cigi.art_part_control.y_offset  Y Offset (m)
        Single-precision floating point
        Identifies the distance along the Y axis by which the articulated part should be moved
    cigi.art_part_control.yaw  Yaw (degrees)
        Single-precision floating point
        Specifies the yaw of this part with respect to the submodel coordinate system
    cigi.art_part_control.yaw_enable  Yaw Enable
        Unsigned 8-bit integer
        Identifies whether the articulated part yaw enable in this data packet is manipulated from the host
    cigi.art_part_control.yoff  Y Offset (m)
        Single-precision floating point
        Specifies the distance of the articulated part along its Y axis
    cigi.art_part_control.yoff_enable  Y Offset Enable
        Boolean
        Identifies whether the articulated part y offset in this data packet is manipulated from the host
    cigi.art_part_control.z_offset  Z Offset (m)
        Single-precision floating point
        Identifies the distance along the Z axis by which the articulated part should be moved
    cigi.art_part_control.zoff  Z Offset (m)
        Single-precision floating point
        Specifies the distance of the articulated part along its Z axis
    cigi.art_part_control.zoff_enable  Z Offset Enable
        Boolean
        Identifies whether the articulated part z offset in this data packet is manipulated from the host
    cigi.atmosphere_control  Atmosphere Control
        NULL terminated string
        Atmosphere Control Packet
    cigi.atmosphere_control.air_temp  Global Air Temperature (degrees C)
        Single-precision floating point
        Specifies the global air temperature of the environment
    cigi.atmosphere_control.atmospheric_model_enable  Atmospheric Model Enable
        Boolean
        Specifies whether the IG should use an atmospheric model to determine spectral radiances for sensor applications
    cigi.atmosphere_control.barometric_pressure  Global Barometric Pressure (mb or hPa)
        Single-precision floating point
        Specifies the global atmospheric pressure
    cigi.atmosphere_control.horiz_wind  Global Horizontal Wind Speed (m/s)
        Single-precision floating point
        Specifies the global wind speed parallel to the ellipsoid-tangential reference plane
    cigi.atmosphere_control.humidity  Global Humidity (%)
        Unsigned 8-bit integer
        Specifies the global humidity of the environment
    cigi.atmosphere_control.vert_wind  Global Vertical Wind Speed (m/s)
        Single-precision floating point
        Specifies the global vertical wind speed
    cigi.atmosphere_control.visibility_range  Global Visibility Range (m)
        Single-precision floating point
        Specifies the global visibility range through the atmosphere
    cigi.atmosphere_control.wind_direction  Global Wind Direction (degrees)
        Single-precision floating point
        Specifies the global wind direction
    cigi.byte_swap  Byte Swap
        Unsigned 16-bit integer
        Used to determine whether the incoming data should be byte-swapped
    cigi.celestial_sphere_control  Celestial Sphere Control
        NULL terminated string
        Celestial Sphere Control Packet
    cigi.celestial_sphere_control.date  Date (MMDDYYYY)
        Unsigned 32-bit integer
        Specifies the current date within the simulation
    cigi.celestial_sphere_control.date_time_valid  Date/Time Valid
        Boolean
        Specifies whether the Hour, Minute, and Date parameters are valid
    cigi.celestial_sphere_control.ephemeris_enable  Ephemeris Model Enable
        Boolean
        Controls whether the time of day is static or continuous
    cigi.celestial_sphere_control.hour  Hour (h)
        Unsigned 8-bit integer
        Specifies the current hour of the day within the simulation
    cigi.celestial_sphere_control.minute  Minute (min)
        Unsigned 8-bit integer
        Specifies the current minute of the day within the simulation
    cigi.celestial_sphere_control.moon_enable  Moon Enable
        Boolean
        Specifies whether the moon is enabled in the sky model
    cigi.celestial_sphere_control.star_enable  Star Field Enable
        Boolean
        Specifies whether the start field is enabled in the sky model
    cigi.celestial_sphere_control.star_intensity  Star Field Intensity (%)
        Single-precision floating point
        Specifies the intensity of the star field within the sky model
    cigi.celestial_sphere_control.sun_enable  Sun Enable
        Boolean
        Specifies whether the sun is enabled in the sky model
    cigi.coll_det_seg_def  Collision Detection Segment Definition
        NULL terminated string
        Collision Detection Segment Definition Packet
    cigi.coll_det_seg_def.collision_mask  Collision Mask
        Byte array
        Indicates which environment features will be included in or excluded from consideration for collision detection testing
    cigi.coll_det_seg_def.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates the entity to which this collision detection definition is assigned
    cigi.coll_det_seg_def.material_mask  Material Mask
        Unsigned 32-bit integer
        Specifies the environmental and cultural features to be included in or excluded from consideration for collision testing
    cigi.coll_det_seg_def.segment_enable  Segment Enable
        Boolean
        Indicates whether the defined segment is enabled for collision testing
    cigi.coll_det_seg_def.segment_id  Segment ID
        Unsigned 8-bit integer
        Indicates which segment is being uniquely defined for the given entity
    cigi.coll_det_seg_def.x1  X1 (m)
        Single-precision floating point
        Specifies the X offset of one endpoint of the collision segment
    cigi.coll_det_seg_def.x2  X2 (m)
        Single-precision floating point
        Specifies the X offset of one endpoint of the collision segment
    cigi.coll_det_seg_def.x_end  Segment X End (m)
        Single-precision floating point
        Specifies the ending point of the collision segment in the X-axis with respect to the entity's reference point
    cigi.coll_det_seg_def.x_start  Segment X Start (m)
        Single-precision floating point
        Specifies the starting point of the collision segment in the X-axis with respect to the entity's reference point
    cigi.coll_det_seg_def.y1  Y1 (m)
        Single-precision floating point
        Specifies the Y offset of one endpoint of the collision segment
    cigi.coll_det_seg_def.y2  Y2 (m)
        Single-precision floating point
        Specifies the Y offset of one endpoint of the collision segment
    cigi.coll_det_seg_def.y_end  Segment Y End (m)
        Single-precision floating point
        Specifies the ending point of the collision segment in the Y-axis with respect to the entity's reference point
    cigi.coll_det_seg_def.y_start  Segment Y Start (m)
        Single-precision floating point
        Specifies the starting point of the collision segment in the Y-axis with respect to the entity's reference point
    cigi.coll_det_seg_def.z1  Z1 (m)
        Single-precision floating point
        Specifies the Z offset of one endpoint of the collision segment
    cigi.coll_det_seg_def.z2  Z2 (m)
        Single-precision floating point
        Specifies the Z offset of one endpoint of the collision segment
    cigi.coll_det_seg_def.z_end  Segment Z End (m)
        Single-precision floating point
        Specifies the ending point of the collision segment in the Z-axis with respect to the entity's reference point
    cigi.coll_det_seg_def.z_start  Segment Z Start (m)
        Single-precision floating point
        Specifies the starting point of the collision segment in the Z-axis with respect to the entity's reference point
    cigi.coll_det_seg_notification  Collision Detection Segment Notification
        NULL terminated string
        Collision Detection Segment Notification Packet
    cigi.coll_det_seg_notification.contacted_entity_id  Contacted Entity ID
        Unsigned 16-bit integer
        Indicates the entity with which the collision occurred
    cigi.coll_det_seg_notification.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates the entity to which the collision detection segment belongs
    cigi.coll_det_seg_notification.intersection_distance  Intersection Distance (m)
        Single-precision floating point
        Indicates the distance along the collision test vector from the source endpoint to the point of intersection
    cigi.coll_det_seg_notification.material_code  Material Code
        Unsigned 32-bit integer
        Indicates the material code of the surface at the point of collision
    cigi.coll_det_seg_notification.segment_id  Segment ID
        Unsigned 8-bit integer
        Indicates the ID of the collision detection segment along which the collision occurred
    cigi.coll_det_seg_notification.type  Collision Type
        Boolean
        Indicates whether the collision occurred with another entity or with a non-entity object
    cigi.coll_det_seg_response  Collision Detection Segment Response
        NULL terminated string
        Collision Detection Segment Response Packet
    cigi.coll_det_seg_response.collision_x  Collision Point X (m)
        Single-precision floating point
        Specifies the X component of a vector, which lies along the defined segment where the segment intersected a surface
    cigi.coll_det_seg_response.collision_y  Collision Point Y (m)
        Single-precision floating point
        Specifies the Y component of a vector, which lies along the defined segment where the segment intersected a surface
    cigi.coll_det_seg_response.collision_z  Collision Point Z (m)
        Single-precision floating point
        Specifies the Z component of a vector, which lies along the defined segment where the segment intersected a surface
    cigi.coll_det_seg_response.contact  Entity/Non-Entity Contact
        Boolean
        Indicates whether another entity was contacted during this collision
    cigi.coll_det_seg_response.contacted_entity  Contacted Entity ID
        Unsigned 16-bit integer
        Indicates which entity was contacted during the collision
    cigi.coll_det_seg_response.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates which entity experienced a collision
    cigi.coll_det_seg_response.material_type  Material Type
        Signed 32-bit integer
        Specifies the material type of the surface that this collision test segment contacted
    cigi.coll_det_seg_response.segment_id  Segment ID
        Unsigned 8-bit integer
        Identifies the collision segment
    cigi.coll_det_vol_def  Collision Detection Volume Definition
        NULL terminated string
        Collision Detection Volume Definition Packet
    cigi.coll_det_vol_def.depth  Depth (m)
        Single-precision floating point
        Specifies the depth of the volume
    cigi.coll_det_vol_def.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates the entity to which this collision detection definition is assigned
    cigi.coll_det_vol_def.height  Height (m)
        Single-precision floating point
        Specifies the height of the volume
    cigi.coll_det_vol_def.pitch  Pitch (degrees)
        Single-precision floating point
        Specifies the pitch of the cuboid with respect to the entity's coordinate system
    cigi.coll_det_vol_def.radius_height  Radius (m)/Height (m)
        Single-precision floating point
        Specifies the radius of the sphere or specifies the length of the cuboid along its Z axis
    cigi.coll_det_vol_def.roll  Roll (degrees)
        Single-precision floating point
        Specifies the roll of the cuboid with respect to the entity's coordinate system
    cigi.coll_det_vol_def.volume_enable  Volume Enable
        Boolean
        Indicates whether the defined volume is enabled for collision testing
    cigi.coll_det_vol_def.volume_id  Volume ID
        Unsigned 8-bit integer
        Indicates which volume is being uniquely defined for a given entity
    cigi.coll_det_vol_def.volume_type  Volume Type
        Boolean
        Specified whether the volume is spherical or cuboid
    cigi.coll_det_vol_def.width  Width (m)
        Single-precision floating point
        Specifies the width of the volume
    cigi.coll_det_vol_def.x  X (m)
        Single-precision floating point
        Specifies the X offset of the center of the volume
    cigi.coll_det_vol_def.x_offset  Centroid X Offset (m)
        Single-precision floating point
        Specifies the offset of the volume's centroid along the X axis with respect to the entity's reference point
    cigi.coll_det_vol_def.y  Y (m)
        Single-precision floating point
        Specifies the Y offset of the center of the volume
    cigi.coll_det_vol_def.y_offset  Centroid Y Offset (m)
        Single-precision floating point
        Specifies the offset of the volume's centroid along the Y axis with respect to the entity's reference point
    cigi.coll_det_vol_def.yaw  Yaw (degrees)
        Single-precision floating point
        Specifies the yaw of the cuboid with respect to the entity's coordinate system
    cigi.coll_det_vol_def.z  Z (m)
        Single-precision floating point
        Specifies the Z offset of the center of the volume
    cigi.coll_det_vol_def.z_offset  Centroid Z Offset (m)
        Single-precision floating point
        Specifies the offset of the volume's centroid along the Z axis with respect to the entity's reference point
    cigi.coll_det_vol_notification  Collision Detection Volume Notification
        NULL terminated string
        Collision Detection Volume Notification Packet
    cigi.coll_det_vol_notification.contacted_entity_id  Contacted Entity ID
        Unsigned 16-bit integer
        Indicates the entity with which the collision occurred
    cigi.coll_det_vol_notification.contacted_volume_id  Contacted Volume ID
        Unsigned 8-bit integer
        Indicates the ID of the collision detection volume with which the collision occurred
    cigi.coll_det_vol_notification.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates the entity to which the collision detection volume belongs
    cigi.coll_det_vol_notification.type  Collision Type
        Boolean
        Indicates whether the collision occurred with another entity or with a non-entity object
    cigi.coll_det_vol_notification.volume_id  Volume ID
        Unsigned 8-bit integer
        Indicates the ID of the collision detection volume within which the collision occurred
    cigi.coll_det_vol_response  Collision Detection Volume Response
        NULL terminated string
        Collision Detection Volume Response Packet
    cigi.coll_det_vol_response.contact  Entity/Non-Entity Contact
        Boolean
        Indicates whether another entity was contacted during this collision
    cigi.coll_det_vol_response.contact_entity  Contacted Entity ID
        Unsigned 16-bit integer
        Indicates which entity was contacted with during the collision
    cigi.coll_det_vol_response.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates which entity experienced a collision
    cigi.coll_det_vol_response.volume_id  Volume ID
        Unsigned 8-bit integer
        Identifies the collision volume corresponding to the associated Collision Detection Volume Request
    cigi.component_control  Component Control
        NULL terminated string
        Component Control Packet
    cigi.component_control.component_class  Component Class
        Unsigned 8-bit integer
        Identifies the class the component being controlled is in
    cigi.component_control.component_id  Component ID
        Unsigned 16-bit integer
        Identifies the component of a component class and instance ID this packet will be applied to
    cigi.component_control.component_state  Component State
        Unsigned 16-bit integer
        Identifies the commanded state of a component
    cigi.component_control.component_val1  Component Value 1
        Single-precision floating point
        Identifies a continuous value to be applied to a component
    cigi.component_control.component_val2  Component Value 2
        Single-precision floating point
        Identifies a continuous value to be applied to a component
    cigi.component_control.data_1  Component Data 1
        Byte array
        User-defined component data
    cigi.component_control.data_2  Component Data 2
        Byte array
        User-defined component data
    cigi.component_control.data_3  Component Data 3
        Byte array
        User-defined component data
    cigi.component_control.data_4  Component Data 4
        Byte array
        User-defined component data
    cigi.component_control.data_5  Component Data 5
        Byte array
        User-defined component data
    cigi.component_control.data_6  Component Data 6
        Byte array
        User-defined component data
    cigi.component_control.instance_id  Instance ID
        Unsigned 16-bit integer
        Identifies the instance of the a class the component being controlled belongs to
    cigi.conformal_clamped_entity_control  Conformal Clamped Entity Control
        NULL terminated string
        Conformal Clamped Entity Control Packet
    cigi.conformal_clamped_entity_control.entity_id  Entity ID
        Unsigned 16-bit integer
        Specifies the entity to which this packet is applied
    cigi.conformal_clamped_entity_control.lat  Latitude (degrees)
        Double-precision floating point
        Specifies the entity's geodetic latitude
    cigi.conformal_clamped_entity_control.lon  Longitude (degrees)
        Double-precision floating point
        Specifies the entity's geodetic longitude
    cigi.conformal_clamped_entity_control.yaw  Yaw (degrees)
        Single-precision floating point
        Specifies the instantaneous heading of the entity
    cigi.destport  Destination Port
        Unsigned 16-bit integer
    cigi.earth_ref_model_def  Earth Reference Model Definition
        NULL terminated string
        Earth Reference Model Definition Packet
    cigi.earth_ref_model_def.equatorial_radius  Equatorial Radius (m)
        Double-precision floating point
        Specifies the semi-major axis of the ellipsoid
    cigi.earth_ref_model_def.erm_enable  Custom ERM Enable
        Boolean
        Specifies whether the IG should use the Earth Reference Model defined by this packet
    cigi.earth_ref_model_def.flattening  Flattening (m)
        Double-precision floating point
        Specifies the flattening of the ellipsoid
    cigi.entity_control  Entity Control
        NULL terminated string
        Entity Control Packet
    cigi.entity_control.alpha  Alpha
        Unsigned 8-bit integer
        Specifies the explicit alpha to be applied to the entity's geometry
    cigi.entity_control.alt  Altitude (m)
        Double-precision floating point
        Identifies the altitude position of the reference point of the entity in meters
    cigi.entity_control.alt_zoff  Altitude (m)/Z Offset (m)
        Double-precision floating point
        Specifies the entity's altitude or the distance from the parent's reference point along its parent's Z axis
    cigi.entity_control.animation_dir  Animation Direction
        Boolean
        Specifies the direction in which an animation plays
    cigi.entity_control.animation_loop_mode  Animation Loop Mode
        Boolean
        Specifies whether an animation should be a one-shot
    cigi.entity_control.animation_state  Animation State
        Unsigned 8-bit integer
        Specifies the state of an animation
    cigi.entity_control.attach_state  Attach State
        Boolean
        Identifies whether the entity should be attach as a child to a parent
    cigi.entity_control.coll_det_request  Collision Detection Request
        Boolean
        Determines whether any collision detection segments and volumes associated with this entity are used as the source in collision testing
    cigi.entity_control.collision_detect  Collision Detection Request
        Boolean
        Identifies if collision detection is enabled for the entity
    cigi.entity_control.effect_state  Effect Animation State
        Unsigned 8-bit integer
        Identifies the animation state of a special effect
    cigi.entity_control.entity_id  Entity ID
        Unsigned 16-bit integer
        Identifies the entity motion system
    cigi.entity_control.entity_state  Entity State
        Unsigned 8-bit integer
        Identifies the entity's geometry state
    cigi.entity_control.entity_type  Entity Type
        Unsigned 16-bit integer
        Specifies the type for the entity
    cigi.entity_control.extrapolation_enable  Linear Extrapolation/Interpolation Enable
        Boolean
        Indicates whether the entity's motion may be smoothed by extrapolation or interpolation.
    cigi.entity_control.ground_ocean_clamp  Ground/Ocean Clamp
        Unsigned 8-bit integer
        Specifies whether the entity should be clamped to the ground or water surface
    cigi.entity_control.inherit_alpha  Inherit Alpha
        Boolean
        Specifies whether the entity's alpha is combined with the apparent alpha of its parent
    cigi.entity_control.internal_temp  Internal Temperature (degrees C)
        Single-precision floating point
        Specifies the internal temperature of the entity in degrees Celsius
    cigi.entity_control.lat  Latitude (degrees)
        Double-precision floating point
        Identifies the latitude position of the reference point of the entity in degrees
    cigi.entity_control.lat_xoff  Latitude (degrees)/X Offset (m)
        Double-precision floating point
        Specifies the entity's geodetic latitude or the distance from the parent's reference point along its parent's X axis
    cigi.entity_control.lon  Longitude (degrees)
        Double-precision floating point
        Identifies the longitude position of the reference point of the entity in degrees
    cigi.entity_control.lon_yoff  Longitude (degrees)/Y Offset (m)
        Double-precision floating point
        Specifies the entity's geodetic longitude or the distance from the parent's reference point along its parent's Y axis
    cigi.entity_control.opacity  Percent Opacity
        Single-precision floating point
        Specifies the degree of opacity of the entity
    cigi.entity_control.parent_id  Parent Entity ID
        Unsigned 16-bit integer
        Identifies the parent to which the entity should be attached
    cigi.entity_control.pitch  Pitch (degrees)
        Single-precision floating point
        Specifies the pitch angle of the entity
    cigi.entity_control.roll  Roll (degrees)
        Single-precision floating point
        Identifies the roll angle of the entity in degrees
    cigi.entity_control.type  Entity Type
        Unsigned 16-bit integer
        Identifies the type of the entity
    cigi.entity_control.yaw  Yaw (degrees)
        Single-precision floating point
        Specifies the instantaneous heading of the entity
    cigi.env_cond_request  Environmental Conditions Request
        NULL terminated string
        Environmental Conditions Request Packet
    cigi.env_cond_request.alt  Altitude (m)
        Double-precision floating point
        Specifies the geodetic altitude at which the environmental state is requested
    cigi.env_cond_request.id  Request ID
        Unsigned 8-bit integer
        Identifies the environmental conditions request
    cigi.env_cond_request.lat  Latitude (degrees)
        Double-precision floating point
        Specifies the geodetic latitude at which the environmental state is requested
    cigi.env_cond_request.lon  Longitude (degrees)
        Double-precision floating point
        Specifies the geodetic longitude at which the environmental state is requested
    cigi.env_cond_request.type  Request Type
        Unsigned 8-bit integer
        Specifies the desired response type for the request
    cigi.env_control  Environment Control
        NULL terminated string
        Environment Control Packet
    cigi.env_control.aerosol  Aerosol (gm/m^3)
        Single-precision floating point
        Controls the liquid water content for the defined atmosphere
    cigi.env_control.air_temp  Air Temperature (degrees C)
        Single-precision floating point
        Identifies the global temperature of the environment
    cigi.env_control.date  Date (MMDDYYYY)
        Signed 32-bit integer
        Specifies the desired date for use by the ephemeris program within the image generator
    cigi.env_control.ephemeris_enable  Ephemeris Enable
        Boolean
        Identifies whether a continuous time of day or static time of day is used
    cigi.env_control.global_visibility  Global Visibility (m)
        Single-precision floating point
        Identifies the global visibility
    cigi.env_control.hour  Hour (h)
        Unsigned 8-bit integer
        Identifies the hour of the day for the ephemeris program within the image generator
    cigi.env_control.humidity  Humidity (%)
        Unsigned 8-bit integer
        Specifies the global humidity of the environment
    cigi.env_control.minute  Minute (min)
        Unsigned 8-bit integer
        Identifies the minute of the hour for the ephemeris program within the image generator
    cigi.env_control.modtran_enable  MODTRAN
        Boolean
        Identifies whether atmospherics will be included in the calculations
    cigi.env_control.pressure  Barometric Pressure (mb)
        Single-precision floating point
        Controls the atmospheric pressure input into MODTRAN
    cigi.env_control.wind_direction  Wind Direction (degrees)
        Single-precision floating point
        Identifies the global wind direction
    cigi.env_control.wind_speed  Wind Speed (m/s)
        Single-precision floating point
        Identifies the global wind speed
    cigi.env_region_control  Environmental Region Control
        NULL terminated string
        Environmental Region Control Packet
    cigi.env_region_control.corner_radius  Corner Radius (m)
        Single-precision floating point
        Specifies the radius of the corner of the rounded rectangle
    cigi.env_region_control.lat  Latitude (degrees)
        Double-precision floating point
        Specifies the geodetic latitude of the center of the rounded rectangle
    cigi.env_region_control.lon  Longitude (degrees)
        Double-precision floating point
        Specifies the geodetic longitude of the center of the rounded rectangle
    cigi.env_region_control.merge_aerosol  Merge Aerosol Concentrations
        Boolean
        Specifies whether the concentrations of aerosols found within this region should be merged with those of other regions within areas of overlap
    cigi.env_region_control.merge_maritime  Merge Maritime Surface Conditions
        Boolean
        Specifies whether the maritime surface conditions found within this region should be merged with those of other regions within areas of overlap
    cigi.env_region_control.merge_terrestrial  Merge Terrestrial Surface Conditions
        Boolean
        Specifies whether the terrestrial surface conditions found within this region should be merged with those of other regions within areas of overlap
    cigi.env_region_control.merge_weather  Merge Weather Properties
        Boolean
        Specifies whether atmospheric conditions within this region should be merged with those of other regions within areas of overlap
    cigi.env_region_control.region_id  Region ID
        Unsigned 16-bit integer
        Specifies the environmental region to which the data in this packet will be applied
    cigi.env_region_control.region_state  Region State
        Unsigned 8-bit integer
        Specifies whether the region should be active or destroyed
    cigi.env_region_control.rotation  Rotation (degrees)
        Single-precision floating point
        Specifies the yaw angle of the rounded rectangle
    cigi.env_region_control.size_x  Size X (m)
        Single-precision floating point
        Specifies the length of the environmental region along its X axis at the geoid surface
    cigi.env_region_control.size_y  Size Y (m)
        Single-precision floating point
        Specifies the length of the environmental region along its Y axis at the geoid surface
    cigi.env_region_control.transition_perimeter  Transition Perimeter (m)
        Single-precision floating point
        Specifies the width of the transition perimeter around the environmental region
    cigi.event_notification  Event Notification
        NULL terminated string
        Event Notification Packet
    cigi.event_notification.data_1  Event Data 1
        Byte array
        Used for user-defined event data
    cigi.event_notification.data_2  Event Data 2
        Byte array
        Used for user-defined event data
    cigi.event_notification.data_3  Event Data 3
        Byte array
        Used for user-defined event data
    cigi.event_notification.event_id  Event ID
        Unsigned 16-bit integer
        Indicates which event has occurred
    cigi.frame_size  Frame Size (bytes)
        Unsigned 8-bit integer
        Number of bytes sent with all cigi packets in this frame
    cigi.hat_hot_ext_response  HAT/HOT Extended Response
        NULL terminated string
        HAT/HOT Extended Response Packet
    cigi.hat_hot_ext_response.hat  HAT
        Double-precision floating point
        Indicates the height of the test point above the terrain
    cigi.hat_hot_ext_response.hat_hot_id  HAT/HOT ID
        Unsigned 16-bit integer
        Identifies the HAT/HOT response
    cigi.hat_hot_ext_response.host_frame_number_lsn  Host Frame Number LSN
        Unsigned 8-bit integer
        Least significant nibble of the host frame number parameter of the last IG Control packet received before the HAT or HOT is calculated
    cigi.hat_hot_ext_response.hot  HOT
        Double-precision floating point
        Indicates the height of terrain above or below the test point
    cigi.hat_hot_ext_response.material_code  Material Code
        Unsigned 32-bit integer
        Indicates the material code of the terrain surface at the point of intersection with the HAT/HOT test vector
    cigi.hat_hot_ext_response.normal_vector_azimuth  Normal Vector Azimuth (degrees)
        Single-precision floating point
        Indicates the azimuth of the normal unit vector of the surface intersected by the HAT/HOT test vector
    cigi.hat_hot_ext_response.normal_vector_elevation  Normal Vector Elevation (degrees)
        Single-precision floating point
        Indicates the elevation of the normal unit vector of the surface intersected by the HAT/HOT test vector
    cigi.hat_hot_ext_response.valid  Valid
        Boolean
        Indicates whether the remaining parameters in this packet contain valid numbers
    cigi.hat_hot_request  HAT/HOT Request
        NULL terminated string
        HAT/HOT Request Packet
    cigi.hat_hot_request.alt_zoff  Altitude (m)/Z Offset (m)
        Double-precision floating point
        Specifies the altitude from which the HAT/HOT request is being made or specifies the Z offset of the point from which the HAT/HOT request is being made
    cigi.hat_hot_request.coordinate_system  Coordinate System
        Boolean
        Specifies the coordinate system within which the test point is defined
    cigi.hat_hot_request.entity_id  Entity ID
        Unsigned 16-bit integer
        Specifies the entity relative to which the test point is defined
    cigi.hat_hot_request.hat_hot_id  HAT/HOT ID
        Unsigned 16-bit integer
        Identifies the HAT/HOT request
    cigi.hat_hot_request.lat_xoff  Latitude (degrees)/X Offset (m)
        Double-precision floating point
        Specifies the latitude from which the HAT/HOT request is being made or specifies the X offset of the point from which the HAT/HOT request is being made
    cigi.hat_hot_request.lon_yoff  Longitude (degrees)/Y Offset (m)
        Double-precision floating point
        Specifies the longitude from which the HAT/HOT request is being made or specifies the Y offset of the point from which the HAT/HOT request is being made
    cigi.hat_hot_request.type  Request Type
        Unsigned 8-bit integer
        Determines the type of response packet the IG should return for this packet
    cigi.hat_hot_request.update_period  Update Period
        Unsigned 8-bit integer
        Specifies interval between successive responses to this request. A zero indicates one responses a value n > 0 the IG should respond every nth frame
    cigi.hat_hot_response  HAT/HOT Response
        NULL terminated string
        HAT/HOT Response Packet
    cigi.hat_hot_response.hat_hot_id  HAT/HOT ID
        Unsigned 16-bit integer
        Identifies the HAT or HOT response
    cigi.hat_hot_response.height  Height
        Double-precision floating point
        Contains the requested height
    cigi.hat_hot_response.host_frame_number_lsn  Host Frame Number LSN
        Unsigned 8-bit integer
        Least significant nibble of the host frame number parameter of the last IG Control packet received before the HAT or HOT is calculated
    cigi.hat_hot_response.type  Response Type
        Boolean
        Indicates whether the Height parameter represent Height Above Terrain or Height Of Terrain
    cigi.hat_hot_response.valid  Valid
        Boolean
        Indicates whether the Height parameter contains a valid number
    cigi.hat_request  Height Above Terrain Request
        NULL terminated string
        Height Above Terrain Request Packet
    cigi.hat_request.alt  Altitude (m)
        Double-precision floating point
        Specifies the altitude from which the HAT request is being made
    cigi.hat_request.hat_id  HAT ID
        Unsigned 16-bit integer
        Identifies the HAT request
    cigi.hat_request.lat  Latitude (degrees)
        Double-precision floating point
        Specifies the latitudinal position from which the HAT request is being made
    cigi.hat_request.lon  Longitude (degrees)
        Double-precision floating point
        Specifies the longitudinal position from which the HAT request is being made
    cigi.hat_response  Height Above Terrain Response
        NULL terminated string
        Height Above Terrain Response Packet
    cigi.hat_response.alt  Altitude (m)
        Double-precision floating point
        Represents the altitude above or below the terrain for the position requested
    cigi.hat_response.hat_id  HAT ID
        Unsigned 16-bit integer
        Identifies the HAT response
    cigi.hat_response.material_type  Material Type
        Signed 32-bit integer
        Specifies the material type of the object intersected by the HAT test vector
    cigi.hat_response.valid  Valid
        Boolean
        Indicates whether the response is valid or invalid
    cigi.hot_request  Height of Terrain Request
        NULL terminated string
        Height of Terrain Request Packet
    cigi.hot_request.hot_id  HOT ID
        Unsigned 16-bit integer
        Identifies the HOT request
    cigi.hot_request.lat  Latitude (degrees)
        Double-precision floating point
        Specifies the latitudinal position from which the HOT request is made
    cigi.hot_request.lon  Longitude (degrees)
        Double-precision floating point
        Specifies the longitudinal position from which the HOT request is made
    cigi.hot_response  Height of Terrain Response
        NULL terminated string
        Height of Terrain Response Packet
    cigi.hot_response.alt  Altitude (m)
        Double-precision floating point
        Represents the altitude of the terrain for the position requested in the HOT request data packet
    cigi.hot_response.hot_id  HOT ID
        Unsigned 16-bit integer
        Identifies the HOT response corresponding to the associated HOT request
    cigi.hot_response.material_type  Material Type
        Signed 32-bit integer
        Specifies the material type of the object intersected by the HOT test segment
    cigi.hot_response.valid  Valid
        Boolean
        Indicates whether the response is valid or invalid
    cigi.ig_control  IG Control
        NULL terminated string
        IG Control Packet
    cigi.ig_control.boresight  Tracking Device Boresight
        Boolean
        Used by the host to enable boresight mode
    cigi.ig_control.db_number  Database Number
        Signed 8-bit integer
        Identifies the number associated with the database requiring loading
    cigi.ig_control.extrapolation_enable  Extrapolation/Interpolation Enable
        Boolean
        Indicates whether any dead reckoning is enabled.
    cigi.ig_control.frame_ctr  Frame Counter
        Unsigned 32-bit integer
        Identifies a particular frame
    cigi.ig_control.host_frame_number  Host Frame Number
        Unsigned 32-bit integer
        Uniquely identifies a data frame on the host
    cigi.ig_control.ig_mode  IG Mode Change Request
        Unsigned 8-bit integer
        Commands the IG to enter its various modes
    cigi.ig_control.last_ig_frame_number  IG Frame Number
        Unsigned 32-bit integer
        Contains the value of the IG Frame Number parameter in the last Start of Frame packet received from the IG
    cigi.ig_control.minor_version  Minor Version
        Unsigned 8-bit integer
        Indicates the minor version of the CIGI interface
    cigi.ig_control.time_tag  Timing Value (microseconds)
        Single-precision floating point
        Identifies synchronous operation
    cigi.ig_control.timestamp  Timestamp (microseconds)
        Unsigned 32-bit integer
        Indicates the number of 10 microsecond "ticks" since some initial reference time
    cigi.ig_control.timestamp_valid  Timestamp Valid
        Boolean
        Indicates whether the timestamp contains a valid value
    cigi.ig_control.tracking_enable  Tracking Device Enable
        Boolean
        Identifies the state of an external tracking device
    cigi.image_generator_message  Image Generator Message
        NULL terminated string
        Image Generator Message Packet
    cigi.image_generator_message.message  Message
        NULL terminated string
        Image generator message
    cigi.image_generator_message.message_id  Message ID
        Unsigned 16-bit integer
        Uniquely identifies an instance of an Image Generator Response Message
    cigi.los_ext_response  Line of Sight Extended Response
        NULL terminated string
        Line of Sight Extended Response Packet
    cigi.los_ext_response.alpha  Alpha
        Unsigned 8-bit integer
        Indicates the alpha component of the surface at the point of intersection
    cigi.los_ext_response.alt_zoff  Altitude (m)/Z Offset(m)
        Double-precision floating point
        Indicates the geodetic altitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's Z axis
    cigi.los_ext_response.blue  Blue
        Unsigned 8-bit integer
        Indicates the blue color component of the surface at the point of intersection
    cigi.los_ext_response.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates the entity with which a LOS test vector or segment intersects
    cigi.los_ext_response.entity_id_valid  Entity ID Valid
        Boolean
        Indicates whether the LOS test vector or segment intersects with an entity
    cigi.los_ext_response.green  Green
        Unsigned 8-bit integer
        Indicates the green color component of the surface at the point of intersection
    cigi.los_ext_response.intersection_coord  Intersection Point Coordinate System
        Boolean
        Indicates the coordinate system relative to which the intersection point is specified
    cigi.los_ext_response.lat_xoff  Latitude (degrees)/X Offset (m)
        Double-precision floating point
        Indicates the geodetic latitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's X axis
    cigi.los_ext_response.lon_yoff  Longitude (degrees)/Y Offset (m)
        Double-precision floating point
        Indicates the geodetic longitude of the point of intersection along the LOS test segment or vector or specifies the offset of the point of intersection of the LOS test segment or vector along the intersected entity's Y axis
    cigi.los_ext_response.los_id  LOS ID
        Unsigned 16-bit integer
        Identifies the LOS response
    cigi.los_ext_response.material_code  Material Code
        Unsigned 32-bit integer
        Indicates the material code of the surface intersected by the LOS test segment of vector
    cigi.los_ext_response.normal_vector_azimuth  Normal Vector Azimuth (degrees)
        Single-precision floating point
        Indicates the azimuth of a unit vector normal to the surface intersected by the LOS test segment or vector
    cigi.los_ext_response.normal_vector_elevation  Normal Vector Elevation (degrees)
        Single-precision floating point
        Indicates the elevation of a unit vector normal to the surface intersected by the LOS test segment or vector
    cigi.los_ext_response.range  Range (m)
        Double-precision floating point
        Indicates the distance along the LOS test segment or vector from the source point to the point of intersection with an object
    cigi.los_ext_response.range_valid  Range Valid
        Boolean
        Indicates whether the Range parameter is valid
    cigi.los_ext_response.red  Red
        Unsigned 8-bit integer
        Indicates the red color component of the surface at the point of intersection
    cigi.los_ext_response.response_count  Response Count
        Unsigned 8-bit integer
        Indicates the total number of Line of Sight Extended Response packets the IG will return for the corresponding request
    cigi.los_ext_response.valid  Valid
        Boolean
        Indicates whether this packet contains valid data
    cigi.los_ext_response.visible  Visible
        Boolean
        Indicates whether the destination point is visible from the source point
    cigi.los_occult_request  Line of Sight Occult Request
        NULL terminated string
        Line of Sight Occult Request Packet
    cigi.los_occult_request.dest_alt  Destination Altitude (m)
        Double-precision floating point
        Specifies the altitude of the destination point for the LOS request segment
    cigi.los_occult_request.dest_lat  Destination Latitude (degrees)
        Double-precision floating point
        Specifies the latitudinal position for the destination point for the LOS request segment
    cigi.los_occult_request.dest_lon  Destination Longitude (degrees)
        Double-precision floating point
        Specifies the longitudinal position of the destination point for the LOS request segment
    cigi.los_occult_request.los_id  LOS ID
        Unsigned 16-bit integer
        Identifies the LOS request
    cigi.los_occult_request.source_alt  Source Altitude (m)
        Double-precision floating point
        Specifies the altitude of the source point for the LOS request segment
    cigi.los_occult_request.source_lat  Source Latitude (degrees)
        Double-precision floating point
        Specifies the latitudinal position of the source point for the LOS request segment
    cigi.los_occult_request.source_lon  Source Longitude (degrees)
        Double-precision floating point
        Specifies the longitudinal position of the source point for the LOS request segment
    cigi.los_range_request  Line of Sight Range Request
        NULL terminated string
        Line of Sight Range Request Packet
    cigi.los_range_request.azimuth  Azimuth (degrees)
        Single-precision floating point
        Specifies the azimuth of the LOS vector
    cigi.los_range_request.elevation  Elevation (degrees)
        Single-precision floating point
        Specifies the elevation for the LOS vector
    cigi.los_range_request.los_id  LOS ID
        Unsigned 16-bit integer
        Identifies the LOS request
    cigi.los_range_request.max_range  Maximum Range (m)
        Single-precision floating point
        Specifies the maximum extent from the source position specified in this data packet to a point along the LOS vector where intersection testing will end
    cigi.los_range_request.min_range  Minimum Range (m)
        Single-precision floating point
        Specifies the distance from the source position specified in this data packet to a point along the LOS vector where intersection testing will begin
    cigi.los_range_request.source_alt  Source Altitude (m)
        Double-precision floating point
        Specifies the altitude of the source point of the LOS request vector
    cigi.los_range_request.source_lat  Source Latitude (degrees)
        Double-precision floating point
        Specifies the latitudinal position of the source point of the LOS request vector
    cigi.los_range_request.source_lon  Source Longitude (degrees)
        Double-precision floating point
        Specifies the longitudinal position of the source point of the LOS request vector
    cigi.los_response  Line of Sight Response
        NULL terminated string
        Line of Sight Response Packet
    cigi.los_response.alt  Intersection Altitude (m)
        Double-precision floating point
        Specifies the altitude of the point of intersection of the LOS request vector with an object
    cigi.los_response.count  Response Count
        Unsigned 8-bit integer
        Indicates the total number of Line of Sight Response packets the IG will return for the corresponding request
    cigi.los_response.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates the entity with which an LOS test vector or segment intersects
    cigi.los_response.entity_id_valid  Entity ID Valid
        Boolean
        Indicates whether the LOS test vector or segment intersects with an entity or a non-entity
    cigi.los_response.host_frame_number_lsn  Host Frame Number LSN
        Unsigned 8-bit integer
        Least significant nibble of the host frame number parameter of the last IG Control packet received before the HAT or HOT is calculated
    cigi.los_response.lat  Intersection Latitude (degrees)
        Double-precision floating point
        Specifies the latitudinal position of the intersection point of the LOS request vector with an object
    cigi.los_response.lon  Intersection Longitude (degrees)
        Double-precision floating point
        Specifies the longitudinal position of the intersection point of the LOS request vector with an object
    cigi.los_response.los_id  LOS ID
        Unsigned 16-bit integer
        Identifies the LOS response corresponding tot he associated LOS request
    cigi.los_response.material_type  Material Type
        Signed 32-bit integer
        Specifies the material type of the object intersected by the LOS test segment
    cigi.los_response.occult_response  Occult Response
        Boolean
        Used to respond to the LOS occult request data packet
    cigi.los_response.range  Range (m)
        Single-precision floating point
        Used to respond to the Line of Sight Range Request data packet
    cigi.los_response.valid  Valid
        Boolean
        Indicates whether the response is valid or invalid
    cigi.los_response.visible  Visible
        Boolean
        Indicates whether the destination point is visible from the source point
    cigi.los_segment_request  Line of Sight Segment Request
        NULL terminated string
        Line of Sight Segment Request Packet
    cigi.los_segment_request.alpha_threshold  Alpha Threshold
        Unsigned 8-bit integer
        Specifies the minimum alpha value a surface may have for an LOS response to be generated
    cigi.los_segment_request.destination_alt_zoff  Destination Altitude (m)/ Destination Z Offset (m)
        Double-precision floating point
        Specifies the altitude of the destination endpoint of the LOS test segment or specifies the Z offset of the destination endpoint of the LOS test segment
    cigi.los_segment_request.destination_coord  Destination Point Coordinate System
        Boolean
        Indicates the coordinate system relative to which the test segment destination endpoint is specified
    cigi.los_segment_request.destination_entity_id  Destination Entity ID
        Unsigned 16-bit integer
        Indicates the entity with respect to which the Destination X Offset, Y Offset, and Destination Z Offset parameters are specified
    cigi.los_segment_request.destination_entity_id_valid  Destination Entity ID Valid
        Boolean
        Destination Entity ID is valid.
    cigi.los_segment_request.destination_lat_xoff  Destination Latitude (degrees)/ Destination X Offset (m)
        Double-precision floating point
        Specifies the latitude of the destination endpoint of the LOS test segment or specifies the X offset of the destination endpoint of the LOS test segment
    cigi.los_segment_request.destination_lon_yoff  Destination Longitude (degrees)/Destination Y Offset (m)
        Double-precision floating point
        Specifies the longitude of the destination endpoint of the LOS test segment or specifies the Y offset of the destination endpoint of the LOS test segment
    cigi.los_segment_request.entity_id  Entity ID
        Unsigned 16-bit integer
        Specifies the entity relative to which the test segment endpoints are defined
    cigi.los_segment_request.los_id  LOS ID
        Unsigned 16-bit integer
        Identifies the LOS request
    cigi.los_segment_request.material_mask  Material Mask
        Unsigned 32-bit integer
        Specifies the environmental and cultural features to be included in or excluded from consideration for the LOS segment testing
    cigi.los_segment_request.response_coord  Response Coordinate System
        Boolean
        Specifies the coordinate system to be used in the response
    cigi.los_segment_request.source_alt_zoff  Source Altitude (m)/Source Z Offset (m)
        Double-precision floating point
        Specifies the altitude of the source endpoint of the LOS test segment or specifies the Z offset of the source endpoint of the LOS test segment
    cigi.los_segment_request.source_coord  Source Point Coordinate System
        Boolean
        Indicates the coordinate system relative to which the test segment source endpoint is specified
    cigi.los_segment_request.source_lat_xoff  Source Latitude (degrees)/Source X Offset (m)
        Double-precision floating point
        Specifies the latitude of the source endpoint of the LOS test segment or specifies the X offset of the source endpoint of the LOS test segment
    cigi.los_segment_request.source_lon_yoff  Source Longitude (degrees)/Source Y Offset (m)
        Double-precision floating point
        Specifies the longitude of the source endpoint of the LOS test segment or specifies the Y offset of the source endpoint of the LOS test segment
    cigi.los_segment_request.type  Request Type
        Boolean
        Determines what type of response the IG should return for this request
    cigi.los_segment_request.update_period  Update Period
        Unsigned 8-bit integer
        Specifies interval between successive responses to this request. A zero indicates one responses a value n > 0 the IG should respond every nth frame
    cigi.los_vector_request  Line of Sight Vector Request
        NULL terminated string
        Line of Sight Vector Request Packet
    cigi.los_vector_request.alpha  Alpha Threshold
        Unsigned 8-bit integer
        Specifies the minimum alpha value a surface may have for an LOS response to be generated
    cigi.los_vector_request.azimuth  Azimuth (degrees)
        Single-precision floating point
        Specifies the horizontal angle of the LOS test vector
    cigi.los_vector_request.elevation  Elevation (degrees)
        Single-precision floating point
        Specifies the vertical angle of the LOS test vector
    cigi.los_vector_request.entity_id  Entity ID
        Unsigned 16-bit integer
        Specifies the entity relative to which the test segment endpoints are defined
    cigi.los_vector_request.los_id  LOS ID
        Unsigned 16-bit integer
        Identifies the LOS request
    cigi.los_vector_request.material_mask  Material Mask
        Unsigned 32-bit integer
        Specifies the environmental and cultural features to be included in LOS segment testing
    cigi.los_vector_request.max_range  Maximum Range (m)
        Single-precision floating point
        Specifies the maximum range along the LOS test vector at which intersection testing should occur
    cigi.los_vector_request.min_range  Minimum Range (m)
        Single-precision floating point
        Specifies the minimum range along the LOS test vector at which intersection testing should occur
    cigi.los_vector_request.response_coord  Response Coordinate System
        Boolean
        Specifies the coordinate system to be used in the response
    cigi.los_vector_request.source_alt_zoff  Source Altitude (m)/Source Z Offset (m)
        Double-precision floating point
        Specifies the altitude of the source point of the LOS test vector or specifies the Z offset of the source point of the LOS test vector
    cigi.los_vector_request.source_coord  Source Point Coordinate System
        Boolean
        Indicates the coordinate system relative to which the test vector source point is specified
    cigi.los_vector_request.source_lat_xoff  Source Latitude (degrees)/Source X Offset (m)
        Double-precision floating point
        Specifies the latitude of the source point of the LOS test vector
    cigi.los_vector_request.source_lon_yoff  Source Longitude (degrees)/Source Y Offset (m)
        Double-precision floating point
        Specifies the longitude of the source point of the LOS test vector
    cigi.los_vector_request.type  Request Type
        Boolean
        Determines what type of response the IG should return for this request
    cigi.los_vector_request.update_period  Update Period
        Unsigned 8-bit integer
        Specifies interval between successive responses to this request. A zero indicates one responses a value n > 0 the IG should respond every nth frame
    cigi.maritime_surface_conditions_control  Maritime Surface Conditions Control
        NULL terminated string
        Maritime Surface Conditions Control Packet
    cigi.maritime_surface_conditions_control.entity_region_id  Entity ID/Region ID
        Unsigned 16-bit integer
        Specifies the entity to which the surface attributes in this packet are applied or specifies the region to which the surface attributes are confined
    cigi.maritime_surface_conditions_control.scope  Scope
        Unsigned 8-bit integer
        Specifies whether this packet is applied globally, applied to region, or assigned to an entity
    cigi.maritime_surface_conditions_control.sea_surface_height  Sea Surface Height (m)
        Single-precision floating point
        Specifies the height of the water above MSL at equilibrium
    cigi.maritime_surface_conditions_control.surface_clarity  Surface Clarity (%)
        Single-precision floating point
        Specifies the clarity of the water at its surface
    cigi.maritime_surface_conditions_control.surface_conditions_enable  Surface Conditions Enable
        Boolean
        Determines the state of the specified surface conditions
    cigi.maritime_surface_conditions_control.surface_water_temp  Surface Water Temperature (degrees C)
        Single-precision floating point
        Specifies the water temperature at the surface
    cigi.maritime_surface_conditions_control.whitecap_enable  Whitecap Enable
        Boolean
        Determines whether whitecaps are enabled
    cigi.maritime_surface_conditions_response  Maritime Surface Conditions Response
        NULL terminated string
        Maritime Surface Conditions Response Packet
    cigi.maritime_surface_conditions_response.request_id  Request ID
        Unsigned 8-bit integer
        Identifies the environmental conditions request to which this response packet corresponds
    cigi.maritime_surface_conditions_response.sea_surface_height  Sea Surface Height (m)
        Single-precision floating point
        Indicates the height of the sea surface at equilibrium
    cigi.maritime_surface_conditions_response.surface_clarity  Surface Clarity (%)
        Single-precision floating point
        Indicates the clarity of the water at its surface
    cigi.maritime_surface_conditions_response.surface_water_temp  Surface Water Temperature (degrees C)
        Single-precision floating point
        Indicates the water temperature at the sea surface
    cigi.motion_tracker_control  Motion Tracker Control
        NULL terminated string
        Motion Tracker Control Packet
    cigi.motion_tracker_control.boresight_enable  Boresight Enable
        Boolean
        Sets the boresight state of the external tracking device
    cigi.motion_tracker_control.pitch_enable  Pitch Enable
        Boolean
        Used to enable or disable the pitch of the motion tracker
    cigi.motion_tracker_control.roll_enable  Roll Enable
        Boolean
        Used to enable or disable the roll of the motion tracker
    cigi.motion_tracker_control.tracker_enable  Tracker Enable
        Boolean
        Specifies whether the tracking device is enabled
    cigi.motion_tracker_control.tracker_id  Tracker ID
        Unsigned 8-bit integer
        Specifies the tracker whose state the data in this packet represents
    cigi.motion_tracker_control.view_group_id  View/View Group ID
        Unsigned 16-bit integer
        Specifies the view or view group to which the tracking device is attached
    cigi.motion_tracker_control.view_group_select  View/View Group Select
        Boolean
        Specifies whether the tracking device is attached to a single view or a view group
    cigi.motion_tracker_control.x_enable  X Enable
        Boolean
        Used to enable or disable the X-axis position of the motion tracker
    cigi.motion_tracker_control.y_enable  Y Enable
        Boolean
        Used to enable or disable the Y-axis position of the motion tracker
    cigi.motion_tracker_control.yaw_enable  Yaw Enable
        Boolean
        Used to enable or disable the yaw of the motion tracker
    cigi.motion_tracker_control.z_enable  Z Enable
        Boolean
        Used to enable or disable the Z-axis position of the motion tracker
    cigi.packet_id  Packet ID
        Unsigned 8-bit integer
        Identifies the packet's id
    cigi.packet_size  Packet Size (bytes)
        Unsigned 8-bit integer
        Identifies the number of bytes in this type of packet
    cigi.port  Source or Destination Port
        Unsigned 16-bit integer
    cigi.pos_request  Position Request
        NULL terminated string
        Position Request Packet
    cigi.pos_request.coord_system  Coordinate System
        Unsigned 8-bit integer
        Specifies the desired coordinate system relative to which the position and orientation should be given
    cigi.pos_request.object_class  Object Class
        Unsigned 8-bit integer
        Specifies the type of object whose position is being requested
    cigi.pos_request.object_id  Object ID
        Unsigned 16-bit integer
        Identifies the entity, view, view group, or motion tracking device whose position is being requested
    cigi.pos_request.part_id  Articulated Part ID
        Unsigned 8-bit integer
        Identifies the articulated part whose position is being requested
    cigi.pos_request.update_mode  Update Mode
        Boolean
        Specifies whether the IG should report the position of the requested object each frame
    cigi.pos_response  Position Response
        NULL terminated string
        Position Response Packet
    cigi.pos_response.alt_zoff  Altitude (m)/Z Offset (m)
        Double-precision floating point
        Indicates the geodetic altitude of the entity, articulated part, view, or view group or indicates the Z offset from the parent entity's origin to the child entity, articulated part, view, or view group
    cigi.pos_response.coord_system  Coordinate System
        Unsigned 8-bit integer
        Indicates the coordinate system in which the position and orientation are specified
    cigi.pos_response.lat_xoff  Latitude (degrees)/X Offset (m)
        Double-precision floating point
        Indicates the geodetic latitude of the entity, articulated part, view, or view group or indicates the X offset from the parent entity's origin to the child entity, articulated part, view or view group
    cigi.pos_response.lon_yoff  Longitude (degrees)/Y Offset (m)
        Double-precision floating point
        Indicates the geodetic longitude of the entity, articulated part, view, or view group or indicates the Y offset from the parent entity's origin to the child entity, articulated part, view, or view group
    cigi.pos_response.object_class  Object Class
        Unsigned 8-bit integer
        Indicates the type of object whose position is being reported
    cigi.pos_response.object_id  Object ID
        Unsigned 16-bit integer
        Identifies the entity, view, view group, or motion tracking device whose position is being reported
    cigi.pos_response.part_id  Articulated Part ID
        Unsigned 8-bit integer
        Identifies the articulated part whose position is being reported
    cigi.pos_response.pitch  Pitch (degrees)
        Single-precision floating point
        Indicates the pitch angle of the specified entity, articulated part, view, or view group
    cigi.pos_response.roll  Roll (degrees)
        Single-precision floating point
        Indicates the roll angle of the specified entity, articulated part, view, or view group
    cigi.pos_response.yaw  Yaw (degrees)
        Single-precision floating point
        Indicates the yaw angle of the specified entity, articulated part, view, or view group
    cigi.rate_control  Rate Control
        NULL terminated string
        Rate Control Packet
    cigi.rate_control.apply_to_part  Apply to Articulated Part
        Boolean
        Determines whether the rate is applied to the articulated part specified by the Articulated Part ID parameter
    cigi.rate_control.coordinate_system  Coordinate System
        Boolean
        Specifies the reference coordinate system to which the linear and angular rates are applied
    cigi.rate_control.entity_id  Entity ID
        Unsigned 16-bit integer
        Specifies the entity to which this data packet will be applied
    cigi.rate_control.part_id  Articulated Part ID
        Signed 8-bit integer
        Identifies which articulated part is controlled with this data packet
    cigi.rate_control.pitch_rate  Pitch Angular Rate (degrees/s)
        Single-precision floating point
        Specifies the pitch angular rate for the entity being represented
    cigi.rate_control.roll_rate  Roll Angular Rate (degrees/s)
        Single-precision floating point
        Specifies the roll angular rate for the entity being represented
    cigi.rate_control.x_rate  X Linear Rate (m/s)
        Single-precision floating point
        Specifies the x component of the velocity vector for the entity being represented
    cigi.rate_control.y_rate  Y Linear Rate (m/s)
        Single-precision floating point
        Specifies the y component of the velocity vector for the entity being represented
    cigi.rate_control.yaw_rate  Yaw Angular Rate (degrees/s)
        Single-precision floating point
        Specifies the yaw angular rate for the entity being represented
    cigi.rate_control.z_rate  Z Linear Rate (m/s)
        Single-precision floating point
        Specifies the z component of the velocity vector for the entity being represented
    cigi.sensor_control  Sensor Control
        NULL terminated string
        Sensor Control Packet
    cigi.sensor_control.ac_coupling  AC Coupling
        Single-precision floating point
        Indicates the AC Coupling decay rate for the weapon sensor option
    cigi.sensor_control.auto_gain  Automatic Gain
        Boolean
        When set to "on," cause the weapons sensor to automatically adjust the gain value to optimize the brightness and contrast of the sensor display
    cigi.sensor_control.gain  Gain
        Single-precision floating point
        Indicates the gain value for the weapon sensor option
    cigi.sensor_control.level  Level
        Single-precision floating point
        Indicates the level value for the weapon sensor option
    cigi.sensor_control.line_dropout  Line-by-Line Dropout
        Boolean
        Indicates whether the line-by-line dropout feature is enabled
    cigi.sensor_control.line_dropout_enable  Line-by-Line Dropout Enable
        Boolean
        Specifies whether line-by-line dropout is enabled
    cigi.sensor_control.noise  Noise
        Single-precision floating point
        Indicates the detector-noise gain for the weapon sensor option
    cigi.sensor_control.polarity  Polarity
        Boolean
        Indicates whether this sensor is showing white hot or black hot
    cigi.sensor_control.response_type  Response Type
        Boolean
        Specifies whether the IG should return a Sensor Response packet or a Sensor Extended Response packet
    cigi.sensor_control.sensor_enable  Sensor On/Off
        Boolean
        Indicates whether the sensor is turned on or off
    cigi.sensor_control.sensor_id  Sensor ID
        Unsigned 8-bit integer
        Identifies the sensor to which this packet should be applied
    cigi.sensor_control.sensor_on_off  Sensor On/Off
        Boolean
        Specifies whether the sensor is turned on or off
    cigi.sensor_control.track_mode  Track Mode
        Unsigned 8-bit integer
        Indicates which track mode the sensor should be
    cigi.sensor_control.track_polarity  Track White/Black
        Boolean
        Identifies whether the weapons sensor will track wither white or black
    cigi.sensor_control.track_white_black  Track White/Black
        Boolean
        Specifies whether the sensor tracks white or black
    cigi.sensor_control.view_id  View ID
        Unsigned 8-bit integer
        Dictates to which view the corresponding sensor is assigned, regardless of the view group
    cigi.sensor_ext_response  Sensor Extended Response
        NULL terminated string
        Sensor Extended Response Packet
    cigi.sensor_ext_response.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates the entity ID of the target
    cigi.sensor_ext_response.entity_id_valid  Entity ID Valid
        Boolean
        Indicates whether the target is an entity or a non-entity object
    cigi.sensor_ext_response.frame_ctr  Frame Counter
        Unsigned 32-bit integer
        Indicates the IG's frame counter at the time that the IG calculates the gate and line-of-sight intersection data
    cigi.sensor_ext_response.gate_x_pos  Gate X Position (degrees)
        Single-precision floating point
        Specifies the gate symbol's position along the view's X axis
    cigi.sensor_ext_response.gate_x_size  Gate X Size (pixels or raster lines)
        Unsigned 16-bit integer
        Specifies the gate symbol size along the view's X axis
    cigi.sensor_ext_response.gate_y_pos  Gate Y Position (degrees)
        Single-precision floating point
        Specifies the gate symbol's position along the view's Y axis
    cigi.sensor_ext_response.gate_y_size  Gate Y Size (pixels or raster lines)
        Unsigned 16-bit integer
        Specifies the gate symbol size along the view's Y axis
    cigi.sensor_ext_response.sensor_id  Sensor ID
        Unsigned 8-bit integer
        Specifies the sensor to which the data in this packet apply
    cigi.sensor_ext_response.sensor_status  Sensor Status
        Unsigned 8-bit integer
        Indicates the current tracking state of the sensor
    cigi.sensor_ext_response.track_alt  Track Point Altitude (m)
        Double-precision floating point
        Indicates the geodetic altitude of the point being tracked by the sensor
    cigi.sensor_ext_response.track_lat  Track Point Latitude (degrees)
        Double-precision floating point
        Indicates the geodetic latitude of the point being tracked by the sensor
    cigi.sensor_ext_response.track_lon  Track Point Longitude (degrees)
        Double-precision floating point
        Indicates the geodetic longitude of the point being tracked by the sensor
    cigi.sensor_ext_response.view_id  View ID
        Unsigned 16-bit integer
        Specifies the view that represents the sensor display
    cigi.sensor_response  Sensor Response
        NULL terminated string
        Sensor Response Packet
    cigi.sensor_response.frame_ctr  Frame Counter
        Unsigned 32-bit integer
        Indicates the IG's frame counter at the time that the IG calculates the gate and line-of-sight intersection data
    cigi.sensor_response.gate_x_pos  Gate X Position (degrees)
        Single-precision floating point
        Specifies the gate symbol's position along the view's X axis
    cigi.sensor_response.gate_x_size  Gate X Size (pixels or raster lines)
        Unsigned 16-bit integer
        Specifies the gate symbol size along the view's X axis
    cigi.sensor_response.gate_y_pos  Gate Y Position (degrees)
        Single-precision floating point
        Specifies the gate symbol's position along the view's Y axis
    cigi.sensor_response.gate_y_size  Gate Y Size (pixels or raster lines)
        Unsigned 16-bit integer
        Specifies the gate symbol size along the view's Y axis
    cigi.sensor_response.sensor_id  Sensor ID
        Unsigned 8-bit integer
        Identifies the sensor response corresponding to the associated sensor control data packet
    cigi.sensor_response.sensor_status  Sensor Status
        Unsigned 8-bit integer
        Indicates the current tracking state of the sensor
    cigi.sensor_response.status  Sensor Status
        Unsigned 8-bit integer
        Indicates the current sensor mode
    cigi.sensor_response.view_id  View ID
        Unsigned 8-bit integer
        Indicates the sensor view
    cigi.sensor_response.x_offset  Gate X Offset (degrees)
        Unsigned 16-bit integer
        Specifies the target's horizontal offset from the view plane normal
    cigi.sensor_response.x_size  Gate X Size
        Unsigned 16-bit integer
        Specifies the target size in the X direction (horizontal) in pixels
    cigi.sensor_response.y_offset  Gate Y Offset (degrees)
        Unsigned 16-bit integer
        Specifies the target's vertical offset from the view plane normal
    cigi.sensor_response.y_size  Gate Y Size
        Unsigned 16-bit integer
        Specifies the target size in the Y direction (vertical) in pixels
    cigi.short_art_part_control  Short Articulated Part Control
        NULL terminated string
        Short Articulated Part Control Packet
    cigi.short_art_part_control.dof_1  DOF 1
        Single-precision floating point
        Specifies either an offset or an angular position for the part identified by Articulated Part ID 1
    cigi.short_art_part_control.dof_2  DOF 2
        Single-precision floating point
        Specifies either an offset or an angular position for the part identified by Articulated Part ID 2
    cigi.short_art_part_control.dof_select_1  DOF Select 1
        Unsigned 8-bit integer
        Specifies the degree of freedom to which the value of DOF 1 is applied
    cigi.short_art_part_control.dof_select_2  DOF Select 2
        Unsigned 8-bit integer
        Specifies the degree of freedom to which the value of DOF 2 is applied
    cigi.short_art_part_control.entity_id  Entity ID
        Unsigned 16-bit integer
        Specifies the entity to which the articulated part(s) belongs
    cigi.short_art_part_control.part_enable_1  Articulated Part Enable 1
        Boolean
        Determines whether the articulated part submodel specified by Articulated Part ID 1 should be enabled or disabled within the scene graph
    cigi.short_art_part_control.part_enable_2  Articulated Part Enable 2
        Boolean
        Determines whether the articulated part submodel specified by Articulated Part ID 2 should be enabled or disabled within the scene graph
    cigi.short_art_part_control.part_id_1  Articulated Part ID 1
        Unsigned 8-bit integer
        Specifies an articulated part to which the data in this packet should be applied
    cigi.short_art_part_control.part_id_2  Articulated Part ID 2
        Unsigned 8-bit integer
        Specifies an articulated part to which the data in this packet should be applied
    cigi.short_component_control  Short Component Control
        NULL terminated string
        Short Component Control Packet
    cigi.short_component_control.component_class  Component Class
        Unsigned 8-bit integer
        Identifies the type of object to which the Instance ID parameter refers
    cigi.short_component_control.component_id  Component ID
        Unsigned 16-bit integer
        Identifies the component to which the data in this packet should be applied
    cigi.short_component_control.component_state  Component State
        Unsigned 8-bit integer
        Specifies a discrete state for the component
    cigi.short_component_control.data_1  Component Data 1
        Byte array
        User-defined component data
    cigi.short_component_control.data_2  Component Data 2
        Byte array
        User-defined component data
    cigi.short_component_control.instance_id  Instance ID
        Unsigned 16-bit integer
        Identifies the object to which the component belongs
    cigi.short_symbol_control  Short Symbol Control
        NULL terminated string
        Short Symbol Control Packet
    cigi.short_symbol_control.alpha1  Alpha 1
        Unsigned 8-bit integer
        Specifies the alpha color component
    cigi.short_symbol_control.alpha2  Alpha 2
        Unsigned 8-bit integer
        Specifies the alpha color component
    cigi.short_symbol_control.attach_state  Atach State
        Boolean
        Specifies whether this symbol should be attached to another
    cigi.short_symbol_control.attribute_select1  Attribute Select 1
        Unsigned 8-bit integer
        Identifies the attribute whose value is specified in Attribute Value 1
    cigi.short_symbol_control.attribute_select2  Attribute Select 2
        Unsigned 8-bit integer
        Identifies the attribute whose value is specified in Attribute Value 2
    cigi.short_symbol_control.blue1  Blue 1
        Unsigned 8-bit integer
        Specifies the blue color component
    cigi.short_symbol_control.blue2  Blue 2
        Unsigned 8-bit integer
        Specifies the blue color component
    cigi.short_symbol_control.flash_control  Flash Control
        Boolean
        Specifies whether the flash cycle is continued or restarted
    cigi.short_symbol_control.green1  Green 1
        Unsigned 8-bit integer
        Specifies the green color component
    cigi.short_symbol_control.green2  Green 2
        Unsigned 8-bit integer
        Specifies the green color component
    cigi.short_symbol_control.inherit_color  Inherit Color
        Boolean
        Specifies whether the symbol inherits color from a parent symbol
    cigi.short_symbol_control.red1  Red 1
        Unsigned 8-bit integer
        Specifies the red color component
    cigi.short_symbol_control.red2  Red 2
        Unsigned 8-bit integer
        Specifies the red color component
    cigi.short_symbol_control.symbol_id  Symbol ID
        Unsigned 16-bit integer
        Specifies the symbol to which this packet is applied
    cigi.short_symbol_control.symbol_state  Symbol State
        Unsigned 8-bit integer
        Specifies whether the symbol should be hidden, visible, or destroyed
    cigi.short_symbol_control.value1  Value 1
        Unsigned 32-bit integer
        Specifies the value for attribute 1
    cigi.short_symbol_control.value2  Value 2
        Unsigned 32-bit integer
        Specifies the value for attribute 2
    cigi.sof  Start of Frame
        NULL terminated string
        Start of Frame Packet
    cigi.sof.db_number  Database Number
        Signed 8-bit integer
        Indicates load status of the requested database
    cigi.sof.earth_reference_model  Earth Reference Model
        Boolean
        Indicates whether the IG is using a custom Earth Reference Model or the default WGS 84 reference ellipsoid for coordinate conversion calculations
    cigi.sof.frame_ctr  IG to Host Frame Counter
        Unsigned 32-bit integer
        Contains a number representing a particular frame
    cigi.sof.ig_frame_number  IG Frame Number
        Unsigned 32-bit integer
        Uniquely identifies the IG data frame
    cigi.sof.ig_mode  IG Mode
        Unsigned 8-bit integer
        Identifies to the host the current operating mode of the IG
    cigi.sof.ig_status  IG Status Code
        Unsigned 8-bit integer
        Indicates the error status of the IG
    cigi.sof.ig_status_code  IG Status Code
        Unsigned 8-bit integer
        Indicates the operational status of the IG
    cigi.sof.last_host_frame_number  Last Host Frame Number
        Unsigned 32-bit integer
        Contains the value of the Host Frame parameter in the last IG Control packet received from the Host.
    cigi.sof.minor_version  Minor Version
        Unsigned 8-bit integer
        Indicates the minor version of the CIGI interface
    cigi.sof.time_tag  Timing Value (microseconds)
        Single-precision floating point
        Contains a timing value that is used to time-tag the ethernet message during asynchronous operation
    cigi.sof.timestamp  Timestamp (microseconds)
        Unsigned 32-bit integer
        Indicates the number of 10 microsecond "ticks" since some initial reference time
    cigi.sof.timestamp_valid  Timestamp Valid
        Boolean
        Indicates whether the Timestamp parameter contains a valid value
    cigi.special_effect_def  Special Effect Definition
        NULL terminated string
        Special Effect Definition Packet
    cigi.special_effect_def.blue  Blue Color Value
        Unsigned 8-bit integer
        Specifies the blue component of a color to be applied to the effect
    cigi.special_effect_def.burst_interval  Burst Interval (s)
        Single-precision floating point
        Indicates the time between successive bursts
    cigi.special_effect_def.color_enable  Color Enable
        Boolean
        Indicates whether the red, green, and blue color values will be applied to the special effect
    cigi.special_effect_def.duration  Duration (s)
        Single-precision floating point
        Indicates how long an effect or sequence of burst will be active
    cigi.special_effect_def.effect_count  Effect Count
        Unsigned 16-bit integer
        Indicates how many effects are contained within a single burst
    cigi.special_effect_def.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates which effect is being modified
    cigi.special_effect_def.green  Green Color Value
        Unsigned 8-bit integer
        Specifies the green component of a color to be applied to the effect
    cigi.special_effect_def.red  Red Color Value
        Unsigned 8-bit integer
        Specifies the red component of a color to be applied to the effect
    cigi.special_effect_def.separation  Separation (m)
        Single-precision floating point
        Indicates the distance between particles within a burst
    cigi.special_effect_def.seq_direction  Sequence Direction
        Boolean
        Indicates whether the effect animation sequence should be sequence from beginning to end or vice versa
    cigi.special_effect_def.time_scale  Time Scale
        Single-precision floating point
        Specifies a scale factor to apply to the time period for the effect's animation sequence
    cigi.special_effect_def.x_scale  X Scale
        Single-precision floating point
        Specifies a scale factor to apply along the effect's X axis
    cigi.special_effect_def.y_scale  Y Scale
        Single-precision floating point
        Specifies a scale factor to apply along the effect's Y axis
    cigi.special_effect_def.z_scale  Z Scale
        Single-precision floating point
        Specifies a scale factor to apply along the effect's Z axis
    cigi.srcport  Source Port
        Unsigned 16-bit integer
    cigi.symbl_circle_def.drawing_style  Drawing Style
        Boolean
        Specifies whether the circles and arcs are curved lines or filled areas
    cigi.symbl_line_def.primitive_type  Drawing Style
        Boolean
        Specifies the type of point or line primitive used
    cigi.symbl_srfc_def  Symbol Surface Definition
        NULL terminated string
        Symbol Surface Definition Packet
    cigi.symbl_srfc_def.attach_type  Attach Type
        Boolean
        Specifies whether the surface should be attached to an entity or view
    cigi.symbl_srfc_def.billboard  Billboard
        Boolean
        Specifies whether the surface is treated as a billboard
    cigi.symbl_srfc_def.entity_view_id  Entity ID/View ID
        Unsigned 16-bit integer
        Specifies the entity or view to which this symbol surface is attached
    cigi.symbl_srfc_def.height  Height (m/degrees)
        Single-precision floating point
        Specifies the height of the symbol surface
    cigi.symbl_srfc_def.max_u  Max U (surface horizontal units)
        Single-precision floating point
        Specifies the maximum U coordinate of the symbol surface's viewable area
    cigi.symbl_srfc_def.max_v  Max V (surface vertical units)
        Single-precision floating point
        Specifies the maximum V coordinate of the symbol surface's viewable area
    cigi.symbl_srfc_def.min_u  Min U (surface horizontal units)
        Single-precision floating point
        Specifies the minimum U coordinate of the symbol surface's viewable area
    cigi.symbl_srfc_def.min_v  Min V (surface vertical units)
        Single-precision floating point
        Specifies the minimum V coordinate of the symbol surface's viewable area
    cigi.symbl_srfc_def.perspective_growth_enable  Perspective Growth Enable
        Boolean
        Specifies whether the surface appears to maintain a constant size or has perspective growth
    cigi.symbl_srfc_def.pitch  Pitch (degrees)
        Single-precision floating point
        Specifies the rotation about the surface's Y axis
    cigi.symbl_srfc_def.roll  Roll (degrees)
        Single-precision floating point
        Specifies the rotation about the surface's X axis
    cigi.symbl_srfc_def.surface_id  Surface ID
        Unsigned 16-bit integer
        Identifies the symbol surface to which this packet is applied
    cigi.symbl_srfc_def.surface_state  Surface State
        Boolean
        Specifies whether the symbol surface should be active or destroyed
    cigi.symbl_srfc_def.width  Width (m/degrees)
        Single-precision floating point
        Specifies the width of the symbol surface
    cigi.symbl_srfc_def.xoff_left  X Offset (m)/Left
        Single-precision floating point
        Specifies the x offset or leftmost boundary for the symbol surface
    cigi.symbl_srfc_def.yaw_bottom  Yaw (degrees)/Bottom
        Single-precision floating point
        Specifies the rotation about the surface's Z axis or bottommost boundary for the symbol surface
    cigi.symbl_srfc_def.yoff_right  Y Offset (m)/Right
        Single-precision floating point
        Specifies the y offset or rightmost boundary for the symbol surface
    cigi.symbl_srfc_def.zoff_top  Z Offset (m)/Top
        Single-precision floating point
        Specifies the z offset or topmost boundary for the symbol surface
    cigi.symbol_circle_def  Symbol Circle Definition
        NULL terminated string
        Symbol Circle Definition Packet
    cigi.symbol_circle_def.center_u1  Center U 1 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the center
    cigi.symbol_circle_def.center_u2  Center U 2 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the center
    cigi.symbol_circle_def.center_u3  Center U 3 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the center
    cigi.symbol_circle_def.center_u4  Center U 4 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the center
    cigi.symbol_circle_def.center_u5  Center U 5 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the center
    cigi.symbol_circle_def.center_u6  Center U 6 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the center
    cigi.symbol_circle_def.center_u7  Center U 7 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the center
    cigi.symbol_circle_def.center_u8  Center U 8 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the center
    cigi.symbol_circle_def.center_u9  Center U 9 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the center
    cigi.symbol_circle_def.center_v1  Center V 1 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the center
    cigi.symbol_circle_def.center_v2  Center V 2 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the center
    cigi.symbol_circle_def.center_v3  Center V 3 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the center
    cigi.symbol_circle_def.center_v4  Center V 4 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the center
    cigi.symbol_circle_def.center_v5  Center V 5 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the center
    cigi.symbol_circle_def.center_v6  Center V 6 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the center
    cigi.symbol_circle_def.center_v7  Center V 7 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the center
    cigi.symbol_circle_def.center_v8  Center V 8 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the center
    cigi.symbol_circle_def.center_v9  Center V 9 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the center
    cigi.symbol_circle_def.end_angle1  End Angle 1 (degrees)
        Single-precision floating point
        Specifies the end angle
    cigi.symbol_circle_def.end_angle2  End Angle 2 (degrees)
        Single-precision floating point
        Specifies the end angle
    cigi.symbol_circle_def.end_angle3  End Angle 3 (degrees)
        Single-precision floating point
        Specifies the end angle
    cigi.symbol_circle_def.end_angle4  End Angle 4 (degrees)
        Single-precision floating point
        Specifies the end angle
    cigi.symbol_circle_def.end_angle5  End Angle 5 (degrees)
        Single-precision floating point
        Specifies the end angle
    cigi.symbol_circle_def.end_angle6  End Angle 6 (degrees)
        Single-precision floating point
        Specifies the end angle
    cigi.symbol_circle_def.end_angle7  End Angle 7 (degrees)
        Single-precision floating point
        Specifies the end angle
    cigi.symbol_circle_def.end_angle8  End Angle 8 (degrees)
        Single-precision floating point
        Specifies the end angle
    cigi.symbol_circle_def.end_angle9  End Angle 9 (degrees)
        Single-precision floating point
        Specifies the end angle
    cigi.symbol_circle_def.inner_radius1  Inner Radius 1 (scaled symbol surface units)
        Single-precision floating point
        Specifies the inner radius
    cigi.symbol_circle_def.inner_radius2  Inner Radius 2 (scaled symbol surface units)
        Single-precision floating point
        Specifies the inner radius
    cigi.symbol_circle_def.inner_radius3  Inner Radius 3 (scaled symbol surface units)
        Single-precision floating point
        Specifies the inner radius
    cigi.symbol_circle_def.inner_radius4  Inner Radius 4 (scaled symbol surface units)
        Single-precision floating point
        Specifies the inner radius
    cigi.symbol_circle_def.inner_radius5  Inner Radius 5 (scaled symbol surface units)
        Single-precision floating point
        Specifies the inner radius
    cigi.symbol_circle_def.inner_radius6  Inner Radius 6 (scaled symbol surface units)
        Single-precision floating point
        Specifies the inner radius
    cigi.symbol_circle_def.inner_radius7  Inner Radius 7 (scaled symbol surface units)
        Single-precision floating point
        Specifies the inner radius
    cigi.symbol_circle_def.inner_radius8  Inner Radius 8 (scaled symbol surface units)
        Single-precision floating point
        Specifies the inner radius
    cigi.symbol_circle_def.inner_radius9  Inner Radius 9 (scaled symbol surface units)
        Single-precision floating point
        Specifies the inner radius
    cigi.symbol_circle_def.line_width  Line Width (scaled symbol surface units)
        Single-precision floating point
        Specifies the thickness of the line
    cigi.symbol_circle_def.radius1  Radius 1 (scaled symbol surface units)
        Single-precision floating point
        Specifies the radius
    cigi.symbol_circle_def.radius2  Radius 2 (scaled symbol surface units)
        Single-precision floating point
        Specifies the radius
    cigi.symbol_circle_def.radius3  Radius 3 (scaled symbol surface units)
        Single-precision floating point
        Specifies the radius
    cigi.symbol_circle_def.radius4  Radius 4 (scaled symbol surface units)
        Single-precision floating point
        Specifies the radius
    cigi.symbol_circle_def.radius5  Radius 5 (scaled symbol surface units)
        Single-precision floating point
        Specifies the radius
    cigi.symbol_circle_def.radius6  Radius 6 (scaled symbol surface units)
        Single-precision floating point
        Specifies the radius
    cigi.symbol_circle_def.radius7  Radius 7 (scaled symbol surface units)
        Single-precision floating point
        Specifies the radius
    cigi.symbol_circle_def.radius8  Radius 8 (scaled symbol surface units)
        Single-precision floating point
        Specifies the radius
    cigi.symbol_circle_def.radius9  Radius 9 (scaled symbol surface units)
        Single-precision floating point
        Specifies the radius
    cigi.symbol_circle_def.start_angle1  Start Angle 1 (degrees)
        Single-precision floating point
        Specifies the start angle
    cigi.symbol_circle_def.start_angle2  Start Angle 2 (degrees)
        Single-precision floating point
        Specifies the start angle
    cigi.symbol_circle_def.start_angle3  Start Angle 3 (degrees)
        Single-precision floating point
        Specifies the start angle
    cigi.symbol_circle_def.start_angle4  Start Angle 4 (degrees)
        Single-precision floating point
        Specifies the start angle
    cigi.symbol_circle_def.start_angle5  Start Angle 5 (degrees)
        Single-precision floating point
        Specifies the start angle
    cigi.symbol_circle_def.start_angle6  Start Angle 6 (degrees)
        Single-precision floating point
        Specifies the start angle
    cigi.symbol_circle_def.start_angle7  Start Angle 7 (degrees)
        Single-precision floating point
        Specifies the start angle
    cigi.symbol_circle_def.start_angle8  Start Angle 8 (degrees)
        Single-precision floating point
        Specifies the start angle
    cigi.symbol_circle_def.start_angle9  Start Angle 9 (degrees)
        Single-precision floating point
        Specifies the start angle
    cigi.symbol_circle_def.stipple_pattern  Stipple Pattern
        Unsigned 16-bit integer
        Specifies the dash pattern used
    cigi.symbol_circle_def.stipple_pattern_length  Stipple Pattern Length (scaled symbol surface units)
        Single-precision floating point
        Specifies the length of one complete repetition of the stipple pattern
    cigi.symbol_circle_def.symbol_id  Symbol ID
        Unsigned 16-bit integer
        Specifies the identifier of the symbol that is being defined
    cigi.symbol_clone  Symbol Surface Definition
        NULL terminated string
        Symbol Clone Packet
    cigi.symbol_clone.source_id  Source ID
        Unsigned 16-bit integer
        Identifies the symbol to copy or template to instantiate
    cigi.symbol_clone.source_type  Source Type
        Boolean
        Identifies the source as an existing symbol or symbol template
    cigi.symbol_clone.symbol_id  Symbol ID
        Unsigned 16-bit integer
        Specifies the identifier of the symbol that is being defined
    cigi.symbol_control  Symbol Control
        NULL terminated string
        Symbol Control Packet
    cigi.symbol_control.alpha  Alpha
        Unsigned 8-bit integer
        Specifies the alpha color component
    cigi.symbol_control.attach_state  Attach State
        Boolean
        Specifies whether this symbol should be attached to another
    cigi.symbol_control.blue  Blue
        Unsigned 8-bit integer
        Specifies the blue color component
    cigi.symbol_control.flash_control  Flash Control
        Boolean
        Specifies whether the flash cycle is continued or restarted
    cigi.symbol_control.flash_duty_cycle  Flash Duty Cycle (%)
        Unsigned 8-bit integer
        Specifies the duty cycle for a flashing symbol
    cigi.symbol_control.flash_period  Flash Period (seconds)
        Single-precision floating point
        Specifies the duration of a single flash cycle
    cigi.symbol_control.green  Green
        Unsigned 8-bit integer
        Specifies the green color component
    cigi.symbol_control.inherit_color  Inherit Color
        Boolean
        Specifies whether the symbol inherits color from a parent symbol
    cigi.symbol_control.layer  Layer
        Unsigned 8-bit integer
        Specifies the layer for the symbol
    cigi.symbol_control.parent_symbol_id  Parent Symbol ID
        Unsigned 16-bit integer
        Specifies the parent for the symbol
    cigi.symbol_control.position_u  Position U (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position
    cigi.symbol_control.position_v  Position V (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position
    cigi.symbol_control.red  Red
        Unsigned 8-bit integer
        Specifies the red color component
    cigi.symbol_control.rotation  Rotation (degrees)
        Single-precision floating point
        Specifies the rotation
    cigi.symbol_control.scale_u  Scale U
        Single-precision floating point
        Specifies the u scaling factor
    cigi.symbol_control.scale_v  Scale V
        Single-precision floating point
        Specifies the v scaling factor
    cigi.symbol_control.surface_id  Surface ID
        Unsigned 16-bit integer
        Specifies the symbol surface for the symbol
    cigi.symbol_control.symbol_id  Symbol ID
        Unsigned 16-bit integer
        Specifies the symbol to which this packet is applied
    cigi.symbol_control.symbol_state  Symbol State
        Unsigned 8-bit integer
        Specifies whether the symbol should be hidden, visible, or destroyed
    cigi.symbol_line_def  Symbol Line Definition
        NULL terminated string
        Symbol Line Definition Packet
    cigi.symbol_line_def.line_width  Line Width (scaled symbol surface units)
        Single-precision floating point
        Specifies the thickness of the line
    cigi.symbol_line_def.stipple_pattern  Stipple Pattern
        Unsigned 16-bit integer
        Specifies the dash pattern used
    cigi.symbol_line_def.stipple_pattern_length  Stipple Pattern Length (scaled symbol surface units)
        Single-precision floating point
        Specifies the length of one complete repetition of the stipple pattern
    cigi.symbol_line_def.symbol_id  Symbol ID
        Unsigned 16-bit integer
        Specifies the identifier of the symbol that is being defined
    cigi.symbol_line_def.vertex_u1  Vertex U 1 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u10  Vertex U 10 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u11  Vertex U 11 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u12  Vertex U 12 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u13  Vertex U 13 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u14  Vertex U 14 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u15  Vertex U 15 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u16  Vertex U 16 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u17  Vertex U 17 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u18  Vertex U 18 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u19  Vertex U 19 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u2  Vertex U 2 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u20  Vertex U 20 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u21  Vertex U 21 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u22  Vertex U 22 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u23  Vertex U 23 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u24  Vertex U 24 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u25  Vertex U 25 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u26  Vertex U 26 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u27  Vertex U 27 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u28  Vertex U 28 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u29  Vertex U 29 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u3  Vertex U 3 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u4  Vertex U 4 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u5  Vertex U 5 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u6  Vertex U 6 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u7  Vertex U 7 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u8  Vertex U 8 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_u9  Vertex U 9 (scaled symbol surface units)
        Single-precision floating point
        Specifies the u position of the vertex
    cigi.symbol_line_def.vertex_v1  Vertex V 1 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v10  Vertex V 10 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v11  Vertex V 11 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v12  Vertex V 12 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v13  Vertex V 13 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v14  Vertex V 14 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v15  Vertex V 15 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v16  Vertex V 16 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v17  Vertex V 17 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v18  Vertex V 18 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v19  Vertex V 19 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v2  Vertex V 2 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v20  Vertex V 20 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v21  Vertex V 21 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v22  Vertex V 22 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v23  Vertex V 23 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v24  Vertex V 24 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v25  Vertex V 25 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v26  Vertex V 26 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v27  Vertex V 27 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v28  Vertex V 28 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v29  Vertex V 29 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v3  Vertex V 3 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v4  Vertex V 4 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v5  Vertex V 5 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v6  Vertex V 6 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v7  Vertex V 7 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v8  Vertex V 8 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_line_def.vertex_v9  Vertex V 9 (scaled symbol surface units)
        Single-precision floating point
        Specifies the v position of the vertex
    cigi.symbol_text_def  Symbol Text Definition
        NULL terminated string
        Symbol Text Definition Packet
    cigi.symbol_text_def.alignment  Alignment
        Unsigned 8-bit integer
        Specifies the position of the symbol's reference point
    cigi.symbol_text_def.font_ident  Font ID
        Unsigned 8-bit integer
        Specifies the font to be used
    cigi.symbol_text_def.font_size  Font Size
        Single-precision floating point
        Specifies the font size
    cigi.symbol_text_def.orientation  Orientation
        Unsigned 8-bit integer
        Specifies the orientation of the text
    cigi.symbol_text_def.symbol_id  Symbol ID
        Unsigned 16-bit integer
        Specifies the identifier of the symbol that is being defined
    cigi.symbol_text_def.text  Text
        NULL terminated string
        Symbol text
    cigi.terr_surface_cond_response  Terrestrial Surface Conditions Response
        NULL terminated string
        Terrestrial Surface Conditions Response Packet
    cigi.terr_surface_cond_response.request_id  Request ID
        Unsigned 8-bit integer
        Identifies the environmental conditions request to which this response packet corresponds
    cigi.terr_surface_cond_response.surface_id  Surface Condition ID
        Unsigned 32-bit integer
        Indicates the presence of a specific surface condition or contaminant at the test point
    cigi.terrestrial_surface_conditions_control  Terrestrial Surface Conditions Control
        NULL terminated string
        Terrestrial Surface Conditions Control Packet
    cigi.terrestrial_surface_conditions_control.coverage  Coverage (%)
        Unsigned 8-bit integer
        Determines the degree of coverage of the specified surface contaminant
    cigi.terrestrial_surface_conditions_control.entity_region_id  Entity ID/Region ID
        Unsigned 16-bit integer
        Specifies the environmental entity to which the surface condition attributes in this packet are applied
    cigi.terrestrial_surface_conditions_control.scope  Scope
        Unsigned 8-bit integer
        Determines whether the specified surface conditions are applied globally, regionally, or to an environmental entity
    cigi.terrestrial_surface_conditions_control.severity  Severity
        Unsigned 8-bit integer
        Determines the degree of severity for the specified surface contaminant(s)
    cigi.terrestrial_surface_conditions_control.surface_condition_enable  Surface Condition Enable
        Boolean
        Specifies whether the surface condition attribute identified by the Surface Condition ID parameter should be enabled
    cigi.terrestrial_surface_conditions_control.surface_condition_id  Surface Condition ID
        Unsigned 16-bit integer
        Identifies a surface condition or contaminant
    cigi.trajectory_def  Trajectory Definition
        NULL terminated string
        Trajectory Definition Packet
    cigi.trajectory_def.acceleration  Acceleration Factor (m/s^2)
        Single-precision floating point
        Indicates the acceleration factor that will be applied to the Vz component of the velocity vector over time to simulate the effects of gravity on the object
    cigi.trajectory_def.acceleration_x  Acceleration X (m/s^2)
        Single-precision floating point
        Specifies the X component of the acceleration vector
    cigi.trajectory_def.acceleration_y  Acceleration Y (m/s^2)
        Single-precision floating point
        Specifies the Y component of the acceleration vector
    cigi.trajectory_def.acceleration_z  Acceleration Z (m/s^2)
        Single-precision floating point
        Specifies the Z component of the acceleration vector
    cigi.trajectory_def.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates which entity is being influenced by this trajectory behavior
    cigi.trajectory_def.retardation  Retardation Rate (m/s)
        Single-precision floating point
        Indicates what retardation factor will be applied to the object's motion
    cigi.trajectory_def.retardation_rate  Retardation Rate (m/s^2)
        Single-precision floating point
        Specifies the magnitude of an acceleration applied against the entity's instantaneous linear velocity vector
    cigi.trajectory_def.terminal_velocity  Terminal Velocity (m/s)
        Single-precision floating point
        Indicates what final velocity the object will be allowed to obtain
    cigi.unknown  Unknown
        NULL terminated string
        Unknown Packet
    cigi.user_definable  User Definable
        NULL terminated string
        User definable packet
    cigi.user_defined  User-Defined
        NULL terminated string
        User-Defined Packet
    cigi.version  CIGI Version
        Unsigned 8-bit integer
        Identifies the version of CIGI interface that is currently running on the host
    cigi.view_control  View Control
        NULL terminated string
        View Control Packet
    cigi.view_control.entity_id  Entity ID
        Unsigned 16-bit integer
        Indicates the entity to which this view should be attached
    cigi.view_control.group_id  Group ID
        Unsigned 8-bit integer
        Specifies the view group to which the contents of this packet are applied
    cigi.view_control.pitch  Pitch (degrees)
        Single-precision floating point
        The rotation about the view's Y axis
    cigi.view_control.pitch_enable  Pitch Enable
        Unsigned 8-bit integer
        Identifies whether the pitch parameter should be applied to the specified view or view group
    cigi.view_control.roll  Roll (degrees)
        Single-precision floating point
        The rotation about the view's X axis
    cigi.view_control.roll_enable  Roll Enable
        Unsigned 8-bit integer
        Identifies whether the roll parameter should be applied to the specified view or view group
    cigi.view_control.view_group  View Group Select
        Unsigned 8-bit integer
        Specifies which view group is to be controlled by the offsets
    cigi.view_control.view_id  View ID
        Unsigned 8-bit integer
        Specifies which view position is associated with offsets and rotation specified by this data packet
    cigi.view_control.x_offset  X Offset (m)
        Single-precision floating point
        Defines the X component of the view offset vector along the entity's longitudinal axis
    cigi.view_control.xoff  X Offset (m)
        Single-precision floating point
        Specifies the position of the view eyepoint along the X axis of the entity specified by the Entity ID parameter
    cigi.view_control.xoff_enable  X Offset Enable
        Boolean
        Identifies whether the x offset parameter should be applied to the specified view or view group
    cigi.view_control.y_offset  Y Offset
        Single-precision floating point
        Defines the Y component of the view offset vector along the entity's lateral axis
    cigi.view_control.yaw  Yaw (degrees)
        Single-precision floating point
        The rotation about the view's Z axis
    cigi.view_control.yaw_enable  Yaw Enable
        Unsigned 8-bit integer
        Identifies whether the yaw parameter should be applied to the specified view or view group
    cigi.view_control.yoff  Y Offset (m)
        Single-precision floating point
        Specifies the position of the view eyepoint along the Y axis of the entity specified by the Entity ID parameter
    cigi.view_control.yoff_enable  Y Offset Enable
        Unsigned 8-bit integer
        Identifies whether the y offset parameter should be applied to the specified view or view group
    cigi.view_control.z_offset  Z Offset
        Single-precision floating point
        Defines the Z component of the view offset vector along the entity's vertical axis
    cigi.view_control.zoff  Z Offset (m)
        Single-precision floating point
        Specifies the position of the view eyepoint along the Z axis of the entity specified by the Entity ID parameter
    cigi.view_control.zoff_enable  Z Offset Enable
        Unsigned 8-bit integer
        Identifies whether the z offset parameter should be applied to the specified view or view group
    cigi.view_def  View Definition
        NULL terminated string
        View Definition Packet
    cigi.view_def.bottom  Bottom (degrees)
        Single-precision floating point
        Specifies the bottom half-angle of the view frustum
    cigi.view_def.bottom_enable  Field of View Bottom Enable
        Boolean
        Identifies whether the field of view bottom value is manipulated from the Host
    cigi.view_def.far  Far (m)
        Single-precision floating point
        Specifies the position of the view's far clipping plane
    cigi.view_def.far_enable  Field of View Far Enable
        Boolean
        Identifies whether the field of view far value is manipulated from the Host
    cigi.view_def.fov_bottom  Field of View Bottom (degrees)
        Single-precision floating point
        Defines the bottom clipping plane for the view
    cigi.view_def.fov_far  Field of View Far (m)
        Single-precision floating point
        Defines the far clipping plane for the view
    cigi.view_def.fov_left  Field of View Left (degrees)
        Single-precision floating point
        Defines the left clipping plane for the view
    cigi.view_def.fov_near  Field of View Near (m)
        Single-precision floating point
        Defines the near clipping plane for the view
    cigi.view_def.fov_right  Field of View Right (degrees)
        Single-precision floating point
        Defines the right clipping plane for the view
    cigi.view_def.fov_top  Field of View Top (degrees)
        Single-precision floating point
        Defines the top clipping plane for the view
    cigi.view_def.group_id  Group ID
        Unsigned 8-bit integer
        Specifies the group to which the view is to be assigned
    cigi.view_def.left  Left (degrees)
        Single-precision floating point
        Specifies the left half-angle of the view frustum
    cigi.view_def.left_enable  Field of View Left Enable
        Boolean
        Identifies whether the field of view left value is manipulated from the Host
    cigi.view_def.mirror  View Mirror
        Unsigned 8-bit integer
        Specifies what mirroring function should be applied to the view
    cigi.view_def.mirror_mode  Mirror Mode
        Unsigned 8-bit integer
        Specifies the mirroring function to be performed on the view
    cigi.view_def.near  Near (m)
        Single-precision floating point
        Specifies the position of the view's near clipping plane
    cigi.view_def.near_enable  Field of View Near Enable
        Boolean
        Identifies whether the field of view near value is manipulated from the Host
    cigi.view_def.pixel_rep  Pixel Replication
        Unsigned 8-bit integer
        Specifies what pixel replication function should be applied to the view
    cigi.view_def.pixel_replication  Pixel Replication Mode
        Unsigned 8-bit integer
        Specifies the pixel replication function to be performed on the view
    cigi.view_def.projection_type  Projection Type
        Boolean
        Specifies whether the view projection should be perspective or orthographic parallel
    cigi.view_def.reorder  Reorder
        Boolean
        Specifies whether the view should be moved to the top of any overlapping views
    cigi.view_def.right  Right (degrees)
        Single-precision floating point
        Specifies the right half-angle of the view frustum
    cigi.view_def.right_enable  Field of View Right Enable
        Boolean
        Identifies whether the field of view right value is manipulated from the Host
    cigi.view_def.top  Top (degrees)
        Single-precision floating point
        Specifies the top half-angle of the view frustum
    cigi.view_def.top_enable  Field of View Top Enable
        Boolean
        Identifies whether the field of view top value is manipulated from the Host
    cigi.view_def.tracker_assign  Tracker Assign
        Boolean
        Specifies whether the view should be controlled by an external tracking device
    cigi.view_def.view_group  View Group
        Unsigned 8-bit integer
        Specifies the view group to which the view is to be assigned
    cigi.view_def.view_id  View ID
        Unsigned 8-bit integer
        Specifies the view to which this packet should be applied
    cigi.view_def.view_type  View Type
        Unsigned 8-bit integer
        Specifies the view type
    cigi.wave_control  Wave Control
        NULL terminated string
        Wave Control Packet
    cigi.wave_control.breaker_type  Breaker Type
        Unsigned 8-bit integer
        Specifies the type of breaker within the surf zone
    cigi.wave_control.direction  Direction (degrees)
        Single-precision floating point
        Specifies the direction in which the wave propagates
    cigi.wave_control.entity_region_id  Entity ID/Region ID
        Unsigned 16-bit integer
        Specifies the surface entity for which the wave is defined or specifies the environmental region for which the wave is defined
    cigi.wave_control.height  Wave Height (m)
        Single-precision floating point
        Specifies the average vertical distance from trough to crest produced by the wave
    cigi.wave_control.leading  Leading (degrees)
        Single-precision floating point
        Specifies the phase angle at which the crest occurs
    cigi.wave_control.period  Period (s)
        Single-precision floating point
        Specifies the time required for one complete oscillation of the wave
    cigi.wave_control.phase_offset  Phase Offset (degrees)
        Single-precision floating point
        Specifies a phase offset for the wave
    cigi.wave_control.scope  Scope
        Unsigned 8-bit integer
        Specifies whether the wave is defined for global, regional, or entity-controlled maritime surface conditions
    cigi.wave_control.wave_enable  Wave Enable
        Boolean
        Determines whether the wave is enabled or disabled
    cigi.wave_control.wave_id  Wave ID
        Unsigned 8-bit integer
        Specifies the wave to which the attributes in this packet are applied
    cigi.wave_control.wavelength  Wavelength (m)
        Single-precision floating point
        Specifies the distance from a particular phase on a wave to the same phase on an adjacent wave
    cigi.wea_cond_response  Weather Conditions Response
        NULL terminated string
        Weather Conditions Response Packet
    cigi.wea_cond_response.air_temp  Air Temperature (degrees C)
        Single-precision floating point
        Indicates the air temperature at the requested location
    cigi.wea_cond_response.barometric_pressure  Barometric Pressure (mb or hPa)
        Single-precision floating point
        Indicates the atmospheric pressure at the requested location
    cigi.wea_cond_response.horiz_speed  Horizontal Wind Speed (m/s)
        Single-precision floating point
        Indicates the local wind speed parallel to the ellipsoid-tangential reference plane
    cigi.wea_cond_response.humidity  Humidity (%)
        Unsigned 8-bit integer
        Indicates the humidity at the request location
    cigi.wea_cond_response.request_id  Request ID
        Unsigned 8-bit integer
        Identifies the environmental conditions request to which this response packet corresponds
    cigi.wea_cond_response.vert_speed  Vertical Wind Speed (m/s)
        Single-precision floating point
        Indicates the local vertical wind speed
    cigi.wea_cond_response.visibility_range  Visibility Range (m)
        Single-precision floating point
        Indicates the visibility range at the requested location
    cigi.wea_cond_response.wind_direction  Wind Direction (degrees)
        Single-precision floating point
        Indicates the local wind direction
    cigi.weather_control  Weather Control
        NULL terminated string
        Weather Control Packet
    cigi.weather_control.aerosol_concentration  Aerosol Concentration (g/m^3)
        Single-precision floating point
        Specifies the concentration of water, smoke, dust, or other particles suspended in the air
    cigi.weather_control.air_temp  Air Temperature (degrees C)
        Single-precision floating point
        Identifies the local temperature inside the weather phenomenon
    cigi.weather_control.barometric_pressure  Barometric Pressure (mb or hPa)
        Single-precision floating point
        Specifies the atmospheric pressure within the weather layer
    cigi.weather_control.base_elevation  Base Elevation (m)
        Single-precision floating point
        Specifies the altitude of the base of the weather layer
    cigi.weather_control.cloud_type  Cloud Type
        Unsigned 8-bit integer
        Specifies the type of clouds contained within the weather layer
    cigi.weather_control.coverage  Coverage (%)
        Single-precision floating point
        Indicates the amount of area coverage a particular phenomenon has over the specified global visibility range given in the environment control data packet
    cigi.weather_control.elevation  Elevation (m)
        Single-precision floating point
        Indicates the base altitude of the weather phenomenon
    cigi.weather_control.entity_id  Entity ID
        Unsigned 16-bit integer
        Identifies the entity's ID
    cigi.weather_control.entity_region_id  Entity ID/Region ID
        Unsigned 16-bit integer
        Specifies the entity to which the weather attributes in this packet are applied
    cigi.weather_control.horiz_wind  Horizontal Wind Speed (m/s)
        Single-precision floating point
        Specifies the local wind speed parallel to the ellipsoid-tangential reference plane
    cigi.weather_control.humidity  Humidity (%)
        Unsigned 8-bit integer
        Specifies the humidity within the weather layer
    cigi.weather_control.layer_id  Layer ID
        Unsigned 8-bit integer
        Specifies the weather layer to which the data in this packet are applied
    cigi.weather_control.opacity  Opacity (%)
        Single-precision floating point
        Identifies the opacity of the weather phenomenon
    cigi.weather_control.phenomenon_type  Phenomenon Type
        Unsigned 16-bit integer
        Identifies the type of weather described by this data packet
    cigi.weather_control.random_lightning_enable  Random Lightning Enable
        Unsigned 8-bit integer
        Specifies whether the weather layer exhibits random lightning effects
    cigi.weather_control.random_winds  Random Winds Aloft
        Boolean
        Indicates whether a random frequency and duration should be applied to the winds aloft value
    cigi.weather_control.random_winds_enable  Random Winds Enable
        Boolean
        Specifies whether a random frequency and duration should be applied to the local wind effects
    cigi.weather_control.scope  Scope
        Unsigned 8-bit integer
        Specifies whether the weather is global, regional, or assigned to an entity
    cigi.weather_control.scud_enable  Scud Enable
        Boolean
        Indicates whether there will be scud effects applied to the phenomenon specified by this data packet
    cigi.weather_control.scud_frequency  Scud Frequency (%)
        Single-precision floating point
        Identifies the frequency for the scud effect
    cigi.weather_control.severity  Severity
        Unsigned 8-bit integer
        Indicates the severity of the weather phenomenon
    cigi.weather_control.thickness  Thickness (m)
        Single-precision floating point
        Indicates the vertical thickness of the weather phenomenon
    cigi.weather_control.transition_band  Transition Band (m)
        Single-precision floating point
        Indicates a vertical transition band both above and below a phenomenon
    cigi.weather_control.vert_wind  Vertical Wind Speed (m/s)
        Single-precision floating point
        Specifies the local vertical wind speed
    cigi.weather_control.visibility_range  Visibility Range (m)
        Single-precision floating point
        Specifies the visibility range through the weather layer
    cigi.weather_control.weather_enable  Weather Enable
        Boolean
        Indicates whether the phenomena specified by this data packet is visible
    cigi.weather_control.wind_direction  Winds Aloft Direction (degrees)
        Single-precision floating point
        Indicates local direction of the wind applied to the phenomenon
    cigi.weather_control.wind_speed  Winds Aloft Speed
        Single-precision floating point
        Identifies the local wind speed applied to the phenomenon

Common Industrial Protocol (cip)

    cip.attribute  Attribute
        Unsigned 8-bit integer
    cip.class  Class
        Unsigned 8-bit integer
    cip.connpoint  Connection Point
        Unsigned 8-bit integer
    cip.devtype  Device Type
        Unsigned 16-bit integer
    cip.epath  EPath
        Byte array
    cip.fwo.cmp  Compatibility
        Unsigned 8-bit integer
        EKey: Compatibility bit
    cip.fwo.major  Major Revision
        Unsigned 8-bit integer
        EKey: Major Revision
    cip.genstat  General Status
        Unsigned 8-bit integer
    cip.instance  Instance
        Unsigned 8-bit integer
    cip.linkaddress  Link Address
        Unsigned 8-bit integer
    cip.member  Member
        Unsigned 8-bit integer
    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

Common Open Policy Service (cops)

    cops.accttimer.value  Contents: ACCT Timer Value
        Unsigned 16-bit integer
        Accounting Timer Value in AcctTimer object
    cops.c_num  C-Num
        Unsigned 8-bit integer
        C-Num in COPS Object Header
    cops.c_type  C-Type
        Unsigned 8-bit integer
        C-Type in COPS Object Header
    cops.client_type  Client Type
        Unsigned 16-bit integer
        Client Type in COPS Common Header
    cops.context.m_type  M-Type
        Unsigned 16-bit integer
        M-Type in COPS Context Object
    cops.context.r_type  R-Type
        Unsigned 16-bit integer
        R-Type in COPS Context Object
    cops.cperror  Error
        Unsigned 16-bit integer
        Error in Error object
    cops.cperror_sub  Error Sub-code
        Unsigned 16-bit integer
        Error Sub-code in Error object
    cops.decision.cmd  Command-Code
        Unsigned 16-bit integer
        Command-Code in Decision/LPDP Decision object
    cops.decision.flags  Flags
        Unsigned 16-bit integer
        Flags in Decision/LPDP Decision object
    cops.epd.int  EPD Integer Data
        Signed 64-bit integer
    cops.epd.integer64  EPD Inetger64 Data
        Signed 64-bit integer
    cops.epd.ipv4  EPD IPAddress Data
        IPv4 address
    cops.epd.null  EPD Null Data
        Byte array
    cops.epd.octets  EPD Octet String Data
        Byte array
    cops.epd.oid  EPD OID Data
        Object Identifier
    cops.epd.opaque  EPD Opaque Data
        Byte array
    cops.epd.timeticks  EPD TimeTicks Data
        Unsigned 64-bit integer
    cops.epd.unknown  EPD Unknown Data
        Byte array
    cops.epd.unsigned32  EPD Unsigned32 Data
        Unsigned 64-bit integer
    cops.epd.unsigned64  EPD Unsigned64 Data
        Unsigned 64-bit integer
    cops.error  Error
        Unsigned 16-bit integer
        Error in Error object
    cops.error_sub  Error Sub-code
        Unsigned 16-bit integer
        Error Sub-code in Error object
    cops.errprid.instance_id  ErrorPRID Instance Identifier
        Object Identifier
    cops.flags  Flags
        Unsigned 8-bit integer
        Flags in COPS Common Header
    cops.gperror  Error
        Unsigned 16-bit integer
        Error in Error object
    cops.gperror_sub  Error Sub-code
        Unsigned 16-bit integer
        Error Sub-code in Error object
    cops.in-int.ipv4  IPv4 address
        IPv4 address
        IPv4 address in COPS IN-Int object
    cops.in-int.ipv6  IPv6 address
        IPv6 address
        IPv6 address in COPS IN-Int object
    cops.in-out-int.ifindex  ifIndex
        Unsigned 32-bit integer
        If SNMP is supported, corresponds to MIB-II ifIndex
    cops.integrity.key_id  Contents: Key ID
        Unsigned 32-bit integer
        Key ID in Integrity object
    cops.integrity.seq_num  Contents: Sequence Number
        Unsigned 32-bit integer
        Sequence Number in Integrity object
    cops.katimer.value  Contents: KA Timer Value
        Unsigned 16-bit integer
        Keep-Alive Timer Value in KATimer object
    cops.lastpdpaddr.ipv4  IPv4 address
        IPv4 address
        IPv4 address in COPS LastPDPAddr object
    cops.lastpdpaddr.ipv6  IPv6 address
        IPv6 address
        IPv6 address in COPS LastPDPAddr object
    cops.msg_len  Message Length
        Unsigned 32-bit integer
        Message Length in COPS Common Header
    cops.obj.len  Object Length
        Unsigned 32-bit integer
        Object Length in COPS Object Header
    cops.op_code  Op Code
        Unsigned 8-bit integer
        Op Code in COPS Common Header
    cops.out-int.ipv4  IPv4 address
        IPv4 address
        IPv4 address in COPS OUT-Int object
    cops.out-int.ipv6  IPv6 address
        IPv6 address
        IPv6 address in COPS OUT-Int
    cops.pc_activity_count  Count
        Unsigned 32-bit integer
    cops.pc_algorithm  Algorithm
        Unsigned 16-bit integer
    cops.pc_bcid  Billing Correlation ID
        Unsigned 32-bit integer
    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
    cops.pc_cmts_ip  CMTS IP Address
        IPv4 address
    cops.pc_cmts_ip_port  CMTS IP Port
        Unsigned 16-bit integer
    cops.pc_delete_subcode  Reason Sub Code
        Unsigned 16-bit integer
    cops.pc_dest_ip  Destination IP Address
        IPv4 address
    cops.pc_dest_port  Destination IP Port
        Unsigned 16-bit integer
    cops.pc_dfccc_id  CCC ID
        Unsigned 32-bit integer
    cops.pc_dfccc_ip  DF IP Address CCC
        IPv4 address
    cops.pc_dfccc_ip_port  DF IP Port CCC
        Unsigned 16-bit integer
    cops.pc_dfcdc_ip  DF IP Address CDC
        IPv4 address
    cops.pc_dfcdc_ip_port  DF IP Port CDC
        Unsigned 16-bit integer
    cops.pc_direction  Direction
        Unsigned 8-bit integer
    cops.pc_ds_field  DS Field (DSCP or TOS)
        Unsigned 8-bit integer
    cops.pc_gate_command_type  Gate Command Type
        Unsigned 16-bit integer
    cops.pc_gate_id  Gate Identifier
        Unsigned 32-bit integer
    cops.pc_gate_spec_flags  Flags
        Unsigned 8-bit integer
    cops.pc_key  Security Key
        Unsigned 32-bit integer
    cops.pc_max_packet_size  Maximum Packet Size
        Unsigned 32-bit integer
    cops.pc_min_policed_unit  Minimum Policed Unit
        Unsigned 32-bit integer
    cops.pc_mm_aarmask  Attribute Aggregation Rule Mask
        Unsigned 16-bit integer
        PacketCable Multimedia Committed Envelope Attribute Aggregation Rule Mask
    cops.pc_mm_amid_am_tag  AMID Application Manager Tag
        Unsigned 32-bit integer
        PacketCable Multimedia AMID Application Manager Tag
    cops.pc_mm_amid_application_type  AMID Application Type
        Unsigned 32-bit integer
        PacketCable Multimedia AMID Application Type
    cops.pc_mm_amrtrps  Assumed Minimum Reserved Traffic Rate Packet Size
        Unsigned 16-bit integer
        PacketCable Multimedia Committed Envelope Assumed Minimum Reserved Traffic Rate Packet Size
    cops.pc_mm_classifier_action  Action
        Unsigned 8-bit integer
        PacketCable Multimedia Classifier Action
    cops.pc_mm_classifier_activation_state  Activation State
        Unsigned 8-bit integer
        PacketCable Multimedia Classifier Activation State
    cops.pc_mm_classifier_destination_prefix_length  Destination Prefix Length
        Unsigned 8-bit integer
        PacketCable Multimedia Classifier Destination Prefix Length
    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 Classifier DSCP/TOS Mask
    cops.pc_mm_classifier_dst_addr  Destination address
        IPv4 address
        PacketCable Multimedia Classifier Destination IP Address
    cops.pc_mm_classifier_dst_addr_v6  IPv6 Destination Address
        IPv6 address
        PacketCable Multimedia Classifier IPv6 Destination Address
    cops.pc_mm_classifier_dst_mask  Destination mask
        IPv4 address
        PacketCable Multimedia Classifier Destination Mask
    cops.pc_mm_classifier_dst_port  Destination Port
        Unsigned 16-bit integer
        PacketCable Multimedia Classifier Source Port
    cops.pc_mm_classifier_dst_port_end  Destination Port End
        Unsigned 16-bit integer
        PacketCable Multimedia Classifier Source Port End
    cops.pc_mm_classifier_flags  Flags
        Unsigned 8-bit integer
        PacketCable Multimedia Classifier Flags
    cops.pc_mm_classifier_flow_label  Flow Label
        Unsigned 32-bit integer
        PacketCable Multimedia Classifier Flow Label
    cops.pc_mm_classifier_id  Classifier Id
        Unsigned 16-bit integer
        PacketCable Multimedia Classifier ID
    cops.pc_mm_classifier_next_header_type  Next Header Type
        Unsigned 16-bit integer
        PacketCable Multimedia Classifier Next Header Type
    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_source_prefix_length  Source Prefix Length
        Unsigned 8-bit integer
        PacketCable Multimedia Classifier Source Prefix Length
    cops.pc_mm_classifier_src_addr  Source address
        IPv4 address
        PacketCable Multimedia Classifier Source IP Address
    cops.pc_mm_classifier_src_addr_v6  IPv6 Source Address
        IPv6 address
        PacketCable Multimedia Classifier IPv6 Source Address
    cops.pc_mm_classifier_src_mask  Source mask
        IPv4 address
        PacketCable Multimedia Classifier Source Mask
    cops.pc_mm_classifier_src_port  Source Port
        Unsigned 16-bit integer
        PacketCable Multimedia Classifier Source Port
    cops.pc_mm_classifier_src_port_end  Source Port End
        Unsigned 16-bit integer
        PacketCable Multimedia Classifier Source Port End
    cops.pc_mm_classifier_tc_high  tc-high
        Unsigned 8-bit integer
        PacketCable Multimedia Classifier tc-high
    cops.pc_mm_classifier_tc_low  tc-low
        Unsigned 8-bit integer
        PacketCable Multimedia Classifier tc-low
    cops.pc_mm_classifier_tc_mask  tc-mask
        Unsigned 8-bit integer
        PacketCable Multimedia Classifier tc-mask
    cops.pc_mm_docsis_scn  Service Class Name
        NULL terminated string
        PacketCable Multimedia DOCSIS Service Class Name
    cops.pc_mm_downpeak  Downstream Peak Traffic Rate
        Unsigned 32-bit integer
        PacketCable Multimedia Downstream Peak Traffic Rate
    cops.pc_mm_downres  Downstream Resequencing
        Unsigned 32-bit integer
        PacketCable Multimedia Downstream Resequencing
    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_famask  Forbidden Attribute Mask
        Unsigned 16-bit integer
        PacketCable Multimedia Committed Envelope Forbidden Attribute Mask
    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 64-bit integer
        PacketCable Multimedia Gate Usage Info
    cops.pc_mm_mcburst  Maximum Concatenated Burst
        Unsigned 16-bit integer
        PacketCable Multimedia Committed Envelope Maximum Concatenated Burst
    cops.pc_mm_mdl  Maximum Downstream Latency
        Unsigned 32-bit integer
        PacketCable Multimedia Maximum Downstream Latency
    cops.pc_mm_mrtr  Minimum Reserved Traffic Rate
        Unsigned 32-bit integer
        PacketCable Multimedia Committed Envelope Minimum Reserved Traffic Rate
    cops.pc_mm_msg_receipt_key  Msg Receipt Key
        Unsigned 32-bit integer
        PacketCable Multimedia Msg Receipt Key
    cops.pc_mm_mstr  Maximum Sustained Traffic Rate
        Unsigned 32-bit integer
        PacketCable Multimedia Committed Envelope Maximum Sustained Traffic Rate
    cops.pc_mm_mtb  Maximum Traffic Burst
        Unsigned 32-bit integer
        PacketCable Multimedia Committed Envelope Maximum Traffic Burst
    cops.pc_mm_ngi  Nominal Grant Interval
        Unsigned 32-bit integer
        PacketCable Multimedia Nominal Grant Interval
    cops.pc_mm_npi  Nominal Polling Interval
        Unsigned 32-bit integer
        PacketCable Multimedia Nominal Polling Interval
    cops.pc_mm_psid  PSID
        Unsigned 32-bit integer
        PacketCable Multimedia PSID
    cops.pc_mm_ramask  Required Attribute Mask
        Unsigned 16-bit integer
        PacketCable Multimedia Committed Envelope Required Attribute Mask
    cops.pc_mm_rtp  Request Transmission Policy
        Unsigned 32-bit integer
        PacketCable Multimedia Committed Envelope Traffic Priority
    cops.pc_mm_sharedresourceid  SharedResourceID
        Unsigned 32-bit integer
        PacketCable Multimedia SharedResourceID
    cops.pc_mm_synch_options_report_type  Report Type
        Unsigned 8-bit integer
        PacketCable Multimedia Synch Options Report Type
    cops.pc_mm_synch_options_synch_type  Synch Type
        Unsigned 8-bit integer
        PacketCable Multimedia Synch Options Synch Type
    cops.pc_mm_tbul_ul  Usage Limit
        Unsigned 32-bit integer
        PacketCable Multimedia Time-Based Usage Limit
    cops.pc_mm_tgj  Tolerated Grant Jitter
        Unsigned 32-bit integer
        PacketCable Multimedia Tolerated Grant Jitter
    cops.pc_mm_tp  Traffic Priority
        Unsigned 8-bit integer
        PacketCable Multimedia Committed Envelope Traffic Priority
    cops.pc_mm_tpj  Tolerated Poll Jitter
        Unsigned 32-bit integer
        PacketCable Multimedia Tolerated Poll Jitter
    cops.pc_mm_ugs  Unsolicited Grant Size
        Unsigned 16-bit integer
        PacketCable Multimedia Unsolicited Grant Size
    cops.pc_mm_userid  UserID
        String
        PacketCable Multimedia UserID
    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
    cops.pc_packetcable_sub_code  Error Sub Code
        Unsigned 16-bit integer
    cops.pc_peak_data_rate  Peak Data Rate
        Single-precision floating point
    cops.pc_prks_ip  PRKS IP Address
        IPv4 address
    cops.pc_prks_ip_port  PRKS IP Port
        Unsigned 16-bit integer
    cops.pc_protocol_id  Protocol ID
        Unsigned 8-bit integer
    cops.pc_reason_code  Reason Code
        Unsigned 16-bit integer
    cops.pc_remote_flags  Flags
        Unsigned 16-bit integer
    cops.pc_remote_gate_id  Remote Gate ID
        Unsigned 32-bit integer
    cops.pc_reserved  Reserved
        Unsigned 32-bit integer
    cops.pc_session_class  Session Class
        Unsigned 8-bit integer
    cops.pc_slack_term  Slack Term
        Unsigned 32-bit integer
    cops.pc_spec_rate  Rate
        Single-precision floating point
    cops.pc_src_ip  Source IP Address
        IPv4 address
    cops.pc_src_port  Source IP Port
        Unsigned 16-bit integer
    cops.pc_srks_ip  SRKS IP Address
        IPv4 address
    cops.pc_srks_ip_port  SRKS IP Port
        Unsigned 16-bit integer
    cops.pc_subscriber_id4  Subscriber Identifier (IPv4)
        IPv4 address
    cops.pc_subscriber_id6  Subscriber Identifier (IPv6)
        IPv6 address
    cops.pc_subtree  Object Subtree
        No value
    cops.pc_t1_value  Timer T1 Value (sec)
        Unsigned 16-bit integer
    cops.pc_t7_value  Timer T7 Value (sec)
        Unsigned 16-bit integer
    cops.pc_t8_value  Timer T8 Value (sec)
        Unsigned 16-bit integer
    cops.pc_token_bucket_rate  Token Bucket Rate
        Single-precision floating point
    cops.pc_token_bucket_size  Token Bucket Size
        Single-precision floating point
    cops.pc_transaction_id  Transaction Identifier
        Unsigned 16-bit integer
    cops.pdp.tcp_port  TCP Port Number
        Unsigned 32-bit integer
        TCP Port Number of PDP in PDPRedirAddr/LastPDPAddr object
    cops.pdprediraddr.ipv4  IPv4 address
        IPv4 address
        IPv4 address in COPS PDPRedirAddr object
    cops.pdprediraddr.ipv6  IPv6 address
        IPv6 address
        IPv6 address in COPS PDPRedirAddr object
    cops.pepid.id  Contents: PEP Id
        String
        PEP Id in PEPID object
    cops.pprid.prefix_id  Prefix Identifier
        Object Identifier
    cops.prid.instance_id  PRID Instance Identifier
        Object Identifier
    cops.reason  Reason
        Unsigned 16-bit integer
        Reason in Reason object
    cops.reason_sub  Reason Sub-code
        Unsigned 16-bit integer
        Reason Sub-code in Reason object
    cops.report_type  Contents: Report-Type
        Unsigned 16-bit integer
        Report-Type in Report-Type object
    cops.s_num  S-Num
        Unsigned 8-bit integer
        S-Num in COPS-PR Object Header
    cops.s_type  S-Type
        Unsigned 8-bit integer
        S-Type in COPS-PR Object Header
    cops.ver_flags  Version and Flags
        Unsigned 8-bit integer
        Version and Flags in COPS Common Header
    cops.version  Version
        Unsigned 8-bit integer
        Version in COPS Common Header

Common Unix Printing System (CUPS) Browsing Protocol (cups)

    cups.ptype  Type
        Unsigned 32-bit integer
    cups.state  State
        Unsigned 8-bit integer

Component Status Protocol (componentstatusprotocol)

    componentstatusprotocol.componentassociation_duration  Duration
        Unsigned 64-bit integer
    componentstatusprotocol.componentassociation_flags  Flags
        Unsigned 16-bit integer
    componentstatusprotocol.componentassociation_ppid  PPID
        Unsigned 32-bit integer
    componentstatusprotocol.componentassociation_protocolid  ProtocolID
        Unsigned 16-bit integer
    componentstatusprotocol.componentassociation_receiverid  ReceiverID
        Unsigned 64-bit integer
    componentstatusprotocol.componentstatusreport_AssociationArray  AssociationArray
        Unsigned 32-bit integer
    componentstatusprotocol.componentstatusreport_associations  Associations
        Unsigned 16-bit integer
    componentstatusprotocol.componentstatusreport_location  Location
        String
    componentstatusprotocol.componentstatusreport_reportinterval  ReportInterval
        Unsigned 32-bit integer
    componentstatusprotocol.componentstatusreport_status  Status
        String
    componentstatusprotocol.componentstatusreport_workload  Workload
        Unsigned 16-bit integer
    componentstatusprotocol.message_flags  Flags
        Unsigned 8-bit integer
    componentstatusprotocol.message_length  Length
        Unsigned 16-bit integer
    componentstatusprotocol.message_senderid  SenderID
        Unsigned 64-bit integer
    componentstatusprotocol.message_sendertimestamp  SenderTimeStamp
        Unsigned 64-bit integer
    componentstatusprotocol.message_type  Type
        Unsigned 8-bit integer
    componentstatusprotocol.message_version  Version
        Unsigned 32-bit integer

Compressed Data Type (cdt)

    cdt.CompressedData  CompressedData
        No value
    cdt.algorithmID_OID  algorithmID-OID
        Object Identifier
        OBJECT_IDENTIFIER
    cdt.algorithmID_ShortForm  algorithmID-ShortForm
        Signed 32-bit integer
    cdt.compressedContent  compressedContent
        Byte array
    cdt.compressedContentInfo  compressedContentInfo
        No value
    cdt.compressionAlgorithm  compressionAlgorithm
        Unsigned 32-bit integer
        CompressionAlgorithmIdentifier
    cdt.contentType  contentType
        Unsigned 32-bit integer
    cdt.contentType_OID  contentType-OID
        Object Identifier
    cdt.contentType_ShortForm  contentType-ShortForm
        Signed 32-bit integer

Compuserve GIF (image-gif)

    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
    image-gif.screen.width  Screen width
        Unsigned 16-bit integer
    image-gif.version  Version
        String
        GIF Version

Computer Interface to Message Distribution (cimd)

    cimd.aoi  Alphanumeric Originating Address
        String
        CIMD Alphanumeric Originating Address
    cimd.ce  Cancel Enabled
        String
        CIMD Cancel Enabled
    cimd.chksum  Checksum
        Unsigned 8-bit integer
        CIMD Checksum
    cimd.cm  Cancel Mode
        String
        CIMD Cancel Mode
    cimd.da  Destination Address
        String
        CIMD Destination Address
    cimd.dcs  Data Coding Scheme
        Unsigned 8-bit integer
        CIMD Data Coding Scheme
    cimd.dcs.cf  Compressed
        Unsigned 8-bit integer
        CIMD DCS Compressed Flag
    cimd.dcs.cg  Coding Group
        Unsigned 8-bit integer
        CIMD DCS Coding Group
    cimd.dcs.chs  Character Set
        Unsigned 8-bit integer
        CIMD DCS Character Set
    cimd.dcs.is  Indication Sense
        Unsigned 8-bit integer
        CIMD DCS Indication Sense
    cimd.dcs.it  Indication Type
        Unsigned 8-bit integer
        CIMD DCS Indication Type
    cimd.dcs.mc  Message Class
        Unsigned 8-bit integer
        CIMD DCS Message Class
    cimd.dcs.mcm  Message Class Meaning
        Unsigned 8-bit integer
        CIMD DCS Message Class Meaning Flag
    cimd.drmode  Delivery Request Mode
        String
        CIMD Delivery Request Mode
    cimd.dt  Discharge Time
        String
        CIMD Discharge Time
    cimd.errcode  Error Code
        String
        CIMD Error Code
    cimd.errtext  Error Text
        String
        CIMD Error Text
    cimd.fdta  First Delivery Time Absolute
        String
        CIMD First Delivery Time Absolute
    cimd.fdtr  First Delivery Time Relative
        String
        CIMD First Delivery Time Relative
    cimd.gpar  Get Parameter
        String
        CIMD Get Parameter
    cimd.mcount  Message Count
        String
        CIMD Message Count
    cimd.mms  More Messages To Send
        String
        CIMD More Messages To Send
    cimd.oa  Originating Address
        String
        CIMD Originating Address
    cimd.oimsi  Originating IMSI
        String
        CIMD Originating IMSI
    cimd.opcode  Operation Code
        Unsigned 8-bit integer
        CIMD Operation Code
    cimd.ovma  Originated Visited MSC Address
        String
        CIMD Originated Visited MSC Address
    cimd.passwd  Password
        String
        CIMD Password
    cimd.pcode  Code
        String
        CIMD Parameter Code
    cimd.pi  Protocol Identifier
        String
        CIMD Protocol Identifier
    cimd.pnumber  Packet Number
        Unsigned 8-bit integer
        CIMD Packet Number
    cimd.priority  Priority
        String
        CIMD Priority
    cimd.rpath  Reply Path
        String
        CIMD Reply Path
    cimd.saddr  Subaddress
        String
        CIMD Subaddress
    cimd.scaddr  Service Center Address
        String
        CIMD Service Center Address
    cimd.scts  Service Centre Time Stamp
        String
        CIMD Service Centre Time Stamp
    cimd.sdes  Service Description
        String
        CIMD Service Description
    cimd.smsct  SMS Center Time
        String
        CIMD SMS Center Time
    cimd.srr  Status Report Request
        String
        CIMD Status Report Request
    cimd.stcode  Status Code
        String
        CIMD Status Code
    cimd.sterrcode  Status Error Code
        String
        CIMD Status Error Code
    cimd.tclass  Tariff Class
        String
        CIMD Tariff Class
    cimd.ud  User Data
        String
        CIMD User Data
    cimd.udb  User Data Binary
        String
        CIMD User Data Binary
    cimd.udh  User Data Header
        String
        CIMD User Data Header
    cimd.ui  User Identity
        String
        CIMD User Identity
    cimd.vpa  Validity Period Absolute
        String
        CIMD Validity Period Absolute
    cimd.vpr  Validity Period Relative
        String
        CIMD Validity Period Relative
    cimd.ws  Window Size
        String
        CIMD Window Size

Configuration Test Protocol (loopback) (loop)

    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

Connectionless Lightweight Directory Access Protocol (cldap)

Control And Provisioning of Wireless Access Points (capwap)

    capwap.control.header  Control Header
        No value
    capwap.control.header.flags  Flags
        Unsigned 8-bit integer
    capwap.control.header.message_element_length  Message Element Length
        Unsigned 16-bit integer
    capwap.control.header.message_type  Message Type
        Unsigned 32-bit integer
    capwap.control.header.message_type.enterprise_number  Message Type (Enterprise Number)
        Unsigned 32-bit integer
    capwap.control.header.message_type.enterprise_specific  Message Type (Enterprise Specific)
        Unsigned 8-bit integer
    capwap.control.header.sequence_number  Sequence Number
        Unsigned 8-bit integer
    capwap.control.message_element.ac_descriptor.active_wtp  Active WTPs
        Unsigned 16-bit integer
    capwap.control.message_element.ac_descriptor.dtls_policy  DTLS Policy Flags
        No value
    capwap.control.message_element.ac_descriptor.dtls_policy.c  Clear Text Data Channel Supported
        Boolean
    capwap.control.message_element.ac_descriptor.dtls_policy.d  DTLS-Enabled Data Channel Supported
        Boolean
    capwap.control.message_element.ac_descriptor.dtls_policy.r  Reserved
        Boolean
    capwap.control.message_element.ac_descriptor.limit  Limit Stations
        Unsigned 16-bit integer
    capwap.control.message_element.ac_descriptor.max_wtp  Max WTPs
        Unsigned 16-bit integer
    capwap.control.message_element.ac_descriptor.reserved  Reserved
        Unsigned 8-bit integer
    capwap.control.message_element.ac_descriptor.rmac_field  R-MAC Field
        Unsigned 8-bit integer
    capwap.control.message_element.ac_descriptor.security  Security Flags
        No value
    capwap.control.message_element.ac_descriptor.security.r  Reserved
        Boolean
    capwap.control.message_element.ac_descriptor.security.s  AC supports the pre-shared
        Boolean
    capwap.control.message_element.ac_descriptor.security.x  AC supports X.509 Certificate
        Boolean
    capwap.control.message_element.ac_descriptor.stations  Stations
        Unsigned 16-bit integer
    capwap.control.message_element.ac_information.hardware_version  AC Hardware Version
        String
    capwap.control.message_element.ac_information.length  AC Information Length
        Unsigned 16-bit integer
    capwap.control.message_element.ac_information.software_version  AC Software Version
        String
    capwap.control.message_element.ac_information.type  AC Information Type
        Unsigned 16-bit integer
    capwap.control.message_element.ac_information.value  AC Information Value
        Byte array
    capwap.control.message_element.ac_information.vendor  AC Information Vendor
        Unsigned 32-bit integer
    capwap.control.message_element.ac_name  AC Name
        String
    capwap.control.message_element.ac_name_with_priority  AC Name Priority
        Unsigned 8-bit integer
    capwap.control.message_element.capwap_control_wtp_count  CAPWAP Control WTP Count
        Unsigned 16-bit integer
    capwap.control.message_element.capwap_timers_discovery  CAPWAP Timers Discovery (Sec)
        Unsigned 8-bit integer
    capwap.control.message_element.capwap_timers_echo_request  CAPWAP Timers Echo Request (Sec)
        Unsigned 8-bit integer
    capwap.control.message_element.decryption_error_report_period.interval  Decryption Error Report Report Interval (Sec)
        Unsigned 16-bit integer
    capwap.control.message_element.decryption_error_report_period.radio_id  Decryption Error Report Period Radio ID 
        Unsigned 8-bit integer
    capwap.control.message_element.discovery_type  Discovery Type
        Unsigned 8-bit integer
    capwap.control.message_element.idle_timeout  Idle Timeout (Sec)
        Unsigned 32-bit integer
    capwap.control.message_element.ieee80211__wtp_radio_info.radio_id  Radio ID
        Unsigned 8-bit integer
    capwap.control.message_element.ieee80211_rate_set.radio_id  Radio ID
        Unsigned 8-bit integer
    capwap.control.message_element.ieee80211_rate_set.rate_set  Rate Set
        Byte array
    capwap.control.message_element.ieee80211_station_session_key.flags  Flags
        Unsigned 16-bit integer
    capwap.control.message_element.ieee80211_station_session_key.flags_a  Flag A
        Boolean
    capwap.control.message_element.ieee80211_station_session_key.flags_c  Flag C
        Boolean
    capwap.control.message_element.ieee80211_station_session_key.key  Key
        Byte array
    capwap.control.message_element.ieee80211_station_session_key.mac  Mac Address
        6-byte Hardware (MAC) Address
        The station's MAC Address
    capwap.control.message_element.ieee80211_station_session_key.pairwire_rsc  Pairwise RSC
        Byte array
        Receive Sequence Counter (TSC)
    capwap.control.message_element.ieee80211_station_session_key.pairwire_tsc  Pairwise TSC
        Byte array
        Transmit Sequence Counter (TSC)
    capwap.control.message_element.ieee80211_wtp_info_radio.radio_type_a  Radio Type 802.11a
        Boolean
    capwap.control.message_element.ieee80211_wtp_info_radio.radio_type_b  Radio Type 802.11g
        Boolean
    capwap.control.message_element.ieee80211_wtp_info_radio.radio_type_g  Radio Type 802.11g
        Boolean
    capwap.control.message_element.ieee80211_wtp_info_radio.radio_type_n  Radio Type 802.11n
        Boolean
    capwap.control.message_element.ieee80211_wtp_info_radio.radio_type_reserved  Radio Type Reserved
        Byte array
    capwap.control.message_element.location_data  Location Data
        String
    capwap.control.message_element.maximum_message_length  Maximum Message Length
        Unsigned 16-bit integer
    capwap.control.message_element.message_element.ac_ipv4_list  AC IPv4 List
        IPv4 address
    capwap.control.message_element.message_element.ac_ipv6_list  AC IPv6 List
        IPv6 address
    capwap.control.message_element.message_element.capwap_control_ipv4  CAPWAP Control IP Address
        IPv4 address
    capwap.control.message_element.message_element.capwap_control_ipv6  CAPWAP Control IP Address
        IPv6 address
    capwap.control.message_element.radio_admin.id  Radio Administrative ID
        Unsigned 8-bit integer
    capwap.control.message_element.radio_admin.state  Radio Administrative State
        Unsigned 8-bit integer
    capwap.control.message_element.radio_op_state.radio_cause  Radio Operational Cause
        Unsigned 8-bit integer
    capwap.control.message_element.radio_op_state.radio_id  Radio Operational ID
        Unsigned 8-bit integer
    capwap.control.message_element.radio_op_state.radio_state  Radio Operational State
        Unsigned 8-bit integer
    capwap.control.message_element.result_code  Result Code
        Unsigned 32-bit integer
    capwap.control.message_element.session_id  Session ID
        Byte array
    capwap.control.message_element.statistics_timer  Statistics Timer (Sec)
        Unsigned 16-bit integer
    capwap.control.message_element.vsp.vendor_data  Vendor Data
        Byte array
    capwap.control.message_element.vsp.vendor_element_id  Vendor Element ID
        Unsigned 16-bit integer
    capwap.control.message_element.vsp.vendor_identifier  Vendor Identifier
        Unsigned 32-bit integer
    capwap.control.message_element.wtp_board_data.base_mac_address  Base Mac Address
        6-byte Hardware (MAC) Address
    capwap.control.message_element.wtp_board_data.length  Board Data Length
        Unsigned 16-bit integer
    capwap.control.message_element.wtp_board_data.type  Board Data Type
        Unsigned 16-bit integer
    capwap.control.message_element.wtp_board_data.value  Board Data Value
        Byte array
    capwap.control.message_element.wtp_board_data.vendor  WTP Board Data Vendor
        Unsigned 32-bit integer
    capwap.control.message_element.wtp_board_data.wtp_board_id  WTP Board ID
        String
    capwap.control.message_element.wtp_board_data.wtp_board_revision  WTP Board Revision
        String
    capwap.control.message_element.wtp_board_data.wtp_model_number  WTP Model Number
        String
    capwap.control.message_element.wtp_board_data.wtp_serial_number  WTP Serial Number
        String
    capwap.control.message_element.wtp_descriptor.active_software_version  WTP Active Software Version
        String
    capwap.control.message_element.wtp_descriptor.boot_version  WTP Boot Version
        String
    capwap.control.message_element.wtp_descriptor.encrypt_capabilities  Encryption Capabilities
        Unsigned 16-bit integer
    capwap.control.message_element.wtp_descriptor.encrypt_reserved  Reserved (Encrypt)
        Unsigned 8-bit integer
    capwap.control.message_element.wtp_descriptor.encrypt_wbid  Encrypt WBID
        Unsigned 8-bit integer
    capwap.control.message_element.wtp_descriptor.hardware_version  WTP Hardware Version
        String
    capwap.control.message_element.wtp_descriptor.length  Descriptor Length
        Unsigned 16-bit integer
    capwap.control.message_element.wtp_descriptor.max_radios  Max Radios
        Unsigned 8-bit integer
    capwap.control.message_element.wtp_descriptor.number_encrypt  Encryption Capabilities (Number)
        Unsigned 8-bit integer
    capwap.control.message_element.wtp_descriptor.other_software_version  WTP Other Software Version
        String
    capwap.control.message_element.wtp_descriptor.radio_in_use  Radio in use
        Unsigned 8-bit integer
    capwap.control.message_element.wtp_descriptor.type  Descriptor Type
        Unsigned 16-bit integer
    capwap.control.message_element.wtp_descriptor.value  Descriptor Value
        Byte array
    capwap.control.message_element.wtp_descriptor.vendor  WTP Descriptor Vendor
        Unsigned 32-bit integer
    capwap.control.message_element.wtp_fallback  WTP Fallback
        Unsigned 8-bit integer
    capwap.control.message_element.wtp_frame_tunnel_mode  WTP Frame Tunnel Mode
        No value
    capwap.control.message_element.wtp_frame_tunnel_mode.e  802.3 Frame Tunnel Mode
        Boolean
    capwap.control.message_element.wtp_frame_tunnel_mode.l  Local Bridging
        Boolean
    capwap.control.message_element.wtp_frame_tunnel_mode.n  Native Frame Tunnel Mode
        Boolean
    capwap.control.message_element.wtp_frame_tunnel_mode.r  Reserved
        Boolean
    capwap.control.message_element.wtp_mac_type  WTP MAC Type
        Unsigned 8-bit integer
        The MAC mode of operation supported by the WTP
    capwap.control.message_element.wtp_name  WTP Name
        String
    capwap.control.message_element.wtp_reboot_statistics.ac_initiated_count  AC Initiated Count
        Unsigned 16-bit integer
        The number of reboots that have occurred at the request of a CAPWAP protocol message
    capwap.control.message_element.wtp_reboot_statistics.hw_failure_count  HW Failure Count
        Unsigned 16-bit integer
        The number of times that a CAPWAP protocol connection with an AC has failed due to hardware-related reasons
    capwap.control.message_element.wtp_reboot_statistics.last_failure_type  Last Failure Type
        Unsigned 8-bit integer
        The failure type of the most recent WTP failure
    capwap.control.message_element.wtp_reboot_statistics.link_failure_count  Link Failure Count
        Unsigned 16-bit integer
        The number of times that a CAPWAP protocol connection with an AC has failed due to link failure
    capwap.control.message_element.wtp_reboot_statistics.other_failure_count  Other Failure Count
        Unsigned 16-bit integer
        The number of times that a CAPWAP protocol connection with an AC has failed due to known reasons, other than AC initiated, link, SW or HW failure
    capwap.control.message_element.wtp_reboot_statistics.reboot_count  Reboot  Count
        Unsigned 16-bit integer
        The number of reboots that have occurred due to a WTP crash
    capwap.control.message_element.wtp_reboot_statistics.sw_failure_count  SW Failure Count
        Unsigned 16-bit integer
        The number of times that a CAPWAP protocol connection with an AC has failed due to software-related reasons
    capwap.control.message_element.wtp_reboot_statistics.unknown_failure_count  Unknown Failure Count
        Unsigned 16-bit integer
        The number of times that a CAPWAP protocol connection with an AC has failed for unknown reasons
    capwap.fragment  Message fragment
        Frame number
    capwap.fragment.error  Message defragmentation error
        Frame number
    capwap.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    capwap.fragment.overlap  Message fragment overlap
        Boolean
    capwap.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    capwap.fragment.too_long_fragment  Message fragment too long
        Boolean
    capwap.fragments  Message fragments
        No value
    capwap.header  Header
        No value
    capwap.header.flags  Header Flags
        Unsigned 8-bit integer
    capwap.header.flags.f  Fragment
        Boolean
    capwap.header.flags.k  Keep-Alive
        Boolean
    capwap.header.flags.l  Last Fragment
        Boolean
    capwap.header.flags.m  Radio MAC header
        Boolean
    capwap.header.flags.r  Reserved
        Boolean
    capwap.header.flags.t  Payload Type
        Boolean
    capwap.header.flags.w  Wireless header
        Boolean
    capwap.header.fragment.id  Fragment ID
        Unsigned 16-bit integer
    capwap.header.fragment.offset  Fragment Offset
        Unsigned 16-bit integer
    capwap.header.fragment.reserved  Reserved
        Unsigned 8-bit integer
    capwap.header.length  Header Length
        Unsigned 8-bit integer
    capwap.header.mac.data  MAC address
        Byte array
    capwap.header.mac.eui48  MAC address
        6-byte Hardware (MAC) Address
    capwap.header.mac.eui64  MAC address
        Byte array
    capwap.header.mac.length  MAC length
        Unsigned 8-bit integer
    capwap.header.padding  Padding for 4 Byte Alignement
        Byte array
    capwap.header.rid  Radio ID
        Unsigned 8-bit integer
    capwap.header.wbid  Wireless Binding ID
        Unsigned 8-bit integer
    capwap.header.wireless.data  Wireless data
        Byte array
    capwap.header.wireless.data.ieee80211.dw  Wireless data ieee80211 Destination WLANs
        Byte array
    capwap.header.wireless.data.ieee80211.dw.reserved  Wireless data ieee80211 Destination Wlan reserved
        Unsigned 16-bit integer
    capwap.header.wireless.data.ieee80211.dw.wlan_id_bitmap  Wireless data ieee80211 Destination Wlan Id bitmap
        Unsigned 16-bit integer
    capwap.header.wireless.data.ieee80211.fi  Wireless data ieee80211 Frame Info
        Byte array
    capwap.header.wireless.data.ieee80211.fi.data_rate  Wireless data ieee80211 Data Rate (Mbps)
        Unsigned 16-bit integer
    capwap.header.wireless.data.ieee80211.fi.rssi  Wireless data ieee80211 RSSI (dBm)
        Unsigned 8-bit integer
    capwap.header.wireless.data.ieee80211.fi.snr  Wireless data ieee80211 SNR (dB)
        Unsigned 8-bit integer
    capwap.header.wireless.length  Wireless length
        Unsigned 8-bit integer
    capwap.message_element  Message Element
        No value
    capwap.message_element.length  Length
        Unsigned 16-bit integer
        CAPWAP Message Element length
    capwap.message_element.type  Type
        Unsigned 16-bit integer
        CAPWAP Message Element type
    capwap.message_element.value  Value
        Byte array
        CAPWAP Message Element value
    capwap.preamble  Preamble
        No value
    capwap.preamble.reserved  Reserved
        Unsigned 24-bit integer
    capwap.preamble.type  Type
        Unsigned 8-bit integer
        Type of Payload
    capwap.preamble.version  Version
        Unsigned 8-bit integer
        Version of CAPWAP
    capwap.reassembled.in  Reassembled in
        Frame number
    capwap.reassembled.length  Reassembled CAPWAP length
        Unsigned 32-bit integer

Controller Area Network (can)

    can.flags.err  Error Flag
        Boolean
    can.flags.rtr  Remote Transmission Request Flag
        Boolean
    can.flags.xtd  Extended Flag
        Boolean
    can.id  Identifier
        Unsigned 32-bit integer
    can.len  Frame-Length
        Unsigned 8-bit integer

Coseventcomm Dissector Using GIOP API (giop-coseventcomm)

Cosnaming Dissector Using GIOP API (giop-cosnaming)

Cross Point Frame Injector (cpfi)

    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

Cryptographic Message Syntax (cms)

    cms.Attribute  Attribute
        No value
    cms.AttributeValue  AttributeValue
        No value
    cms.AuthenticatedData  AuthenticatedData
        No value
    cms.CertificateChoices  CertificateChoices
        Unsigned 32-bit integer
    cms.ContentInfo  ContentInfo
        No value
    cms.ContentType  ContentType
        Object Identifier
    cms.Countersignature  Countersignature
        No value
    cms.DigestAlgorithmIdentifier  DigestAlgorithmIdentifier
        No value
    cms.DigestedData  DigestedData
        No value
    cms.EncryptedData  EncryptedData
        No value
    cms.EnvelopedData  EnvelopedData
        No value
    cms.IssuerAndSerialNumber  IssuerAndSerialNumber
        No value
    cms.MessageDigest  MessageDigest
        Byte array
    cms.RC2CBCParameters  RC2CBCParameters
        Unsigned 32-bit integer
    cms.RC2WrapParameter  RC2WrapParameter
        Signed 32-bit integer
    cms.RecipientEncryptedKey  RecipientEncryptedKey
        No value
    cms.RecipientInfo  RecipientInfo
        Unsigned 32-bit integer
    cms.RevocationInfoChoice  RevocationInfoChoice
        Unsigned 32-bit integer
    cms.SMIMECapabilities  SMIMECapabilities
        Unsigned 32-bit integer
    cms.SMIMECapability  SMIMECapability
        No value
    cms.SMIMEEncryptionKeyPreference  SMIMEEncryptionKeyPreference
        Unsigned 32-bit integer
    cms.SignedData  SignedData
        No value
    cms.SignerInfo  SignerInfo
        No value
    cms.SigningTime  SigningTime
        Unsigned 32-bit integer
    cms.acInfo  acInfo
        No value
        AttributeCertificateInfoV1
    cms.algorithm  algorithm
        No value
        AlgorithmIdentifier
    cms.attCertValidityPeriod  attCertValidityPeriod
        No value
    cms.attrType  attrType
        Object Identifier
    cms.attrValues  attrValues
        Unsigned 32-bit integer
        SET_OF_AttributeValue
    cms.attributes  attributes
        Unsigned 32-bit integer
        UnauthAttributes
    cms.authAttrs  authAttrs
        Unsigned 32-bit integer
        AuthAttributes
    cms.baseCertificateID  baseCertificateID
        No value
        IssuerSerial
    cms.capability  capability
        Object Identifier
    cms.certificate  certificate
        No value
    cms.certificates  certificates
        Unsigned 32-bit integer
        CertificateSet
    cms.certs  certs
        Unsigned 32-bit integer
        CertificateSet
    cms.content  content
        No value
    cms.contentEncryptionAlgorithm  contentEncryptionAlgorithm
        No value
        ContentEncryptionAlgorithmIdentifier
    cms.contentInfo.contentType  contentType
        Object Identifier
        ContentType
    cms.contentType  contentType
        Object Identifier
    cms.crl  crl
        No value
        CertificateList
    cms.crls  crls
        Unsigned 32-bit integer
        RevocationInfoChoices
    cms.date  date
        String
        GeneralizedTime
    cms.digest  digest
        Byte array
    cms.digestAlgorithm  digestAlgorithm
        No value
        DigestAlgorithmIdentifier
    cms.digestAlgorithms  digestAlgorithms
        Unsigned 32-bit integer
        DigestAlgorithmIdentifiers
    cms.eContent  eContent
        Byte array
    cms.eContentType  eContentType
        Object Identifier
        ContentType
    cms.encapContentInfo  encapContentInfo
        No value
        EncapsulatedContentInfo
    cms.encryptedContent  encryptedContent
        Byte array
    cms.encryptedContentInfo  encryptedContentInfo
        No value
    cms.encryptedKey  encryptedKey
        Byte array
    cms.extendedCertificate  extendedCertificate
        No value
    cms.extendedCertificateInfo  extendedCertificateInfo
        No value
    cms.extensions  extensions
        Unsigned 32-bit integer
    cms.generalTime  generalTime
        String
        GeneralizedTime
    cms.issuer  issuer
        Unsigned 32-bit integer
        Name
    cms.issuerAndSerialNumber  issuerAndSerialNumber
        No value
    cms.issuerUniqueID  issuerUniqueID
        Byte array
        UniqueIdentifier
    cms.iv  iv
        Byte array
        OCTET_STRING
    cms.kari  kari
        No value
        KeyAgreeRecipientInfo
    cms.kekid  kekid
        No value
        KEKIdentifier
    cms.kekri  kekri
        No value
        KEKRecipientInfo
    cms.keyAttr  keyAttr
        No value
    cms.keyAttrId  keyAttrId
        Object Identifier
    cms.keyDerivationAlgorithm  keyDerivationAlgorithm
        No value
        KeyDerivationAlgorithmIdentifier
    cms.keyEncryptionAlgorithm  keyEncryptionAlgorithm
        No value
        KeyEncryptionAlgorithmIdentifier
    cms.keyIdentifier  keyIdentifier
        Byte array
        OCTET_STRING
    cms.ktri  ktri
        No value
        KeyTransRecipientInfo
    cms.mac  mac
        Byte array
        MessageAuthenticationCode
    cms.macAlgorithm  macAlgorithm
        No value
        MessageAuthenticationCodeAlgorithm
    cms.ori  ori
        No value
        OtherRecipientInfo
    cms.oriType  oriType
        Object Identifier
    cms.oriValue  oriValue
        No value
    cms.originator  originator
        Unsigned 32-bit integer
        OriginatorIdentifierOrKey
    cms.originatorInfo  originatorInfo
        No value
    cms.originatorKey  originatorKey
        No value
        OriginatorPublicKey
    cms.other  other
        No value
        OtherKeyAttribute
    cms.otherRevInfo  otherRevInfo
        No value
    cms.otherRevInfoFormat  otherRevInfoFormat
        Object Identifier
    cms.parameters  parameters
        No value
    cms.publicKey  publicKey
        Byte array
        BIT_STRING
    cms.pwri  pwri
        No value
        PasswordRecipientInfo
    cms.rKeyId  rKeyId
        No value
        RecipientKeyIdentifier
    cms.rc2CBCParameter  rc2CBCParameter
        No value
    cms.rc2ParameterVersion  rc2ParameterVersion
        Signed 32-bit integer
        INTEGER
    cms.rc2WrapParameter  rc2WrapParameter
        Signed 32-bit integer
    cms.recipientEncryptedKeys  recipientEncryptedKeys
        Unsigned 32-bit integer
    cms.recipientInfos  recipientInfos
        Unsigned 32-bit integer
    cms.recipientKeyId  recipientKeyId
        No value
        RecipientKeyIdentifier
    cms.rid  rid
        Unsigned 32-bit integer
        RecipientIdentifier
    cms.serialNumber  serialNumber
        Signed 32-bit integer
        CertificateSerialNumber
    cms.sid  sid
        Unsigned 32-bit integer
        SignerIdentifier
    cms.signature  signature
        Byte array
        SignatureValue
    cms.signatureAlgorithm  signatureAlgorithm
        No value
        SignatureAlgorithmIdentifier
    cms.signedAttrs  signedAttrs
        Unsigned 32-bit integer
        SignedAttributes
    cms.signerInfos  signerInfos
        Unsigned 32-bit integer
    cms.subject  subject
        Unsigned 32-bit integer
    cms.subjectAltKeyIdentifier  subjectAltKeyIdentifier
        Byte array
        SubjectKeyIdentifier
    cms.subjectKeyIdentifier  subjectKeyIdentifier
        Byte array
    cms.subjectName  subjectName
        Unsigned 32-bit integer
        GeneralNames
    cms.ukm  ukm
        Byte array
        UserKeyingMaterial
    cms.unauthAttrs  unauthAttrs
        Unsigned 32-bit integer
        UnauthAttributes
    cms.unprotectedAttrs  unprotectedAttrs
        Unsigned 32-bit integer
        UnprotectedAttributes
    cms.unsignedAttrs  unsignedAttrs
        Unsigned 32-bit integer
        UnsignedAttributes
    cms.utcTime  utcTime
        String
    cms.v1AttrCert  v1AttrCert
        No value
        AttributeCertificateV1
    cms.v2AttrCert  v2AttrCert
        No value
        AttributeCertificateV2
    cms.version  version
        Signed 32-bit integer
        CMSVersion

DCE DFS Basic Overseer Server (bossvr)

    bossvr.opnum  Operation
        Unsigned 16-bit integer

DCE DFS FLDB UBIK TRANSFER (ubikdisk)

    ubikdisk.opnum  Operation
        Unsigned 16-bit integer

DCE DFS FLDB UBIKVOTE (ubikvote)

    ubikvote.opnum  Operation
        Unsigned 16-bit integer

DCE DFS File Exporter (fileexp)

    afsNetAddr.data  IP Data
        Unsigned 8-bit integer
    afsNetAddr.type  Type
        Unsigned 16-bit integer
    fileexp.NameString_principal  Principal Name
        String
    fileexp.TaggedPath_tp_chars  AFS Tagged Path
        String
    fileexp.TaggedPath_tp_tag  AFS Tagged Path Name
        Unsigned 32-bit integer
    fileexp.accesstime_msec  fileexp.accesstime_msec
        Unsigned 32-bit integer
    fileexp.accesstime_sec  fileexp.accesstime_sec
        Unsigned 32-bit integer
    fileexp.acl_len  Acl Length
        Unsigned 32-bit integer
    fileexp.aclexpirationtime  fileexp.aclexpirationtime
        Unsigned 32-bit integer
    fileexp.acltype  fileexp.acltype
        Unsigned 32-bit integer
    fileexp.afsFid.Unique  Unique
        Unsigned 32-bit integer
        afsFid Unique
    fileexp.afsFid.Vnode  Vnode
        Unsigned 32-bit integer
        afsFid Vnode
    fileexp.afsFid.cell_high  Cell High
        Unsigned 32-bit integer
        afsFid Cell High
    fileexp.afsFid.cell_low  Cell Low
        Unsigned 32-bit integer
        afsFid Cell Low
    fileexp.afsFid.volume_high  Volume High
        Unsigned 32-bit integer
        afsFid Volume High
    fileexp.afsFid.volume_low  Volume Low
        Unsigned 32-bit integer
        afsFid Volume Low
    fileexp.afsTaggedPath_length  Tagged Path Length
        Unsigned 32-bit integer
    fileexp.afsacl_uuid1  AFS ACL UUID1
        Globally Unique Identifier
        UUID
    fileexp.afserrortstatus_st  AFS Error Code
        Unsigned 32-bit integer
    fileexp.afsreturndesc_tokenid_high  Tokenid High
        Unsigned 32-bit integer
    fileexp.afsreturndesc_tokenid_low  Tokenid low
        Unsigned 32-bit integer
    fileexp.agtypeunique  fileexp.agtypeunique
        Unsigned 32-bit integer
    fileexp.anonymousaccess  fileexp.anonymousaccess
        Unsigned 32-bit integer
    fileexp.author  fileexp.author
        Unsigned 32-bit integer
    fileexp.beginrange  fileexp.beginrange
        Unsigned 32-bit integer
    fileexp.beginrangeext  fileexp.beginrangeext
        Unsigned 32-bit integer
    fileexp.blocksused  fileexp.blocksused
        Unsigned 32-bit integer
    fileexp.bulkfetchkeepalive_spare1  BulkFetch KeepAlive spare1
        Unsigned 32-bit integer
    fileexp.bulkfetchkeepalive_spare2  BulkKeepAlive spare4
        Unsigned 32-bit integer
    fileexp.bulkfetchstatus_size  BulkFetchStatus Size
        Unsigned 32-bit integer
    fileexp.bulkfetchvv_numvols  fileexp.bulkfetchvv_numvols
        Unsigned 32-bit integer
    fileexp.bulkfetchvv_spare1  fileexp.bulkfetchvv_spare1
        Unsigned 32-bit integer
    fileexp.bulkfetchvv_spare2  fileexp.bulkfetchvv_spare2
        Unsigned 32-bit integer
    fileexp.bulkkeepalive_numexecfids  BulkKeepAlive numexecfids
        Unsigned 32-bit integer
    fileexp.calleraccess  fileexp.calleraccess
        Unsigned 32-bit integer
    fileexp.cellidp_high  cellidp high
        Unsigned 32-bit integer
    fileexp.cellidp_low  cellidp low
        Unsigned 32-bit integer
    fileexp.changetime_msec  fileexp.changetime_msec
        Unsigned 32-bit integer
    fileexp.changetime_sec  fileexp.changetime_sec
        Unsigned 32-bit integer
    fileexp.clientspare1  fileexp.clientspare1
        Unsigned 32-bit integer
    fileexp.dataversion_high  fileexp.dataversion_high
        Unsigned 32-bit integer
    fileexp.dataversion_low  fileexp.dataversion_low
        Unsigned 32-bit integer
    fileexp.defaultcell_uuid  Default Cell UUID
        Globally Unique Identifier
        UUID
    fileexp.devicenumber  fileexp.devicenumber
        Unsigned 32-bit integer
    fileexp.devicenumberhighbits  fileexp.devicenumberhighbits
        Unsigned 32-bit integer
    fileexp.endrange  fileexp.endrange
        Unsigned 32-bit integer
    fileexp.endrangeext  fileexp.endrangeext
        Unsigned 32-bit integer
    fileexp.expirationtime  fileexp.expirationtime
        Unsigned 32-bit integer
    fileexp.fetchdata_pipe_t_size  FetchData Pipe_t size
        String
    fileexp.filetype  fileexp.filetype
        Unsigned 32-bit integer
    fileexp.flags  DFS Flags
        Unsigned 32-bit integer
    fileexp.fstype  Filetype
        Unsigned 32-bit integer
    fileexp.gettime.syncdistance  SyncDistance
        Unsigned 32-bit integer
    fileexp.gettime_secondsp  GetTime secondsp
        Unsigned 32-bit integer
    fileexp.gettime_syncdispersion  GetTime Syncdispersion
        Unsigned 32-bit integer
    fileexp.gettime_usecondsp  GetTime usecondsp
        Unsigned 32-bit integer
    fileexp.group  fileexp.group
        Unsigned 32-bit integer
    fileexp.himaxspare  fileexp.himaxspare
        Unsigned 32-bit integer
    fileexp.interfaceversion  fileexp.interfaceversion
        Unsigned 32-bit integer
    fileexp.l_end_pos  fileexp.l_end_pos
        Unsigned 32-bit integer
    fileexp.l_end_pos_ext  fileexp.l_end_pos_ext
        Unsigned 32-bit integer
    fileexp.l_fstype  fileexp.l_fstype
        Unsigned 32-bit integer
    fileexp.l_pid  fileexp.l_pid
        Unsigned 32-bit integer
    fileexp.l_start_pos  fileexp.l_start_pos
        Unsigned 32-bit integer
    fileexp.l_start_pos_ext  fileexp.l_start_pos_ext
        Unsigned 32-bit integer
    fileexp.l_sysid  fileexp.l_sysid
        Unsigned 32-bit integer
    fileexp.l_type  fileexp.l_type
        Unsigned 32-bit integer
    fileexp.l_whence  fileexp.l_whence
        Unsigned 32-bit integer
    fileexp.length  Length
        Unsigned 32-bit integer
    fileexp.length_high  fileexp.length_high
        Unsigned 32-bit integer
    fileexp.length_low  fileexp.length_low
        Unsigned 32-bit integer
    fileexp.linkcount  fileexp.linkcount
        Unsigned 32-bit integer
    fileexp.lomaxspare  fileexp.lomaxspare
        Unsigned 32-bit integer
    fileexp.minvvp_high  fileexp.minvvp_high
        Unsigned 32-bit integer
    fileexp.minvvp_low  fileexp.minvvp_low
        Unsigned 32-bit integer
    fileexp.mode  fileexp.mode
        Unsigned 32-bit integer
    fileexp.modtime_msec  fileexp.modtime_msec
        Unsigned 32-bit integer
    fileexp.modtime_sec  fileexp.modtime_sec
        Unsigned 32-bit integer
    fileexp.nextoffset_high  next offset high
        Unsigned 32-bit integer
    fileexp.nextoffset_low  next offset low
        Unsigned 32-bit integer
    fileexp.objectuuid  fileexp.objectuuid
        Globally Unique Identifier
        UUID
    fileexp.offset_high  offset high
        Unsigned 32-bit integer
    fileexp.opnum  Operation
        Unsigned 16-bit integer
    fileexp.owner  fileexp.owner
        Unsigned 32-bit integer
    fileexp.parentunique  fileexp.parentunique
        Unsigned 32-bit integer
    fileexp.parentvnode  fileexp.parentvnode
        Unsigned 32-bit integer
    fileexp.pathconfspare  fileexp.pathconfspare
        Unsigned 32-bit integer
    fileexp.position_high  Position High
        Unsigned 32-bit integer
    fileexp.position_low  Position Low
        Unsigned 32-bit integer
    fileexp.principalName_size  Principal Name Size
        Unsigned 32-bit integer
    fileexp.principalName_size2  Principal Name Size2
        Unsigned 32-bit integer
    fileexp.readdir.size  Readdir Size
        Unsigned 32-bit integer
    fileexp.returntokenidp_high  return token idp high
        Unsigned 32-bit integer
    fileexp.returntokenidp_low  return token idp low
        Unsigned 32-bit integer
    fileexp.servermodtime_msec  fileexp.servermodtime_msec
        Unsigned 32-bit integer
    fileexp.servermodtime_sec  fileexp.servermodtime_sec
        Unsigned 32-bit integer
    fileexp.setcontext.parm7  Parm7:
        Unsigned 32-bit integer
    fileexp.setcontext_clientsizesattrs  ClientSizeAttrs:
        Unsigned 32-bit integer
    fileexp.setcontext_rqst_epochtime  EpochTime:
        Date/Time stamp
    fileexp.setcontext_secobjextid  SetObjectid:
        String
        UUID
    fileexp.spare4  fileexp.spare4
        Unsigned 32-bit integer
    fileexp.spare5  fileexp.spare5
        Unsigned 32-bit integer
    fileexp.spare6  fileexp.spare6
        Unsigned 32-bit integer
    fileexp.st  AFS4Int Error Status Code
        Unsigned 32-bit integer
    fileexp.storestatus_accesstime_sec  fileexp.storestatus_accesstime_sec
        Unsigned 32-bit integer
    fileexp.storestatus_accesstime_usec  fileexp.storestatus_accesstime_usec
        Unsigned 32-bit integer
    fileexp.storestatus_changetime_sec  fileexp.storestatus_changetime_sec
        Unsigned 32-bit integer
    fileexp.storestatus_changetime_usec  fileexp.storestatus_changetime_usec
        Unsigned 32-bit integer
    fileexp.storestatus_clientspare1  fileexp.storestatus_clientspare1
        Unsigned 32-bit integer
    fileexp.storestatus_cmask  fileexp.storestatus_cmask
        Unsigned 32-bit integer
    fileexp.storestatus_devicenumber  fileexp.storestatus_devicenumber
        Unsigned 32-bit integer
    fileexp.storestatus_devicenumberhighbits  fileexp.storestatus_devicenumberhighbits
        Unsigned 32-bit integer
    fileexp.storestatus_devicetype  fileexp.storestatus_devicetype
        Unsigned 32-bit integer
    fileexp.storestatus_group  fileexp.storestatus_group
        Unsigned 32-bit integer
    fileexp.storestatus_length_high  fileexp.storestatus_length_high
        Unsigned 32-bit integer
    fileexp.storestatus_length_low  fileexp.storestatus_length_low
        Unsigned 32-bit integer
    fileexp.storestatus_mask  fileexp.storestatus_mask
        Unsigned 32-bit integer
    fileexp.storestatus_mode  fileexp.storestatus_mode
        Unsigned 32-bit integer
    fileexp.storestatus_modtime_sec  fileexp.storestatus_modtime_sec
        Unsigned 32-bit integer
    fileexp.storestatus_modtime_usec  fileexp.storestatus_modtime_usec
        Unsigned 32-bit integer
    fileexp.storestatus_owner  fileexp.storestatus_owner
        Unsigned 32-bit integer
    fileexp.storestatus_spare1  fileexp.storestatus_spare1
        Unsigned 32-bit integer
    fileexp.storestatus_spare2  fileexp.storestatus_spare2
        Unsigned 32-bit integer
    fileexp.storestatus_spare3  fileexp.storestatus_spare3
        Unsigned 32-bit integer
    fileexp.storestatus_spare4  fileexp.storestatus_spare4
        Unsigned 32-bit integer
    fileexp.storestatus_spare5  fileexp.storestatus_spare5
        Unsigned 32-bit integer
    fileexp.storestatus_spare6  fileexp.storestatus_spare6
        Unsigned 32-bit integer
    fileexp.storestatus_trunc_high  fileexp.storestatus_trunc_high
        Unsigned 32-bit integer
    fileexp.storestatus_trunc_low  fileexp.storestatus_trunc_low
        Unsigned 32-bit integer
    fileexp.storestatus_typeuuid  fileexp.storestatus_typeuuid
        Globally Unique Identifier
        UUID
    fileexp.string  String
        String
    fileexp.tn_length  fileexp.tn_length
        Unsigned 16-bit integer
    fileexp.tn_size  String Size
        Unsigned 32-bit integer
    fileexp.tn_tag  fileexp.tn_tag
        Unsigned 32-bit integer
    fileexp.tokenid_hi  fileexp.tokenid_hi
        Unsigned 32-bit integer
    fileexp.tokenid_low  fileexp.tokenid_low
        Unsigned 32-bit integer
    fileexp.type_hi  fileexp.type_hi
        Unsigned 32-bit integer
    fileexp.type_high  Type high
        Unsigned 32-bit integer
    fileexp.type_low  fileexp.type_low
        Unsigned 32-bit integer
    fileexp.typeuuid  fileexp.typeuuid
        Globally Unique Identifier
        UUID
    fileexp.uint  fileexp.uint
        Unsigned 32-bit integer
    fileexp.unique  fileexp.unique
        Unsigned 32-bit integer
    fileexp.uuid  AFS UUID
        Globally Unique Identifier
        UUID
    fileexp.vnode  fileexp.vnode
        Unsigned 32-bit integer
    fileexp.volid_hi  fileexp.volid_hi
        Unsigned 32-bit integer
    fileexp.volid_low  fileexp.volid_low
        Unsigned 32-bit integer
    fileexp.volume_high  fileexp.volume_high
        Unsigned 32-bit integer
    fileexp.volume_low  fileexp.volume_low
        Unsigned 32-bit integer
    fileexp.vv_hi  fileexp.vv_hi
        Unsigned 32-bit integer
    fileexp.vv_low  fileexp.vv_low
        Unsigned 32-bit integer
    fileexp.vvage  fileexp.vvage
        Unsigned 32-bit integer
    fileexp.vvpingage  fileexp.vvpingage
        Unsigned 32-bit integer
    fileexp.vvspare1  fileexp.vvspare1
        Unsigned 32-bit integer
    fileexp.vvspare2  fileexp.vvspare2
        Unsigned 32-bit integer
    hf_afsconnparams_mask  hf_afsconnparams_mask
        Unsigned 32-bit integer
    hf_afsconnparams_values  hf_afsconnparams_values
        Unsigned 32-bit integer

DCE DFS Fileset Location Server (fldb)

    fldb.NameString_principal  Principal Name
        String
    fldb.afsnetaddr.data  IP Data
        Unsigned 8-bit integer
    fldb.afsnetaddr.type  Type
        Unsigned 16-bit integer
    fldb.createentry_rqst_key_size  Volume Size
        Unsigned 32-bit integer
    fldb.createentry_rqst_key_t  Volume
        String
    fldb.creationquota  creation quota
        Unsigned 32-bit integer
    fldb.creationuses  creation uses
        Unsigned 32-bit integer
    fldb.deletedflag  deletedflag
        Unsigned 32-bit integer
    fldb.deleteentry_rqst_fsid_high  FSID deleteentry Hi
        Unsigned 32-bit integer
    fldb.deleteentry_rqst_fsid_low  FSID deleteentry Low
        Unsigned 32-bit integer
    fldb.deleteentry_rqst_voloper  voloper
        Unsigned 32-bit integer
    fldb.deleteentry_rqst_voltype  voltype
        Unsigned 32-bit integer
    fldb.error_st  Error Status 2
        Unsigned 32-bit integer
    fldb.flagsp  flagsp
        Unsigned 32-bit integer
    fldb.getentrybyid_rqst_fsid_high  FSID deleteentry Hi
        Unsigned 32-bit integer
    fldb.getentrybyid_rqst_fsid_low  FSID getentrybyid Low
        Unsigned 32-bit integer
    fldb.getentrybyid_rqst_voloper  voloper
        Unsigned 32-bit integer
    fldb.getentrybyid_rqst_voltype  voltype
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_cloneid_high  fldb_getentrybyname_resp_cloneid_high
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_cloneid_low  fldb_getentrybyname_resp_cloneid_low
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_defaultmaxreplat  fldb_getentrybyname_resp_defaultmaxreplat
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_flags  fldb_getentrybyname_resp_flags
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_hardmaxtotlat  fldb_getentrybyname_resp_hardmaxtotlat
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_key_size  fldb_getentrybyname_resp_key_size
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_key_t  fldb_getentrybyname_resp_key_t
        String
    fldb.getentrybyname_resp_maxtotallat  fldb_getentrybyname_resp_maxtotallat
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_minpouncedally  fldb_getentrybyname_resp_minpouncedally
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_numservers  fldb_getentrybyname_resp_numservers
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_reclaimdally  fldb_getentrybyname_resp_reclaimdally
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_sitecookies  fldb_getentrybyname_resp_sitecookies
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_siteflags  fldb_getentrybyname_resp_siteflags
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_sitemaxreplat  fldb_getentrybyname_resp_sitemaxreplat
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_sitepartition  fldb_getentrybyname_resp_sitepartition
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_spare1  fldb_getentrybyname_resp_spare1
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_spare2  fldb_getentrybyname_resp_spare2
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_spare3  fldb_getentrybyname_resp_spare3
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_spare4  fldb_getentrybyname_resp_spare4
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_test  fldb_getentrybyname_resp_test
        Unsigned 8-bit integer
    fldb.getentrybyname_resp_volid_high  fldb_getentrybyname_resp_volid_high
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_volid_low  fldb_getentrybyname_resp_volid_low
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_voltype  fldb_getentrybyname_resp_voltype
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_volumetype  fldb_getentrybyname_resp_volumetype
        Unsigned 32-bit integer
    fldb.getentrybyname_resp_whenlocked  fldb_getentrybyname_resp_whenlocked
        Unsigned 32-bit integer
    fldb.getentrybyname_rqst_key_size  getentrybyname
        Unsigned 32-bit integer
    fldb.getentrybyname_rqst_var1  getentrybyname var1
        Unsigned 32-bit integer
    fldb.listentry_resp_count  Count
        Unsigned 32-bit integer
    fldb.listentry_resp_key_size  Key Size
        Unsigned 32-bit integer
    fldb.listentry_resp_key_size2  key_size2
        Unsigned 32-bit integer
    fldb.listentry_resp_key_t  Volume
        String
    fldb.listentry_resp_key_t2  Server
        String
    fldb.listentry_resp_next_index  Next Index
        Unsigned 32-bit integer
    fldb.listentry_resp_voltype  VolType
        Unsigned 32-bit integer
    fldb.listentry_rqst_previous_index  Previous Index
        Unsigned 32-bit integer
    fldb.listentry_rqst_var1  Var 1
        Unsigned 32-bit integer
    fldb.namestring_size  namestring size
        Unsigned 32-bit integer
    fldb.nextstartp  nextstartp
        Unsigned 32-bit integer
    fldb.numwanted  number wanted
        Unsigned 32-bit integer
    fldb.opnum  Operation
        Unsigned 16-bit integer
    fldb.principalName_size  Principal Name Size
        Unsigned 32-bit integer
    fldb.principalName_size2  Principal Name Size2
        Unsigned 32-bit integer
    fldb.releaselock_rqst_fsid_high  FSID releaselock Hi
        Unsigned 32-bit integer
    fldb.releaselock_rqst_fsid_low  FSID releaselock Low
        Unsigned 32-bit integer
    fldb.releaselock_rqst_voloper  voloper
        Unsigned 32-bit integer
    fldb.releaselock_rqst_voltype  voltype
        Unsigned 32-bit integer
    fldb.replaceentry_resp_st  Error
        Unsigned 32-bit integer
    fldb.replaceentry_resp_st2  Error
        Unsigned 32-bit integer
    fldb.replaceentry_rqst_fsid_high  FSID replaceentry Hi
        Unsigned 32-bit integer
    fldb.replaceentry_rqst_fsid_low  FSID  replaceentry Low
        Unsigned 32-bit integer
    fldb.replaceentry_rqst_key_size  Key Size
        Unsigned 32-bit integer
    fldb.replaceentry_rqst_key_t  Key
        String
    fldb.replaceentry_rqst_voltype  voltype
        Unsigned 32-bit integer
    fldb.setlock_resp_st  Error
        Unsigned 32-bit integer
    fldb.setlock_resp_st2  Error
        Unsigned 32-bit integer
    fldb.setlock_rqst_fsid_high  FSID setlock Hi
        Unsigned 32-bit integer
    fldb.setlock_rqst_fsid_low  FSID setlock Low
        Unsigned 32-bit integer
    fldb.setlock_rqst_voloper  voloper
        Unsigned 32-bit integer
    fldb.setlock_rqst_voltype  voltype
        Unsigned 32-bit integer
    fldb.spare2  spare2
        Unsigned 32-bit integer
    fldb.spare3  spare3
        Unsigned 32-bit integer
    fldb.spare4  spare4
        Unsigned 32-bit integer
    fldb.spare5  spare5
        Unsigned 32-bit integer
    fldb.uuid_objid  objid
        Globally Unique Identifier
        UUID
    fldb.uuid_owner  owner
        Globally Unique Identifier
        UUID
    fldb.vlconf.cellidhigh  CellID High
        Unsigned 32-bit integer
    fldb.vlconf.cellidlow  CellID Low
        Unsigned 32-bit integer
    fldb.vlconf.hostname  hostName
        String
    fldb.vlconf.name  Name
        String
    fldb.vlconf.numservers  Number of Servers
        Unsigned 32-bit integer
    fldb.vlconf.spare1  Spare1
        Unsigned 32-bit integer
    fldb.vlconf.spare2  Spare2
        Unsigned 32-bit integer
    fldb.vlconf.spare3  Spare3
        Unsigned 32-bit integer
    fldb.vlconf.spare4  Spare4
        Unsigned 32-bit integer
    fldb.vlconf.spare5  Spare5
        Unsigned 32-bit integer
    fldb.vldbentry.afsflags  AFS Flags
        Unsigned 32-bit integer
    fldb.vldbentry.charspares  Char Spares
        String
    fldb.vldbentry.cloneidhigh  CloneID High
        Unsigned 32-bit integer
    fldb.vldbentry.cloneidlow  CloneID Low
        Unsigned 32-bit integer
    fldb.vldbentry.defaultmaxreplicalatency  Default Max Replica Latency
        Unsigned 32-bit integer
    fldb.vldbentry.hardmaxtotallatency  Hard Max Total Latency
        Unsigned 32-bit integer
    fldb.vldbentry.lockername  Locker Name
        String
    fldb.vldbentry.maxtotallatency  Max Total Latency
        Unsigned 32-bit integer
    fldb.vldbentry.minimumpouncedally  Minimum Pounce Dally
        Unsigned 32-bit integer
    fldb.vldbentry.nservers  Number of Servers
        Unsigned 32-bit integer
    fldb.vldbentry.reclaimdally  Reclaim Dally
        Unsigned 32-bit integer
    fldb.vldbentry.siteflags  Site Flags
        Unsigned 32-bit integer
    fldb.vldbentry.sitemaxreplatency  Site Max Replica Latench
        Unsigned 32-bit integer
    fldb.vldbentry.siteobjid  Site Object ID
        Globally Unique Identifier
        UUID
    fldb.vldbentry.siteowner  Site Owner
        Globally Unique Identifier
        UUID
    fldb.vldbentry.sitepartition  Site Partition
        Unsigned 32-bit integer
    fldb.vldbentry.siteprincipal  Principal Name
        String
    fldb.vldbentry.spare1  Spare 1
        Unsigned 32-bit integer
    fldb.vldbentry.spare2  Spare 2
        Unsigned 32-bit integer
    fldb.vldbentry.spare3  Spare 3
        Unsigned 32-bit integer
    fldb.vldbentry.spare4  Spare 4
        Unsigned 32-bit integer
    fldb.vldbentry.volidshigh  VolIDs high
        Unsigned 32-bit integer
    fldb.vldbentry.volidslow  VolIDs low
        Unsigned 32-bit integer
    fldb.vldbentry.voltypes  VolTypes
        Unsigned 32-bit integer
    fldb.vldbentry.volumename  VolumeName
        String
    fldb.vldbentry.volumetype  VolumeType
        Unsigned 32-bit integer
    fldb.vldbentry.whenlocked  When Locked
        Unsigned 32-bit integer
    fldb.volid_high  volid high
        Unsigned 32-bit integer
    fldb.volid_low  volid low
        Unsigned 32-bit integer
    fldb.voltype  voltype
        Unsigned 32-bit integer

DCE DFS ICL RPC (icl_rpc)

    icl_rpc.opnum  Operation
        Unsigned 16-bit integer

DCE DFS Replication Server (rep_proc)

    rep_proc.opnum  Operation
        Unsigned 16-bit integer

DCE DFS Token Server (tkn4int)

    tkn4int.opnum  Operation
        Unsigned 16-bit integer

DCE Distributed Time Service Local Server (dtsstime_req)

    dtsstime_req.opnum  Operation
        Unsigned 16-bit integer

DCE Distributed Time Service Provider (dtsprovider)

    dtsprovider.opnum  Operation
        Unsigned 16-bit integer
    dtsprovider.status  Status
        Unsigned 32-bit integer
        Return code, status of executed command

DCE Name Service (rs_pgo)

    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
        Globally Unique Identifier
        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

DCE RPC (dcerpc)

    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
        Globally Unique Identifier
    dcerpc.cn_ack_trans_ver  Syntax ver
        Unsigned 32-bit integer
    dcerpc.cn_alloc_hint  Alloc hint
        Unsigned 32-bit integer
    dcerpc.cn_assoc_group  Assoc Group
        Unsigned 32-bit integer
    dcerpc.cn_auth_len  Auth Length
        Unsigned 16-bit integer
    dcerpc.cn_bind_abstract_syntax  Abstract Syntax
        No value
    dcerpc.cn_bind_if_ver  Interface Ver
        Unsigned 16-bit integer
    dcerpc.cn_bind_if_ver_minor  Interface Ver Minor
        Unsigned 16-bit integer
    dcerpc.cn_bind_to_uuid  Interface UUID
        Globally Unique Identifier
    dcerpc.cn_bind_trans  Transfer Syntax
        No value
    dcerpc.cn_bind_trans_id  ID
        Globally Unique Identifier
    dcerpc.cn_bind_trans_ver  ver
        Unsigned 32-bit integer
    dcerpc.cn_call_id  Call ID
        Unsigned 32-bit integer
    dcerpc.cn_cancel_count  Cancel count
        Unsigned 8-bit integer
    dcerpc.cn_ctx_id  Context ID
        Unsigned 16-bit integer
    dcerpc.cn_ctx_item  Ctx Item
        No value
    dcerpc.cn_deseg_req  Desegmentation Required
        Unsigned 32-bit integer
    dcerpc.cn_flags  Packet Flags
        Unsigned 8-bit integer
    dcerpc.cn_flags.cancel_pending  Cancel Pending
        Boolean
    dcerpc.cn_flags.dne  Did Not Execute
        Boolean
    dcerpc.cn_flags.first_frag  First Frag
        Boolean
    dcerpc.cn_flags.last_frag  Last Frag
        Boolean
    dcerpc.cn_flags.maybe  Maybe
        Boolean
    dcerpc.cn_flags.mpx  Multiplex
        Boolean
    dcerpc.cn_flags.object  Object
        Boolean
    dcerpc.cn_flags.reserved  Reserved
        Boolean
    dcerpc.cn_frag_len  Frag Length
        Unsigned 16-bit integer
    dcerpc.cn_max_recv  Max Recv Frag
        Unsigned 16-bit integer
    dcerpc.cn_max_xmit  Max Xmit Frag
        Unsigned 16-bit integer
    dcerpc.cn_num_ctx_items  Num Ctx Items
        Unsigned 8-bit integer
    dcerpc.cn_num_protocols  Number of protocols
        Unsigned 8-bit integer
    dcerpc.cn_num_results  Num results
        Unsigned 8-bit integer
    dcerpc.cn_num_trans_items  Num Trans Items
        Unsigned 8-bit integer
    dcerpc.cn_protocol_ver_major  Protocol major version
        Unsigned 8-bit integer
    dcerpc.cn_protocol_ver_minor  Protocol minor version
        Unsigned 8-bit integer
    dcerpc.cn_reject_reason  Reject reason
        Unsigned 16-bit integer
    dcerpc.cn_sec_addr  Scndry Addr
        NULL terminated 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
        Globally Unique Identifier
    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
        Globally Unique Identifier
    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
    dcerpc.fragment.error  Defragmentation error
        Frame number
        Defragmentation error due to illegal fragments
    dcerpc.fragment.multipletails  Multiple tail fragments found
        Boolean
        Several tails were found when defragmenting the packet
    dcerpc.fragment.overlap  Fragment overlap
        Boolean
        Fragment overlaps with other fragments
    dcerpc.fragment.overlap.conflict  Conflicting data in fragment overlap
        Boolean
        Overlapping fragments contained conflicting data
    dcerpc.fragment.toolongfragment  Fragment too long
        Boolean
        Fragment contained data past end of packet
    dcerpc.fragments  Reassembled DCE/RPC Fragments
        No value
        DCE/RPC Fragments
    dcerpc.krb5_av.auth_verifier  Authentication Verifier
        Byte array
    dcerpc.krb5_av.key_vers_num  Key Version Number
        Unsigned 8-bit integer
    dcerpc.krb5_av.prot_level  Protection Level
        Unsigned 8-bit integer
    dcerpc.lsa_String.name_len  Name Len
        Unsigned 16-bit integer
    dcerpc.lsa_String.name_size  Name Size
        Unsigned 16-bit integer
    dcerpc.nt.acb.autolock  Account is autolocked
        Boolean
        If this account has been autolocked
    dcerpc.nt.acb.disabled  Account disabled
        Boolean
        If this account is enabled or disabled
    dcerpc.nt.acb.domtrust  Interdomain trust account
        Boolean
    dcerpc.nt.acb.homedirreq  Home dir required
        Boolean
        Is homedirs required for this account?
    dcerpc.nt.acb.mns  MNS logon user account
        Boolean
    dcerpc.nt.acb.normal  Normal user account
        Boolean
        If this is a normal user account
    dcerpc.nt.acb.pwnoexp  Password expires
        Boolean
        If this account expires or not
    dcerpc.nt.acb.pwnotreq  Password required
        Boolean
        If a password is required for this account?
    dcerpc.nt.acb.svrtrust  Server trust account
        Boolean
    dcerpc.nt.acb.tempdup  Temporary duplicate account
        Boolean
        If this is a temporary duplicate account
    dcerpc.nt.acb.wstrust  Workstation trust account
        Boolean
    dcerpc.nt.acct_ctrl  Acct Ctrl
        Unsigned 32-bit integer
        Acct CTRL
    dcerpc.nt.attr  Attributes
        Unsigned 32-bit integer
    dcerpc.nt.close_frame  Frame handle closed
        Frame number
    dcerpc.nt.count  Count
        Unsigned 32-bit integer
        Number of elements in following array
    dcerpc.nt.domain_sid  Domain SID
        String
        The Domain SID
    dcerpc.nt.guid  GUID
        Globally Unique Identifier
        GUID (uuid for groups?)
    dcerpc.nt.logonhours.divisions  Divisions
        Unsigned 16-bit integer
        Number of divisions for LOGON_HOURS
    dcerpc.nt.open_frame  Frame handle opened
        Frame number
    dcerpc.nt.str.len  Length
        Unsigned 16-bit integer
        Length of string in short integers
    dcerpc.nt.str.size  Size
        Unsigned 16-bit integer
        Size of string in short integers
    dcerpc.nt.unknown.char  Unknown char
        Unsigned 8-bit integer
        Unknown char. If you know what this is, contact wireshark developers.
    dcerpc.obj_id  Object
        Globally Unique Identifier
    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.length  Reassembled DCE/RPC length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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

DCE Security ID Mapper (secidmap)

    secidmap.opnum  Operation
        Unsigned 16-bit integer

DCE/DFS BUDB (budb)

    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
        Globally Unique Identifier
    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

DCE/RPC BUTC (butc)

    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

DCE/RPC CDS Solicitation (cds_solicit)

    cds_solicit.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC Conversation Manager (conv)

    conv.opnum  Operation
        Unsigned 16-bit integer
    conv.status  Status
        Unsigned 32-bit integer
    conv.who_are_you2_resp_casuuid  Client's address space UUID
        Globally Unique Identifier
        UUID
    conv.who_are_you2_resp_seq  Sequence Number
        Unsigned 32-bit integer
    conv.who_are_you2_rqst_actuid  Activity UID
        Globally Unique Identifier
        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
        Globally Unique Identifier
        UUID
    conv.who_are_you_rqst_boot_time  Boot time
        Date/Time stamp

DCE/RPC Directory Acl Interface (rdaclif)

    rdaclif.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC Endpoint Mapper (epm)

    epm.ann_len  Annotation length
        Unsigned 32-bit integer
    epm.ann_offset  Annotation offset
        Unsigned 32-bit integer
    epm.annotation  Annotation
        String
    epm.hnd  Handle
        Byte array
        Context handle
    epm.if_id  Interface
        Globally Unique Identifier
    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
        Globally Unique Identifier
    epm.opnum  Operation
        Unsigned 16-bit integer
    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
        Globally Unique Identifier
    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

DCE/RPC Endpoint Mapper v4 (epm4)

DCE/RPC Kerberos V (krb5rpc)

    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

DCE/RPC NCS 1.5.1 Local Location Broker (llb)

    llb.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC Operations between registry server replicas (rs_repmgr)

    rs_repmgr.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC Prop Attr (rs_prop_attr)

    rs_prop_attr.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC RS_ACCT (rs_acct)

    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
    rs_lookup.get_rqst_key_t  Key
        String

DCE/RPC RS_BIND (rs_bind)

    rs_bind.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC RS_MISC (rs_misc)

    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

DCE/RPC RS_PROP_ACCT (rs_prop_acct)

    rs_prop_acct.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC RS_UNIX (rs_unix)

    rs_unix.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC Registry Password Management (rs_pwd_mgmt)

    rs_pwd_mgmt.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC Registry Server Attributes Schema (rs_attr_schema)

    rs_attr_schema.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC Registry server propagation interface - ACLs (rs_prop_acl)

    rs_prop_acl.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC Registry server propagation interface - PGO items (rs_prop_pgo)

    rs_prop_pgo.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC Registry server propagation interface - properties and policies (rs_prop_plcy)

    rs_prop_plcy.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC Remote Management (mgmt)

    mgmt.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC Repserver Calls (rs_replist)

    rs_replist.opnum  Operation
        Unsigned 16-bit integer

DCE/RPC UpServer (dce_update)

    dce_update.opnum  Operation
        Unsigned 16-bit integer

DCOM (dcom)

    dcom.actual_count  ActualCount
        Unsigned 32-bit integer
    dcom.array_size  (ArraySize)
        Unsigned 32-bit integer
    dcom.byte_length  ByteLength
        Unsigned 32-bit integer
    dcom.clsid  CLSID
        Globally Unique Identifier
    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
        Globally Unique Identifier
    dcom.extent.size  Extension Size
        Unsigned 32-bit integer
    dcom.hresult  HResult
        Unsigned 32-bit integer
    dcom.ifp  InterfacePointer
        No value
    dcom.iid  IID
        Globally Unique Identifier
    dcom.ip_cnt_data  CntData
        Unsigned 32-bit integer
    dcom.ipid  IPID
        Globally Unique Identifier
    dcom.max_count  MaxCount
        Unsigned 32-bit integer
    dcom.nospec  No Specification Available
        Byte array
    dcom.objref  OBJREF
        No value
    dcom.objref.cbextension  CBExtension
        Unsigned 32-bit integer
        Size of extension data
    dcom.objref.flags  Flags
        Unsigned 32-bit integer
    dcom.objref.resolver_address  ResolverAddress
        No value
    dcom.objref.signature  Signature
        Unsigned 32-bit integer
    dcom.objref.size  Size
        Unsigned 32-bit integer
    dcom.offset  Offset
        Unsigned 32-bit integer
    dcom.oid  OID
        Unsigned 64-bit integer
    dcom.oxid  OXID
        Unsigned 64-bit integer
    dcom.pointer_val  (PointerVal)
        Unsigned 32-bit integer
    dcom.sa  SAFEARRAY
        No value
    dcom.sa.bound_elements  BoundElements
        Unsigned 32-bit integer
    dcom.sa.dims16  Dims16
        Unsigned 16-bit integer
    dcom.sa.dims32  Dims32
        Unsigned 32-bit integer
    dcom.sa.element_size  ElementSize
        Unsigned 32-bit integer
    dcom.sa.elements  Elements
        Unsigned 32-bit integer
    dcom.sa.features  Features
        Unsigned 16-bit integer
    dcom.sa.features_auto  AUTO
        Boolean
    dcom.sa.features_bstr  BSTR
        Boolean
    dcom.sa.features_dispatch  DISPATCH
        Boolean
    dcom.sa.features_embedded  EMBEDDED
        Boolean
    dcom.sa.features_fixedsize  FIXEDSIZE
        Boolean
    dcom.sa.features_have_iid  HAVEIID
        Boolean
    dcom.sa.features_have_vartype  HAVEVARTYPE
        Boolean
    dcom.sa.features_record  RECORD
        Boolean
    dcom.sa.features_static  STATIC
        Boolean
    dcom.sa.features_unknown  UNKNOWN
        Boolean
    dcom.sa.features_variant  VARIANT
        Boolean
    dcom.sa.locks  Locks
        Unsigned 16-bit integer
    dcom.sa.low_bound  LowBound
        Unsigned 32-bit integer
    dcom.sa.vartype  VarType32
        Unsigned 32-bit integer
    dcom.stdobjref  STDOBJREF
        No value
    dcom.stdobjref.flags  Flags
        Unsigned 32-bit integer
    dcom.stdobjref.public_refs  PublicRefs
        Unsigned 32-bit integer
    dcom.that.flags  Flags
        Unsigned 32-bit integer
    dcom.this.flags  Flags
        Unsigned 32-bit integer
    dcom.this.res  Reserved
        Unsigned 32-bit integer
    dcom.this.uuid  Causality ID
        Globally Unique Identifier
    dcom.this.version_major  VersionMajor
        Unsigned 16-bit integer
    dcom.this.version_minor  VersionMinor
        Unsigned 16-bit integer
    dcom.tobedone  To Be Done
        Byte array
    dcom.variant  Variant
        No value
    dcom.variant_rpc_res  RPC-Reserved
        Unsigned 32-bit integer
    dcom.variant_size  Size
        Unsigned 32-bit integer
    dcom.variant_type  VarType
        Unsigned 16-bit integer
    dcom.variant_type32  VarType32
        Unsigned 32-bit integer
    dcom.variant_wres  Reserved
        Unsigned 16-bit integer
    dcom.version_major  VersionMajor
        Unsigned 16-bit integer
    dcom.version_minor  VersionMinor
        Unsigned 16-bit integer
    dcom.vt.bool  VT_BOOL
        Unsigned 16-bit integer
    dcom.vt.bstr  VT_BSTR
        String
    dcom.vt.byref  BYREF
        No value
    dcom.vt.date  VT_DATE
        Double-precision floating point
    dcom.vt.dispatch  VT_DISPATCH
        No value
    dcom.vt.i1  VT_I1
        Signed 8-bit integer
    dcom.vt.i2  VT_I2
        Signed 16-bit integer
    dcom.vt.i4  VT_I4
        Signed 32-bit integer
    dcom.vt.i8  VT_I8
        Signed 64-bit integer
    dcom.vt.r4  VT_R4
        Single-precision floating point
    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

DCOM IDispatch (dispatch)

    dispatch_arg  Argument
        No value
    dispatch_arg_err  ArgErr
        Unsigned 32-bit integer
    dispatch_args  Args
        Unsigned 32-bit integer
    dispatch_code  Code
        Unsigned 16-bit integer
    dispatch_deferred_fill_in  DeferredFillIn
        Unsigned 32-bit integer
    dispatch_description  Description
        String
    dispatch_dispparams  DispParams
        No value
    dispatch_excepinfo  ExcepInfo
        No value
    dispatch_flags  Flags
        Unsigned 32-bit integer
    dispatch_flags_method  Method
        Boolean
    dispatch_flags_propget  PropertyGet
        Boolean
    dispatch_flags_propput  PropertyPut
        Boolean
    dispatch_flags_propputref  PropertyPutRef
        Boolean
    dispatch_help_context  HelpContext
        Unsigned 32-bit integer
    dispatch_help_file  HelpFile
        String
    dispatch_id  DispID
        Unsigned 32-bit integer
    dispatch_itinfo  TInfo
        No value
    dispatch_lcid  LCID
        Unsigned 32-bit integer
    dispatch_named_args  NamedArgs
        Unsigned 32-bit integer
    dispatch_names  Names
        Unsigned 32-bit integer
    dispatch_opnum  Operation
        Unsigned 16-bit integer
    dispatch_reserved16  Reserved
        Unsigned 16-bit integer
    dispatch_reserved32  Reserved
        Unsigned 32-bit integer
    dispatch_riid  RIID
        Globally Unique Identifier
    dispatch_scode  SCode
        Unsigned 32-bit integer
    dispatch_source  Source
        String
    dispatch_tinfo  TInfo
        Unsigned 32-bit integer
    dispatch_varref  VarRef
        Unsigned 32-bit integer
    dispatch_varrefarg  VarRef
        No value
    dispatch_varrefidx  VarRefIdx
        Unsigned 32-bit integer
    dispatch_varresult  VarResult
        No value
    hf_dispatch_name  Name
        String

DCOM IRemoteActivation (remact)

    hf_remact_oxid_bindings  OxidBindings
        No value
    remact_authn_hint  AuthnHint
        Unsigned 32-bit integer
    remact_client_impl_level  ClientImplLevel
        Unsigned 32-bit integer
    remact_interface_data  InterfaceData
        No value
    remact_interfaces  Interfaces
        Unsigned 32-bit integer
    remact_mode  Mode
        Unsigned 32-bit integer
    remact_object_name  ObjectName
        String
    remact_object_storage  ObjectStorage
        No value
    remact_opnum  Operation
        Unsigned 16-bit integer
    remact_prot_seqs  ProtSeqs
        Unsigned 16-bit integer
    remact_req_prot_seqs  RequestedProtSeqs
        Unsigned 16-bit integer

DCOM OXID Resolver (oxid)

    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
        Globally Unique Identifier
    oxid_oid  OID
        Unsigned 64-bit integer
    oxid_oxid  OXID
        Unsigned 64-bit integer
    oxid_ping_backoff_factor  PingBackoffFactor
        Unsigned 16-bit integer
    oxid_protseqs  ProtSeq
        Unsigned 16-bit integer
    oxid_requested_protseqs  RequestedProtSeq
        Unsigned 16-bit integer
    oxid_seqnum  SeqNum
        Unsigned 16-bit integer
    oxid_setid  SetId
        Unsigned 64-bit integer

DCP Application Framing Layer (dcp-af)

    dcp-af.crc  CRC
        Unsigned 16-bit integer
    dcp-af.crc_ok  CRC OK
        Boolean
        AF CRC OK
    dcp-af.crcflag  crc flag
        Boolean
        Frame is protected by CRC
    dcp-af.len  length
        Unsigned 32-bit integer
        length in bytes of the payload
    dcp-af.maj  Major Revision
        Unsigned 8-bit integer
        Major Protocol Revision
    dcp-af.min  Minor Revision
        Unsigned 8-bit integer
        Minor Protocol Revision
    dcp-af.pt  Payload Type
        String
        T means Tag Packets, all other values reserved
    dcp-af.seq  frame count
        Unsigned 16-bit integer
        Logical Frame Number

DCP Protection, Fragmentation & Transport Layer (dcp-pft)

    dcp-pft.addr  Addr
        Boolean
        When set the optional transport header is present
    dcp-pft.cmax  C max
        Unsigned 16-bit integer
        Maximum number of RS chunks sent
    dcp-pft.crc  header CRC
        Unsigned 16-bit integer
        PFT Header CRC
    dcp-pft.crc_ok  PFT CRC OK
        Boolean
        PFT Header CRC OK
    dcp-pft.dest  dest addr
        Unsigned 16-bit integer
        PFT destination identifier
    dcp-pft.fcount  Fragment Count
        Unsigned 24-bit integer
        Number of fragments produced from this AF Packet
    dcp-pft.fec  FEC
        Boolean
        When set the optional RS header is present
    dcp-pft.findex  Fragment Index
        Unsigned 24-bit integer
        Index of the fragment within one AF Packet
    dcp-pft.fragment  Message fragment
        Frame number
    dcp-pft.fragment.error  Message defragmentation error
        Frame number
    dcp-pft.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    dcp-pft.fragment.overlap  Message fragment overlap
        Boolean
    dcp-pft.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    dcp-pft.fragment.too_long_fragment  Message fragment too long
        Boolean
    dcp-pft.fragments  Message fragments
        No value
    dcp-pft.len  fragment length
        Unsigned 16-bit integer
        length in bytes of the payload of this fragment
    dcp-pft.payload  payload
        Byte array
        PFT Payload
    dcp-pft.pt  Sub-protocol
        Unsigned 8-bit integer
        Always AF
    dcp-pft.reassembled.in  Reassembled in
        Unsigned 32-bit integer
    dcp-pft.reassembled.length  Reassembled DCP (ETSI) length
        Unsigned 32-bit integer
    dcp-pft.rs_corrected  RS Symbols Corrected
        Signed 16-bit integer
        Number of symbols corrected by RS decode or -1 for failure
    dcp-pft.rs_ok  RS decode OK
        Boolean
        successfully decoded RS blocks
    dcp-pft.rsk  RSk
        Unsigned 8-bit integer
        The length of the Reed Solomon data word
    dcp-pft.rsz  RSz
        Unsigned 8-bit integer
        The number of padding bytes in the last Reed Solomon block
    dcp-pft.rxmin  Rx min
        Unsigned 16-bit integer
        Minimum number of fragments needed for RS decode
    dcp-pft.seq  Sequence No
        Unsigned 16-bit integer
        PFT Sequence No
    dcp-pft.source  source addr
        Unsigned 16-bit integer
        PFT source identifier

DCP Tag Packet Layer (dcp-tpl)

    dcp-tpl.ptr  Type
        String
        Protocol Type & Revision
    dcp-tpl.tlv  tag
        Byte array
        Tag Packet

DEC DNA Routing Protocol (dec_dna)

    dec_dna.ctl.acknum  Ack/Nak
        No value
        ack/nak number
    dec_dna.ctl.blk_size  Block size
        Unsigned 16-bit integer
    dec_dna.ctl.elist  List of router states
        No value
        Router states
    dec_dna.ctl.ename  Ethernet name
        Byte array
    dec_dna.ctl.fcnval  Verification message function value
        Byte array
        Routing Verification function
    dec_dna.ctl.id  Transmitting system ID
        6-byte Hardware (MAC) Address
    dec_dna.ctl.iinfo.blkreq  Blocking requested
        Boolean
        Blocking requested?
    dec_dna.ctl.iinfo.mta  Accepts multicast traffic
        Boolean
        Accepts multicast traffic?
    dec_dna.ctl.iinfo.node_type  Node type
        Unsigned 8-bit integer
    dec_dna.ctl.iinfo.rej  Rejected
        Boolean
        Rejected message
    dec_dna.ctl.iinfo.verf  Verification failed
        Boolean
        Verification failed?
    dec_dna.ctl.iinfo.vrf  Verification required
        Boolean
        Verification required?
    dec_dna.ctl.prio  Routing priority
        Unsigned 8-bit integer
    dec_dna.ctl.reserved  Reserved
        Byte array
    dec_dna.ctl.router_id  Router ID
        6-byte Hardware (MAC) Address
    dec_dna.ctl.router_prio  Router priority
        Unsigned 8-bit integer
    dec_dna.ctl.router_state  Router state
        String
    dec_dna.ctl.seed  Verification seed
        Byte array
    dec_dna.ctl.segment  Segment
        No value
        Routing Segment
    dec_dna.ctl.test_data  Test message data
        Byte array
        Routing Test message data
    dec_dna.ctl.tiinfo  Routing information
        Unsigned 8-bit integer
    dec_dna.ctl.timer  Hello timer(seconds)
        Unsigned 16-bit integer
        Hello timer in seconds
    dec_dna.ctl.version  Version
        No value
        Control protocol version
    dec_dna.ctl_neighbor  Neighbor
        6-byte Hardware (MAC) Address
        Neighbour ID
    dec_dna.dst.address  Destination Address
        6-byte Hardware (MAC) Address
        Destination address
    dec_dna.dst_node  Destination node
        Unsigned 16-bit integer
    dec_dna.flags  Routing flags
        Unsigned 8-bit integer
        DNA routing flag
    dec_dna.flags.RQR  Return to Sender Request
        Boolean
        Return to Sender
    dec_dna.flags.RTS  Packet on return trip
        Boolean
    dec_dna.flags.control  Control packet
        Boolean
    dec_dna.flags.discard  Discarded packet
        Boolean
    dec_dna.flags.intra_eth  Intra-ethernet packet
        Boolean
    dec_dna.flags.msglen  Long data packet format
        Unsigned 8-bit integer
        Long message indicator
    dec_dna.nl2  Next level 2 router
        Unsigned 8-bit integer
        reserved
    dec_dna.nsp.delay  Delayed ACK allowed
        Boolean
        Delayed ACK allowed?
    dec_dna.nsp.disc_reason  Reason for disconnect
        Unsigned 16-bit integer
        Disconnect reason
    dec_dna.nsp.fc_val  Flow control
        No value
    dec_dna.nsp.flow_control  Flow control
        Unsigned 8-bit integer
        Flow control(stop, go)
    dec_dna.nsp.info  Version info
        Unsigned 8-bit integer
    dec_dna.nsp.msg_type  DNA NSP message
        Unsigned 8-bit integer
        NSP message
    dec_dna.nsp.segnum  Message number
        Unsigned 16-bit integer
        Segment number
    dec_dna.nsp.segsize  Maximum data segment size
        Unsigned 16-bit integer
        Max. segment size
    dec_dna.nsp.services  Requested services
        Unsigned 8-bit integer
        Services requested
    dec_dna.proto_type  Protocol type
        Unsigned 8-bit integer
        reserved
    dec_dna.rt.msg_type  Routing control message
        Unsigned 8-bit integer
        Routing control
    dec_dna.sess.conn  Session connect data
        No value
    dec_dna.sess.dst_name  Session Destination end user
        String
    dec_dna.sess.grp_code  Session Group code
        Unsigned 16-bit integer
        Session group code
    dec_dna.sess.menu_ver  Session Menu version
        String
        Session menu version
    dec_dna.sess.obj_type  Session Object type
        Unsigned 8-bit integer
        Session object type
    dec_dna.sess.rqstr_id  Session Requestor ID
        String
        Session requestor ID
    dec_dna.sess.src_name  Session Source end user
        String
    dec_dna.sess.usr_code  Session User code
        Unsigned 16-bit integer
    dec_dna.src.addr  Source Address
        6-byte Hardware (MAC) Address
        Source address
    dec_dna.src_node  Source node
        Unsigned 16-bit integer
    dec_dna.svc_cls  Service class
        Unsigned 8-bit integer
        reserved
    dec_dna.visit_cnt  Visit count
        Unsigned 8-bit integer
    dec_dna.vst_node  Nodes visited ty this package
        Unsigned 8-bit integer
        Nodes visited

DEC Spanning Tree Protocol (dec_stp)

    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

DECT Protocol (dect)

    dect.afield  A-Field
        Byte array
    dect.afield.head  A-Field Header
        Unsigned 8-bit integer
    dect.afield.head.BA  BA
        Unsigned 8-bit integer
    dect.afield.head.Q1  Q1
        Unsigned 8-bit integer
    dect.afield.head.Q2  Q2
        Unsigned 8-bit integer
    dect.afield.head.TA  TA
        Unsigned 8-bit integer
    dect.afield.rcrc  A-Field R-CRC
        Unsigned 8-bit integer
    dect.afield.tail  A-Field Tail
        No value
    dect.afield.tail.Mt.BasicConCtrl  Cmd
        Unsigned 8-bit integer
    dect.afield.tail.Mt.Encr.Cmd1  Cmd1
        Unsigned 8-bit integer
    dect.afield.tail.Mt.Encr.Cmd2  Cmd2
        Unsigned 8-bit integer
    dect.afield.tail.Mt.Mh  Mh
        Unsigned 8-bit integer
    dect.afield.tail.Mt.Mh.attr  Mh
        No value
    dect.afield.tail.Mt.Mh.fmid  Mh/FMID
        Unsigned 16-bit integer
    dect.afield.tail.Mt.Mh.pmid  Mh/PMID
        Unsigned 24-bit integer
    dect.afield.tail.Nt  RFPI
        Byte array
        A-Field Tail: Nt/RFPI
    dect.afield.tail.Pt.BsData  Bs Data
        No value
    dect.afield.tail.Pt.CN  CN
        Unsigned 8-bit integer
    dect.afield.tail.Pt.ExtFlag  ExtFlag
        Unsigned 8-bit integer
    dect.afield.tail.Pt.FillBits  FillBits
        No value
    dect.afield.tail.Pt.InfoType  InfoType
        Unsigned 8-bit integer
    dect.afield.tail.Pt.RFPI  InfoType
        No value
    dect.afield.tail.Pt.SDU  Bs SDU
        Unsigned 8-bit integer
    dect.afield.tail.Pt.SN  SN
        Unsigned 8-bit integer
    dect.afield.tail.Pt.SP  SP
        Unsigned 8-bit integer
    dect.afield.tail.Pt.SlotPairs  SlotPairs
        No value
    dect.afield.tail.Qt.CA  CA
        No value
    dect.afield.tail.Qt.CN  CN
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A20  A20
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A23  A23
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A24  A24
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A25  A25
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A26  A26
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A27  A27
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A28  A28
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A29  A29
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A30  A30
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A31  A31
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A32  A32
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A33  A33
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A34  A34
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A35  A35
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A36  A36
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A37  A37
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A38  A38
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A39  A39
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A40  A40
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A41  A41
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A42  A42
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A43  A43
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A44  A44
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A45  A45
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A46  A46
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.A47  A47
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.CRFPEnc  CRFP Enc
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.CRFPHops  CRFP Hops
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.MACIpq  MAC Ipq
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.MACSusp  MAC Suspend
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.REPCap  REP Cap.
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Efp.REPHops  REP Hops
        Unsigned 16-bit integer
    dect.afield.tail.Qt.Efp.Sync  Sync
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Esc  Esc
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A12  A12
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A13  A13
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A14  A14
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A15  A15
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A16  A16
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A17  A17
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A18  A18
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A19  A19
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A20  A20
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A21  A21
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A22  A22
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A23  A23
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A24  A24
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A25  A25
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A26  A26
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A27  A27
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A28  A28
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A29  A29
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A30  A30
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A31  A31
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A32  A32
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A33  A33
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A34  A34
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A35  A35
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A36  A36
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A37  A37
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A38  A38
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A39  A39
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A40  A40
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A41  A41
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A42  A42
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A43  A43
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A44  A44
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A45  A45
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A46  A46
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Fp.A47  A47
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Mc  Mc
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Mfn.Mfn  Multiframe Number
        Byte array
    dect.afield.tail.Qt.Mfn.Spare  Spare Bits
        Unsigned 16-bit integer
    dect.afield.tail.Qt.NR  NR
        Unsigned 8-bit integer
    dect.afield.tail.Qt.PSCN  PSCN
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Qh  Qh
        Unsigned 8-bit integer
    dect.afield.tail.Qt.SN  SN
        Unsigned 8-bit integer
    dect.afield.tail.Qt.SP  SP
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Spr1  Spr1
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Spr2  Spr2
        Unsigned 8-bit integer
    dect.afield.tail.Qt.Txs  Txs
        Unsigned 8-bit integer
    dect.bfield  B-Field
        Byte array
    dect.bfield.data  B-Field
        No value
    dect.bfield.descrdata  Descrambled Data
        No value
    dect.bfield.framenumber  B-Field
        No value
    dect.bfield.xcrc  B-Field X-CRC
        Unsigned 8-bit integer
    dect.cc  Columns
        No value
    dect.cc.TA  TA
        String
    dect.cc.afield  A-Field
        String
    dect.cc.bfield  B-Field
        String
    dect.channel  Channel
        Unsigned 8-bit integer
    dect.framenumber  Frame#
        Unsigned 16-bit integer
    dect.preamble  Preamble
        Byte array
    dect.rssi  RSSI
        Unsigned 8-bit integer
    dect.slot  Slot
        Unsigned 16-bit integer
    dect.tranceivermode  Tranceiver-Mode
        Unsigned 8-bit integer
    dect.type  Packet-Type
        Byte array

DG Gryphon Protocol (gryphon)

    gryphon.cmd  Command
        Unsigned 8-bit integer
    gryphon.dest  Destination
        Unsigned 8-bit integer
    gryphon.destchan  Destination channel
        Unsigned 8-bit integer
    gryphon.src  Source
        Unsigned 8-bit integer
    gryphon.srcchan  Source channel
        Unsigned 8-bit integer
    gryphon.type  Frame type
        Unsigned 8-bit integer

DHCP Failover (dhcpfo)

    dhcpfo.additionalheaderbytes  Additional Header Bytes
        Byte array
    dhcpfo.addressestransferred  addresses transferred
        Unsigned 32-bit integer
    dhcpfo.assignedipaddress  assigned ip address
        IPv4 address
    dhcpfo.bindingstatus  Type
        Unsigned 32-bit integer
    dhcpfo.clienthardwareaddress  Client Hardware Address
        Byte array
    dhcpfo.clienthardwaretype  Client Hardware Type
        Unsigned 8-bit integer
    dhcpfo.clientidentifier  Client Identifier
        String
    dhcpfo.clientlasttransactiontime  Client last transaction time
        Unsigned 32-bit integer
    dhcpfo.dhcpstyleoption  DHCP Style Option
        No value
    dhcpfo.ftddns  FTDDNS
        String
    dhcpfo.graceexpirationtime  Grace expiration time
        Unsigned 32-bit integer
    dhcpfo.hashbucketassignment  Hash bucket assignment
        Byte array
    dhcpfo.leaseexpirationtime  Lease expiration time
        Unsigned 32-bit integer
    dhcpfo.length  Message length
        Unsigned 16-bit integer
    dhcpfo.maxunackedbndupd  Max unacked BNDUPD
        Unsigned 32-bit integer
    dhcpfo.mclt  MCLT
        Unsigned 32-bit integer
    dhcpfo.message  Message
        String
    dhcpfo.messagedigest  Message digest
        String
    dhcpfo.optioncode  Option Code
        Unsigned 16-bit integer
    dhcpfo.optionlength  Length
        Unsigned 16-bit integer
    dhcpfo.payloaddata  Payload Data
        No value
    dhcpfo.poffset  Payload Offset
        Unsigned 8-bit integer
    dhcpfo.potentialexpirationtime  Potential expiration time
        Unsigned 32-bit integer
    dhcpfo.protocolversion  Protocol version
        Unsigned 8-bit integer
    dhcpfo.receivetimer  Receive timer
        Unsigned 32-bit integer
    dhcpfo.rejectreason  Reject reason
        Unsigned 8-bit integer
    dhcpfo.sendingserveripaddress  sending server ip-address
        IPv4 address
    dhcpfo.serverstatus  server status
        Unsigned 8-bit integer
    dhcpfo.starttimeofstate  Start time of state
        Unsigned 32-bit integer
    dhcpfo.time  Time
        Date/Time stamp
    dhcpfo.type  Message Type
        Unsigned 8-bit integer
    dhcpfo.vendorclass  Vendor class
        String
    dhcpfo.vendoroption  Vendor option
        No value
    dhcpfo.xid  Xid
        Unsigned 32-bit integer

DHCPv6 (dhcpv6)

    dhcpv6.clientfqdn.n  N bit
        Boolean
        Whether the server SHOULD NOT perform any DNS updates
    dhcpv6.clientfqdn.o  O bit
        Boolean
        Whether the server has overridden the client's preference for the S bit.  Must be 0 when sent from client
    dhcpv6.clientfqdn.reserved  Reserved
        Unsigned 8-bit integer
    dhcpv6.clientfqdn.s  S bit
        Boolean
        Whether the server SHOULD or SHOULD NOT perform the AAAA RR (FQDN-to-address) DNS updates
    dhcpv6.hopcount  Hopcount
        Unsigned 8-bit integer
    dhcpv6.linkaddr  Link address
        IPv6 address
    dhcpv6.msgtype  Message type
        Unsigned 8-bit integer
    dhcpv6.option.length  Length
        Unsigned 16-bit integer
    dhcpv6.option.type  Option
        Unsigned 16-bit integer
    dhcpv6.option.value  Value
        Byte array
    dhcpv6.peeraddr  Peer address
        IPv6 address
    dhcpv6.xid  Transaction ID
        Unsigned 24-bit integer
    dhvpv6.duiden.enterprise  Enterprise ID
        Unsigned 32-bit integer
        DUID EN Enterprise Number
    dhvpv6.remoteid.enterprise  Enterprise ID
        Unsigned 32-bit integer
        RemoteID Enterprise Number
    dhvpv6.vendorclass.enterprise  Enterprise ID
        Unsigned 32-bit integer
        Vendor Class Enterprise Number
    dhvpv6.vendoropts.enterprise  Enterprise ID
        Unsigned 32-bit integer
        Vendor opts Enterprise Number

DICOM (dicom)

    dicom.actx  Application Context
        String
    dicom.assoc.abort.reason  Reason
        Unsigned 8-bit integer
    dicom.assoc.abort.source  Source
        Unsigned 8-bit integer
    dicom.assoc.ae.called  Called  AE Title
        String
    dicom.assoc.ae.calling  Calling AE Title
        String
    dicom.assoc.item.len  Item Length
        Unsigned 16-bit integer
    dicom.assoc.item.type  Item Type
        Unsigned 8-bit integer
    dicom.assoc.reject.reason  Reason
        Unsigned 8-bit integer
    dicom.assoc.reject.result  Result
        Unsigned 8-bit integer
    dicom.assoc.reject.source  Source
        Unsigned 8-bit integer
    dicom.assoc.version  Protocol Version
        Unsigned 16-bit integer
    dicom.data.tag  Tag
        Byte array
    dicom.max_pdu_len  Max PDU Length
        Unsigned 32-bit integer
    dicom.pctx.abss.syntax  Abstract Syntax
        String
    dicom.pctx.id  Presentation Context ID
        Unsigned 8-bit integer
    dicom.pctx.xfer.syntax  Transfer Syntax
        String
    dicom.pdu.detail  PDU Detail
        String
    dicom.pdu.len  PDU Length
        Unsigned 32-bit integer
    dicom.pdu.type  PDU Type
        Unsigned 8-bit integer
    dicom.pdv.ctx  PDV Context
        Unsigned 8-bit integer
    dicom.pdv.flags  PDV Flags
        Unsigned 8-bit integer
    dicom.pdv.fragment  Message fragment
        Frame number
    dicom.pdv.fragment.error  Message defragmentation error
        Frame number
    dicom.pdv.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    dicom.pdv.fragment.overlap  Message fragment overlap
        Boolean
    dicom.pdv.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    dicom.pdv.fragment.too_long_fragment  Message fragment too long
        Boolean
    dicom.pdv.fragments  Message fragments
        No value
    dicom.pdv.len  PDV Length
        Unsigned 32-bit integer
    dicom.pdv.reassembled.in  Reassembled in
        Frame number
    dicom.pdv.reassembled.length  Reassembled PDV length
        Unsigned 32-bit integer
    dicom.tag  Tag
        Unsigned 32-bit integer
    dicom.tag.value.16s  Value
        Signed 16-bit integer
    dicom.tag.value.16u  Value
        Unsigned 16-bit integer
    dicom.tag.value.32s  Value
        Signed 32-bit integer
    dicom.tag.value.32u  Value
        Unsigned 32-bit integer
    dicom.tag.value.byte  Value
        Byte array
    dicom.tag.value.str  Value
        String
    dicom.tag.vl  Length
        Unsigned 32-bit integer
    dicom.tag.vr  VR
        String
    dicom.userinfo.uid  Implementation Class UID
        String
    dicom.userinfo.version  Implementation Version
        String

DLT User (user_dlt)

DNS Control Program Server (cprpc_server)

    cprpc_server.opnum  Operation
        Unsigned 16-bit integer

DNS Server (dnsserver)

    dnsserver.DNSSRV_RPC_UNION.ServerInfoDotnet  Serverinfodotnet
        No value
    dnsserver.DNSSRV_RPC_UNION.dword  Dword
        Unsigned 32-bit integer
    dnsserver.DNSSRV_RPC_UNION.null  Null
        Unsigned 8-bit integer
    dnsserver.DNS_LOG_LEVELS.DNS_LOG_LEVEL_ANSWERS  Dns Log Level Answers
        Boolean
    dnsserver.DNS_LOG_LEVELS.DNS_LOG_LEVEL_FULL_PACKETS  Dns Log Level Full Packets
        Boolean
    dnsserver.DNS_LOG_LEVELS.DNS_LOG_LEVEL_NOTIFY  Dns Log Level Notify
        Boolean
    dnsserver.DNS_LOG_LEVELS.DNS_LOG_LEVEL_QUERY  Dns Log Level Query
        Boolean
    dnsserver.DNS_LOG_LEVELS.DNS_LOG_LEVEL_QUESTIONS  Dns Log Level Questions
        Boolean
    dnsserver.DNS_LOG_LEVELS.DNS_LOG_LEVEL_RECV  Dns Log Level Recv
        Boolean
    dnsserver.DNS_LOG_LEVELS.DNS_LOG_LEVEL_SEND  Dns Log Level Send
        Boolean
    dnsserver.DNS_LOG_LEVELS.DNS_LOG_LEVEL_TCP  Dns Log Level Tcp
        Boolean
    dnsserver.DNS_LOG_LEVELS.DNS_LOG_LEVEL_UDP  Dns Log Level Udp
        Boolean
    dnsserver.DNS_LOG_LEVELS.DNS_LOG_LEVEL_UPDATE  Dns Log Level Update
        Boolean
    dnsserver.DNS_LOG_LEVELS.DNS_LOG_LEVEL_WRITE_THROUGH  Dns Log Level Write Through
        Boolean
    dnsserver.DNS_RECORD_BUFFER.rpc_node  Rpc Node
        No value
    dnsserver.DNS_RPC_NAME.Name  Name
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_NAME.NameLength  Namelength
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_NAME.name  Name
        String
    dnsserver.DNS_RPC_NODE.Childcount  Childcount
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_NODE.Flags  Flags
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_NODE.Length  Length
        Unsigned 16-bit integer
    dnsserver.DNS_RPC_NODE.NodeName  Nodename
        No value
    dnsserver.DNS_RPC_NODE.RecordCount  Recordcount
        Unsigned 16-bit integer
    dnsserver.DNS_RPC_NODE.records  Records
        No value
    dnsserver.DNS_RPC_NODE_FLAGS.DNS_RPC_FLAG_AGING_ON  Dns Rpc Flag Aging On
        Boolean
    dnsserver.DNS_RPC_NODE_FLAGS.DNS_RPC_FLAG_AUTH_ZONE_ROOT  Dns Rpc Flag Auth Zone Root
        Boolean
    dnsserver.DNS_RPC_NODE_FLAGS.DNS_RPC_FLAG_CACHE_DATA  Dns Rpc Flag Cache Data
        Boolean
    dnsserver.DNS_RPC_NODE_FLAGS.DNS_RPC_FLAG_NODE_COMPLETE  Dns Rpc Flag Node Complete
        Boolean
    dnsserver.DNS_RPC_NODE_FLAGS.DNS_RPC_FLAG_NODE_STICKY  Dns Rpc Flag Node Sticky
        Boolean
    dnsserver.DNS_RPC_NODE_FLAGS.DNS_RPC_FLAG_OPEN_ACL  Dns Rpc Flag Open Acl
        Boolean
    dnsserver.DNS_RPC_NODE_FLAGS.DNS_RPC_FLAG_RECORD_CREATE_PTR  Dns Rpc Flag Record Create Ptr
        Boolean
    dnsserver.DNS_RPC_NODE_FLAGS.DNS_RPC_FLAG_RECORD_TTL_CHANGE  Dns Rpc Flag Record Ttl Change
        Boolean
    dnsserver.DNS_RPC_NODE_FLAGS.DNS_RPC_FLAG_RECOR_DEFAULT_TTL  Dns Rpc Flag Recor Default Ttl
        Boolean
    dnsserver.DNS_RPC_NODE_FLAGS.DNS_RPC_FLAG_SUPPRESS_NOTIFY  Dns Rpc Flag Suppress Notify
        Boolean
    dnsserver.DNS_RPC_NODE_FLAGS.DNS_RPC_FLAG_ZONE_DELEGATION  Dns Rpc Flag Zone Delegation
        Boolean
    dnsserver.DNS_RPC_NODE_FLAGS.DNS_RPC_FLAG_ZONE_ROOT  Dns Rpc Flag Zone Root
        Boolean
    dnsserver.DNS_RPC_PROTOCOLS.DNS_RPC_USE_LPC  Dns Rpc Use Lpc
        Boolean
    dnsserver.DNS_RPC_PROTOCOLS.DNS_RPC_USE_NAMED_PIPE  Dns Rpc Use Named Pipe
        Boolean
    dnsserver.DNS_RPC_PROTOCOLS.DNS_RPC_USE_TCPIP  Dns Rpc Use Tcpip
        Boolean
    dnsserver.DNS_RPC_RECORD.DataLength  Datalength
        Unsigned 16-bit integer
    dnsserver.DNS_RPC_RECORD.Flags  Flags
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_RECORD.Serial  Serial
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_RECORD.TimeStamp  Timestamp
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_RECORD.TtlSeconds  Ttlseconds
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_RECORD.Type  Type
        Unsigned 16-bit integer
    dnsserver.DNS_RPC_RECORD.record  Record
        No value
    dnsserver.DNS_RPC_RECORD.reserved  Reserved
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_RECORD_NODE_NAME.Name  Name
        No value
    dnsserver.DNS_RPC_RECORD_UNION.NodeName  Nodename
        No value
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.AddressAnswerLimit  Addressanswerlimit
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.AdminConfigured  Adminconfigured
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.AllowUpdate  Allowupdate
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.AutoCacheUpdate  Autocacheupdate
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.AutoReverseZones  Autoreversezones
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.BindSecondaries  Bindsecondaries
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.BootMethod  Bootmethod
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.DebugLevel  Debuglevel
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.DefaultAgingState  Defaultagingstate
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.DefaultNoRefreshInterval  Defaultnorefreshinterval
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.DefaultRefreshInterval  Defaultrefreshinterval
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.DomainDirectoryPartition  Domaindirectorypartition
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.DomainName  Domainname
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.DsAvailable  Dsavailable
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.DsContainer  Dscontainer
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.DsDomainVersion  Dsdomainversion
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.DsDsaVersion  Dsdsaversion
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.DsForestVersion  Dsforestversion
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.DsPollingInterval  Dspollinginterval
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.EventLogLevel  Eventloglevel
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.ForestDirectoryPartition  Forestdirectorypartition
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.ForestName  Forestname
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.ForwardDelegations  Forwarddelegations
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.ForwardTimeout  Forwardtimeout
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.Forwarders  Forwarders
        No value
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.LastScavengeTime  Lastscavengetime
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.ListenAddrs  Listenaddrs
        No value
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.LocalNetPriority  Localnetpriority
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.LocalNetPriorityNetmask  Localnetprioritynetmask
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.LogFileMaxSize  Logfilemaxsize
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.LogFilePath  Logfilepath
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.LogFilter  Logfilter
        No value
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.LogLevel  Loglevel
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.LooseWildcarding  Loosewildcarding
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.MaxCacheTtl  Maxcachettl
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.NameCheckFlag  Namecheckflag
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.NoRecursion  Norecursion
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.RecurseAfterForwarding  Recurseafterforwarding
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.RecursionRetry  Recursionretry
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.RecursionTimeout  Recursiontimeout
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.RoundRobin  Roundrobin
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.RpcProtocol  Rpcprotocol
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.RpcStructureVersion  Rpcstructureversion
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.ScavengingInterval  Scavenginginterval
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.SecureResponses  Secureresponses
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.ServerAddrs  Serveraddrs
        No value
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.ServerName  Servername
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.StrictFileParsing  Strictfileparsing
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.Version  Version
        No value
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.WriteAuthorityNs  Writeauthorityns
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.extension0  Extension0
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.extension1  Extension1
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.extension2  Extension2
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.extension3  Extension3
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.extension4  Extension4
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.extension5  Extension5
        String
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.reserve_array  Reserve Array
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.reserve_array2  Reserve Array2
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_SERVER_INFO_DOTNET.reserved0  Reserved0
        Unsigned 32-bit integer
    dnsserver.DNS_RPC_VERSION.OSMajorVersion  Osmajorversion
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_VERSION.OSMinorVersion  Osminorversion
        Unsigned 8-bit integer
    dnsserver.DNS_RPC_VERSION.ServicePackVersion  Servicepackversion
        Unsigned 16-bit integer
    dnsserver.DNS_SELECT_FLAGS.DNS_RPC_VIEW_ADDITIONAL_DATA  Dns Rpc View Additional Data
        Boolean
    dnsserver.DNS_SELECT_FLAGS.DNS_RPC_VIEW_AUTHORITY_DATA  Dns Rpc View Authority Data
        Boolean
    dnsserver.DNS_SELECT_FLAGS.DNS_RPC_VIEW_CACHE_DATA  Dns Rpc View Cache Data
        Boolean
    dnsserver.DNS_SELECT_FLAGS.DNS_RPC_VIEW_GLUE_DATA  Dns Rpc View Glue Data
        Boolean
    dnsserver.DNS_SELECT_FLAGS.DNS_RPC_VIEW_NO_CHILDREN  Dns Rpc View No Children
        Boolean
    dnsserver.DNS_SELECT_FLAGS.DNS_RPC_VIEW_ONLY_CHILDREN  Dns Rpc View Only Children
        Boolean
    dnsserver.DNS_SELECT_FLAGS.DNS_RPC_VIEW_ROOT_HINT_DATA  Dns Rpc View Root Hint Data
        Boolean
    dnsserver.DnssrvEnumRecords2.buffer_length  Buffer Length
        Unsigned 32-bit integer
    dnsserver.DnssrvEnumRecords2.client_version  Client Version
        Unsigned 32-bit integer
    dnsserver.DnssrvEnumRecords2.filter_start  Filter Start
        String
    dnsserver.DnssrvEnumRecords2.filter_stop  Filter Stop
        String
    dnsserver.DnssrvEnumRecords2.node_name  Node Name
        String
    dnsserver.DnssrvEnumRecords2.record_buffer  Record Buffer
        No value
    dnsserver.DnssrvEnumRecords2.record_type  Record Type
        Unsigned 16-bit integer
    dnsserver.DnssrvEnumRecords2.select_flag  Select Flag
        Unsigned 32-bit integer
    dnsserver.DnssrvEnumRecords2.server_name  Server Name
        String
    dnsserver.DnssrvEnumRecords2.setting_flags  Setting Flags
        Unsigned 32-bit integer
    dnsserver.DnssrvEnumRecords2.start_child  Start Child
        String
    dnsserver.DnssrvEnumRecords2.zone  Zone
        String
    dnsserver.DnssrvQuery2.client_version  Client Version
        Unsigned 32-bit integer
    dnsserver.DnssrvQuery2.data  Data
        No value
    dnsserver.DnssrvQuery2.operation  Operation
        String
    dnsserver.DnssrvQuery2.server_name  Server Name
        String
    dnsserver.DnssrvQuery2.setting_flags  Setting Flags
        Unsigned 32-bit integer
    dnsserver.DnssrvQuery2.type_id  Type Id
        Unsigned 32-bit integer
    dnsserver.DnssrvQuery2.zone  Zone
        String
    dnsserver.IP4_ARRAY.AddrArray  Addrarray
        Unsigned 32-bit integer
    dnsserver.IP4_ARRAY.AddrCount  Addrcount
        Unsigned 32-bit integer
    dnsserver.opnum  Operation
        Unsigned 16-bit integer
    dnsserver.status  NT Error
        Unsigned 32-bit integer

DOCSIS 1.1 (docsis)

    docsis.bpi_en  Encryption
        Boolean
        BPI Enable
    docsis.ehdr.act_grants  Active Grants
        Unsigned 8-bit integer
    docsis.ehdr.keyseq  Key Sequence
        Unsigned 8-bit integer
    docsis.ehdr.len  Length
        Unsigned 8-bit integer
        TLV Len
    docsis.ehdr.minislots  MiniSlots
        Unsigned 8-bit integer
        Mini Slots Requested
    docsis.ehdr.phsi  Payload Header Suppression Index
        Unsigned 8-bit integer
    docsis.ehdr.qind  Queue Indicator
        Boolean
    docsis.ehdr.rsvd  Reserved
        Unsigned 8-bit integer
        Reserved Byte
    docsis.ehdr.said  SAID
        Unsigned 16-bit integer
        Security Association Identifier
    docsis.ehdr.sid  SID
        Unsigned 16-bit integer
        Service Identifier
    docsis.ehdr.type  Type
        Unsigned 8-bit integer
        TLV Type
    docsis.ehdr.value  Value
        Byte array
        TLV Value
    docsis.ehdr.ver  Version
        Unsigned 8-bit integer
    docsis.ehdron  EHDRON
        Boolean
        Extended Header Presence
    docsis.fcparm  FCParm
        Unsigned 8-bit integer
        Parameter Field
    docsis.fctype  FCType
        Unsigned 8-bit integer
        Frame Control Type
    docsis.frag_first  First Frame
        Boolean
    docsis.frag_last  Last Frame
        Boolean
    docsis.frag_rsvd  Reserved
        Unsigned 8-bit integer
    docsis.frag_seq  Fragmentation Sequence #
        Unsigned 8-bit integer
        Fragmentation Sequence Number
    docsis.hcs  Header check sequence
        Unsigned 16-bit integer
    docsis.lensid  Length after HCS (bytes)
        Unsigned 16-bit integer
        Length or SID
    docsis.macparm  MacParm
        Unsigned 8-bit integer
        Mac Parameter Field
    docsis.toggle_bit  Toggle
        Boolean

DOCSIS Appendix C TLV's (docsis_tlv)

    docsis_tlv.auth_block  30 Auth Block
        Byte array
        Auth Block
    docsis_tlv.bpi  17 Baseline Privacy Encoding
        Byte array
        Baseline Privacy Encoding
    docsis_tlv.bpi_en  29 Privacy Enable
        Boolean
        Privacy Enable
    docsis_tlv.clsfr.actstate  .6 Activation State
        Boolean
        Classifier Activation State
    docsis_tlv.clsfr.dot1q  .11 802.1Q Classifier Encodings
        Byte array
        802.1Q Classifier Encodings
    docsis_tlv.clsfr.dot1q.ethertype  ..2 VLAN id
        Unsigned 16-bit integer
        VLAN Id
    docsis_tlv.clsfr.dot1q.userpri  ..1 User Priority
        Unsigned 16-bit integer
        User Priority
    docsis_tlv.clsfr.dot1q.vendorspec  ..43 Vendor Specific Encodings
        Byte array
        Vendor Specific Encodings
    docsis_tlv.clsfr.dscact  .7 DSC Action
        Unsigned 8-bit integer
        Dynamic Service Change Action
    docsis_tlv.clsfr.err  .8 Error Encodings
        Byte array
        Error Encodings
    docsis_tlv.clsfr.err.code  ..2 Error Code
        Unsigned 8-bit integer
        TCP/UDP Destination Port End
    docsis_tlv.clsfr.err.msg  ..3 Error Message
        NULL terminated string
        Error Message
    docsis_tlv.clsfr.err.param  ..1 Param Subtype
        Unsigned 8-bit integer
        Parameter Subtype
    docsis_tlv.clsfr.eth  .10 Ethernet Classifier Encodings
        Byte array
        Ethernet Classifier Encodings
    docsis_tlv.clsfr.eth.dmac  ..1 Dest Mac Address
        6-byte Hardware (MAC) Address
        Destination Mac Address
    docsis_tlv.clsfr.eth.ethertype  ..3 Ethertype
        Unsigned 24-bit integer
        Ethertype
    docsis_tlv.clsfr.eth.smac  ..2 Source Mac Address
        6-byte Hardware (MAC) Address
        Source Mac Address
    docsis_tlv.clsfr.id  .2 Classifier ID
        Unsigned 16-bit integer
        Classifier ID
    docsis_tlv.clsfr.ip  .9 IP Classifier Encodings
        Byte array
        IP Classifier Encodings
    docsis_tlv.clsfr.ip.dmask  ..6 Destination Mask
        IPv4 address
        Destination Mask
    docsis_tlv.clsfr.ip.dportend  ..10 Dest Port End
        Unsigned 16-bit integer
        TCP/UDP Destination Port End
    docsis_tlv.clsfr.ip.dportstart  ..9 Dest Port Start
        Unsigned 16-bit integer
        TCP/UDP Destination Port Start
    docsis_tlv.clsfr.ip.dst  ..4 Destination Address
        IPv4 address
        Destination Address
    docsis_tlv.clsfr.ip.ipproto  ..2 IP Protocol
        Unsigned 16-bit integer
        IP Protocol
    docsis_tlv.clsfr.ip.smask  ..5 Source Mask
        IPv4 address
        Source Mask
    docsis_tlv.clsfr.ip.sportend  ..8 Source Port End
        Unsigned 16-bit integer
        TCP/UDP Source Port End
    docsis_tlv.clsfr.ip.sportstart  ..7 Source Port Start
        Unsigned 16-bit integer
        TCP/UDP Source Port Start
    docsis_tlv.clsfr.ip.src  ..3 Source Address
        IPv4 address
        Source Address
    docsis_tlv.clsfr.ip.tosmask  ..1 Type Of Service Mask
        Byte array
        Type Of Service Mask
    docsis_tlv.clsfr.ref  .1 Classifier Ref
        Unsigned 8-bit integer
        Classifier Reference
    docsis_tlv.clsfr.rulepri  .5 Rule Priority
        Unsigned 8-bit integer
        Rule Priority
    docsis_tlv.clsfr.sflowid  .4 Service Flow ID
        Unsigned 16-bit integer
        Service Flow ID
    docsis_tlv.clsfr.sflowref  .3 Service Flow Ref
        Unsigned 16-bit integer
        Service Flow Reference
    docsis_tlv.clsfr.vendor  .43 Vendor Specific Encodings
        Byte array
        Vendor Specific Encodings
    docsis_tlv.cmmic  6 CM MIC
        Byte array
        Cable Modem Message Integrity Check
    docsis_tlv.cmtsmic  7 CMTS MIC
        Byte array
        CMTS Message Integrity Check
    docsis_tlv.cos  4 COS Encodings
        Byte array
    docsis_tlv.cos.id  .1 Class ID
        Unsigned 8-bit integer
        Class ID
    docsis_tlv.cos.maxdown  .2 Max Downstream Rate (bps)
        Unsigned 32-bit integer
        Max Downstream Rate
    docsis_tlv.cos.maxup  .3 Max Upstream Rate (bps)
        Unsigned 32-bit integer
        Max Upstream Rate
    docsis_tlv.cos.maxupburst  .6 Maximum Upstream Burst
        Unsigned 16-bit integer
        Maximum Upstream Burst
    docsis_tlv.cos.mingrntdup  .5 Guaranteed Upstream Rate
        Unsigned 32-bit integer
        Guaranteed Minimum Upstream Data Rate
    docsis_tlv.cos.privacy_enable  .7 COS Privacy Enable
        Boolean
        Class of Service Privacy Enable
    docsis_tlv.cos.sid  .2 Service ID
        Unsigned 16-bit integer
        Service ID
    docsis_tlv.cos.upchnlpri  .4 Upstream Channel Priority
        Unsigned 8-bit integer
        Upstream Channel Priority
    docsis_tlv.cosign_cvc  33 Co-Signer CVC
        Byte array
        Co-Signer CVC
    docsis_tlv.cpe_ether  14 CPE Ethernet Addr
        6-byte Hardware (MAC) Address
        CPE Ethernet Addr
    docsis_tlv.downclsfr  23 Downstream Classifier
        Byte array
    docsis_tlv.downfreq  1 Downstream Frequency
        Unsigned 32-bit integer
        Downstream Frequency
    docsis_tlv.downsflow  25 Downstream Service Flow
        Byte array
    docsis_tlv.hmac_digest  27 HMAC Digest
        Byte array
        HMAC Digest
    docsis_tlv.key_seq  31 Key Sequence Number
        Byte array
        Key Sequence Number
    docsis_tlv.map.docsver  .2 Docsis Version
        Unsigned 8-bit integer
        DOCSIS Version
    docsis_tlv.maxclass  28 Max # of Classifiers
        Unsigned 16-bit integer
        Max # of Classifiers
    docsis_tlv.maxcpe  18 Max # of CPE's
        Unsigned 8-bit integer
        Max Number of CPE's
    docsis_tlv.mcap  5 Modem Capabilities
        Byte array
        Modem Capabilities
    docsis_tlv.mcap.concat  .1 Concatenation Support
        Boolean
        Concatenation Support
    docsis_tlv.mcap.dcc  .12 DCC Support
        Boolean
        DCC Support
    docsis_tlv.mcap.dot1pfiltering  .9 802.1P Filtering Support
        Unsigned 8-bit integer
        802.1P Filtering Support
    docsis_tlv.mcap.dot1qfilt  .9 802.1Q Filtering Support
        Unsigned 8-bit integer
        802.1Q Filtering Support
    docsis_tlv.mcap.downsaid  .7 # Downstream SAIDs Supported
        Unsigned 8-bit integer
        Downstream Said Support
    docsis_tlv.mcap.frag  .3 Fragmentation Support
        Boolean
        Fragmentation Support
    docsis_tlv.mcap.igmp  .5 IGMP Support
        Boolean
        IGMP Support
    docsis_tlv.mcap.numtaps  .11 # Xmit Equalizer Taps
        Unsigned 8-bit integer
        Number of Transmit Equalizer Taps
    docsis_tlv.mcap.phs  .4 PHS Support
        Boolean
        PHS Support
    docsis_tlv.mcap.privacy  .6 Privacy Support
        Boolean
        Privacy Support
    docsis_tlv.mcap.tapspersym  .10 Xmit Equalizer Taps/Sym
        Unsigned 8-bit integer
        Transmit Equalizer Taps per Symbol
    docsis_tlv.mcap.upsid  .8 # Upstream SAIDs Supported
        Unsigned 8-bit integer
        Upstream SID Support
    docsis_tlv.mfgr_cvc  32 Manufacturer CVC
        Byte array
        Manufacturer CVC
    docsis_tlv.modemaddr  12 Modem IP Address
        IPv4 address
        Modem IP Address
    docsis_tlv.netaccess  3 Network Access
        Boolean
        Network Access TLV
    docsis_tlv.phs  26 PHS Rules
        Byte array
        PHS Rules
    docsis_tlv.phs.classid  .2 Classifier Id
        Unsigned 16-bit integer
        Classifier Id
    docsis_tlv.phs.classref  .1 Classifier Reference
        Unsigned 8-bit integer
        Classifier Reference
    docsis_tlv.phs.dscaction  .5 DSC Action
        Unsigned 8-bit integer
        Dynamic Service Change Action
    docsis_tlv.phs.err  .6 Error Encodings
        Byte array
        Error Encodings
    docsis_tlv.phs.err.code  ..2 Error Code
        Unsigned 8-bit integer
        Error Code
    docsis_tlv.phs.err.msg  ..3 Error Message
        NULL terminated string
        Error Message
    docsis_tlv.phs.err.param  ..1 Param Subtype
        Unsigned 8-bit integer
        Parameter Subtype
    docsis_tlv.phs.phsf  .7 PHS Field
        Byte array
        PHS Field
    docsis_tlv.phs.phsi  .8 PHS Index
        Unsigned 8-bit integer
        PHS Index
    docsis_tlv.phs.phsm  .9 PHS Mask
        Byte array
        PHS Mask
    docsis_tlv.phs.phss  .10 PHS Size
        Unsigned 8-bit integer
        PHS Size
    docsis_tlv.phs.phsv  .11 PHS Verify
        Boolean
        PHS Verify
    docsis_tlv.phs.sflowid  .4 Service flow Id
        Unsigned 16-bit integer
        Service Flow Id
    docsis_tlv.phs.sflowref  .3 Service flow reference
        Unsigned 16-bit integer
        Service Flow Reference
    docsis_tlv.phs.vendorspec  .43 PHS Vendor Specific
        Byte array
        PHS Vendor Specific
    docsis_tlv.rng_tech  Ranging Technique
        Unsigned 8-bit integer
    docsis_tlv.sflow.act_timeout  .12 Timeout for Active Params (secs)
        Unsigned 16-bit integer
        Timeout for Active Params (secs)
    docsis_tlv.sflow.adm_timeout  .13 Timeout for Admitted Params (secs)
        Unsigned 16-bit integer
        Timeout for Admitted Params (secs)
    docsis_tlv.sflow.assumed_min_pkt_size  .11 Assumed Min Reserved Packet Size
        Unsigned 16-bit integer
        Assumed Minimum Reserved Packet Size
    docsis_tlv.sflow.cname  .4 Service Class Name
        NULL terminated string
        Service Class Name
    docsis_tlv.sflow.err  .5 Error Encodings
        Byte array
        Error Encodings
    docsis_tlv.sflow.err.code  ..2 Error Code
        Unsigned 8-bit integer
        Error Code
    docsis_tlv.sflow.err.msg  ..3 Error Message
        NULL terminated string
        Error Message
    docsis_tlv.sflow.err.param  ..1 Param Subtype
        Unsigned 8-bit integer
        Parameter Subtype
    docsis_tlv.sflow.grnts_per_intvl  .22 Grants Per Interval
        Unsigned 8-bit integer
        Grants Per Interval
    docsis_tlv.sflow.id  .2 Service Flow Id
        Unsigned 32-bit integer
        Service Flow Id
    docsis_tlv.sflow.iptos_overwrite  .23 IP TOS Overwrite
        Unsigned 16-bit integer
        IP TOS Overwrite
    docsis_tlv.sflow.max_down_lat  .14 Maximum Downstream Latency (usec)
        Unsigned 32-bit integer
        Maximum Downstream Latency (usec)
    docsis_tlv.sflow.maxburst  .9 Maximum Burst (bps)
        Unsigned 32-bit integer
        Maximum Burst (bps)
    docsis_tlv.sflow.maxconcat  .14 Max Concat Burst
        Unsigned 16-bit integer
        Max Concatenated Burst
    docsis_tlv.sflow.maxtrafrate  .8 Maximum Sustained Traffic Rate (bps)
        Unsigned 32-bit integer
        Maximum Sustained Traffic Rate (bps)
    docsis_tlv.sflow.mintrafrate  .10 Minimum Traffic Rate (bps)
        Unsigned 32-bit integer
        Minimum Traffic Rate (bps)
    docsis_tlv.sflow.nom_grant_intvl  .20 Nominal Grant Interval (usec)
        Unsigned 32-bit integer
        Nominal Grant Interval (usec)
    docsis_tlv.sflow.nominal_polling  .17 Nominal Polling Interval(usec)
        Unsigned 32-bit integer
        Nominal Polling Interval(usec)
    docsis_tlv.sflow.qos  .6 QOS Parameter Set
        Unsigned 8-bit integer
        QOS Parameter Set
    docsis_tlv.sflow.ref  .1 Service Flow Ref
        Unsigned 16-bit integer
        Service Flow Reference
    docsis_tlv.sflow.reqxmitpol  .16 Request/Transmission Policy
        Unsigned 32-bit integer
        Request/Transmission Policy
    docsis_tlv.sflow.schedtype  .15 Scheduling Type
        Unsigned 32-bit integer
        Scheduling Type
    docsis_tlv.sflow.sid  .3 Service Identifier
        Unsigned 16-bit integer
        Service Identifier
    docsis_tlv.sflow.tol_grant_jitter  .21 Tolerated Grant Jitter (usec)
        Unsigned 32-bit integer
        Tolerated Grant Jitter (usec)
    docsis_tlv.sflow.toler_jitter  .18 Tolerated Poll Jitter (usec)
        Unsigned 32-bit integer
        Tolerated Poll Jitter (usec)
    docsis_tlv.sflow.trafpri  .7 Traffic Priority
        Unsigned 8-bit integer
        Traffic Priority
    docsis_tlv.sflow.ugs_size  .19 Unsolicited Grant Size (bytes)
        Unsigned 16-bit integer
        Unsolicited Grant Size (bytes)
    docsis_tlv.sflow.ugs_timeref  .24 UGS Time Reference
        Unsigned 32-bit integer
        UGS Time Reference
    docsis_tlv.sflow.vendorspec  .43 Vendor Specific Encodings
        Byte array
        Vendor Specific Encodings
    docsis_tlv.snmp_access  10 SNMP Write Access
        Byte array
        SNMP Write Access
    docsis_tlv.snmp_obj  11 SNMP Object
        Byte array
        SNMP Object
    docsis_tlv.snmpv3  34 SNMPv3 Kickstart Value
        Byte array
        SNMPv3 Kickstart Value
    docsis_tlv.snmpv3.publicnum  .2 SNMPv3 Kickstart Manager Public Number
        Byte array
        SNMPv3 Kickstart Value Manager Public Number
    docsis_tlv.snmpv3.secname  .1 SNMPv3 Kickstart Security Name
        String
        SNMPv3 Kickstart Security Name
    docsis_tlv.subsfltrgrps  37 Subscriber Management Filter Groups
        Byte array
        Subscriber Management Filter Groups
    docsis_tlv.subsipentry  Subscriber Management CPE IP Entry
        IPv4 address
    docsis_tlv.subsiptable  36 Subscriber Management CPE IP Table
        Byte array
        Subscriber Management CPE IP Table
    docsis_tlv.subsmgmtctrl  35 Subscriber Management Control
        Byte array
        Subscriber Management Control
    docsis_tlv.svcunavail  13 Service Not Available Response
        Byte array
        Service Not Available Response
    docsis_tlv.svcunavail.classid  Service Not Available: (Class ID)
        Unsigned 8-bit integer
        Service Not Available (Class ID)
    docsis_tlv.svcunavail.code  Service Not Available (Code)
        Unsigned 8-bit integer
    docsis_tlv.svcunavail.type  Service Not Available (Type)
        Unsigned 8-bit integer
    docsis_tlv.sw_upg_file  9 Software Upgrade File
        NULL terminated string
        Software Upgrade File
    docsis_tlv.sw_upg_srvr  21 Software Upgrade Server
        IPv4 address
        Software Upgrade Server
    docsis_tlv.tftp_time  19 TFTP Server Timestamp
        Unsigned 32-bit integer
        TFTP Server TimeStamp
    docsis_tlv.tftpmodemaddr  20 TFTP Server Provisioned Modem Addr
        IPv4 address
        TFTP Server Provisioned Modem Addr
    docsis_tlv.upchid  2 Upstream Channel ID
        Unsigned 8-bit integer
        Service Identifier
    docsis_tlv.upclsfr  22 Upstream Classifier
        Byte array
    docsis_tlv.upsflow  24 Upstream Service Flow
        Byte array
    docsis_tlv.vendorid  8 Vendor ID
        Byte array
        Vendor Identifier
    docsis_tlv.vendorspec  43 Vendor Specific Encodings
        Byte array
        Vendor Specific Encodings

DOCSIS Baseline Privacy Key Management Attributes (docsis_bpkmattr)

    docsis_bpkmattr.auth_key  7 Auth Key
        Byte array
        Auth Key
    docsis_bpkmattr.bpiver  22 BPI Version
        Unsigned 8-bit integer
        BPKM Attributes
    docsis_bpkmattr.cacert  17 CA Certificate
        Byte array
        CA Certificate
    docsis_bpkmattr.cbciv  14 CBC IV
        Byte array
        Cypher Block Chaining
    docsis_bpkmattr.cmcert  18 CM Certificate
        Byte array
        CM Certificate
    docsis_bpkmattr.cmid  5 CM Identification
        Byte array
        CM Identification
    docsis_bpkmattr.crypto_suite_lst  21 Cryptographic Suite List
        Byte array
        Cryptographic Suite
    docsis_bpkmattr.cryptosuite  20 Cryptographic Suite
        Unsigned 16-bit integer
        Cryptographic Suite
    docsis_bpkmattr.dispstr  6 Display String
        String
        Display String
    docsis_bpkmattr.dnld_params  28 Download Parameters
        Byte array
        Download Parameters
    docsis_bpkmattr.errcode  16 Error Code
        Unsigned 8-bit integer
        Error Code
    docsis_bpkmattr.hmacdigest  11 HMAC Digest
        Byte array
        HMAC Digest
    docsis_bpkmattr.ipaddr  27 IP Address
        IPv4 address
        IP Address
    docsis_bpkmattr.keylife  9 Key Lifetime (s)
        Unsigned 32-bit integer
        Key Lifetime (s)
    docsis_bpkmattr.keyseq  10 Key Sequence Number
        Unsigned 8-bit integer
        Key Sequence Number
    docsis_bpkmattr.macaddr  3 Mac Address
        6-byte Hardware (MAC) Address
        Mac Address
    docsis_bpkmattr.manfid  2 Manufacturer Id
        Byte array
        Manufacturer Id
    docsis_bpkmattr.rsa_pub_key  4 RSA Public Key
        Byte array
        RSA Public Key
    docsis_bpkmattr.sadescr  23 SA Descriptor
        Byte array
        SA Descriptor
    docsis_bpkmattr.said  12 SAID
        Unsigned 16-bit integer
        Security Association ID
    docsis_bpkmattr.saquery  25 SA Query
        Byte array
        SA Query
    docsis_bpkmattr.saquery_type  26 SA Query Type
        Unsigned 8-bit integer
        SA Query Type
    docsis_bpkmattr.satype  24 SA Type
        Unsigned 8-bit integer
        SA Type
    docsis_bpkmattr.seccap  19 Security Capabilities
        Byte array
        Security Capabilities
    docsis_bpkmattr.serialnum  1 Serial Number
        String
        Serial Number
    docsis_bpkmattr.tek  8 Traffic Encryption Key
        Byte array
        Traffic Encryption Key
    docsis_bpkmattr.tekparams  13 TEK Parameters
        Byte array
        TEK Parameters
    docsis_bpkmattr.vendordef  127 Vendor Defined
        Byte array
        Vendor Defined

DOCSIS Baseline Privacy Key Management Request (docsis_bpkmreq)

    docsis_bpkmreq.code  BPKM Code
        Unsigned 8-bit integer
        BPKM Request Message
    docsis_bpkmreq.ident  BPKM Identifier
        Unsigned 8-bit integer
    docsis_bpkmreq.length  BPKM Length
        Unsigned 16-bit integer

DOCSIS Baseline Privacy Key Management Response (docsis_bpkmrsp)

    docsis_bpkmrsp.code  BPKM Code
        Unsigned 8-bit integer
        BPKM Response Message
    docsis_bpkmrsp.ident  BPKM Identifier
        Unsigned 8-bit integer
    docsis_bpkmrsp.length  BPKM Length
        Unsigned 16-bit integer

DOCSIS Bonded Initial Ranging Message (docsis_bintrngreq)

    docsis_bintrngreq.capflags  Capability Flags
        Unsigned 8-bit integer
    docsis_bintrngreq.capflags.encrypt  Early Auth. & Encrypt
        Boolean
        Early Authentication and Encryption supported
    docsis_bintrngreq.capflags.frag  Pre-3.0 Fragmentation
        Boolean
        Pre-3.0 DOCSIS fragmentation is supported prior to registration
    docsis_bintrngreq.downchid  DS Chan ID 
        Unsigned 8-bit integer
    docsis_bintrngreq.mddsgid  MD-DS-SG-ID
        Unsigned 8-bit integer
        MAC Domain Downstream Service Group Identifier
    docsis_bintrngreq.upchid  US Chan ID 
        Unsigned 8-bit integer

DOCSIS Downstream Channel Change Acknowledge (docsis_dccack)

    docsis_dccack.hmac_digest  HMAC-DigestNumber
        Byte array
    docsis_dccack.key_seq_num  Auth Key Sequence Number
        Unsigned 8-bit integer
    docsis_dccack.tran_id  Transaction ID
        Unsigned 16-bit integer

DOCSIS Downstream Channel Change Request (docsis_dccreq)

    docsis_dccreq.cmts_mac_addr  CMTS Mac Address
        6-byte Hardware (MAC) Address
    docsis_dccreq.ds_chan_id  Downstream Channel ID
        Unsigned 8-bit integer
    docsis_dccreq.ds_freq  Frequency
        Unsigned 32-bit integer
    docsis_dccreq.ds_intlv_depth_i  Interleaver Depth I Value
        Unsigned 8-bit integer
    docsis_dccreq.ds_intlv_depth_j  Interleaver Depth J Value
        Unsigned 8-bit integer
    docsis_dccreq.ds_mod_type  Modulation Type
        Unsigned 8-bit integer
    docsis_dccreq.ds_sym_rate  Symbol Rate
        Unsigned 8-bit integer
    docsis_dccreq.ds_sync_sub  SYNC Substitution
        Unsigned 8-bit integer
    docsis_dccreq.hmac_digest  HMAC-DigestNumber
        Byte array
    docsis_dccreq.init_tech  Initialization Technique
        Unsigned 8-bit integer
    docsis_dccreq.key_seq_num  Auth Key Sequence Number
        Unsigned 8-bit integer
    docsis_dccreq.said_sub_cur  SAID Sub - Current Value
        Unsigned 16-bit integer
    docsis_dccreq.said_sub_new  SAID Sub - New Value
        Unsigned 16-bit integer
    docsis_dccreq.sf_sfid_cur  SF Sub - SFID Current Value
        Unsigned 32-bit integer
    docsis_dccreq.sf_sfid_new  SF Sub - SFID New Value
        Unsigned 32-bit integer
    docsis_dccreq.sf_sid_cur  SF Sub - SID Current Value
        Unsigned 16-bit integer
    docsis_dccreq.sf_sid_new  SF Sub - SID New Value
        Unsigned 16-bit integer
    docsis_dccreq.sf_unsol_grant_tref  SF Sub - Unsolicited Grant Time Reference
        Unsigned 32-bit integer
    docsis_dccreq.tran_id  Transaction ID
        Unsigned 16-bit integer
    docsis_dccreq.ucd_sub  UCD Substitution
        Byte array
    docsis_dccreq.up_chan_id  Up Channel ID
        Unsigned 8-bit integer

DOCSIS Downstream Channel Change Response (docsis_dccrsp)

    docsis_dccrsp.cm_jump_time_length  Jump Time Length
        Unsigned 32-bit integer
    docsis_dccrsp.cm_jump_time_start  Jump Time Start
        Unsigned 64-bit integer
    docsis_dccrsp.conf_code  Confirmation Code
        Unsigned 8-bit integer
    docsis_dccrsp.hmac_digest  HMAC-DigestNumber
        Byte array
    docsis_dccrsp.key_seq_num  Auth Key Sequence Number
        Unsigned 8-bit integer
    docsis_dccrsp.tran_id  Transaction ID
        Unsigned 16-bit integer

DOCSIS Downstream Channel Descriptor (docsis_dcd)

    docsis_dcd.cfg_chan  DSG Configuration Channel
        Unsigned 32-bit integer
    docsis_dcd.cfg_tdsg1  DSG Initialization Timeout (Tdsg1)
        Unsigned 16-bit integer
    docsis_dcd.cfg_tdsg2  DSG Operational Timeout (Tdsg2)
        Unsigned 16-bit integer
    docsis_dcd.cfg_tdsg3  DSG Two-Way Retry Timer (Tdsg3)
        Unsigned 16-bit integer
    docsis_dcd.cfg_tdsg4  DSG One-Way Retry Timer (Tdsg4)
        Unsigned 16-bit integer
    docsis_dcd.cfg_vendor_spec  DSG Configuration Vendor Specific Parameters
        Byte array
    docsis_dcd.cfr_id  Downstream Classifier Id
        Unsigned 16-bit integer
    docsis_dcd.cfr_ip_dest_addr  Downstream Classifier IP Destination Address
        IPv4 address
    docsis_dcd.cfr_ip_dest_mask  Downstream Classifier IP Destination Mask
        IPv4 address
        Downstream Classifier IP Destination Address
    docsis_dcd.cfr_ip_source_addr  Downstream Classifier IP Source Address
        IPv4 address
    docsis_dcd.cfr_ip_source_mask  Downstream Classifier IP Source Mask
        IPv4 address
    docsis_dcd.cfr_ip_tcpudp_dstport_end  Downstream Classifier IP TCP/UDP Destination Port End
        Unsigned 16-bit integer
    docsis_dcd.cfr_ip_tcpudp_dstport_start  Downstream Classifier IP TCP/UDP Destination Port Start
        Unsigned 16-bit integer
    docsis_dcd.cfr_ip_tcpudp_srcport_end  Downstream Classifier IP TCP/UDP Source Port End
        Unsigned 16-bit integer
    docsis_dcd.cfr_ip_tcpudp_srcport_start  Downstream Classifier IP TCP/UDP Source Port Start
        Unsigned 16-bit integer
    docsis_dcd.cfr_rule_pri  Downstream Classifier Rule Priority
        Unsigned 8-bit integer
    docsis_dcd.clid_app_id  DSG Rule Client ID Application ID
        Unsigned 16-bit integer
    docsis_dcd.clid_ca_sys_id  DSG Rule Client ID CA System ID
        Unsigned 16-bit integer
    docsis_dcd.clid_known_mac_addr  DSG Rule Client ID Known MAC Address
        6-byte Hardware (MAC) Address
    docsis_dcd.config_ch_cnt  Configuration Change Count
        Unsigned 8-bit integer
    docsis_dcd.frag_sequence_num  Fragment Sequence Number
        Unsigned 8-bit integer
    docsis_dcd.num_of_frag  Number of Fragments
        Unsigned 8-bit integer
    docsis_dcd.rule_cfr_id  DSG Rule Classifier ID
        Unsigned 16-bit integer
    docsis_dcd.rule_id  DSG Rule Id
        Unsigned 8-bit integer
    docsis_dcd.rule_pri  DSG Rule Priority
        Unsigned 8-bit integer
    docsis_dcd.rule_tunl_addr  DSG Rule Tunnel MAC Address
        6-byte Hardware (MAC) Address
    docsis_dcd.rule_ucid_list  DSG Rule UCID Range
        Byte array
    docsis_dcd.rule_vendor_spec  DSG Rule Vendor Specific Parameters
        Byte array

DOCSIS Dynamic Service Addition Acknowledge (docsis_dsaack)

    docsis_dsaack.confcode  Confirmation Code
        Unsigned 8-bit integer
    docsis_dsaack.tranid  Transaction Id
        Unsigned 16-bit integer
        Service Identifier

DOCSIS Dynamic Service Addition Request (docsis_dsareq)

    docsis_dsareq.tranid  Transaction Id
        Unsigned 16-bit integer

DOCSIS Dynamic Service Addition Response (docsis_dsarsp)

    docsis_dsarsp.confcode  Confirmation Code
        Unsigned 8-bit integer
    docsis_dsarsp.tranid  Transaction Id
        Unsigned 16-bit integer
        Service Identifier

DOCSIS Dynamic Service Change Acknowledgement (docsis_dscack)

    docsis_dscack.confcode  Confirmation Code
        Unsigned 8-bit integer
    docsis_dscack.tranid  Transaction Id
        Unsigned 16-bit integer
        Service Identifier

DOCSIS Dynamic Service Change Request (docsis_dscreq)

    docsis_dscreq.tranid  Transaction Id
        Unsigned 16-bit integer

DOCSIS Dynamic Service Change Response (docsis_dscrsp)

    docsis_dscrsp.confcode  Confirmation Code
        Unsigned 8-bit integer
    docsis_dscrsp.tranid  Transaction Id
        Unsigned 16-bit integer
        Service Identifier

DOCSIS Dynamic Service Delete Request (docsis_dsdreq)

    docsis_dsdreq.rsvd  Reserved
        Unsigned 16-bit integer
    docsis_dsdreq.sfid  Service Flow ID
        Unsigned 32-bit integer
        Service Flow Id
    docsis_dsdreq.tranid  Transaction Id
        Unsigned 16-bit integer

DOCSIS Dynamic Service Delete Response (docsis_dsdrsp)

    docsis_dsdrsp.confcode  Confirmation Code
        Unsigned 8-bit integer
    docsis_dsdrsp.rsvd  Reserved
        Unsigned 8-bit integer
    docsis_dsdrsp.tranid  Transaction Id
        Unsigned 16-bit integer

DOCSIS Initial Ranging Message (docsis_intrngreq)

    docsis_intrngreq.downchid  Downstream Channel ID
        Unsigned 8-bit integer
    docsis_intrngreq.sid  Service Identifier
        Unsigned 16-bit integer
    docsis_intrngreq.upchid  Upstream Channel ID
        Unsigned 8-bit integer

DOCSIS Mac Domain Description (docsis_mdd)

    docsis_mdd.ccc  Configuration Change Count
        Unsigned 8-bit integer
        Mdd Configuration Change Count
    docsis_mdd.cm_status_event_enable_bitmask_mdd_recovery  MDD Recovery
        Unsigned 16-bit integer
        CM-STATUS event MDD Recovery
    docsis_mdd.cm_status_event_enable_bitmask_qam_fec_lock_failure  QAM/FEC Lock Failure
        Unsigned 16-bit integer
        Mdd Downstream Active Channel List QAM/FEC Lock Failure
    docsis_mdd.cm_status_event_enable_bitmask_qam_fec_lock_recovery  QAM/FEC Lock Recovery
        Unsigned 16-bit integer
        CM-STATUS event QAM/FEC Lock Recovery
    docsis_mdd.cm_status_event_enable_bitmask_successful_ranging_after_t3_retries_exceeded  Successful Ranging after T3 Retries Exceeded
        Unsigned 16-bit integer
        CM-STATUS event Successful Ranging after T3 Retries Exceeded
    docsis_mdd.cm_status_event_enable_bitmask_t3_retries_exceeded  T3 Retries Exceeded
        Unsigned 16-bit integer
        CM-STATUS event T3 Retries Exceeded
    docsis_mdd.cm_status_event_enable_bitmask_t4_timeout  T4 timeout
        Unsigned 16-bit integer
        CM-STATUS event T4 timeout
    docsis_mdd.cm_status_event_enable_non_channel_specific_events_cm_operating_on_battery_backup  CM operating on battery backup
        Unsigned 16-bit integer
        CM-STATUS event non-channel-event Cm operating on battery backup
    docsis_mdd.cm_status_event_enable_non_channel_specific_events_cm_returned_to_ac_power  Returned to AC power
        Unsigned 16-bit integer
        CM-STATUS event non-channel-event Cm returned to AC power
    docsis_mdd.cm_status_event_enable_non_channel_specific_events_sequence_out_of_range  Sequence out of range
        Unsigned 16-bit integer
        CM-STATUS event non-channel-event Sequence out of range
    docsis_mdd.current_channel_dcid  Current Channel DCID
        Unsigned 8-bit integer
        Mdd Current Channel DCID
    docsis_mdd.downstream_active_channel_list_annex  Annex
        Unsigned 8-bit integer
        Mdd Downstream Active Channel List Annex
    docsis_mdd.downstream_active_channel_list_channel_id  Channel ID
        Unsigned 8-bit integer
        Mdd Downstream Active Channel List Channel ID
    docsis_mdd.downstream_active_channel_list_frequency  Frequency
        Unsigned 32-bit integer
        Mdd Downstream Active Channel List Frequency
    docsis_mdd.downstream_active_channel_list_mdd_timeout  MDD Timeout
        Unsigned 16-bit integer
        Mdd Downstream Active Channel List MDD Timeout
    docsis_mdd.downstream_active_channel_list_modulation_order  Modulation Order
        Unsigned 8-bit integer
        Mdd Downstream Active Channel List Modulation Order
    docsis_mdd.downstream_active_channel_list_primary_capable  Primary Capable
        Unsigned 8-bit integer
        Mdd Downstream Active Channel List Primary Capable
    docsis_mdd.downstream_ambiguity_resolution_frequency  Frequency
        Unsigned 32-bit integer
        Mdd Downstream Ambiguity Resolution frequency
    docsis_mdd.dsg_da_to_dsid_association_da  Destination Address
        Unsigned 8-bit integer
        Mdd DSG DA to DSID association Destination Address
    docsis_mdd.dsg_da_to_dsid_association_dsid  DSID
        Unsigned 24-bit integer
        Mdd Mdd DSG DA to DSID association DSID
    docsis_mdd.early_authentication_and_encryption  Early Authentication and Encryption
        Unsigned 8-bit integer
        Mdd Early Authentication and Encryption
    docsis_mdd.event_type  Event Type
        Unsigned 8-bit integer
        Mdd CM-STATUS Event Type
    docsis_mdd.fragment_sequence_number  Fragment Sequence Number
        Unsigned 8-bit integer
        Mdd Fragment Sequence Number
    docsis_mdd.ip_provisioning_mode  IP Provisioning Mode
        Unsigned 8-bit integer
        Mdd IP Provisioning Mode
    docsis_mdd.mac_domain_downstream_service_group_channel_id  Channel Id
        Unsigned 8-bit integer
        Mdd Mac Domain Downstream Service Group Channel Id
    docsis_mdd.mac_domain_downstream_service_group_md_ds_sg_identifier  MD-DS-SG Identifier
        Unsigned 8-bit integer
        Mdd Mac Domain Downstream Service Group MD-DS-SG Identifier
    docsis_mdd.maximum_event_holdoff_timer  Maximum Event Holdoff Timer (units of 20 ms)
        Unsigned 16-bit integer
        Mdd Maximum Event Holdoff Timer
    docsis_mdd.maximum_number_of_reports_per_event  Maximum Number of Reports per Event
        Unsigned 8-bit integer
        Mdd Maximum Number of Reports per Event
    docsis_mdd.number_of_fragments  Number of Fragments
        Unsigned 8-bit integer
        Mdd Number of Fragments
    docsis_mdd.pre_registration_dsid  Pre-registration DSID
        Unsigned 24-bit integer
        Mdd Pre-registration DSID
    docsis_mdd.rpc_center_frequency_spacing  RPC Center Frequency Spacing
        Unsigned 8-bit integer
        Mdd RPC Center Frequency Spacing
    docsis_mdd.symbol_clock_locking_indicator  Symbol Clock Locking Indicator
        Unsigned 8-bit integer
        Mdd Symbol Clock Locking Indicator
    docsis_mdd.upstream_active_channel_list_upstream_channel_id  Upstream Channel Id
        Unsigned 8-bit integer
        Mdd Upstream Active Channel List Upstream Channel Id
    docsis_mdd.upstream_ambiguity_resolution_channel_list_channel_id  Channel Id
        Unsigned 8-bit integer
        Mdd Mac Domain Upstream Ambiguity Resolution Channel List Channel Id
    docsis_mdd.upstream_frequency_range  Upstream Frequency Range
        Unsigned 8-bit integer
        Mdd Upstream Frequency Range
    docsis_mdd.upstream_transmit_power_reporting  Upstream Transmit Power Reporting
        Unsigned 8-bit integer
        Mdd Upstream Transmit Power Reporting
    docsis_mdd.verbose_rpc_reporting  Verbose RCP reporting
        Unsigned 8-bit integer
        Mdd Verbose RPC Reporting

DOCSIS Mac Management (docsis_mgmt)

    docsis_mgmt.control  Control [0x03]
        Unsigned 8-bit integer
        Control
    docsis_mgmt.dsap  DSAP [0x00]
        Unsigned 8-bit integer
        Destination SAP
    docsis_mgmt.dst  Destination Address
        6-byte Hardware (MAC) Address
    docsis_mgmt.msglen  Message Length - DSAP to End (Bytes)
        Unsigned 16-bit integer
        Message Length
    docsis_mgmt.rsvd  Reserved [0x00]
        Unsigned 8-bit integer
        Reserved
    docsis_mgmt.src  Source Address
        6-byte Hardware (MAC) Address
    docsis_mgmt.ssap  SSAP [0x00]
        Unsigned 8-bit integer
        Source SAP
    docsis_mgmt.type  Type
        Unsigned 8-bit integer
    docsis_mgmt.version  Version
        Unsigned 8-bit integer

DOCSIS Range Request Message (docsis_rngreq)

    docsis_rngreq.downchid  Downstream Channel ID
        Unsigned 8-bit integer
    docsis_rngreq.pendcomp  Pending Till Complete
        Unsigned 8-bit integer
        Upstream Channel ID
    docsis_rngreq.sid  Service Identifier
        Unsigned 16-bit integer

DOCSIS Ranging Response (docsis_rngrsp)

    docsis_rngrsp.chid_override  Upstream Channel ID Override
        Unsigned 8-bit integer
    docsis_rngrsp.freq_over  Downstream Frequency Override (Hz)
        Unsigned 32-bit integer
        Downstream Frequency Override
    docsis_rngrsp.freqadj  Offset Freq Adjust (Hz)
        Signed 16-bit integer
        Frequency Adjust
    docsis_rngrsp.poweradj  Power Level Adjust (0.25dB units)
        Signed 8-bit integer
        Power Level Adjust
    docsis_rngrsp.rng_stat  Ranging Status
        Unsigned 8-bit integer
    docsis_rngrsp.sid  Service Identifier
        Unsigned 16-bit integer
    docsis_rngrsp.timingadj  Timing Adjust (6.25us/64)
        Signed 32-bit integer
        Timing Adjust
    docsis_rngrsp.upchid  Upstream Channel ID
        Unsigned 8-bit integer
    docsis_rngrsp.xmit_eq_adj  Transmit Equalisation Adjust
        Byte array
        Timing Equalisation Adjust

DOCSIS Registration Acknowledge (docsis_regack)

    docsis_regack.respnse  Response Code
        Unsigned 8-bit integer
    docsis_regack.sid  Service Identifier
        Unsigned 16-bit integer

DOCSIS Registration Request Multipart (docsis_regreqmp)

    docsis_regreqmp.fragment_sequence_number  Fragment Sequence Number
        Unsigned 8-bit integer
        Reg-Req-Mp Fragment Sequence Number
    docsis_regreqmp.number_of_fragments  Number of Fragments
        Unsigned 8-bit integer
        Reg-Req-Mp Number of Fragments
    docsis_regreqmp.sid  Sid
        Unsigned 16-bit integer
        Reg-Req-Mp Sid

DOCSIS Registration Requests (docsis_regreq)

    docsis_regreq.sid  Service Identifier
        Unsigned 16-bit integer

DOCSIS Registration Response Multipart (docsis_regrspmp)

    docsis_regrspmp.fragment_sequence_number  Fragment Sequence Number
        Unsigned 8-bit integer
        Reg-Rsp-Mp Fragment Sequence Number
    docsis_regrspmp.number_of_fragments  Number of Fragments
        Unsigned 8-bit integer
        Reg-Rsp-Mp Number of Fragments
    docsis_regrspmp.response  Response
        Unsigned 8-bit integer
        Reg-Rsp-Mp Response
    docsis_regrspmp.sid  Sid
        Unsigned 16-bit integer
        Reg-Rsp-Mp Sid

DOCSIS Registration Responses (docsis_regrsp)

    docsis_regrsp.respnse  Response Code
        Unsigned 8-bit integer
    docsis_regrsp.sid  Service Identifier
        Unsigned 16-bit integer

DOCSIS Synchronisation Message (docsis_sync)

    docsis_sync.cmts_timestamp  CMTS Timestamp
        Unsigned 32-bit integer
        Sync CMTS Timestamp

DOCSIS Upstream Bandwidth Allocation (docsis_map)

    docsis_map.acktime  ACK Time (minislots)
        Unsigned 32-bit integer
        Ack Time (minislots)
    docsis_map.allocstart  Alloc Start Time (minislots)
        Unsigned 32-bit integer
    docsis_map.data_end  Data Backoff End
        Unsigned 8-bit integer
    docsis_map.data_start  Data Backoff Start
        Unsigned 8-bit integer
    docsis_map.ie  Information Element
        Unsigned 32-bit integer
    docsis_map.iuc  Interval Usage Code
        Unsigned 32-bit integer
    docsis_map.numie  Number of IE's
        Unsigned 8-bit integer
        Number of Information Elements
    docsis_map.offset  Offset
        Unsigned 32-bit integer
    docsis_map.rng_end  Ranging Backoff End
        Unsigned 8-bit integer
    docsis_map.rng_start  Ranging Backoff Start
        Unsigned 8-bit integer
    docsis_map.rsvd  Reserved [0x00]
        Unsigned 8-bit integer
        Reserved Byte
    docsis_map.sid  Service Identifier
        Unsigned 32-bit integer
    docsis_map.ucdcount  UCD Count
        Unsigned 8-bit integer
        Map UCD Count
    docsis_map.upchid  Upstream Channel ID
        Unsigned 8-bit integer

DOCSIS Upstream Channel Change Request (docsis_uccreq)

    docsis_uccreq.upchid  Upstream Channel Id
        Unsigned 8-bit integer

DOCSIS Upstream Channel Change Response (docsis_uccrsp)

    docsis_uccrsp.upchid  Upstream Channel Id
        Unsigned 8-bit integer

DOCSIS Upstream Channel Descriptor (docsis_ucd)

    docsis_ucd.burst.diffenc  2 Differential Encoding
        Unsigned 8-bit integer
        Differential Encoding
    docsis_ucd.burst.fec  5 FEC (T)
        Unsigned 8-bit integer
        FEC (T) Codeword Parity Bits = 2^T
    docsis_ucd.burst.fec_codeword  6 FEC Codeword Info bytes (k)
        Unsigned 8-bit integer
        FEC Codeword Info Bytes (k)
    docsis_ucd.burst.guardtime  9 Guard Time Size (Symbol Times)
        Unsigned 8-bit integer
        Guard Time Size
    docsis_ucd.burst.last_cw_len  10 Last Codeword Length
        Unsigned 8-bit integer
        Last Codeword Length
    docsis_ucd.burst.maxburst  8 Max Burst Size (Minislots)
        Unsigned 8-bit integer
        Max Burst Size (Minislots)
    docsis_ucd.burst.modtype  1 Modulation Type
        Unsigned 8-bit integer
        Modulation Type
    docsis_ucd.burst.preamble_len  3 Preamble Length (Bits)
        Unsigned 16-bit integer
        Preamble Length (Bits)
    docsis_ucd.burst.preamble_off  4 Preamble Offset (Bits)
        Unsigned 16-bit integer
        Preamble Offset (Bits)
    docsis_ucd.burst.preambletype  14 Preamble Type
        Unsigned 8-bit integer
        Preamble Type
    docsis_ucd.burst.rsintblock  13 RS Interleaver Block Size
        Unsigned 8-bit integer
        R-S Interleaver Block
    docsis_ucd.burst.rsintdepth  12 RS Interleaver Depth
        Unsigned 8-bit integer
        R-S Interleaver Depth
    docsis_ucd.burst.scdmacodespersubframe  16 SCDMA Codes per Subframe
        Unsigned 8-bit integer
        SCDMA Codes per Subframe
    docsis_ucd.burst.scdmaframerintstepsize  17 SDMA Framer Int Step Size
        Unsigned 8-bit integer
        SCDMA Framer Interleaving Step Size
    docsis_ucd.burst.scdmascrambleronoff  15 SCDMA Scrambler On/Off
        Unsigned 8-bit integer
        SCDMA Scrambler On/Off
    docsis_ucd.burst.scrambler_seed  7 Scrambler Seed
        Unsigned 16-bit integer
        Burst Descriptor
    docsis_ucd.burst.scrambleronoff  11 Scrambler On/Off
        Unsigned 8-bit integer
        Scrambler On/Off
    docsis_ucd.burst.tcmenabled  18 TCM Enable
        Unsigned 8-bit integer
        TCM Enabled
    docsis_ucd.confcngcnt  Config Change Count
        Unsigned 8-bit integer
        Configuration Change Count
    docsis_ucd.downchid  Downstream Channel ID
        Unsigned 8-bit integer
        Management Message
    docsis_ucd.freq  Frequency (Hz)
        Unsigned 32-bit integer
        Upstream Center Frequency
    docsis_ucd.iuc  Interval Usage Code
        Unsigned 8-bit integer
    docsis_ucd.length  TLV Length
        Unsigned 8-bit integer
        Channel TLV length
    docsis_ucd.mslotsize  Mini Slot Size (6.25us TimeTicks)
        Unsigned 8-bit integer
    docsis_ucd.preamble  Preamble Pattern
        Byte array
        Preamble Superstring
    docsis_ucd.symrate  Symbol Rate (ksym/sec)
        Unsigned 8-bit integer
        Symbol Rate
    docsis_ucd.type  TLV Type
        Unsigned 8-bit integer
        Channel TLV type
    docsis_ucd.upchid  Upstream Channel ID
        Unsigned 8-bit integer

DOCSIS Upstream Channel Descriptor Type 29 (docsis_type29ucd)

    docsis_type29ucd.burst.diffenc  2 Differential Encoding
        Unsigned 8-bit integer
        Differential Encoding
    docsis_type29ucd.burst.fec  5 FEC (T)
        Unsigned 8-bit integer
        FEC (T) Codeword Parity Bits = 2^T
    docsis_type29ucd.burst.fec_codeword  6 FEC Codeword Info bytes (k)
        Unsigned 8-bit integer
        FEC Codeword Info Bytes (k)
    docsis_type29ucd.burst.guardtime  9 Guard Time Size (Symbol Times)
        Unsigned 8-bit integer
        Guard Time Size
    docsis_type29ucd.burst.last_cw_len  10 Last Codeword Length
        Unsigned 8-bit integer
        Last Codeword Length
    docsis_type29ucd.burst.maxburst  8 Max Burst Size (Minislots)
        Unsigned 8-bit integer
        Max Burst Size (Minislots)
    docsis_type29ucd.burst.modtype  1 Modulation Type
        Unsigned 8-bit integer
        Modulation Type
    docsis_type29ucd.burst.preamble_len  3 Preamble Length (Bits)
        Unsigned 16-bit integer
        Preamble Length (Bits)
    docsis_type29ucd.burst.preamble_off  4 Preamble Offset (Bits)
        Unsigned 16-bit integer
        Preamble Offset (Bits)
    docsis_type29ucd.burst.preambletype  14 Scrambler On/Off
        Unsigned 8-bit integer
        Preamble Type
    docsis_type29ucd.burst.rsintblock  13 Scrambler On/Off
        Unsigned 8-bit integer
        R-S Interleaver Block
    docsis_type29ucd.burst.rsintdepth  12 Scrambler On/Off
        Unsigned 8-bit integer
        R-S Interleaver Depth
    docsis_type29ucd.burst.scdmacodespersubframe  16 Scrambler On/Off
        Unsigned 8-bit integer
        SCDMA Codes per Subframe
    docsis_type29ucd.burst.scdmaframerintstepsize  17 Scrambler On/Off
        Unsigned 8-bit integer
        SCDMA Framer Interleaving Step Size
    docsis_type29ucd.burst.scdmascrambleronoff  15 Scrambler On/Off
        Unsigned 8-bit integer
        SCDMA Scrambler On/Off
    docsis_type29ucd.burst.scrambler_seed  7 Scrambler Seed
        Unsigned 16-bit integer
        Burst Descriptor
    docsis_type29ucd.burst.scrambleronoff  11 Scrambler On/Off
        Unsigned 8-bit integer
        Scrambler On/Off
    docsis_type29ucd.burst.tcmenabled  18 Scrambler On/Off
        Unsigned 8-bit integer
        TCM Enabled
    docsis_type29ucd.confcngcnt  Config Change Count
        Unsigned 8-bit integer
        Configuration Change Count
    docsis_type29ucd.downchid  Downstream Channel ID
        Unsigned 8-bit integer
        Management Message
    docsis_type29ucd.extpreamble  6 Extended Preamble Pattern
        Byte array
        Extended Preamble Pattern
    docsis_type29ucd.freq  2 Frequency (Hz)
        Unsigned 32-bit integer
        Upstream Center Frequency
    docsis_type29ucd.iuc  Interval Usage Code
        Unsigned 8-bit integer
    docsis_type29ucd.maintainpowerspectraldensity  15 Maintain power spectral density
        Byte array
        Maintain power spectral density
    docsis_type29ucd.mslotsize  Mini Slot Size (6.25us TimeTicks)
        Unsigned 8-bit integer
    docsis_type29ucd.preamble  3 Preamble Pattern
        Byte array
        Preamble Superstring
    docsis_type29ucd.rangingrequired  16 Ranging Required
        Byte array
        Ranging Required
    docsis_type29ucd.scdmaactivecodes  10 SCDMA Active Codes
        Byte array
        SCDMA Active Codes
    docsis_type29ucd.scdmacodehoppingseed  11 SCDMA Code Hopping Seed
        Byte array
        SCDMA Code Hopping Seed
    docsis_type29ucd.scdmacodesperminislot  9 SCDMA Codes per mini slot
        Byte array
        SCDMA Codes per mini slot
    docsis_type29ucd.scdmaenable  7 SCDMA Mode Enable
        Byte array
        SCDMA Mode Enable
    docsis_type29ucd.scdmaspreadinginterval  8 SCDMA Spreading Interval
        Byte array
        SCDMA Spreading Interval
    docsis_type29ucd.scdmatimestamp  14 SCDMA Timestamp Snapshot
        Byte array
        SCDMA Timestamp Snapshot
    docsis_type29ucd.scdmausratiodenom  13 SCDMA US Ratio Denominator
        Byte array
        SCDMA US Ratio Denominator
    docsis_type29ucd.scdmausrationum  12 SCDMA US Ratio Numerator
        Byte array
        SCDMA US Ratio Numerator
    docsis_type29ucd.symrate  1 Symbol Rate (ksym/sec)
        Unsigned 8-bit integer
        Symbol Rate
    docsis_type29ucd.upchid  Upstream Channel ID
        Unsigned 8-bit integer

DOCSIS Vendor Specific Encodings (docsis_vsif)

    docsis_vsif.cisco.iosfile  IOS Config File
        String
    docsis_vsif.cisco.ipprec  IP Precedence Encodings
        Byte array
    docsis_vsif.cisco.ipprec.bw  IP Precedence Bandwidth
        Unsigned 8-bit integer
    docsis_vsif.cisco.ipprec.value  IP Precedence Value
        Unsigned 8-bit integer
    docsis_vsif.cisco.numphones  Number of phone lines
        Unsigned 8-bit integer
    docsis_vsif.unknown  VSIF Encodings
        Byte array
        Unknown Vendor
    docsis_vsif.vendorid  Vendor Id
        Unsigned 24-bit integer
        Vendor Identifier

DPNSS/DASS2-User Adaptation Layer (dua)

    dua.asp_identifier  ASP identifier
        Unsigned 32-bit integer
    dua.diagnostic_information  Diagnostic information
        Byte array
    dua.dlci_channel  Channel
        Unsigned 16-bit integer
    dua.dlci_one_bit  One bit
        Boolean
    dua.dlci_reserved  Reserved
        Unsigned 16-bit integer
    dua.dlci_spare  Spare
        Unsigned 16-bit integer
    dua.dlci_v_bit  V-bit
        Boolean
    dua.dlci_zero_bit  Zero bit
        Boolean
    dua.error_code  Error code
        Unsigned 32-bit integer
    dua.heartbeat_data  Heartbeat data
        Byte array
    dua.info_string  Info string
        String
    dua.int_interface_identifier  Integer interface identifier
        Unsigned 32-bit integer
    dua.interface_range_end  End
        Unsigned 32-bit integer
    dua.interface_range_start  Start
        Unsigned 32-bit integer
    dua.message_class  Message class
        Unsigned 8-bit integer
    dua.message_length  Message length
        Unsigned 32-bit integer
    dua.message_type  Message Type
        Unsigned 8-bit integer
    dua.parameter_length  Parameter length
        Unsigned 16-bit integer
    dua.parameter_padding  Parameter padding
        Byte array
    dua.parameter_tag  Parameter Tag
        Unsigned 16-bit integer
    dua.parameter_value  Parameter value
        Byte array
    dua.release_reason  Reason
        Unsigned 32-bit integer
    dua.reserved  Reserved
        Unsigned 8-bit integer
    dua.states  States
        Byte array
    dua.status_identification  Status identification
        Unsigned 16-bit integer
    dua.status_type  Status type
        Unsigned 16-bit integer
    dua.tei_status  TEI status
        Unsigned 32-bit integer
    dua.text_interface_identifier  Text interface identifier
        String
    dua.traffic_mode_type  Traffic mode type
        Unsigned 32-bit integer
    dua.version  Version
        Unsigned 8-bit integer

DRDA (drda)

    drda.ddm.codepoint  Code point
        Unsigned 16-bit integer
        DDM code point
    drda.ddm.ddmid  Magic
        Unsigned 8-bit integer
        DDM magic
    drda.ddm.fmt.bit0  Reserved
        Boolean
        DSSFMT reserved
    drda.ddm.fmt.bit1  Chained
        Boolean
        DSSFMT chained
    drda.ddm.fmt.bit2  Continue
        Boolean
        DSSFMT continue on error
    drda.ddm.fmt.bit3  Same correlation
        Boolean
        DSSFMT same correlation
    drda.ddm.fmt.dsstyp  DSS type
        Unsigned 8-bit integer
        DSSFMT type
    drda.ddm.format  Format
        Unsigned 8-bit integer
        DDM format
    drda.ddm.length  Length
        Unsigned 16-bit integer
        DDM length
    drda.ddm.length2  Length2
        Unsigned 16-bit integer
        DDM length2
    drda.ddm.rqscrr  CorrelId
        Unsigned 16-bit integer
        DDM correlation identifier
    drda.param.codepoint  Code point
        Unsigned 16-bit integer
        Param code point
    drda.param.data  Data (ASCII)
        String
        Param data left as ASCII for display
    drda.param.data.ebcdic  Data (EBCDIC)
        EBCDIC string
        Param data converted from EBCDIC to ASCII for display
    drda.param.length  Length
        Unsigned 16-bit integer
        Param length
    drda.sqlstatement  SQL statement (ASCII)
        String
        SQL statement left as ASCII for display
    drda.sqlstatement.ebcdic  SQL statement (EBCDIC)
        EBCDIC string
        SQL statement converted from EBCDIC to ASCII for display

DRSUAPI (drsuapi)

    drsuapi.DsBind.bind_guid  bind_guid
        Globally Unique Identifier
    drsuapi.DsBind.bind_handle  bind_handle
        Byte array
    drsuapi.DsBind.bind_info  bind_info
        No value
    drsuapi.DsBindInfo.info24  info24
        No value
    drsuapi.DsBindInfo.info28  info28
        No value
    drsuapi.DsBindInfo24.site_guid  site_guid
        Globally Unique Identifier
    drsuapi.DsBindInfo24.supported_extensions  supported_extensions
        Unsigned 32-bit integer
    drsuapi.DsBindInfo24.u1  u1
        Unsigned 32-bit integer
    drsuapi.DsBindInfo28.repl_epoch  repl_epoch
        Unsigned 32-bit integer
    drsuapi.DsBindInfo28.site_guid  site_guid
        Globally Unique Identifier
    drsuapi.DsBindInfo28.supported_extensions  supported_extensions
        Unsigned 32-bit integer
    drsuapi.DsBindInfo28.u1  u1
        Unsigned 32-bit integer
    drsuapi.DsBindInfoCtr.info  info
        Unsigned 32-bit integer
    drsuapi.DsBindInfoCtr.length  length
        Unsigned 32-bit integer
    drsuapi.DsCrackNames.bind_handle  bind_handle
        Byte array
    drsuapi.DsCrackNames.ctr  ctr
        Unsigned 32-bit integer
    drsuapi.DsCrackNames.level  level
        Signed 32-bit integer
    drsuapi.DsCrackNames.req  req
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfo01.server_nt4_account  server_nt4_account
        String
    drsuapi.DsGetDCInfo01.unknown1  unknown1
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfo01.unknown2  unknown2
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfo01.unknown3  unknown3
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfo01.unknown4  unknown4
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfo01.unknown5  unknown5
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfo01.unknown6  unknown6
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfo1.computer_dn  computer_dn
        String
    drsuapi.DsGetDCInfo1.dns_name  dns_name
        String
    drsuapi.DsGetDCInfo1.is_enabled  is_enabled
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfo1.is_pdc  is_pdc
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfo1.netbios_name  netbios_name
        String
    drsuapi.DsGetDCInfo1.server_dn  server_dn
        String
    drsuapi.DsGetDCInfo1.site_name  site_name
        String
    drsuapi.DsGetDCInfo2.computer_dn  computer_dn
        String
    drsuapi.DsGetDCInfo2.computer_guid  computer_guid
        Globally Unique Identifier
    drsuapi.DsGetDCInfo2.dns_name  dns_name
        String
    drsuapi.DsGetDCInfo2.is_enabled  is_enabled
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfo2.is_gc  is_gc
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfo2.is_pdc  is_pdc
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfo2.netbios_name  netbios_name
        String
    drsuapi.DsGetDCInfo2.ntds_dn  ntds_dn
        String
    drsuapi.DsGetDCInfo2.ntds_guid  ntds_guid
        Globally Unique Identifier
    drsuapi.DsGetDCInfo2.server_dn  server_dn
        String
    drsuapi.DsGetDCInfo2.server_guid  server_guid
        Globally Unique Identifier
    drsuapi.DsGetDCInfo2.site_dn  site_dn
        String
    drsuapi.DsGetDCInfo2.site_guid  site_guid
        Globally Unique Identifier
    drsuapi.DsGetDCInfo2.site_name  site_name
        String
    drsuapi.DsGetDCInfoCtr.ctr01  ctr01
        No value
    drsuapi.DsGetDCInfoCtr.ctr1  ctr1
        No value
    drsuapi.DsGetDCInfoCtr.ctr2  ctr2
        No value
    drsuapi.DsGetDCInfoCtr01.array  array
        No value
    drsuapi.DsGetDCInfoCtr01.count  count
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfoCtr1.array  array
        No value
    drsuapi.DsGetDCInfoCtr1.count  count
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfoCtr2.array  array
        No value
    drsuapi.DsGetDCInfoCtr2.count  count
        Unsigned 32-bit integer
    drsuapi.DsGetDCInfoRequest.req1  req1
        No value
    drsuapi.DsGetDCInfoRequest1.domain_name  domain_name
        String
    drsuapi.DsGetDCInfoRequest1.level  level
        Signed 32-bit integer
    drsuapi.DsGetDomainControllerInfo.bind_handle  bind_handle
        Byte array
    drsuapi.DsGetDomainControllerInfo.ctr  ctr
        Unsigned 32-bit integer
    drsuapi.DsGetDomainControllerInfo.level  level
        Signed 32-bit integer
    drsuapi.DsGetDomainControllerInfo.req  req
        Unsigned 32-bit integer
    drsuapi.DsGetNCChanges.bind_handle  bind_handle
        Byte array
    drsuapi.DsGetNCChanges.ctr  ctr
        Unsigned 32-bit integer
    drsuapi.DsGetNCChanges.level  level
        Signed 32-bit integer
    drsuapi.DsGetNCChanges.req  req
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesCtr.ctr6  ctr6
        No value
    drsuapi.DsGetNCChangesCtr.ctr7  ctr7
        No value
    drsuapi.DsGetNCChangesCtr6.array_ptr1  array_ptr1
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesCtr6.coursor_ex  coursor_ex
        No value
    drsuapi.DsGetNCChangesCtr6.ctr12  ctr12
        No value
    drsuapi.DsGetNCChangesCtr6.guid1  guid1
        Globally Unique Identifier
    drsuapi.DsGetNCChangesCtr6.guid2  guid2
        Globally Unique Identifier
    drsuapi.DsGetNCChangesCtr6.len1  len1
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesCtr6.ptr1  ptr1
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesCtr6.sync_req_info1  sync_req_info1
        No value
    drsuapi.DsGetNCChangesCtr6.u1  u1
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesCtr6.u2  u2
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesCtr6.u3  u3
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesCtr6.usn1  usn1
        No value
    drsuapi.DsGetNCChangesCtr6.usn2  usn2
        No value
    drsuapi.DsGetNCChangesRequest.req5  req5
        No value
    drsuapi.DsGetNCChangesRequest.req8  req8
        No value
    drsuapi.DsGetNCChangesRequest5.coursor  coursor
        No value
    drsuapi.DsGetNCChangesRequest5.guid1  guid1
        Globally Unique Identifier
    drsuapi.DsGetNCChangesRequest5.guid2  guid2
        Globally Unique Identifier
    drsuapi.DsGetNCChangesRequest5.h1  h1
        Unsigned 64-bit integer
    drsuapi.DsGetNCChangesRequest5.sync_req_info1  sync_req_info1
        No value
    drsuapi.DsGetNCChangesRequest5.unknown1  unknown1
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesRequest5.unknown2  unknown2
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesRequest5.unknown3  unknown3
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesRequest5.unknown4  unknown4
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesRequest5.usn1  usn1
        No value
    drsuapi.DsGetNCChangesRequest8.coursor  coursor
        No value
    drsuapi.DsGetNCChangesRequest8.ctr12  ctr12
        No value
    drsuapi.DsGetNCChangesRequest8.guid1  guid1
        Globally Unique Identifier
    drsuapi.DsGetNCChangesRequest8.guid2  guid2
        Globally Unique Identifier
    drsuapi.DsGetNCChangesRequest8.h1  h1
        Unsigned 64-bit integer
    drsuapi.DsGetNCChangesRequest8.sync_req_info1  sync_req_info1
        No value
    drsuapi.DsGetNCChangesRequest8.unique_ptr1  unique_ptr1
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesRequest8.unique_ptr2  unique_ptr2
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesRequest8.unknown1  unknown1
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesRequest8.unknown2  unknown2
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesRequest8.unknown3  unknown3
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesRequest8.unknown4  unknown4
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesRequest8.usn1  usn1
        No value
    drsuapi.DsGetNCChangesRequest_Ctr12.array  array
        No value
    drsuapi.DsGetNCChangesRequest_Ctr12.count  count
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesRequest_Ctr13.data  data
        No value
    drsuapi.DsGetNCChangesRequest_Ctr13.unknown1  unknown1
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesRequest_Ctr14.byte_array  byte_array
        Unsigned 8-bit integer
    drsuapi.DsGetNCChangesRequest_Ctr14.length  length
        Unsigned 32-bit integer
    drsuapi.DsGetNCChangesUsnTriple.usn1  usn1
        Unsigned 64-bit integer
    drsuapi.DsGetNCChangesUsnTriple.usn2  usn2
        Unsigned 64-bit integer
    drsuapi.DsGetNCChangesUsnTriple.usn3  usn3
        Unsigned 64-bit integer
    drsuapi.DsNameCtr.ctr1  ctr1
        No value
    drsuapi.DsNameCtr1.array  array
        No value
    drsuapi.DsNameCtr1.count  count
        Unsigned 32-bit integer
    drsuapi.DsNameInfo1.dns_domain_name  dns_domain_name
        String
    drsuapi.DsNameInfo1.result_name  result_name
        String
    drsuapi.DsNameInfo1.status  status
        Signed 32-bit integer
    drsuapi.DsNameRequest.req1  req1
        No value
    drsuapi.DsNameRequest1.count  count
        Unsigned 32-bit integer
    drsuapi.DsNameRequest1.format_desired  format_desired
        Signed 32-bit integer
    drsuapi.DsNameRequest1.format_flags  format_flags
        Signed 32-bit integer
    drsuapi.DsNameRequest1.format_offered  format_offered
        Signed 32-bit integer
    drsuapi.DsNameRequest1.names  names
        No value
    drsuapi.DsNameRequest1.unknown1  unknown1
        Unsigned 32-bit integer
    drsuapi.DsNameRequest1.unknown2  unknown2
        Unsigned 32-bit integer
    drsuapi.DsNameString.str  str
        String
    drsuapi.DsReplica06.str1  str1
        String
    drsuapi.DsReplica06.u1  u1
        Unsigned 32-bit integer
    drsuapi.DsReplica06.u2  u2
        Unsigned 32-bit integer
    drsuapi.DsReplica06.u3  u3
        Unsigned 32-bit integer
    drsuapi.DsReplica06.u4  u4
        Unsigned 32-bit integer
    drsuapi.DsReplica06.u5  u5
        Unsigned 32-bit integer
    drsuapi.DsReplica06.u6  u6
        Unsigned 64-bit integer
    drsuapi.DsReplica06.u7  u7
        Unsigned 32-bit integer
    drsuapi.DsReplica06Ctr.array  array
        No value
    drsuapi.DsReplica06Ctr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplica06Ctr.reserved  reserved
        Unsigned 32-bit integer
    drsuapi.DsReplicaAddOptions.DRSUAPI_DS_REPLICA_ADD_ASYNCHRONOUS_OPERATION  DRSUAPI_DS_REPLICA_ADD_ASYNCHRONOUS_OPERATION
        Boolean
    drsuapi.DsReplicaAddOptions.DRSUAPI_DS_REPLICA_ADD_WRITEABLE  DRSUAPI_DS_REPLICA_ADD_WRITEABLE
        Boolean
    drsuapi.DsReplicaAttrValMetaData.attribute_name  attribute_name
        String
    drsuapi.DsReplicaAttrValMetaData.created  created
        Date/Time stamp
    drsuapi.DsReplicaAttrValMetaData.deleted  deleted
        Date/Time stamp
    drsuapi.DsReplicaAttrValMetaData.local_usn  local_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaAttrValMetaData.object_dn  object_dn
        String
    drsuapi.DsReplicaAttrValMetaData.originating_dsa_invocation_id  originating_dsa_invocation_id
        Globally Unique Identifier
    drsuapi.DsReplicaAttrValMetaData.originating_last_changed  originating_last_changed
        Date/Time stamp
    drsuapi.DsReplicaAttrValMetaData.originating_usn  originating_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaAttrValMetaData.value  value
        Unsigned 8-bit integer
    drsuapi.DsReplicaAttrValMetaData.value_length  value_length
        Unsigned 32-bit integer
    drsuapi.DsReplicaAttrValMetaData.version  version
        Unsigned 32-bit integer
    drsuapi.DsReplicaAttrValMetaData2.attribute_name  attribute_name
        String
    drsuapi.DsReplicaAttrValMetaData2.created  created
        Date/Time stamp
    drsuapi.DsReplicaAttrValMetaData2.deleted  deleted
        Date/Time stamp
    drsuapi.DsReplicaAttrValMetaData2.local_usn  local_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaAttrValMetaData2.object_dn  object_dn
        String
    drsuapi.DsReplicaAttrValMetaData2.originating_dsa_invocation_id  originating_dsa_invocation_id
        Globally Unique Identifier
    drsuapi.DsReplicaAttrValMetaData2.originating_dsa_obj_dn  originating_dsa_obj_dn
        String
    drsuapi.DsReplicaAttrValMetaData2.originating_last_changed  originating_last_changed
        Date/Time stamp
    drsuapi.DsReplicaAttrValMetaData2.originating_usn  originating_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaAttrValMetaData2.value  value
        Unsigned 8-bit integer
    drsuapi.DsReplicaAttrValMetaData2.value_length  value_length
        Unsigned 32-bit integer
    drsuapi.DsReplicaAttrValMetaData2.version  version
        Unsigned 32-bit integer
    drsuapi.DsReplicaAttrValMetaData2Ctr.array  array
        No value
    drsuapi.DsReplicaAttrValMetaData2Ctr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaAttrValMetaData2Ctr.enumeration_context  enumeration_context
        Signed 32-bit integer
    drsuapi.DsReplicaAttrValMetaDataCtr.array  array
        No value
    drsuapi.DsReplicaAttrValMetaDataCtr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaAttrValMetaDataCtr.enumeration_context  enumeration_context
        Signed 32-bit integer
    drsuapi.DsReplicaConnection04.bind_guid  bind_guid
        Globally Unique Identifier
    drsuapi.DsReplicaConnection04.bind_time  bind_time
        Date/Time stamp
    drsuapi.DsReplicaConnection04.u1  u1
        Unsigned 64-bit integer
    drsuapi.DsReplicaConnection04.u2  u2
        Unsigned 32-bit integer
    drsuapi.DsReplicaConnection04.u3  u3
        Unsigned 32-bit integer
    drsuapi.DsReplicaConnection04.u4  u4
        Unsigned 32-bit integer
    drsuapi.DsReplicaConnection04.u5  u5
        Unsigned 32-bit integer
    drsuapi.DsReplicaConnection04Ctr.array  array
        No value
    drsuapi.DsReplicaConnection04Ctr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaConnection04Ctr.reserved  reserved
        Unsigned 32-bit integer
    drsuapi.DsReplicaCoursor.highest_usn  highest_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaCoursor.source_dsa_invocation_id  source_dsa_invocation_id
        Globally Unique Identifier
    drsuapi.DsReplicaCoursor05Ctr.array  array
        No value
    drsuapi.DsReplicaCoursor05Ctr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaCoursor05Ctr.u1  u1
        Unsigned 32-bit integer
    drsuapi.DsReplicaCoursor05Ctr.u2  u2
        Unsigned 32-bit integer
    drsuapi.DsReplicaCoursor05Ctr.u3  u3
        Unsigned 32-bit integer
    drsuapi.DsReplicaCoursor2.highest_usn  highest_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaCoursor2.last_sync_success  last_sync_success
        Date/Time stamp
    drsuapi.DsReplicaCoursor2.source_dsa_invocation_id  source_dsa_invocation_id
        Globally Unique Identifier
    drsuapi.DsReplicaCoursor2Ctr.array  array
        No value
    drsuapi.DsReplicaCoursor2Ctr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaCoursor2Ctr.enumeration_context  enumeration_context
        Signed 32-bit integer
    drsuapi.DsReplicaCoursor3.highest_usn  highest_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaCoursor3.last_sync_success  last_sync_success
        Date/Time stamp
    drsuapi.DsReplicaCoursor3.source_dsa_invocation_id  source_dsa_invocation_id
        Globally Unique Identifier
    drsuapi.DsReplicaCoursor3.source_dsa_obj_dn  source_dsa_obj_dn
        String
    drsuapi.DsReplicaCoursor3Ctr.array  array
        No value
    drsuapi.DsReplicaCoursor3Ctr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaCoursor3Ctr.enumeration_context  enumeration_context
        Signed 32-bit integer
    drsuapi.DsReplicaCoursorCtr.array  array
        No value
    drsuapi.DsReplicaCoursorCtr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaCoursorCtr.reserved  reserved
        Unsigned 32-bit integer
    drsuapi.DsReplicaCoursorEx.coursor  coursor
        No value
    drsuapi.DsReplicaCoursorEx.time1  time1
        Date/Time stamp
    drsuapi.DsReplicaCoursorEx05Ctr.array  array
        No value
    drsuapi.DsReplicaCoursorEx05Ctr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaCoursorEx05Ctr.u1  u1
        Unsigned 32-bit integer
    drsuapi.DsReplicaCoursorEx05Ctr.u2  u2
        Unsigned 32-bit integer
    drsuapi.DsReplicaCoursorEx05Ctr.u3  u3
        Unsigned 32-bit integer
    drsuapi.DsReplicaDeleteOptions.DRSUAPI_DS_REPLICA_DELETE_ASYNCHRONOUS_OPERATION  DRSUAPI_DS_REPLICA_DELETE_ASYNCHRONOUS_OPERATION
        Boolean
    drsuapi.DsReplicaDeleteOptions.DRSUAPI_DS_REPLICA_DELETE_WRITEABLE  DRSUAPI_DS_REPLICA_DELETE_WRITEABLE
        Boolean
    drsuapi.DsReplicaGetInfo.bind_handle  bind_handle
        Byte array
    drsuapi.DsReplicaGetInfo.info  info
        Unsigned 32-bit integer
    drsuapi.DsReplicaGetInfo.info_type  info_type
        Signed 32-bit integer
    drsuapi.DsReplicaGetInfo.level  level
        Signed 32-bit integer
    drsuapi.DsReplicaGetInfo.req  req
        Unsigned 32-bit integer
    drsuapi.DsReplicaGetInfoRequest.req1  req1
        No value
    drsuapi.DsReplicaGetInfoRequest.req2  req2
        No value
    drsuapi.DsReplicaGetInfoRequest1.guid1  guid1
        Globally Unique Identifier
    drsuapi.DsReplicaGetInfoRequest1.info_type  info_type
        Signed 32-bit integer
    drsuapi.DsReplicaGetInfoRequest1.object_dn  object_dn
        String
    drsuapi.DsReplicaGetInfoRequest2.guid1  guid1
        Globally Unique Identifier
    drsuapi.DsReplicaGetInfoRequest2.info_type  info_type
        Signed 32-bit integer
    drsuapi.DsReplicaGetInfoRequest2.object_dn  object_dn
        String
    drsuapi.DsReplicaGetInfoRequest2.string1  string1
        String
    drsuapi.DsReplicaGetInfoRequest2.string2  string2
        String
    drsuapi.DsReplicaGetInfoRequest2.unknown1  unknown1
        Unsigned 32-bit integer
    drsuapi.DsReplicaGetInfoRequest2.unknown2  unknown2
        Unsigned 32-bit integer
    drsuapi.DsReplicaInfo.attrvalmetadata  attrvalmetadata
        No value
    drsuapi.DsReplicaInfo.attrvalmetadata2  attrvalmetadata2
        No value
    drsuapi.DsReplicaInfo.connectfailures  connectfailures
        No value
    drsuapi.DsReplicaInfo.connections04  connections04
        No value
    drsuapi.DsReplicaInfo.coursors  coursors
        No value
    drsuapi.DsReplicaInfo.coursors05  coursors05
        No value
    drsuapi.DsReplicaInfo.coursors2  coursors2
        No value
    drsuapi.DsReplicaInfo.coursors3  coursors3
        No value
    drsuapi.DsReplicaInfo.i06  i06
        No value
    drsuapi.DsReplicaInfo.linkfailures  linkfailures
        No value
    drsuapi.DsReplicaInfo.neighbours  neighbours
        No value
    drsuapi.DsReplicaInfo.neighbours02  neighbours02
        No value
    drsuapi.DsReplicaInfo.objmetadata  objmetadata
        No value
    drsuapi.DsReplicaInfo.objmetadata2  objmetadata2
        No value
    drsuapi.DsReplicaInfo.pendingops  pendingops
        No value
    drsuapi.DsReplicaKccDsaFailure.dsa_obj_dn  dsa_obj_dn
        String
    drsuapi.DsReplicaKccDsaFailure.dsa_obj_guid  dsa_obj_guid
        Globally Unique Identifier
    drsuapi.DsReplicaKccDsaFailure.first_failure  first_failure
        Date/Time stamp
    drsuapi.DsReplicaKccDsaFailure.last_result  last_result
        Unsigned 32-bit integer
    drsuapi.DsReplicaKccDsaFailure.num_failures  num_failures
        Unsigned 32-bit integer
    drsuapi.DsReplicaKccDsaFailuresCtr.array  array
        No value
    drsuapi.DsReplicaKccDsaFailuresCtr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaKccDsaFailuresCtr.reserved  reserved
        Unsigned 32-bit integer
    drsuapi.DsReplicaModifyOptions.DRSUAPI_DS_REPLICA_MODIFY_ASYNCHRONOUS_OPERATION  DRSUAPI_DS_REPLICA_MODIFY_ASYNCHRONOUS_OPERATION
        Boolean
    drsuapi.DsReplicaModifyOptions.DRSUAPI_DS_REPLICA_MODIFY_WRITEABLE  DRSUAPI_DS_REPLICA_MODIFY_WRITEABLE
        Boolean
    drsuapi.DsReplicaNeighbour.consecutive_sync_failures  consecutive_sync_failures
        Unsigned 32-bit integer
    drsuapi.DsReplicaNeighbour.highest_usn  highest_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaNeighbour.last_attempt  last_attempt
        Date/Time stamp
    drsuapi.DsReplicaNeighbour.last_success  last_success
        Date/Time stamp
    drsuapi.DsReplicaNeighbour.naming_context_dn  naming_context_dn
        String
    drsuapi.DsReplicaNeighbour.naming_context_obj_guid  naming_context_obj_guid
        Globally Unique Identifier
    drsuapi.DsReplicaNeighbour.replica_flags  replica_flags
        Unsigned 32-bit integer
    drsuapi.DsReplicaNeighbour.reserved  reserved
        Unsigned 32-bit integer
    drsuapi.DsReplicaNeighbour.result_last_attempt  result_last_attempt
        Unsigned 32-bit integer
    drsuapi.DsReplicaNeighbour.source_dsa_address  source_dsa_address
        String
    drsuapi.DsReplicaNeighbour.source_dsa_invocation_id  source_dsa_invocation_id
        Globally Unique Identifier
    drsuapi.DsReplicaNeighbour.source_dsa_obj_dn  source_dsa_obj_dn
        String
    drsuapi.DsReplicaNeighbour.source_dsa_obj_guid  source_dsa_obj_guid
        Globally Unique Identifier
    drsuapi.DsReplicaNeighbour.tmp_highest_usn  tmp_highest_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaNeighbour.transport_obj_dn  transport_obj_dn
        String
    drsuapi.DsReplicaNeighbour.transport_obj_guid  transport_obj_guid
        Globally Unique Identifier
    drsuapi.DsReplicaNeighbourCtr.array  array
        No value
    drsuapi.DsReplicaNeighbourCtr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaNeighbourCtr.reserved  reserved
        Unsigned 32-bit integer
    drsuapi.DsReplicaObjMetaData.attribute_name  attribute_name
        String
    drsuapi.DsReplicaObjMetaData.local_usn  local_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaObjMetaData.originating_dsa_invocation_id  originating_dsa_invocation_id
        Globally Unique Identifier
    drsuapi.DsReplicaObjMetaData.originating_last_changed  originating_last_changed
        Date/Time stamp
    drsuapi.DsReplicaObjMetaData.originating_usn  originating_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaObjMetaData.version  version
        Unsigned 32-bit integer
    drsuapi.DsReplicaObjMetaData2.attribute_name  attribute_name
        String
    drsuapi.DsReplicaObjMetaData2.local_usn  local_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaObjMetaData2.originating_dsa_invocation_id  originating_dsa_invocation_id
        Globally Unique Identifier
    drsuapi.DsReplicaObjMetaData2.originating_dsa_obj_dn  originating_dsa_obj_dn
        String
    drsuapi.DsReplicaObjMetaData2.originating_last_changed  originating_last_changed
        Date/Time stamp
    drsuapi.DsReplicaObjMetaData2.originating_usn  originating_usn
        Unsigned 64-bit integer
    drsuapi.DsReplicaObjMetaData2.version  version
        Unsigned 32-bit integer
    drsuapi.DsReplicaObjMetaData2Ctr.array  array
        No value
    drsuapi.DsReplicaObjMetaData2Ctr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaObjMetaData2Ctr.enumeration_context  enumeration_context
        Signed 32-bit integer
    drsuapi.DsReplicaObjMetaDataCtr.array  array
        No value
    drsuapi.DsReplicaObjMetaDataCtr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaObjMetaDataCtr.reserved  reserved
        Unsigned 32-bit integer
    drsuapi.DsReplicaOp.nc_dn  nc_dn
        String
    drsuapi.DsReplicaOp.nc_obj_guid  nc_obj_guid
        Globally Unique Identifier
    drsuapi.DsReplicaOp.operation_start  operation_start
        Date/Time stamp
    drsuapi.DsReplicaOp.operation_type  operation_type
        Signed 16-bit integer
    drsuapi.DsReplicaOp.options  options
        Unsigned 16-bit integer
    drsuapi.DsReplicaOp.priority  priority
        Unsigned 32-bit integer
    drsuapi.DsReplicaOp.remote_dsa_address  remote_dsa_address
        String
    drsuapi.DsReplicaOp.remote_dsa_obj_dn  remote_dsa_obj_dn
        String
    drsuapi.DsReplicaOp.remote_dsa_obj_guid  remote_dsa_obj_guid
        Globally Unique Identifier
    drsuapi.DsReplicaOp.serial_num  serial_num
        Unsigned 32-bit integer
    drsuapi.DsReplicaOpCtr.array  array
        No value
    drsuapi.DsReplicaOpCtr.count  count
        Unsigned 32-bit integer
    drsuapi.DsReplicaOpCtr.time  time
        Date/Time stamp
    drsuapi.DsReplicaSync.bind_handle  bind_handle
        Byte array
    drsuapi.DsReplicaSync.level  level
        Signed 32-bit integer
    drsuapi.DsReplicaSync.req  req
        Unsigned 32-bit integer
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_ABANDONED  DRSUAPI_DS_REPLICA_SYNC_ABANDONED
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_ADD_REFERENCE  DRSUAPI_DS_REPLICA_SYNC_ADD_REFERENCE
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_ALL_SOURCES  DRSUAPI_DS_REPLICA_SYNC_ALL_SOURCES
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_ASYNCHRONOUS_OPERATION  DRSUAPI_DS_REPLICA_SYNC_ASYNCHRONOUS_OPERATION
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_ASYNCHRONOUS_REPLICA  DRSUAPI_DS_REPLICA_SYNC_ASYNCHRONOUS_REPLICA
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_CRITICAL  DRSUAPI_DS_REPLICA_SYNC_CRITICAL
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_FORCE  DRSUAPI_DS_REPLICA_SYNC_FORCE
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_FULL  DRSUAPI_DS_REPLICA_SYNC_FULL
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_FULL_IN_PROGRESS  DRSUAPI_DS_REPLICA_SYNC_FULL_IN_PROGRESS
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_INITIAL  DRSUAPI_DS_REPLICA_SYNC_INITIAL
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_INITIAL_IN_PROGRESS  DRSUAPI_DS_REPLICA_SYNC_INITIAL_IN_PROGRESS
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_INTERSITE_MESSAGING  DRSUAPI_DS_REPLICA_SYNC_INTERSITE_MESSAGING
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_NEVER_COMPLETED  DRSUAPI_DS_REPLICA_SYNC_NEVER_COMPLETED
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_NEVER_NOTIFY  DRSUAPI_DS_REPLICA_SYNC_NEVER_NOTIFY
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_NOTIFICATION  DRSUAPI_DS_REPLICA_SYNC_NOTIFICATION
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_NO_DISCARD  DRSUAPI_DS_REPLICA_SYNC_NO_DISCARD
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_PARTIAL_ATTRIBUTE_SET  DRSUAPI_DS_REPLICA_SYNC_PARTIAL_ATTRIBUTE_SET
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_PERIODIC  DRSUAPI_DS_REPLICA_SYNC_PERIODIC
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_PREEMPTED  DRSUAPI_DS_REPLICA_SYNC_PREEMPTED
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_REQUEUE  DRSUAPI_DS_REPLICA_SYNC_REQUEUE
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_TWO_WAY  DRSUAPI_DS_REPLICA_SYNC_TWO_WAY
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_URGENT  DRSUAPI_DS_REPLICA_SYNC_URGENT
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_USE_COMPRESSION  DRSUAPI_DS_REPLICA_SYNC_USE_COMPRESSION
        Boolean
    drsuapi.DsReplicaSyncOptions.DRSUAPI_DS_REPLICA_SYNC_WRITEABLE  DRSUAPI_DS_REPLICA_SYNC_WRITEABLE
        Boolean
    drsuapi.DsReplicaSyncRequest.req1  req1
        No value
    drsuapi.DsReplicaSyncRequest1.guid1  guid1
        Globally Unique Identifier
    drsuapi.DsReplicaSyncRequest1.info  info
        No value
    drsuapi.DsReplicaSyncRequest1.options  options
        Unsigned 32-bit integer
    drsuapi.DsReplicaSyncRequest1.string1  string1
        String
    drsuapi.DsReplicaSyncRequest1Info.byte_array  byte_array
        Unsigned 8-bit integer
    drsuapi.DsReplicaSyncRequest1Info.guid1  guid1
        Globally Unique Identifier
    drsuapi.DsReplicaSyncRequest1Info.nc_dn  nc_dn
        String
    drsuapi.DsReplicaSyncRequest1Info.str_len  str_len
        Unsigned 32-bit integer
    drsuapi.DsReplicaSyncRequest1Info.unknown1  unknown1
        Unsigned 32-bit integer
    drsuapi.DsReplicaSyncRequest1Info.unknown2  unknown2
        Unsigned 32-bit integer
    drsuapi.DsReplicaUpdateRefs.bind_handle  bind_handle
        Byte array
    drsuapi.DsReplicaUpdateRefs.level  level
        Signed 32-bit integer
    drsuapi.DsReplicaUpdateRefs.req  req
        Unsigned 32-bit integer
    drsuapi.DsReplicaUpdateRefsOptions.DRSUAPI_DS_REPLICA_UPDATE_0x00000010  DRSUAPI_DS_REPLICA_UPDATE_0x00000010
        Boolean
    drsuapi.DsReplicaUpdateRefsOptions.DRSUAPI_DS_REPLICA_UPDATE_ADD_REFERENCE  DRSUAPI_DS_REPLICA_UPDATE_ADD_REFERENCE
        Boolean
    drsuapi.DsReplicaUpdateRefsOptions.DRSUAPI_DS_REPLICA_UPDATE_ASYNCHRONOUS_OPERATION  DRSUAPI_DS_REPLICA_UPDATE_ASYNCHRONOUS_OPERATION
        Boolean
    drsuapi.DsReplicaUpdateRefsOptions.DRSUAPI_DS_REPLICA_UPDATE_DELETE_REFERENCE  DRSUAPI_DS_REPLICA_UPDATE_DELETE_REFERENCE
        Boolean
    drsuapi.DsReplicaUpdateRefsOptions.DRSUAPI_DS_REPLICA_UPDATE_WRITEABLE  DRSUAPI_DS_REPLICA_UPDATE_WRITEABLE
        Boolean
    drsuapi.DsReplicaUpdateRefsRequest.req1  req1
        No value
    drsuapi.DsReplicaUpdateRefsRequest1.dest_dsa_dns_name  dest_dsa_dns_name
        String
    drsuapi.DsReplicaUpdateRefsRequest1.dest_dsa_guid  dest_dsa_guid
        Globally Unique Identifier
    drsuapi.DsReplicaUpdateRefsRequest1.options  options
        Unsigned 32-bit integer
    drsuapi.DsReplicaUpdateRefsRequest1.sync_req_info1  sync_req_info1
        No value
    drsuapi.DsReplicaUpdateRefsRequest1.unknown1  unknown1
        Unsigned 32-bit integer
    drsuapi.DsReplicaUpdateRefsRequest1.unknown2  unknown2
        Unsigned 32-bit integer
    drsuapi.DsRplicaOpOptions.add  add
        Unsigned 32-bit integer
    drsuapi.DsRplicaOpOptions.delete  delete
        Unsigned 32-bit integer
    drsuapi.DsRplicaOpOptions.modify  modify
        Unsigned 32-bit integer
    drsuapi.DsRplicaOpOptions.sync  sync
        Unsigned 32-bit integer
    drsuapi.DsRplicaOpOptions.unknown  unknown
        Unsigned 32-bit integer
    drsuapi.DsRplicaOpOptions.update_refs  update_refs
        Unsigned 32-bit integer
    drsuapi.DsUnbind.bind_handle  bind_handle
        Byte array
    drsuapi.DsWriteAccountSpn.bind_handle  bind_handle
        Byte array
    drsuapi.DsWriteAccountSpn.level  level
        Signed 32-bit integer
    drsuapi.DsWriteAccountSpn.req  req
        Unsigned 32-bit integer
    drsuapi.DsWriteAccountSpn.res  res
        Unsigned 32-bit integer
    drsuapi.DsWriteAccountSpnRequest.req1  req1
        No value
    drsuapi.DsWriteAccountSpnRequest1.count  count
        Unsigned 32-bit integer
    drsuapi.DsWriteAccountSpnRequest1.object_dn  object_dn
        String
    drsuapi.DsWriteAccountSpnRequest1.operation  operation
        Signed 32-bit integer
    drsuapi.DsWriteAccountSpnRequest1.spn_names  spn_names
        No value
    drsuapi.DsWriteAccountSpnRequest1.unknown1  unknown1
        Unsigned 32-bit integer
    drsuapi.DsWriteAccountSpnResult.res1  res1
        No value
    drsuapi.DsWriteAccountSpnResult1.status  status
        Unsigned 32-bit integer
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_00000080  DRSUAPI_SUPPORTED_EXTENSION_00000080
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_00100000  DRSUAPI_SUPPORTED_EXTENSION_00100000
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_20000000  DRSUAPI_SUPPORTED_EXTENSION_20000000
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_40000000  DRSUAPI_SUPPORTED_EXTENSION_40000000
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_80000000  DRSUAPI_SUPPORTED_EXTENSION_80000000
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_ADDENTRYREPLY_V3  DRSUAPI_SUPPORTED_EXTENSION_ADDENTRYREPLY_V3
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_ADDENTRY_V2  DRSUAPI_SUPPORTED_EXTENSION_ADDENTRY_V2
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_ADD_SID_HISTORY  DRSUAPI_SUPPORTED_EXTENSION_ADD_SID_HISTORY
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_ASYNC_REPLICATION  DRSUAPI_SUPPORTED_EXTENSION_ASYNC_REPLICATION
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_BASE  DRSUAPI_SUPPORTED_EXTENSION_BASE
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_CRYPTO_BIND  DRSUAPI_SUPPORTED_EXTENSION_CRYPTO_BIND
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V01  DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V01
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V1  DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V1
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V2  DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V2
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V5  DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V5
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V6  DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V6
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V7  DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V7
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V6  DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V6
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V8  DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V8
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GETCHG_COMPRESS  DRSUAPI_SUPPORTED_EXTENSION_GETCHG_COMPRESS
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GET_MEMBERSHIPS2  DRSUAPI_SUPPORTED_EXTENSION_GET_MEMBERSHIPS2
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_GET_REPL_INFO  DRSUAPI_SUPPORTED_EXTENSION_GET_REPL_INFO
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_INSTANCE_TYPE_NOT_REQ_ON_MOD  DRSUAPI_SUPPORTED_EXTENSION_INSTANCE_TYPE_NOT_REQ_ON_MOD
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_KCC_EXECUTE  DRSUAPI_SUPPORTED_EXTENSION_KCC_EXECUTE
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_LINKED_VALUE_REPLICATION  DRSUAPI_SUPPORTED_EXTENSION_LINKED_VALUE_REPLICATION
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_MOVEREQ_V2  DRSUAPI_SUPPORTED_EXTENSION_MOVEREQ_V2
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_NONDOMAIN_NCS  DRSUAPI_SUPPORTED_EXTENSION_NONDOMAIN_NCS
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_POST_BETA3  DRSUAPI_SUPPORTED_EXTENSION_POST_BETA3
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_REMOVEAPI  DRSUAPI_SUPPORTED_EXTENSION_REMOVEAPI
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_RESTORE_USN_OPTIMIZATION  DRSUAPI_SUPPORTED_EXTENSION_RESTORE_USN_OPTIMIZATION
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_STRONG_ENCRYPTION  DRSUAPI_SUPPORTED_EXTENSION_STRONG_ENCRYPTION
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_TRANSITIVE_MEMBERSHIP  DRSUAPI_SUPPORTED_EXTENSION_TRANSITIVE_MEMBERSHIP
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_VERIFY_OBJECT  DRSUAPI_SUPPORTED_EXTENSION_VERIFY_OBJECT
        Boolean
    drsuapi.SupportedExtensions.DRSUAPI_SUPPORTED_EXTENSION_XPRESS_COMPRESS  DRSUAPI_SUPPORTED_EXTENSION_XPRESS_COMPRESS
        Boolean
    drsuapi.opnum  Operation
        Unsigned 16-bit integer
    drsuapi.rc  Return code
        Unsigned 32-bit integer

DTN TCP Convergence Layer Protocol (tcpcl)

Data (data)

    data.data  Data
        Byte array
    data.len  Length
        Signed 32-bit integer
    data.text  Text
        String

Data Link SWitching (dlsw)

Data Stream Interface (dsi)

    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
    dsi.error_code  Error code
        Signed 32-bit integer
    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  Option
        Unsigned 8-bit integer
        Open session option type.
    dsi.replay_cache  Replay
        Unsigned 32-bit integer
        Replay cache size
    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
        Length string pair
        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.ext_sleep  Support extended sleep
        Boolean
        Server supports extended sleep
    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
    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
    dsi.server_flag.srv_sig  Support server signature
        Boolean
    dsi.server_flag.tcpip  Support TCP/IP
        Boolean
        Server support TCP/IP
    dsi.server_flag.utf8_name  Support UTF8 server name
        Boolean
        Server support UTF8 server name
    dsi.server_flag.uuids  Support UUIDs
        Boolean
        Server supports UUIDs
    dsi.server_icon  Icon bitmap
        Byte array
        Server icon bitmap
    dsi.server_name  Server name
        Length string pair
    dsi.server_signature  Server signature
        Byte array
    dsi.server_type  Server type
        Length string pair
    dsi.server_uams  UAM
        Length string pair
    dsi.server_vers  AFP version
        Length string pair
    dsi.utf8_server_name  UTF8 Server name
        String
    dsi.utf8_server_name_len  Length
        Unsigned 16-bit integer
        UTF8 server name length.

Datagram Congestion Control Protocol (dccp)

    dccp.ack  Acknowledgement Number
        Unsigned 64-bit integer
    dccp.ack_res  Reserved
        Unsigned 16-bit integer
    dccp.ccval  CCVal
        Unsigned 8-bit integer
    dccp.checksum  Checksum
        Unsigned 16-bit integer
    dccp.checksum_bad  Bad Checksum
        Boolean
    dccp.checksum_data  Data Checksum
        Unsigned 32-bit integer
    dccp.cscov  Checksum Coverage
        Unsigned 8-bit integer
    dccp.data1  Data 1
        Unsigned 8-bit integer
    dccp.data2  Data 2
        Unsigned 8-bit integer
    dccp.data3  Data 3
        Unsigned 8-bit integer
    dccp.data_offset  Data Offset
        Unsigned 8-bit integer
    dccp.dstport  Destination Port
        Unsigned 16-bit integer
    dccp.elapsed_time  Elapsed Time
        Unsigned 32-bit integer
    dccp.feature_number  Feature Number
        Unsigned 8-bit integer
    dccp.malformed  Malformed
        Boolean
    dccp.ndp_count  NDP Count
        Unsigned 64-bit integer
    dccp.option_type  Option Type
        Unsigned 8-bit integer
    dccp.options  Options
        No value
        DCCP Options fields
    dccp.port  Source or Destination Port
        Unsigned 16-bit integer
    dccp.res1  Reserved
        Unsigned 8-bit integer
    dccp.res2  Reserved
        Unsigned 8-bit integer
    dccp.reset_code  Reset Code
        Unsigned 8-bit integer
    dccp.seq  Sequence Number
        Unsigned 64-bit integer
    dccp.service_code  Service Code
        Unsigned 32-bit integer
    dccp.srcport  Source Port
        Unsigned 16-bit integer
    dccp.timestamp  Timestamp
        Unsigned 32-bit integer
    dccp.timestamp_echo  Timestamp Echo
        Unsigned 32-bit integer
    dccp.type  Type
        Unsigned 8-bit integer
    dccp.x  Extended Sequence Numbers
        Boolean

Datagram Delivery Protocol (ddp)

    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

Datagram Transport Layer Security (dtls)

    dtls.alert_message  Alert Message
        No value
        Alert message
    dtls.alert_message.desc  Description
        Unsigned 8-bit integer
        Alert message description
    dtls.alert_message.level  Level
        Unsigned 8-bit integer
        Alert message level
    dtls.app_data  Encrypted Application Data
        Byte array
        Payload is encrypted application data
    dtls.change_cipher_spec  Change Cipher Spec Message
        No value
        Signals a change in cipher specifications
    dtls.fragment  Message fragment
        Frame number
    dtls.fragment.error  Message defragmentation error
        Frame number
    dtls.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    dtls.fragment.overlap  Message fragment overlap
        Boolean
    dtls.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    dtls.fragment.too_long_fragment  Message fragment too long
        Boolean
    dtls.fragments  Message fragments
        No value
    dtls.handshake  Handshake Protocol
        No value
        Handshake protocol message
    dtls.handshake.cert_type  Certificate type
        Unsigned 8-bit integer
    dtls.handshake.cert_types  Certificate types
        No value
        List of certificate types
    dtls.handshake.cert_types_count  Certificate types count
        Unsigned 8-bit integer
        Count of certificate types
    dtls.handshake.certificate  Certificate
        Byte array
    dtls.handshake.certificate_length  Certificate Length
        Unsigned 24-bit integer
        Length of certificate
    dtls.handshake.certificates  Certificates
        No value
        List of certificates
    dtls.handshake.certificates_length  Certificates Length
        Unsigned 24-bit integer
        Length of certificates field
    dtls.handshake.cipher_suites_length  Cipher Suites Length
        Unsigned 16-bit integer
        Length of cipher suites field
    dtls.handshake.ciphersuite  Cipher Suite
        Unsigned 16-bit integer
        Cipher suite
    dtls.handshake.ciphersuites  Cipher Suites
        No value
        List of cipher suites supported by client
    dtls.handshake.comp_method  Compression Method
        Unsigned 8-bit integer
    dtls.handshake.comp_methods  Compression Methods
        No value
        List of compression methods supported by client
    dtls.handshake.comp_methods_length  Compression Methods Length
        Unsigned 8-bit integer
        Length of compression methods field
    dtls.handshake.cookie  Cookie
        Byte array
    dtls.handshake.cookie_length  Cookie Length
        Unsigned 8-bit integer
        Length of the cookie field
    dtls.handshake.dname  Distinguished Name
        Byte array
        Distinguished name of a CA that server trusts
    dtls.handshake.dname_len  Distinguished Name Length
        Unsigned 16-bit integer
        Length of distinguished name
    dtls.handshake.dnames  Distinguished Names
        No value
        List of CAs that server trusts
    dtls.handshake.dnames_len  Distinguished Names Length
        Unsigned 16-bit integer
        Length of list of CAs that server trusts
    dtls.handshake.extension.data  Data
        Byte array
        Hello Extension data
    dtls.handshake.extension.len  Length
        Unsigned 16-bit integer
        Length of a hello extension
    dtls.handshake.extension.type  Type
        Unsigned 16-bit integer
        Hello extension type
    dtls.handshake.extensions_length  Extensions Length
        Unsigned 16-bit integer
        Length of hello extensions
    dtls.handshake.fragment_length  Fragment Length
        Unsigned 24-bit integer
        Fragment length of handshake message
    dtls.handshake.fragment_offset  Fragment Offset
        Unsigned 24-bit integer
        Fragment offset of handshake message
    dtls.handshake.length  Length
        Unsigned 24-bit integer
        Length of handshake message
    dtls.handshake.md5_hash  MD5 Hash
        No value
        Hash of messages, master_secret, etc.
    dtls.handshake.message_seq  Message Sequence
        Unsigned 16-bit integer
        Message sequence of handshake message
    dtls.handshake.random  Random.bytes
        No value
        Random challenge used to authenticate server
    dtls.handshake.random_time  Random.gmt_unix_time
        Date/Time stamp
        Unix time field of random structure
    dtls.handshake.session_id  Session ID
        Byte array
        Identifies the DTLS session, allowing later resumption
    dtls.handshake.session_id_length  Session ID Length
        Unsigned 8-bit integer
        Length of session ID field
    dtls.handshake.sha_hash  SHA-1 Hash
        No value
        Hash of messages, master_secret, etc.
    dtls.handshake.type  Handshake Type
        Unsigned 8-bit integer
        Type of handshake message
    dtls.handshake.verify_data  Verify Data
        No value
        Opaque verification data
    dtls.handshake.version  Version
        Unsigned 16-bit integer
        Maximum version supported by client
    dtls.reassembled.in  Reassembled in
        Frame number
    dtls.reassembled.length  Reassembled DTLS length
        Unsigned 32-bit integer
    dtls.record  Record Layer
        No value
        Record layer
    dtls.record.content_type  Content Type
        Unsigned 8-bit integer
        Content type
    dtls.record.epoch  Epoch
        Unsigned 16-bit integer
    dtls.record.length  Length
        Unsigned 16-bit integer
        Length of DTLS record data
    dtls.record.sequence_number  Sequence Number
        Double-precision floating point
    dtls.record.version  Version
        Unsigned 16-bit integer
        Record layer version.

Daytime Protocol (daytime)

    daytime.string  Daytime
        String
        String containing time and date

Decompressed SigComp message as raw text (raw_sigcomp)

DeskTop PassThrough Protocol (dtpt)

    dtpt.blob.cbSize  cbSize
        Unsigned 32-bit integer
        cbSize field in BLOB
    dtpt.blob.data  Data
        Byte array
        Blob Data Block
    dtpt.blob.data_length  Length
        Unsigned 32-bit integer
        Length of the Blob Data Block
    dtpt.blob.pBlobData  pBlobData
        Unsigned 32-bit integer
        pBlobData field in BLOB
    dtpt.blob_size  Blob Size
        Unsigned 32-bit integer
        Size of the binary BLOB
    dtpt.buffer_size  Buffer Size
        Unsigned 32-bit integer
    dtpt.comment  Comment
        NULL terminated string
    dtpt.context  Context
        NULL terminated string
    dtpt.cs_addr.local  Local Address
        Unsigned 32-bit integer
    dtpt.cs_addr.local_length  Local Address Length
        Unsigned 32-bit integer
        Local Address Pointer
    dtpt.cs_addr.local_pointer  Local Address Pointer
        Unsigned 32-bit integer
    dtpt.cs_addr.remote  Remote Address
        Unsigned 32-bit integer
    dtpt.cs_addr.remote_length  Remote Address Length
        Unsigned 32-bit integer
        Remote Address Pointer
    dtpt.cs_addr.remote_pointer  Remote Address Pointer
        Unsigned 32-bit integer
    dtpt.cs_addrs.length1  Length of CS Addresses Part 1
        Unsigned 32-bit integer
    dtpt.cs_addrs.number  Number of CS Addresses
        Unsigned 32-bit integer
    dtpt.cs_addrs.protocol  Protocol
        Unsigned 32-bit integer
    dtpt.cs_addrs.socket_type  Socket Type
        Unsigned 32-bit integer
    dtpt.data_size  Data Size
        Unsigned 32-bit integer
    dtpt.error  Last Error
        Unsigned 32-bit integer
    dtpt.flags  ControlFlags
        Unsigned 32-bit integer
        ControlFlags as documented for WSALookupServiceBegin
    dtpt.flags.containers  CONTAINERS
        Boolean
    dtpt.flags.deep  DEEP
        Boolean
    dtpt.flags.flushcache  FLUSHCACHE
        Boolean
    dtpt.flags.flushprevious  FLUSHPREVIOUS
        Boolean
    dtpt.flags.nearest  NEAREST
        Boolean
    dtpt.flags.nocontainers  NOCONTAINERS
        Boolean
    dtpt.flags.res_service  RES_SERVICE
        Boolean
    dtpt.flags.return_addr  RETURN_ADDR
        Boolean
    dtpt.flags.return_aliases  RETURN_ALIASES
        Boolean
    dtpt.flags.return_blob  RETURN_BLOB
        Boolean
    dtpt.flags.return_comment  RETURN_COMMENT
        Boolean
    dtpt.flags.return_name  RETURN_NAME
        Boolean
    dtpt.flags.return_query_string  RETURN_QUERY_STRING
        Boolean
    dtpt.flags.return_type  RETURN_TYPE
        Boolean
    dtpt.flags.return_version  RETURN_VERSION
        Boolean
    dtpt.guid.data  Data
        Globally Unique Identifier
        GUID Data
    dtpt.guid.length  Length
        Unsigned 32-bit integer
        GUID Length
    dtpt.handle  Handle
        Unsigned 64-bit integer
        Lookup handle
    dtpt.lpszComment  lpszComment
        Unsigned 32-bit integer
        lpszComment field in WSAQUERYSET
    dtpt.message_type  Message Type
        Unsigned 8-bit integer
        Packet Message Type
    dtpt.ns_provider_id  NS Provider ID
        Globally Unique Identifier
    dtpt.payload_size  Payload Size
        Unsigned 32-bit integer
        Payload Size of the following packet containing a serialized WSAQUERYSET
    dtpt.protocol.family  Family
        Unsigned 32-bit integer
        Protocol Family
    dtpt.protocol.protocol  Protocol
        Unsigned 32-bit integer
        Protocol Protocol
    dtpt.protocols.length  Length of Protocols
        Unsigned 32-bit integer
    dtpt.protocols.number  Number of Protocols
        Unsigned 32-bit integer
    dtpt.query_string  Query String
        NULL terminated string
    dtpt.queryset.dwNameSpace  dwNameSpace
        Unsigned 32-bit integer
        dwNameSpace field in WSAQUERYSE
    dtpt.queryset.dwNumberOfCsAddrs  dwNumberOfCsAddrs
        Unsigned 32-bit integer
        dwNumberOfCsAddrs field in WSAQUERYSET
    dtpt.queryset.dwNumberOfProtocols  dwNumberOfProtocols
        Unsigned 32-bit integer
        dwNumberOfProtocols field in WSAQUERYSET
    dtpt.queryset.dwOutputFlags  dwOutputFlags
        Unsigned 32-bit integer
        dwOutputFlags field in WSAQUERYSET
    dtpt.queryset.dwSize  dwSize
        Unsigned 32-bit integer
        dwSize field in WSAQUERYSET
    dtpt.queryset.lpBlob  lpBlob
        Unsigned 32-bit integer
        lpBlob field in WSAQUERYSET
    dtpt.queryset.lpNSProviderId  lpNSProviderId
        Unsigned 32-bit integer
        lpNSProviderId field in WSAQUERYSET
    dtpt.queryset.lpServiceClassId  lpServiceClassId
        Unsigned 32-bit integer
        lpServiceClassId in the WSAQUERYSET
    dtpt.queryset.lpVersion  lpVersion
        Unsigned 32-bit integer
        lpVersion in WSAQUERYSET
    dtpt.queryset.lpafpProtocols  lpafpProtocols
        Unsigned 32-bit integer
        lpafpProtocols field in WSAQUERYSET
    dtpt.queryset.lpcsaBuffer  lpcsaBuffer
        Unsigned 32-bit integer
        lpcsaBuffer field in WSAQUERYSET
    dtpt.queryset.lpszContext  lpszContext
        Unsigned 32-bit integer
        lpszContext field in WSAQUERYSET
    dtpt.queryset.lpszQueryString  lpszQueryString
        Unsigned 32-bit integer
        lpszQueryString field in WSAQUERYSET
    dtpt.queryset.lpszServiceInstanceName  lpszServiceInstanceName
        Unsigned 32-bit integer
        lpszServiceInstanceName field in WSAQUERYSET
    dtpt.queryset_size  QuerySet Size
        Unsigned 32-bit integer
        Size of the binary WSAQUERYSET
    dtpt.service_class_id  Service Class ID
        Globally Unique Identifier
    dtpt.service_instance_name  Service Instance Name
        NULL terminated string
    dtpt.sockaddr.address  Address
        IPv4 address
        Socket Address Address
    dtpt.sockaddr.family  Family
        Unsigned 16-bit integer
        Socket Address Family
    dtpt.sockaddr.length  Length
        Unsigned 16-bit integer
        Socket Address Length
    dtpt.sockaddr.port  Port
        Unsigned 16-bit integer
        Socket Address Port
    dtpt.version  Version
        Unsigned 8-bit integer
        Protocol Version
    dtpt.wstring.data  Data
        String
        String Data
    dtpt.wstring.length  Length
        Unsigned 32-bit integer
        String Length

Device Level Ring (dlr)

    enip.dlr.anreserved  Reserved
        Byte array
        Announce Reserved
    enip.dlr.beaconinterval  Beacon Interval
        Unsigned 32-bit integer
    enip.dlr.beaconreserved  Reserved
        Byte array
        Beacon Reserved
    enip.dlr.beacontimeout  Beacon Timeout
        Unsigned 32-bit integer
    enip.dlr.frametype  Frametype
        Unsigned 8-bit integer
        Frame Type
    enip.dlr.lfreserved  Reserved
        Byte array
        Locate_Fault Reserved
    enip.dlr.lnknbrreserved  Reserved
        Byte array
        Link_Status/Neighbor_Status Reserved
    enip.dlr.lnknbrstatus  Status
        Unsigned 8-bit integer
        Link_Status/Neighbor_Status Status
    enip.dlr.nreqreserved  Reserved
        Byte array
        Neighbor_Check_Request Reserved
    enip.dlr.nresreserved  Reserved
        Byte array
        Neighbor_Check_Response Reserved
    enip.dlr.nressourceport  Sourceport
        Unsigned 8-bit integer
        Neighbor_Check_Response Source Port
    enip.dlr.protversion  Version
        Unsigned 8-bit integer
        Ring Protocol Version
    enip.dlr.ringsubtype  Subtype
        Unsigned 8-bit integer
        Ring Sub-Type
    enip.dlr.seqid  Sequence Id
        Unsigned 32-bit integer
    enip.dlr.soip  IP Address
        IPv4 address
        Sign_On Node IP Address
    enip.dlr.somac  MAC Address
        6-byte Hardware (MAC) Address
        Sign_On Node MAC Address
    enip.dlr.sonumnodes  Num nodes
        Unsigned 16-bit integer
        Number of Nodes in List
    enip.dlr.soreserved  Reserved
        Byte array
        Sign_On Reserved
    enip.dlr.sourceip  Source IP
        IPv4 address
        Source IP Address
    enip.dlr.sourceport  Sourceport
        Unsigned 8-bit integer
        Source Port
    enip.dlr.state  Ring State
        Unsigned 8-bit integer
    enip.dlr.supervisorprecedence  Supervisor Precedence
        Unsigned 8-bit integer

Diameter 3GPP (diameter3gpp)

    diameter.3gpp.address_digits  Address digits
        String
    diameter.3gpp.dsa_flags  DSA Flags
        Unsigned 32-bit integer
    diameter.3gpp.dsa_flags_bit0  Network Node area restricted
        Boolean
    diameter.3gpp.dsr_flags  DSR Flags
        Unsigned 32-bit integer
    diameter.3gpp.dsr_flags_bit0  Regional Subscription Withdrawal
        Boolean
    diameter.3gpp.dsr_flags_bit1  Complete APN Configuration Profile Withdrawal
        Boolean
    diameter.3gpp.dsr_flags_bit10  APN-OI-Replacement
        Boolean
    diameter.3gpp.dsr_flags_bit11  GMLC List Withdrawal
        Boolean
    diameter.3gpp.dsr_flags_bit12  LCS Withdrawal
        Boolean
    diameter.3gpp.dsr_flags_bit13  SMS Withdrawal
        Boolean
    diameter.3gpp.dsr_flags_bit2  Subscribed Charging Characteristics Withdrawal
        Boolean
    diameter.3gpp.dsr_flags_bit3  PDN subscription contexts Withdrawal
        Boolean
    diameter.3gpp.dsr_flags_bit4  STN-SR
        Boolean
    diameter.3gpp.dsr_flags_bit5  Complete PDP context list Withdrawal
        Boolean
    diameter.3gpp.dsr_flags_bit6  PDP contexts Withdrawal
        Boolean
    diameter.3gpp.dsr_flags_bit7  Roaming Restricted due to unsupported feature
        Boolean
    diameter.3gpp.dsr_flags_bit8  Trace Data Withdrawal
        Boolean
    diameter.3gpp.dsr_flags_bit9  CSG Deleted
        Boolean
    diameter.3gpp.ida_flags  IDA Flags
        Unsigned 32-bit integer
    diameter.3gpp.ida_flags_bit0  Network Node area restricted
        Boolean
    diameter.3gpp.idr_flags  IDR Flags
        Unsigned 32-bit integer
    diameter.3gpp.idr_flags_bit0  UE Reachability Request
        Boolean
    diameter.3gpp.idr_flags_bit1  T-ADS Data Request
        Boolean
    diameter.3gpp.idr_flags_bit2  EPS User State Request
        Boolean
    diameter.3gpp.idr_flags_bit3  EPS Location Information Request
        Boolean
    diameter.3gpp.idr_flags_bit4  Current Location Request
        Boolean
    diameter.3gpp.ipaddr  IPv4 Address
        IPv4 address
    diameter.3gpp.mbms_required_qos_prio  Allocation/Retention Priority
        Unsigned 8-bit integer
    diameter.3gpp.mbms_service_id  MBMS Service ID
        Unsigned 24-bit integer
    diameter.3gpp.msisdn  MSISDN
        Byte array
    diameter.3gpp.nor_flags  NOR Flags
        Unsigned 32-bit integer
    diameter.3gpp.nor_flags_bit0  Single-Registration-Indication
        Boolean
    diameter.3gpp.nor_flags_bit1  SGSN area restricted
        Boolean
    diameter.3gpp.nor_flags_bit2  Ready for SM
        Boolean
    diameter.3gpp.nor_flags_bit3  UE Reachable
        Boolean
    diameter.3gpp.nor_flags_bit4  Delete all APN and PDN GW identity pairs
        Boolean
    diameter.3gpp.pua_flags  PUA Flags
        Unsigned 32-bit integer
    diameter.3gpp.pua_flags_bit0  Freeze M-TMSI
        Boolean
    diameter.3gpp.pua_flags_bit1  Freeze P-TMSI
        Boolean
    diameter.3gpp.spare_bits  Spare bit(s)
        Unsigned 32-bit integer
    diameter.3gpp.tmgi  TMGI
        Byte array
    diameter.3gpp.ula_flags  ULA Flags
        Unsigned 32-bit integer
    diameter.3gpp.ula_flags_bit0  Separation Indication
        Boolean
    diameter.3gpp.ulr_flags  ULR Flags
        Unsigned 32-bit integer
    diameter.3gpp.ulr_flags_bit0  Single-Registration-Indication
        Boolean
    diameter.3gpp.ulr_flags_bit1  S6a/S6d-Indicator
        Boolean
    diameter.3gpp.ulr_flags_bit2  Skip-Subscriber-Data
        Boolean
    diameter.3gpp.ulr_flags_bit3  GPRS-Subscription-Data-Indicator
        Boolean
    diameter.3gpp.ulr_flags_bit4  Node-Type-Indicator
        Boolean
    diameter.3gpp.ulr_flags_bit5  Initial-Attach-Indicator
        Boolean
    diameter.3gpp.ulr_flags_bit6  PS-LCS-Not-Supported-By-UE
        Boolean
    diameter.3gpp.user_data  User data
        String

Diameter Protocol (diameter)

    diameter.3GPP-Allocate-IP-Type  3GPP-Allocate-IP-Type
        Byte array
        vendor=10415 code=27
    diameter.3GPP-CAMEL-Charging-Info  3GPP-CAMEL-Charging-Info
        Byte array
        vendor=10415 code=24
    diameter.3GPP-CG-Address  3GPP-CG-Address
        Byte array
        vendor=10415 code=4
    diameter.3GPP-CG-Address.addr_family  3GPP-CG-Address Address Family
        Unsigned 16-bit integer
    diameter.3GPP-CG-IPv6-Address  3GPP-CG-IPv6-Address
        Byte array
        vendor=10415 code=14
    diameter.3GPP-Charging-Characteristics  3GPP-Charging-Characteristics
        String
        vendor=10415 code=13
    diameter.3GPP-Charging-Id  3GPP-Charging-Id
        Signed 32-bit integer
        vendor=10415 code=2
    diameter.3GPP-GGSN-Address  3GPP-GGSN-Address
        Byte array
        vendor=10415 code=7
    diameter.3GPP-GGSN-Address.addr_family  3GPP-GGSN-Address Address Family
        Unsigned 16-bit integer
    diameter.3GPP-GGSN-IPv6-Address  3GPP-GGSN-IPv6-Address
        Byte array
        vendor=10415 code=16
    diameter.3GPP-GGSN-MCC-MNC  3GPP-GGSN-MCC-MNC
        String
        vendor=10415 code=9
    diameter.3GPP-GPRS-Negotiated-QoS-profile  3GPP-GPRS-Negotiated-QoS-profile
        String
        vendor=10415 code=5
    diameter.3GPP-IMEISV  3GPP-IMEISV
        Byte array
        vendor=10415 code=20
    diameter.3GPP-IMSI  3GPP-IMSI
        String
        vendor=10415 code=1
    diameter.3GPP-IMSI-MCC-MNC  3GPP-IMSI-MCC-MNC
        String
        vendor=10415 code=8
    diameter.3GPP-IPv6-DNS-Server  3GPP-IPv6-DNS-Server
        Byte array
        vendor=10415 code=17
    diameter.3GPP-MS-TimeZone  3GPP-MS-TimeZone
        Byte array
        vendor=10415 code=23
    diameter.3GPP-NSAPI  3GPP-NSAPI
        String
        vendor=10415 code=10
    diameter.3GPP-Negotiated-DSCP  3GPP-Negotiated-DSCP
        Byte array
        vendor=10415 code=26
    diameter.3GPP-PDP-Type  3GPP-PDP-Type
        Signed 32-bit integer
        vendor=10415 code=3
    diameter.3GPP-Packet-Filter  3GPP-Packet-Filter
        Byte array
        vendor=10415 code=25
    diameter.3GPP-RAT-Type  3GPP-RAT-Type
        Byte array
        vendor=10415 code=21
    diameter.3GPP-SGSN-Address  3GPP-SGSN-Address
        Byte array
        vendor=10415 code=6
    diameter.3GPP-SGSN-Address.addr_family  3GPP-SGSN-Address Address Family
        Unsigned 16-bit integer
    diameter.3GPP-SGSN-IPv6-Address  3GPP-SGSN-IPv6-Address
        Byte array
        vendor=10415 code=15
    diameter.3GPP-SGSN-MCC-MNC  3GPP-SGSN-MCC-MNC
        String
        vendor=10415 code=18
    diameter.3GPP-Selection-Mode  3GPP-Selection-Mode
        String
        vendor=10415 code=12
    diameter.3GPP-Session-Stop-Indicator  3GPP-Session-Stop-Indicator
        String
        vendor=10415 code=11
    diameter.3GPP-Teardown-Indicator  3GPP-Teardown-Indicator
        Byte array
        vendor=10415 code=19
    diameter.3GPP-User-Location-Info  3GPP-User-Location-Info
        Byte array
        vendor=10415 code=22
    diameter.AF-Application-Identifier  AF-Application-Identifier
        Byte array
        vendor=10415 code=504
    diameter.AF-Charging-Identifier  AF-Charging-Identifier
        Byte array
        vendor=10415 code=505
    diameter.AF-Correlation-Information  AF-Correlation-Information
        Byte array
        vendor=10415 code=1276
    diameter.AMBR  AMBR
        Byte array
        vendor=10415 code=1435
    diameter.AN-GW-Address  AN-GW-Address
        Byte array
        vendor=10415 code=1050
    diameter.AN-GW-Address.addr_family  AN-GW-Address Address Family
        Unsigned 16-bit integer
    diameter.AN-Trusted  AN-Trusted
        Signed 32-bit integer
        vendor=10415 code=1503
    diameter.ANID  ANID
        String
        vendor=10415 code=1504
    diameter.APN-Aggregate-Max-Bitrate-DL  APN-Aggregate-Max-Bitrate-DL
        Unsigned 32-bit integer
        vendor=10415 code=1040
    diameter.APN-Aggregate-Max-Bitrate-UL  APN-Aggregate-Max-Bitrate-UL
        Unsigned 32-bit integer
        vendor=10415 code=1041
    diameter.APN-Configuration  APN-Configuration
        Byte array
        vendor=10415 code=1430
    diameter.APN-Configuration-Profile  APN-Configuration-Profile
        Byte array
        vendor=10415 code=1429
    diameter.APN-OI-Replacement  APN-OI-Replacement
        String
        vendor=10415 code=1427
    diameter.ARAP-Challenge-Response  ARAP-Challenge-Response
        Byte array
        code=84
    diameter.ARAP-Features  ARAP-Features
        Byte array
        code=71
    diameter.ARAP-Password  ARAP-Password
        Byte array
        code=70
    diameter.ARAP-Security  ARAP-Security
        Unsigned 32-bit integer
        code=73
    diameter.ARAP-Security-Data  ARAP-Security-Data
        Byte array
        code=74
    diameter.ARAP-Zone-Access  ARAP-Zone-Access
        Signed 32-bit integer
        code=72
    diameter.AUTN  AUTN
        Byte array
        vendor=10415 code=1449
    diameter.Abort-Cause  Abort-Cause
        Signed 32-bit integer
        vendor=10415 code=500
    diameter.Acc-Service-Type  Acc-Service-Type
        Signed 32-bit integer
        vendor=193 code=261
    diameter.Acceptable-Service-Info  Acceptable-Service-Info
        Byte array
        vendor=10415 code=526
    diameter.Access-Network-Charging-Address  Access-Network-Charging-Address
        Byte array
        vendor=10415 code=501
    diameter.Access-Network-Charging-Address.addr_family  Access-Network-Charging-Address Address Family
        Unsigned 16-bit integer
    diameter.Access-Network-Charging-Identifier  Access-Network-Charging-Identifier
        Byte array
        vendor=10415 code=502
    diameter.Access-Network-Charging-Identifier-Gx  Access-Network-Charging-Identifier-Gx
        Byte array
        vendor=10415 code=1022
    diameter.Access-Network-Charging-Identifier-Value  Access-Network-Charging-Identifier-Value
        Byte array
        vendor=10415 code=503
    diameter.Access-Network-Information  Access-Network-Information
        Byte array
        vendor=10415 code=1263
    diameter.Access-Network-Type  Access-Network-Type
        Byte array
        vendor=13019 code=306
    diameter.Access-Restriction-Data  Access-Restriction-Data
        Unsigned 32-bit integer
        vendor=10415 code=1426
    diameter.Accounting-Auth-Method  Accounting-Auth-Method
        Signed 32-bit integer
        code=406
    diameter.Accounting-EAP-Auth-Method  Accounting-EAP-Auth-Method
        Unsigned 64-bit integer
        code=465
    diameter.Accounting-Input-Octets  Accounting-Input-Octets
        Unsigned 64-bit integer
        code=363
    diameter.Accounting-Input-Packets  Accounting-Input-Packets
        Unsigned 64-bit integer
        code=365
    diameter.Accounting-Multi-Session-Id  Accounting-Multi-Session-Id
        Byte array
        code=50
    diameter.Accounting-Output-Octets  Accounting-Output-Octets
        Unsigned 64-bit integer
        code=364
    diameter.Accounting-Output-Packets  Accounting-Output-Packets
        Unsigned 64-bit integer
        code=366
    diameter.Accounting-Realtime-Required  Accounting-Realtime-Required
        Unsigned 32-bit integer
        code=483
    diameter.Accounting-Record-Number  Accounting-Record-Number
        Unsigned 32-bit integer
        code=485
    diameter.Accounting-Record-Type  Accounting-Record-Type
        Signed 32-bit integer
        code=480
    diameter.Accounting-Sub-Session-Id  Accounting-Sub-Session-Id
        Unsigned 64-bit integer
        code=287
    diameter.Acct-Application-Id  Acct-Application-Id
        Signed 32-bit integer
        code=259
    diameter.Acct-Authentic  Acct-Authentic
        Signed 32-bit integer
        code=45
    diameter.Acct-Delay-Time  Acct-Delay-Time
        Unsigned 32-bit integer
        code=41
    diameter.Acct-Input-Gigawords  Acct-Input-Gigawords
        Signed 32-bit integer
        code=52
    diameter.Acct-Input-Octets  Acct-Input-Octets
        Unsigned 32-bit integer
        code=42
    diameter.Acct-Input-Packets  Acct-Input-Packets
        Signed 32-bit integer
        code=47
    diameter.Acct-Interim-Interval  Acct-Interim-Interval
        Unsigned 32-bit integer
        code=85
    diameter.Acct-Link-Count  Acct-Link-Count
        Unsigned 32-bit integer
        code=51
    diameter.Acct-Output-Gigawords  Acct-Output-Gigawords
        Signed 32-bit integer
        code=53
    diameter.Acct-Output-Octets  Acct-Output-Octets
        Unsigned 32-bit integer
        code=43
    diameter.Acct-Output-Packets  Acct-Output-Packets
        Signed 32-bit integer
        code=48
    diameter.Acct-Session-Id  Acct-Session-Id
        Byte array
        code=44
    diameter.Acct-Session-Time  Acct-Session-Time
        Unsigned 32-bit integer
        code=46
    diameter.Acct-Status-Type  Acct-Status-Type
        Unsigned 32-bit integer
        code=40
    diameter.Acct-Terminate-Cause  Acct-Terminate-Cause
        Unsigned 32-bit integer
        code=49
    diameter.Acct-Tunnel-Client-Endpoint  Acct-Tunnel-Client-Endpoint
        String
        code=66
    diameter.Acct-Tunnel-Connection-ID  Acct-Tunnel-Connection-ID
        Byte array
        code=68
    diameter.Acct-Tunnel-Packets-Lost  Acct-Tunnel-Packets-Lost
        Unsigned 32-bit integer
        code=86
    diameter.Accumulated-Cost  Accumulated-Cost
        Byte array
        vendor=10415 code=2052
    diameter.Adaptations  Adaptations
        Signed 32-bit integer
        vendor=10415 code=1217
    diameter.Additional-Content-Information  Additional-Content-Information
        Byte array
        vendor=10415 code=1207
    diameter.Additional-MBMS-Trace-Info  Additional-MBMS-Trace-Info
        Byte array
        vendor=10415 code=910
    diameter.Additional-Type-Information  Additional-Type-Information
        String
        vendor=10415 code=1205
    diameter.Address-Data  Address-Data
        String
        vendor=10415 code=897
    diameter.Address-Domain  Address-Domain
        Byte array
        vendor=10415 code=898
    diameter.Address-Realm  Address-Realm
        Byte array
        vendor=13019 code=301
    diameter.Address-Type  Address-Type
        Signed 32-bit integer
        vendor=10415 code=899
    diameter.Addressee-Type  Addressee-Type
        Signed 32-bit integer
        vendor=10415 code=1208
    diameter.Aggregation-Network-Type  Aggregation-Network-Type
        Signed 32-bit integer
        vendor=13019 code=307
    diameter.Alert-Reason  Alert-Reason
        Signed 32-bit integer
        vendor=10415 code=1434
    diameter.All-APN-Configurations-Included-Indicator  All-APN-Configurations-Included-Indicator
        Signed 32-bit integer
        vendor=10415 code=1428
    diameter.Allocation-Retention-Priority  Allocation-Retention-Priority
        Byte array
        vendor=10415 code=1034
    diameter.Alternate-Charged-Party-Address  Alternate-Charged-Party-Address
        String
        vendor=10415 code=1280
    diameter.Alternate-Peer  Alternate-Peer
        String
        code=275
    diameter.Alternative-APN  Alternative-APN
        String
        vendor=10415 code=905
    diameter.AoC-Cost-Information  AoC-Cost-Information
        Byte array
        vendor=10415 code=2053
    diameter.AoC-Information  AoC-Information
        Byte array
        vendor=10415 code=2054
    diameter.AoC-Request-Type  AoC-Request-Type
        Signed 32-bit integer
        vendor=10415 code=2055
    diameter.Applic-ID  Applic-ID
        String
        vendor=10415 code=1218
    diameter.Application-Class-ID  Application-Class-ID
        String
        vendor=13019 code=312
    diameter.Application-Server  Application-Server
        String
        vendor=10415 code=836
    diameter.Application-Server-ID  Application-Server-ID
        Unsigned 32-bit integer
        vendor=10415 code=2101
    diameter.Application-Server-Information  Application-Server-Information
        Byte array
        vendor=10415 code=850
    diameter.Application-Service-Type  Application-Service-Type
        Signed 32-bit integer
        vendor=10415 code=2102
    diameter.Application-Session-ID  Application-Session-ID
        Unsigned 32-bit integer
        vendor=10415 code=2103
    diameter.Application-provided-Called-Party-Address  Application-provided-Called-Party-Address
        String
        vendor=10415 code=837
    diameter.Associated-Identities  Associated-Identities
        Byte array
        vendor=10415 code=632
    diameter.Associated-Party-Address  Associated-Party-Address
        String
        vendor=10415 code=2035
    diameter.Associated-Registered-Identities  Associated-Registered-Identities
        Byte array
        vendor=10415 code=647
    diameter.Auth-Application-Id  Auth-Application-Id
        Signed 32-bit integer
        code=258
    diameter.Auth-Grace-Period  Auth-Grace-Period
        Unsigned 32-bit integer
        code=276
    diameter.Auth-Request-Type  Auth-Request-Type
        Unsigned 32-bit integer
        code=274
    diameter.Auth-Session-State  Auth-Session-State
        Unsigned 32-bit integer
        code=277
    diameter.Authentication-Info  Authentication-Info
        Byte array
        vendor=10415 code=1413
    diameter.Authorised-QoS  Authorised-QoS
        String
        vendor=10415 code=849
    diameter.Authorization-Lifetime  Authorization-Lifetime
        Signed 32-bit integer
        code=291
    diameter.Authorization-Token  Authorization-Token
        Byte array
        vendor=10415 code=506
    diameter.Aux-Applic-Info  Aux-Applic-Info
        String
        vendor=10415 code=1219
    diameter.Bandwidth  Bandwidth
        Single-precision floating point
        code=502
    diameter.Base-Time-Interval  Base-Time-Interval
        Unsigned 32-bit integer
        vendor=10415 code=1265
    diameter.Basic-Location-Policy-Rules  Basic-Location-Policy-Rules
        Byte array
        code=129
    diameter.Bearer-Control-Mode  Bearer-Control-Mode
        Signed 32-bit integer
        vendor=10415 code=1023
    diameter.Bearer-Identifier  Bearer-Identifier
        Byte array
        vendor=10415 code=1020
    diameter.Bearer-Operation  Bearer-Operation
        Signed 32-bit integer
        vendor=10415 code=1021
    diameter.Bearer-Service  Bearer-Service
        Byte array
        vendor=10415 code=854
    diameter.Bearer-Usage  Bearer-Usage
        Signed 32-bit integer
        vendor=10415 code=1000
    diameter.Billing-Information  Billing-Information
        String
        vendor=10415 code=1115
    diameter.Binding-Input-List  Binding-Input-List
        Byte array
        vendor=13019 code=451
    diameter.Binding-Output-List  Binding-Output-List
        Byte array
        vendor=13019 code=452
    diameter.Binding-information  Binding-information
        Byte array
        vendor=13019 code=450
    diameter.BootstrapInfoCreationTime  BootstrapInfoCreationTime
        Unsigned 32-bit integer
        vendor=10415 code=408
    diameter.Bucket-Depth  Bucket-Depth
        Single-precision floating point
        code=497
    diameter.CC-Correlation-Id  CC-Correlation-Id
        Byte array
        code=411
    diameter.CC-Input-Octets  CC-Input-Octets
        Unsigned 64-bit integer
        code=412
    diameter.CC-Money  CC-Money
        Byte array
        code=413
    diameter.CC-Output-Octets  CC-Output-Octets
        Unsigned 64-bit integer
        code=414
    diameter.CC-Request-Number  CC-Request-Number
        Unsigned 32-bit integer
        code=415
    diameter.CC-Request-Type  CC-Request-Type
        Unsigned 32-bit integer
        code=416
    diameter.CC-Service-Specific-Units  CC-Service-Specific-Units
        Unsigned 64-bit integer
        code=417
    diameter.CC-Session-Failover  CC-Session-Failover
        Signed 32-bit integer
        code=418
    diameter.CC-Sub-Session-Id  CC-Sub-Session-Id
        Unsigned 64-bit integer
        code=419
    diameter.CC-Time  CC-Time
        Unsigned 32-bit integer
        code=420
    diameter.CC-Total-Octets  CC-Total-Octets
        Unsigned 64-bit integer
        code=421
    diameter.CC-Unit-Type  CC-Unit-Type
        Signed 32-bit integer
        code=454
    diameter.CHAP-Algorithm  CHAP-Algorithm
        Signed 32-bit integer
        code=403
    diameter.CHAP-Auth  CHAP-Auth
        Byte array
        code=402
    diameter.CHAP-Challenge  CHAP-Challenge
        Byte array
        code=60
    diameter.CHAP-Ident  CHAP-Ident
        Byte array
        code=404
    diameter.CHAP-Password  CHAP-Password
        Byte array
        code=3
    diameter.CHAP-Response  CHAP-Response
        Byte array
        code=405
    diameter.CN-IP-Multicast-Distribution  CN-IP-Multicast-Distribution
        Signed 32-bit integer
        vendor=10415 code=921
    diameter.CSG-Id  CSG-Id
        Unsigned 32-bit integer
        vendor=10415 code=1437
    diameter.CSG-Information-Reporting  CSG-Information-Reporting
        Signed 32-bit integer
        vendor=10415 code=1071
    diameter.CSG-Subscription-Data  CSG-Subscription-Data
        Byte array
        vendor=10415 code=1436
    diameter.CUG-Information  CUG-Information
        Byte array
        vendor=10415 code=2304
    diameter.CUI  CUI
        String
        code=89
    diameter.Call-Barring-Infor-List  Call-Barring-Infor-List
        Byte array
        vendor=10415 code=1488
    diameter.Call-ID-SIP-Header  Call-ID-SIP-Header
        Byte array
        vendor=10415 code=643
    diameter.Callback-Id  Callback-Id
        String
        code=20
    diameter.Callback-Number  Callback-Number
        String
        code=19
    diameter.Called-Asserted-Identity  Called-Asserted-Identity
        String
        vendor=10415 code=1250
    diameter.Called-Party-Address  Called-Party-Address
        String
        vendor=10415 code=832
    diameter.Called-Station-Id  Called-Station-Id
        String
        code=30
    diameter.Calling-Party-Address  Calling-Party-Address
        String
        vendor=10415 code=831
    diameter.Calling-Station-Id  Calling-Station-Id
        String
        code=31
    diameter.Cancellation-Type  Cancellation-Type
        Signed 32-bit integer
        vendor=10415 code=1420
    diameter.Carrier-Select-Routing-Information  Carrier-Select-Routing-Information
        String
        vendor=10415 code=2023
    diameter.Cause  Cause
        Byte array
        vendor=10415 code=860
    diameter.Cause-Code  Cause-Code
        Signed 32-bit integer
        vendor=10415 code=861
    diameter.Cell-Global-Identity  Cell-Global-Identity
        Byte array
        vendor=10415 code=1604
    diameter.Change-Condition  Change-Condition
        Signed 32-bit integer
        vendor=10415 code=2037
    diameter.Change-Time  Change-Time
        Unsigned 32-bit integer
        vendor=10415 code=2038
    diameter.Charging-Characteristic-Selection-Mode  Charging-Characteristic-Selection-Mode
        Signed 32-bit integer
        vendor=10415 code=2066
    diameter.Charging-Information  Charging-Information
        Byte array
        vendor=10415 code=618
    diameter.Charging-Rule-Base-Name  Charging-Rule-Base-Name
        String
        vendor=10415 code=1004
    diameter.Charging-Rule-Definition  Charging-Rule-Definition
        Byte array
        vendor=10415 code=1003
    diameter.Charging-Rule-Install  Charging-Rule-Install
        Byte array
        vendor=10415 code=1001
    diameter.Charging-Rule-Name  Charging-Rule-Name
        Byte array
        vendor=10415 code=1005
    diameter.Charging-Rule-Remove  Charging-Rule-Remove
        Byte array
        vendor=10415 code=1002
    diameter.Charging-Rule-Report  Charging-Rule-Report
        Byte array
        vendor=10415 code=1018
    diameter.Check-Balance-Result  Check-Balance-Result
        Signed 32-bit integer
        code=422
    diameter.Civic-Location  Civic-Location
        Byte array
        vendor=13019 code=355
    diameter.Class  Class
        Byte array
        code=25
    diameter.Class-Identifier  Class-Identifier
        Signed 32-bit integer
        vendor=10415 code=1214
    diameter.Client-Address  Client-Address
        Byte array
        vendor=10415 code=2018
    diameter.Client-Address.addr_family  Client-Address Address Family
        Unsigned 16-bit integer
    diameter.Client-Identity  Client-Identity
        Byte array
        vendor=10415 code=1480
    diameter.CoA-IP-Address  CoA-IP-Address
        Byte array
        vendor=10415 code=1035
    diameter.CoA-IP-Address.addr_family  CoA-IP-Address Address Family
        Unsigned 16-bit integer
    diameter.CoA-Information  CoA-Information
        Byte array
        vendor=10415 code=1039
    diameter.Codec-DataAVP  Codec-Data AVP
        String
        vendor=10415 code=524
    diameter.Complete-Data-List-Included-Indicator  Complete-Data-List-Included-Indicator
        Signed 32-bit integer
        vendor=10415 code=1468
    diameter.Confidentiality-Key  Confidentiality-Key
        Byte array
        vendor=10415 code=625
    diameter.Configuration-Token  Configuration-Token
        Byte array
        code=78
    diameter.Connect-Info  Connect-Info
        String
        code=77
    diameter.Contact  Contact
        Byte array
        vendor=10415 code=641
    diameter.Content-Class  Content-Class
        Signed 32-bit integer
        vendor=10415 code=1220
    diameter.Content-Disposition  Content-Disposition
        String
        vendor=10415 code=828
    diameter.Content-Length  Content-Length
        Unsigned 32-bit integer
        vendor=10415 code=827
    diameter.Content-Size  Content-Size
        Unsigned 32-bit integer
        vendor=10415 code=1206
    diameter.Content-Type  Content-Type
        String
        vendor=10415 code=826
    diameter.Context-Identifier  Context-Identifier
        Unsigned 32-bit integer
        vendor=10415 code=1423
    diameter.Cost-Information  Cost-Information
        Byte array
        code=423
    diameter.Cost-Unit  Cost-Unit
        String
        code=424
    diameter.Credit-Control  Credit-Control
        Signed 32-bit integer
        code=426
    diameter.Credit-Control-Failure-Handling  Credit-Control-Failure-Handling
        Signed 32-bit integer
        code=427
    diameter.Currency-Code  Currency-Code
        Unsigned 32-bit integer
        code=425
    diameter.Current-Location  Current-Location
        Unsigned 32-bit integer
        vendor=10415 code=707
    diameter.Current-Tariff  Current-Tariff
        Byte array
        vendor=10415 code=2056
    diameter.DRM-Content  DRM-Content
        Signed 32-bit integer
        vendor=10415 code=1221
    diameter.DSA-Flags  DSA-Flags
        Unsigned 32-bit integer
        vendor=10415 code=1422
    diameter.DSAI-Tag  DSAI-Tag
        Byte array
        vendor=10415 code=711
    diameter.DSR-Flags  DSR-Flags
        Unsigned 32-bit integer
        vendor=10415 code=1421
    diameter.Data-Coding-Scheme  Data-Coding-Scheme
        Signed 32-bit integer
        vendor=10415 code=2001
    diameter.Data-Reference  Data-Reference
        Unsigned 32-bit integer
        vendor=10415 code=703
    diameter.Default-EPS-Bearer-QoS  Default-EPS-Bearer-QoS
        Byte array
        vendor=10415 code=1049
    diameter.Deferred-Location-Event-Type  Deferred-Location-Event-Type
        String
        vendor=10415 code=1230
    diameter.Delegated-IPv6-Prefix  Delegated-IPv6-Prefix
        Byte array
        code=123
    diameter.Delivery-Report  Delivery-Report
        Signed 32-bit integer
        vendor=10415 code=1111
    diameter.Delivery-Report-Requested  Delivery-Report-Requested
        Signed 32-bit integer
        vendor=10415 code=1216
    diameter.Delivery-Status  Delivery-Status
        String
        vendor=10415 code=2104
    diameter.Deregistration-Reason  Deregistration-Reason
        Byte array
        vendor=10415 code=615
    diameter.Destination-Host  Destination-Host
        String
        code=293
    diameter.Destination-Interface  Destination-Interface
        Byte array
        vendor=10415 code=2002
    diameter.Destination-Realm  Destination-Realm
        String
        code=283
    diameter.Diagnostics  Diagnostics
        Unsigned 32-bit integer
        vendor=10415 code=2039
    diameter.Digest-AKA-Auts  Digest-AKA-Auts
        String
        code=118
    diameter.Digest-Algorithm  Digest-Algorithm
        String
        code=111
    diameter.Digest-Auth-Param  Digest-Auth-Param
        String
        code=117
    diameter.Digest-Digest-CNonce  Digest-Digest-CNonce
        String
        code=113
    diameter.Digest-Domain  Digest-Domain
        String
        code=119
    diameter.Digest-Entity-Body-Hash  Digest-Entity-Body-Hash
        String
        code=112
    diameter.Digest-HA1  Digest-HA1
        String
        code=121
    diameter.Digest-Method  Digest-Method
        String
        code=108
    diameter.Digest-Nextnonce  Digest-Nextnonce
        String
        code=107
    diameter.Digest-Nonce  Digest-Nonce
        String
        code=105
    diameter.Digest-Nonce-Count  Digest-Nonce-Count
        String
        code=114
    diameter.Digest-Opaque  Digest-Opaque
        String
        code=116
    diameter.Digest-Qop  Digest-Qop
        String
        code=110
    diameter.Digest-Realm  Digest-Realm
        String
        code=104
    diameter.Digest-Response  Digest-Response
        String
        code=103
    diameter.Digest-Response-Auth  Digest-Response-Auth
        String
        code=106
    diameter.Digest-Stale  Digest-Stale
        String
        code=120
    diameter.Digest-URI  Digest-URI
        String
        code=109
    diameter.Digest-Username  Digest-Username
        String
        code=115
    diameter.Direct-Debiting-Failure-Handling  Direct-Debiting-Failure-Handling
        Signed 32-bit integer
        code=428
    diameter.Disconnect-Cause  Disconnect-Cause
        Signed 32-bit integer
        code=273
    diameter.Domain-Name  Domain-Name
        String
        vendor=10415 code=1200
    diameter.Dynamic-Address-Flag  Dynamic-Address-Flag
        Signed 32-bit integer
        vendor=10415 code=2051
    diameter.E-UTRAN-Cell-Global-Identity  E-UTRAN-Cell-Global-Identity
        Byte array
        vendor=10415 code=1602
    diameter.E-UTRAN-Vector  E-UTRAN-Vector
        Byte array
        vendor=10415 code=1414
    diameter.E2E-Sequence  E2E-Sequence
        Byte array
        code=300
    diameter.EAP-Key-Name  EAP-Key-Name
        String
        code=102
    diameter.EAP-Master-Session-Key  EAP-Master-Session-Key
        Byte array
        code=464
    diameter.EAP-Message  EAP-Message
        Byte array
        code=79
    diameter.EAP-Payload  EAP-Payload
        Byte array
        code=462
    diameter.EAP-Reissued-Payload  EAP-Reissued-Payload
        Byte array
        code=463
    diameter.EPS-Location-Information  EPS-Location-Information
        Byte array
        vendor=10415 code=1496
    diameter.EPS-Subscribed-QoS-Profile  EPS-Subscribed-QoS-Profile
        Byte array
        vendor=10415 code=1431
    diameter.EPS-User-State  EPS-User-State
        Byte array
        vendor=10415 code=1495
    diameter.ETSI-Digest-Algorithm  ETSI-Digest-Algorithm
        String
        vendor=13019 code=509
    diameter.ETSI-Digest-Auth-Param  ETSI-Digest-Auth-Param
        String
        vendor=13019 code=512
    diameter.ETSI-Digest-CNonce  ETSI-Digest-CNonce
        String
        vendor=13019 code=516
    diameter.ETSI-Digest-Domain  ETSI-Digest-Domain
        String
        vendor=13019 code=506
    diameter.ETSI-Digest-Entity-Body-Hash  ETSI-Digest-Entity-Body-Hash
        String
        vendor=13019 code=519
    diameter.ETSI-Digest-HA1  ETSI-Digest-HA1
        String
        vendor=13019 code=511
    diameter.ETSI-Digest-Method  ETSI-Digest-Method
        String
        vendor=13019 code=518
    diameter.ETSI-Digest-Nextnonce  ETSI-Digest-Nextnonce
        String
        vendor=13019 code=520
    diameter.ETSI-Digest-Nonce  ETSI-Digest-Nonce
        String
        vendor=13019 code=505
    diameter.ETSI-Digest-Nonce-Count  ETSI-Digest-Nonce-Count
        String
        vendor=13019 code=517
    diameter.ETSI-Digest-Opaque  ETSI-Digest-Opaque
        String
        vendor=13019 code=507
    diameter.ETSI-Digest-QoP  ETSI-Digest-QoP
        String
        vendor=13019 code=510
    diameter.ETSI-Digest-Realm  ETSI-Digest-Realm
        String
        vendor=13019 code=504
    diameter.ETSI-Digest-Response  ETSI-Digest-Response
        String
        vendor=13019 code=515
    diameter.ETSI-Digest-Response-Auth  ETSI-Digest-Response-Auth
        String
        vendor=13019 code=521
    diameter.ETSI-Digest-Stale  ETSI-Digest-Stale
        String
        vendor=13019 code=508
    diameter.ETSI-Digest-URI  ETSI-Digest-URI
        String
        vendor=13019 code=514
    diameter.ETSI-Digest-Username  ETSI-Digest-Username
        String
        vendor=13019 code=513
    diameter.ETSI-SIP-Authenticate  ETSI-SIP-Authenticate
        Byte array
        vendor=13019 code=501
    diameter.ETSI-SIP-Authentication-Info  ETSI-SIP-Authentication-Info
        Byte array
        vendor=13019 code=503
    diameter.ETSI-SIP-Authorization  ETSI-SIP-Authorization
        Byte array
        vendor=13019 code=502
    diameter.Early-Media-Description  Early-Media-Description
        Byte array
        vendor=10415 code=1272
    diameter.Egress-VLAN-Name  Egress-VLAN-Name
        String
        code=58
    diameter.Egress-VLANID  Egress-VLANID
        Byte array
        code=56
    diameter.Envelope  Envelope
        Byte array
        vendor=10415 code=1266
    diameter.Envelope-End-Time  Envelope-End-Time
        Unsigned 32-bit integer
        vendor=10415 code=1267
    diameter.Envelope-Reporting  Envelope-Reporting
        Signed 32-bit integer
        vendor=10415 code=1268
    diameter.Envelope-Start-Time  Envelope-Start-Time
        Unsigned 32-bit integer
        vendor=10415 code=1269
    diameter.Equipment-Status  Equipment-Status
        Signed 32-bit integer
        vendor=10415 code=1445
    diameter.Error-Cause  Error-Cause
        Signed 32-bit integer
        code=101
    diameter.Error-Message  Error-Message
        String
        code=281
    diameter.Error-Reporting-Host  Error-Reporting-Host
        String
        code=294
    diameter.Event  Event
        String
        vendor=10415 code=825
    diameter.Event-Charging-TimeStamp  Event-Charging-TimeStamp
        Unsigned 32-bit integer
        vendor=10415 code=1258
    diameter.Event-Report-Indication  Event-Report-Indication
        Byte array
        vendor=10415 code=1033
    diameter.Event-Timestamp  Event-Timestamp
        Unsigned 32-bit integer
        code=55
    diameter.Event-Trigger  Event-Trigger
        Signed 32-bit integer
        vendor=10415 code=1006
    diameter.Event-Type  Event-Type
        Byte array
        vendor=10415 code=823
    diameter.Experimental-Result  Experimental-Result
        Byte array
        code=297
    diameter.Experimental-Result-Code  Experimental-Result-Code
        Unsigned 32-bit integer
        code=298
    diameter.Experimental-Use  Experimental-Use
        Byte array
        code=192
    diameter.Expiration-Date  Expiration-Date
        Unsigned 32-bit integer
        vendor=10415 code=1439
    diameter.Expires  Expires
        Unsigned 32-bit integer
        vendor=10415 code=888
    diameter.Expiry-Time  Expiry-Time
        Unsigned 32-bit integer
        vendor=10415 code=709
    diameter.Exponent  Exponent
        Signed 32-bit integer
        code=429
    diameter.Extended-Location-Policy-Rules  Extended-Location-Policy-Rules
        Byte array
        code=130
    diameter.External-Client  External-Client
        Byte array
        vendor=10415 code=1479
    diameter.Failed-AVP  Failed-AVP
        Byte array
        code=279
    diameter.Feature-List  Feature-List
        Unsigned 32-bit integer
        vendor=10415 code=630
    diameter.Feature-List-ID  Feature-List-ID
        Unsigned 32-bit integer
        vendor=10415 code=629
    diameter.File-Repair-Supported  File-Repair-Supported
        Signed 32-bit integer
        vendor=10415 code=1224
    diameter.Filter-Id  Filter-Id
        String
        code=11
    diameter.Final-Unit-Action  Final-Unit-Action
        Signed 32-bit integer
        code=449
    diameter.Final-Unit-Indication  Final-Unit-Indication
        Byte array
        code=430
    diameter.Firmware-Revision  Firmware-Revision
        Unsigned 32-bit integer
        code=267
    diameter.Flow-Description  Flow-Description
        String
        vendor=10415 code=507
    diameter.Flow-Direction  Flow-Direction
        Signed 32-bit integer
        vendor=10415 code=1073
    diameter.Flow-Grouping  Flow-Grouping
        Byte array
        vendor=10415 code=508
    diameter.Flow-Information  Flow-Information
        Byte array
        vendor=10415 code=1058
    diameter.Flow-Label  Flow-Label
        Byte array
        vendor=10415 code=1057
    diameter.Flow-Number  Flow-Number
        Unsigned 32-bit integer
        vendor=10415 code=509
    diameter.Flow-Status  Flow-Status
        Signed 32-bit integer
        vendor=10415 code=511
    diameter.Flow-Usage  Flow-Usage
        Signed 32-bit integer
        vendor=10415 code=512
    diameter.Flows  Flows
        Byte array
        vendor=10415 code=510
    diameter.Framed-AppleTalk-Link  Framed-AppleTalk-Link
        Unsigned 32-bit integer
        code=37
    diameter.Framed-AppleTalk-Network  Framed-AppleTalk-Network
        Unsigned 32-bit integer
        code=38
    diameter.Framed-AppleTalk-Zone  Framed-AppleTalk-Zone
        Byte array
        code=39
    diameter.Framed-Compression  Framed-Compression
        Signed 32-bit integer
        code=13
    diameter.Framed-IP-Address  Framed-IP-Address
        Byte array
        code=8
    diameter.Framed-IP-Address.addr_family  Framed-IP-Address Address Family
        Unsigned 16-bit integer
    diameter.Framed-IP-Netmask  Framed-IP-Netmask
        Byte array
        code=9
    diameter.Framed-IP-Netmask.addr_family  Framed-IP-Netmask Address Family
        Unsigned 16-bit integer
    diameter.Framed-IPX-Network  Framed-IPX-Network
        String
        code=23
    diameter.Framed-IPv6-Prefix  Framed-IPv6-Prefix
        Byte array
        code=97
    diameter.Framed-IPv6-Route  Framed-IPv6-Route
        String
        code=99
    diameter.Framed-Interface-Id  Framed-Interface-Id
        Unsigned 64-bit integer
        code=96
    diameter.Framed-MTU  Framed-MTU
        Unsigned 32-bit integer
        code=12
    diameter.Framed-Management-Protocol  Framed-Management-Protocol
        Signed 32-bit integer
        code=133
    diameter.Framed-Pool  Framed-Pool
        Byte array
        code=88
    diameter.Framed-Protocol  Framed-Protocol
        Signed 32-bit integer
        code=7
    diameter.Framed-Route  Framed-Route
        String
        code=22
    diameter.Framed-Routing  Framed-Routing
        Signed 32-bit integer
        code=10
    diameter.From-SIP-Header  From-SIP-Header
        Byte array
        vendor=10415 code=644
    diameter.G-S-U-Pool-Identifier  G-S-U-Pool-Identifier
        Unsigned 32-bit integer
        code=453
    diameter.G-S-U-Pool-Reference  G-S-U-Pool-Reference
        Byte array
        code=457
    diameter.GAA-Service-Identifier  GAA-Service-Identifier
        Byte array
        vendor=10415 code=403
    diameter.GBA-Push-Info  GBA-Push-Info
        Byte array
        vendor=10415 code=417
    diameter.GBA-Type  GBA-Type
        Signed 32-bit integer
        vendor=10415 code=410
    diameter.GBA-UserSecSettings  GBA-UserSecSettings
        Byte array
        vendor=10415 code=400
    diameter.GBA_U-Awareness-Indicator  GBA_U-Awareness-Indicator
        Signed 32-bit integer
        vendor=10415 code=407
    diameter.GERAN-Vector  GERAN-Vector
        Byte array
        vendor=10415 code=1416
    diameter.GGSN-Address  GGSN-Address
        Byte array
        vendor=10415 code=847
    diameter.GGSN-Address.addr_family  GGSN-Address Address Family
        Unsigned 16-bit integer
    diameter.GMLC-Address  GMLC-Address
        Byte array
        vendor=10415 code=1474
    diameter.GMLC-Restriction  GMLC-Restriction
        Signed 32-bit integer
        vendor=10415 code=1481
    diameter.GPRS-Charging-ID  GPRS-Charging-ID
        String
        vendor=10415 code=846
    diameter.GPRS-Subscription-Data  GPRS-Subscription-Data
        Byte array
        vendor=10415 code=1467
    diameter.GUSS-Timestamp  GUSS-Timestamp
        Unsigned 32-bit integer
        vendor=10415 code=409
    diameter.Geodetic-Information  Geodetic-Information
        Byte array
        vendor=10415 code=1609
    diameter.Geographical-Information  Geographical-Information
        Byte array
        vendor=10415 code=1608
    diameter.Geospatial-Location  Geospatial-Location
        Byte array
        vendor=13019 code=356
    diameter.Globally-Unique-Address  Globally-Unique-Address
        Byte array
        vendor=13019 code=300
    diameter.Granted-Service-Unit  Granted-Service-Unit
        Byte array
        code=431
    diameter.Guaranteed-Bitrate-DL  Guaranteed-Bitrate-DL
        Unsigned 32-bit integer
        vendor=10415 code=1025
    diameter.Guaranteed-Bitrate-UL  Guaranteed-Bitrate-UL
        Unsigned 32-bit integer
        vendor=10415 code=1026
    diameter.HPLMN-ODB  HPLMN-ODB
        Unsigned 32-bit integer
        vendor=10415 code=1418
    diameter.Homogeneous-Support-of-IMS-Voice-Over-PS-Sessions  Homogeneous-Support-of-IMS-Voice-Over-PS-Sessions
        Signed 32-bit integer
        vendor=10415 code=1493
    diameter.Host-IP-Address  Host-IP-Address
        Byte array
        code=257
    diameter.Host-IP-Address.addr_family  Host-IP-Address Address Family
        Unsigned 16-bit integer
    diameter.ICS-Indicator  ICS-Indicator
        Signed 32-bit integer
        vendor=10415 code=1491
    diameter.IDA-Flags  IDA-Flags
        Unsigned 32-bit integer
        vendor=10415 code=1441
    diameter.IDR-Flags  IDR-Flags
        Unsigned 32-bit integer
        vendor=10415 code=1490
    diameter.IM-Information  IM-Information
        Byte array
        vendor=10415 code=2110
    diameter.IMEI  IMEI
        String
        vendor=10415 code=1402
    diameter.IMS-Charging-Identifier  IMS-Charging-Identifier
        String
        vendor=10415 code=841
    diameter.IMS-Communication-Service-Identifier  IMS-Communication-Service-Identifier
        String
        vendor=10415 code=1281
    diameter.IMS-Information  IMS-Information
        Byte array
        vendor=10415 code=876
    diameter.IMS-Voice-Over-PSSessions-Supported  IMS-Voice-Over-PSSessions-Supported
        Signed 32-bit integer
        vendor=10415 code=1492
    diameter.IMSI-Unauthenticated-Flag  IMSI-Unauthenticated-Flag
        Signed 32-bit integer
        vendor=10415 code=2308
    diameter.IP-CAN-Type  IP-CAN-Type
        Signed 32-bit integer
        vendor=10415 code=1027
    diameter.IP-Connectivity-Status  IP-Connectivity-Status
        Signed 32-bit integer
        vendor=13019 code=305
    diameter.Identity-Set  Identity-Set
        Unsigned 32-bit integer
        vendor=10415 code=708
    diameter.Idle-Timeout  Idle-Timeout
        Unsigned 32-bit integer
        code=28
    diameter.Immediate-Response-Preferred  Immediate-Response-Preferred
        Unsigned 32-bit integer
        vendor=10415 code=1412
    diameter.Implementation-Specific  Implementation-Specific
        Byte array
        code=224
    diameter.Inband-Security-Id  Inband-Security-Id
        Unsigned 32-bit integer
        code=299
    diameter.Incoming-Trunk-Group-ID  Incoming-Trunk-Group-ID
        String
        vendor=10415 code=852
    diameter.Incremental-Cost  Incremental-Cost
        Byte array
        vendor=10415 code=2062
    diameter.Ingress-Filters  Ingress-Filters
        Signed 32-bit integer
        code=57
    diameter.Initial-Gate-Setting  Initial-Gate-Setting
        Byte array
        vendor=13019 code=303
    diameter.Initial-Gate-Setting-ID  Initial-Gate-Setting-ID
        Unsigned 32-bit integer
        vendor=13019 code=314
    diameter.Initial-Recipient-Address  Initial-Recipient-Address
        Byte array
        vendor=10415 code=1105
    diameter.Integrity-Key  Integrity-Key
        Byte array
        vendor=10415 code=626
    diameter.Inter-Operator-Identifier  Inter-Operator-Identifier
        Byte array
        vendor=10415 code=838
    diameter.Interface-Id  Interface-Id
        String
        vendor=10415 code=2003
    diameter.Interface-Port  Interface-Port
        String
        vendor=10415 code=2004
    diameter.Interface-Text  Interface-Text
        String
        vendor=10415 code=2005
    diameter.Interface-Type  Interface-Type
        Signed 32-bit integer
        vendor=10415 code=2006
    diameter.Item-Number  Item-Number
        Unsigned 32-bit integer
        vendor=10415 code=1419
    diameter.KASME  KASME
        Byte array
        vendor=10415 code=1450
    diameter.Kc  Kc
        Byte array
        vendor=10415 code=1453
    diameter.Key-ExpiryTime  Key-ExpiryTime
        Unsigned 32-bit integer
        vendor=10415 code=404
    diameter.LCS-APN  LCS-APN
        String
        vendor=10415 code=1231
    diameter.LCS-Client-Dialed-By-MS  LCS-Client-Dialed-By-MS
        String
        vendor=10415 code=1233
    diameter.LCS-Client-External-ID  LCS-Client-External-ID
        String
        vendor=10415 code=1234
    diameter.LCS-Client-ID  LCS-Client-ID
        Byte array
        vendor=10415 code=1232
    diameter.LCS-Client-Name  LCS-Client-Name
        Byte array
        vendor=10415 code=1235
    diameter.LCS-Client-Type  LCS-Client-Type
        Signed 32-bit integer
        vendor=10415 code=1241
    diameter.LCS-Data-Coding-Scheme  LCS-Data-Coding-Scheme
        String
        vendor=10415 code=1236
    diameter.LCS-Format-Indicator  LCS-Format-Indicator
        Signed 32-bit integer
        vendor=10415 code=1237
    diameter.LCS-Info  LCS-Info
        Byte array
        vendor=10415 code=1473
    diameter.LCS-Information  LCS-Information
        Byte array
        vendor=10415 code=878
    diameter.LCS-Name-String  LCS-Name-String
        String
        vendor=10415 code=1238
    diameter.LCS-PrivacyException  LCS-PrivacyException
        Byte array
        vendor=10415 code=1475
    diameter.LCS-Requestor-ID  LCS-Requestor-ID
        Byte array
        vendor=10415 code=1239
    diameter.LCS-Requestor-ID-String  LCS-Requestor-ID-String
        String
        vendor=10415 code=1240
    diameter.Last-UE-Activity-Time  Last-UE-Activity-Time
        Unsigned 32-bit integer
        vendor=10415 code=1494
    diameter.Line-Identifier  Line-Identifier
        Byte array
        vendor=13019 code=500
    diameter.Local-Sequence-Number  Local-Sequence-Number
        Unsigned 32-bit integer
        vendor=10415 code=2063
    diameter.Location-Area-Identity  Location-Area-Identity
        Byte array
        vendor=10415 code=1606
    diameter.Location-Capable  Location-Capable
        Byte array
        code=131
    diameter.Location-Data  Location-Data
        Byte array
        code=128
    diameter.Location-Estimate  Location-Estimate
        String
        vendor=10415 code=1242
    diameter.Location-Estimate-Type  Location-Estimate-Type
        Signed 32-bit integer
        vendor=10415 code=1243
    diameter.Location-Information  Location-Information
        Byte array
        code=127
    diameter.Location-Type  Location-Type
        Byte array
        vendor=10415 code=1244
    diameter.Logical-Access-Id  Logical-Access-Id
        Byte array
        vendor=13019 code=302
    diameter.Login-IP-Host  Login-IP-Host
        Byte array
        code=14
    diameter.Login-IP-Host.addr_family  Login-IP-Host Address Family
        Unsigned 16-bit integer
    diameter.Login-IPv6-Host  Login-IPv6-Host
        Byte array
        code=98
    diameter.Login-LAT-Group  Login-LAT-Group
        Byte array
        code=36
    diameter.Login-LAT-Node  Login-LAT-Node
        Byte array
        code=35
    diameter.Login-LAT-Port  Login-LAT-Port
        Byte array
        code=63
    diameter.Login-LAT-Service  Login-LAT-Service
        Byte array
        code=34
    diameter.Login-Service  Login-Service
        Signed 32-bit integer
        code=15
    diameter.Login-TCP-Port  Login-TCP-Port
        Unsigned 32-bit integer
        code=16
    diameter.Loose-Route-Indication  Loose-Route-Indication
        Signed 32-bit integer
        vendor=10415 code=638
    diameter.Low-Balance-Indication  Low-Balance-Indication
        Signed 32-bit integer
        vendor=10415 code=2020
    diameter.MBMS-2G-3G-Indicator  MBMS-2G-3G-Indicator
        Signed 32-bit integer
        vendor=10415 code=907
    diameter.MBMS-Access-Indicator  MBMS-Access-Indicator
        Signed 32-bit integer
        vendor=10415 code=923
    diameter.MBMS-BMSC-SSM-IP-Address  MBMS-BMSC-SSM-IP-Address
        String
        vendor=10415 code=918
    diameter.MBMS-BMSC-SSM-IPv6-Address  MBMS-BMSC-SSM-IPv6-Address
        String
        vendor=10415 code=919
    diameter.MBMS-Counting-Information  MBMS-Counting-Information
        Signed 32-bit integer
        vendor=10415 code=914
    diameter.MBMS-Flow-Identifier  MBMS-Flow-Identifier
        Byte array
        vendor=10415 code=920
    diameter.MBMS-GGSN-Address  MBMS-GGSN-Address
        String
        vendor=10415 code=916
    diameter.MBMS-GGSN-IPv6-Address  MBMS-GGSN-IPv6-Address
        String
        vendor=10415 code=917
    diameter.MBMS-GW-Address  MBMS-GW-Address
        Byte array
        vendor=10415 code=2307
    diameter.MBMS-GW-Address.addr_family  MBMS-GW-Address Address Family
        Unsigned 16-bit integer
    diameter.MBMS-HC-Indicator  MBMS-HC-Indicator
        Signed 32-bit integer
        vendor=10415 code=922
    diameter.MBMS-Information  MBMS-Information
        Byte array
        vendor=10415 code=880
    diameter.MBMS-Required-QoS  MBMS-Required-QoS
        String
        vendor=10415 code=913
    diameter.MBMS-Service-Area  MBMS-Service-Area
        Byte array
        vendor=10415 code=903
    diameter.MBMS-Service-Type  MBMS-Service-Type
        Signed 32-bit integer
        vendor=10415 code=906
    diameter.MBMS-Session-Duration  MBMS-Session-Duration
        Unsigned 32-bit integer
        vendor=10415 code=904
    diameter.MBMS-Session-Identity  MBMS-Session-Identity
        Byte array
        vendor=10415 code=908
    diameter.MBMS-Session-Identity-Repetition-Number  MBMS-Session-Identity-Repetition-Number
        Unsigned 32-bit integer
        vendor=10415 code=912
    diameter.MBMS-Session-Repetition-Number  MBMS-Session-Repetition-Number
        Byte array
        vendor=10415 code=912
    diameter.MBMS-StartStop-Indicatio  MBMS-StartStop-Indicatio
        Signed 32-bit integer
        vendor=10415 code=902
    diameter.MBMS-StartStop-Indication  MBMS-StartStop-Indication
        Signed 32-bit integer
        vendor=10415 code=902
    diameter.MBMS-Time-To-Data-Transfe  MBMS-Time-To-Data-Transfe
        Unsigned 32-bit integer
        vendor=10415 code=911
    diameter.MBMS-Time-To-Data-Transfer  MBMS-Time-To-Data-Transfer
        Byte array
        vendor=10415 code=911
    diameter.MBMS-User-Data-Mode-Indication  MBMS-User-Data-Mode-Indication
        Signed 32-bit integer
        vendor=10415 code=915
    diameter.MBMS-User-Service-Type  MBMS-User-Service-Type
        Signed 32-bit integer
        vendor=10415 code=1225
    diameter.ME-Key-Material  ME-Key-Material
        Byte array
        vendor=10415 code=405
    diameter.MIP-Algorithm-Type  MIP-Algorithm-Type
        Unsigned 32-bit integer
        code=345
    diameter.MIP-Auth-Input-Data-Length  MIP-Auth-Input-Data-Length
        Unsigned 32-bit integer
        code=338
    diameter.MIP-Authenticator  MIP-Authenticator
        Byte array
        code=488
    diameter.MIP-Authenticator-Length  MIP-Authenticator-Length
        Unsigned 32-bit integer
        code=339
    diameter.MIP-Authenticator-Offset  MIP-Authenticator-Offset
        Unsigned 32-bit integer
        code=340
    diameter.MIP-Candidate-Home-Agent-Host  MIP-Candidate-Home-Agent-Host
        String
        code=336
    diameter.MIP-Careof-Address  MIP-Careof-Address
        Byte array
        code=487
    diameter.MIP-Careof-Address.addr_family  MIP-Careof-Address Address Family
        Unsigned 16-bit integer
    diameter.MIP-FA-Challenge  MIP-FA-Challenge
        Byte array
        code=344
    diameter.MIP-FA-to-HA-MSA  MIP-FA-to-HA-MSA
        Byte array
        code=328
    diameter.MIP-FA-to-HA-SPI  MIP-FA-to-HA-SPI
        Unsigned 32-bit integer
        code=318
    diameter.MIP-FA-to-MN-MSA  MIP-FA-to-MN-MSA
        Byte array
        code=326
    diameter.MIP-FA-to-MN-SPI  MIP-FA-to-MN-SPI
        Unsigned 32-bit integer
        code=319
    diameter.MIP-Feature-Vector  MIP-Feature-Vector
        Unsigned 32-bit integer
        code=337
    diameter.MIP-Filter-Rule  MIP-Filter-Rule
        String
        code=342
    diameter.MIP-HA-to-FA-MSA  MIP-HA-to-FA-MSA
        Byte array
        code=329
    diameter.MIP-HA-to-FA-SPI  MIP-HA-to-FA-SPI
        Unsigned 32-bit integer
        code=323
    diameter.MIP-HA-to-MN-MSA  MIP-HA-to-MN-MSA
        Byte array
        code=332
    diameter.MIP-Home-Agent-Address  MIP-Home-Agent-Address
        Byte array
        code=334
    diameter.MIP-Home-Agent-Address.addr_family  MIP-Home-Agent-Address Address Family
        Unsigned 16-bit integer
    diameter.MIP-Home-Agent-Host  MIP-Home-Agent-Host
        Byte array
        code=348
    diameter.MIP-MAC-Mobility-Data  MIP-MAC-Mobility-Data
        Byte array
        code=489
    diameter.MIP-MN-AAA-Auth  MIP-MN-AAA-Auth
        Byte array
        code=322
    diameter.MIP-MN-AAA-SPI  MIP-MN-AAA-SPI
        Unsigned 32-bit integer
        code=341
    diameter.MIP-MN-HA-MSA  MIP-MN-HA-MSA
        Byte array
        code=492
    diameter.MIP-MN-HA-SPI  MIP-MN-HA-SPI
        Unsigned 32-bit integer
        code=491
    diameter.MIP-MN-to-FA-MSA  MIP-MN-to-FA-MSA
        Byte array
        code=325
    diameter.MIP-MN-to-HA-MSA  MIP-MN-to-HA-MSA
        Byte array
        code=331
    diameter.MIP-MSA-Lifetime  MIP-MSA-Lifetime
        Unsigned 32-bit integer
        code=367
    diameter.MIP-Mobile-Node-Address  MIP-Mobile-Node-Address
        Byte array
        code=333
    diameter.MIP-Mobile-Node-Address.addr_family  MIP-Mobile-Node-Address Address Family
        Unsigned 16-bit integer
    diameter.MIP-Nonce  MIP-Nonce
        Byte array
        code=335
    diameter.MIP-Originating-Foreign-AAA  MIP-Originating-Foreign-AAA
        Byte array
        code=347
    diameter.MIP-Reg-Reply  MIP-Reg-Reply
        Byte array
        code=321
    diameter.MIP-Reg-Request  MIP-Reg-Request
        Byte array
        code=320
    diameter.MIP-Replay-Mode  MIP-Replay-Mode
        Unsigned 32-bit integer
        code=346
    diameter.MIP-Session-Key  MIP-Session-Key
        Byte array
        code=343
    diameter.MIP-Timestamp  MIP-Timestamp
        Byte array
        code=490
    diameter.MIP6-Agent-Info  MIP6-Agent-Info
        Byte array
        code=486
    diameter.MIP6-Auth-Mode  MIP6-Auth-Mode
        Signed 32-bit integer
        code=494
    diameter.MIP6-Feature-Vector  MIP6-Feature-Vector
        Unsigned 64-bit integer
        code=124
    diameter.MIP6-Home-Link-Prefix  MIP6-Home-Link-Prefix
        Byte array
        code=125
    diameter.MM-Content-Type  MM-Content-Type
        Byte array
        vendor=10415 code=1203
    diameter.MMBox-Storage-Requested  MMBox-Storage-Requested
        Signed 32-bit integer
        vendor=10415 code=1248
    diameter.MME-Location-Information  MME-Location-Information
        Byte array
        vendor=10415 code=1600
    diameter.MME-User-State  MME-User-State
        Byte array
        vendor=10415 code=1497
    diameter.MMS-Information  MMS-Information
        Byte array
        vendor=10415 code=877
    diameter.MMTel-Information  MMTel-Information
        Byte array
        vendor=10415 code=2030
    diameter.MO-LR  MO-LR
        Byte array
        vendor=10415 code=1485
    diameter.MSISDN  MSISDN
        Byte array
        vendor=10415 code=701
    diameter.Management-Policy-Id  Management-Policy-Id
        String
        code=135
    diameter.Management-Privilege-Level  Management-Privilege-Level
        Signed 32-bit integer
        code=136
    diameter.Management-Transport-Protection  Management-Transport-Protection
        Signed 32-bit integer
        code=134
    diameter.Mandatory-Capability  Mandatory-Capability
        Unsigned 32-bit integer
        vendor=10415 code=604
    diameter.Max-Requested-Bandwidth-DL  Max-Requested-Bandwidth-DL
        Unsigned 32-bit integer
        vendor=10415 code=515
    diameter.Max-Requested-Bandwidth-UL  Max-Requested-Bandwidth-UL
        Unsigned 32-bit integer
        vendor=10415 code=516
    diameter.Maximum-Allowed-Bandwidth-DL  Maximum-Allowed-Bandwidth-DL
        Unsigned 32-bit integer
        vendor=13019 code=309
    diameter.Maximum-Allowed-Bandwidth-UL  Maximum-Allowed-Bandwidth-UL
        Unsigned 32-bit integer
        vendor=13019 code=308
    diameter.Maximum-Packet-Size  Maximum-Packet-Size
        Unsigned 32-bit integer
        code=500
    diameter.Maximum-Prioritydeprecated  Maximum-Priority(deprecated)
        Unsigned 32-bit integer
        vendor=13019 code=310
    diameter.Media-Component-Description  Media-Component-Description
        Byte array
        vendor=10415 code=517
    diameter.Media-Component-Number  Media-Component-Number
        Unsigned 32-bit integer
        vendor=10415 code=518
    diameter.Media-Initiator-Flag  Media-Initiator-Flag
        Signed 32-bit integer
        vendor=10415 code=882
    diameter.Media-Initiator-Party  Media-Initiator-Party
        String
        vendor=10415 code=1288
    diameter.Media-Sub-Component  Media-Sub-Component
        Byte array
        vendor=10415 code=519
    diameter.Media-Type  Media-Type
        Signed 32-bit integer
        vendor=10415 code=520
    diameter.Message-Body  Message-Body
        Byte array
        vendor=10415 code=889
    diameter.Message-Class  Message-Class
        Byte array
        vendor=10415 code=1213
    diameter.Message-ID  Message-ID
        String
        vendor=10415 code=1210
    diameter.Message-Size  Message-Size
        Unsigned 32-bit integer
        vendor=10415 code=1212
    diameter.Message-Type  Message-Type
        Signed 32-bit integer
        vendor=10415 code=1211
    diameter.Metering-Method  Metering-Method
        Signed 32-bit integer
        vendor=10415 code=1007
    diameter.Minimum-Policed-Unit  Minimum-Policed-Unit
        Unsigned 32-bit integer
        code=499
    diameter.Mobile-Node-Identifier  Mobile-Node-Identifier
        String
        code=506
    diameter.Monitoring-Key  Monitoring-Key
        Byte array
        vendor=10415 code=1066
    diameter.Multi-Round-Time-Out  Multi-Round-Time-Out
        Unsigned 32-bit integer
        code=272
    diameter.Multiple-Registration-Indication  Multiple-Registration-Indication
        Signed 32-bit integer
        vendor=10415 code=648
    diameter.Multiple-Services-Credit-Control  Multiple-Services-Credit-Control
        Byte array
        code=456
    diameter.Multiple-Services-Indicator  Multiple-Services-Indicator
        Signed 32-bit integer
        code=455
    diameter.NAF-Hostname  NAF-Hostname
        Byte array
        vendor=10415 code=402
    diameter.NAF-SA-Identifier  NAF-SA-Identifier
        Byte array
        vendor=10415 code=418
    diameter.NAS-Filter-Rule  NAS-Filter-Rule
        String
        code=92
    diameter.NAS-IP-Address  NAS-IP-Address
        Byte array
        code=4
    diameter.NAS-IPv6-Address  NAS-IPv6-Address
        Byte array
        code=95
    diameter.NAS-Identifier  NAS-Identifier
        Byte array
        code=32
    diameter.NAS-Port  NAS-Port
        Unsigned 32-bit integer
        code=5
    diameter.NAS-Port-Id  NAS-Port-Id
        String
        code=87
    diameter.NAS-Port-Type  NAS-Port-Type
        Signed 32-bit integer
        code=61
    diameter.NOR-Flags  NOR-Flags
        Unsigned 32-bit integer
        vendor=10415 code=1443
    diameter.Network-Access-Mode  Network-Access-Mode
        Signed 32-bit integer
        vendor=10415 code=1417
    diameter.Network-Request-Support  Network-Request-Support
        Signed 32-bit integer
        vendor=10415 code=1024
    diameter.Next-Tariff  Next-Tariff
        Byte array
        vendor=10415 code=2057
    diameter.Node-Functionality  Node-Functionality
        Unsigned 32-bit integer
        vendor=10415 code=862
    diameter.Node-Id  Node-Id
        String
        vendor=10415 code=2064
    diameter.Non-3GPP-IP-Access  Non-3GPP-IP-Access
        Signed 32-bit integer
        vendor=10415 code=1501
    diameter.Non-3GPP-IP-Access-APN  Non-3GPP-IP-Access-APN
        Signed 32-bit integer
        vendor=10415 code=1502
    diameter.Non-3GPP-User-Data  Non-3GPP-User-Data
        Byte array
        vendor=10415 code=1500
    diameter.Notdefinedin.xml  Not defined in .xml
        Byte array
        vendor=13019 code=299
    diameter.Notification-To-UE-User  Notification-To-UE-User
        Signed 32-bit integer
        vendor=10415 code=1478
    diameter.Number-Of-Diversions  Number-Of-Diversions
        Unsigned 32-bit integer
        vendor=10415 code=2034
    diameter.Number-Of-Messages-Successfully-Exploded  Number-Of-Messages-Successfully-Exploded
        Unsigned 32-bit integer
        vendor=10415 code=2111
    diameter.Number-Of-Messages-Successfully-Sent  Number-Of-Messages-Successfully-Sent
        Unsigned 32-bit integer
        vendor=10415 code=2112
    diameter.Number-Of-Participants  Number-Of-Participants
        Signed 32-bit integer
        vendor=10415 code=885
    diameter.Number-Of-Received-Talk-Bursts  Number-Of-Received-Talk-Bursts
        Unsigned 32-bit integer
        vendor=10415 code=1282
    diameter.Number-Of-Requested-Vectors  Number-Of-Requested-Vectors
        Unsigned 32-bit integer
        vendor=10415 code=1410
    diameter.Number-Of-Talk-Bursts  Number-Of-Talk-Bursts
        Unsigned 32-bit integer
        vendor=10415 code=1283
    diameter.Number-Portability-Routing-Information  Number-Portability-Routing-Information
        String
        vendor=10415 code=2024
    diameter.Number-of-Messages-Sent  Number-of-Messages-Sent
        Unsigned 32-bit integer
        vendor=10415 code=2019
    diameter.OMC-Id  OMC-Id
        Byte array
        vendor=10415 code=1466
    diameter.Offline  Offline
        Signed 32-bit integer
        vendor=10415 code=1008
    diameter.Offline-Charging  Offline-Charging
        Byte array
        vendor=10415 code=1278
    diameter.One-Time-Notification  One-Time-Notification
        Signed 32-bit integer
        vendor=10415 code=713
    diameter.Online  Online
        Signed 32-bit integer
        vendor=10415 code=1009
    diameter.Online-Charging-Flag  Online-Charging-Flag
        Signed 32-bit integer
        vendor=10415 code=2303
    diameter.Operator-Determined-Barring  Operator-Determined-Barring
        Unsigned 32-bit integer
        vendor=10415 code=1425
    diameter.Operator-Name  Operator-Name
        Byte array
        code=126
    diameter.Optional-Capability  Optional-Capability
        Unsigned 32-bit integer
        vendor=10415 code=605
    diameter.Origin-AAA-Protocol  Origin-AAA-Protocol
        Signed 32-bit integer
        code=408
    diameter.Origin-Host  Origin-Host
        String
        code=264
    diameter.Origin-Realm  Origin-Realm
        String
        code=296
    diameter.Origin-State-Id  Origin-State-Id
        Unsigned 32-bit integer
        code=278
    diameter.Originating-IOI  Originating-IOI
        String
        vendor=10415 code=839
    diameter.Originating-Interface  Originating-Interface
        Signed 32-bit integer
        vendor=10415 code=1110
    diameter.Originating-Line-Info  Originating-Line-Info
        Byte array
        code=94
    diameter.Originating-Request  Originating-Request
        Signed 32-bit integer
        vendor=10415 code=633
    diameter.Originating-SCCP-Address  Originating-SCCP-Address
        Byte array
        vendor=10415 code=2008
    diameter.Originating-SCCP-Address.addr_family  Originating-SCCP-Address Address Family
        Unsigned 16-bit integer
    diameter.Originator  Originator
        Signed 32-bit integer
        vendor=10415 code=864
    diameter.Originator-Address  Originator-Address
        Byte array
        vendor=10415 code=886
    diameter.Originator-Interface  Originator-Interface
        Byte array
        vendor=10415 code=2009
    diameter.Outgoing-Trunk-Group-ID  Outgoing-Trunk-Group-ID
        String
        vendor=10415 code=853
    diameter.PCC-Rule-Status  PCC-Rule-Status
        Unsigned 32-bit integer
        vendor=10415 code=1019
    diameter.PDG-Address  PDG-Address
        Byte array
        vendor=10415 code=895
    diameter.PDG-Address.addr_family  PDG-Address Address Family
        Unsigned 16-bit integer
    diameter.PDG-Charging-Id  PDG-Charging-Id
        Unsigned 32-bit integer
        vendor=10415 code=896
    diameter.PDN-Conncetion-ID  PDN-Conncetion-ID
        Unsigned 32-bit integer
        vendor=10415 code=2050
    diameter.PDN-Connection-ID  PDN-Connection-ID
        Byte array
        vendor=10415 code=1065
    diameter.PDN-GW-Allocation-Type  PDN-GW-Allocation-Type
        Signed 32-bit integer
        vendor=10415 code=1438
    diameter.PDN-Type  PDN-Type
        Signed 32-bit integer
        vendor=10415 code=1456
    diameter.PDP-Address  PDP-Address
        Byte array
        vendor=10415 code=1227
    diameter.PDP-Address.addr_family  PDP-Address Address Family
        Unsigned 16-bit integer
    diameter.PDP-Context  PDP-Context
        Byte array
        vendor=10415 code=1469
    diameter.PDP-Context-Type  PDP-Context-Type
        Signed 32-bit integer
        vendor=10415 code=1247
    diameter.PDP-Session-operation  PDP-Session-operation
        Unsigned 32-bit integer
        vendor=10415 code=1015
    diameter.PDP-Type  PDP-Type
        Byte array
        vendor=10415 code=1470
    diameter.PHB-Class  PHB-Class
        Unsigned 32-bit integer
        code=503
    diameter.PKM-Auth-Key  PKM-Auth-Key
        Byte array
        code=143
    diameter.PKM-CA-Cert  PKM-CA-Cert
        Byte array
        code=138
    diameter.PKM-Config-Settings  PKM-Config-Settings
        Byte array
        code=139
    diameter.PKM-Cryptosuite-List  PKM-Cryptosuite-List
        Byte array
        code=140
    diameter.PKM-SA-Descriptor  PKM-SA-Descriptor
        Byte array
        code=142
    diameter.PKM-SS-Cert  PKM-SS-Cert
        Byte array
        code=137
    diameter.PLMN-Client  PLMN-Client
        Signed 32-bit integer
        vendor=10415 code=1482
    diameter.PMIP6-DHCP-Server-Address  PMIP6-DHCP-Server-Address
        Byte array
        code=504
    diameter.PMIP6-DHCP-Server-Address.addr_family  PMIP6-DHCP-Server-Address Address Family
        Unsigned 16-bit integer
    diameter.PMIP6-IPv4-Home-Address  PMIP6-IPv4-Home-Address
        Byte array
        code=505
    diameter.PMIP6-IPv4-Home-Address.addr_family  PMIP6-IPv4-Home-Address Address Family
        Unsigned 16-bit integer
    diameter.PPKM-SAID  PPKM-SAID
        Byte array
        code=141
    diameter.PS-Append-Free-Format-Data  PS-Append-Free-Format-Data
        Signed 32-bit integer
        vendor=10415 code=867
    diameter.PS-Free-Format-Data  PS-Free-Format-Data
        Byte array
        vendor=10415 code=866
    diameter.PS-Furnish-Charging-Information  PS-Furnish-Charging-Information
        Byte array
        vendor=10415 code=865
    diameter.PS-Information  PS-Information
        Byte array
        vendor=10415 code=874
    diameter.PUA-Flags  PUA-Flags
        Unsigned 32-bit integer
        vendor=10415 code=1442
    diameter.Packet-Filter-Content  Packet-Filter-Content
        String
        vendor=10415 code=1059
    diameter.Packet-Filter-Identifier  Packet-Filter-Identifier
        Byte array
        vendor=10415 code=1060
    diameter.Packet-Filter-Information  Packet-Filter-Information
        Byte array
        vendor=10415 code=1061
    diameter.Packet-Filter-Operation  Packet-Filter-Operation
        Signed 32-bit integer
        vendor=10415 code=1062
    diameter.Packet-Filter-Usage  Packet-Filter-Usage
        Signed 32-bit integer
        vendor=10415 code=1072
    diameter.Participant-Access-Priority  Participant-Access-Priority
        Signed 32-bit integer
        vendor=10415 code=1259
    diameter.Participant-Action-Type  Participant-Action-Type
        Signed 32-bit integer
        vendor=10415 code=2049
    diameter.Participant-Group  Participant-Group
        Byte array
        vendor=10415 code=1260
    diameter.Participants-Involved  Participants-Involved
        String
        vendor=10415 code=887
    diameter.Password-Retry  Password-Retry
        Unsigned 32-bit integer
        code=75
    diameter.Path  Path
        Byte array
        vendor=10415 code=640
    diameter.Peak-Traffic-Rate  Peak-Traffic-Rate
        Single-precision floating point
        code=498
    diameter.Physical-Access-ID  Physical-Access-ID
        String
        vendor=13019 code=313
    diameter.Ping-Timestamp  Ping-Timestamp
        Byte array
        vendor=42 code=3
    diameter.Ping-Timestamp-Secs  Ping-Timestamp-Secs
        Unsigned 32-bit integer
        vendor=42 code=1
    diameter.Ping-Timestamp-Usecs  Ping-Timestamp-Usecs
        Unsigned 32-bit integer
        vendor=42 code=2
    diameter.PoC-Change-Condition  PoC-Change-Condition
        Signed 32-bit integer
        vendor=10415 code=1261
    diameter.PoC-Change-Time  PoC-Change-Time
        Unsigned 32-bit integer
        vendor=10415 code=1262
    diameter.PoC-Controlling-Address  PoC-Controlling-Address
        String
        vendor=10415 code=858
    diameter.PoC-Event-Type  PoC-Event-Type
        Signed 32-bit integer
        vendor=10415 code=2025
    diameter.PoC-Group-Name  PoC-Group-Name
        String
        vendor=10415 code=859
    diameter.PoC-Information  PoC-Information
        Byte array
        vendor=10415 code=879
    diameter.PoC-Server-Role  PoC-Server-Role
        Signed 32-bit integer
        vendor=10415 code=883
    diameter.PoC-Session-Id  PoC-Session-Id
        String
        vendor=10415 code=1229
    diameter.PoC-Session-Initiation-type  PoC-Session-Initiation-type
        Signed 32-bit integer
        vendor=10415 code=1277
    diameter.PoC-Session-Type  PoC-Session-Type
        Signed 32-bit integer
        vendor=10415 code=884
    diameter.PoC-User-Role  PoC-User-Role
        Byte array
        vendor=10415 code=1252
    diameter.PoC-User-Role-IDs  PoC-User-Role-IDs
        String
        vendor=10415 code=1253
    diameter.PoC-User-Role-info-Units  PoC-User-Role-info-Units
        Signed 32-bit integer
        vendor=10415 code=1254
    diameter.Port-Limit  Port-Limit
        Unsigned 32-bit integer
        code=62
    diameter.Port-Number  Port-Number
        Unsigned 32-bit integer
        vendor=13019 code=455
    diameter.Positioning-Data  Positioning-Data
        String
        vendor=10415 code=1245
    diameter.Pre-emption-Capability  Pre-emption-Capability
        Signed 32-bit integer
        vendor=10415 code=1047
    diameter.Pre-emption-Vulnerability  Pre-emption-Vulnerability
        Signed 32-bit integer
        vendor=10415 code=1048
    diameter.Precedence  Precedence
        Unsigned 32-bit integer
        vendor=10415 code=1010
    diameter.Primary-CCF-Address  Primary-CCF-Address
        String
        vendor=5535 code=1011
    diameter.Primary-Charging-Collection-Function-Name  Primary-Charging-Collection-Function-Name
        String
        vendor=10415 code=621
    diameter.Primary-Event-Charging-Function-Name  Primary-Event-Charging-Function-Name
        String
        vendor=10415 code=619
    diameter.Primary-OCS-Address  Primary-OCS-Address
        String
        vendor=5535 code=1012
    diameter.Priority  Priority
        Signed 32-bit integer
        vendor=10415 code=1209
    diameter.Priority-Level  Priority-Level
        Unsigned 32-bit integer
        vendor=10415 code=1046
    diameter.Private-Identity-Request  Private-Identity-Request
        Signed 32-bit integer
        vendor=10415 code=416
    diameter.Product-Name  Product-Name
        String
        code=269
    diameter.Prompt  Prompt
        Signed 32-bit integer
        code=76
    diameter.Proxy-Host  Proxy-Host
        String
        code=280
    diameter.Proxy-Info  Proxy-Info
        Byte array
        code=284
    diameter.Proxy-State  Proxy-State
        Byte array
        code=33
    diameter.Public-Identity  Public-Identity
        String
        vendor=10415 code=601
    diameter.QoS-Class-Identifier  QoS-Class-Identifier
        Signed 32-bit integer
        vendor=10415 code=1028
    diameter.QoS-Filter-Rule  QoS-Filter-Rule
        String
        code=407
    diameter.QoS-Information  QoS-Information
        Byte array
        vendor=10415 code=1016
    diameter.QoS-Negotiation  QoS-Negotiation
        Signed 32-bit integer
        vendor=10415 code=1029
    diameter.QoS-Profile  QoS-Profile
        Byte array
        vendor=13019 code=304
    diameter.QoS-Profile-ID  QoS-Profile-ID
        Unsigned 32-bit integer
        vendor=13019 code=315
    diameter.QoS-Rule-Base-Name  QoS-Rule-Base-Name
        String
        vendor=10415 code=1074
    diameter.QoS-Rule-Definition  QoS-Rule-Definition
        Byte array
        vendor=10415 code=1053
    diameter.QoS-Rule-Install  QoS-Rule-Install
        Byte array
        vendor=10415 code=1051
    diameter.QoS-Rule-Name  QoS-Rule-Name
        Byte array
        vendor=10415 code=1054
    diameter.QoS-Rule-Remove  QoS-Rule-Remove
        Byte array
        vendor=10415 code=1052
    diameter.QoS-Rule-Report  QoS-Rule-Report
        Byte array
        vendor=10415 code=1055
    diameter.QoS-Subscribed  QoS-Subscribed
        String
        vendor=10415 code=1404
    diameter.QoS-Upgrade  QoS-Upgrade
        Signed 32-bit integer
        vendor=10415 code=1030
    diameter.Quota-Consumption-Time  Quota-Consumption-Time
        Unsigned 32-bit integer
        vendor=10415 code=881
    diameter.Quota-Holding-Time  Quota-Holding-Time
        Unsigned 32-bit integer
        vendor=10415 code=871
    diameter.RACS-Contact-Point  RACS-Contact-Point
        String
        vendor=13019 code=351
    diameter.RAI  RAI
        String
        vendor=10415 code=909
    diameter.RAND  RAND
        Byte array
        vendor=10415 code=1447
    diameter.RAT-Frequency-Selection-Priority-ID  RAT-Frequency-Selection-Priority-ID
        Unsigned 32-bit integer
        vendor=10415 code=1440
    diameter.RAT-Type  RAT-Type
        Signed 32-bit integer
        vendor=10415 code=1032
    diameter.RR-Bandwidth  RR-Bandwidth
        Unsigned 32-bit integer
        vendor=10415 code=521
    diameter.RS-Bandwidth  RS-Bandwidth
        Unsigned 32-bit integer
        vendor=10415 code=522
    diameter.Rate-Element  Rate-Element
        Byte array
        vendor=10415 code=2058
    diameter.Rating-Group  Rating-Group
        Unsigned 32-bit integer
        code=432
    diameter.Re-Auth-Request-Type  Re-Auth-Request-Type
        Unsigned 32-bit integer
        code=285
    diameter.Re-Synchronization-Info  Re-Synchronization-Info
        Byte array
        vendor=10415 code=1411
    diameter.Read-Reply  Read-Reply
        Signed 32-bit integer
        vendor=10415 code=1112
    diameter.Read-Reply-Report-Requested  Read-Reply-Report-Requested
        Signed 32-bit integer
        vendor=10415 code=1222
    diameter.Real-Time-Tariff-Information  Real-Time-Tariff-Information
        Byte array
        vendor=10415 code=2305
    diameter.Reason-Code  Reason-Code
        Signed 32-bit integer
        vendor=10415 code=616
    diameter.Reason-Info  Reason-Info
        String
        vendor=10415 code=617
    diameter.Received-Talk-Burst-Time  Received-Talk-Burst-Time
        Unsigned 32-bit integer
        vendor=10415 code=1284
    diameter.Received-Talk-Burst-Volume  Received-Talk-Burst-Volume
        Unsigned 32-bit integer
        vendor=10415 code=1285
    diameter.Recipient-Address  Recipient-Address
        String
        vendor=10415 code=1108
    diameter.Recipient-Received-Address  Recipient-Received-Address
        Byte array
        vendor=10415 code=2028
    diameter.Recipient-SCCP-Address  Recipient-SCCP-Address
        Byte array
        vendor=10415 code=2010
    diameter.Recipient-SCCP-Address.addr_family  Recipient-SCCP-Address Address Family
        Unsigned 16-bit integer
    diameter.Recipients  Recipients
        Byte array
        vendor=10415 code=2026
    diameter.Record-Route  Record-Route
        Byte array
        vendor=10415 code=646
    diameter.Redirect-Address-Type  Redirect-Address-Type
        Signed 32-bit integer
        code=433
    diameter.Redirect-Host  Redirect-Host
        String
        code=292
    diameter.Redirect-Host-Usage  Redirect-Host-Usage
        Signed 32-bit integer
        code=261
    diameter.Redirect-Max-Cache-Time  Redirect-Max-Cache-Time
        Unsigned 32-bit integer
        code=262
    diameter.Redirect-Server  Redirect-Server
        Byte array
        code=434
    diameter.Redirect-Server-Address  Redirect-Server-Address
        String
        code=435
    diameter.Refund-Information  Refund-Information
        Byte array
        vendor=10415 code=2022
    diameter.Regional-Subscription-Zone-Code  Regional-Subscription-Zone-Code
        Byte array
        vendor=10415 code=1446
    diameter.Remaining-Balance  Remaining-Balance
        Byte array
        vendor=10415 code=2021
    diameter.Reply-Applic-ID  Reply-Applic-ID
        String
        vendor=10415 code=1223
    diameter.Reply-Message  Reply-Message
        String
        code=18
    diameter.Reply-Path-Requested  Reply-Path-Requested
        Signed 32-bit integer
        vendor=10415 code=2011
    diameter.Reporting-Level  Reporting-Level
        Signed 32-bit integer
        vendor=10415 code=1011
    diameter.Reporting-Reason  Reporting-Reason
        Signed 32-bit integer
        vendor=10415 code=872
    diameter.Requested-Action  Requested-Action
        Unsigned 32-bit integer
        code=436
    diameter.Requested-Domain  Requested-Domain
        Unsigned 32-bit integer
        vendor=10415 code=706
    diameter.Requested-EUTRAN-Authentication-Info  Requested-EUTRAN-Authentication-Info
        Byte array
        vendor=10415 code=1408
    diameter.Requested-Information  Requested-Information
        Signed 32-bit integer
        vendor=13019 code=353
    diameter.Requested-Key-Lifetime  Requested-Key-Lifetime
        Unsigned 32-bit integer
        vendor=10415 code=415
    diameter.Requested-Location-Info  Requested-Location-Info
        Byte array
        code=132
    diameter.Requested-Nodes  Requested-Nodes
        Unsigned 32-bit integer
        vendor=10415 code=714
    diameter.Requested-Party-Address  Requested-Party-Address
        String
        vendor=10415 code=1251
    diameter.Requested-Service-Unit  Requested-Service-Unit
        Byte array
        code=437
    diameter.Requested-UTRAN-GERAN-Authentication-Info  Requested-UTRAN-GERAN-Authentication-Info
        Byte array
        vendor=10415 code=1409
    diameter.Requesting-Node-Type  Requesting-Node-Type
        Signed 32-bit integer
        vendor=10415 code=1455
    diameter.Required-MBMS-Bearer-Capabilities  Required-MBMS-Bearer-Capabilities
        String
        vendor=10415 code=901
    diameter.Reservation-Class  Reservation-Class
        Unsigned 32-bit integer
        vendor=13019 code=456
    diameter.Reservation-Priority  Reservation-Priority
        Signed 32-bit integer
        vendor=13019 code=458
    diameter.Reserved  Reserved
        Byte array
        code=241
    diameter.Resource-Allocation-Notification  Resource-Allocation-Notification
        Signed 32-bit integer
        vendor=10415 code=1063
    diameter.Restoration-Info  Restoration-Info
        Byte array
        vendor=10415 code=649
    diameter.Restricted-Filter-Rule  Restricted-Filter-Rule
        String
        code=438
    diameter.Result-Code  Result-Code
        Unsigned 32-bit integer
        code=268
    diameter.Result-Recipient-Address  Result-Recipient-Address
        Byte array
        vendor=10415 code=1106
    diameter.Revalidation-Time  Revalidation-Time
        Unsigned 32-bit integer
        vendor=10415 code=1042
    diameter.Roaming-Restricted-Due-To-Unsupported-Feature  Roaming-Restricted-Due-To-Unsupported-Feature
        Signed 32-bit integer
        vendor=10415 code=1457
    diameter.Role-Of-Node  Role-Of-Node
        Signed 32-bit integer
        vendor=10415 code=829
    diameter.Route-Record  Route-Record
        String
        code=282
    diameter.Routeing-Address  Routeing-Address
        String
        vendor=10415 code=1109
    diameter.Routeing-Address-Resolution  Routeing-Address-Resolution
        Signed 32-bit integer
        vendor=10415 code=1119
    diameter.Routing-Area-Identity  Routing-Area-Identity
        Byte array
        vendor=10415 code=1605
    diameter.Rule-Activation-Time  Rule-Activation-Time
        Unsigned 32-bit integer
        vendor=10415 code=1043
    diameter.Rule-DeActivation-Time  Rule-DeActivation-Time
        Unsigned 32-bit integer
        vendor=10415 code=1044
    diameter.Rule-Failure-Code  Rule-Failure-Code
        Signed 32-bit integer
        vendor=10415 code=1031
    diameter.SCSCF-Restoration-Info  SCSCF-Restoration-Info
        Byte array
        vendor=10415 code=639
    diameter.SDP-Answer-Timestamp  SDP-Answer-Timestamp
        Unsigned 32-bit integer
        vendor=10415 code=1275
    diameter.SDP-Media-Description  SDP-Media-Description
        String
        vendor=10415 code=845
    diameter.SDP-Media-Name  SDP-Media-Name
        String
        vendor=10415 code=844
    diameter.SDP-Media-components  SDP-Media-components
        Byte array
        vendor=10415 code=843
    diameter.SDP-Offer-Timestamp  SDP-Offer-Timestamp
        Unsigned 32-bit integer
        vendor=10415 code=1274
    diameter.SDP-Session-Description  SDP-Session-Description
        String
        vendor=10415 code=842
    diameter.SDP-TimeStamps  SDP-TimeStamps
        Byte array
        vendor=10415 code=1273
    diameter.SDP-Type  SDP-Type
        Signed 32-bit integer
        vendor=10415 code=2036
    diameter.SGSN-Address  SGSN-Address
        Byte array
        vendor=10415 code=1228
    diameter.SGSN-Address.addr_family  SGSN-Address Address Family
        Unsigned 16-bit integer
    diameter.SGSN-Location-Information  SGSN-Location-Information
        Byte array
        vendor=10415 code=1601
    diameter.SGSN-Number  SGSN-Number
        Byte array
        vendor=10415 code=1489
    diameter.SGSN-User-State  SGSN-User-State
        Byte array
        vendor=10415 code=1498
    diameter.SGW-Change  SGW-Change
        Signed 32-bit integer
        vendor=10415 code=2065
    diameter.SIP-AOR  SIP-AOR
        String
        code=122
    diameter.SIP-Accounting-Information  SIP-Accounting-Information
        Byte array
        code=368
    diameter.SIP-Accounting-Server-URI  SIP-Accounting-Server-URI
        String
        code=369
    diameter.SIP-Auth-Data-Item  SIP-Auth-Data-Item
        Byte array
        vendor=10415 code=612
    diameter.SIP-Authenticate  SIP-Authenticate
        Byte array
        vendor=10415 code=609
    diameter.SIP-Authentication-Context  SIP-Authentication-Context
        Byte array
        vendor=10415 code=611
    diameter.SIP-Authentication-Info  SIP-Authentication-Info
        Byte array
        code=381
    diameter.SIP-Authentication-Scheme  SIP-Authentication-Scheme
        String
        vendor=10415 code=608
    diameter.SIP-Authorization  SIP-Authorization
        Byte array
        vendor=10415 code=610
    diameter.SIP-Credit-Control-Server-URI  SIP-Credit-Control-Server-URI
        String
        code=370
    diameter.SIP-Deregistration-Reason  SIP-Deregistration-Reason
        Byte array
        code=383
    diameter.SIP-Digest-AuthenticateAVP  SIP-Digest-Authenticate AVP
        Byte array
        vendor=10415 code=635
    diameter.SIP-Forking-Indication  SIP-Forking-Indication
        Signed 32-bit integer
        vendor=10415 code=523
    diameter.SIP-Item-Number  SIP-Item-Number
        Unsigned 32-bit integer
        vendor=10415 code=613
    diameter.SIP-Mandatory-Capability  SIP-Mandatory-Capability
        Unsigned 32-bit integer
        code=373
    diameter.SIP-Method  SIP-Method
        String
        vendor=10415 code=824
    diameter.SIP-Number-Auth-Items  SIP-Number-Auth-Items
        Unsigned 32-bit integer
        vendor=10415 code=607
    diameter.SIP-Optional-Capability  SIP-Optional-Capability
        Unsigned 32-bit integer
        code=374
    diameter.SIP-Reason-Code  SIP-Reason-Code
        Signed 32-bit integer
        code=384
    diameter.SIP-Reason-Info  SIP-Reason-Info
        String
        code=385
    diameter.SIP-Request-Timestamp  SIP-Request-Timestamp
        Unsigned 32-bit integer
        vendor=10415 code=834
    diameter.SIP-Request-Timestamp-Fraction  SIP-Request-Timestamp-Fraction
        Unsigned 32-bit integer
        vendor=10415 code=2301
    diameter.SIP-Response-Timestamp  SIP-Response-Timestamp
        Unsigned 32-bit integer
        vendor=10415 code=835
    diameter.SIP-Response-Timestamp-Fraction  SIP-Response-Timestamp-Fraction
        Unsigned 32-bit integer
        vendor=10415 code=2302
    diameter.SIP-Server-Assignment-Type  SIP-Server-Assignment-Type
        Signed 32-bit integer
        code=375
    diameter.SIP-Server-Capabilities  SIP-Server-Capabilities
        Byte array
        code=372
    diameter.SIP-Server-URI  SIP-Server-URI
        String
        code=371
    diameter.SIP-Supported-User-Data-Type  SIP-Supported-User-Data-Type
        String
        code=388
    diameter.SIP-User-Authorization-Type  SIP-User-Authorization-Type
        Signed 32-bit integer
        code=387
    diameter.SIP-User-Data  SIP-User-Data
        Byte array
        code=389
    diameter.SIP-User-Data-Already-Available  SIP-User-Data-Already-Available
        Signed 32-bit integer
        code=392
    diameter.SIP-User-Data-Contents  SIP-User-Data-Contents
        Byte array
        code=391
    diameter.SIP-User-Data-Type  SIP-User-Data-Type
        String
        code=390
    diameter.SIP-Visited-Network-Id  SIP-Visited-Network-Id
        String
        code=386
    diameter.SM-Discharge-Time  SM-Discharge-Time
        Unsigned 32-bit integer
        vendor=10415 code=2012
    diameter.SM-Message-Type  SM-Message-Type
        Signed 32-bit integer
        vendor=10415 code=2007
    diameter.SM-Protocol-ID  SM-Protocol-ID
        Byte array
        vendor=10415 code=2013
    diameter.SM-Service-Type  SM-Service-Type
        Signed 32-bit integer
        vendor=10415 code=2029
    diameter.SM-Status  SM-Status
        Byte array
        vendor=10415 code=2014
    diameter.SM-User-Data-Header  SM-User-Data-Header
        Byte array
        vendor=10415 code=2015
    diameter.SMS-Information  SMS-Information
        Byte array
        vendor=10415 code=2000
    diameter.SMS-Node  SMS-Node
        Signed 32-bit integer
        vendor=10415 code=2016
    diameter.SMSC-Address  SMSC-Address
        Byte array
        vendor=10415 code=2017
    diameter.SMSC-Address.addr_family  SMSC-Address Address Family
        Unsigned 16-bit integer
    diameter.SRES  SRES
        Byte array
        vendor=10415 code=1454
    diameter.SS-Code  SS-Code
        Byte array
        vendor=10415 code=1476
    diameter.SS-Status  SS-Status
        Byte array
        vendor=10415 code=1477
    diameter.STN-SR  STN-SR
        Byte array
        vendor=10415 code=1433
    diameter.Scale-Factor  Scale-Factor
        Byte array
        vendor=10415 code=2059
    diameter.Secondary-CCF-Address  Secondary-CCF-Address
        String
        vendor=5535 code=1015
    diameter.Secondary-Charging-Collection-Function-Name  Secondary-Charging-Collection-Function-Name
        String
        vendor=10415 code=622
    diameter.Secondary-Event-Charging-Function-Name  Secondary-Event-Charging-Function-Name
        String
        vendor=10415 code=620
    diameter.Secondary-OCS-Address  Secondary-OCS-Address
        String
        vendor=5535 code=1016
    diameter.Security-Feature-Request  Security-Feature-Request
        Byte array
        vendor=10415 code=419
    diameter.Security-Feature-Response  Security-Feature-Response
        Byte array
        vendor=10415 code=420
    diameter.Security-Parameter-Index  Security-Parameter-Index
        Byte array
        vendor=10415 code=1056
    diameter.Send-Data-Indication  Send-Data-Indication
        Signed 32-bit integer
        vendor=10415 code=710
    diameter.Sender-Address  Sender-Address
        String
        vendor=10415 code=1104
    diameter.Sender-Visibility  Sender-Visibility
        Signed 32-bit integer
        vendor=10415 code=1113
    diameter.Sequence-Number  Sequence-Number
        Unsigned 32-bit integer
        vendor=10415 code=1107
    diameter.Served-Party-IP-Address  Served-Party-IP-Address
        Byte array
        vendor=10415 code=848
    diameter.Served-Party-IP-Address.addr_family  Served-Party-IP-Address Address Family
        Unsigned 16-bit integer
    diameter.Served-User-Identity  Served-User-Identity
        Byte array
        vendor=10415 code=1100
    diameter.Server-Assignment-Type  Server-Assignment-Type
        Signed 32-bit integer
        vendor=10415 code=614
    diameter.Server-Capabilities  Server-Capabilities
        Byte array
        vendor=10415 code=603
    diameter.Server-Name  Server-Name
        String
        vendor=10415 code=602
    diameter.Service-Area-Identity  Service-Area-Identity
        Byte array
        vendor=10415 code=1607
    diameter.Service-Class  Service-Class
        String
        vendor=13019 code=459
    diameter.Service-Configuration  Service-Configuration
        Byte array
        code=507
    diameter.Service-Context-Id  Service-Context-Id
        String
        code=461
    diameter.Service-Data-Container  Service-Data-Container
        Byte array
        vendor=10415 code=2040
    diameter.Service-Generic-Information  Service-Generic-Information
        Byte array
        vendor=10415 code=1256
    diameter.Service-ID  Service-ID
        String
        vendor=10415 code=855
    diameter.Service-Identifier  Service-Identifier
        Unsigned 32-bit integer
        code=439
    diameter.Service-Indication  Service-Indication
        Byte array
        vendor=10415 code=704
    diameter.Service-Info-Status  Service-Info-Status
        Signed 32-bit integer
        vendor=10415 code=527
    diameter.Service-Information  Service-Information
        Byte array
        vendor=10415 code=873
    diameter.Service-Key  Service-Key
        String
        vendor=10415 code=1114
    diameter.Service-Mode  Service-Mode
        Signed 32-bit integer
        vendor=10415 code=2032
    diameter.Service-Parameter-Info  Service-Parameter-Info
        Byte array
        code=440
    diameter.Service-Parameter-Type  Service-Parameter-Type
        Unsigned 32-bit integer
        code=441
    diameter.Service-Parameter-Value  Service-Parameter-Value
        Byte array
        code=442
    diameter.Service-Selection  Service-Selection
        String
        code=493
    diameter.Service-Specific-Data  Service-Specific-Data
        String
        vendor=10415 code=863
    diameter.Service-Specific-Info  Service-Specific-Info
        Byte array
        vendor=10415 code=1249
    diameter.Service-Specific-Type  Service-Specific-Type
        Unsigned 32-bit integer
        vendor=10415 code=1257
    diameter.Service-Type  Service-Type
        Signed 32-bit integer
        code=6
    diameter.Service-URN  Service-URN
        Byte array
        vendor=10415 code=525
    diameter.Service-type  Service-type
        Signed 32-bit integer
        vendor=10415 code=2031
    diameter.ServiceTypeIdentity  ServiceTypeIdentity
        Unsigned 32-bit integer
        vendor=10415 code=1484
    diameter.Serving-Node-Type  Serving-Node-Type
        Signed 32-bit integer
        vendor=10415 code=2047
    diameter.Session-Binding  Session-Binding
        Unsigned 32-bit integer
        code=270
    diameter.Session-Bundle-Id  Session-Bundle-Id
        Unsigned 32-bit integer
        vendor=13019 code=400
    diameter.Session-Id  Session-Id
        String
        code=263
    diameter.Session-Linking-Indicator  Session-Linking-Indicator
        Signed 32-bit integer
        vendor=10415 code=1064
    diameter.Session-Priority  Session-Priority
        Signed 32-bit integer
        vendor=10415 code=650
    diameter.Session-Release-Cause  Session-Release-Cause
        Signed 32-bit integer
        vendor=10415 code=1045
    diameter.Session-Server-Failover  Session-Server-Failover
        Unsigned 32-bit integer
        code=271
    diameter.Session-Timeout  Session-Timeout
        Unsigned 32-bit integer
        code=27
    diameter.Signature  Signature
        Byte array
        code=80
    diameter.Software-Version  Software-Version
        String
        vendor=10415 code=1403
    diameter.Specific-APN-Info  Specific-APN-Info
        Byte array
        vendor=10415 code=1472
    diameter.Specific-Action  Specific-Action
        Signed 32-bit integer
        vendor=10415 code=513
    diameter.Start-Time  Start-Time
        Unsigned 32-bit integer
        vendor=10415 code=2041
    diameter.State  State
        Byte array
        code=24
    diameter.Status  Status
        Byte array
        vendor=10415 code=1116
    diameter.Status-Code  Status-Code
        String
        vendor=10415 code=1117
    diameter.Status-Text  Status-Text
        String
        vendor=10415 code=1118
    diameter.Stop-Time  Stop-Time
        Unsigned 32-bit integer
        vendor=10415 code=2042
    diameter.Submission-Time  Submission-Time
        Unsigned 32-bit integer
        vendor=10415 code=1202
    diameter.Subs-Req-Type  Subs-Req-Type
        Unsigned 32-bit integer
        vendor=10415 code=705
    diameter.Subscriber-Role  Subscriber-Role
        Signed 32-bit integer
        vendor=10415 code=2033
    diameter.Subscriber-Status  Subscriber-Status
        Signed 32-bit integer
        vendor=10415 code=1424
    diameter.Subscription-Data  Subscription-Data
        Byte array
        vendor=10415 code=1400
    diameter.Subscription-Id  Subscription-Id
        Byte array
        code=443
    diameter.Subscription-Id-Data  Subscription-Id-Data
        String
        code=444
    diameter.Subscription-Id-Type  Subscription-Id-Type
        Unsigned 32-bit integer
        code=450
    diameter.Subscription-Info  Subscription-Info
        Byte array
        vendor=10415 code=642
    diameter.Supplementary-Service  Supplementary-Service
        Byte array
        vendor=10415 code=2048
    diameter.Supported-Applications  Supported-Applications
        Byte array
        vendor=10415 code=631
    diameter.Supported-Features  Supported-Features
        Byte array
        vendor=10415 code=628
    diameter.Supported-Vendor-Id  Supported-Vendor-Id
        Unsigned 32-bit integer
        code=265
    diameter.TFT-Filter  TFT-Filter
        String
        vendor=10415 code=1012
    diameter.TFT-Packet-Filter-Information  TFT-Packet-Filter-Information
        Byte array
        vendor=10415 code=1013
    diameter.TGPP2-MEID  TGPP2-MEID
        Byte array
        vendor=10415 code=1471
    diameter.TMGI  TMGI
        Byte array
        vendor=10415 code=900
    diameter.TMOD-1  TMOD-1
        Byte array
        code=495
    diameter.TMOD-2  TMOD-2
        Byte array
        code=501
    diameter.TS-Code  TS-Code
        Byte array
        vendor=10415 code=1487
    diameter.Talk-Burst-Exchange  Talk-Burst-Exchange
        Byte array
        vendor=10415 code=1255
    diameter.Talk-Burst-Time  Talk-Burst-Time
        Unsigned 32-bit integer
        vendor=10415 code=1286
    diameter.Talk-Burst-Volume  Talk-Burst-Volume
        Unsigned 32-bit integer
        vendor=10415 code=1287
    diameter.Tariff-Change-Usage  Tariff-Change-Usage
        Signed 32-bit integer
        code=452
    diameter.Tariff-Information  Tariff-Information
        Byte array
        vendor=10415 code=2060
    diameter.Tariff-Time-Change  Tariff-Time-Change
        Unsigned 32-bit integer
        code=451
    diameter.Tariff-XML  Tariff-XML
        String
        vendor=10415 code=2306
    diameter.Teleservice-List  Teleservice-List
        Byte array
        vendor=10415 code=1486
    diameter.Terminal-Information  Terminal-Information
        Byte array
        vendor=10415 code=1401
    diameter.Terminal-Type  Terminal-Type
        Byte array
        vendor=13019 code=352
    diameter.Terminating-IOI  Terminating-IOI
        String
        vendor=10415 code=840
    diameter.Termination-Action  Termination-Action
        Unsigned 32-bit integer
        code=29
    diameter.Termination-Cause  Termination-Cause
        Signed 32-bit integer
        code=295
    diameter.Time-First-Usage  Time-First-Usage
        Unsigned 32-bit integer
        vendor=10415 code=2043
    diameter.Time-Last-Usage  Time-Last-Usage
        Unsigned 32-bit integer
        vendor=10415 code=2044
    diameter.Time-Quota-Mechanism  Time-Quota-Mechanism
        Byte array
        vendor=10415 code=1270
    diameter.Time-Quota-Threshold  Time-Quota-Threshold
        Unsigned 32-bit integer
        vendor=10415 code=868
    diameter.Time-Quota-Type  Time-Quota-Type
        Signed 32-bit integer
        vendor=10415 code=1271
    diameter.Time-Stamps  Time-Stamps
        Byte array
        vendor=10415 code=833
    diameter.Time-Usage  Time-Usage
        Unsigned 32-bit integer
        vendor=10415 code=2045
    diameter.To-SIP-Header  To-SIP-Header
        Byte array
        vendor=10415 code=645
    diameter.ToS-Traffic-Class  ToS-Traffic-Class
        Byte array
        vendor=10415 code=1014
    diameter.Token-Rate  Token-Rate
        Single-precision floating point
        code=496
    diameter.Token-Text  Token-Text
        String
        vendor=10415 code=1215
    diameter.Total-Number-Of-Messages-Exploded  Total-Number-Of-Messages-Exploded
        Unsigned 32-bit integer
        vendor=10415 code=2113
    diameter.Total-Number-Of-Messages-Sen  Total-Number-Of-Messages-Sen
        Unsigned 32-bit integer
        vendor=10415 code=2114
    diameter.Trace-Collection-Entity  Trace-Collection-Entity
        Byte array
        vendor=10415 code=1452
    diameter.Trace-Collection-Entity.addr_family  Trace-Collection-Entity Address Family
        Unsigned 16-bit integer
    diameter.Trace-Data  Trace-Data
        Byte array
        vendor=10415 code=1458
    diameter.Trace-Depth  Trace-Depth
        Signed 32-bit integer
        vendor=10415 code=1462
    diameter.Trace-Event-List  Trace-Event-List
        Byte array
        vendor=10415 code=1465
    diameter.Trace-Info  Trace-Info
        Byte array
        vendor=10415 code=1505
    diameter.Trace-Interface-List  Trace-Interface-List
        Byte array
        vendor=10415 code=1464
    diameter.Trace-NE-Type-List  Trace-NE-Type-List
        Byte array
        vendor=10415 code=1463
    diameter.Trace-Reference  Trace-Reference
        Byte array
        vendor=10415 code=1459
    diameter.Tracking-Area-Identity  Tracking-Area-Identity
        Byte array
        vendor=10415 code=1603
    diameter.Traffic-Data-Volumes  Traffic-Data-Volumes
        Byte array
        vendor=10415 code=2046
    diameter.Transaction-Identifier  Transaction-Identifier
        Byte array
        vendor=10415 code=401
    diameter.Transport-Class  Transport-Class
        Unsigned 32-bit integer
        vendor=13019 code=311
    diameter.Trigger  Trigger
        Byte array
        vendor=10415 code=1264
    diameter.Trigger-Event  Trigger-Event
        Signed 32-bit integer
        vendor=10415 code=1103
    diameter.Trigger-Type  Trigger-Type
        Signed 32-bit integer
        vendor=10415 code=870
    diameter.Trunk-Group-ID  Trunk-Group-ID
        Byte array
        vendor=10415 code=851
    diameter.Tunnel-Assignment-Id  Tunnel-Assignment-Id
        Byte array
        code=82
    diameter.Tunnel-Client-Auth-Id  Tunnel-Client-Auth-Id
        String
        code=90
    diameter.Tunnel-Header-Filter  Tunnel-Header-Filter
        String
        vendor=10415 code=1036
    diameter.Tunnel-Header-Length  Tunnel-Header-Length
        Unsigned 32-bit integer
        vendor=10415 code=1037
    diameter.Tunnel-Information  Tunnel-Information
        Byte array
        vendor=10415 code=1038
    diameter.Tunnel-Medium-Type  Tunnel-Medium-Type
        Signed 32-bit integer
        code=65
    diameter.Tunnel-Password  Tunnel-Password
        Byte array
        code=69
    diameter.Tunnel-Preference  Tunnel-Preference
        Unsigned 32-bit integer
        code=83
    diameter.Tunnel-Private-Group-Id  Tunnel-Private-Group-Id
        Byte array
        code=81
    diameter.Tunnel-Server-Auth-Id  Tunnel-Server-Auth-Id
        String
        code=91
    diameter.Tunnel-Server-Endpoint  Tunnel-Server-Endpoint
        String
        code=67
    diameter.Tunnel-Type  Tunnel-Type
        Signed 32-bit integer
        code=64
    diameter.Tunneling  Tunneling
        Byte array
        code=401
    diameter.Type-Number  Type-Number
        Signed 32-bit integer
        vendor=10415 code=1204
    diameter.UAR-Flags  UAR-Flags
        Unsigned 32-bit integer
        vendor=10415 code=637
    diameter.UE-Id  UE-Id
        Byte array
        vendor=10415 code=411
    diameter.UE-Id-Type  UE-Id-Type
        Signed 32-bit integer
        vendor=10415 code=412
    diameter.UICC-App-Label  UICC-App-Label
        Byte array
        vendor=10415 code=413
    diameter.UICC-Key-Material  UICC-Key-Material
        Byte array
        vendor=10415 code=406
    diameter.UICC-ME  UICC-ME
        Signed 32-bit integer
        vendor=10415 code=414
    diameter.ULA-Flags  ULA-Flags
        Unsigned 32-bit integer
        vendor=10415 code=1406
    diameter.ULR-Flags  ULR-Flags
        Unsigned 32-bit integer
        vendor=10415 code=1405
    diameter.UMTS-Vector  UMTS-Vector
        Byte array
        vendor=10415 code=1415
    diameter.Unallocated  Unallocated
        Byte array
        code=288
    diameter.Unassigned  Unassigned
        Byte array
        code=17
    diameter.Unit-Cost  Unit-Cost
        Byte array
        vendor=10415 code=2061
    diameter.Unit-Quota-Threshold  Unit-Quota-Threshold
        Unsigned 32-bit integer
        vendor=10415 code=1226
    diameter.Unit-Value  Unit-Value
        Byte array
        code=445
    diameter.Usage-Monitoring-Information  Usage-Monitoring-Information
        Byte array
        vendor=10415 code=1067
    diameter.Usage-Monitoring-Level  Usage-Monitoring-Level
        Signed 32-bit integer
        vendor=10415 code=1068
    diameter.Usage-Monitoring-Report  Usage-Monitoring-Report
        Signed 32-bit integer
        vendor=10415 code=1069
    diameter.Usage-Monitoring-Support  Usage-Monitoring-Support
        Signed 32-bit integer
        vendor=10415 code=1070
    diameter.Used-Service-Unit  Used-Service-Unit
        Byte array
        code=446
    diameter.User-Authorization-Type  User-Authorization-Type
        Signed 32-bit integer
        vendor=10415 code=623
    diameter.User-Data  User-Data
        Byte array
        vendor=10415 code=606
    diameter.User-Data-Already-Available  User-Data-Already-Available
        Signed 32-bit integer
        vendor=10415 code=624
    diameter.User-Data-Request-TypeObsolete  User-Data-Request-Type(Obsolete)
        Unsigned 32-bit integer
        vendor=10415 code=627
    diameter.User-Equipment-Info  User-Equipment-Info
        Byte array
        code=458
    diameter.User-Equipment-Info-Type  User-Equipment-Info-Type
        Signed 32-bit integer
        code=459
    diameter.User-Equipment-Info-Value  User-Equipment-Info-Value
        Byte array
        code=460
    diameter.User-Id  User-Id
        String
        vendor=10415 code=1444
    diameter.User-Identity  User-Identity
        Byte array
        vendor=10415 code=700
    diameter.User-Name  User-Name
        String
        code=1
    diameter.User-Participating-Type  User-Participating-Type
        Signed 32-bit integer
        vendor=10415 code=1279
    diameter.User-Password  User-Password
        Byte array
        code=2
    diameter.User-Priority-Table  User-Priority-Table
        Byte array
        code=59
    diameter.User-Session-Id  User-Session-Id
        String
        vendor=10415 code=830
    diameter.User-State  User-State
        Signed 32-bit integer
        vendor=10415 code=1499
    diameter.V4-Transport-Address  V4-Transport-Address
        Byte array
        vendor=13019 code=454
    diameter.V6-Transport-address  V6-Transport-address
        Byte array
        vendor=13019 code=453
    diameter.VAS-ID  VAS-ID
        String
        vendor=10415 code=1102
    diameter.VASP-ID  VASP-ID
        String
        vendor=10415 code=1101
    diameter.VPLMN-Dynamic-Address-Allowed  VPLMN-Dynamic-Address-Allowed
        Signed 32-bit integer
        vendor=10415 code=1432
    diameter.Validity-Time  Validity-Time
        Unsigned 32-bit integer
        code=448
    diameter.Value-Digits  Value-Digits
        Signed 64-bit integer
        code=447
    diameter.Vendor-Id  Vendor-Id
        Unsigned 32-bit integer
        code=266
    diameter.Vendor-Specific  Vendor-Specific
        Unsigned 32-bit integer
        code=26
    diameter.Vendor-Specific-Application-Id  Vendor-Specific-Application-Id
        Byte array
        code=260
    diameter.Visited-Network-Identifier  Visited-Network-Identifier
        Byte array
        vendor=10415 code=600
    diameter.Visited-PLMN-Id  Visited-PLMN-Id
        Byte array
        vendor=10415 code=1407
    diameter.Volume-Quota-Threshold  Volume-Quota-Threshold
        Unsigned 32-bit integer
        vendor=10415 code=869
    diameter.WAG-Address  WAG-Address
        Byte array
        vendor=10415 code=890
    diameter.WAG-Address.addr_family  WAG-Address Address Family
        Unsigned 16-bit integer
    diameter.WAG-PLMN-Id  WAG-PLMN-Id
        Byte array
        vendor=10415 code=891
    diameter.WLAN-Information  WLAN-Information
        Byte array
        vendor=10415 code=875
    diameter.WLAN-Radio-Container  WLAN-Radio-Container
        Byte array
        vendor=10415 code=892
    diameter.WLAN-Session-Id  WLAN-Session-Id
        String
        vendor=10415 code=1246
    diameter.WLAN-Technology  WLAN-Technology
        Unsigned 32-bit integer
        vendor=10415 code=893
    diameter.WLAN-UE-Local-IPAddress  WLAN-UE-Local-IPAddress
        Byte array
        vendor=10415 code=894
    diameter.WLAN-UE-Local-IPAddress.addr_family  WLAN-UE-Local-IPAddress Address Family
        Unsigned 16-bit integer
    diameter.Wildcarded-IMPU  Wildcarded-IMPU
        String
        vendor=10415 code=636
    diameter.Wildcarded-PSI  Wildcarded-PSI
        String
        vendor=10415 code=634
    diameter.XRES  XRES
        Byte array
        vendor=10415 code=1448
    diameter.answer_in  Answer In
        Frame number
        The answer to this diameter request is in this frame
    diameter.answer_to  Request In
        Frame number
        This is an answer to the diameter request in this frame
    diameter.applicationId  ApplicationId
        Unsigned 32-bit integer
    diameter.avp  AVP
        Byte array
    diameter.avp.code  AVP Code
        Unsigned 32-bit integer
    diameter.avp.flags  AVP Flags
        Unsigned 8-bit integer
    diameter.avp.flags.protected  Protected
        Boolean
    diameter.avp.flags.reserved3  Reserved
        Boolean
    diameter.avp.flags.reserved4  Reserved
        Boolean
    diameter.avp.flags.reserved5  Reserved
        Boolean
    diameter.avp.flags.reserved6  Reserved
        Boolean
    diameter.avp.flags.reserved7  Reserved
        Boolean
    diameter.avp.invalid-data  Data
        Byte array
    diameter.avp.len  AVP Length
        Unsigned 24-bit integer
    diameter.avp.unknown  Value
        Byte array
    diameter.avp.vendorId  AVP Vendor Id
        Unsigned 32-bit integer
    diameter.cmd.code  Command Code
        Unsigned 32-bit integer
    diameter.endtoendid  End-to-End Identifier
        Unsigned 32-bit integer
    diameter.flags  Flags
        Unsigned 8-bit integer
    diameter.flags.T  T(Potentially re-transmitted message)
        Boolean
    diameter.flags.error  Error
        Boolean
    diameter.flags.mandatory  Mandatory
        Boolean
    diameter.flags.proxyable  Proxyable
        Boolean
    diameter.flags.request  Request
        Boolean
    diameter.flags.reserved4  Reserved
        Boolean
    diameter.flags.reserved5  Reserved
        Boolean
    diameter.flags.reserved6  Reserved
        Boolean
    diameter.flags.reserved7  Reserved
        Boolean
    diameter.flags.vendorspecific  Vendor-Specific
        Boolean
    diameter.hopbyhopid  Hop-by-Hop Identifier
        Unsigned 32-bit integer
    diameter.length  Length
        Unsigned 24-bit integer
    diameter.resp_time  Response Time
        Time duration
        The time between the request and the answer
    diameter.vendorId  VendorId
        Unsigned 32-bit integer
    diameter.version  Version
        Unsigned 8-bit integer

Digital Audio Access Protocol (daap)

    daap.name  Name
        String
        Tag Name
    daap.size  Size
        Unsigned 32-bit integer
        Tag Size

Digital Private Signalling System No 1 (dpnss)

    dpnss.a_b_party_addr  A/B party Address
        String
    dpnss.call_idx  Call Index
        String
    dpnss.cc_msg_type  Call Control Message Type
        Unsigned 8-bit integer
    dpnss.clearing_cause  Clearing Cause
        Unsigned 8-bit integer
    dpnss.dest_addr  Destination Address
        String
    dpnss.e2e_msg_type  END-TO-END Message Type
        Unsigned 8-bit integer
    dpnss.ext_bit  Extension bit
        Boolean
    dpnss.ext_bit_notall  Extension bit
        Boolean
    dpnss.lbl_msg_type  LINK-BY-LINK Message Type
        Unsigned 8-bit integer
    dpnss.maint_act  Maintenance action
        Unsigned 8-bit integer
    dpnss.man_code  Manufacturer Code
        Unsigned 8-bit integer
    dpnss.msg_grp_id  Message Group Identifier
        Unsigned 8-bit integer
    dpnss.rejection_cause  Rejection Cause
        Unsigned 8-bit integer
    dpnss.sic_details_data2  Data Rates
        Unsigned 8-bit integer
        Type of Data (011) : Data Rates
    dpnss.sic_details_for_data1  Data Rates
        Unsigned 8-bit integer
        Type of Data (010) : Data Rates
    dpnss.sic_details_for_speech  Details for Speech
        Unsigned 8-bit integer
    dpnss.sic_oct2_async_data  Data Format
        Unsigned 8-bit integer
    dpnss.sic_oct2_async_flow_ctrl  Flow Control
        Boolean
    dpnss.sic_oct2_data_type  Data Type
        Unsigned 8-bit integer
    dpnss.sic_oct2_duplex  Data Type
        Boolean
    dpnss.sic_oct2_sync_byte_timing  Byte Timing
        Boolean
    dpnss.sic_oct2_sync_data_format  Network Independent Clock
        Boolean
    dpnss.sic_type  Type of data
        Unsigned 8-bit integer
    dpnss.subcode  Subcode
        Unsigned 8-bit integer

Digital Private Signalling System No 1 Link Layer (dpnss_link)

    dpnss_link.crbit  C/R Bit
        Unsigned 8-bit integer
    dpnss_link.dlcId  DLC ID
        Unsigned 8-bit integer
    dpnss_link.dlcIdNr  DLC ID Number
        Unsigned 8-bit integer
    dpnss_link.extension  Extension
        Unsigned 8-bit integer
    dpnss_link.extension2  Extension
        Unsigned 8-bit integer
    dpnss_link.frameType  Frame Type
        Unsigned 8-bit integer
    dpnss_link.framegroup  Frame Group
        Unsigned 8-bit integer
    dpnss_link.reserved  Reserved
        Unsigned 8-bit integer

Direct Message Profile (dmp)

    dmp.ack  Acknowledgement
        No value
    dmp.ack_diagnostic  Ack Diagnostic
        Unsigned 8-bit integer
        Diagnostic
    dmp.ack_reason  Ack Reason
        Unsigned 8-bit integer
        Reason
    dmp.ack_rec_list  Recipient List
        No value
    dmp.acp127recip  ACP127 Recipient
        NULL terminated string
        ACP 127 Recipient
    dmp.acp127recip_len  ACP127 Recipient
        Unsigned 8-bit integer
        ACP 127 Recipient Length
    dmp.action  Action
        Boolean
    dmp.addr_encoding  Address Encoding
        Boolean
    dmp.addr_ext  Address Extended
        Boolean
    dmp.addr_form  Address Form
        Unsigned 8-bit integer
    dmp.addr_length  Address Length
        Unsigned 8-bit integer
    dmp.addr_length1  Address Length (bits 4-0)
        Unsigned 8-bit integer
    dmp.addr_length2  Address Length (bits 9-5)
        Unsigned 8-bit integer
    dmp.addr_type  Address Type
        Unsigned 8-bit integer
    dmp.addr_type_ext  Address Type Extended
        Unsigned 8-bit integer
    dmp.addr_unknown  Unknown encoded address
        Byte array
    dmp.analysis.ack_first_sent_in  Retransmission of Acknowledgement sent in
        Frame number
        This Acknowledgement was first sent in this frame
    dmp.analysis.ack_in  Acknowledgement in
        Frame number
        This packet has an Acknowledgement in this frame
    dmp.analysis.ack_missing  Acknowledgement missing
        No value
        The acknowledgement for this packet is missing
    dmp.analysis.ack_time  Acknowledgement Time
        Time duration
        The time between the Message and the Acknowledge
    dmp.analysis.dup_ack_no  Duplicate ACK #
        Unsigned 32-bit integer
        Duplicate Acknowledgement count
    dmp.analysis.msg_first_sent_in  Retransmission of Message sent in
        Frame number
        This Message was first sent in this frame
    dmp.analysis.msg_in  Message in
        Frame number
        This packet has a Message in this frame
    dmp.analysis.msg_missing  Message missing
        No value
        The Message for this packet is missing
    dmp.analysis.notif_first_sent_in  Retransmission of Notification sent in
        Frame number
        This Notification was first sent in this frame
    dmp.analysis.notif_in  Notification in
        Frame number
        This packet has a Notification in this frame
    dmp.analysis.notif_time  Notification Reply Time
        Time duration
        The time between the Message and the Notification
    dmp.analysis.report_first_sent_in  Retransmission of Report sent in
        Frame number
        This Report was first sent in this frame
    dmp.analysis.report_in  Report in
        Frame number
        This packet has a Report in this frame
    dmp.analysis.report_time  Report Reply Time
        Time duration
        The time between the Message and the Report
    dmp.analysis.retrans_no  Retransmission #
        Unsigned 32-bit integer
        Retransmission count
    dmp.analysis.retrans_time  Retransmission Time
        Time duration
        The time between the last Message and this Message
    dmp.analysis.total_retrans_time  Total Retransmission Time
        Time duration
        The time between the first Message and this Message
    dmp.analysis.total_time  Total Time
        Time duration
        The time between the first Message and the Acknowledge
    dmp.asn1_per  ASN.1 PER-encoded OR-name
        Byte array
    dmp.auth_discarded  Authorizing users discarded
        Boolean
    dmp.body  Message Body
        No value
    dmp.body.compression  Compression
        Unsigned 8-bit integer
    dmp.body.data  User data
        No value
    dmp.body.eit  EIT
        Unsigned 8-bit integer
        Encoded Information Type
    dmp.body.id  Structured Id
        Unsigned 8-bit integer
        Structured Body Id (1 byte)
    dmp.body.plain  Message Body
        String
    dmp.body.structured  Structured Body
        Byte array
    dmp.body.uncompressed  Uncompressed User data
        No value
    dmp.body_format  Body format
        Unsigned 8-bit integer
    dmp.checksum  Checksum
        Unsigned 16-bit integer
    dmp.checksum_bad  Bad
        Boolean
        True: checksum doesn't match packet content; False: matches content or not checked
    dmp.checksum_good  Good
        Boolean
        True: checksum matches packet content; False: doesn't match content or not checked
    dmp.checksum_used  Checksum
        Boolean
        Checksum Used
    dmp.cont_id_discarded  Content Identifier discarded
        Boolean
        Content identifier discarded
    dmp.content_type  Content Type
        Unsigned 8-bit integer
    dmp.delivery_time  Delivery Time
        Unsigned 8-bit integer
    dmp.direct_addr  Direct Address
        Unsigned 8-bit integer
    dmp.direct_addr1  Direct Address (bits 6-0)
        Unsigned 8-bit integer
    dmp.direct_addr2  Direct Address (bits 12-7)
        Unsigned 8-bit integer
    dmp.direct_addr3  Direct Address (bits 18-13)
        Unsigned 8-bit integer
    dmp.dl_expansion_prohib  DL expansion prohibited
        Boolean
    dmp.dr  Delivery Report
        No value
    dmp.dtg  DTG
        Unsigned 8-bit integer
    dmp.dtg.sign  DTG in the
        Boolean
        Sign
    dmp.dtg.val  DTG Value
        Unsigned 8-bit integer
    dmp.envelope  Envelope
        No value
    dmp.envelope_flags  Flags
        Unsigned 8-bit integer
        Envelope Flags
    dmp.expiry_time  Expiry Time
        Unsigned 8-bit integer
    dmp.expiry_time_val  Expiry Time Value
        Unsigned 8-bit integer
    dmp.ext_rec_count  Extended Recipient Count
        Unsigned 16-bit integer
    dmp.heading_flags  Heading Flags
        No value
    dmp.hop_count  Hop Count
        Unsigned 8-bit integer
    dmp.id  DMP Identifier
        Unsigned 16-bit integer
        DMP identifier
    dmp.importance  Importance
        Unsigned 8-bit integer
    dmp.info_present  Info Present
        Boolean
    dmp.message  Message Content
        No value
    dmp.mission_pol_id  Mission Policy Identifier
        Unsigned 8-bit integer
    dmp.msg_id  Message Identifier
        Unsigned 16-bit integer
        Message identifier
    dmp.msg_type  Message type
        Unsigned 8-bit integer
    dmp.nat_pol_id  National Policy Identifier
        Unsigned 8-bit integer
    dmp.ndr  Non-Delivery Report
        No value
    dmp.not_req  Notification Request
        Unsigned 8-bit integer
    dmp.notif_discard_reason  Discard Reason
        Unsigned 8-bit integer
    dmp.notif_non_rec_reason  Non-Receipt Reason
        Unsigned 8-bit integer
    dmp.notif_on_type  ON Type
        Unsigned 8-bit integer
    dmp.notif_type  Notification Type
        Unsigned 8-bit integer
    dmp.notification  Notification Content
        No value
    dmp.nrn  Non-Receipt Notification (NRN)
        No value
    dmp.on  Other Notification (ON)
        No value
    dmp.or_name  ASN.1 BER-encoded OR-name
        No value
    dmp.originator  Originator
        No value
    dmp.precedence  Precedence
        Unsigned 8-bit integer
    dmp.protocol_id  Protocol Identifier
        Unsigned 8-bit integer
    dmp.rec_count  Recipient Count
        Unsigned 8-bit integer
    dmp.rec_no  Recipient Number
        Unsigned 32-bit integer
        Recipient Number Offset
    dmp.rec_no_ext  Recipient Number Extended
        Boolean
    dmp.rec_no_offset  Recipient Number Offset
        Unsigned 8-bit integer
    dmp.rec_no_offset1  Recipient Number (bits 3-0)
        Unsigned 8-bit integer
        Recipient Number (bits 3-0) Offset
    dmp.rec_no_offset2  Recipient Number (bits 9-4)
        Unsigned 8-bit integer
        Recipient Number (bits 9-4) Offset
    dmp.rec_no_offset3  Recipient Number (bits 14-10)
        Unsigned 8-bit integer
        Recipient Number (bits 14-10) Offset
    dmp.rec_present  Recipient Present
        Boolean
    dmp.receipt_time  Receipt Time
        Unsigned 8-bit integer
        Receipt time
    dmp.receipt_time_val  Receipt Time Value
        Unsigned 8-bit integer
    dmp.recip_reassign_prohib  Recipient reassign prohibited
        Boolean
        Recipient Reassign prohibited
    dmp.recipient  Recipient Number
        No value
        Recipient
    dmp.rep_rec  Report Request
        Unsigned 8-bit integer
    dmp.report  Report Content
        No value
    dmp.report_diagnostic  Diagnostic (X.411)
        Unsigned 8-bit integer
        Diagnostic
    dmp.report_reason  Reason (X.411)
        Unsigned 8-bit integer
        Reason
    dmp.report_type  Report Type
        Boolean
    dmp.reporting_name  Reporting Name Number
        No value
        Reporting Name
    dmp.reserved  Reserved
        Unsigned 8-bit integer
    dmp.rn  Receipt Notification (RN)
        No value
    dmp.sec_cat  Security Categories
        Unsigned 8-bit integer
    dmp.sec_cat.bit0  Bit 0
        Boolean
    dmp.sec_cat.bit1  Bit 1
        Boolean
    dmp.sec_cat.bit2  Bit 2
        Boolean
    dmp.sec_cat.bit3  Bit 3
        Boolean
    dmp.sec_cat.bit4  Bit 4
        Boolean
    dmp.sec_cat.bit5  Bit 5
        Boolean
    dmp.sec_cat.bit6  Bit 6
        Boolean
    dmp.sec_cat.bit7  Bit 7
        Boolean
    dmp.sec_cat.cl  Clear
        Boolean
    dmp.sec_cat.cs  Crypto Security
        Boolean
    dmp.sec_cat.ex  Exclusive
        Boolean
    dmp.sec_cat.ne  National Eyes Only
        Boolean
    dmp.sec_class  Security Classification
        Unsigned 8-bit integer
    dmp.sec_pol  Security Policy
        Unsigned 8-bit integer
    dmp.sic  SIC
        String
    dmp.sic_bitmap  Length Bitmap (0 = 3 bytes, 1 = 4-8 bytes)
        Unsigned 8-bit integer
        SIC Length Bitmap
    dmp.sic_bits  Bit 7-4
        Unsigned 8-bit integer
        SIC Bit 7-4, Characters [A-Z0-9] only
    dmp.sic_bits_any  Bit 7-4
        Unsigned 8-bit integer
        SIC Bit 7-4, Any valid characters
    dmp.sic_key  SICs
        No value
        SIC Content
    dmp.sic_key.chars  Valid Characters
        Boolean
        SIC Valid Characters
    dmp.sic_key.num  Number of SICs
        Unsigned 8-bit integer
    dmp.sic_key.type  Type
        Unsigned 8-bit integer
        SIC Content Type
    dmp.sic_key.values  Content Byte
        Unsigned 8-bit integer
        SIC Content Byte
    dmp.subj_id  Subject Message Identifier
        Unsigned 16-bit integer
    dmp.subject  Subject
        NULL terminated string
    dmp.subject_discarded  Subject discarded
        Boolean
    dmp.subm_time  Submission Time
        Unsigned 16-bit integer
    dmp.subm_time_value  Submission Time Value
        Unsigned 16-bit integer
    dmp.suppl_info  Supplementary Information
        NULL terminated string
    dmp.suppl_info_len  Supplementary Information
        Unsigned 8-bit integer
        Supplementary Information Length
    dmp.time_diff  Time Difference
        Unsigned 8-bit integer
    dmp.time_diff_present  Time Diff
        Boolean
        Time Diff Present
    dmp.time_diff_value  Time Difference Value
        Unsigned 8-bit integer
    dmp.version  Protocol Version
        Unsigned 8-bit integer

DirectPlay Protocol (dplay)

    dplay.command  DirectPlay command
        Unsigned 16-bit integer
    dplay.command_2  DirectPlay second command
        Unsigned 16-bit integer
    dplay.dialect.version  DirectPlay dialect version
        Unsigned 16-bit integer
    dplay.dialect.version_2  DirectPlay second dialect version
        Unsigned 16-bit integer
    dplay.dplay_str  DirectPlay action string
        String
    dplay.dplay_str_2  DirectPlay second action string
        String
    dplay.flags  DirectPlay session desc flags
        Unsigned 32-bit integer
    dplay.flags.acq_voice  acquire voice
        Boolean
        Acq Voice
    dplay.flags.can_join  can join
        Boolean
        Can Join
    dplay.flags.ignored  ignored
        Boolean
        Ignored
    dplay.flags.migrate_host  migrate host flag
        Boolean
        Migrate Host
    dplay.flags.no_create_players  no create players flag
        Boolean
        No Create Players
    dplay.flags.no_player_updates  no player updates
        Boolean
        No Player Updates
    dplay.flags.no_sess_desc  no session desc changes
        Boolean
        No Sess Desc Changes
    dplay.flags.opt_latency  optimize for latency
        Boolean
        Opt Latency
    dplay.flags.order  preserve order
        Boolean
        Order
    dplay.flags.pass_req  password required
        Boolean
        Pass Req
    dplay.flags.priv_sess  private session
        Boolean
        Priv Session
    dplay.flags.reliable  use reliable protocol
        Boolean
        Reliable
    dplay.flags.route  route via game host
        Boolean
        Route
    dplay.flags.short_player_msg  short player message
        Boolean
        Short Player Msg
    dplay.flags.srv_p_only  get server player only
        Boolean
        Svr Player Only
    dplay.flags.unused  unused
        Boolean
        Unused
    dplay.flags.use_auth  use authentication
        Boolean
        Use Auth
    dplay.flags.use_ping  use ping
        Boolean
        Use Ping
    dplay.game.guid  DirectPlay game GUID
        Globally Unique Identifier
    dplay.instance.guid  DirectPlay instance guid
        Globally Unique Identifier
    dplay.message.guid  Message GUID
        Globally Unique Identifier
    dplay.multi.create_offset  Offset to PackedPlayer struct
        Unsigned 32-bit integer
    dplay.multi.group_id  Group ID
        Byte array
    dplay.multi.id_to  ID to
        Byte array
    dplay.multi.password  Password
        String
    dplay.multi.password_offset  Offset to password
        Unsigned 32-bit integer
    dplay.multi.player_id  Player ID
        Byte array
    dplay.ping.id_from  ID From
        Byte array
    dplay.ping.tick_count  Tick Count
        Unsigned 32-bit integer
    dplay.player_msg  DirectPlay Player to Player message
        Byte array
    dplay.pp.dialect  PackedPlayer dialect version
        Unsigned 32-bit integer
    dplay.pp.fixed_size  PackedPlayer fixed size
        Unsigned 32-bit integer
    dplay.pp.flags  PackedPlayer flags
        Unsigned 32-bit integer
    dplay.pp.flags.in_group  in group
        Boolean
    dplay.pp.flags.nameserver  is name server
        Boolean
    dplay.pp.flags.sending  sending player on local machine
        Boolean
    dplay.pp.flags.sysplayer  is system player
        Boolean
    dplay.pp.id  PackedPlayer ID
        Byte array
    dplay.pp.long_name_len  PackedPlayer long name length
        Unsigned 32-bit integer
    dplay.pp.parent_id  PackedPlayer parent ID
        Byte array
    dplay.pp.player_count  PackedPlayer player count
        Unsigned 32-bit integer
    dplay.pp.player_data  PackedPlayer player data
        Byte array
    dplay.pp.player_data_size  PackedPlayer player data size
        Unsigned 32-bit integer
    dplay.pp.player_id  PackedPlayer player ID
        Byte array
    dplay.pp.short_name  PackedPlayer short name
        String
    dplay.pp.short_name_len  PackedPlayer short name length
        Unsigned 32-bit integer
    dplay.pp.size  PackedPlayer size
        Unsigned 32-bit integer
    dplay.pp.sp_data  PackedPlayer service provider data
        Byte array
    dplay.pp.sp_data_size  PackedPlayer service provider data size
        Unsigned 32-bit integer
    dplay.pp.sysplayer_id  PackedPlayer system player ID
        Byte array
    dplay.pp.unknown_1  PackedPlayer unknown 1
        Byte array
    dplay.saddr.af  DirectPlay s_addr_in address family
        Unsigned 16-bit integer
    dplay.saddr.ip  DirectPlay s_addr_in ip address
        IPv4 address
    dplay.saddr.padding  DirectPlay s_addr_in null padding
        Byte array
    dplay.saddr.port  DirectPlay s_addr_in port
        Unsigned 16-bit integer
    dplay.sd.capi  SecDesc CAPI provider ptr
        Byte array
    dplay.sd.capi_type  SecDesc CAPI provider type
        Unsigned 32-bit integer
    dplay.sd.enc_alg  SecDesc encryption algorithm
        Unsigned 32-bit integer
    dplay.sd.flags  SecDesc flags
        Unsigned 32-bit integer
    dplay.sd.size  SecDesc struct size
        Unsigned 32-bit integer
    dplay.sd.sspi  SecDesc SSPI provider ptr
        Byte array
    dplay.sess_desc.curr_players  DirectPlay current players
        Unsigned 32-bit integer
    dplay.sess_desc.length  DirectPlay session desc length
        Unsigned 32-bit integer
    dplay.sess_desc.max_players  DirectPlay max players
        Unsigned 32-bit integer
    dplay.sess_desc.name_ptr  Session description name pointer placeholder
        Byte array
    dplay.sess_desc.pw_ptr  Session description password pointer placeholder
        Byte array
    dplay.sess_desc.res_1  Session description reserved 1
        Byte array
    dplay.sess_desc.res_2  Session description reserved 2
        Byte array
    dplay.sess_desc.user_1  Session description user defined 1
        Byte array
    dplay.sess_desc.user_2  Session description user defined 2
        Byte array
    dplay.sess_desc.user_3  Session description user defined 3
        Byte array
    dplay.sess_desc.user_4  Session description user defined 4
        Byte array
    dplay.size  DirectPlay package size
        Unsigned 32-bit integer
    dplay.spp.dialect  SuperPackedPlayer dialect version
        Unsigned 32-bit integer
    dplay.spp.flags  SuperPackedPlayer flags
        Unsigned 32-bit integer
    dplay.spp.flags.in_group  in group
        Boolean
    dplay.spp.flags.nameserver  is name server
        Boolean
    dplay.spp.flags.sending  sending player on local machine
        Boolean
    dplay.spp.flags.sysplayer  is system player
        Boolean
    dplay.spp.id  SuperPackedPlayer ID
        Byte array
    dplay.spp.parent_id  SuperPackedPlayer parent ID
        Byte array
    dplay.spp.pd_length  SuperPackedPlayer player data length
        Unsigned 32-bit integer
    dplay.spp.pim  SuperPackedPlayer player info mask
        Unsigned 32-bit integer
    dplay.spp.pim.long_name  SuperPackedPlayer have long name
        Unsigned 32-bit integer
    dplay.spp.pim.parent_id  SuperPackedPlayer have parent ID
        Unsigned 32-bit integer
    dplay.spp.pim.pd_length  SuperPackedPlayer player data length info
        Unsigned 32-bit integer
    dplay.spp.pim.player_count  SuperPackedPlayer player count info
        Unsigned 32-bit integer
    dplay.spp.pim.short_name  SuperPackedPlayer have short name
        Unsigned 32-bit integer
    dplay.spp.pim.shortcut_count  SuperPackedPlayer shortcut count info
        Unsigned 32-bit integer
    dplay.spp.pim.sp_length  SuperPackedPlayer service provider length info
        Unsigned 32-bit integer
    dplay.spp.player_count  SuperPackedPlayer player count
        Unsigned 32-bit integer
    dplay.spp.player_data  SuperPackedPlayer player data
        Byte array
    dplay.spp.player_id  SuperPackedPlayer player ID
        Byte array
    dplay.spp.short_name  SuperPackedPlayer short name
        String
    dplay.spp.shortcut_count  SuperPackedPlayer shortcut count
        Unsigned 32-bit integer
    dplay.spp.shortcut_id  SuperPackedPlayer shortcut ID
        Byte array
    dplay.spp.size  SuperPackedPlayer size
        Unsigned 32-bit integer
    dplay.spp.sp_data  SuperPackedPlayer service provider data
        Byte array
    dplay.spp.sp_data_length  SuperPackedPlayer service provider data length
        Unsigned 32-bit integer
    dplay.spp.sysplayer_id  SuperPackedPlayer system player ID
        Byte array
    dplay.token  DirectPlay token
        Unsigned 32-bit integer
    dplay.type02.all  Enumerate all sessions
        Boolean
        All
    dplay.type02.flags  Enum Session flags
        Unsigned 32-bit integer
    dplay.type02.game.guid  DirectPlay game GUID
        Globally Unique Identifier
    dplay.type02.joinable  Enumerate joinable sessions
        Boolean
        Joinable
    dplay.type02.password  Session password
        String
    dplay.type02.password_offset  Enum Sessions password offset
        Unsigned 32-bit integer
    dplay.type02.pw_req  Enumerate sessions requiring a password
        Boolean
        Password
    dplay.type_01.game_name  Enum Session Reply game name
        String
    dplay.type_01.name_offs  Enum Session Reply name offset
        Unsigned 32-bit integer
    dplay.type_05.flags  Player ID request flags
        Unsigned 32-bit integer
    dplay.type_05.flags.local  is local player
        Boolean
    dplay.type_05.flags.name_server  is name server
        Boolean
    dplay.type_05.flags.secure  is secure session
        Boolean
    dplay.type_05.flags.sys_player  is system player
        Boolean
    dplay.type_05.flags.unknown  unknown
        Boolean
    dplay.type_07.capi  CAPI provider
        String
    dplay.type_07.capi_offset  CAPI provider offset
        Unsigned 32-bit integer
    dplay.type_07.dpid  DirectPlay ID
        Byte array
    dplay.type_07.hresult  Request player HRESULT
        Unsigned 32-bit integer
    dplay.type_07.sspi  SSPI provider
        String
    dplay.type_07.sspi_offset  SSPI provider offset
        Unsigned 32-bit integer
    dplay.type_0f.data_offset  Data Offset
        Unsigned 32-bit integer
    dplay.type_0f.id_to  ID to
        Byte array
    dplay.type_0f.player_data  Player Data
        Byte array
    dplay.type_0f.player_id  Player ID
        Byte array
    dplay.type_13.create_offset  Create Offset
        Unsigned 32-bit integer
    dplay.type_13.group_id  Group ID
        Byte array
    dplay.type_13.id_to  ID to
        Byte array
    dplay.type_13.password  Password
        String
    dplay.type_13.password_offset  Password Offset
        Unsigned 32-bit integer
    dplay.type_13.player_id  Player ID
        Byte array
    dplay.type_13.tick_count  Tick count? Looks like an ID
        Byte array
    dplay.type_15.data_size  Data Size
        Unsigned 32-bit integer
    dplay.type_15.message.size  Message size
        Unsigned 32-bit integer
    dplay.type_15.offset  Offset
        Unsigned 32-bit integer
    dplay.type_15.packet_idx  Packet Index
        Unsigned 32-bit integer
    dplay.type_15.packet_offset  Packet offset
        Unsigned 32-bit integer
    dplay.type_15.total_packets  Total Packets
        Unsigned 32-bit integer
    dplay.type_1a.id_to  ID From
        Byte array
    dplay.type_1a.password  Password
        String
    dplay.type_1a.password_offset  Password Offset
        Unsigned 32-bit integer
    dplay.type_1a.sess_name_ofs  Session Name Offset
        Unsigned 32-bit integer
    dplay.type_1a.session_name  Session Name
        String
    dplay.type_29.desc_offset  SuperEnumPlayers Reply description offset
        Unsigned 32-bit integer
    dplay.type_29.game_name  SuperEnumPlayers Reply game name
        String
    dplay.type_29.group_count  SuperEnumPlayers Reply group count
        Unsigned 32-bit integer
    dplay.type_29.id  ID of the forwarded player
        Byte array
    dplay.type_29.name_offset  SuperEnumPlayers Reply name offset
        Unsigned 32-bit integer
    dplay.type_29.packed_offset  SuperEnumPlayers Reply packed offset
        Unsigned 32-bit integer
    dplay.type_29.pass_offset  SuperEnumPlayers Reply password offset
        Unsigned 32-bit integer
    dplay.type_29.password  SuperEnumPlayers Reply Password
        String
    dplay.type_29.player_count  SuperEnumPlayers Reply player count
        Unsigned 32-bit integer
    dplay.type_29.shortcut_count  SuperEnumPlayers Reply shortcut count
        Unsigned 32-bit integer

Distance Vector Multicast Routing Protocol (dvmrp)

    dvmrp.afi  Address Family
        Unsigned 8-bit integer
        DVMRP Address Family Indicator
    dvmrp.cap.genid  Genid
        Boolean
        Genid capability
    dvmrp.cap.leaf  Leaf
        Boolean
    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
    dvmrp.daddr  Dest Addr
        IPv4 address
        DVMRP Destination Address
    dvmrp.dest_unreach  Destination Unreachable
        Boolean
    dvmrp.flag.disabled  Disabled
        Boolean
        Administrative status down
    dvmrp.flag.down  Down
        Boolean
        Operational status down
    dvmrp.flag.leaf  Leaf
        Boolean
        No downstream neighbors on interface
    dvmrp.flag.querier  Querier
        Boolean
        Querier for interface
    dvmrp.flag.srcroute  Source Route
        Boolean
        Tunnel uses IP source routing
    dvmrp.flag.tunnel  Tunnel
        Boolean
        Neighbor reached via tunnel
    dvmrp.flags  Flags
        No value
        DVMRP Interface Flags
    dvmrp.genid  Generation ID
        Unsigned 32-bit integer
        DVMRP Generation ID
    dvmrp.hold  Hold Time
        Unsigned 32-bit integer
        DVMRP Hold Time in seconds
    dvmrp.infinity  Infinity
        Unsigned 8-bit integer
        DVMRP Infinity
    dvmrp.lifetime  Prune lifetime
        Unsigned 32-bit integer
        DVMRP Prune Lifetime
    dvmrp.local  Local Addr
        IPv4 address
        DVMRP Local Address
    dvmrp.maddr  Multicast Addr
        IPv4 address
        DVMRP Multicast Address
    dvmrp.maj_ver  Major Version
        Unsigned 8-bit integer
        DVMRP Major Version
    dvmrp.metric  Metric
        Unsigned 8-bit integer
        DVMRP Metric
    dvmrp.min_ver  Minor Version
        Unsigned 8-bit integer
        DVMRP Minor Version
    dvmrp.ncount  Neighbor Count
        Unsigned 8-bit integer
        DVMRP Neighbor Count
    dvmrp.neighbor  Neighbor Addr
        IPv4 address
        DVMRP Neighbor Address
    dvmrp.netmask  Netmask
        IPv4 address
        DVMRP Netmask
    dvmrp.route  Route
        No value
        DVMRP V3 Route Report
    dvmrp.saddr  Source Addr
        IPv4 address
        DVMRP Source Address
    dvmrp.split_horiz  Split Horizon
        Boolean
        Split Horizon concealed route
    dvmrp.threshold  Threshold
        Unsigned 8-bit integer
        DVMRP Interface Threshold
    dvmrp.type  Type
        Unsigned 8-bit integer
        DVMRP Packet Type
    dvmrp.v1.code  Code
        Unsigned 8-bit integer
        DVMRP Packet Code
    dvmrp.v3.code  Code
        Unsigned 8-bit integer
        DVMRP Packet Code
    dvmrp.version  DVMRP Version
        Unsigned 8-bit integer

Distcc Distributed Compiler (distcc)

    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

Distributed Checksum Clearinghouse protocol (dcc)

    dcc.adminop  Admin Op
        Unsigned 8-bit integer
    dcc.adminval  Admin Value
        Unsigned 32-bit integer
    dcc.brand  Server Brand
        String
    dcc.checksum.length  Length
        Unsigned 8-bit integer
        Checksum Length
    dcc.checksum.sum  Sum
        Byte array
        Checksum
    dcc.checksum.type  Type
        Unsigned 8-bit integer
        Checksum Type
    dcc.clientid  Client ID
        Unsigned 32-bit integer
    dcc.date  Date
        Date/Time stamp
    dcc.floodop  Flood Control Operation
        Unsigned 32-bit integer
    dcc.len  Packet Length
        Unsigned 16-bit integer
    dcc.max_pkt_vers  Maximum Packet Version
        Unsigned 8-bit integer
    dcc.op  Operation Type
        Unsigned 8-bit integer
    dcc.opnums.host  Host
        Unsigned 32-bit integer
    dcc.opnums.pid  Process ID
        Unsigned 32-bit integer
    dcc.opnums.report  Report
        Unsigned 32-bit integer
    dcc.opnums.retrans  Retransmission
        Unsigned 32-bit integer
    dcc.pkt_vers  Packet Version
        Unsigned 16-bit integer
    dcc.qdelay_ms  Client Delay
        Unsigned 16-bit integer
    dcc.signature  Signature
        Byte array
    dcc.target  Target
        Unsigned 32-bit integer
    dcc.trace  Trace Bits
        Unsigned 32-bit integer
    dcc.trace.admin  Admin Requests
        Boolean
    dcc.trace.anon  Anonymous Requests
        Boolean
    dcc.trace.client  Authenticated Client Requests
        Boolean
    dcc.trace.flood  Input/Output Flooding
        Boolean
    dcc.trace.query  Queries and Reports
        Boolean
    dcc.trace.ridc  RID Cache Messages
        Boolean
    dcc.trace.rlim  Rate-Limited Requests
        Boolean

Distributed Interactive Simulation (dis)

    dis.category.air  Category / Air
        Unsigned 8-bit integer
    dis.category.land  Category / Land
        Unsigned 8-bit integer
    dis.category.radio  Category / Radio
        Unsigned 8-bit integer
    dis.category.space  Category / Space
        Unsigned 8-bit integer
    dis.category.subsurface  Category / Subsurface
        Unsigned 8-bit integer
    dis.category.surface  Category / Surface
        Unsigned 8-bit integer
    dis.electromagnetic.emission.beam.function  Beam Function
        Unsigned 8-bit integer
    dis.electromagnetic.emission.function  Emission Function
        Unsigned 8-bit integer
    dis.electromagnetic.emitter.name  Emitter Name
        Unsigned 16-bit integer
    dis.electromagnetic.num_emission_systems  Number of Electromagnetic Emission Systems
        Unsigned 8-bit integer
    dis.entityDomain  Domain
        Unsigned 8-bit integer
    dis.entityKind  Kind
        Unsigned 8-bit integer
    dis.entity_id_application  Entity ID Application
        Unsigned 16-bit integer
    dis.entity_id_entity  Entity ID Entity
        Unsigned 16-bit integer
    dis.entity_id_site  Entity ID Site
        Unsigned 16-bit integer
    dis.exer_id  Excercise ID
        Unsigned 8-bit integer
    dis.num_articulation_params  Number of Articulation Parameters
        Unsigned 8-bit integer
    dis.pdu_length  PDU Length
        Unsigned 16-bit integer
    dis.pdu_type  PDU type
        Unsigned 8-bit integer
    dis.proto_fam  Proto Family
        Unsigned 8-bit integer
    dis.proto_ver  Proto version
        Unsigned 8-bit integer
    dis.radio.antenna_parameter  Antenna Pattern Parameter
        Byte array
    dis.radio.antenna_pattern_length  Antenna Pattern Length
        Unsigned 16-bit integer
    dis.radio.antenna_pattern_type  Antenna Pattern Type
        Unsigned 16-bit integer
    dis.radio.crypto_system  Crypto System
        Unsigned 16-bit integer
    dis.radio.data_length  Data Length
        Unsigned 16-bit integer
    dis.radio.encoding_class  Encoding Class
        Unsigned 16-bit integer
    dis.radio.encoding_scheme  Encoding Scheme
        Unsigned 16-bit integer
    dis.radio.encoding_type  Encoding Type
        Unsigned 16-bit integer
    dis.radio.encryption_key  Encryption Key
        Unsigned 16-bit integer
    dis.radio.encryption_key.id  Encryption Key ID
        Unsigned 16-bit integer
    dis.radio.encryption_key.mode  Encryption Mode
        Boolean
    dis.radio.frequency  Transmit Frequency (Hz)
        Unsigned 64-bit integer
    dis.radio.input_source  Radio Input Source
        Unsigned 8-bit integer
    dis.radio.mod_param.all  Modulation Parameter All
        Byte array
    dis.radio.mod_param.cctt_cingars.fh_clr_channel  Clear Channel
        Unsigned 8-bit integer
    dis.radio.mod_param.cctt_cingars.fh_lo_set_id  Frequency Lockout Set ID
        Unsigned 16-bit integer
    dis.radio.mod_param.cctt_cingars.fh_msg_start  Start of Message
        Unsigned 8-bit integer
    dis.radio.mod_param.cctt_cingars.fh_nw_id  Frequency Hopping Network ID
        Unsigned 16-bit integer
    dis.radio.mod_param.cctt_cingars.fh_reserved  Reserved
        Unsigned 8-bit integer
    dis.radio.mod_param.cctt_cingars.fh_securit_key  Transmission Security Key
        Unsigned 16-bit integer
    dis.radio.mod_param.cctt_cingars.fh_set_id  Frequency Set ID
        Unsigned 16-bit integer
    dis.radio.mod_param.cctt_cingars.fh_sync_offset  Sync Time Offset (Seconds)
        Unsigned 32-bit integer
    dis.radio.mod_param.jtids.network_sync_id  Network Sync ID
        Unsigned 32-bit integer
    dis.radio.mod_param.jtids.sync_state  Synchronization State
        Unsigned 8-bit integer
    dis.radio.mod_param.jtids.transmitter_primary_mode  Transmitter Primary Mode
        Unsigned 8-bit integer
    dis.radio.mod_param.jtids.transmitter_secondary_mode  Transmitter Primary Mode
        Unsigned 8-bit integer
    dis.radio.mod_param.jtids.ts_alloc_mode  Time Slot Allocaton Mode
        Unsigned 8-bit integer
    dis.radio.mod_param.length  Modulation Parameter Length
        Unsigned 8-bit integer
    dis.radio.mod_type.frequency_hopping  Frequency Hopping modulation
        Boolean
    dis.radio.mod_type.major  Major Modulation
        Unsigned 16-bit integer
    dis.radio.mod_type.pseudo_noise_modulation  Psuedo noise modulation
        Boolean
    dis.radio.mod_type.spread_spectrum_usage  Spread Spectrum
        Boolean
    dis.radio.mod_type.system  System Modulation
        Unsigned 16-bit integer
    dis.radio.mod_type.time_hopping  Time Hopping modulation
        Boolean
    dis.radio.nomenclature  Nomenclature
        Unsigned 16-bit integer
    dis.radio.nomenclature_version  Nomenclature Version
        Unsigned 8-bit integer
    dis.radio.num_of_samples  Number of Samples
        Unsigned 16-bit integer
    dis.radio.radio_category  Radio Category
        Unsigned 8-bit integer
    dis.radio.radio_id  Radio ID
        Unsigned 16-bit integer
    dis.radio.sample_rate  Sample Rate
        Unsigned 32-bit integer
    dis.radio.signal_data  Data
        Byte array
    dis.radio.tdl_type  TDL Type
        Unsigned 16-bit integer
    dis.radio.transmit_state  Radio Transmit State
        Unsigned 8-bit integer

Distributed Lock Manager (dlm3)

    dlm.rl.lvb  Lock Value Block
        Byte array
    dlm.rl.name  Name of Resource
        Byte array
    dlm.rl.name_contents  Contents actually occupying `name' field
        String
    dlm.rl.name_padding  Padding
        Byte array
    dlm3.h.cmd  Command
        Unsigned 8-bit integer
    dlm3.h.length  Length
        Unsigned 16-bit integer
    dlm3.h.lockspac  Lockspace Global ID
        Unsigned 32-bit integer
    dlm3.h.major_version  Major Version
        Unsigned 16-bit integer
    dlm3.h.minor_version  Minor Version
        Unsigned 16-bit integer
    dlm3.h.nodeid  Sender Node ID
        Unsigned 32-bit integer
    dlm3.h.pad  Padding
        Unsigned 8-bit integer
    dlm3.h.version  Version
        Unsigned 32-bit integer
    dlm3.m.asts  Asynchronous Traps
        Unsigned 32-bit integer
    dlm3.m.asts.bast  Blocking
        Boolean
    dlm3.m.asts.comp  Completion
        Boolean
    dlm3.m.bastmode  Mode requested by another node
        Signed 32-bit integer
    dlm3.m.exflags  External Flags
        Unsigned 32-bit integer
    dlm3.m.exflags.altcw  Try to grant the lock in `concurrent read' mode
        Boolean
    dlm3.m.exflags.altpr  Try to grant the lock in `protected read' mode
        Boolean
    dlm3.m.exflags.cancel  Cancel
        Boolean
    dlm3.m.exflags.convdeadlk  Forced down to NL to resolve a conversion deadlock
        Boolean
    dlm3.m.exflags.convert  Convert
        Boolean
    dlm3.m.exflags.expedite  Grant a NL lock immediately
        Boolean
    dlm3.m.exflags.forceunlock  Force unlock
        Boolean
    dlm3.m.exflags.headque  Add a lock to the head of the queue
        Boolean
    dlm3.m.exflags.ivvalblk  Invalidate the lock value block
        Boolean
    dlm3.m.exflags.nodlckblk  Nodlckblk
        Boolean
    dlm3.m.exflags.nodlckwt  Don't cancel the lock if it gets into conversion deadlock
        Boolean
    dlm3.m.exflags.noorder  Disregard the standard grant order rules
        Boolean
    dlm3.m.exflags.noqueue  Don't queue
        Boolean
    dlm3.m.exflags.noqueuebast  Send blocking ASTs even for NOQUEUE operations
        Boolean
    dlm3.m.exflags.orphan  Orphan
        Boolean
    dlm3.m.exflags.persistent  Persistent
        Boolean
    dlm3.m.exflags.quecvt  Force a conversion request to be queued
        Boolean
    dlm3.m.exflags.timeout  Timeout
        Boolean
    dlm3.m.exflags.valblk  Return the contents of the lock value block
        Boolean
    dlm3.m.extra  Extra Message
        Byte array
    dlm3.m.flags  Internal Flags
        Unsigned 32-bit integer
    dlm3.m.flags.orphan  Orphaned lock
        Boolean
    dlm3.m.flags.user  User space lock realted
        Boolean
    dlm3.m.grmode  Granted Mode
        Signed 32-bit integer
    dlm3.m.hash  Hash value
        Unsigned 32-bit integer
    dlm3.m.lkid  Lock ID on Sender
        Unsigned 32-bit integer
    dlm3.m.lvbseq  Lock Value Block Sequence Number
        Unsigned 32-bit integer
    dlm3.m.nodeid  Receiver Node ID
        Unsigned 32-bit integer
    dlm3.m.parent_lkid  Parent Lock ID on Sender
        Unsigned 32-bit integer
    dlm3.m.parent_remid  Parent Lock ID on Receiver
        Unsigned 32-bit integer
    dlm3.m.pid  Process ID of Lock Owner
        Unsigned 32-bit integer
    dlm3.m.remid  Lock ID on Receiver
        Unsigned 32-bit integer
    dlm3.m.result  Message Result(errno)
        Signed 32-bit integer
    dlm3.m.rqmode  Request Mode
        Signed 32-bit integer
    dlm3.m.sbflags  Status Block Flags
        Unsigned 32-bit integer
    dlm3.m.sbflags.altmode  Try to Grant in Alternative Mode
        Boolean
    dlm3.m.sbflags.demoted  Demoted for deadlock resolution
        Boolean
    dlm3.m.sbflags.valnotvalid  Lock Value Block Is Invalid
        Boolean
    dlm3.m.status  Status
        Signed 32-bit integer
    dlm3.m.type  Message Type
        Unsigned 32-bit integer
    dlm3.rc.buf  Recovery Buffer
        Byte array
    dlm3.rc.id  Recovery Command ID
        Unsigned 64-bit integer
    dlm3.rc.result  Recovery Command Result
        Signed 32-bit integer
    dlm3.rc.seq  Recovery Command Sequence Number of Sender
        Unsigned 64-bit integer
    dlm3.rc.seq_reply  Recovery Command Sequence Number of Receiver
        Unsigned 64-bit integer
    dlm3.rc.type  Recovery Command Type
        Unsigned 32-bit integer
    dlm3.rf.lsflags  External Flags
        Unsigned 32-bit integer
    dlm3.rf.lsflags.altcw  Try to grant the lock in `concurrent read' mode
        Boolean
    dlm3.rf.lsflags.altpr  Try to grant the lock in `protected read' mode
        Boolean
    dlm3.rf.lsflags.cancel  Cancel
        Boolean
    dlm3.rf.lsflags.convdeadlk  Forced down to NL to resolve a conversion deadlock
        Boolean
    dlm3.rf.lsflags.convert  Convert
        Boolean
    dlm3.rf.lsflags.expedite  Grant a NL lock immediately
        Boolean
    dlm3.rf.lsflags.forceunlock  Force unlock
        Boolean
    dlm3.rf.lsflags.headque  Add a lock to the head of the queue
        Boolean
    dlm3.rf.lsflags.ivvalblk  Invalidate the lock value block
        Boolean
    dlm3.rf.lsflags.nodlckblk  Nodlckblk
        Boolean
    dlm3.rf.lsflags.nodlckwt  Don't cancel the lock if it gets into conversion deadlock
        Boolean
    dlm3.rf.lsflags.noorder  Disregard the standard grant order rules
        Boolean
    dlm3.rf.lsflags.noqueue  Don't queue
        Boolean
    dlm3.rf.lsflags.noqueuebast  Send blocking ASTs even for NOQUEUE operations
        Boolean
    dlm3.rf.lsflags.orphan  Orphan
        Boolean
    dlm3.rf.lsflags.persistent  Persistent
        Boolean
    dlm3.rf.lsflags.quecvt  Force a conversion request to be queued
        Boolean
    dlm3.rf.lsflags.timeout  Timeout
        Boolean
    dlm3.rf.lsflags.unused  Unsed area
        Unsigned 64-bit integer
    dlm3.rf.lsflags.valblk  Return the contents of the lock value block
        Boolean
    dlm3.rf.lvblen  Lock Value Block Length
        Unsigned 32-bit integer
    dlm3.rl.asts  Asynchronous Traps
        Unsigned 8-bit integer
    dlm3.rl.asts.bast  Blocking
        Boolean
    dlm3.rl.asts.comp  Completion
        Boolean
    dlm3.rl.exflags  External Flags
        Unsigned 32-bit integer
    dlm3.rl.exflags.altcw  Try to grant the lock in `concurrent read' mode
        Boolean
    dlm3.rl.exflags.altpr  Try to grant the lock in `protected read' mode
        Boolean
    dlm3.rl.exflags.cancel  Cancel
        Boolean
    dlm3.rl.exflags.convdeadlk  Forced down to NL to resolve a conversion deadlock
        Boolean
    dlm3.rl.exflags.convert  Convert
        Boolean
    dlm3.rl.exflags.expedite  Grant a NL lock immediately
        Boolean
    dlm3.rl.exflags.forceunlock  Force unlock
        Boolean
    dlm3.rl.exflags.headque  Add a lock to the head of the queue
        Boolean
    dlm3.rl.exflags.ivvalblk  Invalidate the lock value block
        Boolean
    dlm3.rl.exflags.nodlckblk  Nodlckblk
        Boolean
    dlm3.rl.exflags.nodlckwt  Don't cancel the lock if it gets into conversion deadlock
        Boolean
    dlm3.rl.exflags.noorder  Disregard the standard grant order rules
        Boolean
    dlm3.rl.exflags.noqueue  Don't queue
        Boolean
    dlm3.rl.exflags.noqueuebast  Send blocking ASTs even for NOQUEUE operations
        Boolean
    dlm3.rl.exflags.orphan  Orphan
        Boolean
    dlm3.rl.exflags.persistent  Persistent
        Boolean
    dlm3.rl.exflags.quecvt  Force a conversion request to be queued
        Boolean
    dlm3.rl.exflags.timeout  Timeout
        Boolean
    dlm3.rl.exflags.valblk  Return the contents of the lock value block
        Boolean
    dlm3.rl.flags  Internal Flags
        Unsigned 32-bit integer
    dlm3.rl.flags.orphan  Orphaned lock
        Boolean
    dlm3.rl.flags.user  User space lock realted
        Boolean
    dlm3.rl.grmode  Granted Mode
        Signed 8-bit integer
    dlm3.rl.lkid  Lock ID on Sender
        Unsigned 32-bit integer
    dlm3.rl.lvbseq  Lock Value Block Sequence Number
        Unsigned 32-bit integer
    dlm3.rl.namelen  Length of `name' field
        Unsigned 16-bit integer
    dlm3.rl.ownpid  Process ID of Lock Owner
        Unsigned 32-bit integer
    dlm3.rl.parent_lkid  Parent Lock ID on Sender
        Unsigned 32-bit integer
    dlm3.rl.parent_remid  Parent Lock ID on Receiver
        Unsigned 32-bit integer
    dlm3.rl.remid  Lock ID on Receiver
        Unsigned 32-bit integer
    dlm3.rl.result  Result of Recovering master copy
        Signed 32-bit integer
    dlm3.rl.rqmode  Request Mode
        Signed 8-bit integer
    dlm3.rl.status  Status
        Signed 8-bit integer
    dlm3.rl.wait_type  Message Type the waiter is waiting for
        Unsigned 16-bit integer

Distributed Network Protocol 3.0 (dnp3)

    dnp3.al.2bit  Value (two bit)
        Unsigned 8-bit integer
        Digital Value (2 bit)
    dnp3.al.aiq.b0  Online
        Boolean
    dnp3.al.aiq.b1  Restart
        Boolean
    dnp3.al.aiq.b2  Comm Fail
        Boolean
    dnp3.al.aiq.b3  Remote Force
        Boolean
    dnp3.al.aiq.b4  Local Force
        Boolean
    dnp3.al.aiq.b5  Over-Range
        Boolean
    dnp3.al.aiq.b6  Reference Check
        Boolean
    dnp3.al.aiq.b7  Reserved
        Boolean
    dnp3.al.ana  Value (16 bit)
        Unsigned 16-bit integer
        Analog Value (16 bit)
    dnp3.al.anaout  Output Value (16 bit)
        Unsigned 16-bit integer
    dnp3.al.aoq.b0  Online
        Boolean
    dnp3.al.aoq.b1  Restart
        Boolean
    dnp3.al.aoq.b2  Comm Fail
        Boolean
    dnp3.al.aoq.b3  Remote Force
        Boolean
    dnp3.al.aoq.b4  Local Force
        Boolean
    dnp3.al.aoq.b5  Reserved
        Boolean
    dnp3.al.aoq.b6  Reserved
        Boolean
    dnp3.al.aoq.b7  Reserved
        Boolean
    dnp3.al.biq.b0  Online
        Boolean
    dnp3.al.biq.b1  Restart
        Boolean
    dnp3.al.biq.b2  Comm Fail
        Boolean
    dnp3.al.biq.b3  Remote Force
        Boolean
    dnp3.al.biq.b4  Local Force
        Boolean
    dnp3.al.biq.b5  Chatter Filter
        Boolean
    dnp3.al.biq.b6  Reserved
        Boolean
    dnp3.al.biq.b7  Point Value
        Boolean
    dnp3.al.bit  Value (bit)
        Boolean
        Digital Value (1 bit)
    dnp3.al.boq.b0  Online
        Boolean
    dnp3.al.boq.b1  Restart
        Boolean
    dnp3.al.boq.b2  Comm Fail
        Boolean
    dnp3.al.boq.b3  Remote Force
        Boolean
    dnp3.al.boq.b4  Local Force
        Boolean
    dnp3.al.boq.b5  Reserved
        Boolean
    dnp3.al.boq.b6  Reserved
        Boolean
    dnp3.al.boq.b7  Point Value
        Boolean
    dnp3.al.cnt  Counter (16 bit)
        Unsigned 16-bit integer
        Counter Value (16 bit)
    dnp3.al.con  Confirm
        Boolean
    dnp3.al.ctl  Application Control
        Unsigned 8-bit integer
        Application Layer Control Byte
    dnp3.al.ctrlstatus  Control Status
        Unsigned 8-bit integer
    dnp3.al.ctrq.b0  Online
        Boolean
    dnp3.al.ctrq.b1  Restart
        Boolean
    dnp3.al.ctrq.b2  Comm Fail
        Boolean
    dnp3.al.ctrq.b3  Remote Force
        Boolean
    dnp3.al.ctrq.b4  Local Force
        Boolean
    dnp3.al.ctrq.b5  Roll-Over
        Boolean
    dnp3.al.ctrq.b6  Discontinuity
        Boolean
    dnp3.al.ctrq.b7  Reserved
        Boolean
    dnp3.al.fin  Final
        Boolean
    dnp3.al.fir  First
        Boolean
    dnp3.al.fragment  DNP 3.0 AL Fragment
        Frame number
        DNP 3.0 Application Layer Fragment
    dnp3.al.fragment.error  Defragmentation error
        Frame number
        Defragmentation error due to illegal fragments
    dnp3.al.fragment.multipletails  Multiple tail fragments found
        Boolean
        Several tails were found when defragmenting the packet
    dnp3.al.fragment.overlap  Fragment overlap
        Boolean
        Fragment overlaps with other fragments
    dnp3.al.fragment.overlap.conflict  Conflicting data in fragment overlap
        Boolean
        Overlapping fragments contained conflicting data
    dnp3.al.fragment.reassembled.length  Reassembled DNP length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    dnp3.al.fragment.reassembled_in  Reassembled PDU In Frame
        Frame number
        This PDU is reassembled in this frame
    dnp3.al.fragment.toolongfragment  Fragment too long
        Boolean
        Fragment contained data past end of packet
    dnp3.al.fragments  DNP 3.0 AL Fragments
        No value
        DNP 3.0 Application Layer Fragments
    dnp3.al.func  Application Layer Function Code
        Unsigned 8-bit integer
        Application Function Code
    dnp3.al.iin  Application Layer IIN bits
        Unsigned 16-bit integer
        Application Layer IIN
    dnp3.al.iin.bmsg  Broadcast Msg Rx
        Boolean
    dnp3.al.iin.cc  Configuration Corrupt
        Boolean
    dnp3.al.iin.cls1d  Class 1 Data Available
        Boolean
    dnp3.al.iin.cls2d  Class 2 Data Available
        Boolean
    dnp3.al.iin.cls3d  Class 3 Data Available
        Boolean
    dnp3.al.iin.dol  Digital Outputs in Local
        Boolean
    dnp3.al.iin.dt  Device Trouble
        Boolean
    dnp3.al.iin.ebo  Event Buffer Overflow
        Boolean
    dnp3.al.iin.oae  Operation Already Executing
        Boolean
    dnp3.al.iin.obju  Requested Objects Unknown
        Boolean
    dnp3.al.iin.pioor  Parameters Invalid or Out of Range
        Boolean
    dnp3.al.iin.rst  Device Restart
        Boolean
    dnp3.al.iin.tsr  Time Sync Required
        Boolean
    dnp3.al.index  Index (8 bit)
        Unsigned 8-bit integer
        Object Index
    dnp3.al.obj  Object
        Unsigned 16-bit integer
        Application Layer Object
    dnp3.al.objq.code  Qualifier Code
        Unsigned 8-bit integer
        Object Qualifier Code
    dnp3.al.objq.index  Index Prefix
        Unsigned 8-bit integer
        Object Index Prefixing
    dnp3.al.ptnum  Object Point Number
        Unsigned 16-bit integer
    dnp3.al.range.abs  Address (8 bit)
        Unsigned 8-bit integer
        Object Absolute Address
    dnp3.al.range.quantity  Quantity (8 bit)
        Unsigned 8-bit integer
        Object Quantity
    dnp3.al.range.start  Start (8 bit)
        Unsigned 8-bit integer
        Object Start Index
    dnp3.al.range.stop  Stop (8 bit)
        Unsigned 8-bit integer
        Object Stop Index
    dnp3.al.reltimestamp  Relative Timestamp
        Time duration
        Object Relative Timestamp
    dnp3.al.seq  Sequence
        Unsigned 8-bit integer
        Frame Sequence Number
    dnp3.al.timestamp  Timestamp
        Date/Time stamp
        Object Timestamp
    dnp3.al.uns  Unsolicited
        Boolean
    dnp3.ctl  Control
        Unsigned 8-bit integer
        Frame Control Byte
    dnp3.ctl.dfc  Data Flow Control
        Boolean
    dnp3.ctl.dir  Direction
        Boolean
    dnp3.ctl.fcb  Frame Count Bit
        Boolean
    dnp3.ctl.fcv  Frame Count Valid
        Boolean
    dnp3.ctl.prifunc  Control Function Code
        Unsigned 8-bit integer
        Frame Control Function Code
    dnp3.ctl.prm  Primary
        Boolean
    dnp3.ctl.secfunc  Control Function Code
        Unsigned 8-bit integer
        Frame Control Function Code
    dnp3.dst  Destination
        Unsigned 16-bit integer
        Destination Address
    dnp3.hdr.CRC  CRC
        Unsigned 16-bit integer
    dnp3.hdr.CRC_bad  Bad CRC
        Boolean
    dnp3.len  Length
        Unsigned 8-bit integer
        Frame Data Length
    dnp3.src  Source
        Unsigned 16-bit integer
        Source Address
    dnp3.start  Start Bytes
        Unsigned 16-bit integer
    dnp3.tr.ctl  Transport Control
        Unsigned 8-bit integer
        Transport Layer Control Byte
    dnp3.tr.fin  Final
        Boolean
    dnp3.tr.fir  First
        Boolean
    dnp3.tr.seq  Sequence
        Unsigned 8-bit integer
        Frame Sequence Number

Domain Name Service (dns)

    dns.apl.afdlength  Address Length, in octets
        Unsigned 8-bit integer
        Address Length, in octets
    dns.apl.negation  Negation Flag
        Boolean
        Negation Flag
    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.dhcid.rdata  DHCID Data
        Byte array
    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
        Boolean
        Is non-authenticated data acceptable?
    dns.flags.conflict  Conflict
        Boolean
        Did we receive multiple responses to a query?
    dns.flags.opcode  Opcode
        Unsigned 16-bit integer
        Operation code
    dns.flags.rcode  Reply code
        Unsigned 16-bit integer
    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.tentative  Tentative
        Boolean
        Is the responder authoritative for the name, but not yet verified the uniqueness?
    dns.flags.truncated  Truncated
        Boolean
        Is the message truncated?
    dns.flags.z  Z
        Boolean
        Z flag
    dns.hip.hit  Host Identity Tag
        Byte array
    dns.hip.pk  HIP Public Key
        Byte array
    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.nsap.rdata  NSAP Data
        Byte array
        NSAP Data
    dns.nsec3.algo  Hash algorithm
        Unsigned 8-bit integer
    dns.nsec3.flags  NSEC3 flags
        Unsigned 8-bit integer
    dns.nsec3.flags.opt_out  NSEC3 Opt-out flag
        Boolean
        NSEC3 opt-out flag
    dns.nsec3.hash_length  Hash length
        Unsigned 8-bit integer
        Length in bytes of next hashed owner
    dns.nsec3.hash_value  Next hashed owner
        Byte array
    dns.nsec3.iterations  NSEC3 iterations
        Unsigned 16-bit integer
        Number of hashing iterations
    dns.nsec3.salt_length  Salt length
        Unsigned 8-bit integer
        Length of salt in bytes
    dns.nsec3.salt_value  Salt value
        Byte array
    dns.qry.class  Class
        Unsigned 16-bit integer
        Query Class
    dns.qry.name  Name
        String
        Query Name
    dns.qry.qu  "QU" question
        Boolean
        QU flag
    dns.qry.type  Type
        Unsigned 16-bit integer
        Query Type
    dns.resp.addr  Addr
        IPv4 address
        Response Address
    dns.resp.cache_flush  Cache flush
        Boolean
        Cache flush flag
    dns.resp.class  Class
        Unsigned 16-bit integer
        Response Class
    dns.resp.len  Data length
        Unsigned 32-bit integer
        Response Length
    dns.resp.name  Name
        String
        Response Name
    dns.resp.ttl  Time to live
        Unsigned 32-bit integer
        Response TTL
    dns.resp.type  Type
        Unsigned 16-bit integer
        Response Type
    dns.response_in  Response In
        Frame number
        The response to this DNS query is in this frame
    dns.response_to  Request In
        Frame number
        This is a response to the DNS query in this frame
    dns.sshfp.fingerprint  Fingerprint
        Byte array
    dns.time  Time
        Time duration
        The time between the Query and the Response
    dns.tsig.algorithm_name  Algorithm Name
        String
        Name of algorithm used for the MAC
    dns.tsig.error  Error
        Unsigned 16-bit integer
        Expanded RCODE for TSIG
    dns.tsig.fudge  Fudge
        Unsigned 16-bit integer
        Number of bytes for the MAC
    dns.tsig.mac  MAC
        No value
    dns.tsig.mac_size  MAC Size
        Unsigned 16-bit integer
        Number of bytes for the MAC
    dns.tsig.original_id  Original Id
        Unsigned 16-bit integer
    dns.tsig.other_data  Other Data
        Byte array
    dns.tsig.other_len  Other Len
        Unsigned 16-bit integer
        Number of bytes for Other Data
    hf.dns.apl.coded.prefix  Prefix Length
        Unsigned 8-bit integer
        Prefix Length

Dropbox LAN sync Discovery Protocol (db-lsp-disc)

Dropbox LAN sync Protocol (db-lsp)

    db-lsp.data  Data
        Byte array
    db-lsp.length  Length
        Unsigned 16-bit integer
        Length in bytes
    db-lsp.magic  Magic
        Unsigned 16-bit integer
        Magic number
    db-lsp.op  OP Value
        Unsigned 8-bit integer
        OP Value
    db-lsp.text  Text
        String
    db-lsp.type  Type
        Unsigned 8-bit integer
        Type
    db-lsp.value  Value
        Byte array

Dublin Core Metadata (DC) (dc)

    dc.contributor  contributor
        String
    dc.coverage  coverage
        String
    dc.creator  creator
        String
    dc.date  date
        String
    dc.dc  dc
        String
    dc.description  description
        String
    dc.format  format
        String
    dc.identifier  identifier
        String
    dc.language  language
        String
    dc.publisher  publisher
        String
    dc.relation  relation
        String
    dc.rights  rights
        String
    dc.source  source
        String
    dc.subject  subject
        String
    dc.title  title
        String
    dc.type  type
        String

Dynamic DNS Tools Protocol (ddtp)

    ddtp.encrypt  Encryption
        Unsigned 32-bit integer
        Encryption type
    ddtp.hostid  Hostid
        Unsigned 32-bit integer
        Host ID
    ddtp.ipaddr  IP address
        IPv4 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

Dynamic Trunking Protocol (dtp)

    dtp.neighbor  Neighbor
        6-byte Hardware (MAC) Address
        MAC Address of neighbor
    dtp.tlv_len  Length
        Unsigned 16-bit integer
    dtp.tlv_type  Type
        Unsigned 16-bit integer
    dtp.version  Version
        Unsigned 8-bit integer

E100 Encapsulation (e100)

    e100.bytes_cap  Bytes Captured
        Unsigned 32-bit integer
    e100.bytes_orig  Bytes in Original Packet
        Unsigned 32-bit integer
    e100.ip  E100 IP Address
        IPv4 address
    e100.mon_pkt_id  Monitor Packet ID
        Unsigned 32-bit integer
    e100.pkt_ts  Packet Capture Timestamp
        Date/Time stamp
    e100.port_recv  E100 Port Received
        Unsigned 8-bit integer
    e100.seq_num  Sequence Number
        Unsigned 16-bit integer
    e100.version  Header Version
        Unsigned 8-bit integer

EFS (pidl) (efs)

    efs.EFS_CERTIFICATE_BLOB.cbData  Cbdata
        Unsigned 32-bit integer
    efs.EFS_CERTIFICATE_BLOB.dwCertEncodingType  Dwcertencodingtype
        Unsigned 32-bit integer
    efs.EFS_CERTIFICATE_BLOB.pbData  Pbdata
        Unsigned 8-bit integer
    efs.EFS_HASH_BLOB.cbData  Cbdata
        Unsigned 32-bit integer
    efs.EFS_HASH_BLOB.pbData  Pbdata
        Unsigned 8-bit integer
    efs.ENCRYPTION_CERTIFICATE.TotalLength  Totallength
        Unsigned 32-bit integer
    efs.ENCRYPTION_CERTIFICATE.pCertBlob  Pcertblob
        No value
    efs.ENCRYPTION_CERTIFICATE.pUserSid  Pusersid
        No value
    efs.ENCRYPTION_CERTIFICATE_HASH.cbTotalLength  Cbtotallength
        Unsigned 32-bit integer
    efs.ENCRYPTION_CERTIFICATE_HASH.lpDisplayInformation  Lpdisplayinformation
        String
    efs.ENCRYPTION_CERTIFICATE_HASH.pHash  Phash
        No value
    efs.ENCRYPTION_CERTIFICATE_HASH.pUserSid  Pusersid
        No value
    efs.ENCRYPTION_CERTIFICATE_HASH_LIST.nCert_Hash  Ncert Hash
        Unsigned 32-bit integer
    efs.ENCRYPTION_CERTIFICATE_HASH_LIST.pUsers  Pusers
        No value
    efs.EfsRpcAddUsersToFile.FileName  Filename
        String
    efs.EfsRpcCloseRaw.pvContext  Pvcontext
        Byte array
    efs.EfsRpcDecryptFileSrv.FileName  Filename
        String
    efs.EfsRpcDecryptFileSrv.Reserved  Reserved
        Unsigned 32-bit integer
    efs.EfsRpcEncryptFileSrv.Filename  Filename
        String
    efs.EfsRpcOpenFileRaw.FileName  Filename
        String
    efs.EfsRpcOpenFileRaw.Flags  Flags
        Unsigned 32-bit integer
    efs.EfsRpcOpenFileRaw.pvContext  Pvcontext
        Byte array
    efs.EfsRpcQueryRecoveryAgents.FileName  Filename
        String
    efs.EfsRpcQueryRecoveryAgents.pRecoveryAgents  Precoveryagents
        No value
    efs.EfsRpcQueryUsersOnFile.FileName  Filename
        String
    efs.EfsRpcQueryUsersOnFile.pUsers  Pusers
        No value
    efs.EfsRpcReadFileRaw.pvContext  Pvcontext
        Byte array
    efs.EfsRpcRemoveUsersFromFile.FileName  Filename
        String
    efs.EfsRpcSetFileEncryptionKey.pEncryptionCertificate  Pencryptioncertificate
        No value
    efs.EfsRpcWriteFileRaw.pvContext  Pvcontext
        Byte array
    efs.opnum  Operation
        Unsigned 16-bit integer
    efs.werror  Windows Error
        Unsigned 32-bit integer

EHS (ehs)

    dz.aoslos_indicator  AOS/LOS Indicator
        Unsigned 8-bit integer
    dz.udsm_apid  APID
        Unsigned 16-bit integer
    dz.udsm_ccsds_vs_bpdu  CCSDS vs BPDU
        Unsigned 8-bit integer
    dz.udsm_event  UDSM Event Code
        Unsigned 8-bit integer
    dz.udsm_gse_pkt_id  GSE Pkt ID
        Boolean
    dz.udsm_num_pkt_seqerrs  Num Packet Sequence Errors
        Unsigned 16-bit integer
    dz.udsm_num_pktlen_errors  Num Pkt Length Errors
        Unsigned 16-bit integer
    dz.udsm_num_pkts_xmtd  Num Pkts Transmitted
        Unsigned 16-bit integer
    dz.udsm_num_pkts_xmtd_rollover  Num Pkts Transmitted Rollover Counter
        Unsigned 8-bit integer
    dz.udsm_num_vcdu_seqerrs  Num VCDU Sequence Errors
        Unsigned 16-bit integer
    dz.udsm_payload_vs_core  Payload vs Core
        Unsigned 16-bit integer
    dz.udsm_start_time_hour  Start Time Hour
        Unsigned 8-bit integer
    dz.udsm_start_time_jday  Start Time Julian Day
        Unsigned 16-bit integer
    dz.udsm_start_time_minute  Start Time Minute
        Unsigned 8-bit integer
    dz.udsm_start_time_second  Start Time Second
        Unsigned 8-bit integer
    dz.udsm_start_time_year  Start Time Years since 1900
        Unsigned 8-bit integer
    dz.udsm_stop_time_hour  Stop Time Hour
        Unsigned 8-bit integer
    dz.udsm_stop_time_jday  Stop Time Julian Day
        Unsigned 16-bit integer
    dz.udsm_stop_time_minute  Stop Time Minute
        Unsigned 8-bit integer
    dz.udsm_stop_time_second  Stop Time Second
        Unsigned 8-bit integer
    dz.udsm_stop_time_year  Stop Time Years since 1900
        Unsigned 8-bit integer
    dz.udsm_unused1  Unused 1
        Unsigned 8-bit integer
    dz.udsm_unused2  Unused 2
        Unsigned 8-bit integer
    dz.udsm_unused3  Unused 3
        Unsigned 16-bit integer
    dz.udsm_unused4  Unused 4
        Unsigned 16-bit integer
    ehs.data_mode  Data Mode
        Unsigned 8-bit integer
    ehs.hold_flag  Hold Flag
        Boolean
    ehs.hosc_packet_size  HOSC Packet Size
        Unsigned 16-bit integer
    ehs.hour  Hour
        Unsigned 8-bit integer
    ehs.jday  Julian Day of Year
        Unsigned 16-bit integer
    ehs.minute  Minute
        Unsigned 8-bit integer
    ehs.mission  Mission
        Unsigned 8-bit integer
    ehs.new_data_flag  New Data Flag
        Boolean
    ehs.pad1  Pad1
        Unsigned 8-bit integer
    ehs.pad2  Pad2
        Unsigned 8-bit integer
    ehs.pad3  Pad3
        Unsigned 8-bit integer
    ehs.pad4  Pad4
        Unsigned 8-bit integer
    ehs.project  Project
        Unsigned 8-bit integer
    ehs.protocol  Protocol
        Unsigned 8-bit integer
    ehs.second  Second
        Unsigned 8-bit integer
    ehs.sign_flag  Sign Flag (1->CDT)
        Unsigned 8-bit integer
    ehs.support_mode  Support Mode
        Unsigned 8-bit integer
    ehs.tenths  Tenths
        Unsigned 8-bit integer
    ehs.version  Version
        Unsigned 8-bit integer
    ehs.year  Years since 1900
        Unsigned 8-bit integer
    ehs2.apid  APID
        Unsigned 16-bit integer
    ehs2.data_status_bit_0  Data Status Bit 0
        Unsigned 8-bit integer
    ehs2.data_status_bit_1  Data Status Bit 1
        Unsigned 8-bit integer
    ehs2.data_status_bit_2  Data Status Bit 2
        Unsigned 8-bit integer
    ehs2.data_status_bit_3  Data Status Bit 3
        Unsigned 8-bit integer
    ehs2.data_status_bit_4  Data Status Bit 4
        Unsigned 8-bit integer
    ehs2.data_status_bit_5  Data Status Bit 5
        Unsigned 8-bit integer
    ehs2.data_stream_id  Data Stream ID
        Unsigned 8-bit integer
    ehs2.gse_pkt_id  GSE Packet ID (1=GSE)
        Unsigned 16-bit integer
    ehs2.packet_sequence_error  Packet Sequence Error
        Unsigned 8-bit integer
    ehs2.parent_stream_error  Parent Stream Error
        Boolean
    ehs2.payload_vs_core_id  Payload vs Core ID
        Unsigned 16-bit integer
    ehs2.pdss_reserved_1  Pdss Reserved 1
        Unsigned 8-bit integer
    ehs2.pdss_reserved_2  Pdss Reserved 2
        Unsigned 8-bit integer
    ehs2.pdss_reserved_3  Pdss Reserved 3
        Unsigned 16-bit integer
    ehs2.pseudo_comp_id  Comp ID
        Unsigned 16-bit integer
    ehs2.pseudo_unused  Unused
        Unsigned 16-bit integer
    ehs2.pseudo_user_id  User ID
        Unsigned 16-bit integer
    ehs2.pseudo_workstation_id  Workstation ID
        Unsigned 16-bit integer
    ehs2.sync  Pdss Reserved Sync
        Unsigned 16-bit integer
    ehs2.tdm_adq  ADQ
        Unsigned 16-bit integer
    ehs2.tdm_aoslos_flag  AOS/LOS Flag
        Boolean
    ehs2.tdm_backup_stream_id_number  Backup Stream ID Number
        Unsigned 8-bit integer
    ehs2.tdm_bit_slip_error  Bit Slip Error
        Boolean
    ehs2.tdm_cdq  CDQ
        Unsigned 16-bit integer
    ehs2.tdm_checksum_error  Checksum Error
        Boolean
    ehs2.tdm_cnt_hour  CNT Hour
        Unsigned 8-bit integer
    ehs2.tdm_cnt_jday  CNT Julian Day of Year
        Unsigned 16-bit integer
    ehs2.tdm_cnt_minute  CNT Minute
        Unsigned 8-bit integer
    ehs2.tdm_cnt_second  CNT Second
        Unsigned 8-bit integer
    ehs2.tdm_cnt_tenths  CNT Tenths
        Unsigned 8-bit integer
    ehs2.tdm_cnt_year  CNT Years since 1900
        Unsigned 8-bit integer
    ehs2.tdm_cntmet_present  CNT or MET Present
        Boolean
    ehs2.tdm_data_dq  Data DQ
        Unsigned 16-bit integer
    ehs2.tdm_data_status  Data Status
        Unsigned 8-bit integer
    ehs2.tdm_extra_data_packet  Extra Data Packet
        Boolean
    ehs2.tdm_fixed_value_error  Fixed Value Error
        Boolean
    ehs2.tdm_format_id  Format ID
        Unsigned 16-bit integer
    ehs2.tdm_format_id_error  Format ID Error
        Boolean
    ehs2.tdm_idq  IDQ
        Unsigned 16-bit integer
    ehs2.tdm_major_frame_packet_index  Major Frame Packet Index
        Unsigned 8-bit integer
    ehs2.tdm_major_frame_status_present  Major Frame Status Present
        Boolean
    ehs2.tdm_minor_frame_counter_error  Minor Frame Counter Error
        Boolean
    ehs2.tdm_mjfs_checksum_error  Checksum Error
        Boolean
    ehs2.tdm_mjfs_fixed_value_error  Fixed Value Error
        Boolean
    ehs2.tdm_mjfs_parent_frame_error  Parent Frame Error
        Boolean
    ehs2.tdm_mjfs_reserved  Reserved
        Unsigned 8-bit integer
    ehs2.tdm_mnfs_bit_slip_error  Bit Slip Error
        Boolean
    ehs2.tdm_mnfs_checksum_error  Checksum Error
        Boolean
    ehs2.tdm_mnfs_counter_error  Counter Error
        Boolean
    ehs2.tdm_mnfs_data_not_available  Data Not Available
        Boolean
    ehs2.tdm_mnfs_fixed_value_error  Fixed Value Error
        Boolean
    ehs2.tdm_mnfs_format_id_error  Format ID Error
        Boolean
    ehs2.tdm_mnfs_parent_frame_error  Parent Frame Error
        Boolean
    ehs2.tdm_mnfs_sync_error  Sync Error
        Boolean
    ehs2.tdm_num_major_frame_status_words  Number of Major Frame Status Words
        Unsigned 8-bit integer
    ehs2.tdm_num_minor_frame_per_packet  Num Minor Frames per Packet
        Unsigned 8-bit integer
    ehs2.tdm_numpkts_per_major_frame  Num Packets per Major Frame
        Unsigned 8-bit integer
    ehs2.tdm_obt_computed_flag  OBT Computed
        Boolean
    ehs2.tdm_obt_delta_time_flag  OBT is Delta Time Instead of GMT
        Boolean
    ehs2.tdm_obt_not_retrieved_flag  OBT Not Retrieved
        Boolean
    ehs2.tdm_obt_present  OBT Present
        Boolean
    ehs2.tdm_obt_reserved  OBT Reserved
        Boolean
    ehs2.tdm_obt_source_apid  OBT Source APID
        Unsigned 16-bit integer
    ehs2.tdm_override_errors_flag  Override Errors
        Boolean
    ehs2.tdm_parent_frame_error  Parent Frame Error
        Boolean
    ehs2.tdm_reserved  Reserved
        Unsigned 8-bit integer
    ehs2.tdm_secondary_header_length  Secondary Header Length
        Unsigned 16-bit integer
    ehs2.tdm_sync_error  Sync Error
        Boolean
    ehs2.tdm_unused  Unused
        Unsigned 16-bit integer
    ehs2.vcdu_seqno  VCDU Sequence Number
        Unsigned 24-bit integer
    ehs2.vcdu_sequence_error  VCDU Sequence Error
        Boolean
    ehs2.vcid  Virtual Channel
        Unsigned 16-bit integer
    ehs2.version  Version
        Unsigned 8-bit integer
    ehs2tdm_end_of_data_flag.tdm_end_of_data_flag  End of Data Flag
        Unsigned 8-bit integer

ENEA LINX (linx)

    linx.ackno  ACK Number
        Unsigned 32-bit integer
    linx.ackreq  ACK-request
        Unsigned 32-bit integer
    linx.bundle  Bundle
        Unsigned 32-bit integer
    linx.cmd  Command
        Unsigned 32-bit integer
    linx.connection  Connection
        Unsigned 32-bit integer
    linx.destmaddr_ether  Destination
        6-byte Hardware (MAC) Address
        Destination Media Address (ethernet)
    linx.dstaddr  Receiver Address
        Unsigned 32-bit integer
    linx.dstaddr32  Receiver Address
        Unsigned 32-bit integer
    linx.feat_neg_str  Feature Negotiation String
        NULL terminated string
    linx.fragno  Fragment Number
        Unsigned 32-bit integer
    linx.fragno2  Fragment Number
        Unsigned 32-bit integer
    linx.morefr2  More Fragments
        Unsigned 32-bit integer
    linx.morefra  More Fragments
        Unsigned 32-bit integer
        More fragments follow
    linx.nack_count  Count
        Unsigned 32-bit integer
    linx.nack_reserv  Reserved
        Unsigned 32-bit integer
        Nack Hdr Reserved
    linx.nack_seqno  Sequence Number
        Unsigned 32-bit integer
    linx.nexthdr  Next Header
        Unsigned 32-bit integer
    linx.pcksize  Package Size
        Unsigned 32-bit integer
    linx.publcid  Publish Conn ID
        Unsigned 32-bit integer
    linx.reserved1  Reserved
        Unsigned 32-bit integer
        Main Hdr Reserved
    linx.reserved3  Reserved
        Unsigned 32-bit integer
        Conn Hdr Reserved
    linx.reserved5  Reserved
        Unsigned 32-bit integer
        Udata Hdr Reserved
    linx.reserved6  Reserved
        Unsigned 32-bit integer
        Frag Hdr Reserved
    linx.reserved7  Reserved
        Unsigned 32-bit integer
        ACK Hdr Reserved
    linx.rlnh_feat_neg_str  RLNH Feature Negotiation String
        NULL terminated string
    linx.rlnh_linkaddr  RLNH linkaddr
        Unsigned 32-bit integer
        RLNH linkaddress
    linx.rlnh_msg_reserved  RLNH msg reserved
        Unsigned 32-bit integer
        RLNH message reserved
    linx.rlnh_msg_type  RLNH msg type
        Unsigned 32-bit integer
        RLNH message type
    linx.rlnh_msg_type8  RLNH msg type
        Unsigned 32-bit integer
        RLNH message type
    linx.rlnh_name  RLNH name
        NULL terminated string
    linx.rlnh_peer_linkaddr  RLNH peer linkaddr
        Unsigned 32-bit integer
        RLNH peer linkaddress
    linx.rlnh_src_linkaddr  RLNH src linkaddr
        Unsigned 32-bit integer
        RLNH source linkaddress
    linx.rlnh_status  RLNH reply
        Unsigned 32-bit integer
    linx.rlnh_version  RLNH version
        Unsigned 32-bit integer
    linx.seqno  Sequence Number
        Unsigned 32-bit integer
    linx.signo  Signal Number
        Unsigned 32-bit integer
    linx.size  Size
        Unsigned 32-bit integer
    linx.srcaddr  Sender Address
        Unsigned 32-bit integer
    linx.srcaddr32  Sender Address
        Unsigned 32-bit integer
    linx.srcmaddr_ether  Source
        6-byte Hardware (MAC) Address
        Source Media Address (ethernet)
    linx.version  Version
        Unsigned 32-bit integer
        LINX Version
    linx.winsize  WinSize
        Unsigned 32-bit integer
        Window Size

ENTTEC (enttec)

    enttec.dmx_data.data  DMX Data
        No value
    enttec.dmx_data.data_filter  DMX Data
        Byte array
    enttec.dmx_data.dmx_data  DMX Data
        No value
    enttec.dmx_data.size  Data Size
        Unsigned 16-bit integer
    enttec.dmx_data.start_code  Start Code
        Unsigned 8-bit integer
    enttec.dmx_data.type  Data Type
        Unsigned 8-bit integer
    enttec.dmx_data.universe  Universe
        Unsigned 8-bit integer
    enttec.head  Head
        Unsigned 32-bit integer
    enttec.poll.reply_type  Reply Type
        Unsigned 8-bit integer
    enttec.poll_reply.mac  MAC
        6-byte Hardware (MAC) Address
    enttec.poll_reply.name  Name
        String
    enttec.poll_reply.node_type  Node Type
        Unsigned 16-bit integer
    enttec.poll_reply.option_field  Option Field
        Unsigned 8-bit integer
    enttec.poll_reply.switch_settings  Switch settings
        Unsigned 8-bit integer
    enttec.poll_reply.tos  TOS
        Unsigned 8-bit integer
    enttec.poll_reply.ttl  TTL
        Unsigned 8-bit integer
    enttec.poll_reply.version  Version
        Unsigned 8-bit integer

EPMD Protocol (epmd)

    epmd.creation  Creation
        Unsigned 16-bit integer
    epmd.dist_high  Dist High
        Unsigned 16-bit integer
    epmd.dist_low  Dist Low
        Unsigned 16-bit integer
    epmd.edata  Edata
        Byte array
        Extra Data
    epmd.elen  Elen
        Unsigned 16-bit integer
        Extra Length
    epmd.len  Length
        Unsigned 16-bit integer
        Message Length
    epmd.name  Name
        String
    epmd.name_len  Name Length
        Unsigned 16-bit integer
    epmd.names  Names
        Byte array
        List of names
    epmd.result  Result
        Unsigned 8-bit integer
    epmd.tcp_port  TCP Port
        Unsigned 16-bit integer
    epmd.type  Type
        Unsigned 8-bit integer
        Message Type

ER Switch Packet Analysis (erspan)

    erspan.direction  Direction
        Unsigned 16-bit integer
    erspan.priority  Priority
        Unsigned 16-bit integer
    erspan.spanid  SpanID
        Unsigned 16-bit integer
    erspan.unknown1  Unknown1
        Unsigned 16-bit integer
    erspan.unknown2  Unknown2
        Unsigned 16-bit integer
    erspan.unknown3  Unknown3
        Unsigned 16-bit integer
    erspan.unknown4  Unknown4
        Byte array
    erspan.vlan  Vlan
        Unsigned 16-bit integer

ETHERNET Powerlink V1.0 (epl_v1)

    epl_v1.ainv.channel  Channel
        Unsigned 8-bit integer
    epl_v1.asnd.channel  Channel
        Unsigned 8-bit integer
    epl_v1.asnd.data  Data
        Byte array
    epl_v1.asnd.device.variant  Device Variant
        Unsigned 32-bit integer
    epl_v1.asnd.firmware.version  Firmware Version
        Unsigned 32-bit integer
    epl_v1.asnd.hardware.revision  Hardware Revision
        Unsigned 32-bit integer
    epl_v1.asnd.node_id  NodeID
        Unsigned 32-bit integer
    epl_v1.asnd.poll.in.size  Poll IN Size
        Unsigned 32-bit integer
    epl_v1.asnd.poll.out.size  Poll OUT Size
        Unsigned 32-bit integer
    epl_v1.asnd.size  Size
        Unsigned 16-bit integer
    epl_v1.dest  Destination
        Unsigned 8-bit integer
    epl_v1.eoc.netcommand  Net Command
        Unsigned 16-bit integer
    epl_v1.preq.data  OUT Data
        Byte array
    epl_v1.preq.ms  MS (Multiplexed Slot)
        Unsigned 8-bit integer
    epl_v1.preq.pollsize  Poll Size OUT
        Unsigned 16-bit integer
    epl_v1.preq.rd  RD (Ready)
        Unsigned 8-bit integer
    epl_v1.pres.data  IN Data
        Byte array
    epl_v1.pres.er  ER (Error)
        Unsigned 8-bit integer
    epl_v1.pres.ex  EX (Exception)
        Unsigned 8-bit integer
    epl_v1.pres.ms  MS (Multiplexed)
        Unsigned 8-bit integer
    epl_v1.pres.pollsize  Poll Size IN
        Unsigned 16-bit integer
    epl_v1.pres.rd  RD (Ready)
        Unsigned 8-bit integer
    epl_v1.pres.rs  RS (Request to Send)
        Unsigned 8-bit integer
    epl_v1.pres.wa  WA (Warning)
        Unsigned 8-bit integer
    epl_v1.service  Service
        Unsigned 8-bit integer
    epl_v1.soa.netcommand.parameter  Net Command Parameter
        Byte array
    epl_v1.soc.cycletime  Cycle Time
        Unsigned 32-bit integer
    epl_v1.soc.ms  MS (Multiplexed Slot)
        Unsigned 8-bit integer
    epl_v1.soc.netcommand  Net Command
        Unsigned 16-bit integer
    epl_v1.soc.netcommand.parameter  Net Command Parameter
        Byte array
    epl_v1.soc.nettime  Net Time
        Unsigned 32-bit integer
    epl_v1.soc.ps  PS (Prescaled Slot)
        Unsigned 8-bit integer
    epl_v1.src  Source
        Unsigned 8-bit integer

ETSI Distribution & Communication Protocol (for DRM) (dcp-etsi)

    dcp-etsi.sync  sync
        String
        AF or PF

EUTRAN X2 Application Protocol (X2AP) (x2ap)

    x2ap.ActivatedCellList  ActivatedCellList
        Unsigned 32-bit integer
    x2ap.ActivatedCellList_Item  ActivatedCellList-Item
        No value
    x2ap.CRNTI  CRNTI
        Byte array
    x2ap.Cause  Cause
        Unsigned 32-bit integer
    x2ap.CellActivationFailure  CellActivationFailure
        No value
    x2ap.CellActivationRequest  CellActivationRequest
        No value
    x2ap.CellActivationResponse  CellActivationResponse
        No value
    x2ap.CellInformation_Item  CellInformation-Item
        No value
    x2ap.CellInformation_List  CellInformation-List
        Unsigned 32-bit integer
    x2ap.CellMeasurementResult_Item  CellMeasurementResult-Item
        No value
    x2ap.CellMeasurementResult_List  CellMeasurementResult-List
        Unsigned 32-bit integer
    x2ap.CellToReport_Item  CellToReport-Item
        No value
    x2ap.CellToReport_List  CellToReport-List
        Unsigned 32-bit integer
    x2ap.CompositeAvailableCapacityGroup  CompositeAvailableCapacityGroup
        No value
    x2ap.CriticalityDiagnostics  CriticalityDiagnostics
        No value
    x2ap.CriticalityDiagnostics_IE_List_item  CriticalityDiagnostics-IE-List item
        No value
    x2ap.DeactivationIndication  DeactivationIndication
        Unsigned 32-bit integer
    x2ap.ECGI  ECGI
        No value
    x2ap.ENBConfigurationUpdate  ENBConfigurationUpdate
        No value
    x2ap.ENBConfigurationUpdateAcknowledge  ENBConfigurationUpdateAcknowledge
        No value
    x2ap.ENBConfigurationUpdateFailure  ENBConfigurationUpdateFailure
        No value
    x2ap.E_RAB_Item  E-RAB-Item
        No value
    x2ap.E_RAB_List  E-RAB-List
        Unsigned 32-bit integer
    x2ap.E_RABs_Admitted_Item  E-RABs-Admitted-Item
        No value
    x2ap.E_RABs_Admitted_List  E-RABs-Admitted-List
        Unsigned 32-bit integer
    x2ap.E_RABs_SubjectToStatusTransfer_Item  E-RABs-SubjectToStatusTransfer-Item
        No value
    x2ap.E_RABs_SubjectToStatusTransfer_List  E-RABs-SubjectToStatusTransfer-List
        Unsigned 32-bit integer
    x2ap.E_RABs_ToBeSetup_Item  E-RABs-ToBeSetup-Item
        No value
    x2ap.ErrorIndication  ErrorIndication
        No value
    x2ap.ForbiddenLAs_Item  ForbiddenLAs-Item
        No value
    x2ap.ForbiddenTAs_Item  ForbiddenTAs-Item
        No value
    x2ap.GUGroupIDList  GUGroupIDList
        Unsigned 32-bit integer
    x2ap.GUMMEI  GUMMEI
        No value
    x2ap.GU_Group_ID  GU-Group-ID
        No value
    x2ap.GlobalENB_ID  GlobalENB-ID
        No value
    x2ap.HandoverCancel  HandoverCancel
        No value
    x2ap.HandoverPreparationFailure  HandoverPreparationFailure
        No value
    x2ap.HandoverReport  HandoverReport
        No value
    x2ap.HandoverReportType  HandoverReportType
        Unsigned 32-bit integer
    x2ap.HandoverRequest  HandoverRequest
        No value
    x2ap.HandoverRequestAcknowledge  HandoverRequestAcknowledge
        No value
    x2ap.LAC  LAC
        Byte array
    x2ap.LastVisitedCell_Item  LastVisitedCell-Item
        Unsigned 32-bit integer
    x2ap.LoadInformation  LoadInformation
        No value
    x2ap.MBSFN_Subframe_Info  MBSFN-Subframe-Info
        No value
    x2ap.MBSFN_Subframe_Infolist  MBSFN-Subframe-Infolist
        Unsigned 32-bit integer
    x2ap.Measurement_ID  Measurement-ID
        Unsigned 32-bit integer
    x2ap.MobilityChangeAcknowledge  MobilityChangeAcknowledge
        No value
    x2ap.MobilityChangeFailure  MobilityChangeFailure
        No value
    x2ap.MobilityChangeRequest  MobilityChangeRequest
        No value
    x2ap.MobilityParametersInformation  MobilityParametersInformation
        No value
    x2ap.MobilityParametersModificationRange  MobilityParametersModificationRange
        No value
    x2ap.Neighbour_Information_item  Neighbour-Information item
        No value
    x2ap.Number_of_Antennaports  Number-of-Antennaports
        Unsigned 32-bit integer
    x2ap.Old_ECGIs  Old-ECGIs
        Unsigned 32-bit integer
    x2ap.PCI  PCI
        Unsigned 32-bit integer
    x2ap.PLMN_Identity  PLMN-Identity
        Byte array
    x2ap.PRACH_Configuration  PRACH-Configuration
        No value
    x2ap.PrivateIE_Field  PrivateIE-Field
        No value
    x2ap.PrivateMessage  PrivateMessage
        No value
    x2ap.ProtocolExtensionField  ProtocolExtensionField
        No value
    x2ap.ProtocolIE_Field  ProtocolIE-Field
        No value
    x2ap.ProtocolIE_Single_Container  ProtocolIE-Single-Container
        No value
    x2ap.RLFIndication  RLFIndication
        No value
    x2ap.Registration_Request  Registration-Request
        Unsigned 32-bit integer
    x2ap.ReportCharacteristics  ReportCharacteristics
        Byte array
    x2ap.ReportingPeriodicity  ReportingPeriodicity
        Unsigned 32-bit integer
    x2ap.ResetRequest  ResetRequest
        No value
    x2ap.ResetResponse  ResetResponse
        No value
    x2ap.ResourceStatusFailure  ResourceStatusFailure
        No value
    x2ap.ResourceStatusRequest  ResourceStatusRequest
        No value
    x2ap.ResourceStatusResponse  ResourceStatusResponse
        No value
    x2ap.ResourceStatusUpdate  ResourceStatusUpdate
        No value
    x2ap.SNStatusTransfer  SNStatusTransfer
        No value
    x2ap.SRVCCOperationPossible  SRVCCOperationPossible
        Unsigned 32-bit integer
    x2ap.ServedCells  ServedCells
        Unsigned 32-bit integer
    x2ap.ServedCellsToActivate  ServedCellsToActivate
        Unsigned 32-bit integer
    x2ap.ServedCellsToActivate_Item  ServedCellsToActivate-Item
        No value
    x2ap.ServedCellsToModify  ServedCellsToModify
        Unsigned 32-bit integer
    x2ap.ServedCellsToModify_Item  ServedCellsToModify-Item
        No value
    x2ap.ServedCells_item  ServedCells item
        No value
    x2ap.ShortMAC_I  ShortMAC-I
        Byte array
    x2ap.TAC  TAC
        Byte array
    x2ap.TargeteNBtoSource_eNBTransparentContainer  TargeteNBtoSource-eNBTransparentContainer
        Byte array
    x2ap.TimeToWait  TimeToWait
        Unsigned 32-bit integer
    x2ap.TraceActivation  TraceActivation
        No value
    x2ap.UEContextRelease  UEContextRelease
        No value
    x2ap.UE_ContextInformation  UE-ContextInformation
        No value
    x2ap.UE_HistoryInformation  UE-HistoryInformation
        Unsigned 32-bit integer
    x2ap.UE_RLF_Report_Container  UE-RLF-Report-Container
        Byte array
    x2ap.UE_X2AP_ID  UE-X2AP-ID
        Unsigned 32-bit integer
    x2ap.UL_HighInterferenceIndicationInfo_Item  UL-HighInterferenceIndicationInfo-Item
        No value
    x2ap.UL_InterferenceOverloadIndication_Item  UL-InterferenceOverloadIndication-Item
        Unsigned 32-bit integer
    x2ap.X2AP_PDU  X2AP-PDU
        Unsigned 32-bit integer
    x2ap.X2SetupFailure  X2SetupFailure
        No value
    x2ap.X2SetupRequest  X2SetupRequest
        No value
    x2ap.X2SetupResponse  X2SetupResponse
        No value
    x2ap.aS_SecurityInformation  aS-SecurityInformation
        No value
    x2ap.allocationAndRetentionPriority  allocationAndRetentionPriority
        No value
    x2ap.broadcastPLMNs  broadcastPLMNs
        Unsigned 32-bit integer
        BroadcastPLMNs_Item
    x2ap.capacityValue  capacityValue
        Unsigned 32-bit integer
    x2ap.cause  cause
        Unsigned 32-bit integer
    x2ap.cellCapacityClassValue  cellCapacityClassValue
        Unsigned 32-bit integer
    x2ap.cellId  cellId
        No value
        ECGI
    x2ap.cellType  cellType
        No value
    x2ap.cell_ID  cell-ID
        No value
        ECGI
    x2ap.cell_Size  cell-Size
        Unsigned 32-bit integer
    x2ap.criticality  criticality
        Unsigned 32-bit integer
    x2ap.cyclicPrefixDL  cyclicPrefixDL
        Unsigned 32-bit integer
    x2ap.cyclicPrefixUL  cyclicPrefixUL
        Unsigned 32-bit integer
    x2ap.dLHWLoadIndicator  dLHWLoadIndicator
        Unsigned 32-bit integer
        LoadIndicator
    x2ap.dLS1TNLLoadIndicator  dLS1TNLLoadIndicator
        Unsigned 32-bit integer
        LoadIndicator
    x2ap.dL_COUNTvalue  dL-COUNTvalue
        No value
        COUNTvalue
    x2ap.dL_CompositeAvailableCapacity  dL-CompositeAvailableCapacity
        No value
        CompositeAvailableCapacity
    x2ap.dL_EARFCN  dL-EARFCN
        Unsigned 32-bit integer
        EARFCN
    x2ap.dL_Forwarding  dL-Forwarding
        Unsigned 32-bit integer
    x2ap.dL_GBR_PRB_usage  dL-GBR-PRB-usage
        Unsigned 32-bit integer
    x2ap.dL_GTP_TunnelEndpoint  dL-GTP-TunnelEndpoint
        No value
        GTPtunnelEndpoint
    x2ap.dL_Total_PRB_usage  dL-Total-PRB-usage
        Unsigned 32-bit integer
    x2ap.dL_Transmission_Bandwidth  dL-Transmission-Bandwidth
        Unsigned 32-bit integer
        Transmission_Bandwidth
    x2ap.dL_non_GBR_PRB_usage  dL-non-GBR-PRB-usage
        Unsigned 32-bit integer
    x2ap.eARFCN  eARFCN
        Unsigned 32-bit integer
    x2ap.eCGI  eCGI
        No value
    x2ap.eNB_ID  eNB-ID
        Unsigned 32-bit integer
    x2ap.eUTRANTraceID  eUTRANTraceID
        Byte array
    x2ap.eUTRANcellIdentifier  eUTRANcellIdentifier
        Byte array
    x2ap.eUTRA_Mode_Info  eUTRA-Mode-Info
        Unsigned 32-bit integer
    x2ap.e_RAB_GuaranteedBitrateDL  e-RAB-GuaranteedBitrateDL
        Unsigned 64-bit integer
        BitRate
    x2ap.e_RAB_GuaranteedBitrateUL  e-RAB-GuaranteedBitrateUL
        Unsigned 64-bit integer
        BitRate
    x2ap.e_RAB_ID  e-RAB-ID
        Unsigned 32-bit integer
    x2ap.e_RAB_Level_QoS_Parameters  e-RAB-Level-QoS-Parameters
        No value
    x2ap.e_RAB_MaximumBitrateDL  e-RAB-MaximumBitrateDL
        Unsigned 64-bit integer
        BitRate
    x2ap.e_RAB_MaximumBitrateUL  e-RAB-MaximumBitrateUL
        Unsigned 64-bit integer
        BitRate
    x2ap.e_RABs_ToBeSetup_List  e-RABs-ToBeSetup-List
        Unsigned 32-bit integer
    x2ap.e_UTRAN_Cell  e-UTRAN-Cell
        No value
        LastVisitedEUTRANCellInformation
    x2ap.ecgi  ecgi
        No value
    x2ap.encryptionAlgorithms  encryptionAlgorithms
        Byte array
    x2ap.equivalentPLMNs  equivalentPLMNs
        Unsigned 32-bit integer
        EPLMNs
    x2ap.eventType  eventType
        Unsigned 32-bit integer
    x2ap.extensionValue  extensionValue
        No value
    x2ap.fDD  fDD
        No value
        FDD_Info
    x2ap.forbiddenInterRATs  forbiddenInterRATs
        Unsigned 32-bit integer
    x2ap.forbiddenLACs  forbiddenLACs
        Unsigned 32-bit integer
    x2ap.forbiddenLAs  forbiddenLAs
        Unsigned 32-bit integer
    x2ap.forbiddenTACs  forbiddenTACs
        Unsigned 32-bit integer
    x2ap.forbiddenTAs  forbiddenTAs
        Unsigned 32-bit integer
    x2ap.fourframes  fourframes
        Byte array
    x2ap.gERAN_Cell  gERAN-Cell
        Unsigned 32-bit integer
        LastVisitedGERANCellInformation
    x2ap.gTP_TEID  gTP-TEID
        Byte array
        GTP_TEI
    x2ap.gU_Group_ID  gU-Group-ID
        No value
    x2ap.gbrQosInformation  gbrQosInformation
        No value
        GBR_QosInformation
    x2ap.global  global
        Object Identifier
        OBJECT_IDENTIFIER
    x2ap.global_Cell_ID  global-Cell-ID
        No value
        ECGI
    x2ap.hFN  hFN
        Unsigned 32-bit integer
    x2ap.hWOverLoadIndicator  hWOverLoadIndicator
        No value
        HWLoadIndicator
    x2ap.handoverRestrictionList  handoverRestrictionList
        No value
    x2ap.handoverTriggerChange  handoverTriggerChange
        Signed 32-bit integer
        INTEGER_M20_20
    x2ap.handoverTriggerChangeLowerLimit  handoverTriggerChangeLowerLimit
        Signed 32-bit integer
        INTEGER_M20_20
    x2ap.handoverTriggerChangeUpperLimit  handoverTriggerChangeUpperLimit
        Signed 32-bit integer
        INTEGER_M20_20
    x2ap.highSpeedFlag  highSpeedFlag
        Boolean
        BOOLEAN
    x2ap.home_eNB_ID  home-eNB-ID
        Byte array
        BIT_STRING_SIZE_28
    x2ap.iECriticality  iECriticality
        Unsigned 32-bit integer
        Criticality
    x2ap.iE_Extensions  iE-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    x2ap.iE_ID  iE-ID
        Unsigned 32-bit integer
        ProtocolIE_ID
    x2ap.iEsCriticalityDiagnostics  iEsCriticalityDiagnostics
        Unsigned 32-bit integer
        CriticalityDiagnostics_IE_List
    x2ap.id  id
        Unsigned 32-bit integer
        ProtocolIE_ID
    x2ap.initiatingMessage  initiatingMessage
        No value
    x2ap.integrityProtectionAlgorithms  integrityProtectionAlgorithms
        Byte array
    x2ap.interfacesToTrace  interfacesToTrace
        Byte array
    x2ap.key_eNodeB_star  key-eNodeB-star
        Byte array
    x2ap.local  local
        Unsigned 32-bit integer
        INTEGER_0_maxPrivateIEs
    x2ap.locationReportingInformation  locationReportingInformation
        No value
    x2ap.mME_Code  mME-Code
        Byte array
    x2ap.mME_Group_ID  mME-Group-ID
        Byte array
    x2ap.mME_UE_S1AP_ID  mME-UE-S1AP-ID
        Unsigned 32-bit integer
        UE_S1AP_ID
    x2ap.macro_eNB_ID  macro-eNB-ID
        Byte array
        BIT_STRING_SIZE_20
    x2ap.misc  misc
        Unsigned 32-bit integer
        CauseMisc
    x2ap.neighbour_Info  neighbour-Info
        Unsigned 32-bit integer
        Neighbour_Information
    x2ap.nextHopChainingCount  nextHopChainingCount
        Unsigned 32-bit integer
    x2ap.numberOfCellSpecificAntennaPorts  numberOfCellSpecificAntennaPorts
        Unsigned 32-bit integer
    x2ap.old_ecgi  old-ecgi
        No value
        ECGI
    x2ap.oneframe  oneframe
        Byte array
    x2ap.pCI  pCI
        Unsigned 32-bit integer
    x2ap.pDCCH_InterferenceImpact  pDCCH-InterferenceImpact
        Unsigned 32-bit integer
        INTEGER_0_4_
    x2ap.pDCP_SN  pDCP-SN
        Unsigned 32-bit integer
    x2ap.pLMN_Identity  pLMN-Identity
        Byte array
    x2ap.p_B  p-B
        Unsigned 32-bit integer
        INTEGER_0_3_
    x2ap.prach_ConfigIndex  prach-ConfigIndex
        Unsigned 32-bit integer
        INTEGER_0_63
    x2ap.prach_FreqOffset  prach-FreqOffset
        Unsigned 32-bit integer
        INTEGER_0_94
    x2ap.pre_emptionCapability  pre-emptionCapability
        Unsigned 32-bit integer
    x2ap.pre_emptionVulnerability  pre-emptionVulnerability
        Unsigned 32-bit integer
    x2ap.priorityLevel  priorityLevel
        Unsigned 32-bit integer
    x2ap.privateIEs  privateIEs
        Unsigned 32-bit integer
        PrivateIE_Container
    x2ap.procedureCode  procedureCode
        Unsigned 32-bit integer
    x2ap.procedureCriticality  procedureCriticality
        Unsigned 32-bit integer
        Criticality
    x2ap.protocol  protocol
        Unsigned 32-bit integer
        CauseProtocol
    x2ap.protocolIEs  protocolIEs
        Unsigned 32-bit integer
        ProtocolIE_Container
    x2ap.qCI  qCI
        Unsigned 32-bit integer
    x2ap.rNTP_PerPRB  rNTP-PerPRB
        Byte array
        BIT_STRING_SIZE_6_110_
    x2ap.rNTP_Threshold  rNTP-Threshold
        Unsigned 32-bit integer
    x2ap.rRC_Context  rRC-Context
        Byte array
    x2ap.radioNetwork  radioNetwork
        Unsigned 32-bit integer
        CauseRadioNetwork
    x2ap.radioResourceStatus  radioResourceStatus
        No value
    x2ap.radioframeAllocationOffset  radioframeAllocationOffset
        Unsigned 32-bit integer
    x2ap.radioframeAllocationPeriod  radioframeAllocationPeriod
        Unsigned 32-bit integer
    x2ap.receiveStatusofULPDCPSDUs  receiveStatusofULPDCPSDUs
        Byte array
    x2ap.relativeNarrowbandTxPower  relativeNarrowbandTxPower
        No value
    x2ap.reportArea  reportArea
        Unsigned 32-bit integer
    x2ap.rootSequenceIndex  rootSequenceIndex
        Unsigned 32-bit integer
        INTEGER_0_837
    x2ap.s1TNLOverLoadIndicator  s1TNLOverLoadIndicator
        No value
        S1TNLLoadIndicator
    x2ap.servedCellInfo  servedCellInfo
        No value
        ServedCell_Information
    x2ap.servingPLMN  servingPLMN
        Byte array
        PLMN_Identity
    x2ap.specialSubframePatterns  specialSubframePatterns
        Unsigned 32-bit integer
    x2ap.specialSubframe_Info  specialSubframe-Info
        No value
    x2ap.subframeAllocation  subframeAllocation
        Unsigned 32-bit integer
    x2ap.subframeAssignment  subframeAssignment
        Unsigned 32-bit integer
    x2ap.subscriberProfileIDforRFP  subscriberProfileIDforRFP
        Unsigned 32-bit integer
    x2ap.successfulOutcome  successfulOutcome
        No value
    x2ap.tAC  tAC
        Byte array
    x2ap.tDD  tDD
        No value
        TDD_Info
    x2ap.target_Cell_ID  target-Cell-ID
        No value
        ECGI
    x2ap.time_UE_StayedInCell  time-UE-StayedInCell
        Unsigned 32-bit integer
    x2ap.traceCollectionEntityIPAddress  traceCollectionEntityIPAddress
        Byte array
    x2ap.traceDepth  traceDepth
        Unsigned 32-bit integer
    x2ap.transmission_Bandwidth  transmission-Bandwidth
        Unsigned 32-bit integer
    x2ap.transport  transport
        Unsigned 32-bit integer
        CauseTransport
    x2ap.transportLayerAddress  transportLayerAddress
        Byte array
    x2ap.transportLayerAddressIPv4  transportLayerAddress(IPv4)
        IPv4 address
    x2ap.transportLayerAddressIPv6  transportLayerAddress(IPv6)
        IPv4 address
    x2ap.triggeringMessage  triggeringMessage
        Unsigned 32-bit integer
    x2ap.typeOfError  typeOfError
        Unsigned 32-bit integer
    x2ap.uESecurityCapabilities  uESecurityCapabilities
        No value
    x2ap.uEaggregateMaximumBitRate  uEaggregateMaximumBitRate
        No value
    x2ap.uEaggregateMaximumBitRateDownlink  uEaggregateMaximumBitRateDownlink
        Unsigned 64-bit integer
        BitRate
    x2ap.uEaggregateMaximumBitRateUplink  uEaggregateMaximumBitRateUplink
        Unsigned 64-bit integer
        BitRate
    x2ap.uLHWLoadIndicator  uLHWLoadIndicator
        Unsigned 32-bit integer
        LoadIndicator
    x2ap.uLS1TNLLoadIndicator  uLS1TNLLoadIndicator
        Unsigned 32-bit integer
        LoadIndicator
    x2ap.uL_COUNTvalue  uL-COUNTvalue
        No value
        COUNTvalue
    x2ap.uL_CompositeAvailableCapacity  uL-CompositeAvailableCapacity
        No value
        CompositeAvailableCapacity
    x2ap.uL_EARFCN  uL-EARFCN
        Unsigned 32-bit integer
        EARFCN
    x2ap.uL_GBR_PRB_usage  uL-GBR-PRB-usage
        Unsigned 32-bit integer
    x2ap.uL_GTP_TunnelEndpoint  uL-GTP-TunnelEndpoint
        No value
        GTPtunnelEndpoint
    x2ap.uL_GTPtunnelEndpoint  uL-GTPtunnelEndpoint
        No value
        GTPtunnelEndpoint
    x2ap.uL_Total_PRB_usage  uL-Total-PRB-usage
        Unsigned 32-bit integer
    x2ap.uL_Transmission_Bandwidth  uL-Transmission-Bandwidth
        Unsigned 32-bit integer
        Transmission_Bandwidth
    x2ap.uL_non_GBR_PRB_usage  uL-non-GBR-PRB-usage
        Unsigned 32-bit integer
    x2ap.uTRAN_Cell  uTRAN-Cell
        Byte array
        LastVisitedUTRANCellInformation
    x2ap.ul_HighInterferenceIndicationInfo  ul-HighInterferenceIndicationInfo
        Unsigned 32-bit integer
    x2ap.ul_InterferenceOverloadIndication  ul-InterferenceOverloadIndication
        Unsigned 32-bit integer
    x2ap.ul_interferenceindication  ul-interferenceindication
        Byte array
        UL_HighInterferenceIndication
    x2ap.undefined  undefined
        No value
    x2ap.unsuccessfulOutcome  unsuccessfulOutcome
        No value
    x2ap.value  value
        No value
        ProtocolIE_Field_value
    x2ap.zeroCorrelationIndex  zeroCorrelationIndex
        Unsigned 32-bit integer
        INTEGER_0_15

Echo (echo)

    echo.data  Echo data
        Byte array
    echo.request  Echo request
        Boolean
        Echo data
    echo.response  Echo response
        Boolean
        Echo data

Encapsulating Security Payload (esp)

    esp.iv  ESP IV
        Byte array
        IP Encapsulating Security Payload
    esp.pad_len  ESP Pad Length
        Unsigned 8-bit integer
        IP Encapsulating Security Payload Pad Length
    esp.protocol  ESP Next Header
        Unsigned 8-bit integer
        IP Encapsulating Security Payload Next Header
    esp.sequence  ESP Sequence
        Unsigned 32-bit integer
        IP Encapsulating Security Payload Sequence Number
    esp.spi  ESP SPI
        Unsigned 32-bit integer
        IP Encapsulating Security Payload Security Parameters Index

Endpoint Handlespace Redundancy Protocol (enrp)

    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.dccp_transport_port  Port
        Unsigned 16-bit integer
    enrp.dccp_transport_reserved  Reserved
        Unsigned 16-bit integer
    enrp.dccp_transport_service_code  Service Code
        Unsigned 16-bit integer
    enrp.ipv4_address  IP Version 4 Address
        IPv4 address
    enrp.ipv6_address  IP Version 6 Address
        IPv6 address
    enrp.m_bit  M Bit
        Boolean
    enrp.message_flags  Flags
        Unsigned 8-bit integer
    enrp.message_length  Length
        Unsigned 16-bit integer
    enrp.message_type  Type
        Unsigned 8-bit integer
    enrp.message_value  Value
        Byte array
    enrp.parameter_length  Parameter Length
        Unsigned 16-bit integer
    enrp.parameter_padding  Padding
        Byte array
    enrp.parameter_type  Parameter Type
        Unsigned 16-bit integer
    enrp.parameter_value  Parameter Value
        Byte array
    enrp.pe_checksum  PE Checksum
        Unsigned 16-bit integer
    enrp.pe_identifier  PE Identifier
        Unsigned 32-bit integer
    enrp.pool_element_home_enrp_server_identifier  Home ENRP Server Identifier
        Unsigned 32-bit integer
    enrp.pool_element_pe_identifier  PE Identifier
        Unsigned 32-bit integer
    enrp.pool_element_registration_life  Registration Life
        Signed 32-bit integer
    enrp.pool_handle_pool_handle  Pool Handle
        Byte array
    enrp.pool_member_selection_policy_degradation  Policy Degradation
        Double-precision floating point
    enrp.pool_member_selection_policy_distance  Policy Distance
        Unsigned 32-bit integer
    enrp.pool_member_selection_policy_load  Policy Load
        Double-precision floating point
    enrp.pool_member_selection_policy_load_dpf  Policy Load DPF
        Double-precision floating point
    enrp.pool_member_selection_policy_priority  Policy Priority
        Unsigned 32-bit integer
    enrp.pool_member_selection_policy_type  Policy Type
        Unsigned 32-bit integer
    enrp.pool_member_selection_policy_value  Policy Value
        Byte array
    enrp.pool_member_selection_policy_weight  Policy Weight
        Unsigned 32-bit integer
    enrp.pool_member_selection_policy_weight_dpf  Policy Weight DPF
        Double-precision floating point
    enrp.r_bit  R Bit
        Boolean
    enrp.receiver_servers_id  Receiver Server's ID
        Unsigned 32-bit integer
    enrp.reserved  Reserved
        Unsigned 16-bit integer
    enrp.sctp_transport_port  Port
        Unsigned 16-bit integer
    enrp.sender_servers_id  Sender Server's ID
        Unsigned 32-bit integer
    enrp.server_information_server_identifier  Server Identifier
        Unsigned 32-bit integer
    enrp.t_bit  T Bit
        Boolean
    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_lite_transport_port  Port
        Unsigned 16-bit integer
    enrp.udp_lite_transport_reserved  Reserved
        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

Enhanced Interior Gateway Routing Protocol (eigrp)

    eigrp.ack  Acknowledge
        Unsigned 32-bit integer
    eigrp.as  Autonomous System
        Unsigned 16-bit integer
        Autonomous System number
    eigrp.at_cbl.routerid  AppleTalk Router ID
        Unsigned 32-bit integer
    eigrp.at_ext.as  Originating A.S.
        Unsigned 32-bit integer
    eigrp.at_ext.bandwidth  Bandwidth
        Unsigned 32-bit integer
    eigrp.at_ext.delay  Delay
        Unsigned 32-bit integer
    eigrp.at_ext.flags  Flags
        Unsigned 8-bit integer
    eigrp.at_ext.flags.default  Candidate Default Route
        Boolean
    eigrp.at_ext.flags.ext  External Route
        Boolean
    eigrp.at_ext.hopcount  Hop Count
        Unsigned 8-bit integer
    eigrp.at_ext.load  Load
        Unsigned 8-bit integer
    eigrp.at_ext.metric  External protocol metric
        Unsigned 16-bit integer
    eigrp.at_ext.mtu  MTU
        Unsigned 24-bit integer
    eigrp.at_ext.origrouter  Originating router
        Unsigned 32-bit integer
    eigrp.at_ext.proto  External protocol ID
        Unsigned 8-bit integer
    eigrp.at_ext.reliability  Reliability
        Unsigned 8-bit integer
    eigrp.at_ext.reserved  Reserved
        Unsigned 16-bit integer
    eigrp.at_ext.tag  Arbitrary tag
        Unsigned 32-bit integer
    eigrp.at_int.bandwidth  Bandwidth
        Unsigned 32-bit integer
    eigrp.at_int.delay  Delay
        Unsigned 32-bit integer
    eigrp.at_int.hopcount  Hop Count
        Unsigned 8-bit integer
    eigrp.at_int.load  Load
        Unsigned 8-bit integer
    eigrp.at_int.mtu  MTU
        Unsigned 24-bit integer
    eigrp.at_int.reliability  Reliability
        Unsigned 8-bit integer
    eigrp.at_int.reserved  Reserved
        Unsigned 16-bit integer
    eigrp.auth.data  Data
        String
    eigrp.auth.keyid  Key ID
        Unsigned 32-bit integer
    eigrp.auth.keysize  Key size
        Unsigned 16-bit integer
    eigrp.auth.nullapd  Nullpad
        String
    eigrp.auth.type  Authentication Type
        Unsigned 16-bit integer
    eigrp.checksum  Checksum
        Unsigned 16-bit integer
    eigrp.flags  Flags
        Unsigned 32-bit integer
    eigrp.flags.condrecv  Conditional Receive
        Boolean
    eigrp.flags.init  Init
        Boolean
    eigrp.ip6_ext.as  Originating A.S.
        Unsigned 32-bit integer
    eigrp.ip6_ext.bandwidth  Bandwidth
        Unsigned 32-bit integer
    eigrp.ip6_ext.delay  Delay
        Unsigned 32-bit integer
    eigrp.ip6_ext.flags  Flags
        Unsigned 8-bit integer
    eigrp.ip6_ext.flags.default  Candidate Default Route
        Boolean
    eigrp.ip6_ext.flags.ext  External Route
        Boolean
    eigrp.ip6_ext.hopcount  Hop Count
        Unsigned 8-bit integer
    eigrp.ip6_ext.load  Load
        Unsigned 8-bit integer
    eigrp.ip6_ext.metric  External protocol metric
        Unsigned 32-bit integer
    eigrp.ip6_ext.mtu  MTU
        Unsigned 24-bit integer
    eigrp.ip6_ext.nexthop  Next Hop
        IPv6 address
    eigrp.ip6_ext.origrouter  Originating router
        IPv4 address
    eigrp.ip6_ext.prefixlen  Prefix Length
        Unsigned 8-bit integer
    eigrp.ip6_ext.proto  External protocol ID
        Unsigned 8-bit integer
    eigrp.ip6_ext.reliability  Reliability
        Unsigned 8-bit integer
    eigrp.ip6_ext.reserved  Reserved
        Unsigned 16-bit integer
    eigrp.ip6_ext.reserved2  Reserved
        Unsigned 16-bit integer
    eigrp.ip6_ext.tag  Arbitrary tag
        Unsigned 32-bit integer
    eigrp.ip6_int.bandwidth  Bandwidth
        Unsigned 32-bit integer
    eigrp.ip6_int.delay  Delay
        Unsigned 32-bit integer
    eigrp.ip6_int.hopcount  Hop Count
        Unsigned 8-bit integer
    eigrp.ip6_int.load  Load
        Unsigned 8-bit integer
    eigrp.ip6_int.mtu  MTU
        Unsigned 24-bit integer
    eigrp.ip6_int.nexthop  Next Hop
        IPv6 address
    eigrp.ip6_int.prefixlen  Prefix Length
        Unsigned 8-bit integer
    eigrp.ip6_int.reliability  Reliability
        Unsigned 8-bit integer
    eigrp.ip6_int.reserved  Reserved
        Unsigned 16-bit integer
    eigrp.ip_ext.as  Originating A.S.
        Unsigned 32-bit integer
    eigrp.ip_ext.bandwidth  Bandwidth
        Unsigned 32-bit integer
    eigrp.ip_ext.delay  Delay
        Unsigned 32-bit integer
    eigrp.ip_ext.flags  Flags
        Unsigned 8-bit integer
    eigrp.ip_ext.flags.default  Candidate Default Route
        Boolean
    eigrp.ip_ext.flags.ext  External Route
        Boolean
    eigrp.ip_ext.hopcount  Hop Count
        Unsigned 8-bit integer
    eigrp.ip_ext.load  Load
        Unsigned 8-bit integer
    eigrp.ip_ext.metric  External protocol metric
        Unsigned 32-bit integer
    eigrp.ip_ext.mtu  MTU
        Unsigned 24-bit integer
    eigrp.ip_ext.nexthop  Next Hop
        IPv4 address
    eigrp.ip_ext.origrouter  Originating router
        IPv4 address
    eigrp.ip_ext.prefixlen  Prefix Length
        Unsigned 8-bit integer
    eigrp.ip_ext.proto  External protocol ID
        Unsigned 8-bit integer
    eigrp.ip_ext.reliability  Reliability
        Unsigned 8-bit integer
    eigrp.ip_ext.reserved  Reserved
        Unsigned 16-bit integer
    eigrp.ip_ext.reserved2  Reserved
        Unsigned 16-bit integer
    eigrp.ip_ext.tag  Arbitrary tag
        Unsigned 32-bit integer
    eigrp.ip_int.bandwidth  Bandwidth
        Unsigned 32-bit integer
    eigrp.ip_int.delay  Delay
        Unsigned 32-bit integer
    eigrp.ip_int.dst  Destination
        String
    eigrp.ip_int.hopcount  Hop Count
        Unsigned 8-bit integer
    eigrp.ip_int.load  Load
        Unsigned 8-bit integer
    eigrp.ip_int.mtu  MTU
        Unsigned 24-bit integer
    eigrp.ip_int.nexthop  Next Hop
        IPv4 address
    eigrp.ip_int.prefixlen  Prefix Length
        Unsigned 8-bit integer
    eigrp.ip_int.reliability  Reliability
        Unsigned 8-bit integer
    eigrp.ip_int.reserved  Reserved
        Unsigned 16-bit integer
    eigrp.ipx_ext.as  Originating A.S.
        Unsigned 32-bit integer
    eigrp.ipx_ext.bandwidth  Bandwidth
        Unsigned 32-bit integer
    eigrp.ipx_ext.delay  Delay
        Unsigned 32-bit integer
    eigrp.ipx_ext.dst  Destination
        IPX network or server name
    eigrp.ipx_ext.extdelay  External protocol delay
        Unsigned 16-bit integer
    eigrp.ipx_ext.hopcount  Hop Count
        Unsigned 8-bit integer
    eigrp.ipx_ext.load  Load
        Unsigned 8-bit integer
    eigrp.ipx_ext.metric  External protocol metric
        Unsigned 16-bit integer
    eigrp.ipx_ext.mtu  MTU
        Unsigned 24-bit integer
    eigrp.ipx_ext.nexthop_addr  Next Hop Address
        IPX network or server name
    eigrp.ipx_ext.nexthop_id  Next Hop ID
        6-byte Hardware (MAC) Address
    eigrp.ipx_ext.origrouter  Originating router
        6-byte Hardware (MAC) Address
    eigrp.ipx_ext.proto  External protocol ID
        Unsigned 8-bit integer
    eigrp.ipx_ext.reliability  Reliability
        Unsigned 8-bit integer
    eigrp.ipx_ext.reserved  Reserved
        Unsigned 8-bit integer
    eigrp.ipx_ext.reserved2  Reserved
        Unsigned 16-bit integer
    eigrp.ipx_ext.tag  Arbitrary tag
        Unsigned 32-bit integer
    eigrp.ipx_int.bandwidth  Bandwidth
        Unsigned 32-bit integer
    eigrp.ipx_int.delay  Delay
        Unsigned 32-bit integer
    eigrp.ipx_int.dst  Destination
        IPX network or server name
    eigrp.ipx_int.hopcount  Hop Count
        Unsigned 8-bit integer
    eigrp.ipx_int.load  Load
        Unsigned 8-bit integer
    eigrp.ipx_int.mtu  MTU
        Unsigned 24-bit integer
    eigrp.ipx_int.nexthop_addr  Next Hop Address
        IPX network or server name
    eigrp.ipx_int.nexthop_id  Next Hop ID
        6-byte Hardware (MAC) Address
    eigrp.ipx_int.reliability  Reliability
        Unsigned 8-bit integer
    eigrp.ipx_int.reserved  Reserved
        Unsigned 16-bit integer
    eigrp.nms  Next Multicast Sequence
        Unsigned 32-bit integer
    eigrp.opcode  Opcode
        Unsigned 8-bit integer
        Opcode number
    eigrp.par.holdtime  Hold Time
        Unsigned 16-bit integer
    eigrp.par.k1  K1
        Unsigned 8-bit integer
    eigrp.par.k2  K2
        Unsigned 8-bit integer
    eigrp.par.k3  K3
        Unsigned 8-bit integer
    eigrp.par.k4  K4
        Unsigned 8-bit integer
    eigrp.par.k5  K5
        Unsigned 8-bit integer
    eigrp.par.reserved  Reserved
        Unsigned 8-bit integer
    eigrp.seq  Sequence
        Unsigned 32-bit integer
    eigrp.seq.addrlen  Address length
        Unsigned 8-bit integer
    eigrp.seq.ip6addr  IPv6 Address
        IPv6 address
    eigrp.seq.ipaddr  IP Address
        IPv4 address
    eigrp.stub_flags  Stub Flags
        Unsigned 16-bit integer
    eigrp.stub_flags.connected  Connected
        Boolean
    eigrp.stub_flags.leakmap  Leak-Map
        Boolean
    eigrp.stub_flags.recvonly  Receive-Only
        Boolean
    eigrp.stub_flags.redist  Redistributed
        Boolean
    eigrp.stub_flags.static  Static
        Boolean
    eigrp.stub_flags.summary  Summary
        Boolean
    eigrp.sv.eigrp  EIGRP release version
        String
    eigrp.sv.ios  IOS release version
        String
    eigrp.tlv  Type
        Unsigned 16-bit integer
        Type/Length/Value
    eigrp.tlv.size  Size
        Unsigned 16-bit integer
        TLV size
    eigrp.version  Version
        Unsigned 8-bit integer

Enhanced Variable Rate Codec (evrc)

    evrc.b.mode_request  Mode Request
        Unsigned 8-bit integer
        Mode Request bits
    evrc.b.toc.frame_type_hi  ToC Frame Type
        Unsigned 8-bit integer
        ToC Frame Type bits
    evrc.b.toc.frame_type_lo  ToC Frame Type
        Unsigned 8-bit integer
        ToC Frame Type bits
    evrc.frame_count  Frame Count (0 means 1 frame)
        Unsigned 8-bit integer
        Frame Count bits, a value of 0 means 1 frame
    evrc.interleave_idx  Interleave Index
        Unsigned 8-bit integer
        Interleave index bits
    evrc.interleave_len  Interleave Length
        Unsigned 8-bit integer
        Interleave length bits
    evrc.legacy.toc.frame_type  ToC Frame Type
        Unsigned 8-bit integer
        ToC Frame Type bits
    evrc.legacy.toc.further_entries_ind  ToC Further Entries Indicator
        Boolean
        ToC Further Entries Indicator bit
    evrc.legacy.toc.reduced_rate  ToC Reduced Rate
        Unsigned 8-bit integer
        ToC Reduced Rate bits
    evrc.mode_request  Mode Request
        Unsigned 8-bit integer
        Mode Request bits
    evrc.padding  Padding
        Unsigned 8-bit integer
        Padding bits
    evrc.reserved  Reserved
        Unsigned 8-bit integer
        Reserved bits
    evrc.toc.frame_type_hi  ToC Frame Type
        Unsigned 8-bit integer
        ToC Frame Type bits
    evrc.toc.frame_type_lo  ToC Frame Type
        Unsigned 8-bit integer
        ToC Frame Type bits
    evrc.wb.mode_request  Mode Request
        Unsigned 8-bit integer
        Mode Request bits

EtherCAT Mailbox Protocol (ecat_mailbox)

    ecat_mailbox.address  Address
        Unsigned 16-bit integer
    ecat_mailbox.coe  CoE
        Byte array
    ecat_mailbox.coe.dsoldata  Data
        Byte array
    ecat_mailbox.coe.number  Number
        Unsigned 16-bit integer
    ecat_mailbox.coe.sdoccsds  Download Segment
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoccsds.lastseg  Last Segment
        Boolean
    ecat_mailbox.coe.sdoccsds.size  Size
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoccsds.toggle  Toggle Bit
        Boolean
    ecat_mailbox.coe.sdoccsid  Initiate Download
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoccsid.complete  Access
        Boolean
    ecat_mailbox.coe.sdoccsid.expedited  Expedited
        Boolean
    ecat_mailbox.coe.sdoccsid.size0  Bytes
        Boolean
    ecat_mailbox.coe.sdoccsid.size1  Bytes
        Boolean
    ecat_mailbox.coe.sdoccsid.sizeind  Size Ind.
        Boolean
    ecat_mailbox.coe.sdoccsiu  Init Upload
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoccsiu_complete  Toggle Bit
        Boolean
    ecat_mailbox.coe.sdoccsus  Upload Segment
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoccsus_toggle  Toggle Bit
        Boolean
    ecat_mailbox.coe.sdodata  Data
        Unsigned 32-bit integer
    ecat_mailbox.coe.sdoerror  SDO Error
        Unsigned 32-bit integer
    ecat_mailbox.coe.sdoidx  Index
        Unsigned 16-bit integer
    ecat_mailbox.coe.sdoinfobitlen  Info Bit Len
        Unsigned 16-bit integer
    ecat_mailbox.coe.sdoinfodatatype  Info Data Type
        Unsigned 16-bit integer
    ecat_mailbox.coe.sdoinfodefaultvalue  Info Default Val
        No value
    ecat_mailbox.coe.sdoinfoerrorcode  Info Error Code
        Unsigned 32-bit integer
    ecat_mailbox.coe.sdoinfofrag  Info Frag Left
        Unsigned 16-bit integer
    ecat_mailbox.coe.sdoinfoindex  Info Obj Index
        Unsigned 16-bit integer
    ecat_mailbox.coe.sdoinfolist  Info List
        No value
    ecat_mailbox.coe.sdoinfolisttype  Info List Type
        Unsigned 16-bit integer
    ecat_mailbox.coe.sdoinfomaxsub  Info Max SubIdx
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoinfomaxvalue  Info Max Val
        No value
    ecat_mailbox.coe.sdoinfominvalue  Info Min Val
        No value
    ecat_mailbox.coe.sdoinfoname  Info Name
        String
    ecat_mailbox.coe.sdoinfoobjaccess  Info Obj Access
        Unsigned 16-bit integer
    ecat_mailbox.coe.sdoinfoobjcode  Info Obj Code
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoinfoopcode  Info OpCode
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoinfosubindex  Info Obj SubIdx
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoinfounittype  Info Data Type
        Unsigned 16-bit integer
    ecat_mailbox.coe.sdoinfovalueinfo  Info Obj SubIdx
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdolength  Length
        Unsigned 32-bit integer
    ecat_mailbox.coe.sdoreq  SDO Req
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdores  SDO Res
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoscsds  Download Segment Response
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoscsds_toggle  Toggle Bit
        Boolean
    ecat_mailbox.coe.sdoscsiu  Initiate Upload Response
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoscsiu_complete  Access
        Boolean
    ecat_mailbox.coe.sdoscsiu_expedited  Expedited
        Boolean
    ecat_mailbox.coe.sdoscsiu_size0  Bytes
        Boolean
    ecat_mailbox.coe.sdoscsiu_size1  Bytes
        Boolean
    ecat_mailbox.coe.sdoscsiu_sizeind  Size Ind.
        Boolean
    ecat_mailbox.coe.sdoscsus  Upload Segment
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoscsus_bytes  Bytes
        Unsigned 8-bit integer
    ecat_mailbox.coe.sdoscsus_lastseg  Last Segment
        Boolean
    ecat_mailbox.coe.sdoscsus_toggle  Toggle Bit
        Boolean
    ecat_mailbox.coe.sdosub  SubIndex
        Unsigned 8-bit integer
    ecat_mailbox.coe.type  Type
        Unsigned 16-bit integer
    ecat_mailbox.data  MB Data
        No value
    ecat_mailbox.eoe  EoE Fragment
        Byte array
    ecat_mailbox.eoe.fraghead  Eoe Frag Header
        Byte array
    ecat_mailbox.eoe.fragment  EoE Frag Data
        Byte array
    ecat_mailbox.eoe.fragno  EoE
        Unsigned 32-bit integer
    ecat_mailbox.eoe.frame  EoE
        Unsigned 32-bit integer
    ecat_mailbox.eoe.init  Init
        No value
    ecat_mailbox.eoe.init.append_timestamp  AppendTimeStamp
        Boolean
    ecat_mailbox.eoe.init.contains_defaultgateway  DefaultGateway
        Boolean
    ecat_mailbox.eoe.init.contains_dnsname  DnsName
        Boolean
    ecat_mailbox.eoe.init.contains_dnsserver  DnsServer
        Boolean
    ecat_mailbox.eoe.init.contains_ipaddr  IpAddr
        Boolean
    ecat_mailbox.eoe.init.contains_macaddr  MacAddr
        Boolean
    ecat_mailbox.eoe.init.contains_subnetmask  SubnetMask
        Boolean
    ecat_mailbox.eoe.init.defaultgateway  Default Gateway
        IPv4 address
    ecat_mailbox.eoe.init.dnsname  Dns Name
        String
    ecat_mailbox.eoe.init.dnsserver  Dns Server
        IPv4 address
    ecat_mailbox.eoe.init.ipaddr  Ip Addr
        IPv4 address
    ecat_mailbox.eoe.init.macaddr  Mac Addr
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.init.subnetmask  Subnet Mask
        IPv4 address
    ecat_mailbox.eoe.last  Last Fragment
        Unsigned 32-bit integer
    ecat_mailbox.eoe.macfilter  Mac Filter
        Byte array
    ecat_mailbox.eoe.macfilter.filter  Filter
        Byte array
    ecat_mailbox.eoe.macfilter.filter0  Filter 0
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter1  Filter 1
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter10  Filter 10
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter11  Filter 11
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter12  Filter 12
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter13  Filter 13
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter14  Filter 14
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter15  Filter 15
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter2  Filter 2
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter3  Filter 3
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter4  Filter 4
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter5  Filter 5
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter6  Filter 6
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter7  Filter 7
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter8  Filter 8
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filter9  Filter 9
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filtermask  Filter Mask
        Byte array
    ecat_mailbox.eoe.macfilter.filtermask0  Mask 0
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filtermask1  Mask 1
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filtermask2  Mask 2
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.filtermask3  Mask 3
        6-byte Hardware (MAC) Address
    ecat_mailbox.eoe.macfilter.macfiltercount  Mac Filter Count
        Unsigned 8-bit integer
    ecat_mailbox.eoe.macfilter.maskcount  Mac Filter Mask Count
        Unsigned 8-bit integer
    ecat_mailbox.eoe.macfilter.nobroadcasts  No Broadcasts
        Boolean
    ecat_mailbox.eoe.offset  EoE
        Unsigned 32-bit integer
    ecat_mailbox.eoe.timestamp  Time Stamp
        Unsigned 32-bit integer
    ecat_mailbox.eoe.timestampapp  Last Fragment
        Unsigned 32-bit integer
    ecat_mailbox.eoe.timestampreq  Last Fragment
        Unsigned 32-bit integer
    ecat_mailbox.eoe.type  EoE
        Unsigned 32-bit integer
    ecat_mailbox.foe  Foe
        Byte array
    ecat_mailbox.foe.efw  Firmware
        Byte array
    ecat_mailbox.foe.efw.addresshw  AddressHW
        Unsigned 16-bit integer
    ecat_mailbox.foe.efw.addresslw  AddressLW
        Unsigned 16-bit integer
    ecat_mailbox.foe.efw.cmd  Cmd
        Unsigned 16-bit integer
    ecat_mailbox.foe.efw.data  Data
        Byte array
    ecat_mailbox.foe.efw.size  Size
        Unsigned 16-bit integer
    ecat_mailbox.foe_busydata  Foe Data
        Byte array
    ecat_mailbox.foe_busydone  Foe BusyDone
        Unsigned 16-bit integer
    ecat_mailbox.foe_busyentire  Foe BusyEntire
        Unsigned 16-bit integer
    ecat_mailbox.foe_errcode  Foe ErrorCode
        Unsigned 32-bit integer
    ecat_mailbox.foe_errtext  Foe ErrorString
        String
    ecat_mailbox.foe_filelength  Foe FileLength
        Unsigned 32-bit integer
    ecat_mailbox.foe_filename  Foe FileName
        String
    ecat_mailbox.foe_opmode  Foe OpMode
        Unsigned 8-bit integer
        Op modes
    ecat_mailbox.foe_packetno  Foe PacketNo
        Unsigned 16-bit integer
    ecat_mailbox.length  Length
        Unsigned 16-bit integer
    ecat_mailbox.soe  Soe
        Byte array
    ecat_mailbox.soe_data  SoE Data
        Byte array
    ecat_mailbox.soe_error  SoE Error
        Unsigned 16-bit integer
    ecat_mailbox.soe_frag  SoE FragLeft
        Unsigned 16-bit integer
    ecat_mailbox.soe_header  Soe Header
        Unsigned 16-bit integer
    ecat_mailbox.soe_header_attribute  Attribute
        Boolean
    ecat_mailbox.soe_header_datastate  Datastate
        Boolean
    ecat_mailbox.soe_header_driveno  Drive No
        Unsigned 16-bit integer
    ecat_mailbox.soe_header_error  Error
        Boolean
    ecat_mailbox.soe_header_incomplete  More Follows...
        Boolean
    ecat_mailbox.soe_header_max  Max
        Boolean
    ecat_mailbox.soe_header_min  Min
        Boolean
    ecat_mailbox.soe_header_name  Name
        Boolean
    ecat_mailbox.soe_header_reserved  Reserved
        Boolean
    ecat_mailbox.soe_header_unit  Unit
        Boolean
    ecat_mailbox.soe_header_value  Value
        Boolean
    ecat_mailbox.soe_idn  SoE IDN
        Unsigned 16-bit integer
    ecat_mailbox.soe_opcode  SoE OpCode
        Unsigned 16-bit integer

EtherCAT Switch Link (esl)

    esl.alignerror  Alignment Error
        Boolean
    esl.crcerror  Crc Error
        Boolean
    esl.port  Port
        Unsigned 16-bit integer
    esl.timestamp  timestamp
        Unsigned 64-bit integer

EtherCAT datagram(s) (ecat)

    ecat.ado  Offset Addr
        Unsigned 16-bit integer
    ecat.adp  Slave Addr
        Unsigned 16-bit integer
    ecat.cmd  Command
        Unsigned 8-bit integer
    ecat.cnt  Working Cnt
        Unsigned 16-bit integer
        The working counter is increased once for each addressed device if at least one byte/bit of the data was successfully read and/or written by that device, it is increased once for every operation made by that device - read/write/read and write
    ecat.data  Data
        Byte array
    ecat.dc.dif.ba  DC B-A
        Unsigned 32-bit integer
    ecat.dc.dif.bd  DC B-D
        Unsigned 32-bit integer
    ecat.dc.dif.ca  DC C-A
        Unsigned 32-bit integer
    ecat.dc.dif.cb  DC C-B
        Unsigned 32-bit integer
    ecat.dc.dif.cd  DC C-D
        Unsigned 32-bit integer
    ecat.dc.dif.da  DC D-A
        Unsigned 32-bit integer
    ecat.fmmu  FMMU
        Byte array
    ecat.fmmu.active  FMMU Active
        Unsigned 8-bit integer
    ecat.fmmu.active0  Active
        Boolean
    ecat.fmmu.lendbit  Log EndBit
        Unsigned 8-bit integer
    ecat.fmmu.llen  Log Length
        Unsigned 16-bit integer
    ecat.fmmu.lstart  Log Start
        Unsigned 32-bit integer
    ecat.fmmu.lstartbit  Log StartBit
        Unsigned 8-bit integer
    ecat.fmmu.pstart  Phys Start
        Unsigned 8-bit integer
    ecat.fmmu.pstartbit  Phys StartBit
        Unsigned 8-bit integer
    ecat.fmmu.type  FMMU Type
        Unsigned 8-bit integer
    ecat.fmmu.typeread  Type
        Boolean
    ecat.fmmu.typewrite  Type
        Boolean
    ecat.header  Header
        Byte array
    ecat.idx  Index
        Unsigned 8-bit integer
    ecat.int  Interrupt
        Unsigned 16-bit integer
    ecat.lad  Log Addr
        Unsigned 32-bit integer
    ecat.len  Length
        Unsigned 16-bit integer
    ecat.sub  EtherCAT Frame
        Byte array
    ecat.sub1.ado  Offset Addr
        Unsigned 16-bit integer
    ecat.sub1.adp  Slave Addr
        Unsigned 16-bit integer
    ecat.sub1.cmd  Command
        Unsigned 8-bit integer
    ecat.sub1.cnt  Working Cnt
        Unsigned 16-bit integer
    ecat.sub1.data  Data
        Byte array
    ecat.sub1.dc.dif.ba  DC B-A
        Unsigned 32-bit integer
    ecat.sub1.dc.dif.bd  DC B-C
        Unsigned 32-bit integer
    ecat.sub1.dc.dif.ca  DC C-A
        Unsigned 32-bit integer
    ecat.sub1.dc.dif.cb  DC C-B
        Unsigned 32-bit integer
    ecat.sub1.dc.dif.cd  DC C-D
        Unsigned 32-bit integer
    ecat.sub1.dc.dif.da  DC D-A
        Unsigned 32-bit integer
    ecat.sub1.idx  Index
        Unsigned 8-bit integer
    ecat.sub1.lad  Log Addr
        Unsigned 32-bit integer
    ecat.sub10.ado  Offset Addr
        Unsigned 16-bit integer
    ecat.sub10.adp  Slave Addr
        Unsigned 16-bit integer
    ecat.sub10.cmd  Command
        Unsigned 8-bit integer
    ecat.sub10.cnt  Working Cnt
        Unsigned 16-bit integer
    ecat.sub10.data  Data
        Byte array
    ecat.sub10.dc.dif.ba  DC B-A
        Unsigned 32-bit integer
    ecat.sub10.dc.dif.bd  DC B-D
        Unsigned 32-bit integer
    ecat.sub10.dc.dif.ca  DC C-A
        Unsigned 32-bit integer
    ecat.sub10.dc.dif.cb  DC C-B
        Unsigned 32-bit integer
    ecat.sub10.dc.dif.cd  DC C-D
        Unsigned 32-bit integer
    ecat.sub10.dc.dif.da  DC D-A
        Unsigned 32-bit integer
    ecat.sub10.idx  Index
        Unsigned 8-bit integer
    ecat.sub10.lad  Log Addr
        Unsigned 32-bit integer
    ecat.sub2.ado  Offset Addr
        Unsigned 16-bit integer
    ecat.sub2.adp  Slave Addr
        Unsigned 16-bit integer
    ecat.sub2.cmd  Command
        Unsigned 8-bit integer
    ecat.sub2.cnt  Working Cnt
        Unsigned 16-bit integer
    ecat.sub2.data  Data
        Byte array
    ecat.sub2.dc.dif.ba  DC B-A
        Unsigned 32-bit integer
    ecat.sub2.dc.dif.bd  DC B-C
        Unsigned 32-bit integer
    ecat.sub2.dc.dif.ca  DC C-A
        Unsigned 32-bit integer
    ecat.sub2.dc.dif.cb  DC C-B
        Unsigned 32-bit integer
    ecat.sub2.dc.dif.cd  DC C-D
        Unsigned 32-bit integer
    ecat.sub2.dc.dif.da  DC D-A
        Unsigned 32-bit integer
    ecat.sub2.idx  Index
        Unsigned 8-bit integer
    ecat.sub2.lad  Log Addr
        Unsigned 32-bit integer
    ecat.sub3.ado  Offset Addr
        Unsigned 16-bit integer
    ecat.sub3.adp  Slave Addr
        Unsigned 16-bit integer
    ecat.sub3.cmd  Command
        Unsigned 8-bit integer
    ecat.sub3.cnt  Working Cnt
        Unsigned 16-bit integer
    ecat.sub3.data  Data
        Byte array
    ecat.sub3.dc.dif.ba  DC B-A
        Unsigned 32-bit integer
    ecat.sub3.dc.dif.bd  DC B-C
        Unsigned 32-bit integer
    ecat.sub3.dc.dif.ca  DC C-A
        Unsigned 32-bit integer
    ecat.sub3.dc.dif.cb  DC C-B
        Unsigned 32-bit integer
    ecat.sub3.dc.dif.cd  DC C-D
        Unsigned 32-bit integer
    ecat.sub3.dc.dif.da  DC D-A
        Unsigned 32-bit integer
    ecat.sub3.idx  Index
        Unsigned 8-bit integer
    ecat.sub3.lad  Log Addr
        Unsigned 32-bit integer
    ecat.sub4.ado  Offset Addr
        Unsigned 16-bit integer
    ecat.sub4.adp  Slave Addr
        Unsigned 16-bit integer
    ecat.sub4.cmd  Command
        Unsigned 8-bit integer
    ecat.sub4.cnt  Working Cnt
        Unsigned 16-bit integer
    ecat.sub4.data  Data
        Byte array
    ecat.sub4.dc.dif.ba  DC B-A
        Unsigned 32-bit integer
    ecat.sub4.dc.dif.bd  DC B-C
        Unsigned 32-bit integer
    ecat.sub4.dc.dif.ca  DC C-A
        Unsigned 32-bit integer
    ecat.sub4.dc.dif.cb  DC C-B
        Unsigned 32-bit integer
    ecat.sub4.dc.dif.cd  DC C-D
        Unsigned 32-bit integer
    ecat.sub4.dc.dif.da  DC D-A
        Unsigned 32-bit integer
    ecat.sub4.idx  Index
        Unsigned 8-bit integer
    ecat.sub4.lad  Log Addr
        Unsigned 32-bit integer
    ecat.sub5.ado  Offset Addr
        Unsigned 16-bit integer
    ecat.sub5.adp  Slave Addr
        Unsigned 16-bit integer
    ecat.sub5.cmd  Command
        Unsigned 8-bit integer
    ecat.sub5.cnt  Working Cnt
        Unsigned 16-bit integer
    ecat.sub5.data  Data
        Byte array
    ecat.sub5.dc.dif.ba  DC B-A
        Unsigned 32-bit integer
    ecat.sub5.dc.dif.bd  DC B-C
        Unsigned 32-bit integer
    ecat.sub5.dc.dif.ca  DC C-A
        Unsigned 32-bit integer
    ecat.sub5.dc.dif.cb  DC C-B
        Unsigned 32-bit integer
    ecat.sub5.dc.dif.cd  DC C-D
        Unsigned 32-bit integer
    ecat.sub5.dc.dif.da  DC D-A
        Unsigned 32-bit integer
    ecat.sub5.idx  Index
        Unsigned 8-bit integer
    ecat.sub5.lad  Log Addr
        Unsigned 32-bit integer
    ecat.sub6.ado  Offset Addr
        Unsigned 16-bit integer
    ecat.sub6.adp  Slave Addr
        Unsigned 16-bit integer
    ecat.sub6.cmd  Command
        Unsigned 8-bit integer
    ecat.sub6.cnt  Working Cnt
        Unsigned 16-bit integer
    ecat.sub6.data  Data
        Byte array
    ecat.sub6.dc.dif.ba  DC B-A
        Unsigned 32-bit integer
    ecat.sub6.dc.dif.bd  DC B-C
        Unsigned 32-bit integer
    ecat.sub6.dc.dif.ca  DC C-A
        Unsigned 32-bit integer
    ecat.sub6.dc.dif.cb  DC C-B
        Unsigned 32-bit integer
    ecat.sub6.dc.dif.cd  DC C-D
        Unsigned 32-bit integer
    ecat.sub6.dc.dif.da  DC D-A
        Unsigned 32-bit integer
    ecat.sub6.idx  Index
        Unsigned 8-bit integer
    ecat.sub6.lad  Log Addr
        Unsigned 32-bit integer
    ecat.sub7.ado  Offset Addr
        Unsigned 16-bit integer
    ecat.sub7.adp  Slave Addr
        Unsigned 16-bit integer
    ecat.sub7.cmd  Command
        Unsigned 8-bit integer
    ecat.sub7.cnt  Working Cnt
        Unsigned 16-bit integer
    ecat.sub7.data  Data
        Byte array
    ecat.sub7.dc.dif.ba  DC B-A
        Unsigned 32-bit integer
    ecat.sub7.dc.dif.bd  DC B-C
        Unsigned 32-bit integer
    ecat.sub7.dc.dif.ca  DC C-A
        Unsigned 32-bit integer
    ecat.sub7.dc.dif.cb  DC C-B
        Unsigned 32-bit integer
    ecat.sub7.dc.dif.cd  DC C-D
        Unsigned 32-bit integer
    ecat.sub7.dc.dif.da  DC D-A
        Unsigned 32-bit integer
    ecat.sub7.idx  Index
        Unsigned 8-bit integer
    ecat.sub7.lad  Log Addr
        Unsigned 32-bit integer
    ecat.sub8.ado  Offset Addr
        Unsigned 16-bit integer
    ecat.sub8.adp  Slave Addr
        Unsigned 16-bit integer
    ecat.sub8.cmd  Command
        Unsigned 8-bit integer
    ecat.sub8.cnt  Working Cnt
        Unsigned 16-bit integer
    ecat.sub8.data  Data
        Byte array
    ecat.sub8.dc.dif.ba  DC B-A
        Unsigned 32-bit integer
    ecat.sub8.dc.dif.bd  DC B-C
        Unsigned 32-bit integer
    ecat.sub8.dc.dif.ca  DC C-A
        Unsigned 32-bit integer
    ecat.sub8.dc.dif.cb  DC C-B
        Unsigned 32-bit integer
    ecat.sub8.dc.dif.cd  DC C-D
        Unsigned 32-bit integer
    ecat.sub8.dc.dif.da  DC D-A
        Unsigned 32-bit integer
    ecat.sub8.idx  Index
        Unsigned 8-bit integer
    ecat.sub8.lad  Log Addr
        Unsigned 32-bit integer
    ecat.sub9.ado  Offset Addr
        Unsigned 16-bit integer
    ecat.sub9.adp  Slave Addr
        Unsigned 16-bit integer
    ecat.sub9.cmd  Command
        Unsigned 8-bit integer
    ecat.sub9.cnt  Working Cnt
        Unsigned 16-bit integer
    ecat.sub9.data  Data
        Byte array
    ecat.sub9.dc.dif.ba  DC B-A
        Unsigned 32-bit integer
    ecat.sub9.dc.dif.bd  DC B-C
        Unsigned 32-bit integer
    ecat.sub9.dc.dif.ca  DC C-A
        Unsigned 32-bit integer
    ecat.sub9.dc.dif.cb  DC C-B
        Unsigned 32-bit integer
    ecat.sub9.dc.dif.cd  DC C-D
        Unsigned 32-bit integer
    ecat.sub9.dc.dif.da  DC D-A
        Unsigned 32-bit integer
    ecat.sub9.idx  Index
        Unsigned 8-bit integer
    ecat.sub9.lad  Log Addr
        Unsigned 32-bit integer
    ecat.subframe.circulating  Round trip
        Unsigned 16-bit integer
    ecat.subframe.length  Length
        Unsigned 16-bit integer
    ecat.subframe.more  Last indicator
        Unsigned 16-bit integer
    ecat.subframe.pad_bytes  Pad bytes
        Byte array
    ecat.subframe.reserved  Reserved
        Unsigned 16-bit integer
    ecat.syncman  SyncManager
        Byte array
    ecat.syncman.flags  SM Flags
        Unsigned 32-bit integer
    ecat.syncman.len  SM Length
        Unsigned 16-bit integer
    ecat.syncman.start  Start Addr
        Unsigned 16-bit integer
    ecat.syncman_flag0  SM Flag0
        Boolean
    ecat.syncman_flag1  SM Flag1
        Boolean
    ecat.syncman_flag10  SM Flag10
        Boolean
    ecat.syncman_flag11  SM Flag11
        Boolean
    ecat.syncman_flag12  SM Flag12
        Boolean
    ecat.syncman_flag13  SM Flag13
        Boolean
    ecat.syncman_flag16  SM Flag16
        Boolean
    ecat.syncman_flag2  SM Flag2
        Boolean
    ecat.syncman_flag4  SM Flag4
        Boolean
    ecat.syncman_flag5  SM Flag5
        Boolean
    ecat.syncman_flag8  SM Flag8
        Boolean
    ecat.syncman_flag9  SM Flag9
        Boolean

EtherCAT frame header (ethercat)

    ecatf.length  Length
        Unsigned 16-bit integer
    ecatf.reserved  Reserved
        Unsigned 16-bit integer
    ecatf.type  Type
        Unsigned 16-bit integer
        E88A4 Types

EtherNet/IP (Industrial Protocol) (enip)

    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.response_in  Response In
        Frame number
        The response to this ENIP request is in this frame
    enip.response_to  Request In
        Frame number
        This is a response to the ENIP request in this frame
    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
    enip.time  Time
        Time duration
        The time between the Call and the Reply

Ethernet (eth)

    eth.addr  Address
        6-byte Hardware (MAC) Address
        Source or Destination Hardware Address
    eth.dst  Destination
        6-byte Hardware (MAC) Address
        Destination Hardware Address
    eth.ig  IG bit
        Boolean
        Specifies if this is an individual (unicast) or group (broadcast/multicast) address
    eth.len  Length
        Unsigned 16-bit integer
    eth.lg  LG bit
        Boolean
        Specifies if this is a locally administered or globally unique (IEEE assigned) address
    eth.src  Source
        6-byte Hardware (MAC) Address
        Source Hardware Address
    eth.trailer  Trailer
        Byte array
        Ethernet Trailer or Checksum
    eth.type  Type
        Unsigned 16-bit integer

Ethernet Global Data (egd)

    egd.csig  ConfigSignature
        Unsigned 32-bit integer
    egd.exid  ExchangeID
        Unsigned 32-bit integer
    egd.pid  ProducerID
        IPv4 address
    egd.rid  RequestID
        Unsigned 16-bit integer
    egd.rsrv  Reserved
        Unsigned 32-bit integer
    egd.stat  Status
        Unsigned 32-bit integer
    egd.time  Timestamp
        Date/Time stamp
    egd.type  Type
        Unsigned 8-bit integer
    egd.ver  Version
        Unsigned 8-bit integer

Ethernet POWERLINK V2 (epl)

    epl.asnd.data  Data
        Byte array
    epl.asnd.ires.appswdate  applicationSwDate
        Unsigned 32-bit integer
    epl.asnd.ires.appswtime  applicationSwTime
        Unsigned 32-bit integer
    epl.asnd.ires.confdate  VerifyConfigurationDate
        Unsigned 32-bit integer
    epl.asnd.ires.conftime  VerifyConfigurationTime
        Unsigned 32-bit integer
    epl.asnd.ires.devicetype  DeviceType
        String
    epl.asnd.ires.ec  EC (Exception Clear)
        Boolean
    epl.asnd.ires.en  EN (Exception New)
        Boolean
    epl.asnd.ires.eplver  EPLVersion
        String
    epl.asnd.ires.features  FeatureFlags
        Unsigned 32-bit integer
    epl.asnd.ires.features.bit0  Isochronous
        Boolean
    epl.asnd.ires.features.bit1  SDO by UDP/IP
        Boolean
    epl.asnd.ires.features.bit2  SDO by ASnd
        Boolean
    epl.asnd.ires.features.bit3  SDO by PDO
        Boolean
    epl.asnd.ires.features.bit4  NMT Info Services
        Boolean
    epl.asnd.ires.features.bit5  Ext. NMT State Commands
        Boolean
    epl.asnd.ires.features.bit6  Dynamic PDO Mapping
        Boolean
    epl.asnd.ires.features.bit7  NMT Service by UDP/IP
        Boolean
    epl.asnd.ires.features.bit8  Configuration Manager
        Boolean
    epl.asnd.ires.features.bit9  Multiplexed Access
        Boolean
    epl.asnd.ires.features.bitA  NodeID setup by SW
        Boolean
    epl.asnd.ires.features.bitB  MN Basic Ethernet Mode
        Boolean
    epl.asnd.ires.features.bitC  Routing Type 1 Support
        Boolean
    epl.asnd.ires.features.bitD  Routing Type 2 Support
        Boolean
    epl.asnd.ires.gateway  DefaultGateway
        IPv4 address
    epl.asnd.ires.hostname  HostName
        String
    epl.asnd.ires.ip  IPAddress
        IPv4 address
    epl.asnd.ires.mtu  MTU
        Unsigned 16-bit integer
    epl.asnd.ires.pollinsize  PollInSize
        Unsigned 16-bit integer
    epl.asnd.ires.polloutsizes  PollOutSize
        Unsigned 16-bit integer
    epl.asnd.ires.pr  PR (Priority)
        Unsigned 8-bit integer
    epl.asnd.ires.productcode  ProductCode
        Unsigned 32-bit integer
    epl.asnd.ires.profile  Profile
        Unsigned 16-bit integer
    epl.asnd.ires.resptime  ResponseTime
        Unsigned 32-bit integer
    epl.asnd.ires.revisionno  RevisionNumber
        Unsigned 32-bit integer
    epl.asnd.ires.rs  RS (RequestToSend)
        Unsigned 8-bit integer
    epl.asnd.ires.serialno  SerialNumber
        Unsigned 32-bit integer
    epl.asnd.ires.state  NMTStatus
        Unsigned 8-bit integer
    epl.asnd.ires.subnet  SubnetMask
        IPv4 address
    epl.asnd.ires.vendorext1  VendorSpecificExtension1
        Unsigned 64-bit integer
    epl.asnd.ires.vendorext2  VendorSpecificExtension2
        Byte array
    epl.asnd.ires.vendorid  VendorId
        Unsigned 32-bit integer
    epl.asnd.nmtcommand.cdat  NMTCommandData
        Byte array
    epl.asnd.nmtcommand.cid  NMTCommandId
        Unsigned 8-bit integer
    epl.asnd.nmtcommand.nmtflusharpentry.nid  NodeID
        Unsigned 8-bit integer
    epl.asnd.nmtcommand.nmtnethostnameset.hn  HostName
        Byte array
    epl.asnd.nmtcommand.nmtpublishtime.dt  DateTime
        Byte array
    epl.asnd.nmtrequest.rcd  NMTRequestedCommandData
        Byte array
    epl.asnd.nmtrequest.rcid  NMTRequestedCommandID
        Unsigned 8-bit integer
    epl.asnd.nmtrequest.rct  NMTRequestedCommandTarget
        Unsigned 8-bit integer
    epl.asnd.res.seb.bit0  Generic error
        Unsigned 8-bit integer
    epl.asnd.res.seb.bit1  Current
        Unsigned 8-bit integer
    epl.asnd.res.seb.bit2  Voltage
        Unsigned 8-bit integer
    epl.asnd.res.seb.bit3  Temperature
        Unsigned 8-bit integer
    epl.asnd.res.seb.bit4  Communication error
        Unsigned 8-bit integer
    epl.asnd.res.seb.bit5  Device profile specific
        Unsigned 8-bit integer
    epl.asnd.res.seb.bit7  Manufacturer specific
        Unsigned 8-bit integer
    epl.asnd.res.seb.devicespecific_err  Device profile specific
        Byte array
    epl.asnd.sdo.cmd.abort  SDO Abort
        Unsigned 8-bit integer
    epl.asnd.sdo.cmd.abort.code  SDO Transfer Abort
        Unsigned 8-bit integer
    epl.asnd.sdo.cmd.command.id  SDO Command ID
        Unsigned 8-bit integer
    epl.asnd.sdo.cmd.data.size  SDO Data size
        Unsigned 8-bit integer
    epl.asnd.sdo.cmd.read.by.index.data  Payload
        Byte array
    epl.asnd.sdo.cmd.read.by.index.index  SDO Read by Index, Index
        Unsigned 16-bit integer
    epl.asnd.sdo.cmd.read.by.index.subindex  SDO Read by Index, SubIndex
        Unsigned 8-bit integer
    epl.asnd.sdo.cmd.response  SDO Response
        Unsigned 8-bit integer
    epl.asnd.sdo.cmd.segment.size  SDO Segment size
        Unsigned 8-bit integer
    epl.asnd.sdo.cmd.segmentation  SDO Segmentation
        Unsigned 8-bit integer
    epl.asnd.sdo.cmd.transaction.id  SDO Transaction ID
        Unsigned 8-bit integer
    epl.asnd.sdo.cmd.write.by.index.data  Payload
        Byte array
    epl.asnd.sdo.cmd.write.by.index.index  SDO Write by Index, Index
        Unsigned 16-bit integer
    epl.asnd.sdo.cmd.write.by.index.subindex  SDO Write by Index, SubIndex
        Unsigned 8-bit integer
    epl.asnd.sdo.seq.receive.con  ReceiveCon
        Unsigned 8-bit integer
    epl.asnd.sdo.seq.receive.sequence.number  ReceiveSequenceNumber
        Unsigned 8-bit integer
    epl.asnd.sdo.seq.send.con  SendCon
        Unsigned 8-bit integer
    epl.asnd.sdo.seq.send.sequence.number  SendSequenceNumber
        Unsigned 8-bit integer
    epl.asnd.sres.ec  EC (Exception Clear)
        Boolean
    epl.asnd.sres.el  ErrorCodesList
        Byte array
    epl.asnd.sres.el.entry  Entry
        Byte array
    epl.asnd.sres.el.entry.add  Additional Information
        Unsigned 64-bit integer
    epl.asnd.sres.el.entry.code  Error Code
        Unsigned 16-bit integer
    epl.asnd.sres.el.entry.time  Time Stamp
        Unsigned 64-bit integer
    epl.asnd.sres.el.entry.type  Entry Type
        Unsigned 16-bit integer
    epl.asnd.sres.el.entry.type.bit14  Bit14
        Unsigned 16-bit integer
    epl.asnd.sres.el.entry.type.bit15  Bit15
        Unsigned 16-bit integer
    epl.asnd.sres.el.entry.type.mode  Mode
        Unsigned 16-bit integer
    epl.asnd.sres.el.entry.type.profile  Profile
        Unsigned 16-bit integer
    epl.asnd.sres.en  EN (Exception New)
        Boolean
    epl.asnd.sres.pr  PR (Priority)
        Unsigned 8-bit integer
    epl.asnd.sres.rs  RS (RequestToSend)
        Unsigned 8-bit integer
    epl.asnd.sres.seb  StaticErrorBitField
        Byte array
    epl.asnd.sres.stat  NMTStatus
        Unsigned 8-bit integer
    epl.asnd.svid  ServiceID
        Unsigned 8-bit integer
    epl.dest  Destination
        Unsigned 8-bit integer
    epl.mtyp  MessageType
        Unsigned 8-bit integer
    epl.preq.ea  EA (Exception Acknowledge)
        Boolean
    epl.preq.ms  MS (Multiplexed Slot)
        Boolean
    epl.preq.pdov  PDOVersion
        String
    epl.preq.pl  Payload
        Byte array
    epl.preq.rd  RD (Ready)
        Boolean
    epl.preq.size  Size
        Unsigned 16-bit integer
    epl.pres.en  EN (Exception New)
        Boolean
    epl.pres.ms  MS (Multiplexed Slot)
        Boolean
    epl.pres.pdov  PDOVersion
        String
    epl.pres.pl  Payload
        Byte array
    epl.pres.pr  PR (Priority)
        Unsigned 8-bit integer
    epl.pres.rd  RD (Ready)
        Boolean
    epl.pres.rs  RS (RequestToSend)
        Unsigned 8-bit integer
    epl.pres.size  Size
        Unsigned 16-bit integer
    epl.pres.stat  NMTStatus
        Unsigned 8-bit integer
    epl.soa.ea  EA (Exception Acknowledge)
        Boolean
    epl.soa.eplv  EPLVersion
        String
    epl.soa.er  ER (Exception Reset)
        Boolean
    epl.soa.stat  NMTStatus
        Unsigned 8-bit integer
    epl.soa.svid  RequestedServiceID
        Unsigned 8-bit integer
    epl.soa.svtg  RequestedServiceTarget
        Unsigned 8-bit integer
    epl.soc.mc  MC (Multiplexed Cycle Completed)
        Boolean
    epl.soc.nettime  NetTime
        Date/Time stamp
    epl.soc.ps  PS (Prescaled Slot)
        Boolean
    epl.soc.relativetime  RelativeTime
        Unsigned 64-bit integer
    epl.src  Source
        Unsigned 8-bit integer

Ethernet PW (CW heuristic) (pwethheuristic)

Ethernet PW (no CW) (pwethnocw)

Ethernet over IP (etherip)

    etherip.ver  Version
        Unsigned 8-bit integer

Event Logger (eventlog)

    eventlog.Record  Record
        No value
    eventlog.Record.computer_name  Computer Name
        String
    eventlog.Record.length  Record Length
        Unsigned 32-bit integer
    eventlog.Record.source_name  Source Name
        String
    eventlog.Record.string  string
        String
    eventlog.eventlogEventTypes.EVENTLOG_AUDIT_FAILURE  Eventlog Audit Failure
        Boolean
    eventlog.eventlogEventTypes.EVENTLOG_AUDIT_SUCCESS  Eventlog Audit Success
        Boolean
    eventlog.eventlogEventTypes.EVENTLOG_ERROR_TYPE  Eventlog Error Type
        Boolean
    eventlog.eventlogEventTypes.EVENTLOG_INFORMATION_TYPE  Eventlog Information Type
        Boolean
    eventlog.eventlogEventTypes.EVENTLOG_SUCCESS  Eventlog Success
        Boolean
    eventlog.eventlogEventTypes.EVENTLOG_WARNING_TYPE  Eventlog Warning Type
        Boolean
    eventlog.eventlogReadFlags.EVENTLOG_BACKWARDS_READ  Eventlog Backwards Read
        Boolean
    eventlog.eventlogReadFlags.EVENTLOG_FORWARDS_READ  Eventlog Forwards Read
        Boolean
    eventlog.eventlogReadFlags.EVENTLOG_SEEK_READ  Eventlog Seek Read
        Boolean
    eventlog.eventlogReadFlags.EVENTLOG_SEQUENTIAL_READ  Eventlog Sequential Read
        Boolean
    eventlog.eventlog_BackupEventLogW.backupfilename  Backupfilename
        No value
    eventlog.eventlog_BackupEventLogW.handle  Handle
        Byte array
    eventlog.eventlog_ChangeNotify.handle  Handle
        Byte array
    eventlog.eventlog_ChangeNotify.unknown2  Unknown2
        No value
    eventlog.eventlog_ChangeNotify.unknown3  Unknown3
        Unsigned 32-bit integer
    eventlog.eventlog_ChangeUnknown0.unknown0  Unknown0
        Unsigned 32-bit integer
    eventlog.eventlog_ChangeUnknown0.unknown1  Unknown1
        Unsigned 32-bit integer
    eventlog.eventlog_ClearEventLogW.backupfilename  Backupfilename
        No value
    eventlog.eventlog_ClearEventLogW.handle  Handle
        Byte array
    eventlog.eventlog_CloseEventLog.handle  Handle
        Byte array
    eventlog.eventlog_DeregisterEventSource.handle  Handle
        Byte array
    eventlog.eventlog_FlushEventLog.handle  Handle
        Byte array
    eventlog.eventlog_GetLogIntormation.cbBufSize  Cbbufsize
        Unsigned 32-bit integer
    eventlog.eventlog_GetLogIntormation.cbBytesNeeded  Cbbytesneeded
        Signed 32-bit integer
    eventlog.eventlog_GetLogIntormation.dwInfoLevel  Dwinfolevel
        Unsigned 32-bit integer
    eventlog.eventlog_GetLogIntormation.handle  Handle
        Byte array
    eventlog.eventlog_GetLogIntormation.lpBuffer  Lpbuffer
        Unsigned 8-bit integer
    eventlog.eventlog_GetNumRecords.handle  Handle
        Byte array
    eventlog.eventlog_GetNumRecords.number  Number
        Unsigned 32-bit integer
    eventlog.eventlog_GetOldestRecord.handle  Handle
        Byte array
    eventlog.eventlog_GetOldestRecord.oldest  Oldest
        Unsigned 32-bit integer
    eventlog.eventlog_OpenBackupEventLogW.handle  Handle
        Byte array
    eventlog.eventlog_OpenBackupEventLogW.logname  Logname
        No value
    eventlog.eventlog_OpenBackupEventLogW.unknown0  Unknown0
        No value
    eventlog.eventlog_OpenBackupEventLogW.unknown2  Unknown2
        Unsigned 32-bit integer
    eventlog.eventlog_OpenBackupEventLogW.unknown3  Unknown3
        Unsigned 32-bit integer
    eventlog.eventlog_OpenEventLogW.MajorVersion  Majorversion
        Unsigned 32-bit integer
    eventlog.eventlog_OpenEventLogW.MinorVersion  Minorversion
        Unsigned 32-bit integer
    eventlog.eventlog_OpenEventLogW.Module  Module
        No value
    eventlog.eventlog_OpenEventLogW.RegModuleName  Regmodulename
        No value
    eventlog.eventlog_OpenEventLogW.handle  Handle
        Byte array
    eventlog.eventlog_OpenEventLogW.unknown0  Unknown0
        No value
    eventlog.eventlog_OpenUnknown0.unknown0  Unknown0
        Unsigned 16-bit integer
    eventlog.eventlog_OpenUnknown0.unknown1  Unknown1
        Unsigned 16-bit integer
    eventlog.eventlog_ReadEventLogW.data  Data
        Unsigned 8-bit integer
    eventlog.eventlog_ReadEventLogW.flags  Flags
        Unsigned 32-bit integer
    eventlog.eventlog_ReadEventLogW.handle  Handle
        Byte array
    eventlog.eventlog_ReadEventLogW.number_of_bytes  Number Of Bytes
        Unsigned 32-bit integer
    eventlog.eventlog_ReadEventLogW.offset  Offset
        Unsigned 32-bit integer
    eventlog.eventlog_ReadEventLogW.real_size  Real Size
        Unsigned 32-bit integer
    eventlog.eventlog_ReadEventLogW.sent_size  Sent Size
        Unsigned 32-bit integer
    eventlog.eventlog_Record.closing_record_number  Closing Record Number
        Unsigned 32-bit integer
    eventlog.eventlog_Record.computer_name  Computer Name
        No value
    eventlog.eventlog_Record.data_length  Data Length
        Unsigned 32-bit integer
    eventlog.eventlog_Record.data_offset  Data Offset
        Unsigned 32-bit integer
    eventlog.eventlog_Record.event_category  Event Category
        Unsigned 16-bit integer
    eventlog.eventlog_Record.event_id  Event Id
        Unsigned 32-bit integer
    eventlog.eventlog_Record.event_type  Event Type
        Unsigned 16-bit integer
    eventlog.eventlog_Record.num_of_strings  Num Of Strings
        Unsigned 16-bit integer
    eventlog.eventlog_Record.raw_data  Raw Data
        No value
    eventlog.eventlog_Record.record_number  Record Number
        Unsigned 32-bit integer
    eventlog.eventlog_Record.reserved  Reserved
        Unsigned 32-bit integer
    eventlog.eventlog_Record.reserved_flags  Reserved Flags
        Unsigned 16-bit integer
    eventlog.eventlog_Record.sid_length  Sid Length
        Unsigned 32-bit integer
    eventlog.eventlog_Record.sid_offset  Sid Offset
        Unsigned 32-bit integer
    eventlog.eventlog_Record.size  Size
        Unsigned 32-bit integer
    eventlog.eventlog_Record.source_name  Source Name
        No value
    eventlog.eventlog_Record.stringoffset  Stringoffset
        Unsigned 32-bit integer
    eventlog.eventlog_Record.strings  Strings
        No value
    eventlog.eventlog_Record.time_generated  Time Generated
        Unsigned 32-bit integer
    eventlog.eventlog_Record.time_written  Time Written
        Unsigned 32-bit integer
    eventlog.eventlog_RegisterEventSourceW.handle  Handle
        Byte array
    eventlog.eventlog_RegisterEventSourceW.logname  Logname
        No value
    eventlog.eventlog_RegisterEventSourceW.servername  Servername
        No value
    eventlog.eventlog_RegisterEventSourceW.unknown0  Unknown0
        No value
    eventlog.eventlog_RegisterEventSourceW.unknown2  Unknown2
        Unsigned 32-bit integer
    eventlog.eventlog_RegisterEventSourceW.unknown3  Unknown3
        Unsigned 32-bit integer
    eventlog.eventlog_ReportEventW.Type  Type
        Unsigned 32-bit integer
    eventlog.eventlog_ReportEventW.computer_name  Computer Name
        No value
    eventlog.eventlog_ReportEventW.data_length  Data Length
        Unsigned 32-bit integer
    eventlog.eventlog_ReportEventW.event_category  Event Category
        Unsigned 16-bit integer
    eventlog.eventlog_ReportEventW.event_id  Event Id
        Unsigned 32-bit integer
    eventlog.eventlog_ReportEventW.handle  Handle
        Byte array
    eventlog.eventlog_ReportEventW.num_of_strings  Num Of Strings
        Unsigned 16-bit integer
    eventlog.eventlog_ReportEventW.time  Time
        Unsigned 32-bit integer
    eventlog.opnum  Operation
        Unsigned 16-bit integer
    eventlog.status  NT Error
        Unsigned 32-bit integer

Event Notification for Resource Lists (RFC 4662) (list)

    list.cid  cid
        String
    list.fullstate  fullstate
        String
    list.instance  instance
        String
    list.instance.cid  cid
        String
    list.instance.id  id
        String
    list.instance.reason  reason
        String
    list.instance.state  state
        String
    list.name  name
        String
    list.name.lang  lang
        String
    list.resource  resource
        String
    list.resource.instance  instance
        String
    list.resource.instance.cid  cid
        String
    list.resource.instance.id  id
        String
    list.resource.instance.reason  reason
        String
    list.resource.instance.state  state
        String
    list.resource.name  name
        String
    list.resource.name.lang  lang
        String
    list.resource.uri  uri
        String
    list.uri  uri
        String
    list.version  version
        String
    list.xmlns  xmlns
        String

Exchange 2003 Directory Request For Response (rfr)

    rfr.MAPISTATUS_status  MAPISTATUS
        Unsigned 32-bit integer
    rfr.RfrGetFQDNFromLegacyDN.cbMailboxServerDN  Cbmailboxserverdn
        Unsigned 32-bit integer
    rfr.RfrGetFQDNFromLegacyDN.ppszServerFQDN  Ppszserverfqdn
        String
    rfr.RfrGetFQDNFromLegacyDN.szMailboxServerDN  Szmailboxserverdn
        String
    rfr.RfrGetFQDNFromLegacyDN.ulFlags  Ulflags
        Unsigned 32-bit integer
    rfr.RfrGetNewDSA.pUserDN  Puserdn
        String
    rfr.RfrGetNewDSA.ppszServer  Ppszserver
        String
    rfr.RfrGetNewDSA.ppszUnused  Ppszunused
        String
    rfr.RfrGetNewDSA.ulFlags  Ulflags
        Unsigned 32-bit integer
    rfr.opnum  Operation
        Unsigned 16-bit integer

Exchange 5.5 EMSMDB (mapi)

    mapi.DATA_BLOB.data  Data
        Unsigned 8-bit integer
    mapi.DATA_BLOB.length  Length
        Unsigned 8-bit integer
    mapi.EcDoConnect.alloc_space  Alloc Space
        Unsigned 32-bit integer
    mapi.EcDoConnect.code_page  Code Page
        Unsigned 32-bit integer
    mapi.EcDoConnect.emsmdb_client_version  Emsmdb Client Version
        Unsigned 16-bit integer
    mapi.EcDoConnect.input_locale  Input Locale
        No value
    mapi.EcDoConnect.name  Name
        String
    mapi.EcDoConnect.org_group  Org Group
        String
    mapi.EcDoConnect.session_nb  Session Nb
        Unsigned 16-bit integer
    mapi.EcDoConnect.store_version  Store Version
        Unsigned 16-bit integer
    mapi.EcDoConnect.unknown1  Unknown1
        Unsigned 32-bit integer
    mapi.EcDoConnect.unknown2  Unknown2
        Unsigned 32-bit integer
    mapi.EcDoConnect.unknown3  Unknown3
        Unsigned 16-bit integer
    mapi.EcDoConnect.unknown4  Unknown4
        Unsigned 32-bit integer
    mapi.EcDoConnect.user  User
        String
    mapi.EcDoRpc.length  Length
        Unsigned 16-bit integer
    mapi.EcDoRpc.mapi_request  Mapi Request
        No value
    mapi.EcDoRpc.mapi_response  Mapi Response
        No value
    mapi.EcDoRpc.max_data  Max Data
        Unsigned 16-bit integer
    mapi.EcDoRpc.offset  Offset
        Unsigned 32-bit integer
    mapi.EcDoRpc.size  Size
        Unsigned 32-bit integer
    mapi.EcDoRpc_MAPI_REPL_UNION.mapi_GetProps  Mapi Getprops
        No value
    mapi.EcDoRpc_MAPI_REPL_UNION.mapi_OpenFolder  Mapi Openfolder
        No value
    mapi.EcDoRpc_MAPI_REPL_UNION.mapi_Release  Mapi Release
        No value
    mapi.EcDoRpc_MAPI_REQ.opnum  Opnum
        Unsigned 8-bit integer
    mapi.EcDoRpc_MAPI_REQ_UNION.mapi_GetProps  Mapi Getprops
        No value
    mapi.EcDoRpc_MAPI_REQ_UNION.mapi_OpenFolder  Mapi Openfolder
        No value
    mapi.EcDoRpc_MAPI_REQ_UNION.mapi_OpenMsgStore  Mapi Openmsgstore
        No value
    mapi.EcDoRpc_MAPI_REQ_UNION.mapi_Release  Mapi Release
        No value
    mapi.EcRRegisterPushNotification.notif_len  Notif Len
        Unsigned 16-bit integer
    mapi.EcRRegisterPushNotification.notifkey  Notifkey
        Unsigned 8-bit integer
    mapi.EcRRegisterPushNotification.retval  Retval
        Unsigned 32-bit integer
    mapi.EcRRegisterPushNotification.sockaddr  Sockaddr
        Unsigned 8-bit integer
    mapi.EcRRegisterPushNotification.sockaddr_len  Sockaddr Len
        Unsigned 16-bit integer
    mapi.EcRRegisterPushNotification.ulEventMask  Uleventmask
        Unsigned 16-bit integer
    mapi.EcRRegisterPushNotification.unknown2  Unknown2
        Unsigned 32-bit integer
    mapi.EcRUnregisterPushNotification.unknown  Unknown
        Unsigned 32-bit integer
    mapi.FILETIME.dwHighDateTime  Dwhighdatetime
        Unsigned 32-bit integer
    mapi.FILETIME.dwLowDateTime  Dwlowdatetime
        Unsigned 32-bit integer
    mapi.LPSTR.lppszA  Lppsza
        No value
    mapi.MAPISTATUS_status  MAPISTATUS
        Unsigned 32-bit integer
    mapi.OpenMessage_recipients.RecipClass  Recipclass
        Unsigned 8-bit integer
    mapi.OpenMessage_recipients.codepage  Codepage
        Unsigned 32-bit integer
    mapi.OpenMessage_recipients.recipients_headers  Recipients Headers
        No value
    mapi.OpenMessage_req.folder_handle_idx  Folder Handle Idx
        Unsigned 8-bit integer
    mapi.OpenMessage_req.folder_id  Folder Id
        Unsigned 64-bit integer
    mapi.OpenMessage_req.max_data  Max Data
        Unsigned 16-bit integer
    mapi.OpenMessage_req.message_id  Message Id
        Unsigned 64-bit integer
    mapi.OpenMessage_req.message_permissions  Message Permissions
        Unsigned 8-bit integer
    mapi.RecipExchange.addr_type  Addr Type
        Unsigned 8-bit integer
    mapi.RecipExchange.organization_length  Organization Length
        Unsigned 8-bit integer
    mapi.SPropValue.ulPropTag  Ulproptag
        Unsigned 32-bit integer
    mapi.SPropValue.value  Value
        Unsigned 32-bit integer
    mapi.SPropValue_CTR.b  B
        Unsigned 8-bit integer
    mapi.SPropValue_CTR.d  D
        Signed 64-bit integer
    mapi.SPropValue_CTR.dbl  Dbl
        Signed 64-bit integer
    mapi.SPropValue_CTR.err  Err
        Unsigned 32-bit integer
    mapi.SPropValue_CTR.ft  Ft
        No value
    mapi.SPropValue_CTR.i  I
        Unsigned 16-bit integer
    mapi.SPropValue_CTR.l  L
        Unsigned 32-bit integer
    mapi.SPropValue_CTR.lpguid  Lpguid
        Globally Unique Identifier
    mapi.SPropValue_CTR.lpszA  Lpsza
        No value
    mapi.SPropValue_CTR.lpszW  Lpszw
        No value
    mapi.SRow.ulRowFlags  Ulrowflags
        Unsigned 8-bit integer
    mapi.decrypted.data  Decrypted data
        Byte array
    mapi.handle  Handle
        Byte array
    mapi.input_locale.language  Language
        Unsigned 32-bit integer
    mapi.input_locale.method  Method
        Unsigned 32-bit integer
    mapi.mapi_request.mapi_req  Mapi Req
        No value
        HFILL
    mapi.mapi_response.mapi_repl  Mapi Repl
        No value
        HFILL
    mapi.opnum  Operation
        Unsigned 16-bit integer
    mapi.pdu.len  Length
        Unsigned 16-bit integer
        Size of the command PDU
    mapi.recipient_displayname_7bit.lpszA  Lpsza
        No value
    mapi.recipient_type.EXCHANGE  Exchange
        No value
    mapi.recipient_type.SMTP  Smtp
        No value
    mapi.recipients_headers.bitmask  Bitmask
        Unsigned 16-bit integer
    mapi.recipients_headers.layout  Layout
        Unsigned 8-bit integer
    mapi.recipients_headers.prop_count  Prop Count
        Unsigned 16-bit integer
    mapi.recipients_headers.prop_values  Prop Values
        No value
    mapi.recipients_headers.type  Recipient Type
        Unsigned 16-bit integer
    mapi.recipients_headers.username  Username
        No value
    mapi.ulEventType.fnevCriticalError  Fnevcriticalerror
        Boolean
    mapi.ulEventType.fnevExtended  Fnevextended
        Boolean
    mapi.ulEventType.fnevNewMail  Fnevnewmail
        Boolean
    mapi.ulEventType.fnevObjectCopied  Fnevobjectcopied
        Boolean
    mapi.ulEventType.fnevObjectCreated  Fnevobjectcreated
        Boolean
    mapi.ulEventType.fnevObjectDeleted  Fnevobjectdeleted
        Boolean
    mapi.ulEventType.fnevObjectModified  Fnevobjectmodified
        Boolean
    mapi.ulEventType.fnevObjectMoved  Fnevobjectmoved
        Boolean
    mapi.ulEventType.fnevReservedForMapi  Fnevreservedformapi
        Boolean
    mapi.ulEventType.fnevSearchComplete  Fnevsearchcomplete
        Boolean
    mapi.ulEventType.fnevStatusObjectModified  Fnevstatusobjectmodified
        Boolean
    mapi.ulEventType.fnevTableModified  Fnevtablemodified
        Boolean

Exchange 5.5 Name Service Provider (nspi)

    nspi.FILETIME.dwHighDateTime  Dwhighdatetime
        Unsigned 32-bit integer
    nspi.FILETIME.dwLowDateTime  Dwlowdatetime
        Unsigned 32-bit integer
    nspi.LPSTR.lppszA  Lppsza
        No value
    nspi.MAPINAMEID.lID  Lid
        Unsigned 32-bit integer
    nspi.MAPINAMEID.lpguid  Lpguid
        No value
    nspi.MAPINAMEID.ulKind  Ulkind
        Unsigned 32-bit integer
    nspi.MAPISTATUS_status  MAPISTATUS
        Unsigned 32-bit integer
    nspi.MAPIUID.ab  Ab
        Unsigned 8-bit integer
    nspi.MAPI_SETTINGS.codepage  Codepage
        Unsigned 32-bit integer
    nspi.MAPI_SETTINGS.flag  Flag
        Unsigned 32-bit integer
    nspi.MAPI_SETTINGS.handle  Handle
        Unsigned 32-bit integer
    nspi.MAPI_SETTINGS.input_locale  Input Locale
        No value
    nspi.MAPI_SETTINGS.service_provider  Service Provider
        No value
    nspi.MV_LONG_STRUCT.cValues  Cvalues
        Unsigned 32-bit integer
    nspi.MV_LONG_STRUCT.lpl  Lpl
        Unsigned 32-bit integer
    nspi.MV_UNICODE_STRUCT.cValues  Cvalues
        Unsigned 32-bit integer
    nspi.MV_UNICODE_STRUCT.lpi  Lpi
        Unsigned 32-bit integer
    nspi.NAME_STRING.str  Str
        String
    nspi.NspiBind.mapiuid  Mapiuid
        Globally Unique Identifier
    nspi.NspiBind.settings  Settings
        No value
    nspi.NspiBind.unknown  Unknown
        Unsigned 32-bit integer
    nspi.NspiDNToEph.flag  Flag
        Unsigned 32-bit integer
    nspi.NspiDNToEph.instance_key  Instance Key
        No value
    nspi.NspiDNToEph.server_dn  Server Dn
        No value
    nspi.NspiDNToEph.size  Size
        Unsigned 32-bit integer
    nspi.NspiGetHierarchyInfo.RowSet  Rowset
        No value
    nspi.NspiGetHierarchyInfo.settings  Settings
        No value
    nspi.NspiGetHierarchyInfo.unknown1  Unknown1
        Unsigned 32-bit integer
    nspi.NspiGetHierarchyInfo.unknown2  Unknown2
        Unsigned 32-bit integer
    nspi.NspiGetMatches.PropTagArray  Proptagarray
        No value
    nspi.NspiGetMatches.REQ_properties  Req Properties
        No value
    nspi.NspiGetMatches.RowSet  Rowset
        No value
    nspi.NspiGetMatches.instance_key  Instance Key
        No value
    nspi.NspiGetMatches.restrictions  Restrictions
        No value
    nspi.NspiGetMatches.settings  Settings
        No value
    nspi.NspiGetMatches.unknown1  Unknown1
        Unsigned 32-bit integer
    nspi.NspiGetMatches.unknown2  Unknown2
        Unsigned 32-bit integer
    nspi.NspiGetMatches.unknown3  Unknown3
        Unsigned 32-bit integer
    nspi.NspiGetProps.REPL_values  Repl Values
        No value
    nspi.NspiGetProps.REQ_properties  Req Properties
        No value
    nspi.NspiGetProps.flag  Flag
        Unsigned 32-bit integer
    nspi.NspiGetProps.settings  Settings
        No value
    nspi.NspiQueryRows.REQ_properties  Req Properties
        No value
    nspi.NspiQueryRows.RowSet  Rowset
        No value
    nspi.NspiQueryRows.flag  Flag
        Unsigned 32-bit integer
    nspi.NspiQueryRows.instance_key  Instance Key
        Unsigned 32-bit integer
    nspi.NspiQueryRows.lRows  Lrows
        Unsigned 32-bit integer
    nspi.NspiQueryRows.settings  Settings
        No value
    nspi.NspiQueryRows.unknown  Unknown
        Unsigned 32-bit integer
    nspi.NspiUnbind.status  Status
        Unsigned 32-bit integer
    nspi.SAndRestriction.cRes  Cres
        Unsigned 32-bit integer
    nspi.SAndRestriction.lpRes  Lpres
        No value
    nspi.SBinary.cb  Cb
        Unsigned 32-bit integer
    nspi.SBinary.lpb  Lpb
        Unsigned 8-bit integer
    nspi.SBinaryArray.cValues  Cvalues
        Unsigned 32-bit integer
    nspi.SBinaryArray.lpbin  Lpbin
        No value
    nspi.SDateTimeArray.cValues  Cvalues
        Unsigned 32-bit integer
    nspi.SDateTimeArray.lpft  Lpft
        No value
    nspi.SGuidArray.cValues  Cvalues
        Unsigned 32-bit integer
    nspi.SGuidArray.lpguid  Lpguid
        Unsigned 32-bit integer
    nspi.SLPSTRArray.cValues  Cvalues
        Unsigned 32-bit integer
    nspi.SLPSTRArray.strings  Strings
        No value
    nspi.SPropTagArray.aulPropTag  Aulproptag
        Unsigned 32-bit integer
    nspi.SPropTagArray.cValues  Cvalues
        Unsigned 32-bit integer
    nspi.SPropValue.dwAlignPad  Dwalignpad
        Unsigned 32-bit integer
    nspi.SPropValue.ulPropTag  Ulproptag
        Unsigned 32-bit integer
    nspi.SPropValue.value  Value
        Unsigned 32-bit integer
    nspi.SPropValue_CTR.MVbin  Mvbin
        No value
    nspi.SPropValue_CTR.MVft  Mvft
        No value
    nspi.SPropValue_CTR.MVguid  Mvguid
        No value
    nspi.SPropValue_CTR.MVi  Mvi
        No value
    nspi.SPropValue_CTR.MVl  Mvl
        No value
    nspi.SPropValue_CTR.MVszA  Mvsza
        No value
    nspi.SPropValue_CTR.MVszW  Mvszw
        No value
    nspi.SPropValue_CTR.b  B
        Unsigned 16-bit integer
    nspi.SPropValue_CTR.bin  Bin
        No value
    nspi.SPropValue_CTR.err  Err
        Unsigned 32-bit integer
    nspi.SPropValue_CTR.ft  Ft
        No value
    nspi.SPropValue_CTR.i  I
        Unsigned 16-bit integer
    nspi.SPropValue_CTR.l  L
        Unsigned 32-bit integer
    nspi.SPropValue_CTR.lpguid  Lpguid
        No value
    nspi.SPropValue_CTR.lpszA  Lpsza
        String
    nspi.SPropValue_CTR.lpszW  Lpszw
        String
    nspi.SPropValue_CTR.null  Null
        Unsigned 32-bit integer
    nspi.SPropValue_CTR.object  Object
        Unsigned 32-bit integer
    nspi.SPropertyRestriction.lpProp  Lpprop
        No value
    nspi.SPropertyRestriction.relop  Relop
        Unsigned 32-bit integer
    nspi.SPropertyRestriction.ulPropTag  Ulproptag
        Unsigned 32-bit integer
    nspi.SRestriction_CTR.resAnd  Resand
        No value
    nspi.SRestriction_CTR.resProperty  Resproperty
        No value
    nspi.SRow.cValues  Cvalues
        Unsigned 32-bit integer
    nspi.SRow.lpProps  Lpprops
        No value
    nspi.SRow.ulAdrEntryPad  Uladrentrypad
        Unsigned 32-bit integer
    nspi.SRowSet.aRow  Arow
        No value
    nspi.SRowSet.cRows  Crows
        Unsigned 32-bit integer
    nspi.SShortArray.cValues  Cvalues
        Unsigned 32-bit integer
    nspi.SShortArray.lpi  Lpi
        Unsigned 16-bit integer
    nspi.SSortOrder.ulOrder  Ulorder
        Unsigned 32-bit integer
    nspi.SSortOrder.ulPropTag  Ulproptag
        Unsigned 32-bit integer
    nspi.SSortOrderSet.aSort  Asort
        No value
    nspi.SSortOrderSet.cCategories  Ccategories
        Unsigned 32-bit integer
    nspi.SSortOrderSet.cExpanded  Cexpanded
        Unsigned 32-bit integer
    nspi.SSortOrderSet.cSorts  Csorts
        Unsigned 32-bit integer
    nspi.handle  Handle
        Byte array
    nspi.input_locale.language  Language
        Unsigned 32-bit integer
    nspi.input_locale.method  Method
        Unsigned 32-bit integer
    nspi.instance_key.cValues  Cvalues
        Unsigned 32-bit integer
    nspi.instance_key.value  Value
        Unsigned 32-bit integer
    nspi.opnum  Operation
        Unsigned 16-bit integer
    nspi.property_type  Restriction Type
        Unsigned 32-bit integer

Expert Info (expert)

    expert.group  Group
        Unsigned 32-bit integer
        Wireshark expert group
    expert.message  Message
        String
        Wireshark expert information
    expert.severity  Severity level
        Unsigned 32-bit integer
        Wireshark expert severity level

Extended Security Services (ess)

    ess.ContentHints  ContentHints
        No value
    ess.ContentIdentifier  ContentIdentifier
        Byte array
    ess.ContentReference  ContentReference
        No value
    ess.ESSCertID  ESSCertID
        No value
    ess.ESSCertIDv2  ESSCertIDv2
        No value
    ess.ESSSecurityLabel  ESSSecurityLabel
        No value
    ess.EnumeratedTag  EnumeratedTag
        No value
    ess.EquivalentLabels  EquivalentLabels
        Unsigned 32-bit integer
    ess.GeneralNames  GeneralNames
        Unsigned 32-bit integer
    ess.InformativeTag  InformativeTag
        No value
    ess.MLData  MLData
        No value
    ess.MLExpansionHistory  MLExpansionHistory
        Unsigned 32-bit integer
    ess.MsgSigDigest  MsgSigDigest
        Byte array
    ess.PermissiveTag  PermissiveTag
        No value
    ess.PolicyInformation  PolicyInformation
        No value
    ess.Receipt  Receipt
        No value
    ess.ReceiptRequest  ReceiptRequest
        No value
    ess.RestrictiveTag  RestrictiveTag
        No value
    ess.SecurityAttribute  SecurityAttribute
        Signed 32-bit integer
    ess.SecurityCategory  SecurityCategory
        No value
    ess.SigningCertificate  SigningCertificate
        No value
    ess.SigningCertificateV2  SigningCertificateV2
        No value
    ess.allOrFirstTier  allOrFirstTier
        Signed 32-bit integer
    ess.attribute  Attribute
        String
    ess.attributeFlags  attributeFlags
        Byte array
        T_restrictiveAttributeFlags
    ess.attributeList  attributeList
        Unsigned 32-bit integer
        SET_OF_SecurityAttribute
    ess.attributes  attributes
        Unsigned 32-bit integer
        FreeFormField
    ess.bitSetAttributes  bitSetAttributes
        Byte array
        T_informativeAttributeFlags
    ess.certHash  certHash
        Byte array
        Hash
    ess.certs  certs
        Unsigned 32-bit integer
        SEQUENCE_OF_ESSCertID
    ess.contentDescription  contentDescription
        String
        UTF8String_SIZE_1_MAX
    ess.contentType  contentType
        Object Identifier
    ess.expansionTime  expansionTime
        String
        GeneralizedTime
    ess.hashAlgorithm  hashAlgorithm
        No value
        AlgorithmIdentifier
    ess.inAdditionTo  inAdditionTo
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_GeneralNames
    ess.insteadOf  insteadOf
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_GeneralNames
    ess.issuer  issuer
        Unsigned 32-bit integer
        GeneralNames
    ess.issuerAndSerialNumber  issuerAndSerialNumber
        No value
    ess.issuerSerial  issuerSerial
        No value
    ess.mailListIdentifier  mailListIdentifier
        Unsigned 32-bit integer
        EntityIdentifier
    ess.mlReceiptPolicy  mlReceiptPolicy
        Unsigned 32-bit integer
    ess.none  none
        No value
    ess.originatorSignatureValue  originatorSignatureValue
        Byte array
        OCTET_STRING
    ess.pString  pString
        String
        PrintableString_SIZE_1_ub_privacy_mark_length
    ess.policies  policies
        Unsigned 32-bit integer
        SEQUENCE_OF_PolicyInformation
    ess.privacy_mark  privacy-mark
        Unsigned 32-bit integer
        ESSPrivacyMark
    ess.receiptList  receiptList
        Unsigned 32-bit integer
        SEQUENCE_OF_GeneralNames
    ess.receiptsFrom  receiptsFrom
        Unsigned 32-bit integer
    ess.receiptsTo  receiptsTo
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_ub_receiptsTo_OF_GeneralNames
    ess.securityAttributes  securityAttributes
        Unsigned 32-bit integer
        SET_OF_SecurityAttribute
    ess.security_categories  security-categories
        Unsigned 32-bit integer
        SecurityCategories
    ess.security_classification  security-classification
        Unsigned 32-bit integer
        SecurityClassification
    ess.security_policy_identifier  security-policy-identifier
        Object Identifier
        SecurityPolicyIdentifier
    ess.serialNumber  serialNumber
        Signed 32-bit integer
        CertificateSerialNumber
    ess.signedContentIdentifier  signedContentIdentifier
        Byte array
        ContentIdentifier
    ess.subjectKeyIdentifier  subjectKeyIdentifier
        Byte array
    ess.tagName  tagName
        Object Identifier
        T_restrictiveTagName
    ess.type  type
        Object Identifier
    ess.type_OID  type
        String
        Type of Security Category
    ess.utf8String  utf8String
        String
        UTF8String_SIZE_1_MAX
    ess.value  value
        No value
    ess.version  version
        Signed 32-bit integer
        ESSVersion

Extensible Authentication Protocol (eap)

    eap.code  Code
        Unsigned 8-bit integer
    eap.desired_type  Desired Auth Type
        Unsigned 8-bit integer
    eap.ext.vendor_id  Vendor Id
        Unsigned 16-bit integer
    eap.ext.vendor_type  Vendor Type
        Unsigned 8-bit integer
    eap.id  Id
        Unsigned 8-bit integer
    eap.len  Length
        Unsigned 16-bit integer
    eap.type  Type
        Unsigned 8-bit integer
    eaptls.fragment  EAP-TLS Fragment
        Frame number
    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
    eaptls.reassembled.length  Reassembled EAP-TLS length
        Unsigned 32-bit integer
        The total length of the reassembled payload

Extensible Record Format (erf)

    erf.aal2.cid  Channel Identification Number
        Unsigned 8-bit integer
    erf.aal2.hec  MAAL error
        Unsigned 16-bit integer
    erf.aal2.lbe  first cell received
        Unsigned 16-bit integer
    erf.aal2.maale  MAAL error number
        Unsigned 8-bit integer
    erf.aal2.res1  reserved
        Unsigned 16-bit integer
    erf.ehdr.class.flags  Flags
        Unsigned 32-bit integer
    erf.ehdr.class.flags.drop  Drop Steering Bit
        Unsigned 32-bit integer
    erf.ehdr.class.flags.res1  Reserved
        Unsigned 32-bit integer
    erf.ehdr.class.flags.res2  Reserved
        Unsigned 32-bit integer
    erf.ehdr.class.flags.sh  Search hit
        Unsigned 32-bit integer
    erf.ehdr.class.flags.shm  Multiple search hits
        Unsigned 32-bit integer
    erf.ehdr.class.flags.str  Stream Steering Bits
        Unsigned 32-bit integer
    erf.ehdr.class.flags.user  User classification
        Unsigned 32-bit integer
    erf.ehdr.class.seqnum  Sequence number
        Unsigned 32-bit integer
    erf.ehdr.int.intid  Intercept ID
        Unsigned 16-bit integer
    erf.ehdr.int.res1  Reserved
        Unsigned 8-bit integer
    erf.ehdr.int.res2  Reserved
        Unsigned 32-bit integer
    erf.ehdr.raw.link_type  Link Type
        Unsigned 8-bit integer
    erf.ehdr.raw.rate  Rate
        Unsigned 8-bit integer
    erf.ehdr.raw.res  Reserved
        Unsigned 32-bit integer
    erf.ehdr.raw.seqnum  Sequence number
        Unsigned 16-bit integer
    erf.ehdr.types  Extension Type
        Unsigned 8-bit integer
    erf.ehdr.unknown.data  Data
        Unsigned 64-bit integer
    erf.eth.off  offset
        Unsigned 8-bit integer
    erf.eth.res1  reserved
        Unsigned 8-bit integer
    erf.flags  flags
        Unsigned 8-bit integer
    erf.flags.cap  capture interface
        Unsigned 8-bit integer
    erf.flags.dse  ds error
        Unsigned 8-bit integer
    erf.flags.res  reserved
        Unsigned 8-bit integer
    erf.flags.rxe  rx error
        Unsigned 8-bit integer
    erf.flags.trunc  truncated
        Unsigned 8-bit integer
    erf.flags.vlen  varying record length
        Unsigned 8-bit integer
    erf.lctr  loss counter
        Unsigned 16-bit integer
    erf.mcaal2.cid  Channel Identification Number
        Unsigned 8-bit integer
    erf.mcaal2.cn  connection number
        Unsigned 16-bit integer
    erf.mcaal2.crc10  Length error
        Unsigned 8-bit integer
    erf.mcaal2.hec  MAAL error
        Unsigned 8-bit integer
    erf.mcaal2.lbe  first cell received
        Unsigned 8-bit integer
    erf.mcaal2.mul  reserved for type
        Unsigned 16-bit integer
    erf.mcaal2.port  physical port
        Unsigned 8-bit integer
    erf.mcaal2.res1  reserved for extra connection
        Unsigned 16-bit integer
    erf.mcaal2.res2  reserved
        Unsigned 8-bit integer
    erf.mcaal5.cn  connection number
        Unsigned 16-bit integer
    erf.mcaal5.crcck  CRC checked
        Unsigned 8-bit integer
    erf.mcaal5.crce  CRC error
        Unsigned 8-bit integer
    erf.mcaal5.first  First record
        Unsigned 8-bit integer
    erf.mcaal5.lenck  Length checked
        Unsigned 8-bit integer
    erf.mcaal5.lene  Length error
        Unsigned 8-bit integer
    erf.mcaal5.port  physical port
        Unsigned 8-bit integer
    erf.mcaal5.res1  reserved
        Unsigned 16-bit integer
    erf.mcaal5.res2  reserved
        Unsigned 8-bit integer
    erf.mcaal5.res3  reserved
        Unsigned 8-bit integer
    erf.mcatm.cn  connection number
        Unsigned 16-bit integer
    erf.mcatm.crc10  OAM Cell CRC10 Error (not implemented)
        Unsigned 8-bit integer
    erf.mcatm.first  First record
        Unsigned 8-bit integer
    erf.mcatm.hec  HEC corrected
        Unsigned 8-bit integer
    erf.mcatm.lbe  Lost Byte Error
        Unsigned 8-bit integer
    erf.mcatm.mul  multiplexed
        Unsigned 16-bit integer
    erf.mcatm.oamcell  OAM Cell
        Unsigned 8-bit integer
    erf.mcatm.port  physical port
        Unsigned 8-bit integer
    erf.mcatm.res1  reserved
        Unsigned 16-bit integer
    erf.mcatm.res2  reserved
        Unsigned 8-bit integer
    erf.mcatm.res3  reserved
        Unsigned 8-bit integer
    erf.mchdlc.afe  Aborted frame error
        Unsigned 8-bit integer
    erf.mchdlc.cn  connection number
        Unsigned 16-bit integer
    erf.mchdlc.fcse  FCS error
        Unsigned 8-bit integer
    erf.mchdlc.first  First record
        Unsigned 8-bit integer
    erf.mchdlc.lbe  Lost byte error
        Unsigned 8-bit integer
    erf.mchdlc.lre  Long record error
        Unsigned 8-bit integer
    erf.mchdlc.oe  Octet error
        Unsigned 8-bit integer
    erf.mchdlc.res1  reserved
        Unsigned 16-bit integer
    erf.mchdlc.res2  reserved
        Unsigned 8-bit integer
    erf.mchdlc.res3  reserved
        Unsigned 8-bit integer
    erf.mchdlc.sre  Short record error
        Unsigned 8-bit integer
    erf.mcraw.first  First record
        Unsigned 8-bit integer
    erf.mcraw.int  physical interface
        Unsigned 8-bit integer
    erf.mcraw.lbe  Lost byte error
        Unsigned 8-bit integer
    erf.mcraw.lre  Long record error
        Unsigned 8-bit integer
    erf.mcraw.res1  reserved
        Unsigned 8-bit integer
    erf.mcraw.res2  reserved
        Unsigned 16-bit integer
    erf.mcraw.res3  reserved
        Unsigned 8-bit integer
    erf.mcraw.res4  reserved
        Unsigned 8-bit integer
    erf.mcraw.res5  reserved
        Unsigned 8-bit integer
    erf.mcraw.sre  Short record error
        Unsigned 8-bit integer
    erf.mcrawl.cn  connection number
        Unsigned 8-bit integer
    erf.mcrawl.first  First record
        Unsigned 8-bit integer
    erf.mcrawl.lbe  Lost byte error
        Unsigned 8-bit integer
    erf.mcrawl.res1  reserved
        Unsigned 16-bit integer
    erf.mcrawl.res2  reserved
        Unsigned 8-bit integer
    erf.mcrawl.res5  reserved
        Unsigned 8-bit integer
    erf.rlen  record length
        Unsigned 16-bit integer
    erf.ts  Timestamp
        Unsigned 64-bit integer
    erf.types  types
        Unsigned 8-bit integer
    erf.types.ext_header  Extension header present
        Unsigned 8-bit integer
    erf.types.type  type
        Unsigned 8-bit integer
    erf.wlen  wire length
        Unsigned 16-bit integer

Extreme Discovery Protocol (edp)

    edp.checksum  EDP checksum
        Unsigned 16-bit integer
    edp.checksum_bad  Bad
        Boolean
        True: checksum doesn't match packet content; False: matches content or not checked
    edp.checksum_good  Good
        Boolean
        True: checksum matches packet content; False: doesn't match content or not checked
    edp.display  Display
        Protocol
        Display element
    edp.display.string  Name
        String
        MIB II display string
    edp.eaps  EAPS
        Protocol
        Ethernet Automatic Protection Switching element
    edp.eaps.fail  Fail
        Unsigned 16-bit integer
        Fail timer
    edp.eaps.hello  Hello
        Unsigned 16-bit integer
        Hello timer
    edp.eaps.helloseq  Helloseq
        Unsigned 16-bit integer
        Hello sequence
    edp.eaps.reserved0  Reserved0
        Byte array
    edp.eaps.reserved1  Reserved1
        Byte array
    edp.eaps.reserved2  Reserved2
        Byte array
    edp.eaps.state  State
        Unsigned 8-bit integer
    edp.eaps.sysmac  Sys MAC
        6-byte Hardware (MAC) Address
        System MAC address
    edp.eaps.type  Type
        Unsigned 8-bit integer
    edp.eaps.ver  Version
        Unsigned 8-bit integer
    edp.eaps.vlanid  Vlan ID
        Unsigned 16-bit integer
        Control Vlan ID
    edp.elrp  ELRP
        Protocol
        Extreme Loop Recognition Protocol element
    edp.elrp.unknown  Unknown
        Byte array
    edp.elsm  ELSM
        Protocol
        Extreme Link Status Monitoring element
    edp.elsm.type  Type
        Unsigned 8-bit integer
    edp.elsm.unknown  Subtype
        Unsigned 8-bit integer
    edp.esl  ESL
        Protocol
        EAPS shared link
    edp.esl.failed1  Failed ID 1
        Unsigned 16-bit integer
        Failed link ID 1
    edp.esl.failed2  Failed ID 2
        Unsigned 16-bit integer
        Failed link ID 2
    edp.esl.linkid1  Link ID 1
        Unsigned 16-bit integer
        Shared link ID 1
    edp.esl.linkid2  Link ID 2
        Unsigned 16-bit integer
        Shared link ID 2
    edp.esl.linklist  Link List
        Unsigned 16-bit integer
        List of Shared Link IDs
    edp.esl.numlinks  Num Shared Links
        Unsigned 16-bit integer
        Number of shared links in the network
    edp.esl.reserved0  Reserved0
        Byte array
    edp.esl.reserved1  Reserved1
        Byte array
    edp.esl.reserved4  Reserved4
        Byte array
    edp.esl.reserved5  Reserved5
        Byte array
    edp.esl.rest  Rest
        Byte array
    edp.esl.role  Role
        Unsigned 8-bit integer
    edp.esl.state  State
        Unsigned 8-bit integer
    edp.esl.sysmac  Sys MAC
        6-byte Hardware (MAC) Address
        System MAC address
    edp.esl.type  Type
        Unsigned 8-bit integer
    edp.esl.ver  Version
        Unsigned 8-bit integer
    edp.esl.vlanid  Vlan ID
        Unsigned 16-bit integer
        Control Vlan ID
    edp.esrp  ESRP
        Protocol
        Extreme Standby Router Protocol element
    edp.esrp.group  Group
        Unsigned 8-bit integer
    edp.esrp.hello  Hello
        Unsigned 16-bit integer
        Hello timer
    edp.esrp.ports  Ports
        Unsigned 16-bit integer
        Number of active ports
    edp.esrp.prio  Prio
        Unsigned 16-bit integer
    edp.esrp.proto  Protocol
        Unsigned 8-bit integer
    edp.esrp.reserved  Reserved
        Byte array
    edp.esrp.state  State
        Unsigned 16-bit integer
    edp.esrp.sysmac  Sys MAC
        6-byte Hardware (MAC) Address
        System MAC address
    edp.esrp.virtip  VirtIP
        IPv4 address
        Virtual IP address
    edp.info  Info
        Protocol
        Info element
    edp.info.port  Port
        Unsigned 16-bit integer
        Originating port #
    edp.info.reserved  Reserved
        Byte array
    edp.info.slot  Slot
        Unsigned 16-bit integer
        Originating slot #
    edp.info.vchassconn  Connections
        Byte array
        Virtual chassis connections
    edp.info.vchassid  Virt chassis
        Unsigned 16-bit integer
        Virtual chassis ID
    edp.info.version  Version
        Unsigned 32-bit integer
        Software version
    edp.info.version.internal  Version (internal)
        Unsigned 8-bit integer
        Software version (internal)
    edp.info.version.major1  Version (major1)
        Unsigned 8-bit integer
        Software version (major1)
    edp.info.version.major2  Version (major2)
        Unsigned 8-bit integer
        Software version (major2)
    edp.info.version.sustaining  Version (sustaining)
        Unsigned 8-bit integer
        Software version (sustaining)
    edp.length  Data length
        Unsigned 16-bit integer
    edp.midmac  Machine MAC
        6-byte Hardware (MAC) Address
    edp.midtype  Machine ID type
        Unsigned 16-bit integer
    edp.null  End
        Protocol
        Last element
    edp.reserved  Reserved
        Unsigned 8-bit integer
    edp.seqno  Sequence number
        Unsigned 16-bit integer
    edp.tlv.length  TLV length
        Unsigned 16-bit integer
    edp.tlv.marker  TLV Marker
        Unsigned 8-bit integer
    edp.tlv.type  TLV type
        Unsigned 8-bit integer
    edp.unknown  Unknown
        Protocol
        Element unknown to Wireshark
    edp.unknown.data  Unknown
        Byte array
    edp.version  Version
        Unsigned 8-bit integer
    edp.vlan  Vlan
        Protocol
        Vlan element
    edp.vlan.flags  Flags
        Unsigned 8-bit integer
    edp.vlan.flags.ip  Flags-IP
        Boolean
        Vlan has IP address configured
    edp.vlan.flags.reserved  Flags-reserved
        Unsigned 8-bit integer
    edp.vlan.flags.unknown  Flags-Unknown
        Boolean
    edp.vlan.id  Vlan ID
        Unsigned 16-bit integer
    edp.vlan.ip  IP addr
        IPv4 address
        VLAN IP address
    edp.vlan.name  Name
        String
        VLAN name
    edp.vlan.reserved1  Reserved1
        Byte array
    edp.vlan.reserved2  Reserved2
        Byte array

FC Extended Link Svc (fcels)

    fcels.alpa  AL_PA Map
        Byte array
    fcels.cbind.addr_mode  Addressing Mode
        Unsigned 8-bit integer
    fcels.cbind.dnpname  Destination N_Port Port_Name
        String
    fcels.cbind.handle  Connection Handle
        Unsigned 16-bit integer
        Cbind/Unbind connection handle
    fcels.cbind.ifcp_version  iFCP version
        Unsigned 8-bit integer
        Version of iFCP protocol
    fcels.cbind.liveness  Liveness Test Interval
        Unsigned 16-bit integer
        Liveness Test Interval in seconds
    fcels.cbind.snpname  Source N_Port Port_Name
        String
    fcels.cbind.status  Status
        Unsigned 16-bit integer
        Cbind status
    fcels.cbind.userinfo  UserInfo
        Unsigned 32-bit integer
        Userinfo token
    fcels.cls.cns  Class Supported
        Boolean
    fcels.cls.nzctl  Non-zero CS_CTL
        Boolean
    fcels.cls.prio  Priority
        Boolean
    fcels.cls.sdr  Delivery Mode
        Boolean
    fcels.cmn.bbb  B2B Credit Mgmt
        Boolean
    fcels.cmn.broadcast  Broadcast
        Boolean
    fcels.cmn.cios  Cont. Incr. Offset Supported
        Boolean
    fcels.cmn.clk  Clk Sync
        Boolean
    fcels.cmn.dhd  DHD Capable
        Boolean
    fcels.cmn.e_d_tov  E_D_TOV
        Boolean
    fcels.cmn.multicast  Multicast
        Boolean
    fcels.cmn.payload  Payload Len
        Boolean
    fcels.cmn.rro  RRO Supported
        Boolean
    fcels.cmn.security  Security
        Boolean
    fcels.cmn.seqcnt  SEQCNT
        Boolean
    fcels.cmn.simplex  Simplex
        Boolean
    fcels.cmn.vvv  Valid Vendor Version
        Boolean
    fcels.edtov  E_D_TOV
        Unsigned 16-bit integer
    fcels.estat  Exchange Status
        Unsigned 32-bit integer
    fcels.estat.complete  Exchange Complete
        Boolean
        Exchange complete?
    fcels.estat.resp  Sequence Responder
        Boolean
        Seq responder?
    fcels.estat.seq_init  Sequence Initiative
        Boolean
        Responder has Sequence Initiative?
    fcels.faddr  Fabric Address
        String
    fcels.faildrcvr  Failed Receiver AL_PA
        Unsigned 8-bit integer
    fcels.fcpflags  FCP Flags
        Unsigned 32-bit integer
    fcels.fcpflags.ccomp  Comp
        Boolean
    fcels.fcpflags.datao  Data Overlay
        Boolean
    fcels.fcpflags.initiator  Initiator
        Boolean
    fcels.fcpflags.rdxr  Rd Xfer_Rdy Dis
        Boolean
    fcels.fcpflags.retry  Retry
        Boolean
    fcels.fcpflags.target  Target
        Boolean
    fcels.fcpflags.trirep  Task Retry Ident
        Boolean
    fcels.fcpflags.trireq  Task Retry Ident
        Boolean
    fcels.fcpflags.wrxr  Wr Xfer_Rdy Dis
        Boolean
    fcels.flacompliance  FC-FLA Compliance
        Unsigned 8-bit integer
    fcels.flag  Flag
        Unsigned 8-bit integer
    fcels.fnname  Fabric/Node Name
        String
    fcels.fpname  Fabric Port Name
        String
    fcels.hrdaddr  Hard Address of Originator
        String
    fcels.logi.b2b  B2B Credit
        Unsigned 8-bit integer
    fcels.logi.bbscnum  BB_SC Number
        Unsigned 8-bit integer
    fcels.logi.cls1param  Class 1 Svc Param
        Byte array
    fcels.logi.cls2param  Class 2 Svc Param
        Byte array
    fcels.logi.cls3param  Class 3 Svc Param
        Byte array
    fcels.logi.cls4param  Class 4 Svc Param
        Byte array
    fcels.logi.clsflags  Service Options
        Unsigned 16-bit integer
    fcels.logi.clsrcvsize  Class Recv Size
        Unsigned 16-bit integer
    fcels.logi.cmnfeatures  Common Svc Parameters
        Unsigned 16-bit integer
    fcels.logi.e2e  End2End Credit
        Unsigned 16-bit integer
    fcels.logi.initctl  Initiator Ctl
        Unsigned 16-bit integer
    fcels.logi.initctl.ack0  ACK0 Capable
        Boolean
    fcels.logi.initctl.ackgaa  ACK GAA
        Boolean
    fcels.logi.initctl.initial_pa  Initial P_A
        Unsigned 16-bit integer
    fcels.logi.initctl.sync  Clock Sync
        Boolean
    fcels.logi.maxconseq  Max Concurrent Seq
        Unsigned 16-bit integer
    fcels.logi.openseq  Open Seq Per Exchg
        Unsigned 8-bit integer
    fcels.logi.rcptctl  Recipient Ctl
        Unsigned 16-bit integer
    fcels.logi.rcptctl.ack  ACK0
        Boolean
    fcels.logi.rcptctl.category  Category
        Unsigned 16-bit integer
    fcels.logi.rcptctl.interlock  X_ID Interlock
        Boolean
    fcels.logi.rcptctl.policy  Policy
        Unsigned 16-bit integer
    fcels.logi.rcptctl.sync  Clock Sync
        Boolean
    fcels.logi.rcvsize  Receive Size
        Unsigned 16-bit integer
    fcels.logi.reloff  Relative Offset By Info Cat
        Unsigned 16-bit integer
    fcels.logi.svcavail  Services Availability
        Byte array
    fcels.logi.totconseq  Total Concurrent Seq
        Unsigned 8-bit integer
    fcels.logi.vendvers  Vendor Version
        Byte array
    fcels.loopstate  Loop State
        Unsigned 8-bit integer
    fcels.matchcp  Match Address Code Points
        Unsigned 8-bit integer
    fcels.npname  N_Port Port_Name
        String
    fcels.opcode  Cmd Code
        Unsigned 8-bit integer
    fcels.oxid  OXID
        Unsigned 16-bit integer
    fcels.portid  Originator S_ID
        String
    fcels.portnum  Physical Port Number
        Unsigned 32-bit integer
    fcels.portstatus  Port Status
        Unsigned 16-bit integer
    fcels.prliloflags  PRLILO Flags
        Unsigned 8-bit integer
    fcels.prliloflags.eip  Est Image Pair
        Boolean
    fcels.prliloflags.ipe  Image Pair Estd
        Boolean
    fcels.prliloflags.opav  Orig PA Valid
        Boolean
    fcels.pubdev_bmap  Public Loop Device Bitmap
        Byte array
    fcels.pvtdev_bmap  Private Loop Device Bitmap
        Byte array
    fcels.rcovqual  Recovery Qualifier
        Unsigned 8-bit integer
    fcels.rec.fc4value  FC4 value
        Unsigned 32-bit integer
    fcels.reqipaddr  Requesting IP Address
        IPv6 address
    fcels.respaction  Responder Action
        Unsigned 8-bit integer
    fcels.respipaddr  Responding IP Address
        IPv6 address
    fcels.respname  Responding Port Name
        String
    fcels.respnname  Responding Node Name
        String
    fcels.resportid  Responding Port ID
        String
    fcels.rjt.detail  Reason Explanation
        Unsigned 8-bit integer
    fcels.rjt.reason  Reason Code
        Unsigned 8-bit integer
    fcels.rjt.vnduniq  Vendor Unique
        Unsigned 8-bit integer
    fcels.rnft.fc4type  FC-4 Type
        Unsigned 8-bit integer
    fcels.rnid.asstype  Associated Type
        Unsigned 32-bit integer
    fcels.rnid.attnodes  Number of Attached Nodes
        Unsigned 32-bit integer
    fcels.rnid.ip  IP Address
        IPv6 address
    fcels.rnid.ipvers  IP Version
        Unsigned 8-bit integer
    fcels.rnid.nodeidfmt  Node Identification Format
        Unsigned 8-bit integer
    fcels.rnid.nodemgmt  Node Management
        Unsigned 8-bit integer
    fcels.rnid.physport  Physical Port Number
        Unsigned 32-bit integer
    fcels.rnid.spidlen  Specific Id Length
        Unsigned 8-bit integer
    fcels.rnid.tcpport  TCP/UDP Port Number
        Unsigned 16-bit integer
    fcels.rnid.vendorsp  Vendor Specific
        Unsigned 16-bit integer
    fcels.rnid.vendoruniq  Vendor Unique
        Byte array
    fcels.rscn.addrfmt  Address Format
        Unsigned 8-bit integer
    fcels.rscn.area  Affected Area
        Unsigned 8-bit integer
    fcels.rscn.domain  Affected Domain
        Unsigned 8-bit integer
    fcels.rscn.evqual  Event Qualifier
        Unsigned 8-bit integer
    fcels.rscn.port  Affected Port
        Unsigned 8-bit integer
    fcels.rxid  RXID
        Unsigned 16-bit integer
    fcels.scr.regn  Registration Function
        Unsigned 8-bit integer
    fcels.speedflags  Port Speed Capabilities
        Unsigned 16-bit integer
    fcels.speedflags.10gb  10Gb Support
        Boolean
    fcels.speedflags.1gb  1Gb Support
        Boolean
    fcels.speedflags.2gb  2Gb Support
        Boolean
    fcels.speedflags.4gb  4Gb Support
        Boolean
    fcels.tprloflags.gprlo  Global PRLO
        Boolean
    fcels.tprloflags.npv  3rd Party N_Port Valid
        Boolean
    fcels.tprloflags.opav  3rd Party Orig PA Valid
        Boolean
    fcels.tprloflags.rpav  Resp PA Valid
        Boolean
    fcels.unbind.status  Status
        Unsigned 16-bit integer
        Unbind status

FC Fabric Configuration Server (fcs)

    fcs.err.vendor  Vendor Unique Reject Code
        Unsigned 8-bit integer
    fcs.fcsmask  Subtype Capability Bitmask
        Unsigned 32-bit integer
    fcs.gssubtype  Management GS Subtype
        Unsigned 8-bit integer
    fcs.ie.domainid  Interconnect Element Domain ID
        Unsigned 8-bit integer
    fcs.ie.fname  Interconnect Element Fabric Name
        String
    fcs.ie.logname  Interconnect Element Logical Name
        String
    fcs.ie.mgmtaddr  Interconnect Element Mgmt. Address
        String
    fcs.ie.mgmtid  Interconnect Element Mgmt. ID
        String
    fcs.ie.name  Interconnect Element Name
        String
    fcs.ie.type  Interconnect Element Type
        Unsigned 8-bit integer
    fcs.maxres_size  Maximum/Residual Size
        Unsigned 16-bit integer
    fcs.modelname  Model Name/Number
        String
    fcs.numcap  Number of Capabilities
        Unsigned 32-bit integer
    fcs.opcode  Opcode
        Unsigned 16-bit integer
    fcs.platform.mgmtaddr  Management Address
        String
    fcs.platform.name  Platform Name
        Byte array
    fcs.platform.nodename  Platform Node Name
        String
    fcs.platform.type  Platform Type
        Unsigned 8-bit integer
    fcs.port.flags  Port Flags
        Boolean
    fcs.port.moduletype  Port Module Type
        Unsigned 8-bit integer
    fcs.port.name  Port Name
        String
    fcs.port.physportnum  Physical Port Number
        Byte array
    fcs.port.state  Port State
        Unsigned 8-bit integer
    fcs.port.txtype  Port TX Type
        Unsigned 8-bit integer
    fcs.port.type  Port Type
        Unsigned 8-bit integer
    fcs.reason  Reason Code
        Unsigned 8-bit integer
    fcs.reasondet  Reason Code Explanantion
        Unsigned 8-bit integer
    fcs.releasecode  Release Code
        String
    fcs.unsmask  Subtype Capability Bitmask
        Unsigned 32-bit integer
    fcs.vbitmask  Vendor Unique Capability Bitmask
        Unsigned 24-bit integer
    fcs.vendorname  Vendor Name
        String

FCIP (fcip)

    fcip.conncode  Connection Usage Code
        Unsigned 16-bit integer
    fcip.connflags  Connection Usage Flags
        Unsigned 8-bit integer
    fcip.dstwwn  Destination Fabric WWN
        String
    fcip.encap_crc  CRC
        Unsigned 32-bit integer
    fcip.encap_word1  FCIP Encapsulation Word1
        Unsigned 32-bit integer
    fcip.eof  EOF
        Unsigned 8-bit integer
    fcip.eofc  EOF (1's Complement)
        Unsigned 8-bit integer
    fcip.flags  Flags
        Unsigned 8-bit integer
    fcip.flagsc  Flags (1's Complement)
        Unsigned 8-bit integer
    fcip.framelen  Frame Length (in Words)
        Unsigned 16-bit integer
    fcip.framelenc  Frame Length (1's Complement)
        Unsigned 16-bit integer
    fcip.katov  K_A_TOV
        Unsigned 32-bit integer
    fcip.nonce  Connection Nonce
        Byte array
    fcip.pflags.ch  Changed Flag
        Boolean
    fcip.pflags.sf  Special Frame Flag
        Boolean
    fcip.pflagsc  Pflags (1's Complement)
        Unsigned 8-bit integer
    fcip.proto  Protocol
        Unsigned 8-bit integer
    fcip.protoc  Protocol (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.tsec  Time (secs)
        Unsigned 32-bit integer
    fcip.tusec  Time (fraction)
        Unsigned 32-bit integer
    fcip.version  Version
        Unsigned 8-bit integer
    fcip.versionc  Version (1's Complement)
        Unsigned 8-bit integer

FCoE Initialization Protocol (fip)

    fip.ctrl_subcode  Control Subcode
        Unsigned 8-bit integer
    fip.desc  Unknown Descriptor
        Byte array
    fip.desc_len  Descriptor Length (words)
        Unsigned 8-bit integer
    fip.desc_type  Descriptor Type
        Unsigned 8-bit integer
    fip.disc_subcode  Discovery Subcode
        Unsigned 8-bit integer
    fip.dl_len  Length of Descriptors (words)
        Unsigned 16-bit integer
    fip.fab.map  FC-MAP
        String
    fip.fab.name  Fabric Name
        String
    fip.fab.vfid  VFID
        Unsigned 16-bit integer
    fip.fcoe_size  Max FCoE frame size
        Unsigned 16-bit integer
    fip.fka  FKA_ADV_Period
        Unsigned 32-bit integer
    fip.flags  Flags
        Unsigned 16-bit integer
    fip.flags.available  Available
        Boolean
    fip.flags.fpma  Fabric Provided MAC addr
        Boolean
    fip.flags.fport  F_Port
        Boolean
    fip.flags.sol  Solicited
        Boolean
    fip.flags.spma  Server Provided MAC addr
        Boolean
    fip.ls.subcode  Link Service Subcode
        Unsigned 8-bit integer
    fip.mac  MAC Address
        6-byte Hardware (MAC) Address
    fip.map  FC-MAP-OUI
        String
    fip.name  Switch or Node Name
        String
    fip.opcode  Opcode
        Unsigned 16-bit integer
    fip.pri  Priority
        Unsigned 8-bit integer
    fip.subcode  Unknown Subcode
        Unsigned 8-bit integer
    fip.vendor  Vendor-ID
        Byte array
    fip.vendor.data  Vendor-specific data
        Byte array
    fip.ver  Version
        Unsigned 8-bit integer
    fip.vlan  VLAN
        Unsigned 16-bit integer
    fip.vlan_subcode  VLAN Subcode
        Unsigned 8-bit integer
    fip.vn.fc_id  VN_Port FC_ID
        Unsigned 32-bit integer
    fip.vn.mac  VN_Port MAC Address
        6-byte Hardware (MAC) Address
    fip.vn.pwwn  Port Name
        String

FOUNDATION Fieldbus (ff)

    ff.fda  FDA Session Management Service
        Boolean
    ff.fda.idle  FDA Idle
        Boolean
    ff.fda.idle.err  FDA Idle Error
        Boolean
    ff.fda.idle.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fda.idle.err.additional_desc  Additional Description
        String
    ff.fda.idle.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fda.idle.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fda.idle.req  FDA Idle Request
        Boolean
    ff.fda.idle.rsp  FDA Idle Response
        Boolean
    ff.fda.open_sess  FDA Open Session
        Boolean
    ff.fda.open_sess.err  FDA Open Session Error
        Boolean
    ff.fda.open_sess.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fda.open_sess.err.additional_desc  Additional Description
        String
    ff.fda.open_sess.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fda.open_sess.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fda.open_sess.req  FDA Open Session Request
        Boolean
    ff.fda.open_sess.req.inactivity_close_time  Inactivity Close Time
        Unsigned 16-bit integer
    ff.fda.open_sess.req.max_buf_siz  Max Buffer Size
        Unsigned 32-bit integer
    ff.fda.open_sess.req.max_msg_len  Max Message Length
        Unsigned 32-bit integer
    ff.fda.open_sess.req.nma_conf_use  NMA Configuration Use
        Unsigned 8-bit integer
    ff.fda.open_sess.req.pd_tag  PD Tag
        String
    ff.fda.open_sess.req.reserved  Reserved
        Unsigned 8-bit integer
    ff.fda.open_sess.req.sess_idx  Session Index
        Unsigned 32-bit integer
    ff.fda.open_sess.req.transmit_delay_time  Transmit Delay Time
        Unsigned 32-bit integer
    ff.fda.open_sess.rsp  FDA Open Session Response
        Boolean
    ff.fda.open_sess.rsp.inactivity_close_time  Inactivity Close Time
        Unsigned 16-bit integer
    ff.fda.open_sess.rsp.max_buf_siz  Max Buffer Size
        Unsigned 32-bit integer
    ff.fda.open_sess.rsp.max_msg_len  Max Message Length
        Unsigned 32-bit integer
    ff.fda.open_sess.rsp.nma_conf_use  NMA Configuration Use
        Unsigned 8-bit integer
    ff.fda.open_sess.rsp.pd_tag  PD Tag
        String
    ff.fda.open_sess.rsp.reserved  Reserved
        Unsigned 8-bit integer
    ff.fda.open_sess.rsp.sess_idx  Session Index
        Unsigned 32-bit integer
    ff.fda.open_sess.rsp.transmit_delay_time  Transmit Delay Time
        Unsigned 32-bit integer
    ff.fms  FMS Service
        Boolean
    ff.fms.abort  FMS Abort
        Boolean
    ff.fms.abort.req  FMS Abort Request
        Boolean
    ff.fms.abort.req.abort_id  Abort Identifier
        Unsigned 8-bit integer
    ff.fms.abort.req.reason_code  Reason Code
        Unsigned 8-bit integer
    ff.fms.abort.req.reserved  Reserved
        Unsigned 16-bit integer
    ff.fms.ack_ev_notification  FMS Acknowledge Event Notification
        Boolean
    ff.fms.ack_ev_notification.err  FMS Acknowledge Event Notification Error
        Boolean
    ff.fms.ack_ev_notification.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.ack_ev_notification.err.additional_desc  Additional Description
        String
    ff.fms.ack_ev_notification.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.ack_ev_notification.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.ack_ev_notification.req  FMS Acknowledge Event Notification Request
        Boolean
    ff.fms.ack_ev_notification.req.ev_num  Event Number
        Unsigned 32-bit integer
    ff.fms.ack_ev_notification.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.ack_ev_notification.rsp  FMS Acknowledge Event Notification Response
        Boolean
    ff.fms.alter_ev_condition_monitoring  FMS Alter Event Condition Monitoring
        Boolean
    ff.fms.alter_ev_condition_monitoring.err  FMS Alter Event Condition Monitoring Error
        Boolean
    ff.fms.alter_ev_condition_monitoring.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.alter_ev_condition_monitoring.err.additional_desc  Additional Description
        String
    ff.fms.alter_ev_condition_monitoring.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.alter_ev_condition_monitoring.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.alter_ev_condition_monitoring.req  FMS Alter Event Condition Monitoring Request
        Boolean
    ff.fms.alter_ev_condition_monitoring.req.enabled  Enabled
        Unsigned 8-bit integer
    ff.fms.alter_ev_condition_monitoring.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.alter_ev_condition_monitoring.rsp  FMS Alter Event Condition Monitoring Response
        Boolean
    ff.fms.create_pi  FMS Create Program Invocation
        Boolean
    ff.fms.create_pi.err  FMS Create Program Invocation Error
        Boolean
    ff.fms.create_pi.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.create_pi.err.additional_desc  Additional Description
        String
    ff.fms.create_pi.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.create_pi.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.create_pi.req  FMS Create Program Invocation Request
        Boolean
    ff.fms.create_pi.req.list_of_dom_idxes.dom_idx  Domain Index
        Unsigned 32-bit integer
    ff.fms.create_pi.req.num_of_dom_idxes  Number of Domain Indexes
        Unsigned 16-bit integer
    ff.fms.create_pi.req.reserved  Reserved
        Unsigned 8-bit integer
    ff.fms.create_pi.req.reusable  Reusable
        Unsigned 8-bit integer
    ff.fms.create_pi.rsp  FMS Create Program Invocation Response
        Boolean
    ff.fms.create_pi.rsp.idx  Index
        Unsigned 32-bit integer
    ff.fms.def_variable_list  FMS Define Variable List
        Boolean
    ff.fms.def_variable_list.err  FMS Define Variable List Error
        Boolean
    ff.fms.def_variable_list.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.def_variable_list.err.additional_desc  Additional Description
        String
    ff.fms.def_variable_list.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.def_variable_list.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.def_variable_list.req  FMS Define Variable List Request
        Boolean
    ff.fms.def_variable_list.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.def_variable_list.req.num_of_idxes  Number of Indexes
        Unsigned 32-bit integer
    ff.fms.def_variable_list.rsp  FMS Define Variable List Response
        Boolean
    ff.fms.def_variable_list.rsp.idx  Index
        Unsigned 32-bit integer
    ff.fms.del_pi  FMS Delete Program Invocation
        Boolean
    ff.fms.del_pi.err  FMS Delete Program Invocation Error
        Boolean
    ff.fms.del_pi.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.del_pi.err.additional_desc  Additional Description
        String
    ff.fms.del_pi.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.del_pi.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.del_pi.req  FMS Delete Program Invocation Request
        Boolean
    ff.fms.del_pi.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.del_pi.rsp  FMS Delete Program Invocation Response
        Boolean
    ff.fms.del_variable_list  FMS Delete Variable List
        Boolean
    ff.fms.del_variable_list.err  FMS Delete Variable List Error
        Boolean
    ff.fms.del_variable_list.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.del_variable_list.err.additional_desc  Additional Description
        String
    ff.fms.del_variable_list.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.del_variable_list.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.del_variable_list.req  FMS Delete Variable List Request
        Boolean
    ff.fms.del_variable_list.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.del_variable_list.rsp  FMS Delete Variable List Response
        Boolean
    ff.fms.download_seg  FMS Download Segment
        Boolean
    ff.fms.download_seg.err  FMS Download Segment Error
        Boolean
    ff.fms.download_seg.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.download_seg.err.additional_desc  Additional Description
        String
    ff.fms.download_seg.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.download_seg.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.download_seg.req  FMS Download Segment Request
        Boolean
    ff.fms.download_seg.req.idx  Index
        Unsigned 8-bit integer
    ff.fms.download_seg.rsp  FMS Download Segment Response
        Boolean
    ff.fms.download_seg.rsp.more_follows  Final Result
        Unsigned 8-bit integer
    ff.fms.ev_notification  FMS Event Notification
        Boolean
    ff.fms.ev_notification.req  FMS Event Notification Request
        Boolean
    ff.fms.ev_notification.req.ev_num  Event Number
        Unsigned 32-bit integer
    ff.fms.ev_notification.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.gen_download_seg  FMS Generic Download Segment
        Boolean
    ff.fms.gen_download_seg.err  FMS Generic Download Segment Error
        Boolean
    ff.fms.gen_download_seg.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.gen_download_seg.err.additional_desc  Additional Description
        String
    ff.fms.gen_download_seg.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.gen_download_seg.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.gen_download_seg.req  FMS Generic Download Segment Request
        Boolean
    ff.fms.gen_download_seg.req.idx  Index
        Unsigned 8-bit integer
    ff.fms.gen_download_seg.req.more_follows  More Follows
        Unsigned 8-bit integer
    ff.fms.gen_download_seg.rsp  FMS Generic Download Segment Response
        Boolean
    ff.fms.gen_init_download_seq  FMS Generic Initiate Download Sequence
        Boolean
    ff.fms.gen_init_download_seq.err  FMS Generic Initiate Download Sequence Error
        Boolean
    ff.fms.gen_init_download_seq.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.gen_init_download_seq.err.additional_desc  Additional Description
        String
    ff.fms.gen_init_download_seq.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.gen_init_download_seq.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.gen_init_download_seq.req  FMS Generic Initiate Download Sequence Request
        Boolean
    ff.fms.gen_init_download_seq.req.idx  Index
        Unsigned 16-bit integer
    ff.fms.gen_init_download_seq.rsp  FMS Generic Initiate Download Sequence Response
        Boolean
    ff.fms.gen_terminate_download_seq  FMS Generic Terminate Download Sequence
        Boolean
    ff.fms.gen_terminate_download_seq.err  FMS Generic Terminate Download Sequence Error
        Boolean
    ff.fms.gen_terminate_download_seq.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.gen_terminate_download_seq.err.additional_desc  Additional Description
        String
    ff.fms.gen_terminate_download_seq.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.gen_terminate_download_seq.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.gen_terminate_download_seq.req  FMS Generic Terminate Download Sequence Request
        Boolean
    ff.fms.gen_terminate_download_seq.req.idx  Index
        Unsigned 8-bit integer
    ff.fms.gen_terminate_download_seq.rsp  FMS Generic Terminate Download Sequence Response
        Boolean
    ff.fms.gen_terminate_download_seq.rsp.final_result  Final Result
        Unsigned 8-bit integer
    ff.fms.get_od  FMS Get OD
        Boolean
    ff.fms.get_od.err  FMS Get OD Error
        Boolean
    ff.fms.get_od.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.get_od.err.additional_desc  Additional Description
        String
    ff.fms.get_od.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.get_od.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.get_od.req  FMS Get OD Request
        Boolean
    ff.fms.get_od.req.all_attrs  All Attributes
        Unsigned 8-bit integer
    ff.fms.get_od.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.get_od.req.reserved  Reserved
        Unsigned 16-bit integer
    ff.fms.get_od.req.start_idx_flag  Start Index Flag
        Unsigned 8-bit integer
    ff.fms.get_od.rsp  FMS Get OD Response
        Boolean
    ff.fms.get_od.rsp.more_follows  More Follows
        Unsigned 8-bit integer
    ff.fms.get_od.rsp.num_of_obj_desc  Number of Object Descriptions
        Unsigned 8-bit integer
    ff.fms.get_od.rsp.reserved  Reserved
        Unsigned 16-bit integer
    ff.fms.id  FMS Identify
        Boolean
    ff.fms.id.err  FMS Identify Error
        Boolean
    ff.fms.id.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.id.err.additional_desc  Additional Description
        String
    ff.fms.id.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.id.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.id.req  FMS Identify Request
        Boolean
    ff.fms.id.rsp  FMS Identify Response
        Boolean
    ff.fms.id.rsp.model_name  Model Name
        String
    ff.fms.id.rsp.revision  Revision
        String
    ff.fms.id.rsp.vendor_name  Vendor Name
        String
    ff.fms.info_report  FMS Information Report
        Boolean
    ff.fms.info_report.req  FMS Information Report Request
        Boolean
    ff.fms.info_report.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.info_report_on_change  FMS Information Report On Change with Subindex
        Boolean
    ff.fms.info_report_on_change.req  FMS Information Report On Change with Subindex Request
        Boolean
    ff.fms.info_report_on_change.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.info_report_on_change_with_subidx  FMS Information Report On Change
        Boolean
    ff.fms.info_report_on_change_with_subidx.req  FMS Information Report On Change Request
        Boolean
    ff.fms.info_report_on_change_with_subidx.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.info_report_on_change_with_subidx.req.subidx  Subindex
        Unsigned 32-bit integer
    ff.fms.info_report_with_subidx  FMS Information Report with Subindex
        Boolean
    ff.fms.info_report_with_subidx.req  FMS Information Report with Subindex Request
        Boolean
    ff.fms.info_report_with_subidx.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.info_report_with_subidx.req.subidx  Subindex
        Unsigned 32-bit integer
    ff.fms.init  FMS Initiate
        Boolean
    ff.fms.init.err  FMS Initiate Error
        Boolean
    ff.fms.init.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.init.err.additional_desc  Additional Description
        String
    ff.fms.init.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.init.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.init.req  FMS Initiate Request
        Boolean
    ff.fms.init.req.access_protection_supported_calling  Access Protection Supported Calling
        Unsigned 8-bit integer
    ff.fms.init.req.conn_opt  Connect Option
        Unsigned 8-bit integer
    ff.fms.init.req.passwd_and_access_grps_calling  Password and Access Groups Calling
        Unsigned 16-bit integer
    ff.fms.init.req.pd_tag  PD Tag
        String
    ff.fms.init.req.prof_num_calling  Profile Number Calling
        Unsigned 16-bit integer
    ff.fms.init.req.ver_od_calling  Version OD Calling
        Signed 16-bit integer
    ff.fms.init.rsp  FMS Initiate Response
        Boolean
    ff.fms.init.rsp.prof_num_called  Profile Number Called
        Unsigned 16-bit integer
    ff.fms.init.rsp.ver_od_called  Version OD Called
        Signed 16-bit integer
    ff.fms.init_download_seq  FMS Initiate Download Sequence
        Boolean
    ff.fms.init_download_seq.err  FMS Initiate Download Sequence Error
        Boolean
    ff.fms.init_download_seq.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.init_download_seq.err.additional_desc  Additional Description
        String
    ff.fms.init_download_seq.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.init_download_seq.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.init_download_seq.req  FMS Initiate Download Sequence Request
        Boolean
    ff.fms.init_download_seq.req.idx  Index
        Unsigned 8-bit integer
    ff.fms.init_download_seq.rsp  FMS Initiate Download Sequence Response
        Boolean
    ff.fms.init_put_od  FMS Initiate Put OD
        Boolean
    ff.fms.init_put_od.err  FMS Initiate Put OD Error
        Boolean
    ff.fms.init_put_od.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.init_put_od.err.additional_desc  Additional Description
        String
    ff.fms.init_put_od.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.init_put_od.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.init_put_od.req  FMS Initiate Put OD Request
        Boolean
    ff.fms.init_put_od.req.consequence  Consequence
        Unsigned 16-bit integer
    ff.fms.init_put_od.req.reserved  Reserved
        Unsigned 16-bit integer
    ff.fms.init_put_od.rsp  FMS Initiate Put OD Response
        Boolean
    ff.fms.init_upload_seq  FMS Initiate Upload Sequence
        Boolean
    ff.fms.init_upload_seq.err  FMS Initiate Upload Sequence Error
        Boolean
    ff.fms.init_upload_seq.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.init_upload_seq.err.additional_desc  Additional Description
        String
    ff.fms.init_upload_seq.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.init_upload_seq.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.init_upload_seq.req  FMS Initiate Upload Sequence Request
        Boolean
    ff.fms.init_upload_seq.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.init_upload_seq.rsp  FMS Initiate Upload Sequence Response
        Boolean
    ff.fms.kill  FMS Kill
        Boolean
    ff.fms.kill.err  FMS Kill Error
        Boolean
    ff.fms.kill.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.kill.err.additional_desc  Additional Description
        String
    ff.fms.kill.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.kill.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.kill.req  FMS Kill Request
        Boolean
    ff.fms.kill.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.kill.rsp  FMS Kill Response
        Boolean
    ff.fms.put_od  FMS Put OD
        Boolean
    ff.fms.put_od.err  FMS Put OD Error
        Boolean
    ff.fms.put_od.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.put_od.err.additional_desc  Additional Description
        String
    ff.fms.put_od.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.put_od.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.put_od.req  FMS Put OD Request
        Boolean
    ff.fms.put_od.req.num_of_obj_desc  Number of Object Descriptions
        Unsigned 8-bit integer
    ff.fms.put_od.rsp  FMS Put OD Response
        Boolean
    ff.fms.read  FMS Read
        Boolean
    ff.fms.read.err  FMS Read Error
        Boolean
    ff.fms.read.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.read.err.additional_desc  Additional Description
        String
    ff.fms.read.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.read.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.read.req  FMS Read Request
        Boolean
    ff.fms.read.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.read.rsp  FMS Read Response
        Boolean
    ff.fms.read_with_subidx  FMS Read with Subindex
        Boolean
    ff.fms.read_with_subidx.err  FMS Read with Subindex Error
        Boolean
    ff.fms.read_with_subidx.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.read_with_subidx.err.additional_desc  Additional Description
        String
    ff.fms.read_with_subidx.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.read_with_subidx.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.read_with_subidx.req  FMS Read with Subindex Request
        Boolean
    ff.fms.read_with_subidx.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.read_with_subidx.req.subidx  Index
        Unsigned 32-bit integer
    ff.fms.read_with_subidx.rsp  FMS Read with Subindex Response
        Boolean
    ff.fms.req_dom_download  FMS Request Domain Download
        Boolean
    ff.fms.req_dom_download.err  FMS Request Domain Download Error
        Boolean
    ff.fms.req_dom_download.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.req_dom_download.err.additional_desc  Additional Description
        String
    ff.fms.req_dom_download.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.req_dom_download.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.req_dom_download.req  FMS Request Domain Download Request
        Boolean
    ff.fms.req_dom_download.req.additional_info  Additional Description
        String
    ff.fms.req_dom_download.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.req_dom_download.rsp  FMS Request Domain Download Response
        Boolean
    ff.fms.req_dom_upload  FMS Request Domain Upload
        Boolean
    ff.fms.req_dom_upload.err  FMS Request Domain Upload Error
        Boolean
    ff.fms.req_dom_upload.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.req_dom_upload.err.additional_desc  Additional Description
        String
    ff.fms.req_dom_upload.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.req_dom_upload.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.req_dom_upload.req  FMS Request Domain Upload Request
        Boolean
    ff.fms.req_dom_upload.req.additional_info  Additional Description
        String
    ff.fms.req_dom_upload.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.req_dom_upload.rsp  FMS Request Domain Upload Response
        Boolean
    ff.fms.reset  FMS Reset
        Boolean
    ff.fms.reset.err  FMS Reset Error
        Boolean
    ff.fms.reset.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.reset.err.additional_desc  Additional Description
        String
    ff.fms.reset.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.reset.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.reset.err.pi_state  Pi State
        Unsigned 8-bit integer
    ff.fms.reset.req  FMS Reset Request
        Boolean
    ff.fms.reset.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.reset.rsp  FMS Reset Response
        Boolean
    ff.fms.resume  FMS Resume
        Boolean
    ff.fms.resume.err  FMS Resume Error
        Boolean
    ff.fms.resume.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.resume.err.additional_desc  Additional Description
        String
    ff.fms.resume.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.resume.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.resume.err.pi_state  Pi State
        Unsigned 8-bit integer
    ff.fms.resume.req  FMS Resume Request
        Boolean
    ff.fms.resume.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.resume.rsp  FMS Resume Response
        Boolean
    ff.fms.start  FMS Start
        Boolean
    ff.fms.start.err  FMS Start Error
        Boolean
    ff.fms.start.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.start.err.additional_desc  Additional Description
        String
    ff.fms.start.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.start.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.start.err.pi_state  Pi State
        Unsigned 8-bit integer
    ff.fms.start.req  FMS Start Request
        Boolean
    ff.fms.start.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.start.rsp  FMS Start Response
        Boolean
    ff.fms.status  FMS Status
        Boolean
    ff.fms.status.err  FMS Status Error
        Boolean
    ff.fms.status.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.status.err.additional_desc  Additional Description
        String
    ff.fms.status.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.status.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.status.req  FMS Status Request
        Boolean
    ff.fms.status.rsp  FMS Status Response
        Boolean
    ff.fms.status.rsp.logical_status  Logical Status
        Unsigned 8-bit integer
    ff.fms.status.rsp.physical_status  Physical Status
        Unsigned 8-bit integer
    ff.fms.status.rsp.reserved  Reserved
        Unsigned 16-bit integer
    ff.fms.stop  FMS Stop
        Boolean
    ff.fms.stop.err  FMS Stop Error
        Boolean
    ff.fms.stop.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.stop.err.additional_desc  Additional Description
        String
    ff.fms.stop.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.stop.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.stop.err.pi_state  Pi State
        Unsigned 8-bit integer
    ff.fms.stop.req  FMS Stop Request
        Boolean
    ff.fms.stop.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.stop.rsp  FMS Stop Response
        Boolean
    ff.fms.terminate_download_seq  FMS Terminate Download Sequence
        Boolean
    ff.fms.terminate_download_seq.err  FMS Terminate Download Sequence Error
        Boolean
    ff.fms.terminate_download_seq.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.terminate_download_seq.err.additional_desc  Additional Description
        String
    ff.fms.terminate_download_seq.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.terminate_download_seq.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.terminate_download_seq.req  FMS Terminate Download Sequence Request
        Boolean
    ff.fms.terminate_download_seq.req.final_result  Final Result
        Unsigned 32-bit integer
    ff.fms.terminate_download_seq.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.terminate_download_seq.rsp  FMS Terminate Download Sequence Response
        Boolean
    ff.fms.terminate_put_od  FMS Terminate Put OD
        Boolean
    ff.fms.terminate_put_od.err  FMS Terminate Put OD Error
        Boolean
    ff.fms.terminate_put_od.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.terminate_put_od.err.additional_desc  Additional Description
        String
    ff.fms.terminate_put_od.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.terminate_put_od.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.terminate_put_od.err.index  Index
        Unsigned 32-bit integer
    ff.fms.terminate_put_od.req  FMS Terminate Put OD Request
        Boolean
    ff.fms.terminate_put_od.rsp  FMS Terminate Put OD Response
        Boolean
    ff.fms.terminate_upload_seq  FMS Terminate Upload Sequence
        Boolean
    ff.fms.terminate_upload_seq.err  FMS Terminate Upload Sequence Error
        Boolean
    ff.fms.terminate_upload_seq.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.terminate_upload_seq.err.additional_desc  Additional Description
        String
    ff.fms.terminate_upload_seq.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.terminate_upload_seq.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.terminate_upload_seq.req  FMS Terminate Upload Sequence Request
        Boolean
    ff.fms.terminate_upload_seq.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.terminate_upload_seq.rsp  FMS Terminate Upload Sequence Response
        Boolean
    ff.fms.unsolicited_status  FMS Unsolicited Status
        Boolean
    ff.fms.unsolicited_status.req  FMS Unsolicited Status Request
        Boolean
    ff.fms.unsolicited_status.req.logical_status  Logical Status
        Unsigned 8-bit integer
    ff.fms.unsolicited_status.req.physical_status  Physical Status
        Unsigned 8-bit integer
    ff.fms.unsolicited_status.req.reserved  Reserved
        Unsigned 16-bit integer
    ff.fms.upload_seg  FMS Upload Segment
        Boolean
    ff.fms.upload_seg.err  FMS Upload Segment Error
        Boolean
    ff.fms.upload_seg.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.upload_seg.err.additional_desc  Additional Description
        String
    ff.fms.upload_seg.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.upload_seg.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.upload_seg.req  FMS Upload Segment Request
        Boolean
    ff.fms.upload_seg.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.upload_seg.rsp  FMS Upload Segment Response
        Boolean
    ff.fms.upload_seg.rsp.more_follows  More Follows
        Unsigned 32-bit integer
    ff.fms.write  FMS Write
        Boolean
    ff.fms.write.err  FMS Write Error
        Boolean
    ff.fms.write.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.write.err.additional_desc  Additional Description
        String
    ff.fms.write.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.write.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.write.req  FMS Write Request
        Boolean
    ff.fms.write.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.write.rsp  FMS Write Response
        Boolean
    ff.fms.write_with_subidx  FMS Write with Subindex
        Boolean
    ff.fms.write_with_subidx.err  FMS Write with Subindex Error
        Boolean
    ff.fms.write_with_subidx.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.fms.write_with_subidx.err.additional_desc  Additional Description
        String
    ff.fms.write_with_subidx.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.fms.write_with_subidx.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.fms.write_with_subidx.req  FMS Write with Subindex Request
        Boolean
    ff.fms.write_with_subidx.req.idx  Index
        Unsigned 32-bit integer
    ff.fms.write_with_subidx.req.subidx  Index
        Unsigned 32-bit integer
    ff.fms.write_with_subidx.rsp  FMS Write with Subindex Response
        Boolean
    ff.hdr  Message Header
        Boolean
    ff.hdr.fda_addr  FDA Address
        Unsigned 32-bit integer
    ff.hdr.len  Message Length
        Unsigned 32-bit integer
    ff.hdr.ver  FDA Message Version
        Unsigned 8-bit integer
    ff.lr  LAN Redundancy Service
        Boolean
    ff.lr.diagnostic_msg.req.dev_idx  Device Index
        Unsigned 16-bit integer
    ff.lr.diagnostic_msg.req.diagnostic_msg_intvl  Diagnostic Message Interval
        Unsigned 32-bit integer
    ff.lr.diagnostic_msg.req.if_a_to_a_status  Interface AtoA Status
        Unsigned 32-bit integer
    ff.lr.diagnostic_msg.req.if_a_to_b_status  Interface AtoB Status
        Unsigned 32-bit integer
    ff.lr.diagnostic_msg.req.if_b_to_a_status  Interface BtoA Status
        Unsigned 32-bit integer
    ff.lr.diagnostic_msg.req.if_b_to_b_status  Interface BtoB Status
        Unsigned 32-bit integer
    ff.lr.diagnostic_msg.req.num_of_if_statuses  Number of Interface Statuses
        Unsigned 32-bit integer
    ff.lr.diagnostic_msg.req.num_of_network_ifs  Number of Network Interfaces
        Unsigned 8-bit integer
    ff.lr.diagnostic_msg.req.pd_tag  PD Tag
        String
    ff.lr.diagnostic_msg.req.reserved  Reserved
        Unsigned 8-bit integer
    ff.lr.diagnostic_msg.req.transmission_if  Transmission Interface
        Unsigned 8-bit integer
    ff.lr.get_info.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.lr.get_info.err.additional_desc  Additional Description
        String
    ff.lr.get_info.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.lr.get_info.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.lr.get_info.rsp.aging_time  Aging Time
        Unsigned 32-bit integer
    ff.lr.get_info.rsp.diagnostic_msg_if_a_recv_addr  Diagnostic Message Interface A Receive Address
        IPv6 address
    ff.lr.get_info.rsp.diagnostic_msg_if_a_send_addr  Diagnostic Message Interface A Send Address
        IPv6 address
    ff.lr.get_info.rsp.diagnostic_msg_if_b_recv_addr  Diagnostic Message Interface B Receive Address
        IPv6 address
    ff.lr.get_info.rsp.diagnostic_msg_if_b_send_addr  Diagnostic Message Interface B Send Address
        IPv6 address
    ff.lr.get_info.rsp.diagnostic_msg_intvl  Diagnostic Message Interval
        Unsigned 32-bit integer
    ff.lr.get_info.rsp.lr_attrs_ver  LAN Redundancy Attributes Version
        Unsigned 32-bit integer
    ff.lr.get_info.rsp.max_msg_num_diff  Max Message Number Difference
        Unsigned 8-bit integer
    ff.lr.get_info.rsp.reserved  Reserved
        Unsigned 16-bit integer
    ff.lr.get_statistics.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.lr.get_statistics.err.additional_desc  Additional Description
        String
    ff.lr.get_statistics.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.lr.get_statistics.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.lr.get_statistics.rsp.num_diag_svr_ind_miss_a  Error Code
        Unsigned 32-bit integer
    ff.lr.get_statistics.rsp.num_diag_svr_ind_miss_b  Error Code
        Unsigned 32-bit integer
    ff.lr.get_statistics.rsp.num_diag_svr_ind_recv_a  Error Code
        Unsigned 32-bit integer
    ff.lr.get_statistics.rsp.num_diag_svr_ind_recv_b  Error Code
        Unsigned 32-bit integer
    ff.lr.get_statistics.rsp.num_rem_dev_diag_recv_fault_a  Error Code
        Unsigned 32-bit integer
    ff.lr.get_statistics.rsp.num_rem_dev_diag_recv_fault_b  Error Code
        Unsigned 32-bit integer
    ff.lr.get_statistics.rsp.num_x_cable_stat  Error Code
        Unsigned 32-bit integer
    ff.lr.get_statistics.rsp.x_cable_stat  Error Code
        Unsigned 32-bit integer
    ff.lr.lr.diagnostic_msg  Diagnostic Message
        Boolean
    ff.lr.lr.get_info  LAN Redundancy Get Information
        Boolean
    ff.lr.lr.get_info.err  LAN Redundancy Get Information Error
        Boolean
    ff.lr.lr.get_info.req  LAN Redundancy Get Information Request
        Boolean
    ff.lr.lr.get_info.rsp  LAN Redundancy Get Information Response
        Boolean
    ff.lr.lr.get_statistics  LAN Redundancy Get Statistics
        Boolean
    ff.lr.lr.get_statistics.err  LAN Redundancy Get Statistics Error
        Boolean
    ff.lr.lr.get_statistics.req  LAN Redundancy Get Statistics Request
        Boolean
    ff.lr.lr.get_statistics.rsp  LAN Redundancy Get Statistics Response
        Boolean
    ff.lr.lr.put_info  LAN Redundancy Put Information
        Boolean
    ff.lr.lr.put_info.err  LAN Redundancy Put Information Error
        Boolean
    ff.lr.lr.put_info.req  LAN Redundancy Put Information Request
        Boolean
    ff.lr.lr.put_info.rsp  LAN Redundancy Put Information Response
        Boolean
    ff.lr.put_info.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.lr.put_info.err.additional_desc  Additional Description
        String
    ff.lr.put_info.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.lr.put_info.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.lr.put_info.req.aging_time  Aging Time
        Unsigned 32-bit integer
    ff.lr.put_info.req.diagnostic_msg_if_a_recv_addr  Diagnostic Message Interface A Receive Address
        IPv6 address
    ff.lr.put_info.req.diagnostic_msg_if_a_send_addr  Diagnostic Message Interface A Send Address
        IPv6 address
    ff.lr.put_info.req.diagnostic_msg_if_b_recv_addr  Diagnostic Message Interface B Receive Address
        IPv6 address
    ff.lr.put_info.req.diagnostic_msg_if_b_send_addr  Diagnostic Message Interface B Send Address
        IPv6 address
    ff.lr.put_info.req.diagnostic_msg_intvl  Diagnostic Message Interval
        Unsigned 32-bit integer
    ff.lr.put_info.req.lr_attrs_ver  LAN Redundancy Attributes Version
        Unsigned 32-bit integer
    ff.lr.put_info.req.max_msg_num_diff  Max Message Number Difference
        Unsigned 8-bit integer
    ff.lr.put_info.req.reserved  Reserved
        Unsigned 16-bit integer
    ff.lr.put_info.rsp.aging_time  Aging Time
        Unsigned 32-bit integer
    ff.lr.put_info.rsp.diagnostic_msg_if_a_recv_addr  Diagnostic Message Interface A Receive Address
        IPv6 address
    ff.lr.put_info.rsp.diagnostic_msg_if_a_send_addr  Diagnostic Message Interface A Send Address
        IPv6 address
    ff.lr.put_info.rsp.diagnostic_msg_if_b_recv_addr  Diagnostic Message Interface B Receive Address
        IPv6 address
    ff.lr.put_info.rsp.diagnostic_msg_if_b_send_addr  Diagnostic Message Interface B Send Address
        IPv6 address
    ff.lr.put_info.rsp.diagnostic_msg_intvl  Diagnostic Message Interval
        Unsigned 32-bit integer
    ff.lr.put_info.rsp.lr_attrs_ver  LAN Redundancy Attributes Version
        Unsigned 32-bit integer
    ff.lr.put_info.rsp.max_msg_num_diff  Max Message Number Difference
        Unsigned 8-bit integer
    ff.lr.put_info.rsp.reserved  Reserved
        Unsigned 16-bit integer
    ff.sm  SM Service
        Boolean
    ff.sm.clear_addr  SM Clear Address
        Boolean
    ff.sm.clear_addr.err  SM Clear Address Error
        Boolean
    ff.sm.clear_addr.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.sm.clear_addr.err.additional_desc  Additional Description
        String
    ff.sm.clear_addr.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.sm.clear_addr.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.sm.clear_addr.req  SM Clear Address Request
        Boolean
    ff.sm.clear_addr.req.dev_id  Device ID
        String
    ff.sm.clear_addr.req.interface_to_clear  Interface to Clear
        Unsigned 8-bit integer
    ff.sm.clear_addr.req.pd_tag  PD Tag
        String
    ff.sm.clear_addr.rsp  SM Clear Address Response
        Boolean
    ff.sm.clear_assign_info  SM Clear Assignment Info
        Boolean
    ff.sm.clear_assign_info.err  SM Clear Assignment Info Error
        Boolean
    ff.sm.clear_assign_info.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.sm.clear_assign_info.err.additional_desc  Additional Description
        String
    ff.sm.clear_assign_info.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.sm.clear_assign_info.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.sm.clear_assign_info.req  SM Clear Assignment Info Request
        Boolean
    ff.sm.clear_assign_info.req.dev_id  Device ID
        String
    ff.sm.clear_assign_info.req.pd_tag  PD Tag
        String
    ff.sm.clear_assign_info.rsp  SM Clear Assignment Info Response
        Boolean
    ff.sm.dev_annunc  SM Device Annunciation
        Boolean
    ff.sm.dev_annunc.req  SM Device Annunciation Request
        Boolean
    ff.sm.dev_annunc.req.annunc_ver_num  Annunciation Version Number
        Unsigned 32-bit integer
    ff.sm.dev_annunc.req.dev_id  Device ID
        String
    ff.sm.dev_annunc.req.dev_idx  Device Index
        Unsigned 16-bit integer
    ff.sm.dev_annunc.req.h1_live_list.h1_link_id  H1 Link Id
        Unsigned 16-bit integer
    ff.sm.dev_annunc.req.h1_live_list.reserved  Reserved
        Unsigned 8-bit integer
    ff.sm.dev_annunc.req.h1_live_list.ver_num  Version Number
        Unsigned 8-bit integer
    ff.sm.dev_annunc.req.h1_node_addr_ver_num.h1_node_addr  H1 Node Address
        Unsigned 8-bit integer
    ff.sm.dev_annunc.req.h1_node_addr_ver_num.ver_num  Version Number
        Unsigned 8-bit integer
    ff.sm.dev_annunc.req.hse_dev_ver_num  HSE Device Version Number
        Unsigned 32-bit integer
    ff.sm.dev_annunc.req.hse_repeat_time  HSE Repeat Time
        Unsigned 32-bit integer
    ff.sm.dev_annunc.req.lr_port  LAN Redundancy Port
        Unsigned 16-bit integer
    ff.sm.dev_annunc.req.max_dev_idx  Max Device Index
        Unsigned 16-bit integer
    ff.sm.dev_annunc.req.num_of_entries  Number of Entries in Version Number List
        Unsigned 32-bit integer
    ff.sm.dev_annunc.req.operational_ip_addr  Operational IP Address
        IPv6 address
    ff.sm.dev_annunc.req.pd_tag  PD Tag
        String
    ff.sm.dev_annunc.req.reserved  Reserved
        Unsigned 16-bit integer
    ff.sm.find_tag_query  SM Find Tag Query
        Boolean
    ff.sm.find_tag_query.req  SM Find Tag Query Request
        Boolean
    ff.sm.find_tag_query.req.idx  Element Id or VFD Reference or Device Index
        Unsigned 32-bit integer
    ff.sm.find_tag_query.req.query_type  Query Type
        Unsigned 8-bit integer
    ff.sm.find_tag_query.req.tag  PD Tag or Function Block Tag
        String
    ff.sm.find_tag_query.req.vfd_tag  VFD Tag
        String
    ff.sm.find_tag_reply  SM Find Tag Reply
        Boolean
    ff.sm.find_tag_reply.req  SM Find Tag Reply Request
        Boolean
    ff.sm.find_tag_reply.req.dev_id  Queried Object Device ID
        String
    ff.sm.find_tag_reply.req.fda_addr_link_id  Queried Object FDA Address Link Id
        Unsigned 16-bit integer
    ff.sm.find_tag_reply.req.fda_addr_selector.fda_addr_selector  FDA Address Selector
        Unsigned 16-bit integer
    ff.sm.find_tag_reply.req.h1_node_addr  Queried Object H1 Node Address
        Unsigned 8-bit integer
    ff.sm.find_tag_reply.req.ip_addr  Queried Object IP Address
        IPv6 address
    ff.sm.find_tag_reply.req.num_of_fda_addr_selectors  Number Of FDA Address Selectors
        Unsigned 8-bit integer
    ff.sm.find_tag_reply.req.od_idx  Queried Object OD Index
        Unsigned 32-bit integer
    ff.sm.find_tag_reply.req.od_ver  Queried Object OD Version
        Unsigned 32-bit integer
    ff.sm.find_tag_reply.req.pd_tag  Queried Object PD Tag
        String
    ff.sm.find_tag_reply.req.query_type  Query Type
        Unsigned 8-bit integer
    ff.sm.find_tag_reply.req.reserved  Reserved
        Unsigned 8-bit integer
    ff.sm.find_tag_reply.req.vfd_ref  Queried Object VFD Reference
        Unsigned 32-bit integer
    ff.sm.id  SM Identify
        Boolean
    ff.sm.id.err  SM Identify Error
        Boolean
    ff.sm.id.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.sm.id.err.additional_desc  Additional Description
        String
    ff.sm.id.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.sm.id.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.sm.id.req  SM Identify Request
        Boolean
    ff.sm.id.rsp  SM Identify Response
        Boolean
    ff.sm.id.rsp.annunc_ver_num  Annunciation Version Number
        Unsigned 32-bit integer
    ff.sm.id.rsp.dev_id  Device ID
        String
    ff.sm.id.rsp.dev_idx  Device Index
        Unsigned 16-bit integer
    ff.sm.id.rsp.h1_live_list.h1_link_id  H1 Link Id
        Unsigned 16-bit integer
    ff.sm.id.rsp.h1_live_list.reserved  Reserved
        Unsigned 8-bit integer
    ff.sm.id.rsp.h1_live_list.ver_num  Version Number
        Unsigned 8-bit integer
    ff.sm.id.rsp.h1_node_addr_ver_num.h1_node_addr  H1 Node Address
        Unsigned 8-bit integer
    ff.sm.id.rsp.h1_node_addr_ver_num.ver_num  Version Number
        Unsigned 8-bit integer
    ff.sm.id.rsp.hse_dev_ver_num  HSE Device Version Number
        Unsigned 32-bit integer
    ff.sm.id.rsp.hse_repeat_time  HSE Repeat Time
        Unsigned 32-bit integer
    ff.sm.id.rsp.lr_port  LAN Redundancy Port
        Unsigned 16-bit integer
    ff.sm.id.rsp.max_dev_idx  Max Device Index
        Unsigned 16-bit integer
    ff.sm.id.rsp.num_of_entries  Number of Entries in Version Number List
        Unsigned 32-bit integer
    ff.sm.id.rsp.operational_ip_addr  Operational IP Address
        IPv6 address
    ff.sm.id.rsp.pd_tag  PD Tag
        String
    ff.sm.id.rsp.reserved  Reserved
        Unsigned 16-bit integer
    ff.sm.set_assign_info  SM Set Assignment Info
        Boolean
    ff.sm.set_assign_info.err  SM Set Assignment Info Error
        Boolean
    ff.sm.set_assign_info.err.additional_code  Additional Code
        Signed 16-bit integer
    ff.sm.set_assign_info.err.additional_desc  Additional Description
        String
    ff.sm.set_assign_info.err.err_class  Error Class
        Unsigned 8-bit integer
    ff.sm.set_assign_info.err.err_code  Error Code
        Unsigned 8-bit integer
    ff.sm.set_assign_info.req  SM Set Assignment Info Request
        Boolean
    ff.sm.set_assign_info.req.dev_id  Device ID
        String
    ff.sm.set_assign_info.req.dev_idx  Device Index
        Unsigned 16-bit integer
    ff.sm.set_assign_info.req.h1_new_addr  H1 New Address
        Unsigned 8-bit integer
    ff.sm.set_assign_info.req.hse_repeat_time  HSE Repeat Time
        Unsigned 32-bit integer
    ff.sm.set_assign_info.req.lr_port  LAN Redundancy Port
        Unsigned 16-bit integer
    ff.sm.set_assign_info.req.max_dev_idx  Max Device Index
        Unsigned 16-bit integer
    ff.sm.set_assign_info.req.operational_ip_addr  Operational IP Address
        IPv6 address
    ff.sm.set_assign_info.req.pd_tag  PD Tag
        String
    ff.sm.set_assign_info.rsp  SM Set Assignment Info Response
        Boolean
    ff.sm.set_assign_info.rsp.hse_repeat_time  HSE Repeat Time
        Unsigned 32-bit integer
    ff.sm.set_assign_info.rsp.max_dev_idx  Max Device Index
        Unsigned 16-bit integer
    ff.sm.set_assign_info.rsp.reserved  Reserved
        Unsigned 16-bit integer
    ff.trailer  Message Trailer
        Boolean
    ff.trailer.extended_control_field  Extended Control Field
        Unsigned 32-bit integer
    ff.trailer.invoke_id  Invoke Id
        Unsigned 32-bit integer
    ff.trailer.msg_num  Message Number
        Unsigned 32-bit integer
    ff.trailer.time_stamp  Time Stamp
        Unsigned 64-bit integer

FP (fp)

    fp.activation-cfn  Activation CFN
        Unsigned 8-bit integer
        Activation Connection Frame Number
    fp.angle-of-arrival  Angle of Arrival
        Unsigned 16-bit integer
    fp.cell-portion-id  Cell Portion ID
        Unsigned 8-bit integer
    fp.cfn  CFN
        Unsigned 8-bit integer
        Connection Frame Number
    fp.cfn-control  CFN control
        Unsigned 8-bit integer
        Connection Frame Number Control
    fp.channel-type  Channel Type
        Unsigned 8-bit integer
    fp.channel-with-zero-tbs  No TBs for channel
        Unsigned 32-bit integer
        Channel with 0 TBs
    fp.cmch-pi  CmCH-PI
        Unsigned 8-bit integer
        Common Transport Channel Priority Indicator
    fp.code-number  Code number
        Unsigned 8-bit integer
    fp.common.control.e-rucch-flag  E-RUCCH Flag
        Unsigned 8-bit integer
    fp.common.control.frame-type  Control Frame Type
        Unsigned 8-bit integer
        Common Control Frame Type
    fp.common.control.rx-timing-deviation  Rx Timing Deviation
        Unsigned 8-bit integer
        Common Rx Timing Deviation
    fp.congestion-status  Congestion Status
        Unsigned 8-bit integer
    fp.cpch.tfi  TFI
        Unsigned 8-bit integer
        CPCH Transport Format Indicator
    fp.crci  CRCI
        Unsigned 8-bit integer
        CRC correctness indicator
    fp.crcis  CRCIs
        Byte array
        CRC Indicators for uplink TBs
    fp.data  Data
        Byte array
    fp.dch.control.frame-type  Control Frame Type
        Unsigned 8-bit integer
        DCH Control Frame Type
    fp.dch.control.rx-timing-deviation  Rx Timing Deviation
        Unsigned 8-bit integer
        DCH Rx Timing Deviation
    fp.dch.quality-estimate  Quality Estimate
        Unsigned 8-bit integer
    fp.direction  Direction
        Unsigned 8-bit integer
        Link direction
    fp.division  Division
        Unsigned 8-bit integer
        Radio division type
    fp.dpc-mode  DPC Mode
        Unsigned 8-bit integer
        DPC Mode to be applied in the uplink
    fp.drt  DRT
        Unsigned 16-bit integer
    fp.drt-indicator  DRT Indicator
        Unsigned 8-bit integer
    fp.edch-data-padding  Padding
        Unsigned 8-bit integer
        E-DCH padding before PDU
    fp.edch-tsn  TSN
        Unsigned 8-bit integer
        E-DCH Transmission Sequence Number
    fp.edch.ddi  DDI
        Unsigned 8-bit integer
        E-DCH Data Description Indicator
    fp.edch.fsn  FSN
        Unsigned 8-bit integer
        E-DCH Frame Sequence Number
    fp.edch.header-crc  E-DCH Header CRC
        Unsigned 16-bit integer
    fp.edch.mac-es-pdu  MAC-es PDU
        No value
    fp.edch.no-of-harq-retransmissions  No of HARQ Retransmissions
        Unsigned 8-bit integer
        E-DCH Number of HARQ retransmissions
    fp.edch.no-of-subframes  No of subframes
        Unsigned 8-bit integer
        E-DCH Number of subframes
    fp.edch.number-of-mac-d-pdus  Number of Mac-d PDUs
        Unsigned 8-bit integer
    fp.edch.number-of-mac-es-pdus  Number of Mac-es PDUs
        Unsigned 8-bit integer
    fp.edch.subframe  Subframe
        String
        EDCH Subframe
    fp.edch.subframe-header  Subframe header
        String
        EDCH Subframe header
    fp.edch.subframe-number  Subframe number
        Unsigned 8-bit integer
        E-DCH Subframe number
    fp.erucch-present  E-RUCCH Present
        Unsigned 8-bit integer
    fp.ext-propagation-delay  Ext Propagation Delay
        Unsigned 16-bit integer
    fp.ext-received-sync-ul-timing-deviation  Ext Received SYNC UL Timing Deviation
        Unsigned 16-bit integer
    fp.extended-bits  Extended Bits
        Unsigned 8-bit integer
    fp.extended-bits-present  Extended Bits Present
        Unsigned 8-bit integer
    fp.fach-indicator  FACH Indicator
        Unsigned 8-bit integer
    fp.fach.tfi  TFI
        Unsigned 8-bit integer
        FACH Transport Format Indicator
    fp.flush  Flush
        Unsigned 8-bit integer
        Whether all PDUs for this priority queue should be removed
    fp.frame-seq-nr  Frame Seq Nr
        Unsigned 8-bit integer
        Frame Sequence Number
    fp.fsn-drt-reset  FSN-DRT reset
        Unsigned 8-bit integer
        FSN/DRT Reset Flag
    fp.ft  Frame Type
        Unsigned 8-bit integer
    fp.header-crc  Header CRC
        Unsigned 8-bit integer
    fp.hrnti  HRNTI
        Unsigned 16-bit integer
    fp.hsdsch-calculated-rate  Calculated rate allocation (bps)
        Unsigned 32-bit integer
        Calculated rate RNC is allowed to send in bps
    fp.hsdsch-credits  HS-DSCH Credits
        Unsigned 16-bit integer
    fp.hsdsch-data-padding  Padding
        Unsigned 8-bit integer
        HS-DSCH Repetition Period in milliseconds
    fp.hsdsch-interval  HS-DSCH Interval in milliseconds
        Unsigned 8-bit integer
    fp.hsdsch-repetition-period  HS-DSCH Repetition Period
        Unsigned 8-bit integer
        HS-DSCH Repetition Period in milliseconds
    fp.hsdsch-unlimited-rate  Unlimited rate
        No value
        No restriction on rate at which date may be sent
    fp.hsdsch.drt  DRT
        Unsigned 8-bit integer
        Delay Reference Time
    fp.hsdsch.entity  HS-DSCH Entity
        Unsigned 8-bit integer
        Type of MAC entity for this HS-DSCH channel
    fp.hsdsch.mac-d-pdu-len  MAC-d PDU Length
        Unsigned 16-bit integer
        MAC-d PDU Length in bits
    fp.hsdsch.max-macd-pdu-len  Max MAC-d PDU Length
        Unsigned 16-bit integer
        Maximum MAC-d PDU Length in bits
    fp.hsdsch.max-macdc-pdu-len  Max MAC-d/c PDU Length
        Unsigned 16-bit integer
        Maximum MAC-d/c PDU Length in bits
    fp.hsdsch.new-ie-flag  DRT IE present
        Unsigned 8-bit integer
    fp.hsdsch.new-ie-flags  New IEs flags
        String
    fp.hsdsch.new-ie-flags-byte  Another new IE flags byte
        Unsigned 8-bit integer
        Another new IE flagsbyte
    fp.hsdsch.num-of-pdu  Number of PDUs
        Unsigned 8-bit integer
        Number of PDUs in the payload
    fp.hsdsch.pdu-block  PDU block
        String
        HS-DSCH type 2 PDU block data
    fp.hsdsch.pdu-block-header  PDU block header
        String
        HS-DSCH type 2 PDU block header
    fp.lchid  Logical Channel ID
        Unsigned 8-bit integer
    fp.mac-d-pdu  MAC-d PDU
        Byte array
    fp.max-ue-tx-pow  MAX_UE_TX_POW
        Signed 8-bit integer
        Max UE TX POW (dBm)
    fp.mc-info  MC info
        Unsigned 8-bit integer
    fp.multiple-rl-sets-indicator  Multiple RL sets indicator
        Unsigned 8-bit integer
    fp.no-pdus-in-block  PDUs in block
        Unsigned 8-bit integer
        Number of PDUs in block
    fp.payload-crc  Payload CRC
        Unsigned 16-bit integer
    fp.pch.cfn  CFN (PCH)
        Unsigned 16-bit integer
        PCH Connection Frame Number
    fp.pch.pi  Paging Indication
        Unsigned 8-bit integer
        Indicates if the PI Bitmap is present
    fp.pch.pi-bitmap  Paging Indications bitmap
        No value
        Paging Indication bitmap
    fp.pch.tfi  TFI
        Unsigned 8-bit integer
        PCH Transport Format Indicator
    fp.pch.toa  ToA (PCH)
        Signed 24-bit integer
        PCH Time of Arrival
    fp.pdsch-set-id  PDSCH Set Id
        Unsigned 8-bit integer
        A pointer to the PDSCH Set which shall be used to transmit
    fp.pdu-length-in-block  PDU length in block
        Unsigned 8-bit integer
        Length of each PDU in this block in bytes
    fp.pdu_blocks  PDU Blocks
        Unsigned 8-bit integer
        Total number of PDU blocks
    fp.power-offset  Power offset
        Single-precision floating point
        Power offset (in dB)
    fp.propagation-delay  Propagation Delay
        Unsigned 8-bit integer
    fp.pusch-set-id  PUSCH Set Id
        Unsigned 8-bit integer
        Identifies PUSCH Set from those configured in NodeB
    fp.rach-measurement-result  RACH Measurement Result
        Unsigned 16-bit integer
    fp.rach.angle-of-arrival-present  Angle of arrival present
        Unsigned 8-bit integer
    fp.rach.cell-portion-id-present  Cell portion ID present
        Unsigned 8-bit integer
    fp.rach.ext-propagation-delay-present  Ext Propagation Delay Present
        Unsigned 8-bit integer
    fp.rach.ext-rx-sync-ul-timing-deviation-present  Ext Received Sync UL Timing Deviation present
        Unsigned 8-bit integer
    fp.rach.ext-rx-timing-deviation-present  Ext Rx Timing Deviation present
        Unsigned 8-bit integer
    fp.rach.new-ie-flag  New IE present
        Unsigned 8-bit integer
    fp.rach.new-ie-flags  New IEs flags
        String
    fp.radio-interface-param.cfn-valid  CFN valid
        Unsigned 16-bit integer
    fp.radio-interface-param.dpc-mode-valid  DPC mode valid
        Unsigned 16-bit integer
    fp.radio-interface-param.max-ue-tx-pow-valid  MAX_UE_TX_POW valid
        Unsigned 16-bit integer
        MAX UE TX POW valid
    fp.radio-interface-param.tpc-po-valid  TPC PO valid
        Unsigned 16-bit integer
    fp.radio-interface_param.rl-sets-indicator-valid  RL sets indicator valid
        Unsigned 16-bit integer
    fp.rx-sync-ul-timing-deviation  Received SYNC UL Timing Deviation
        Unsigned 8-bit integer
    fp.spare-extension  Spare Extension
        No value
    fp.spreading-factor  Spreading factor
        Unsigned 8-bit integer
    fp.t1  T1
        Unsigned 24-bit integer
        RNC frame number indicating time it sends frame
    fp.t2  T2
        Unsigned 24-bit integer
        NodeB frame number indicating time it received DL Sync
    fp.t3  T3
        Unsigned 24-bit integer
        NodeB frame number indicating time it sends frame
    fp.tb  TB
        Byte array
        Transport Block
    fp.tfi  TFI
        Unsigned 8-bit integer
        Transport Format Indicator
    fp.timing-advance  Timing advance
        Unsigned 8-bit integer
        Timing advance in chips
    fp.tpc-po  TPC PO
        Unsigned 8-bit integer
    fp.transmit-power-level  Transmit Power Level
        Single-precision floating point
        Transmit Power Level (dB)
    fp.ul-sir-target  UL_SIR_TARGET
        Single-precision floating point
        Value (in dB) of the SIR target to be used by the UL inner loop power control
    fp.usch.tfi  TFI
        Unsigned 8-bit integer
        USCH Transport Format Indicator
    fp.user-buffer-size  User buffer size
        Unsigned 16-bit integer
        User buffer size in octets

FP Hint (fp_hint)

    fp_hint.channel_type  Channel Type
        Unsigned 8-bit integer
    fp_hint.dchid  DCH ID
        Unsigned 8-bit integer
    fp_hint.ddi  DDI Entry
        No value
    fp_hint.ddi.logical  Logical Channel ID
        Unsigned 8-bit integer
    fp_hint.ddi.size  Size
        Unsigned 16-bit integer
    fp_hint.ddi.value  DDI
        Unsigned 8-bit integer
    fp_hint.frame_type  Frame Type
        Unsigned 8-bit integer
    fp_hint.macdflowid  MACd Flow ID
        Unsigned 8-bit integer
    fp_hint.num_chan  Number of Channels
        Unsigned 8-bit integer
    fp_hint.rb  Radio Bearer
        No value
    fp_hint.rb.ciphered  Ciphered
        Boolean
        Ciphered flag
    fp_hint.rb.content  Content
        Unsigned 8-bit integer
    fp_hint.rb.ctmux  C/T Mux
        Boolean
        C/T Mux field
    fp_hint.rb.deciphered  Deciphered
        Boolean
        Deciphered flag
    fp_hint.rb.rbid  Radio Bearer ID
        Unsigned 16-bit integer
    fp_hint.rb.rlc_mode  RLC Mode
        Unsigned 8-bit integer
    fp_hint.rb.urnti  U-RNTI
        Unsigned 32-bit integer
    fp_hint.tf  Traffic Format
        No value
    fp_hint.tf.n  N
        Unsigned 16-bit integer
    fp_hintf.tf.size  Size
        Unsigned 32-bit integer

FTP Data (ftp-data)

FTServer Operations (ftserver)

    ftserver.opnum  Operation
        Unsigned 16-bit integer

Far End Failure Detection (fefd)

    fefd.checksum  Checksum
        Unsigned 16-bit integer
    fefd.flags  Flags
        Unsigned 8-bit integer
    fefd.flags.rsy  ReSynch
        Boolean
    fefd.flags.rt  Recommended timeout
        Boolean
    fefd.opcode  Opcode
        Unsigned 8-bit integer
    fefd.tlv.len  Length
        Unsigned 16-bit integer
    fefd.tlv.type  Type
        Unsigned 16-bit integer
    fefd.version  Version
        Unsigned 8-bit integer

Fiber Distributed Data Interface (fddi)

    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

Fibre Channel (fc)

    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 Explanation
        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
    fc.d_id  Dest Addr
        String
        Destination Address
    fc.df_ctl  DF_CTL
        Unsigned 8-bit integer
    fc.exchange_first_frame  Exchange First In
        Frame number
        The first frame of this exchange is in this frame
    fc.exchange_last_frame  Exchange Last In
        Frame number
        The last frame of this exchange is in this frame
    fc.f_ctl  F_CTL
        Unsigned 24-bit integer
    fc.fctl.abts_ack  AA
        Unsigned 24-bit integer
        ABTS ACK values
    fc.fctl.abts_not_ack  AnA
        Unsigned 24-bit integer
        ABTS not ACK vals
    fc.fctl.ack_0_1  A01
        Unsigned 24-bit integer
        Ack 0/1 value
    fc.fctl.exchange_first  ExgFst
        Boolean
        First Exchange?
    fc.fctl.exchange_last  ExgLst
        Boolean
        Last Exchange?
    fc.fctl.exchange_responder  ExgRpd
        Boolean
        Exchange Responder?
    fc.fctl.last_data_frame  LDF
        Unsigned 24-bit integer
        Last Data Frame?
    fc.fctl.priority  Pri
        Boolean
        Priority
    fc.fctl.rel_offset  RelOff
        Boolean
        rel offset
    fc.fctl.rexmitted_seq  RetSeq
        Boolean
        Retransmitted Sequence
    fc.fctl.seq_last  SeqLst
        Boolean
        Last Sequence?
    fc.fctl.seq_recipient  SeqRec
        Boolean
        Seq Recipient?
    fc.fctl.transfer_seq_initiative  TSI
        Boolean
        Transfer Seq Initiative
    fc.ftype  Frame type
        Unsigned 8-bit integer
        Derived Type
    fc.id  Addr
        String
        Source or Destination Address
    fc.nethdr.da  Network DA
        String
    fc.nethdr.sa  Network SA
        String
    fc.ox_id  OX_ID
        Unsigned 16-bit integer
        Originator ID
    fc.parameter  Parameter
        Unsigned 32-bit integer
    fc.r_ctl  R_CTL
        Unsigned 8-bit integer
    fc.reassembled  Reassembled Frame
        Boolean
    fc.relative_offset  Relative Offset
        Unsigned 32-bit integer
        Relative offset of data
    fc.rx_id  RX_ID
        Unsigned 16-bit integer
        Receiver ID
    fc.s_id  Src Addr
        String
        Source Address
    fc.seq_cnt  SEQ_CNT
        Unsigned 16-bit integer
        Sequence Count
    fc.seq_id  SEQ_ID
        Unsigned 8-bit integer
        Sequence ID
    fc.time  Time from Exchange First
        Time duration
        Time since the first frame of the Exchange
    fc.type  Type
        Unsigned 8-bit integer
    fc.vft  VFT Header
        Unsigned 16-bit integer
    fc.vft.hop_ct  HopCT
        Unsigned 8-bit integer
        Hop Count
    fc.vft.rctl  R_CTL
        Unsigned 8-bit integer
    fc.vft.type  Type
        Unsigned 8-bit integer
        Type of tagged frame
    fc.vft.ver  Version
        Unsigned 8-bit integer
        Version of VFT header
    fc.vft.vf_id  VF_ID
        Unsigned 16-bit integer
        Virtual Fabric ID

Fibre Channel Common Transport (fcct)

    fcct.ext_authblk  Auth Hash Blk
        Byte array
    fcct.ext_reqnm  Requestor Port Name
        Byte array
    fcct.ext_said  Auth SAID
        Unsigned 32-bit integer
    fcct.ext_tid  Transaction ID
        Unsigned 32-bit integer
    fcct.ext_tstamp  Timestamp
        Byte array
    fcct.gssubtype  GS Subtype
        Unsigned 8-bit integer
    fcct.gstype  GS Type
        Unsigned 8-bit integer
    fcct.in_id  IN_ID
        String
    fcct.options  Options
        Unsigned 8-bit integer
    fcct.revision  Revision
        Unsigned 8-bit integer
    fcct.server  Server
        Unsigned 8-bit integer
        Derived from GS Type & Subtype fields

Fibre Channel Delimiters (fcsof)

    fc.crc  CRC
        Unsigned 32-bit integer
    fc.eof  EOF
        Unsigned 32-bit integer
    fc.sof  SOF
        Unsigned 32-bit integer

Fibre Channel Fabric Zone Server (fcfzs)

    fcfzs.gest.vendor  Vendor Specific State
        Unsigned 32-bit integer
    fcfzs.gzc.flags  Capabilities
        Unsigned 8-bit integer
    fcfzs.gzc.flags.hard_zones  Hard Zones
        Boolean
    fcfzs.gzc.flags.soft_zones  Soft Zones
        Boolean
    fcfzs.gzc.flags.zoneset_db  ZoneSet Database
        Boolean
    fcfzs.gzc.vendor  Vendor Specific Flags
        Unsigned 32-bit integer
    fcfzs.hard_zone_set.enforced  Hard Zone Set
        Boolean
    fcfzs.maxres_size  Maximum/Residual Size
        Unsigned 16-bit integer
    fcfzs.opcode  Opcode
        Unsigned 16-bit integer
    fcfzs.reason  Reason Code
        Unsigned 8-bit integer
    fcfzs.rjtdetail  Reason Code Explanation
        Unsigned 8-bit integer
    fcfzs.rjtvendor  Vendor Specific Reason
        Unsigned 8-bit integer
    fcfzs.soft_zone_set.enforced  Soft Zone Set
        Boolean
    fcfzs.zone.lun  LUN
        Byte array
    fcfzs.zone.mbrid  Zone Member Identifier
        String
    fcfzs.zone.name  Zone Name
        String
    fcfzs.zone.namelen  Zone Name Length
        Unsigned 8-bit integer
    fcfzs.zone.numattrs  Number of Zone Attribute Entries
        Unsigned 32-bit integer
    fcfzs.zone.nummbrs  Number of Zone Members
        Unsigned 32-bit integer
    fcfzs.zone.state  Zone State
        Unsigned 8-bit integer
    fcfzs.zonembr.idlen  Zone Member Identifier Length
        Unsigned 8-bit integer
    fcfzs.zonembr.idtype  Zone Member Identifier Type
        Unsigned 8-bit integer
    fcfzs.zonembr.numattrs  Number of Zone Member Attribute Entries
        Unsigned 32-bit integer
    fcfzs.zoneset.name  Zone Set Name
        String
    fcfzs.zoneset.namelen  Zone Set Name Length
        Unsigned 8-bit integer
    fcfzs.zoneset.numattrs  Number of Zone Set Attribute Entries
        Unsigned 32-bit integer
    fcfzs.zoneset.numzones  Number of Zones
        Unsigned 32-bit integer

Fibre Channel Name Server (fcdns)

    fcdns.cos.1  1
        Boolean
    fcdns.cos.2  2
        Boolean
    fcdns.cos.3  3
        Boolean
    fcdns.cos.4  4
        Boolean
    fcdns.cos.6  6
        Boolean
    fcdns.cos.f  F
        Boolean
    fcdns.entry.numfc4desc  Number of FC4 Descriptors Registered
        Unsigned 8-bit integer
    fcdns.entry.objfmt  Name Entry Object Format
        Unsigned 8-bit integer
    fcdns.fc4features  FC-4 Feature Bits
        Unsigned 8-bit integer
    fcdns.fc4features.i  I
        Boolean
    fcdns.fc4features.t  T
        Boolean
    fcdns.fc4types.fcp  FCP
        Boolean
    fcdns.fc4types.gs3  GS3
        Boolean
    fcdns.fc4types.ip  IP
        Boolean
    fcdns.fc4types.llc_snap  LLC/SNAP
        Boolean
    fcdns.fc4types.snmp  SNMP
        Boolean
    fcdns.fc4types.swils  SW_ILS
        Boolean
    fcdns.fc4types.vi  VI
        Boolean
    fcdns.gssubtype  GS_Subtype
        Unsigned 8-bit integer
    fcdns.maxres_size  Maximum/Residual Size
        Unsigned 16-bit integer
    fcdns.opcode  Opcode
        Unsigned 16-bit integer
    fcdns.portip  Port IP Address
        IPv4 address
    fcdns.reply.cos  Class of Service Supported
        Unsigned 32-bit integer
    fcdns.req.areaid  Area ID Scope
        Unsigned 8-bit integer
    fcdns.req.class  Requested Class of Service
        Unsigned 32-bit integer
    fcdns.req.domainid  Domain ID Scope
        Unsigned 8-bit integer
    fcdns.req.fc4desc  FC-4 Descriptor
        String
    fcdns.req.fc4desclen  FC-4 Descriptor Length
        Unsigned 8-bit integer
    fcdns.req.fc4type  FC-4 Type
        Unsigned 8-bit integer
    fcdns.req.fc4types  FC-4 Types Supported
        No value
    fcdns.req.ip  IP Address
        IPv6 address
    fcdns.req.nname  Node Name
        String
    fcdns.req.portid  Port Identifier
        String
    fcdns.req.portname  Port Name
        String
    fcdns.req.porttype  Port Type
        Unsigned 8-bit integer
    fcdns.req.sname  Symbolic Port Name
        String
    fcdns.req.snamelen  Symbolic Name Length
        Unsigned 8-bit integer
    fcdns.req.spname  Symbolic Port Name
        String
    fcdns.req.spnamelen  Symbolic Port Name Length
        Unsigned 8-bit integer
    fcdns.rply.fc4desc  FC-4 Descriptor
        Byte array
    fcdns.rply.fc4desclen  FC-4 Descriptor Length
        Unsigned 8-bit integer
    fcdns.rply.fc4type  FC-4 Descriptor Type
        Unsigned 8-bit integer
    fcdns.rply.fpname  Fabric Port Name
        String
    fcdns.rply.hrdaddr  Hard Address
        String
    fcdns.rply.ipa  Initial Process Associator
        Byte array
    fcdns.rply.ipnode  Node IP Address
        IPv6 address
    fcdns.rply.ipport  Port IP Address
        IPv6 address
    fcdns.rply.nname  Node Name
        String
    fcdns.rply.ownerid  Owner Id
        String
    fcdns.rply.pname  Port Name
        String
    fcdns.rply.portid  Port Identifier
        String
    fcdns.rply.porttype  Port Type
        Unsigned 8-bit integer
    fcdns.rply.reason  Reason Code
        Unsigned 8-bit integer
    fcdns.rply.reasondet  Reason Code Explanantion
        Unsigned 8-bit integer
    fcdns.rply.sname  Symbolic Node Name
        String
    fcdns.rply.snamelen  Symbolic Node Name Length
        Unsigned 8-bit integer
    fcdns.rply.spname  Symbolic Port Name
        String
    fcdns.rply.spnamelen  Symbolic Port Name Length
        Unsigned 8-bit integer
    fcdns.rply.vendor  Vendor Unique Reject Code
        Unsigned 8-bit integer
    fcdns.zone.mbrid  Member Identifier
        String
    fcdns.zone.mbrtype  Zone Member Type
        Unsigned 8-bit integer
    fcdns.zonename  Zone Name
        String

Fibre Channel Protocol for SCSI (fcp)

    fcp.addlcdblen  Additional CDB Length
        Unsigned 8-bit integer
    fcp.bidir_dl  FCP_BIDIRECTIONAL_READ_DL
        Unsigned 32-bit integer
    fcp.bidir_resid  Bidirectional Read Resid
        Unsigned 32-bit integer
    fcp.burstlen  Burst Length
        Unsigned 32-bit integer
    fcp.crn  Command Ref Num
        Unsigned 8-bit integer
    fcp.data_ro  FCP_DATA_RO
        Unsigned 32-bit integer
    fcp.dl  FCP_DL
        Unsigned 32-bit integer
    fcp.els.op  Opcode
        Unsigned 8-bit integer
    fcp.els.srr.ox_id  OX_ID
        Unsigned 16-bit integer
    fcp.els.srr.r_ctl  R_CTL
        Unsigned 8-bit integer
    fcp.els.srr.rx_id  RX_ID
        Unsigned 16-bit integer
    fcp.lun  LUN
        Unsigned 8-bit integer
    fcp.mgmt.flags.abort_task_set  Abort Task Set
        Boolean
    fcp.mgmt.flags.clear_aca  Clear ACA
        Boolean
    fcp.mgmt.flags.clear_task_set  Clear Task Set
        Boolean
    fcp.mgmt.flags.lu_reset  LU Reset
        Boolean
    fcp.mgmt.flags.obsolete  Obsolete
        Boolean
    fcp.mgmt.flags.rsvd  Rsvd
        Boolean
    fcp.mgmt.flags.target_reset  Target Reset
        Boolean
    fcp.multilun  Multi-Level LUN
        Byte array
    fcp.rddata  RDDATA
        Boolean
    fcp.request_in  Request In
        Frame number
        The frame number for the request
    fcp.resid  FCP_RESID
        Unsigned 32-bit integer
    fcp.response_in  Response In
        Frame number
        The frame number of the response
    fcp.rsp.flags.bidi  Bidi Rsp
        Boolean
    fcp.rsp.flags.bidi_rro  Bidi Read Resid Over
        Boolean
    fcp.rsp.flags.bidi_rru  Bidi Read Resid Under
        Boolean
    fcp.rsp.flags.conf_req  Conf Req
        Boolean
    fcp.rsp.flags.res_vld  RES Vld
        Boolean
    fcp.rsp.flags.resid_over  Resid Over
        Boolean
    fcp.rsp.flags.resid_under  Resid Under
        Boolean
    fcp.rsp.flags.sns_vld  SNS Vld
        Boolean
    fcp.rsp.retry_delay_timer  Retry Delay Timer
        Unsigned 16-bit integer
    fcp.rspcode  RSP_CODE
        Unsigned 8-bit integer
    fcp.rspflags  FCP_RSP Flags
        Unsigned 8-bit integer
    fcp.rsplen  FCP_RSP_LEN
        Unsigned 32-bit integer
    fcp.snslen  FCP_SNS_LEN
        Unsigned 32-bit integer
    fcp.status  SCSI Status
        Unsigned 8-bit integer
    fcp.taskattr  Task Attribute
        Unsigned 8-bit integer
    fcp.taskmgmt  Task Management Flags
        Unsigned 8-bit integer
    fcp.time  Time from FCP_CMND
        Time duration
        Time since the FCP_CMND frame
    fcp.type  Field to branch off to SCSI
        Unsigned 8-bit integer
    fcp.wrdata  WRDATA
        Boolean

Fibre Channel SW_ILS (swils)

    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  Compatibility Param 1
        Unsigned 32-bit integer
    swils.elp.compat2  Compatibility Param 2
        Unsigned 32-bit integer
    swils.elp.compat3  Compatibility Param 3
        Unsigned 32-bit integer
    swils.elp.compat4  Compatibility Param 4
        Unsigned 32-bit integer
    swils.elp.edtov  E_D_TOV
        Unsigned 32-bit integer
    swils.elp.fcmode  ISL Flow Ctrl Mode
        String
    swils.elp.fcplen  Flow Ctrl Param Len
        Unsigned 16-bit integer
    swils.elp.flag  Flag
        Byte array
    swils.elp.oseq  Class F Max Open Seq
        Unsigned 16-bit integer
    swils.elp.ratov  R_A_TOV
        Unsigned 32-bit integer
    swils.elp.reqepn  Req Eport Name
        String
    swils.elp.reqesn  Req Switch Name
        String
    swils.elp.rev  Revision
        Unsigned 8-bit integer
    swils.esc.protocol  Protocol ID
        Unsigned 16-bit integer
    swils.esc.swvendor  Switch Vendor ID
        String
    swils.esc.vendorid  Vendor ID
        String
    swils.ess.capability.dns.obj0h  Name Server Entry Object 00h Support
        Boolean
    swils.ess.capability.dns.obj1h  Name Server Entry Object 01h Support
        Boolean
    swils.ess.capability.dns.obj2h  Name Server Entry Object 02h Support
        Boolean
    swils.ess.capability.dns.obj3h  Name Server Entry Object 03h Support
        Boolean
    swils.ess.capability.dns.vendor  Vendor Specific Flags
        Unsigned 32-bit integer
    swils.ess.capability.dns.zlacc  GE_PT Zero Length Accepted
        Boolean
    swils.ess.capability.fcs.basic  Basic Configuration Services
        Boolean
    swils.ess.capability.fcs.enhanced  Enhanced Configuration Services
        Boolean
    swils.ess.capability.fcs.platform  Platform Configuration Services
        Boolean
    swils.ess.capability.fcs.topology  Topology Discovery Services
        Boolean
    swils.ess.capability.fctlr.rscn  SW_RSCN Supported
        Boolean
    swils.ess.capability.fctlr.vendor  Vendor Specific Flags
        Unsigned 32-bit integer
    swils.ess.capability.fzs.adcsupp  Active Direct Command Supported
        Boolean
    swils.ess.capability.fzs.defzone  Default Zone Setting
        Boolean
    swils.ess.capability.fzs.ezoneena  Enhanced Zoning Enabled
        Boolean
    swils.ess.capability.fzs.ezonesupp  Enhanced Zoning Supported
        Boolean
    swils.ess.capability.fzs.hardzone  Hard Zoning Supported
        Boolean
    swils.ess.capability.fzs.mr  Merge Control Setting
        Boolean
    swils.ess.capability.fzs.zsdbena  Zoneset Database Enabled
        Boolean
    swils.ess.capability.fzs.zsdbsupp  Zoneset Database Supported
        Boolean
    swils.ess.capability.length  Length
        Unsigned 8-bit integer
    swils.ess.capability.numentries  Number of Entries
        Unsigned 8-bit integer
    swils.ess.capability.service  Service Name
        Unsigned 8-bit integer
    swils.ess.capability.subtype  Subtype
        Unsigned 8-bit integer
    swils.ess.capability.t10id  T10 Vendor ID
        String
    swils.ess.capability.type  Type
        Unsigned 8-bit integer
    swils.ess.capability.vendorobj  Vendor-Specific Info
        Byte array
    swils.ess.leb  Payload Length
        Unsigned 32-bit integer
    swils.ess.listlen  List Length
        Unsigned 8-bit integer
    swils.ess.modelname  Model Name
        String
    swils.ess.numobj  Number of Capability Objects
        Unsigned 16-bit integer
    swils.ess.relcode  Release Code
        String
    swils.ess.revision  Revision
        Unsigned 32-bit integer
    swils.ess.vendorname  Vendor Name
        String
    swils.ess.vendorspecific  Vendor Specific
        String
    swils.fspf.arnum  AR Number
        Unsigned 8-bit integer
    swils.fspf.auth  Authentication
        Byte array
    swils.fspf.authtype  Authentication Type
        Unsigned 8-bit integer
    swils.fspf.cmd  Command:
        Unsigned 8-bit integer
    swils.fspf.origdomid  Originating Domain ID
        Unsigned 8-bit integer
    swils.fspf.ver  Version
        Unsigned 8-bit integer
    swils.hlo.deadint  Dead Interval (secs)
        Unsigned 32-bit integer
    swils.hlo.hloint  Hello Interval (secs)
        Unsigned 32-bit integer
    swils.hlo.options  Options
        Byte array
    swils.hlo.origpidx  Originating Port Idx
        Unsigned 24-bit integer
    swils.hlo.rcvdomid  Recipient Domain ID
        Unsigned 8-bit integer
    swils.ldr.linkcost  Link Cost
        Unsigned 16-bit integer
    swils.ldr.linkid  Link ID
        String
    swils.ldr.linktype  Link Type
        Unsigned 8-bit integer
    swils.ldr.nbr_portidx  Neighbor Port Idx
        Unsigned 24-bit integer
    swils.ldr.out_portidx  Output Port Idx
        Unsigned 24-bit integer
    swils.ls.id  Link State Id
        Unsigned 8-bit integer
    swils.lsr.advdomid  Advertising Domain Id
        Unsigned 8-bit integer
    swils.lsr.incid  LS Incarnation Number
        Unsigned 32-bit integer
    swils.lsr.type  LSR Type
        Unsigned 8-bit integer
    swils.mr.activezonesetname  Active Zoneset Name
        String
    swils.mrra.reply  MRRA Response
        Unsigned 32-bit integer
    swils.mrra.replysize  Maximum Resources Available
        Unsigned 32-bit integer
    swils.mrra.revision  Revision
        Unsigned 32-bit integer
    swils.mrra.size  Merge Request Size
        Unsigned 32-bit integer
    swils.mrra.vendorid  Vendor ID
        String
    swils.mrra.vendorinfo  Vendor-Specific Info
        Byte array
    swils.mrra.waittime  Waiting Period (secs)
        Unsigned 32-bit integer
    swils.opcode  Cmd Code
        Unsigned 8-bit integer
    swils.rdi.len  Payload Len
        Unsigned 16-bit integer
    swils.rdi.reqsn  Req Switch Name
        String
    swils.rjt.reason  Reason Code
        Unsigned 8-bit integer
    swils.rjt.reasonexpl  Reason Code Explanantion
        Unsigned 8-bit integer
    swils.rjt.vendor  Vendor Unique Error Code
        Unsigned 8-bit integer
    swils.rscn.addrfmt  Address Format
        Unsigned 8-bit integer
    swils.rscn.affectedport  Affected Port ID
        String
    swils.rscn.detectfn  Detection Function
        Unsigned 32-bit integer
    swils.rscn.evtype  Event Type
        Unsigned 8-bit integer
    swils.rscn.nwwn  Node WWN
        String
    swils.rscn.portid  Port Id
        String
    swils.rscn.portstate  Port State
        Unsigned 8-bit integer
    swils.rscn.pwwn  Port WWN
        String
    swils.sfc.opcode  Operation Request
        Unsigned 8-bit integer
    swils.sfc.zonename  Zone Set Name
        String
    swils.zone.lun  LUN
        Byte array
    swils.zone.mbrid  Member Identifier
        String
    swils.zone.mbrtype  Zone Member Type
        Unsigned 8-bit integer
    swils.zone.protocol  Zone Protocol
        Unsigned 8-bit integer
    swils.zone.reason  Zone Command Reason Code
        Unsigned 8-bit integer
        Applies to MR, ACA, RCA, SFC, UFC
    swils.zone.status  Zone Command Status
        Unsigned 8-bit integer
        Applies to MR, ACA, RCA, SFC, UFC
    swils.zone.zoneobjname  Zone Object Name
        String
    swils.zone.zoneobjtype  Zone Object Type
        Unsigned 8-bit integer

Fibre Channel Security Protocol (fcsp)

    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

Fibre Channel Single Byte Command (sb3)

    sbccs.ccw  CCW Number
        Unsigned 16-bit integer
    sbccs.ccwcmd  CCW Command
        Unsigned 8-bit integer
    sbccs.ccwcnt  CCW Count
        Unsigned 16-bit integer
    sbccs.ccwflags  CCW Control Flags
        Unsigned 8-bit integer
    sbccs.ccwflags.cc  CC
        Boolean
    sbccs.ccwflags.cd  CD
        Boolean
    sbccs.ccwflags.crr  CRR
        Boolean
    sbccs.ccwflags.sli  SLI
        Boolean
    sbccs.chid  Channel Image ID
        Unsigned 8-bit integer
    sbccs.cmdflags  Command Flags
        Unsigned 8-bit integer
    sbccs.cmdflags.coc  COC
        Boolean
    sbccs.cmdflags.du  DU
        Boolean
    sbccs.cmdflags.rex  REX
        Boolean
    sbccs.cmdflags.sss  SSS
        Boolean
    sbccs.cmdflags.syr  SYR
        Boolean
    sbccs.ctccntr  CTC Counter
        Unsigned 16-bit integer
    sbccs.ctlfn  Control Function
        Unsigned 8-bit integer
    sbccs.ctlparam  Control Parameters
        Unsigned 24-bit integer
    sbccs.ctlparam.rc  RC
        Boolean
    sbccs.ctlparam.ro  RO
        Boolean
    sbccs.ctlparam.ru  RU
        Boolean
    sbccs.cuid  Control Unit Image ID
        Unsigned 8-bit integer
    sbccs.databytecnt  DIB Data Byte Count
        Unsigned 16-bit integer
    sbccs.devaddr  Device Address
        Unsigned 16-bit integer
    sbccs.dhflags  DH Flags
        Unsigned 8-bit integer
    sbccs.dhflags.chaining  Chaining
        Boolean
    sbccs.dhflags.earlyend  Early End
        Boolean
    sbccs.dhflags.end  End
        Boolean
    sbccs.dhflags.nocrc  No CRC
        Boolean
    sbccs.dip.xcpcode  Device Level Exception Code
        Unsigned 8-bit integer
    sbccs.dtu  Defer-Time Unit
        Unsigned 16-bit integer
    sbccs.dtuf  Defer-Time Unit Function
        Unsigned 8-bit integer
    sbccs.ioprio  I/O Priority
        Unsigned 8-bit integer
    sbccs.iucnt  DIB IU Count
        Unsigned 8-bit integer
    sbccs.iui  Information Unit Identifier
        Unsigned 8-bit integer
    sbccs.iui.as  AS
        Boolean
    sbccs.iui.es  ES
        Boolean
    sbccs.iui.val  Val
        Unsigned 8-bit integer
    sbccs.iupacing  IU Pacing
        Unsigned 8-bit integer
    sbccs.linkctlfn  Link Control Function
        Unsigned 8-bit integer
    sbccs.linkctlinfo  Link Control Information
        Unsigned 16-bit integer
    sbccs.linkctlinfo.ctc_conn  CTC Conn
        Boolean
    sbccs.linkctlinfo.ecrcg  Enhanced CRC Generation
        Boolean
    sbccs.lprcode  LPR Reason Code
        Unsigned 8-bit integer
    sbccs.lrc  LRC
        Unsigned 32-bit integer
    sbccs.lrjcode  LRJ Reaspn Code
        Unsigned 8-bit integer
    sbccs.purgepathcode  Purge Path Error Code
        Unsigned 8-bit integer
    sbccs.purgepathrspcode  Purge Path Response Error Code
        Unsigned 8-bit integer
    sbccs.qtu  Queue-Time Unit
        Unsigned 16-bit integer
    sbccs.qtuf  Queue-Time Unit Factor
        Unsigned 8-bit integer
    sbccs.residualcnt  Residual Count
        Unsigned 8-bit integer
    sbccs.status  Status
        Unsigned 8-bit integer
    sbccs.status.attention  Attention
        Boolean
    sbccs.status.busy  Busy
        Boolean
    sbccs.status.channel_end  Channel End
        Boolean
    sbccs.status.cue  Control-Unit End
        Boolean
    sbccs.status.device_end  Device End
        Boolean
    sbccs.status.modifier  Status Modifier
        Boolean
    sbccs.status.unit_check  Unit Check
        Boolean
    sbccs.status.unitexception  Unit Exception
        Boolean
    sbccs.statusflags  Status Flags
        Unsigned 8-bit integer
    sbccs.statusflags.ci  CI
        Boolean
    sbccs.statusflags.cr  CR
        Boolean
    sbccs.statusflags.ffc  FFC
        Unsigned 8-bit integer
    sbccs.statusflags.lri  LRI
        Boolean
    sbccs.statusflags.rv  RV
        Boolean
    sbccs.tinimageidcnt  TIN Image ID
        Unsigned 8-bit integer
    sbccs.token  Token
        Unsigned 24-bit integer

Fibre Channel over Ethernet (fcoe)

    fcoe.crc  CRC
        Unsigned 32-bit integer
    fcoe.crc_bad  CRC bad
        Boolean
        True: CRC doesn't match packet content; False: matches or not checked.
    fcoe.crc_good  CRC good
        Boolean
        True: CRC matches packet content; False: doesn't match or not checked.
    fcoe.eof  EOF
        Unsigned 8-bit integer
    fcoe.len  Frame length
        Unsigned 32-bit integer
    fcoe.sof  SOF
        Unsigned 8-bit integer
    fcoe.ver  Version
        Unsigned 32-bit integer

File Mapping Protocol (fmp)

    fmp.Path  Mount Path
        String
    fmp.btime  Boot Time
        Date/Time stamp
        Machine Boot Time
    fmp.btime.nsec  nanoseconds
        Unsigned 32-bit integer
        Nanoseconds
    fmp.btime.sec  seconds
        Unsigned 32-bit integer
        Seconds
    fmp.cmd  Command
        Unsigned 32-bit integer
        command
    fmp.cookie  Cookie
        Unsigned 32-bit integer
        Cookie for FMP_REQUEST_QUEUED Resp
    fmp.cursor  number of volumes
        Unsigned 32-bit integer
    fmp.description  Error Description
        String
        Client Error Description
    fmp.devSig  Signature DATA
        String
    fmp.dsi.ds.dsList.dskSigLst_val.dse.dskSigEnt_val  Celerra Signature
        String
    fmp.dsi.ds.sig_offset  Sig Offset
        Unsigned 64-bit integer
    fmp.eof  EOF
        Unsigned 64-bit integer
        End Of File
    fmp.extentList_len  Extent List Length
        Unsigned 32-bit integer
        FMP Extent List Length
    fmp.extentState  Extent State
        Unsigned 32-bit integer
        FMP Extent State
    fmp.fileSize  File Size
        Unsigned 64-bit integer
    fmp.firstLogBlk  firstLogBlk
        Unsigned 32-bit integer
        First Logical File Block
    fmp.firstLogBlk64  First Logical Block
        Unsigned 64-bit integer
    fmp.fmpFHandle  FMP File Handle
        Byte array
    fmp.fsBlkSz  FS Block Size
        Unsigned 32-bit integer
        File System Block Size
    fmp.fsID  File System ID
        Unsigned 32-bit integer
    fmp.hostID  Host ID
        String
    fmp.minBlks  Minimum Blocks to Grant
        Unsigned 32-bit integer
    fmp.mount_path  Native Protocol: PATH
        String
        Absolute path from the root on the server side
    fmp.msgNum  Message Number
        Unsigned 32-bit integer
        FMP Message Number
    fmp.nfsFHandle  NFS File Handle
        Byte array
    fmp.nfsv3Attr_fileid  File ID
        Unsigned 64-bit integer
        fileid
    fmp.nfsv3Attr_fsid  fsid
        Unsigned 64-bit integer
    fmp.nfsv3Attr_gid  gid
        Unsigned 32-bit integer
        GID
    fmp.nfsv3Attr_mod  Mode
        Unsigned 32-bit integer
    fmp.nfsv3Attr_nlink  nlink
        Unsigned 32-bit integer
    fmp.nfsv3Attr_rdev  rdev
        Unsigned 64-bit integer
    fmp.nfsv3Attr_type  Type
        Unsigned 32-bit integer
        NFSV3 Attr Type
    fmp.nfsv3Attr_uid  uid
        Unsigned 32-bit integer
        UID
    fmp.nfsv3Attr_used  Used
        Unsigned 64-bit integer
        used
    fmp.notifyPort  Notify Port
        Unsigned 32-bit integer
        FMP Notify Port
    fmp.numBlks  Number Blocks
        Unsigned 32-bit integer
        Number of Blocks
    fmp.numBlksReq  Extent Length
        Unsigned 32-bit integer
    fmp.offset64  offset
        Unsigned 64-bit integer
    fmp.os_build  OS Build
        Unsigned 32-bit integer
    fmp.os_major  OS Major
        Unsigned 32-bit integer
        FMP OS Major
    fmp.os_minor  OS Minor
        Unsigned 32-bit integer
        FMP OS Minor
    fmp.os_name  OS Name
        String
    fmp.os_patch  OS Path
        Unsigned 32-bit integer
    fmp.plugIn  Plug In Args
        Byte array
        FMP Plug In Arguments
    fmp.plugInID  Plug In Cmd ID
        Byte array
        Plug In Command ID
    fmp.procedure  Procedure
        Unsigned 32-bit integer
    fmp.server_version_string  Server Version String
        String
    fmp.sessHandle  Session Handle
        Byte array
        FMP Session Handle
    fmp.slice_size  size of the slice
        Unsigned 64-bit integer
    fmp.startOffset  Start Offset
        Unsigned 32-bit integer
        FMP Start Offset
    fmp.start_offset64  Start offset
        Unsigned 64-bit integer
        Start Offset of extentEx
    fmp.status  Status
        Unsigned 32-bit integer
        Reply Status
    fmp.stripeSize  size of the stripe
        Unsigned 64-bit integer
    fmp.topVolumeId  Top Volume ID
        Unsigned 32-bit integer
    fmp.volHandle  Volume Handle
        String
        FMP Volume Handle
    fmp.volID  Volume ID inside DART
        Unsigned 32-bit integer
        FMP Volume ID inside DART
    fmp.volume  Volume ID's
        Unsigned 32-bit integer
        FMP Volume ID's

File Mapping Protocol Nofity (fmp_notify)

    fmp_notify.cookie  Cookie
        Unsigned 32-bit integer
        Cookie for FMP_REQUEST_QUEUED Resp
    fmp_notify.fileSize  File Size
        Unsigned 64-bit integer
    fmp_notify.firstLogBlk  First Logical Block
        Unsigned 32-bit integer
        First Logical File Block
    fmp_notify.fmpFHandle  FMP File Handle
        Byte array
    fmp_notify.fmp_notify_procedure  Procedure
        Unsigned 32-bit integer
    fmp_notify.fsBlkSz  FS Block Size
        Unsigned 32-bit integer
        File System Block Size
    fmp_notify.fsID  File System ID
        Unsigned 32-bit integer
    fmp_notify.handleListLength  Number File Handles
        Unsigned 32-bit integer
        Number of File Handles
    fmp_notify.msgNum  Message Number
        Unsigned 32-bit integer
        FMP Message Number
    fmp_notify.numBlksReq  Number Blocks Requested
        Unsigned 32-bit integer
    fmp_notify.sessHandle  Session Handle
        Byte array
        FMP Session Handle
    fmp_notify.status  Status
        Unsigned 32-bit integer
        Reply Status

File Replication Service DFS-R (frstrans)

    frstrans.frstrans_AsyncPoll.connection_guid  Connection Guid
        Globally Unique Identifier
    frstrans.frstrans_AsyncPoll.response  Response
        No value
    frstrans.frstrans_AsyncResponseContext.response  Response
        No value
    frstrans.frstrans_AsyncResponseContext.sequence_number  Sequence Number
        Unsigned 32-bit integer
    frstrans.frstrans_AsyncResponseContext.status  Status
        Unsigned 32-bit integer
    frstrans.frstrans_AsyncVersionVectorResponse.epoque_vector  Epoque Vector
        No value
    frstrans.frstrans_AsyncVersionVectorResponse.epoque_vector_count  Epoque Vector Count
        Unsigned 32-bit integer
    frstrans.frstrans_AsyncVersionVectorResponse.version_vector  Version Vector
        No value
    frstrans.frstrans_AsyncVersionVectorResponse.version_vector_count  Version Vector Count
        Unsigned 32-bit integer
    frstrans.frstrans_AsyncVersionVectorResponse.vv_generation  Vv Generation
        Unsigned 64-bit integer
    frstrans.frstrans_CheckConnectivity.connection_guid  Connection Guid
        Globally Unique Identifier
    frstrans.frstrans_CheckConnectivity.replica_set_guid  Replica Set Guid
        Globally Unique Identifier
    frstrans.frstrans_EpoqueVector.day  Day
        Unsigned 32-bit integer
    frstrans.frstrans_EpoqueVector.day_of_week  Day Of Week
        Unsigned 32-bit integer
    frstrans.frstrans_EpoqueVector.hour  Hour
        Unsigned 32-bit integer
    frstrans.frstrans_EpoqueVector.machine_guid  Machine Guid
        Globally Unique Identifier
    frstrans.frstrans_EpoqueVector.milli_seconds  Milli Seconds
        Unsigned 32-bit integer
    frstrans.frstrans_EpoqueVector.minute  Minute
        Unsigned 32-bit integer
    frstrans.frstrans_EpoqueVector.month  Month
        Unsigned 32-bit integer
    frstrans.frstrans_EpoqueVector.second  Second
        Unsigned 32-bit integer
    frstrans.frstrans_EpoqueVector.year  Year
        Unsigned 32-bit integer
    frstrans.frstrans_EstablishConnection.connection_guid  Connection Guid
        Globally Unique Identifier
    frstrans.frstrans_EstablishConnection.downstream_flags  Downstream Flags
        Unsigned 32-bit integer
    frstrans.frstrans_EstablishConnection.downstream_protocol_version  Downstream Protocol Version
        Unsigned 32-bit integer
    frstrans.frstrans_EstablishConnection.replica_set_guid  Replica Set Guid
        Globally Unique Identifier
    frstrans.frstrans_EstablishConnection.upstream_flags  Upstream Flags
        Unsigned 32-bit integer
    frstrans.frstrans_EstablishConnection.upstream_protocol_version  Upstream Protocol Version
        Unsigned 32-bit integer
    frstrans.frstrans_EstablishSession.connection_guid  Connection Guid
        Globally Unique Identifier
    frstrans.frstrans_EstablishSession.content_set_guid  Content Set Guid
        Globally Unique Identifier
    frstrans.frstrans_InitializeFileTransferAsync.buffer_size  Buffer Size
        Unsigned 32-bit integer
    frstrans.frstrans_InitializeFileTransferAsync.connection_guid  Connection Guid
        Globally Unique Identifier
    frstrans.frstrans_InitializeFileTransferAsync.data_buffer  Data Buffer
        Unsigned 8-bit integer
    frstrans.frstrans_InitializeFileTransferAsync.frs_update  Frs Update
        No value
    frstrans.frstrans_InitializeFileTransferAsync.is_end_of_file  Is End Of File
        Unsigned 32-bit integer
    frstrans.frstrans_InitializeFileTransferAsync.rdc_desired  Rdc Desired
        Unsigned 32-bit integer
    frstrans.frstrans_InitializeFileTransferAsync.rdc_file_info  Rdc File Info
        No value
    frstrans.frstrans_InitializeFileTransferAsync.server_context  Server Context
        Byte array
    frstrans.frstrans_InitializeFileTransferAsync.size_read  Size Read
        Unsigned 32-bit integer
    frstrans.frstrans_InitializeFileTransferAsync.staging_policy  Staging Policy
        Unsigned 16-bit integer
    frstrans.frstrans_RdcFileInfo.compression_algorithm  Compression Algorithm
        Unsigned 16-bit integer
    frstrans.frstrans_RdcFileInfo.file_size_estimate  File Size Estimate
        Unsigned 64-bit integer
    frstrans.frstrans_RdcFileInfo.on_disk_file_size  On Disk File Size
        Unsigned 64-bit integer
    frstrans.frstrans_RdcFileInfo.rdc_filter_parameters  Rdc Filter Parameters
        No value
    frstrans.frstrans_RdcFileInfo.rdc_minimum_compatible_version  Rdc Minimum Compatible Version
        Unsigned 16-bit integer
    frstrans.frstrans_RdcFileInfo.rdc_signature_levels  Rdc Signature Levels
        Unsigned 8-bit integer
    frstrans.frstrans_RdcFileInfo.rdc_version  Rdc Version
        Unsigned 16-bit integer
    frstrans.frstrans_RdcParameterFilterMax.max_window_size  Max Window Size
        Unsigned 16-bit integer
    frstrans.frstrans_RdcParameterFilterMax.min_horizon_size  Min Horizon Size
        Unsigned 16-bit integer
    frstrans.frstrans_RdcParameterFilterPoint.max_chunk_size  Max Chunk Size
        Unsigned 16-bit integer
    frstrans.frstrans_RdcParameterFilterPoint.min_chunk_size  Min Chunk Size
        Unsigned 16-bit integer
    frstrans.frstrans_RdcParameterGeneric.chunker_parameters  Chunker Parameters
        Unsigned 8-bit integer
    frstrans.frstrans_RdcParameterGeneric.chunker_type  Chunker Type
        Unsigned 16-bit integer
    frstrans.frstrans_RdcParameterUnion.filter_generic  Filter Generic
        No value
    frstrans.frstrans_RdcParameterUnion.filter_max  Filter Max
        No value
    frstrans.frstrans_RdcParameterUnion.filter_point  Filter Point
        No value
    frstrans.frstrans_RdcParameters.rdc_chunker_algorithm  Rdc Chunker Algorithm
        Unsigned 16-bit integer
    frstrans.frstrans_RdcParameters.u  U
        No value
    frstrans.frstrans_RequestUpdates.connection_guid  Connection Guid
        Globally Unique Identifier
    frstrans.frstrans_RequestUpdates.content_set_guid  Content Set Guid
        Globally Unique Identifier
    frstrans.frstrans_RequestUpdates.credits_available  Credits Available
        Unsigned 32-bit integer
    frstrans.frstrans_RequestUpdates.frs_update  Frs Update
        No value
    frstrans.frstrans_RequestUpdates.gvsn_db_guid  Gvsn Db Guid
        Globally Unique Identifier
    frstrans.frstrans_RequestUpdates.gvsn_version  Gvsn Version
        Unsigned 64-bit integer
    frstrans.frstrans_RequestUpdates.hash_requested  Hash Requested
        Unsigned 32-bit integer
    frstrans.frstrans_RequestUpdates.update_count  Update Count
        Unsigned 32-bit integer
    frstrans.frstrans_RequestUpdates.update_request_type  Update Request Type
        Unsigned 16-bit integer
    frstrans.frstrans_RequestUpdates.update_status  Update Status
        Unsigned 16-bit integer
    frstrans.frstrans_RequestUpdates.version_vector_diff  Version Vector Diff
        No value
    frstrans.frstrans_RequestUpdates.version_vector_diff_count  Version Vector Diff Count
        Unsigned 32-bit integer
    frstrans.frstrans_RequestVersionVector.change_type  Change Type
        Unsigned 16-bit integer
    frstrans.frstrans_RequestVersionVector.connection_guid  Connection Guid
        Globally Unique Identifier
    frstrans.frstrans_RequestVersionVector.content_set_guid  Content Set Guid
        Globally Unique Identifier
    frstrans.frstrans_RequestVersionVector.request_type  Request Type
        Unsigned 16-bit integer
    frstrans.frstrans_RequestVersionVector.sequence_number  Sequence Number
        Unsigned 32-bit integer
    frstrans.frstrans_RequestVersionVector.vv_generation  Vv Generation
        Unsigned 64-bit integer
    frstrans.frstrans_TransportFlags.FRSTRANS_TRANSPORT_SUPPORTS_RDC_SIMILARITY  Frstrans Transport Supports Rdc Similarity
        Boolean
    frstrans.frstrans_Update.attributes  Attributes
        Unsigned 32-bit integer
    frstrans.frstrans_Update.clock  Clock
        Date/Time stamp
    frstrans.frstrans_Update.content_set_guid  Content Set Guid
        Globally Unique Identifier
    frstrans.frstrans_Update.create_time  Create Time
        Date/Time stamp
    frstrans.frstrans_Update.fence  Fence
        Date/Time stamp
    frstrans.frstrans_Update.flags  Flags
        Unsigned 32-bit integer
    frstrans.frstrans_Update.gsvn_db_guid  Gsvn Db Guid
        Globally Unique Identifier
    frstrans.frstrans_Update.gsvn_version  Gsvn Version
        Unsigned 64-bit integer
    frstrans.frstrans_Update.name  Name
        String
    frstrans.frstrans_Update.name_conflict  Name Conflict
        Unsigned 32-bit integer
    frstrans.frstrans_Update.parent_db_guid  Parent Db Guid
        Globally Unique Identifier
    frstrans.frstrans_Update.parent_version  Parent Version
        Unsigned 64-bit integer
    frstrans.frstrans_Update.present  Present
        Unsigned 32-bit integer
    frstrans.frstrans_Update.rdc_similarity  Rdc Similarity
        Unsigned 8-bit integer
    frstrans.frstrans_Update.sha1_hash  Sha1 Hash
        Unsigned 8-bit integer
    frstrans.frstrans_Update.uid_db_guid  Uid Db Guid
        Globally Unique Identifier
    frstrans.frstrans_Update.uid_version  Uid Version
        Unsigned 64-bit integer
    frstrans.frstrans_VersionVector.db_guid  Db Guid
        Globally Unique Identifier
    frstrans.frstrans_VersionVector.high  High
        Unsigned 64-bit integer
    frstrans.frstrans_VersionVector.low  Low
        Unsigned 64-bit integer
    frstrans.opnum  Operation
        Unsigned 16-bit integer
    frstrans.werror  Windows Error
        Unsigned 32-bit integer

File Transfer Protocol (FTP) (ftp)

    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

Financial Information eXchange Protocol (fix)

    fix.Account  Account (1)
        String
    fix.AccountType  AccountType (581)
        String
    fix.AccruedInterestAmt  AccruedInterestAmt (159)
        String
    fix.AccruedInterestRate  AccruedInterestRate (158)
        String
    fix.AcctIDSource  AcctIDSource (660)
        String
    fix.Adjustment  Adjustment (334)
        String
    fix.AdjustmentType  AdjustmentType (718)
        String
    fix.AdvId  AdvId (2)
        String
    fix.AdvRefID  AdvRefID (3)
        String
    fix.AdvSide  AdvSide (4)
        String
    fix.AdvTransType  AdvTransType (5)
        String
    fix.AffectedOrderID  AffectedOrderID (535)
        String
    fix.AffectedSecondaryOrderID  AffectedSecondaryOrderID (536)
        String
    fix.AffirmStatus  AffirmStatus (940)
        String
    fix.AggregatedBook  AggregatedBook (266)
        String
    fix.AgreementCurrency  AgreementCurrency (918)
        String
    fix.AgreementDate  AgreementDate (915)
        String
    fix.AgreementDesc  AgreementDesc (913)
        String
    fix.AgreementID  AgreementID (914)
        String
    fix.AllocAccount  AllocAccount (79)
        String
    fix.AllocAccountType  AllocAccountType (798)
        String
    fix.AllocAccruedInterestAmt  AllocAccruedInterestAmt (742)
        String
    fix.AllocAcctIDSource  AllocAcctIDSource (661)
        String
    fix.AllocAvgPx  AllocAvgPx (153)
        String
    fix.AllocCancReplaceReason  AllocCancReplaceReason (796)
        String
    fix.AllocHandlInst  AllocHandlInst (209)
        String
    fix.AllocID  AllocID (70)
        String
    fix.AllocInterestAtMaturity  AllocInterestAtMaturity (741)
        String
    fix.AllocIntermedReqType  AllocIntermedReqType (808)
        String
    fix.AllocLinkID  AllocLinkID (196)
        String
    fix.AllocLinkType  AllocLinkType (197)
        String
    fix.AllocNetMoney  AllocNetMoney (154)
        String
    fix.AllocNoOrdersType  AllocNoOrdersType (857)
        String
    fix.AllocPrice  AllocPrice (366)
        String
    fix.AllocQty  AllocQty (80)
        String
    fix.AllocRejCode  AllocRejCode (88)
        String
    fix.AllocReportID  AllocReportID (755)
        String
    fix.AllocReportRefID  AllocReportRefID (795)
        String
    fix.AllocReportType  AllocReportType (794)
        String
    fix.AllocSettlCurrAmt  AllocSettlCurrAmt (737)
        String
    fix.AllocSettlCurrency  AllocSettlCurrency (736)
        String
    fix.AllocSettlInstType  AllocSettlInstType (780)
        String
    fix.AllocStatus  AllocStatus (87)
        String
    fix.AllocText  AllocText (161)
        String
    fix.AllocTransType  AllocTransType (71)
        String
    fix.AllocType  AllocType (626)
        String
    fix.AllowableOneSidednessCurr  AllowableOneSidednessCurr (767)
        String
    fix.AllowableOneSidednessPct  AllowableOneSidednessPct (765)
        String
    fix.AllowableOneSidednessValue  AllowableOneSidednessValue (766)
        String
    fix.AltMDSourceID  AltMDSourceID (817)
        String
    fix.ApplQueueAction  ApplQueueAction (815)
        String
    fix.ApplQueueDepth  ApplQueueDepth (813)
        String
    fix.ApplQueueMax  ApplQueueMax (812)
        String
    fix.ApplQueueResolution  ApplQueueResolution (814)
        String
    fix.AsgnReqID  AsgnReqID (831)
        String
    fix.AsgnRptID  AsgnRptID (833)
        String
    fix.AssignmentMethod  AssignmentMethod (744)
        String
    fix.AssignmentUnit  AssignmentUnit (745)
        String
    fix.AutoAcceptIndicator  AutoAcceptIndicator (754)
        String
    fix.AvgParPx  AvgParPx (860)
        String
    fix.AvgPx  AvgPx (6)
        String
    fix.AvgPxIndicator  AvgPxIndicator (819)
        String
    fix.AvgPxPrecision  AvgPxPrecision (74)
        String
    fix.BasisFeatureDate  BasisFeatureDate (259)
        String
    fix.BasisFeaturePrice  BasisFeaturePrice (260)
        String
    fix.BasisPxType  BasisPxType (419)
        String
    fix.BeginSeqNo  BeginSeqNo (7)
        String
    fix.BeginString  BeginString (8)
        String
    fix.Benchmark  Benchmark (219)
        String
    fix.BenchmarkCurveCurrency  BenchmarkCurveCurrency (220)
        String
    fix.BenchmarkCurveName  BenchmarkCurveName (221)
        String
    fix.BenchmarkCurvePoint  BenchmarkCurvePoint (222)
        String
    fix.BenchmarkPrice  BenchmarkPrice (662)
        String
    fix.BenchmarkPriceType  BenchmarkPriceType (663)
        String
    fix.BenchmarkSecurityID  BenchmarkSecurityID (699)
        String
    fix.BenchmarkSecurityIDSource  BenchmarkSecurityIDSource (761)
        String
    fix.BidDescriptor  BidDescriptor (400)
        String
    fix.BidDescriptorType  BidDescriptorType (399)
        String
    fix.BidForwardPoints  BidForwardPoints (189)
        String
    fix.BidForwardPoints2  BidForwardPoints2 (642)
        String
    fix.BidID  BidID (390)
        String
    fix.BidPx  BidPx (132)
        String
    fix.BidRequestTransType  BidRequestTransType (374)
        String
    fix.BidSize  BidSize (134)
        String
    fix.BidSpotRate  BidSpotRate (188)
        String
    fix.BidTradeType  BidTradeType (418)
        String
    fix.BidType  BidType (394)
        String
    fix.BidYield  BidYield (632)
        String
    fix.BodyLength  BodyLength (9)
        String
    fix.BookingRefID  BookingRefID (466)
        String
    fix.BookingType  BookingType (775)
        String
    fix.BookingUnit  BookingUnit (590)
        String
    fix.BrokerOfCredit  BrokerOfCredit (92)
        String
    fix.BusinessRejectReason  BusinessRejectReason (380)
        String
    fix.BusinessRejectRefID  BusinessRejectRefID (379)
        String
    fix.BuyVolume  BuyVolume (330)
        String
    fix.CFICode  CFICode (461)
        String
    fix.CPProgram  CPProgram (875)
        String
    fix.CPRegType  CPRegType (876)
        String
    fix.CancellationRights  CancellationRights (480)
        String
    fix.CardExpDate  CardExpDate (490)
        String
    fix.CardHolderName  CardHolderName (488)
        String
    fix.CardIssNum  CardIssNum (491)
        String
    fix.CardNumber  CardNumber (489)
        String
    fix.CardStartDate  CardStartDate (503)
        String
    fix.CashDistribAgentAcctName  CashDistribAgentAcctName (502)
        String
    fix.CashDistribAgentAcctNumber  CashDistribAgentAcctNumber (500)
        String
    fix.CashDistribAgentCode  CashDistribAgentCode (499)
        String
    fix.CashDistribAgentName  CashDistribAgentName (498)
        String
    fix.CashDistribCurr  CashDistribCurr (478)
        String
    fix.CashDistribPayRef  CashDistribPayRef (501)
        String
    fix.CashMargin  CashMargin (544)
        String
    fix.CashOrderQty  CashOrderQty (152)
        String
    fix.CashOutstanding  CashOutstanding (901)
        String
    fix.CashSettlAgentAcctName  CashSettlAgentAcctName (185)
        String
    fix.CashSettlAgentAcctNum  CashSettlAgentAcctNum (184)
        String
    fix.CashSettlAgentCode  CashSettlAgentCode (183)
        String
    fix.CashSettlAgentContactName  CashSettlAgentContactName (186)
        String
    fix.CashSettlAgentContactPhone  CashSettlAgentContactPhone (187)
        String
    fix.CashSettlAgentName  CashSettlAgentName (182)
        String
    fix.CheckSum  CheckSum (10)
        String
    fix.ClOrdID  ClOrdID (11)
        String
    fix.ClOrdLinkID  ClOrdLinkID (583)
        String
    fix.ClearingAccount  ClearingAccount (440)
        String
    fix.ClearingBusinessDate  ClearingBusinessDate (715)
        String
    fix.ClearingFeeIndicator  ClearingFeeIndicator (635)
        String
    fix.ClearingFirm  ClearingFirm (439)
        String
    fix.ClearingInstruction  ClearingInstruction (577)
        String
    fix.ClientBidID  ClientBidID (391)
        String
    fix.ClientID  ClientID (109)
        String
    fix.CollAction  CollAction (944)
        String
    fix.CollAsgnID  CollAsgnID (902)
        String
    fix.CollAsgnReason  CollAsgnReason (895)
        String
    fix.CollAsgnRefID  CollAsgnRefID (907)
        String
    fix.CollAsgnRejectReason  CollAsgnRejectReason (906)
        String
    fix.CollAsgnRespType  CollAsgnRespType (905)
        String
    fix.CollAsgnTransType  CollAsgnTransType (903)
        String
    fix.CollInquiryID  CollInquiryID (909)
        String
    fix.CollInquiryQualifier  CollInquiryQualifier (896)
        String
    fix.CollInquiryResult  CollInquiryResult (946)
        String
    fix.CollInquiryStatus  CollInquiryStatus (945)
        String
    fix.CollReqID  CollReqID (894)
        String
    fix.CollRespID  CollRespID (904)
        String
    fix.CollRptID  CollRptID (908)
        String
    fix.CollStatus  CollStatus (910)
        String
    fix.CommCurrency  CommCurrency (479)
        String
    fix.CommType  CommType (13)
        String
    fix.Commission  Commission (12)
        String
    fix.ComplianceID  ComplianceID (376)
        String
    fix.Concession  Concession (238)
        String
    fix.ConfirmID  ConfirmID (664)
        String
    fix.ConfirmRefID  ConfirmRefID (772)
        String
    fix.ConfirmRejReason  ConfirmRejReason (774)
        String
    fix.ConfirmReqID  ConfirmReqID (859)
        String
    fix.ConfirmStatus  ConfirmStatus (665)
        String
    fix.ConfirmTransType  ConfirmTransType (666)
        String
    fix.ConfirmType  ConfirmType (773)
        String
    fix.ContAmtCurr  ContAmtCurr (521)
        String
    fix.ContAmtType  ContAmtType (519)
        String
    fix.ContAmtValue  ContAmtValue (520)
        String
    fix.ContraBroker  ContraBroker (375)
        String
    fix.ContraLegRefID  ContraLegRefID (655)
        String
    fix.ContraTradeQty  ContraTradeQty (437)
        String
    fix.ContraTradeTime  ContraTradeTime (438)
        String
    fix.ContraTrader  ContraTrader (337)
        String
    fix.ContractMultiplier  ContractMultiplier (231)
        String
    fix.ContractSettlMonth  ContractSettlMonth (667)
        String
    fix.ContraryInstructionIndicator  ContraryInstructionIndicator (719)
        String
    fix.CopyMsgIndicator  CopyMsgIndicator (797)
        String
    fix.CorporateAction  CorporateAction (292)
        String
    fix.Country  Country (421)
        String
    fix.CountryOfIssue  CountryOfIssue (470)
        String
    fix.CouponPaymentDate  CouponPaymentDate (224)
        String
    fix.CouponRate  CouponRate (223)
        String
    fix.CoveredOrUncovered  CoveredOrUncovered (203)
        String
    fix.CreditRating  CreditRating (255)
        String
    fix.CrossID  CrossID (548)
        String
    fix.CrossPercent  CrossPercent (413)
        String
    fix.CrossPrioritization  CrossPrioritization (550)
        String
    fix.CrossType  CrossType (549)
        String
    fix.CumQty  CumQty (14)
        String
    fix.Currency  Currency (15)
        String
    fix.CustOrderCapacity  CustOrderCapacity (582)
        String
    fix.CustomerOrFirm  CustomerOrFirm (204)
        String
    fix.CxlQty  CxlQty (84)
        String
    fix.CxlRejReason  CxlRejReason (102)
        String
    fix.CxlRejResponseTo  CxlRejResponseTo (434)
        String
    fix.CxlType  CxlType (125)
        String
    fix.DKReason  DKReason (127)
        String
    fix.DateOfBirth  DateOfBirth (486)
        String
    fix.DatedDate  DatedDate (873)
        String
    fix.DayAvgPx  DayAvgPx (426)
        String
    fix.DayBookingInst  DayBookingInst (589)
        String
    fix.DayCumQty  DayCumQty (425)
        String
    fix.DayOrderQty  DayOrderQty (424)
        String
    fix.DefBidSize  DefBidSize (293)
        String
    fix.DefOfferSize  DefOfferSize (294)
        String
    fix.DeleteReason  DeleteReason (285)
        String
    fix.DeliverToCompID  DeliverToCompID (128)
        String
    fix.DeliverToLocationID  DeliverToLocationID (145)
        String
    fix.DeliverToSubID  DeliverToSubID (129)
        String
    fix.DeliveryDate  DeliveryDate (743)
        String
    fix.DeliveryForm  DeliveryForm (668)
        String
    fix.DeliveryType  DeliveryType (919)
        String
    fix.Designation  Designation (494)
        String
    fix.DeskID  DeskID (284)
        String
    fix.DiscretionInst  DiscretionInst (388)
        String
    fix.DiscretionLimitType  DiscretionLimitType (843)
        String
    fix.DiscretionMoveType  DiscretionMoveType (841)
        String
    fix.DiscretionOffsetType  DiscretionOffsetType (842)
        String
    fix.DiscretionOffsetValue  DiscretionOffsetValue (389)
        String
    fix.DiscretionPrice  DiscretionPrice (845)
        String
    fix.DiscretionRoundDirection  DiscretionRoundDirection (844)
        String
    fix.DiscretionScope  DiscretionScope (846)
        String
    fix.DistribPaymentMethod  DistribPaymentMethod (477)
        String
    fix.DistribPercentage  DistribPercentage (512)
        String
    fix.DlvyInst  DlvyInst (86)
        String
    fix.DlvyInstType  DlvyInstType (787)
        String
    fix.DueToRelated  DueToRelated (329)
        String
    fix.EFPTrackingError  EFPTrackingError (405)
        String
    fix.EffectiveTime  EffectiveTime (168)
        String
    fix.EmailThreadID  EmailThreadID (164)
        String
    fix.EmailType  EmailType (94)
        String
    fix.EncodedAllocText  EncodedAllocText (361)
        String
    fix.EncodedAllocTextLen  EncodedAllocTextLen (360)
        String
    fix.EncodedHeadline  EncodedHeadline (359)
        String
    fix.EncodedHeadlineLen  EncodedHeadlineLen (358)
        String
    fix.EncodedIssuer  EncodedIssuer (349)
        String
    fix.EncodedIssuerLen  EncodedIssuerLen (348)
        String
    fix.EncodedLegIssuer  EncodedLegIssuer (619)
        String
    fix.EncodedLegIssuerLen  EncodedLegIssuerLen (618)
        String
    fix.EncodedLegSecurityDesc  EncodedLegSecurityDesc (622)
        String
    fix.EncodedLegSecurityDescLen  EncodedLegSecurityDescLen (621)
        String
    fix.EncodedListExecInst  EncodedListExecInst (353)
        String
    fix.EncodedListExecInstLen  EncodedListExecInstLen (352)
        String
    fix.EncodedListStatusText  EncodedListStatusText (446)
        String
    fix.EncodedListStatusTextLen  EncodedListStatusTextLen (445)
        String
    fix.EncodedSecurityDesc  EncodedSecurityDesc (351)
        String
    fix.EncodedSecurityDescLen  EncodedSecurityDescLen (350)
        String
    fix.EncodedSubject  EncodedSubject (357)
        String
    fix.EncodedSubjectLen  EncodedSubjectLen (356)
        String
    fix.EncodedText  EncodedText (355)
        String
    fix.EncodedTextLen  EncodedTextLen (354)
        String
    fix.EncodedUnderlyingIssuer  EncodedUnderlyingIssuer (363)
        String
    fix.EncodedUnderlyingIssuerLen  EncodedUnderlyingIssuerLen (362)
        String
    fix.EncodedUnderlyingSecurityDesc  EncodedUnderlyingSecurityDesc (365)
        String
    fix.EncodedUnderlyingSecurityDescLen  EncodedUnderlyingSecurityDescLen (364)
        String
    fix.EncryptMethod  EncryptMethod (98)
        String
    fix.EndAccruedInterestAmt  EndAccruedInterestAmt (920)
        String
    fix.EndCash  EndCash (922)
        String
    fix.EndDate  EndDate (917)
        String
    fix.EndSeqNo  EndSeqNo (16)
        String
    fix.EventDate  EventDate (866)
        String
    fix.EventPx  EventPx (867)
        String
    fix.EventText  EventText (868)
        String
    fix.EventType  EventType (865)
        String
    fix.ExDate  ExDate (230)
        String
    fix.ExDestination  ExDestination (100)
        String
    fix.ExchangeForPhysical  ExchangeForPhysical (411)
        String
    fix.ExchangeRule  ExchangeRule (825)
        String
    fix.ExecBroker  ExecBroker (76)
        String
    fix.ExecID  ExecID (17)
        String
    fix.ExecInst  ExecInst (18)
        String
    fix.ExecPriceAdjustment  ExecPriceAdjustment (485)
        String
    fix.ExecPriceType  ExecPriceType (484)
        String
    fix.ExecRefID  ExecRefID (19)
        String
    fix.ExecRestatementReason  ExecRestatementReason (378)
        String
    fix.ExecTransType  ExecTransType (20)
        String
    fix.ExecType  ExecType (150)
        String
    fix.ExecValuationPoint  ExecValuationPoint (515)
        String
    fix.ExerciseMethod  ExerciseMethod (747)
        String
    fix.ExpirationCycle  ExpirationCycle (827)
        String
    fix.ExpireDate  ExpireDate (432)
        String
    fix.ExpireTime  ExpireTime (126)
        String
    fix.Factor  Factor (228)
        String
    fix.FairValue  FairValue (406)
        String
    fix.FinancialStatus  FinancialStatus (291)
        String
    fix.ForexReq  ForexReq (121)
        String
    fix.FundRenewWaiv  FundRenewWaiv (497)
        String
    fix.GTBookingInst  GTBookingInst (427)
        String
    fix.GapFillFlag  GapFillFlag (123)
        String
    fix.GrossTradeAmt  GrossTradeAmt (381)
        String
    fix.HaltReason  HaltReason (327)
        String
    fix.HandlInst  HandlInst (21)
        String
    fix.Headline  Headline (148)
        String
    fix.HeartBtInt  HeartBtInt (108)
        String
    fix.HighPx  HighPx (332)
        String
    fix.HopCompID  HopCompID (628)
        String
    fix.HopRefID  HopRefID (630)
        String
    fix.HopSendingTime  HopSendingTime (629)
        String
    fix.IOINaturalFlag  IOINaturalFlag (130)
        String
    fix.IOIOthSvc  IOIOthSvc (24)
        String
    fix.IOIQltyInd  IOIQltyInd (25)
        String
    fix.IOIQty  IOIQty (27)
        String
    fix.IOIQualifier  IOIQualifier (104)
        String
    fix.IOIRefID  IOIRefID (26)
        String
    fix.IOITransType  IOITransType (28)
        String
    fix.IOIid  IOIid (23)
        String
    fix.InViewOfCommon  InViewOfCommon (328)
        String
    fix.IncTaxInd  IncTaxInd (416)
        String
    fix.IndividualAllocID  IndividualAllocID (467)
        String
    fix.IndividualAllocRejCode  IndividualAllocRejCode (776)
        String
    fix.InstrAttribType  InstrAttribType (871)
        String
    fix.InstrAttribValue  InstrAttribValue (872)
        String
    fix.InstrRegistry  InstrRegistry (543)
        String
    fix.InterestAccrualDate  InterestAccrualDate (874)
        String
    fix.InterestAtMaturity  InterestAtMaturity (738)
        String
    fix.InvestorCountryOfResidence  InvestorCountryOfResidence (475)
        String
    fix.IssueDate  IssueDate (225)
        String
    fix.Issuer  Issuer (106)
        String
    fix.LastCapacity  LastCapacity (29)
        String
    fix.LastForwardPoints  LastForwardPoints (195)
        String
    fix.LastForwardPoints2  LastForwardPoints2 (641)
        String
    fix.LastFragment  LastFragment (893)
        String
    fix.LastLiquidityInd  LastLiquidityInd (851)
        String
    fix.LastMkt  LastMkt (30)
        String
    fix.LastMsgSeqNumProcessed  LastMsgSeqNumProcessed (369)
        String
    fix.LastNetworkResponseID  LastNetworkResponseID (934)
        String
    fix.LastParPx  LastParPx (669)
        String
    fix.LastPx  LastPx (31)
        String
    fix.LastQty  LastQty (32)
        String
    fix.LastRptRequested  LastRptRequested (912)
        String
    fix.LastSpotRate  LastSpotRate (194)
        String
    fix.LastUpdateTime  LastUpdateTime (779)
        String
    fix.LeavesQty  LeavesQty (151)
        String
    fix.LegAllocAccount  LegAllocAccount (671)
        String
    fix.LegAllocAcctIDSource  LegAllocAcctIDSource (674)
        String
    fix.LegAllocQty  LegAllocQty (673)
        String
    fix.LegBenchmarkCurveCurrency  LegBenchmarkCurveCurrency (676)
        String
    fix.LegBenchmarkCurveName  LegBenchmarkCurveName (677)
        String
    fix.LegBenchmarkCurvePoint  LegBenchmarkCurvePoint (678)
        String
    fix.LegBenchmarkPrice  LegBenchmarkPrice (679)
        String
    fix.LegBenchmarkPriceType  LegBenchmarkPriceType (680)
        String
    fix.LegBidPx  LegBidPx (681)
        String
    fix.LegCFICode  LegCFICode (608)
        String
    fix.LegContractMultiplier  LegContractMultiplier (614)
        String
    fix.LegContractSettlMonth  LegContractSettlMonth (955)
        String
    fix.LegCountryOfIssue  LegCountryOfIssue (596)
        String
    fix.LegCouponPaymentDate  LegCouponPaymentDate (248)
        String
    fix.LegCouponRate  LegCouponRate (615)
        String
    fix.LegCoveredOrUncovered  LegCoveredOrUncovered (565)
        String
    fix.LegCreditRating  LegCreditRating (257)
        String
    fix.LegCurrency  LegCurrency (556)
        String
    fix.LegDatedDate  LegDatedDate (739)
        String
    fix.LegFactor  LegFactor (253)
        String
    fix.LegIOIQty  LegIOIQty (682)
        String
    fix.LegIndividualAllocID  LegIndividualAllocID (672)
        String
    fix.LegInstrRegistry  LegInstrRegistry (599)
        String
    fix.LegInterestAccrualDate  LegInterestAccrualDate (956)
        String
    fix.LegIssueDate  LegIssueDate (249)
        String
    fix.LegIssuer  LegIssuer (617)
        String
    fix.LegLastPx  LegLastPx (637)
        String
    fix.LegLocaleOfIssue  LegLocaleOfIssue (598)
        String
    fix.LegMaturityDate  LegMaturityDate (611)
        String
    fix.LegMaturityMonthYear  LegMaturityMonthYear (610)
        String
    fix.LegOfferPx  LegOfferPx (684)
        String
    fix.LegOptAttribute  LegOptAttribute (613)
        String
    fix.LegOrderQty  LegOrderQty (685)
        String
    fix.LegPool  LegPool (740)
        String
    fix.LegPositionEffect  LegPositionEffect (564)
        String
    fix.LegPrice  LegPrice (566)
        String
    fix.LegPriceType  LegPriceType (686)
        String
    fix.LegProduct  LegProduct (607)
        String
    fix.LegQty  LegQty (687)
        String
    fix.LegRatioQty  LegRatioQty (623)
        String
    fix.LegRedemptionDate  LegRedemptionDate (254)
        String
    fix.LegRefID  LegRefID (654)
        String
    fix.LegRepoCollateralSecurityType  LegRepoCollateralSecurityType (250)
        String
    fix.LegRepurchaseRate  LegRepurchaseRate (252)
        String
    fix.LegRepurchaseTerm  LegRepurchaseTerm (251)
        String
    fix.LegSecurityAltID  LegSecurityAltID (605)
        String
    fix.LegSecurityAltIDSource  LegSecurityAltIDSource (606)
        String
    fix.LegSecurityDesc  LegSecurityDesc (620)
        String
    fix.LegSecurityExchange  LegSecurityExchange (616)
        String
    fix.LegSecurityID  LegSecurityID (602)
        String
    fix.LegSecurityIDSource  LegSecurityIDSource (603)
        String
    fix.LegSecuritySubType  LegSecuritySubType (764)
        String
    fix.LegSecurityType  LegSecurityType (609)
        String
    fix.LegSettlCurrency  LegSettlCurrency (675)
        String
    fix.LegSettlDate  LegSettlDate (588)
        String
    fix.LegSettlType  LegSettlType (587)
        String
    fix.LegSide  LegSide (624)
        String
    fix.LegStateOrProvinceOfIssue  LegStateOrProvinceOfIssue (597)
        String
    fix.LegStipulationType  LegStipulationType (688)
        String
    fix.LegStipulationValue  LegStipulationValue (689)
        String
    fix.LegStrikeCurrency  LegStrikeCurrency (942)
        String
    fix.LegStrikePrice  LegStrikePrice (612)
        String
    fix.LegSwapType  LegSwapType (690)
        String
    fix.LegSymbol  LegSymbol (600)
        String
    fix.LegSymbolSfx  LegSymbolSfx (601)
        String
    fix.LegalConfirm  LegalConfirm (650)
        String
    fix.LinesOfText  LinesOfText (33)
        String
    fix.LiquidityIndType  LiquidityIndType (409)
        String
    fix.LiquidityNumSecurities  LiquidityNumSecurities (441)
        String
    fix.LiquidityPctHigh  LiquidityPctHigh (403)
        String
    fix.LiquidityPctLow  LiquidityPctLow (402)
        String
    fix.LiquidityValue  LiquidityValue (404)
        String
    fix.ListExecInst  ListExecInst (69)
        String
    fix.ListExecInstType  ListExecInstType (433)
        String
    fix.ListID  ListID (66)
        String
    fix.ListName  ListName (392)
        String
    fix.ListOrderStatus  ListOrderStatus (431)
        String
    fix.ListSeqNo  ListSeqNo (67)
        String
    fix.ListStatusText  ListStatusText (444)
        String
    fix.ListStatusType  ListStatusType (429)
        String
    fix.LocaleOfIssue  LocaleOfIssue (472)
        String
    fix.LocateReqd  LocateReqd (114)
        String
    fix.LocationID  LocationID (283)
        String
    fix.LongQty  LongQty (704)
        String
    fix.LowPx  LowPx (333)
        String
    fix.MDEntryBuyer  MDEntryBuyer (288)
        String
    fix.MDEntryDate  MDEntryDate (272)
        String
    fix.MDEntryID  MDEntryID (278)
        String
    fix.MDEntryOriginator  MDEntryOriginator (282)
        String
    fix.MDEntryPositionNo  MDEntryPositionNo (290)
        String
    fix.MDEntryPx  MDEntryPx (270)
        String
    fix.MDEntryRefID  MDEntryRefID (280)
        String
    fix.MDEntrySeller  MDEntrySeller (289)
        String
    fix.MDEntrySize  MDEntrySize (271)
        String
    fix.MDEntryTime  MDEntryTime (273)
        String
    fix.MDEntryType  MDEntryType (269)
        String
    fix.MDImplicitDelete  MDImplicitDelete (547)
        String
    fix.MDMkt  MDMkt (275)
        String
    fix.MDReqID  MDReqID (262)
        String
    fix.MDReqRejReason  MDReqRejReason (281)
        String
    fix.MDUpdateAction  MDUpdateAction (279)
        String
    fix.MDUpdateType  MDUpdateType (265)
        String
    fix.MailingDtls  MailingDtls (474)
        String
    fix.MailingInst  MailingInst (482)
        String
    fix.MarginExcess  MarginExcess (899)
        String
    fix.MarginRatio  MarginRatio (898)
        String
    fix.MarketDepth  MarketDepth (264)
        String
    fix.MassCancelRejectReason  MassCancelRejectReason (532)
        String
    fix.MassCancelRequestType  MassCancelRequestType (530)
        String
    fix.MassCancelResponse  MassCancelResponse (531)
        String
    fix.MassStatusReqID  MassStatusReqID (584)
        String
    fix.MassStatusReqType  MassStatusReqType (585)
        String
    fix.MatchStatus  MatchStatus (573)
        String
    fix.MatchType  MatchType (574)
        String
    fix.MaturityDate  MaturityDate (541)
        String
    fix.MaturityDay  MaturityDay (205)
        String
    fix.MaturityMonthYear  MaturityMonthYear (200)
        String
    fix.MaturityNetMoney  MaturityNetMoney (890)
        String
    fix.MaxFloor  MaxFloor (111)
        String
    fix.MaxMessageSize  MaxMessageSize (383)
        String
    fix.MaxShow  MaxShow (210)
        String
    fix.MessageEncoding  MessageEncoding (347)
        String
    fix.MidPx  MidPx (631)
        String
    fix.MidYield  MidYield (633)
        String
    fix.MinBidSize  MinBidSize (647)
        String
    fix.MinOfferSize  MinOfferSize (648)
        String
    fix.MinQty  MinQty (110)
        String
    fix.MinTradeVol  MinTradeVol (562)
        String
    fix.MiscFeeAmt  MiscFeeAmt (137)
        String
    fix.MiscFeeBasis  MiscFeeBasis (891)
        String
    fix.MiscFeeCurr  MiscFeeCurr (138)
        String
    fix.MiscFeeType  MiscFeeType (139)
        String
    fix.MktBidPx  MktBidPx (645)
        String
    fix.MktOfferPx  MktOfferPx (646)
        String
    fix.MoneyLaunderingStatus  MoneyLaunderingStatus (481)
        String
    fix.MsgDirection  MsgDirection (385)
        String
    fix.MsgSeqNum  MsgSeqNum (34)
        String
    fix.MsgType  MsgType (35)
        String
    fix.MultiLegReportingType  MultiLegReportingType (442)
        String
    fix.MultiLegRptTypeReq  MultiLegRptTypeReq (563)
        String
    fix.Nested2PartyID  Nested2PartyID (757)
        String
    fix.Nested2PartyIDSource  Nested2PartyIDSource (758)
        String
    fix.Nested2PartyRole  Nested2PartyRole (759)
        String
    fix.Nested2PartySubID  Nested2PartySubID (760)
        String
    fix.Nested2PartySubIDType  Nested2PartySubIDType (807)
        String
    fix.Nested3PartyID  Nested3PartyID (949)
        String
    fix.Nested3PartyIDSource  Nested3PartyIDSource (950)
        String
    fix.Nested3PartyRole  Nested3PartyRole (951)
        String
    fix.Nested3PartySubID  Nested3PartySubID (953)
        String
    fix.Nested3PartySubIDType  Nested3PartySubIDType (954)
        String
    fix.NestedPartyID  NestedPartyID (524)
        String
    fix.NestedPartyIDSource  NestedPartyIDSource (525)
        String
    fix.NestedPartyRole  NestedPartyRole (538)
        String
    fix.NestedPartySubID  NestedPartySubID (545)
        String
    fix.NestedPartySubIDType  NestedPartySubIDType (805)
        String
    fix.NetChgPrevDay  NetChgPrevDay (451)
        String
    fix.NetGrossInd  NetGrossInd (430)
        String
    fix.NetMoney  NetMoney (118)
        String
    fix.NetworkRequestID  NetworkRequestID (933)
        String
    fix.NetworkRequestType  NetworkRequestType (935)
        String
    fix.NetworkResponseID  NetworkResponseID (932)
        String
    fix.NetworkStatusResponseType  NetworkStatusResponseType (937)
        String
    fix.NewPassword  NewPassword (925)
        String
    fix.NewSeqNo  NewSeqNo (36)
        String
    fix.NextExpectedMsgSeqNum  NextExpectedMsgSeqNum (789)
        String
    fix.NoAffectedOrders  NoAffectedOrders (534)
        String
    fix.NoAllocs  NoAllocs (78)
        String
    fix.NoAltMDSource  NoAltMDSource (816)
        String
    fix.NoBidComponents  NoBidComponents (420)
        String
    fix.NoBidDescriptors  NoBidDescriptors (398)
        String
    fix.NoCapacities  NoCapacities (862)
        String
    fix.NoClearingInstructions  NoClearingInstructions (576)
        String
    fix.NoCollInquiryQualifier  NoCollInquiryQualifier (938)
        String
    fix.NoCompIDs  NoCompIDs (936)
        String
    fix.NoContAmts  NoContAmts (518)
        String
    fix.NoContraBrokers  NoContraBrokers (382)
        String
    fix.NoDates  NoDates (580)
        String
    fix.NoDistribInsts  NoDistribInsts (510)
        String
    fix.NoDlvyInst  NoDlvyInst (85)
        String
    fix.NoEvents  NoEvents (864)
        String
    fix.NoExecs  NoExecs (124)
        String
    fix.NoHops  NoHops (627)
        String
    fix.NoIOIQualifiers  NoIOIQualifiers (199)
        String
    fix.NoInstrAttrib  NoInstrAttrib (870)
        String
    fix.NoLegAllocs  NoLegAllocs (670)
        String
    fix.NoLegSecurityAltID  NoLegSecurityAltID (604)
        String
    fix.NoLegStipulations  NoLegStipulations (683)
        String
    fix.NoLegs  NoLegs (555)
        String
    fix.NoMDEntries  NoMDEntries (268)
        String
    fix.NoMDEntryTypes  NoMDEntryTypes (267)
        String
    fix.NoMiscFees  NoMiscFees (136)
        String
    fix.NoMsgTypes  NoMsgTypes (384)
        String
    fix.NoNested2PartyIDs  NoNested2PartyIDs (756)
        String
    fix.NoNested2PartySubIDs  NoNested2PartySubIDs (806)
        String
    fix.NoNested3PartyIDs  NoNested3PartyIDs (948)
        String
    fix.NoNested3PartySubIDs  NoNested3PartySubIDs (952)
        String
    fix.NoNestedPartyIDs  NoNestedPartyIDs (539)
        String
    fix.NoNestedPartySubIDs  NoNestedPartySubIDs (804)
        String
    fix.NoOrders  NoOrders (73)
        String
    fix.NoPartyIDs  NoPartyIDs (453)
        String
    fix.NoPartySubIDs  NoPartySubIDs (802)
        String
    fix.NoPosAmt  NoPosAmt (753)
        String
    fix.NoPositions  NoPositions (702)
        String
    fix.NoQuoteEntries  NoQuoteEntries (295)
        String
    fix.NoQuoteQualifiers  NoQuoteQualifiers (735)
        String
    fix.NoQuoteSets  NoQuoteSets (296)
        String
    fix.NoRegistDtls  NoRegistDtls (473)
        String
    fix.NoRelatedSym  NoRelatedSym (146)
        String
    fix.NoRoutingIDs  NoRoutingIDs (215)
        String
    fix.NoRpts  NoRpts (82)
        String
    fix.NoSecurityAltID  NoSecurityAltID (454)
        String
    fix.NoSecurityTypes  NoSecurityTypes (558)
        String
    fix.NoSettlInst  NoSettlInst (778)
        String
    fix.NoSettlPartyIDs  NoSettlPartyIDs (781)
        String
    fix.NoSettlPartySubIDs  NoSettlPartySubIDs (801)
        String
    fix.NoSides  NoSides (552)
        String
    fix.NoStipulations  NoStipulations (232)
        String
    fix.NoStrikes  NoStrikes (428)
        String
    fix.NoTrades  NoTrades (897)
        String
    fix.NoTradingSessions  NoTradingSessions (386)
        String
    fix.NoTrdRegTimestamps  NoTrdRegTimestamps (768)
        String
    fix.NoUnderlyingSecurityAltID  NoUnderlyingSecurityAltID (457)
        String
    fix.NoUnderlyingStips  NoUnderlyingStips (887)
        String
    fix.NoUnderlyings  NoUnderlyings (711)
        String
    fix.NotifyBrokerOfCredit  NotifyBrokerOfCredit (208)
        String
    fix.NumBidders  NumBidders (417)
        String
    fix.NumDaysInterest  NumDaysInterest (157)
        String
    fix.NumTickets  NumTickets (395)
        String
    fix.NumberOfOrders  NumberOfOrders (346)
        String
    fix.OddLot  OddLot (575)
        String
    fix.OfferForwardPoints  OfferForwardPoints (191)
        String
    fix.OfferForwardPoints2  OfferForwardPoints2 (643)
        String
    fix.OfferPx  OfferPx (133)
        String
    fix.OfferSize  OfferSize (135)
        String
    fix.OfferSpotRate  OfferSpotRate (190)
        String
    fix.OfferYield  OfferYield (634)
        String
    fix.OnBehalfOfCompID  OnBehalfOfCompID (115)
        String
    fix.OnBehalfOfLocationID  OnBehalfOfLocationID (144)
        String
    fix.OnBehalfOfSendingTime  OnBehalfOfSendingTime (370)
        String
    fix.OnBehalfOfSubID  OnBehalfOfSubID (116)
        String
    fix.OpenCloseSettlFlag  OpenCloseSettlFlag (286)
        String
    fix.OpenInterest  OpenInterest (746)
        String
    fix.OptAttribute  OptAttribute (206)
        String
    fix.OrdRejReason  OrdRejReason (103)
        String
    fix.OrdStatus  OrdStatus (39)
        String
    fix.OrdStatusReqID  OrdStatusReqID (790)
        String
    fix.OrdType  OrdType (40)
        String
    fix.OrderAvgPx  OrderAvgPx (799)
        String
    fix.OrderBookingQty  OrderBookingQty (800)
        String
    fix.OrderCapacity  OrderCapacity (528)
        String
    fix.OrderCapacityQty  OrderCapacityQty (863)
        String
    fix.OrderID  OrderID (37)
        String
    fix.OrderInputDevice  OrderInputDevice (821)
        String
    fix.OrderPercent  OrderPercent (516)
        String
    fix.OrderQty  OrderQty (38)
        String
    fix.OrderQty2  OrderQty2 (192)
        String
    fix.OrderRestrictions  OrderRestrictions (529)
        String
    fix.OrigClOrdID  OrigClOrdID (41)
        String
    fix.OrigCrossID  OrigCrossID (551)
        String
    fix.OrigOrdModTime  OrigOrdModTime (586)
        String
    fix.OrigPosReqRefID  OrigPosReqRefID (713)
        String
    fix.OrigSendingTime  OrigSendingTime (122)
        String
    fix.OrigTime  OrigTime (42)
        String
    fix.OutMainCntryUIndex  OutMainCntryUIndex (412)
        String
    fix.OutsideIndexPct  OutsideIndexPct (407)
        String
    fix.OwnerType  OwnerType (522)
        String
    fix.OwnershipType  OwnershipType (517)
        String
    fix.ParticipationRate  ParticipationRate (849)
        String
    fix.PartyID  PartyID (448)
        String
    fix.PartyIDSource  PartyIDSource (447)
        String
    fix.PartyRole  PartyRole (452)
        String
    fix.PartySubID  PartySubID (523)
        String
    fix.PartySubIDType  PartySubIDType (803)
        String
    fix.Password  Password (554)
        String
    fix.PaymentDate  PaymentDate (504)
        String
    fix.PaymentMethod  PaymentMethod (492)
        String
    fix.PaymentRef  PaymentRef (476)
        String
    fix.PaymentRemitterID  PaymentRemitterID (505)
        String
    fix.PctAtRisk  PctAtRisk (869)
        String
    fix.PegLimitType  PegLimitType (837)
        String
    fix.PegMoveType  PegMoveType (835)
        String
    fix.PegOffsetType  PegOffsetType (836)
        String
    fix.PegOffsetValue  PegOffsetValue (211)
        String
    fix.PegRoundDirection  PegRoundDirection (838)
        String
    fix.PegScope  PegScope (840)
        String
    fix.PeggedPrice  PeggedPrice (839)
        String
    fix.Pool  Pool (691)
        String
    fix.PosAmt  PosAmt (708)
        String
    fix.PosAmtType  PosAmtType (707)
        String
    fix.PosMaintAction  PosMaintAction (712)
        String
    fix.PosMaintResult  PosMaintResult (723)
        String
    fix.PosMaintRptID  PosMaintRptID (721)
        String
    fix.PosMaintRptRefID  PosMaintRptRefID (714)
        String
    fix.PosMaintStatus  PosMaintStatus (722)
        String
    fix.PosQtyStatus  PosQtyStatus (706)
        String
    fix.PosReqID  PosReqID (710)
        String
    fix.PosReqResult  PosReqResult (728)
        String
    fix.PosReqStatus  PosReqStatus (729)
        String
    fix.PosReqType  PosReqType (724)
        String
    fix.PosTransType  PosTransType (709)
        String
    fix.PosType  PosType (703)
        String
    fix.PositionEffect  PositionEffect (77)
        String
    fix.PossDupFlag  PossDupFlag (43)
        String
    fix.PossResend  PossResend (97)
        String
    fix.PreallocMethod  PreallocMethod (591)
        String
    fix.PrevClosePx  PrevClosePx (140)
        String
    fix.PreviouslyReported  PreviouslyReported (570)
        String
    fix.Price  Price (44)
        String
    fix.Price2  Price2 (640)
        String
    fix.PriceDelta  PriceDelta (811)
        String
    fix.PriceImprovement  PriceImprovement (639)
        String
    fix.PriceType  PriceType (423)
        String
    fix.PriorSettlPrice  PriorSettlPrice (734)
        String
    fix.PriorSpreadIndicator  PriorSpreadIndicator (720)
        String
    fix.PriorityIndicator  PriorityIndicator (638)
        String
    fix.ProcessCode  ProcessCode (81)
        String
    fix.Product  Product (460)
        String
    fix.ProgPeriodInterval  ProgPeriodInterval (415)
        String
    fix.ProgRptReqs  ProgRptReqs (414)
        String
    fix.PublishTrdIndicator  PublishTrdIndicator (852)
        String
    fix.PutOrCall  PutOrCall (201)
        String
    fix.QtyType  QtyType (854)
        String
    fix.Quantity  Quantity (53)
        String
    fix.QuantityType  QuantityType (465)
        String
    fix.QuoteCancelType  QuoteCancelType (298)
        String
    fix.QuoteCondition  QuoteCondition (276)
        String
    fix.QuoteEntryID  QuoteEntryID (299)
        String
    fix.QuoteEntryRejectReason  QuoteEntryRejectReason (368)
        String
    fix.QuoteID  QuoteID (117)
        String
    fix.QuotePriceType  QuotePriceType (692)
        String
    fix.QuoteQualifier  QuoteQualifier (695)
        String
    fix.QuoteRejectReason  QuoteRejectReason (300)
        String
    fix.QuoteReqID  QuoteReqID (131)
        String
    fix.QuoteRequestRejectReason  QuoteRequestRejectReason (658)
        String
    fix.QuoteRequestType  QuoteRequestType (303)
        String
    fix.QuoteRespID  QuoteRespID (693)
        String
    fix.QuoteRespType  QuoteRespType (694)
        String
    fix.QuoteResponseLevel  QuoteResponseLevel (301)
        String
    fix.QuoteSetID  QuoteSetID (302)
        String
    fix.QuoteSetValidUntilTime  QuoteSetValidUntilTime (367)
        String
    fix.QuoteStatus  QuoteStatus (297)
        String
    fix.QuoteStatusReqID  QuoteStatusReqID (649)
        String
    fix.QuoteType  QuoteType (537)
        String
    fix.RFQReqID  RFQReqID (644)
        String
    fix.RatioQty  RatioQty (319)
        String
    fix.RawData  RawData (96)
        String
    fix.RawDataLength  RawDataLength (95)
        String
    fix.RedemptionDate  RedemptionDate (240)
        String
    fix.RefAllocID  RefAllocID (72)
        String
    fix.RefCompID  RefCompID (930)
        String
    fix.RefMsgType  RefMsgType (372)
        String
    fix.RefSeqNum  RefSeqNum (45)
        String
    fix.RefSubID  RefSubID (931)
        String
    fix.RefTagID  RefTagID (371)
        String
    fix.RegistAcctType  RegistAcctType (493)
        String
    fix.RegistDtls  RegistDtls (509)
        String
    fix.RegistEmail  RegistEmail (511)
        String
    fix.RegistID  RegistID (513)
        String
    fix.RegistRefID  RegistRefID (508)
        String
    fix.RegistRejReasonCode  RegistRejReasonCode (507)
        String
    fix.RegistRejReasonText  RegistRejReasonText (496)
        String
    fix.RegistStatus  RegistStatus (506)
        String
    fix.RegistTransType  RegistTransType (514)
        String
    fix.RelatdSym  RelatdSym (46)
        String
    fix.RepoCollateralSecurityType  RepoCollateralSecurityType (239)
        String
    fix.ReportToExch  ReportToExch (113)
        String
    fix.ReportedPx  ReportedPx (861)
        String
    fix.RepurchaseRate  RepurchaseRate (227)
        String
    fix.RepurchaseTerm  RepurchaseTerm (226)
        String
    fix.ResetSeqNumFlag  ResetSeqNumFlag (141)
        String
    fix.ResponseDestination  ResponseDestination (726)
        String
    fix.ResponseTransportType  ResponseTransportType (725)
        String
    fix.ReversalIndicator  ReversalIndicator (700)
        String
    fix.RoundLot  RoundLot (561)
        String
    fix.RoundingDirection  RoundingDirection (468)
        String
    fix.RoundingModulus  RoundingModulus (469)
        String
    fix.RoutingID  RoutingID (217)
        String
    fix.RoutingType  RoutingType (216)
        String
    fix.RptSeq  RptSeq (83)
        String
    fix.Rule80A  Rule80A (47)
        String
    fix.Scope  Scope (546)
        String
    fix.SecDefStatus  SecDefStatus (653)
        String
    fix.SecondaryAllocID  SecondaryAllocID (793)
        String
    fix.SecondaryClOrdID  SecondaryClOrdID (526)
        String
    fix.SecondaryExecID  SecondaryExecID (527)
        String
    fix.SecondaryOrderID  SecondaryOrderID (198)
        String
    fix.SecondaryTradeReportID  SecondaryTradeReportID (818)
        String
    fix.SecondaryTradeReportRefID  SecondaryTradeReportRefID (881)
        String
    fix.SecondaryTrdType  SecondaryTrdType (855)
        String
    fix.SecureData  SecureData (91)
        String
    fix.SecureDataLen  SecureDataLen (90)
        String
    fix.SecurityAltID  SecurityAltID (455)
        String
    fix.SecurityAltIDSource  SecurityAltIDSource (456)
        String
    fix.SecurityDesc  SecurityDesc (107)
        String
    fix.SecurityExchange  SecurityExchange (207)
        String
    fix.SecurityID  SecurityID (48)
        String
    fix.SecurityIDSource  SecurityIDSource (22)
        String
    fix.SecurityListRequestType  SecurityListRequestType (559)
        String
    fix.SecurityReqID  SecurityReqID (320)
        String
    fix.SecurityRequestResult  SecurityRequestResult (560)
        String
    fix.SecurityRequestType  SecurityRequestType (321)
        String
    fix.SecurityResponseID  SecurityResponseID (322)
        String
    fix.SecurityResponseType  SecurityResponseType (323)
        String
    fix.SecuritySettlAgentAcctName  SecuritySettlAgentAcctName (179)
        String
    fix.SecuritySettlAgentAcctNum  SecuritySettlAgentAcctNum (178)
        String
    fix.SecuritySettlAgentCode  SecuritySettlAgentCode (177)
        String
    fix.SecuritySettlAgentContactName  SecuritySettlAgentContactName (180)
        String
    fix.SecuritySettlAgentContactPhone  SecuritySettlAgentContactPhone (181)
        String
    fix.SecuritySettlAgentName  SecuritySettlAgentName (176)
        String
    fix.SecurityStatusReqID  SecurityStatusReqID (324)
        String
    fix.SecuritySubType  SecuritySubType (762)
        String
    fix.SecurityTradingStatus  SecurityTradingStatus (326)
        String
    fix.SecurityType  SecurityType (167)
        String
    fix.SellVolume  SellVolume (331)
        String
    fix.SellerDays  SellerDays (287)
        String
    fix.SenderCompID  SenderCompID (49)
        String
    fix.SenderLocationID  SenderLocationID (142)
        String
    fix.SenderSubID  SenderSubID (50)
        String
    fix.SendingDate  SendingDate (51)
        String
    fix.SendingTime  SendingTime (52)
        String
    fix.SessionRejectReason  SessionRejectReason (373)
        String
    fix.SettlBrkrCode  SettlBrkrCode (174)
        String
    fix.SettlCurrAmt  SettlCurrAmt (119)
        String
    fix.SettlCurrBidFxRate  SettlCurrBidFxRate (656)
        String
    fix.SettlCurrFxRate  SettlCurrFxRate (155)
        String
    fix.SettlCurrFxRateCalc  SettlCurrFxRateCalc (156)
        String
    fix.SettlCurrOfferFxRate  SettlCurrOfferFxRate (657)
        String
    fix.SettlCurrency  SettlCurrency (120)
        String
    fix.SettlDate  SettlDate (64)
        String
    fix.SettlDate2  SettlDate2 (193)
        String
    fix.SettlDeliveryType  SettlDeliveryType (172)
        String
    fix.SettlDepositoryCode  SettlDepositoryCode (173)
        String
    fix.SettlInstCode  SettlInstCode (175)
        String
    fix.SettlInstID  SettlInstID (162)
        String
    fix.SettlInstMode  SettlInstMode (160)
        String
    fix.SettlInstMsgID  SettlInstMsgID (777)
        String
    fix.SettlInstRefID  SettlInstRefID (214)
        String
    fix.SettlInstReqID  SettlInstReqID (791)
        String
    fix.SettlInstReqRejCode  SettlInstReqRejCode (792)
        String
    fix.SettlInstSource  SettlInstSource (165)
        String
    fix.SettlInstTransType  SettlInstTransType (163)
        String
    fix.SettlLocation  SettlLocation (166)
        String
    fix.SettlPartyID  SettlPartyID (782)
        String
    fix.SettlPartyIDSource  SettlPartyIDSource (783)
        String
    fix.SettlPartyRole  SettlPartyRole (784)
        String
    fix.SettlPartySubID  SettlPartySubID (785)
        String
    fix.SettlPartySubIDType  SettlPartySubIDType (786)
        String
    fix.SettlPrice  SettlPrice (730)
        String
    fix.SettlPriceType  SettlPriceType (731)
        String
    fix.SettlSessID  SettlSessID (716)
        String
    fix.SettlSessSubID  SettlSessSubID (717)
        String
    fix.SettlType  SettlType (63)
        String
    fix.SharedCommission  SharedCommission (858)
        String
    fix.ShortQty  ShortQty (705)
        String
    fix.ShortSaleReason  ShortSaleReason (853)
        String
    fix.Side  Side (54)
        String
    fix.SideComplianceID  SideComplianceID (659)
        String
    fix.SideMultiLegReportingType  SideMultiLegReportingType (752)
        String
    fix.SideValue1  SideValue1 (396)
        String
    fix.SideValue2  SideValue2 (397)
        String
    fix.SideValueInd  SideValueInd (401)
        String
    fix.Signature  Signature (89)
        String
    fix.SignatureLength  SignatureLength (93)
        String
    fix.SolicitedFlag  SolicitedFlag (377)
        String
    fix.Spread  Spread (218)
        String
    fix.StandInstDbID  StandInstDbID (171)
        String
    fix.StandInstDbName  StandInstDbName (170)
        String
    fix.StandInstDbType  StandInstDbType (169)
        String
    fix.StartCash  StartCash (921)
        String
    fix.StartDate  StartDate (916)
        String
    fix.StateOrProvinceOfIssue  StateOrProvinceOfIssue (471)
        String
    fix.StatusText  StatusText (929)
        String
    fix.StatusValue  StatusValue (928)
        String
    fix.StipulationType  StipulationType (233)
        String
    fix.StipulationValue  StipulationValue (234)
        String
    fix.StopPx  StopPx (99)
        String
    fix.StrikeCurrency  StrikeCurrency (947)
        String
    fix.StrikePrice  StrikePrice (202)
        String
    fix.StrikeTime  StrikeTime (443)
        String
    fix.Subject  Subject (147)
        String
    fix.SubscriptionRequestType  SubscriptionRequestType (263)
        String
    fix.Symbol  Symbol (55)
        String
    fix.SymbolSfx  SymbolSfx (65)
        String
    fix.TargetCompID  TargetCompID (56)
        String
    fix.TargetLocationID  TargetLocationID (143)
        String
    fix.TargetStrategy  TargetStrategy (847)
        String
    fix.TargetStrategyParameters  TargetStrategyParameters (848)
        String
    fix.TargetStrategyPerformance  TargetStrategyPerformance (850)
        String
    fix.TargetSubID  TargetSubID (57)
        String
    fix.TaxAdvantageType  TaxAdvantageType (495)
        String
    fix.TerminationType  TerminationType (788)
        String
    fix.TestMessageIndicator  TestMessageIndicator (464)
        String
    fix.TestReqID  TestReqID (112)
        String
    fix.Text  Text (58)
        String
    fix.ThresholdAmount  ThresholdAmount (834)
        String
    fix.TickDirection  TickDirection (274)
        String
    fix.TimeBracket  TimeBracket (943)
        String
    fix.TimeInForce  TimeInForce (59)
        String
    fix.TotNoAllocs  TotNoAllocs (892)
        String
    fix.TotNoOrders  TotNoOrders (68)
        String
    fix.TotNoQuoteEntries  TotNoQuoteEntries (304)
        String
    fix.TotNoRelatedSym  TotNoRelatedSym (393)
        String
    fix.TotNoSecurityTypes  TotNoSecurityTypes (557)
        String
    fix.TotNoStrikes  TotNoStrikes (422)
        String
    fix.TotNumAssignmentReports  TotNumAssignmentReports (832)
        String
    fix.TotNumReports  TotNumReports (911)
        String
    fix.TotNumTradeReports  TotNumTradeReports (748)
        String
    fix.TotalAccruedInterestAmt  TotalAccruedInterestAmt (540)
        String
    fix.TotalAffectedOrders  TotalAffectedOrders (533)
        String
    fix.TotalNetValue  TotalNetValue (900)
        String
    fix.TotalNumPosReports  TotalNumPosReports (727)
        String
    fix.TotalTakedown  TotalTakedown (237)
        String
    fix.TotalVolumeTraded  TotalVolumeTraded (387)
        String
    fix.TotalVolumeTradedDate  TotalVolumeTradedDate (449)
        String
    fix.TotalVolumeTradedTime  TotalVolumeTradedTime (450)
        String
    fix.TradSesCloseTime  TradSesCloseTime (344)
        String
    fix.TradSesEndTime  TradSesEndTime (345)
        String
    fix.TradSesMethod  TradSesMethod (338)
        String
    fix.TradSesMode  TradSesMode (339)
        String
    fix.TradSesOpenTime  TradSesOpenTime (342)
        String
    fix.TradSesPreCloseTime  TradSesPreCloseTime (343)
        String
    fix.TradSesReqID  TradSesReqID (335)
        String
    fix.TradSesStartTime  TradSesStartTime (341)
        String
    fix.TradSesStatus  TradSesStatus (340)
        String
    fix.TradSesStatusRejReason  TradSesStatusRejReason (567)
        String
    fix.TradeAllocIndicator  TradeAllocIndicator (826)
        String
    fix.TradeCondition  TradeCondition (277)
        String
    fix.TradeDate  TradeDate (75)
        String
    fix.TradeInputDevice  TradeInputDevice (579)
        String
    fix.TradeInputSource  TradeInputSource (578)
        String
    fix.TradeLegRefID  TradeLegRefID (824)
        String
    fix.TradeLinkID  TradeLinkID (820)
        String
    fix.TradeOriginationDate  TradeOriginationDate (229)
        String
    fix.TradeReportID  TradeReportID (571)
        String
    fix.TradeReportRefID  TradeReportRefID (572)
        String
    fix.TradeReportRejectReason  TradeReportRejectReason (751)
        String
    fix.TradeReportTransType  TradeReportTransType (487)
        String
    fix.TradeReportType  TradeReportType (856)
        String
    fix.TradeRequestID  TradeRequestID (568)
        String
    fix.TradeRequestResult  TradeRequestResult (749)
        String
    fix.TradeRequestStatus  TradeRequestStatus (750)
        String
    fix.TradeRequestType  TradeRequestType (569)
        String
    fix.TradedFlatSwitch  TradedFlatSwitch (258)
        String
    fix.TradingSessionID  TradingSessionID (336)
        String
    fix.TradingSessionSubID  TradingSessionSubID (625)
        String
    fix.TransBkdTime  TransBkdTime (483)
        String
    fix.TransactTime  TransactTime (60)
        String
    fix.TransferReason  TransferReason (830)
        String
    fix.TrdMatchID  TrdMatchID (880)
        String
    fix.TrdRegTimestamp  TrdRegTimestamp (769)
        String
    fix.TrdRegTimestampOrigin  TrdRegTimestampOrigin (771)
        String
    fix.TrdRegTimestampType  TrdRegTimestampType (770)
        String
    fix.TrdRptStatus  TrdRptStatus (939)
        String
    fix.TrdSubType  TrdSubType (829)
        String
    fix.TrdType  TrdType (828)
        String
    fix.URLLink  URLLink (149)
        String
    fix.UnderlyingCFICode  UnderlyingCFICode (463)
        String
    fix.UnderlyingCPProgram  UnderlyingCPProgram (877)
        String
    fix.UnderlyingCPRegType  UnderlyingCPRegType (878)
        String
    fix.UnderlyingContractMultiplier  UnderlyingContractMultiplier (436)
        String
    fix.UnderlyingCountryOfIssue  UnderlyingCountryOfIssue (592)
        String
    fix.UnderlyingCouponPaymentDate  UnderlyingCouponPaymentDate (241)
        String
    fix.UnderlyingCouponRate  UnderlyingCouponRate (435)
        String
    fix.UnderlyingCreditRating  UnderlyingCreditRating (256)
        String
    fix.UnderlyingCurrency  UnderlyingCurrency (318)
        String
    fix.UnderlyingCurrentValue  UnderlyingCurrentValue (885)
        String
    fix.UnderlyingDirtyPrice  UnderlyingDirtyPrice (882)
        String
    fix.UnderlyingEndPrice  UnderlyingEndPrice (883)
        String
    fix.UnderlyingEndValue  UnderlyingEndValue (886)
        String
    fix.UnderlyingFactor  UnderlyingFactor (246)
        String
    fix.UnderlyingInstrRegistry  UnderlyingInstrRegistry (595)
        String
    fix.UnderlyingIssueDate  UnderlyingIssueDate (242)
        String
    fix.UnderlyingIssuer  UnderlyingIssuer (306)
        String
    fix.UnderlyingLastPx  UnderlyingLastPx (651)
        String
    fix.UnderlyingLastQty  UnderlyingLastQty (652)
        String
    fix.UnderlyingLocaleOfIssue  UnderlyingLocaleOfIssue (594)
        String
    fix.UnderlyingMaturityDate  UnderlyingMaturityDate (542)
        String
    fix.UnderlyingMaturityDay  UnderlyingMaturityDay (314)
        String
    fix.UnderlyingMaturityMonthYear  UnderlyingMaturityMonthYear (313)
        String
    fix.UnderlyingOptAttribute  UnderlyingOptAttribute (317)
        String
    fix.UnderlyingProduct  UnderlyingProduct (462)
        String
    fix.UnderlyingPutOrCall  UnderlyingPutOrCall (315)
        String
    fix.UnderlyingPx  UnderlyingPx (810)
        String
    fix.UnderlyingQty  UnderlyingQty (879)
        String
    fix.UnderlyingRedemptionDate  UnderlyingRedemptionDate (247)
        String
    fix.UnderlyingRepoCollateralSecurityType  UnderlyingRepoCollateralSecurityType (243)
        String
    fix.UnderlyingRepurchaseRate  UnderlyingRepurchaseRate (245)
        String
    fix.UnderlyingRepurchaseTerm  UnderlyingRepurchaseTerm (244)
        String
    fix.UnderlyingSecurityAltID  UnderlyingSecurityAltID (458)
        String
    fix.UnderlyingSecurityAltIDSource  UnderlyingSecurityAltIDSource (459)
        String
    fix.UnderlyingSecurityDesc  UnderlyingSecurityDesc (307)
        String
    fix.UnderlyingSecurityExchange  UnderlyingSecurityExchange (308)
        String
    fix.UnderlyingSecurityID  UnderlyingSecurityID (309)
        String
    fix.UnderlyingSecurityIDSource  UnderlyingSecurityIDSource (305)
        String
    fix.UnderlyingSecuritySubType  UnderlyingSecuritySubType (763)
        String
    fix.UnderlyingSecurityType  UnderlyingSecurityType (310)
        String
    fix.UnderlyingSettlPrice  UnderlyingSettlPrice (732)
        String
    fix.UnderlyingSettlPriceType  UnderlyingSettlPriceType (733)
        String
    fix.UnderlyingStartValue  UnderlyingStartValue (884)
        String
    fix.UnderlyingStateOrProvinceOfIssue  UnderlyingStateOrProvinceOfIssue (593)
        String
    fix.UnderlyingStipType  UnderlyingStipType (888)
        String
    fix.UnderlyingStipValue  UnderlyingStipValue (889)
        String
    fix.UnderlyingStrikeCurrency  UnderlyingStrikeCurrency (941)
        String
    fix.UnderlyingStrikePrice  UnderlyingStrikePrice (316)
        String
    fix.UnderlyingSymbol  UnderlyingSymbol (311)
        String
    fix.UnderlyingSymbolSfx  UnderlyingSymbolSfx (312)
        String
    fix.UnderlyingTradingSessionID  UnderlyingTradingSessionID (822)
        String
    fix.UnderlyingTradingSessionSubID  UnderlyingTradingSessionSubID (823)
        String
    fix.UnsolicitedIndicator  UnsolicitedIndicator (325)
        String
    fix.Urgency  Urgency (61)
        String
    fix.UserRequestID  UserRequestID (923)
        String
    fix.UserRequestType  UserRequestType (924)
        String
    fix.UserStatus  UserStatus (926)
        String
    fix.UserStatusText  UserStatusText (927)
        String
    fix.Username  Username (553)
        String
    fix.ValidUntilTime  ValidUntilTime (62)
        String
    fix.ValueOfFutures  ValueOfFutures (408)
        String
    fix.WaveNo  WaveNo (105)
        String
    fix.WorkingIndicator  WorkingIndicator (636)
        String
    fix.WtAverageLiquidity  WtAverageLiquidity (410)
        String
    fix.XmlData  XmlData (213)
        String
    fix.XmlDataLen  XmlDataLen (212)
        String
    fix.Yield  Yield (236)
        String
    fix.YieldCalcDate  YieldCalcDate (701)
        String
    fix.YieldRedemptionDate  YieldRedemptionDate (696)
        String
    fix.YieldRedemptionPrice  YieldRedemptionPrice (697)
        String
    fix.YieldRedemptionPriceType  YieldRedemptionPriceType (698)
        String
    fix.YieldType  YieldType (235)
        String
    fix.checksum_bad  Bad Checksum
        Boolean
        True: checksum doesn't match packet content; False: matches content or not checked
    fix.checksum_good  Good Checksum
        Boolean
        True: checksum matches packet content; False: doesn't match content or not checked
    fix.data  Continuation Data
        Byte array
    fix.field.tag  Field Tag
        Unsigned 16-bit integer
        Field length.
    fix.field.value  Field Value
        String
        Field value

Firebird SQL Database Remote Protocol (gdsdb)

    gdsdb.accept.arch  Architecture
        Unsigned 32-bit integer
    gdsdb.accept.version  Version
        Unsigned 32-bit integer
    gdsdb.attach.database  Database
        Unsigned 32-bit integer
    gdsdb.attach.dpblength  Database parameter block
        Unsigned 32-bit integer
    gdsdb.attach.filename  Filename
        Length string pair
    gdsdb.compile.blr  BLR
        Length string pair
    gdsdb.compile.filename  Database
        Unsigned 32-bit integer
    gdsdb.connect.client  Client Architecture
        Unsigned 32-bit integer
    gdsdb.connect.count  Version option count
        Unsigned 32-bit integer
    gdsdb.connect.filename  Filename
        Length string pair
    gdsdb.connect.object  Object
        Unsigned 32-bit integer
    gdsdb.connect.operation  Operation
        Unsigned 32-bit integer
    gdsdb.connect.partner  Partner
        Unsigned 64-bit integer
    gdsdb.connect.pref  Preferred version
        No value
    gdsdb.connect.pref.arch  Architecture
        Unsigned 32-bit integer
    gdsdb.connect.pref.maxtype  Maximum type
        Unsigned 32-bit integer
    gdsdb.connect.pref.mintype  Minimum type
        Unsigned 32-bit integer
    gdsdb.connect.pref.version  Version
        Unsigned 32-bit integer
    gdsdb.connect.pref.weight  Preference weight
        Unsigned 32-bit integer
    gdsdb.connect.type  Type
        Unsigned 32-bit integer
    gdsdb.connect.userid  User ID
        Length string pair
    gdsdb.connect.version  Version
        Unsigned 32-bit integer
    gdsdb.cursor.statement  Statement
        Unsigned 32-bit integer
    gdsdb.cursor.type  Type
        Unsigned 32-bit integer
    gdsdb.ddl.blr  BLR
        Length string pair
    gdsdb.ddl.database  Database
        Unsigned 32-bit integer
    gdsdb.ddl.transaction  Transaction
        Unsigned 32-bit integer
    gdsdb.event.arg  Argument to ast routine
        Unsigned 32-bit integer
    gdsdb.event.ast  ast routine
        Unsigned 32-bit integer
    gdsdb.event.database  Database
        Unsigned 32-bit integer
    gdsdb.event.id  ID
        Unsigned 32-bit integer
    gdsdb.event.items  Event description block
        Length string pair
    gdsdb.execute.messagenumber  Message number
        Unsigned 32-bit integer
    gdsdb.execute.messages  Number of messages
        Unsigned 32-bit integer
    gdsdb.execute.outblr  Output BLR
        Unsigned 32-bit integer
    gdsdb.execute.outmsgnr  Output Message number
        Unsigned 32-bit integer
    gdsdb.execute.statement  Statement
        Unsigned 32-bit integer
    gdsdb.execute.transaction  Transaction
        Unsigned 32-bit integer
    gdsdb.fetch.messagenr  Message number
        Unsigned 32-bit integer
    gdsdb.fetch.messages  Number of messages
        Unsigned 32-bit integer
    gdsdb.fetch.statement  Statement
        Unsigned 32-bit integer
    gdsdb.fetchresponse.messages  Number of messages
        Unsigned 32-bit integer
    gdsdb.fetchresponse.option  Option
        Unsigned 32-bit integer
    gdsdb.fetchresponse.statement  Statement
        Unsigned 32-bit integer
    gdsdb.fetchresponse.status  Status
        Unsigned 32-bit integer
    gdsdb.info.bufferlength  Buffer length
        Unsigned 32-bit integer
    gdsdb.info.items  Items
        Length string pair
    gdsdb.info.object  Object
        Unsigned 32-bit integer
    gdsdb.insert.messagenr  Message number
        Unsigned 32-bit integer
    gdsdb.insert.messages  Number of messages
        Unsigned 32-bit integer
    gdsdb.insert.statement  Statement
        Unsigned 32-bit integer
    gdsdb.opcode  Opcode
        Unsigned 32-bit integer
    gdsdb.openblob.id  ID
        Unsigned 64-bit integer
    gdsdb.openblob2.bpb  Blob parameter block
        Length string pair
    gdsdb.openblob2.transaction  Transaction
        Unsigned 32-bit integer
    gdsdb.prepare.blr  BLR
        Unsigned 32-bit integer
    gdsdb.prepare.bufferlen  Prepare, Bufferlength
        Unsigned 32-bit integer
    gdsdb.prepare.dialect  Prepare, Dialect
        Unsigned 32-bit integer
    gdsdb.prepare.items  Prepare, Information items
        Unsigned 32-bit integer
    gdsdb.prepare.querystr  Prepare, Query
        Length string pair
    gdsdb.prepare.statement  Prepare, Statement
        Unsigned 32-bit integer
    gdsdb.prepare.transaction  Prepare, Transaction
        Unsigned 32-bit integer
    gdsdb.prepare2.messagenumber  Message number
        Unsigned 32-bit integer
    gdsdb.prepare2.messages  Number of messages
        Unsigned 32-bit integer
    gdsdb.prepare2.outblr  Output BLR
        Unsigned 32-bit integer
    gdsdb.prepare2.outmsgnr  Output Message number
        Unsigned 32-bit integer
    gdsdb.prepare2.transaction  Transaction
        Unsigned 32-bit integer
    gdsdb.receive.direction  Scroll direction
        Unsigned 32-bit integer
    gdsdb.receive.incarnation  Incarnation
        Unsigned 32-bit integer
    gdsdb.receive.msgcount  Message Count
        Unsigned 32-bit integer
    gdsdb.receive.msgnr  Message number
        Unsigned 32-bit integer
    gdsdb.receive.offset  Scroll offset
        Unsigned 32-bit integer
    gdsdb.receive.request  Request
        Unsigned 32-bit integer
    gdsdb.receive.transaction  Transaction
        Unsigned 32-bit integer
    gdsdb.reconnect.database  Database
        Unsigned 32-bit integer
    gdsdb.release.object  Object
        Unsigned 32-bit integer
    gdsdb.response.blobid  Blob ID
        Unsigned 64-bit integer
    gdsdb.response.data  Data
        Length string pair
    gdsdb.response.object  Response object
        Unsigned 32-bit integer
    gdsdb.response.status  Status vector
        No value
    gdsdb.seekblob.blob  Blob
        Unsigned 32-bit integer
    gdsdb.seekblob.mode  Mode
        Unsigned 32-bit integer
    gdsdb.segment.blob  Blob
        Unsigned 32-bit integer
    gdsdb.segment.length  Length
        Unsigned 32-bit integer
    gdsdb.segment.segment  Segment
        Length string pair
    gdsdb.send.incarnation  Send request
        Unsigned 32-bit integer
    gdsdb.send.messages  Send request
        Unsigned 32-bit integer
    gdsdb.send.msgnr  Send request
        Unsigned 32-bit integer
    gdsdb.send.request  Send request
        Unsigned 32-bit integer
    gdsdb.send.transaction  Send request
        Unsigned 32-bit integer
    gdsdb.slice.id  ID
        Unsigned 64-bit integer
    gdsdb.slice.parameters  Parameters
        Unsigned 32-bit integer
    gdsdb.slice.sdl  Slice description language
        Length string pair
    gdsdb.slice.transaction  Transaction
        Unsigned 32-bit integer
    gdsdb.sliceresponse.length  Length
        Unsigned 32-bit integer
    gdsdb.sqlresponse.msgcount  SQL Response, Message Count
        Unsigned 32-bit integer
    gdsdb.transact.database  Database
        Unsigned 32-bit integer
    gdsdb.transact.messages  Messages
        Unsigned 32-bit integer
    gdsdb.transact.transaction  Database
        Unsigned 32-bit integer
    gdsdb.transactresponse.messages  Messages
        Unsigned 32-bit integer

Fractal Generator Protocol (fractalgeneratorprotocol)

    fractalgeneratorprotocol.buffer  Buffer
        Byte array
    fractalgeneratorprotocol.data_points  Points
        Unsigned 32-bit integer
    fractalgeneratorprotocol.data_start_x  StartX
        Unsigned 32-bit integer
    fractalgeneratorprotocol.data_start_y  StartY
        Unsigned 32-bit integer
    fractalgeneratorprotocol.message_flags  Flags
        Unsigned 8-bit integer
    fractalgeneratorprotocol.message_length  Length
        Unsigned 16-bit integer
    fractalgeneratorprotocol.message_type  Type
        Unsigned 8-bit integer
    fractalgeneratorprotocol.parameter_algorithmid  AlgorithmID
        Unsigned 32-bit integer
    fractalgeneratorprotocol.parameter_c1imag  C1Imag
        Double-precision floating point
    fractalgeneratorprotocol.parameter_c1real  C1Real
        Double-precision floating point
    fractalgeneratorprotocol.parameter_c2imag  C2Imag
        Double-precision floating point
    fractalgeneratorprotocol.parameter_c2real  C2Real
        Double-precision floating point
    fractalgeneratorprotocol.parameter_height  Height
        Unsigned 32-bit integer
    fractalgeneratorprotocol.parameter_maxiterations  MaxIterations
        Unsigned 32-bit integer
    fractalgeneratorprotocol.parameter_n  N
        Double-precision floating point
    fractalgeneratorprotocol.parameter_width  Width
        Unsigned 32-bit integer

Frame (frame)

    frame.cap_len  Frame length stored into the capture file
        Unsigned 32-bit integer
    frame.coloring_rule.name  Coloring Rule Name
        String
        The frame matched the coloring rule with this name
    frame.coloring_rule.string  Coloring Rule String
        String
        The frame matched this coloring rule string
    frame.file_off  File Offset
        Signed 64-bit integer
    frame.ignored  Frame is ignored
        Boolean
        Frame is ignored by the dissectors
    frame.len  Frame length on the wire
        Unsigned 32-bit integer
    frame.link_nr  Link Number
        Unsigned 16-bit integer
    frame.marked  Frame is marked
        Boolean
        Frame is marked in the GUI
    frame.md5_hash  Frame MD5 Hash
        String
    frame.number  Frame Number
        Unsigned 32-bit integer
    frame.p2p_dir  Point-to-Point Direction
        Signed 8-bit integer
    frame.protocols  Protocols in frame
        String
        Protocols carried by this frame
    frame.ref_time  This is a Time Reference frame
        No value
        This frame is a Time Reference frame
    frame.time  Arrival Time
        Date/Time stamp
        Absolute time when this frame was captured
    frame.time_delta  Time delta from previous captured frame
        Time duration
    frame.time_delta_displayed  Time delta from previous displayed frame
        Time duration
    frame.time_epoch  Epoch Time
        Time duration
        Epoch time when this frame was captured
    frame.time_invalid  Arrival Timestamp invalid
        No value
        The timestamp from the capture is out of the valid range
    frame.time_relative  Time since reference or first frame
        Time duration
        Time relative to time reference or first frame

Frame Relay (fr)

    fr.becn  BECN
        Boolean
        Backward Explicit Congestion Notification
    fr.chdlctype  Type
        Unsigned 16-bit integer
        Frame Relay Cisco HDLC Encapsulated Protocol
    fr.control  Control Field
        Unsigned 8-bit integer
        Control field
    fr.control.f  Final
        Boolean
    fr.control.ftype  Frame type
        Unsigned 16-bit integer
    fr.control.n_r  N(R)
        Unsigned 16-bit integer
    fr.control.n_s  N(S)
        Unsigned 16-bit integer
    fr.control.p  Poll
        Boolean
    fr.control.s_ftype  Supervisory frame type
        Unsigned 16-bit integer
    fr.control.u_modifier_cmd  Command
        Unsigned 8-bit integer
    fr.control.u_modifier_resp  Response
        Unsigned 8-bit integer
    fr.cr  CR
        Boolean
        Command/Response
    fr.dc  DC
        Boolean
        Address/Control
    fr.de  DE
        Boolean
        Discard Eligibility
    fr.dlci  DLCI
        Unsigned 32-bit integer
        Data-Link Connection Identifier
    fr.dlcore_control  DL-CORE Control
        Unsigned 8-bit integer
        DL-Core control bits
    fr.ea  EA
        Boolean
        Extended Address
    fr.fecn  FECN
        Boolean
        Forward Explicit Congestion Notification
    fr.lower_dlci  Lower DLCI
        Unsigned 8-bit integer
        Lower bits of DLCI
    fr.nlpid  NLPID
        Unsigned 8-bit integer
        Frame Relay Encapsulated Protocol NLPID
    fr.second_dlci  Second DLCI
        Unsigned 8-bit integer
        Bits below upper bits of DLCI
    fr.snap.oui  Organization Code
        Unsigned 24-bit integer
    fr.snap.pid  Protocol ID
        Unsigned 16-bit integer
    fr.snaptype  Type
        Unsigned 16-bit integer
        Frame Relay SNAP Encapsulated Protocol
    fr.third_dlci  Third DLCI
        Unsigned 8-bit integer
        Additional bits of DLCI
    fr.upper_dlci  Upper DLCI
        Unsigned 8-bit integer
        Upper bits of DLCI

G.723 (g723)

    g723.frame_size_and_codec  Frame size and codec type
        Unsigned 8-bit integer
        RATEFLAG_B0
    g723.lpc.b5b0  LPC_B5...LPC_B0
        Unsigned 8-bit integer

GARP Multicast Registration Protocol (gmrp)

    gmrp.attribute_event  Event
        Unsigned 8-bit integer
    gmrp.attribute_length  Length
        Unsigned 8-bit integer
    gmrp.attribute_type  Type
        Unsigned 8-bit integer
    gmrp.attribute_value_group_membership  Value
        6-byte Hardware (MAC) Address
    gmrp.attribute_value_service_requirement  Value
        Unsigned 8-bit integer
    gmrp.protocol_id  Protocol ID
        Unsigned 16-bit integer

GARP VLAN Registration Protocol (gvrp)

    gvrp.attribute_event  Event
        Unsigned 8-bit integer
    gvrp.attribute_length  Length
        Unsigned 8-bit integer
    gvrp.attribute_type  Type
        Unsigned 8-bit integer
    gvrp.attribute_value  Value
        Unsigned 16-bit integer
    gvrp.protocol_id  Protocol ID
        Unsigned 16-bit integer

GOOSE (goose)

    goose.Data  Data
        Unsigned 32-bit integer
    goose.RequestResults  RequestResults
        Unsigned 32-bit integer
    goose.allData  allData
        Unsigned 32-bit integer
        SEQUENCE_OF_Data
    goose.appid  APPID
        Unsigned 16-bit integer
    goose.array  array
        Unsigned 32-bit integer
        SEQUENCE_OF_Data
    goose.bcd  bcd
        Signed 32-bit integer
        INTEGER
    goose.binary_time  binary-time
        Byte array
        TimeOfDay
    goose.bit_string  bit-string
        Byte array
    goose.boolean  boolean
        Boolean
    goose.booleanArray  booleanArray
        Byte array
        BIT_STRING
    goose.confRev  confRev
        Signed 32-bit integer
        INTEGER
    goose.datSet  datSet
        String
        VisibleString
    goose.error  error
        Signed 32-bit integer
        ErrorReason
    goose.floating_point  floating-point
        Byte array
        FloatingPoint
    goose.getGOOSEElementNumber  getGOOSEElementNumber
        No value
        GetElementRequestPdu
    goose.getGSSEDataOffset  getGSSEDataOffset
        No value
        GetElementRequestPdu
    goose.getGoReference  getGoReference
        No value
        GetReferenceRequestPdu
    goose.getGsReference  getGsReference
        No value
        GetReferenceRequestPdu
    goose.goID  goID
        String
        VisibleString
    goose.gocbRef  gocbRef
        String
        VisibleString
    goose.goosePdu  goosePdu
        No value
        IECGoosePdu
    goose.gseMngtNotSupported  gseMngtNotSupported
        No value
    goose.gseMngtPdu  gseMngtPdu
        No value
    goose.ident  ident
        String
        VisibleString
    goose.integer  integer
        Signed 32-bit integer
    goose.length  Length
        Unsigned 16-bit integer
    goose.ndsCom  ndsCom
        Boolean
        BOOLEAN
    goose.numDatSetEntries  numDatSetEntries
        Signed 32-bit integer
        INTEGER
    goose.octet_string  octet-string
        Byte array
    goose.offset  offset
        Unsigned 32-bit integer
        T_getReferenceRequestPDU_offset
    goose.offset_item  offset item
        Signed 32-bit integer
        INTEGER
    goose.posNeg  posNeg
        Unsigned 32-bit integer
        PositiveNegative
    goose.real  real
        Double-precision floating point
    goose.reference  reference
        String
        IA5String
    goose.references  references
        Unsigned 32-bit integer
    goose.references_item  references item
        String
        VisibleString
    goose.requestResp  requestResp
        Unsigned 32-bit integer
        RequestResponse
    goose.requests  requests
        Unsigned 32-bit integer
        GSEMngtRequests
    goose.reserve1  Reserved 1
        Unsigned 16-bit integer
    goose.reserve2  Reserved 2
        Unsigned 16-bit integer
    goose.responseNegative  responseNegative
        Signed 32-bit integer
        GlbErrors
    goose.responsePositive  responsePositive
        No value
    goose.responses  responses
        Unsigned 32-bit integer
        GSEMngtResponses
    goose.result  result
        Unsigned 32-bit integer
        SEQUENCE_OF_RequestResults
    goose.sqNum  sqNum
        Signed 32-bit integer
        INTEGER
    goose.stNum  stNum
        Signed 32-bit integer
        INTEGER
    goose.stateID  stateID
        Signed 32-bit integer
        INTEGER
    goose.structure  structure
        Unsigned 32-bit integer
        SEQUENCE_OF_Data
    goose.t  t
        String
        UtcTime
    goose.test  test
        Boolean
        BOOLEAN
    goose.timeAllowedtoLive  timeAllowedtoLive
        Signed 32-bit integer
        INTEGER
    goose.unsigned  unsigned
        Signed 32-bit integer
        INTEGER
    goose.visible_string  visible-string
        String
        VisibleString

GPEF (gpef)

    gpef.efskey  EfsKey
        No value
    gpef.efskey.cert_length  Cert Length
        Unsigned 32-bit integer
    gpef.efskey.cert_offset  Cert Offset
        Unsigned 32-bit integer
    gpef.efskey.certificate  Certificate
        No value
    gpef.efskey.length1  Length1
        Unsigned 32-bit integer
    gpef.efskey.length2  Length2
        Unsigned 32-bit integer
    gpef.efskey.sid_offset  SID Offset
        Unsigned 32-bit integer
    gpef.key_count  Key Count
        Unsigned 32-bit integer

GPRS Network Service (gprs-ns)

    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.control_bits.spare  Spare bits
        Unsigned 8-bit integer
    nsip.end_flag.flag  End flag
        Boolean
    nsip.end_flag.spare  End flag spare bits
        Unsigned 8-bit integer
    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_type  IP Address Type
        Unsigned 8-bit integer
    nsip.ip_element.data_weight  Data Weight
        Unsigned 8-bit integer
    nsip.ip_element.ipv4_address  IP Address
        IPv4 address
    nsip.ip_element.ipv6_address  IP Address
        IPv6 address
    nsip.ip_element.signalling_weight  Signalling Weight
        Unsigned 8-bit integer
    nsip.ip_element.udp_port  UDP Port
        Unsigned 16-bit integer
    nsip.ipv4_address  IP Address
        IPv4 address
    nsip.ipv6_address  IP Address
        IPv6 address
    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.flag  Reset flag
        Boolean
    nsip.reset_flag.spare  Reset flag spare bits
        Unsigned 8-bit integer
    nsip.transaction_id  Transaction ID
        Unsigned 8-bit integer

GPRS Tunneling Protocol (gtp)

    gtp.apn  APN
        String
        Access Point Name
    gtp.bssgp_cause  BSSGP Cause
        Unsigned 8-bit integer
    gtp.cause  Cause
        Unsigned 8-bit integer
        Cause of operation
    gtp.chrg_char  Charging characteristics
        Unsigned 16-bit integer
    gtp.chrg_char_f  Flat rate charging
        Unsigned 16-bit integer
    gtp.chrg_char_h  Hot billing charging
        Unsigned 16-bit integer
    gtp.chrg_char_n  Normal charging
        Unsigned 16-bit integer
    gtp.chrg_char_p  Prepaid charging
        Unsigned 16-bit integer
    gtp.chrg_char_r  Reserved
        Unsigned 16-bit integer
    gtp.chrg_char_s  Spare
        Unsigned 16-bit integer
    gtp.chrg_id  Charging ID
        Unsigned 32-bit integer
    gtp.chrg_ipv4  CG address IPv4
        IPv4 address
        Charging Gateway address IPv4
    gtp.chrg_ipv6  CG address IPv6
        IPv6 address
        Charging Gateway address IPv6
    gtp.cksn_ksi  Ciphering Key Sequence Number (CKSN)/Key Set Identifier (KSI)
        Unsigned 8-bit integer
        CKSN/KSI
    gtp.cmn_flg.mbs_cnt_inf  MBMS Counting Information
        Boolean
    gtp.cmn_flg.mbs_srv_type  MBMS Service Type
        Boolean
    gtp.cmn_flg.no_qos_neg  No QoS negotiation
        Boolean
    gtp.cmn_flg.nrsn  NRSN bit field
        Boolean
    gtp.cmn_flg.ppc  Prohibit Payload Compression
        Boolean
    gtp.cmn_flg.ran_pcd_rd  RAN Procedures Ready
        Boolean
    gtp.dti  Direct Tunnel Indicator (DTI)
        Unsigned 8-bit integer
    gtp.ei  Error Indication (EI)
        Unsigned 8-bit integer
    gtp.ext_apn_res  Restriction Type
        Unsigned 8-bit integer
    gtp.ext_flow_label  Flow Label Data I
        Unsigned 16-bit integer
        Flow label data
    gtp.ext_geo_loc_type  Geographic Location Type
        Unsigned 8-bit integer
    gtp.ext_id  Extension identifier
        Unsigned 16-bit integer
        Extension Identifier
    gtp.ext_imeisv  IMEI(SV)
        String
    gtp.ext_length  Length
        Unsigned 16-bit integer
        IE Length
    gtp.ext_rat_type  RAT Type
        Unsigned 8-bit integer
    gtp.ext_sac  SAC
        Unsigned 16-bit integer
    gtp.ext_val  Extension value
        Byte array
        Extension Value
    gtp.flags  Flags
        Unsigned 8-bit integer
        Ver/PT/Spare...
    gtp.flags.e  Is Next Extension Header present?
        Boolean
        Is Next Extension Header present? (1 = yes, 0 = no)
    gtp.flags.payload  Protocol type
        Unsigned 8-bit integer
        Protocol Type
    gtp.flags.pn  Is N-PDU number present?
        Boolean
        Is N-PDU number present? (1 = yes, 0 = no)
    gtp.flags.reserved  Reserved
        Unsigned 8-bit integer
        Reserved (shall be sent as '111' )
    gtp.flags.s  Is Sequence Number present?
        Boolean
        Is Sequence Number present? (1 = yes, 0 = no)
    gtp.flags.snn  Is SNDCP N-PDU included?
        Boolean
        Is SNDCP N-PDU LLC Number included? (1 = yes, 0 = no)
    gtp.flags.version  Version
        Unsigned 8-bit integer
        GTP Version
    gtp.flow_ii  Flow Label Data II
        Unsigned 16-bit integer
        Downlink flow label data
    gtp.flow_label  Flow label
        Unsigned 16-bit integer
    gtp.flow_sig  Flow label Signalling
        Unsigned 16-bit integer
        Flow label signalling
    gtp.gcsi  GPRS-CSI (GCSI)
        Unsigned 8-bit integer
    gtp.gsn_addr_len  GSN Address Length
        Unsigned 8-bit integer
    gtp.gsn_addr_type  GSN Address Type
        Unsigned 8-bit integer
    gtp.gsn_ipv4  GSN address IPv4
        IPv4 address
    gtp.gsn_ipv6  GSN address IPv6
        IPv6 address
    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
    gtp.mbms_sa_code  MBMS service area code
        Unsigned 16-bit integer
    gtp.mbms_ses_dur_days  Estimated session duration days
        Unsigned 8-bit integer
    gtp.mbms_ses_dur_s  Estimated session duration seconds
        Unsigned 24-bit integer
    gtp.mbs_2g_3g_ind  MBMS 2G/3G Indicator
        Unsigned 8-bit integer
    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
    gtp.msisdn  MSISDN
        String
        MS international PSTN/ISDN number
    gtp.next  Next extension header type
        Unsigned 8-bit integer
        Next Extension Header Type
    gtp.no_of_mbms_sa_codes  Number of MBMS service area codes
        Unsigned 8-bit integer
        Number N of MBMS service area codes
    gtp.no_of_vectors  No of Vectors
        Unsigned 8-bit integer
    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
    gtp.nsapi  NSAPI
        Unsigned 8-bit integer
        Network layer Service Access Point Identifier
    gtp.pkt_flow_id  Packet Flow ID
        Unsigned 8-bit integer
    gtp.prim.flags.version  Version
        Unsigned 8-bit integer
        GTP' Version
    gtp.ps_handover_xid_par_len  PS Handover XID parameter length
        Unsigned 8-bit integer
        XID parameter length
    gtp.ps_handover_xid_sapi  PS Handover XID SAPI
        Unsigned 8-bit integer
        SAPI
    gtp.ptmsi  P-TMSI
        Unsigned 32-bit integer
        Packet-Temporary Mobile Subscriber Identity
    gtp.ptmsi_sig  P-TMSI Signature
        Unsigned 24-bit integer
    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
    gtp.qos_guar_ul  Guaranteed bit rate for uplink
        Unsigned 8-bit integer
    gtp.qos_max_dl  Maximum bit rate for downlink
        Unsigned 8-bit integer
    gtp.qos_max_sdu_size  Maximum SDU size
        Unsigned 8-bit integer
    gtp.qos_max_ul  Maximum bit rate for uplink
        Unsigned 8-bit integer
    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_reliability  QoS reliability
        Unsigned 8-bit integer
        Quality of Service Reliability Class
    gtp.qos_res_ber  Residual BER
        Unsigned 8-bit integer
        Residual Bit Error Rate
    gtp.qos_sdu_err_ratio  SDU Error ratio
        Unsigned 8-bit integer
        SDU Error Ratio
    gtp.qos_spare1  Spare
        Unsigned 8-bit integer
        Spare (shall be sent as '00' )
    gtp.qos_spare2  Spare
        Unsigned 8-bit integer
        Spare (shall be sent as 0)
    gtp.qos_spare3  Spare
        Unsigned 8-bit integer
        Spare (shall be sent as '000' )
    gtp.qos_traf_class  Traffic class
        Unsigned 8-bit integer
        Traffic Class
    gtp.qos_traf_handl_prio  Traffic handling priority
        Unsigned 8-bit integer
        Traffic Handling Priority
    gtp.qos_trans_delay  Transfer delay
        Unsigned 8-bit integer
        Transfer Delay
    gtp.qos_version  Version
        String
        Version of the QoS Profile
    gtp.rab_gtp_dn  Downlink GTP-U seq number
        Unsigned 16-bit integer
        Downlink GTP-U sequence number
    gtp.rab_gtp_up  Uplink GTP-U seq number
        Unsigned 16-bit integer
        Uplink GTP-U sequence number
    gtp.rab_pdu_dn  Downlink next PDCP-PDU seq number
        Unsigned 16-bit integer
        Downlink next PDCP-PDU sequence number
    gtp.rab_pdu_up  Uplink next PDCP-PDU seq number
        Unsigned 16-bit integer
        Uplink next PDCP-PDU sequence number
    gtp.rac  RAC
        Unsigned 8-bit integer
        Routing Area Code
    gtp.ranap_cause  RANAP cause
        Unsigned 8-bit integer
    gtp.recovery  Recovery
        Unsigned 8-bit integer
        Restart counter
    gtp.reorder  Reordering required
        Boolean
    gtp.response_in  Response In
        Frame number
        The response to this GTP request is in this frame
    gtp.response_to  Response To
        Frame number
        This is a response to the GTP request in this frame
    gtp.rnc_ipv4  RNC address IPv4
        IPv4 address
        Radio Network Controller address IPv4
    gtp.rnc_ipv6  RNC address IPv6
        IPv6 address
        Radio Network Controller address IPv6
    gtp.rp  Radio Priority
        Unsigned 8-bit integer
        Radio Priority for uplink tx
    gtp.rp_nsapi  NSAPI in Radio Priority
        Unsigned 8-bit integer
        Network layer Service Access Point Identifier in Radio Priority
    gtp.rp_sms  Radio Priority SMS
        Unsigned 8-bit integer
        Radio Priority for MO SMS
    gtp.rp_spare  Reserved
        Unsigned 8-bit integer
        Spare bit
    gtp.security_mode  Security Mode
        Unsigned 8-bit integer
    gtp.sel_mode  Selection mode
        Unsigned 8-bit integer
        Selection Mode
    gtp.seq_number  Sequence number
        Unsigned 16-bit integer
        Sequence Number
    gtp.sig_ind  Signalling Indication
        Boolean
    gtp.sndcp_number  SNDCP N-PDU LLC Number
        Unsigned 8-bit integer
    gtp.src_stat_desc  Source Statistics Descriptor
        Unsigned 8-bit integer
    gtp.targetRNC_ID  targetRNC-ID
        No value
    gtp.tear_ind  Teardown Indicator
        Boolean
    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
    gtp.tft_eval  Evaluation precedence
        Unsigned 8-bit integer
    gtp.tft_number  Number of packet filters
        Unsigned 8-bit integer
    gtp.tft_spare  TFT spare bit
        Unsigned 8-bit integer
    gtp.tid  TID
        String
        Tunnel Identifier
    gtp.time  Time
        Time duration
        The time between the Request and the Response
    gtp.time_2_dta_tr  Time to MBMS Data Transfer
        Unsigned 8-bit integer
    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
    gtp.trace_type  Trace type
        Unsigned 16-bit integer
    gtp.ulink_teid_cp  Uplink TEID Control Plane
        Unsigned 32-bit integer
        Uplink Tunnel Endpoint Identifier Control Plane
    gtp.ulink_teid_data  Uplink TEID Data I
        Unsigned 32-bit integer
        UplinkTunnel Endpoint Identifier Data I
    gtp.unknown  Unknown data (length)
        Unsigned 16-bit integer
        Unknown data
    gtp.user_addr_pdp_org  PDP type organization
        Unsigned 8-bit integer
    gtp.user_addr_pdp_type  PDP type number
        Unsigned 8-bit integer
        PDP type
    gtp.user_ipv4  End user address IPv4
        IPv4 address
    gtp.user_ipv6  End user address IPv6
        IPv6 address

GPRS Tunneling Protocol V2 (gtpv2)

    gtpv2.CauseMisc  Miscellaneous Cause
        Unsigned 8-bit integer
    gtpv2.CauseNas  NAS Cause
        Unsigned 8-bit integer
    gtpv2.CauseProtocol  Protocol Cause
        Unsigned 8-bit integer
    gtpv2.CauseRadioNetwork  Radio Network Layer Cause
        Unsigned 8-bit integer
    gtpv2.CauseTransport  Transport Layer Cause
        Unsigned 8-bit integer
    gtpv2.address_digits  Address digits
        String
    gtpv2.ambr_down  AMBR Downlink(Aggregate Maximum Bit Rate for Downlink)
        Unsigned 32-bit integer
    gtpv2.ambr_up  AMBR Uplink (Aggregate Maximum Bit Rate for Uplink)
        Unsigned 32-bit integer
    gtpv2.apn  APN (Access Point Name)
        String
    gtpv2.apn_rest  APN Restriction
        Unsigned 8-bit integer
    gtpv2.bearer_control_mode  Bearer Control Mode
        Unsigned 8-bit integer
    gtpv2.bearer_flag  Bearer Flags(PPC(Prohibit Payload Compression) True-SGSN attempts to compress the payload, False-SGSN doesn't attempt to compress the payload)
        Boolean
    gtpv2.bearer_qos_gbr_down  Guaranteed Bit Rate For Downlink
        Unsigned 64-bit integer
    gtpv2.bearer_qos_gbr_up  Guaranteed Bit Rate For Uplink
        Unsigned 64-bit integer
    gtpv2.bearer_qos_label_qci  Label (QCI)
        Unsigned 8-bit integer
    gtpv2.bearer_qos_mbr_down  Maximum Bit Rate For Downlink
        Unsigned 64-bit integer
    gtpv2.bearer_qos_mbr_up  Maximum Bit Rate For Uplink
        Unsigned 64-bit integer
    gtpv2.bearer_qos_pci  PCI (Pre-emption Capability)
        Boolean
    gtpv2.bearer_qos_pl  PL (Priority Level)
        Unsigned 8-bit integer
    gtpv2.bearer_qos_pvi  PVI (Pre-emption Vulnerability)
        Boolean
    gtpv2.cause  Cause
        Unsigned 8-bit integer
    gtpv2.cause_type  Cause Type
        Unsigned 8-bit integer
    gtpv2.charging_characteristic  Charging Characteristic
        Unsigned 16-bit integer
    gtpv2.charging_id  Charging id
        Unsigned 32-bit integer
    gtpv2.cng_rep_act  Change Reporting Action
        Unsigned 8-bit integer
    gtpv2.container_type  Container Type
        Unsigned 8-bit integer
    gtpv2.cr  CR flag
        Unsigned 8-bit integer
    gtpv2.cs  Cause Source (CS: True-Error originated by remote node, False-Error originated by Node sending the Message)
        Boolean
    gtpv2.daf  DAF (Dual Address Bearer Flag)
        Boolean
        DAF
    gtpv2.delay_value  Delay Value (In integer multiples of 50 milliseconds or zero)
        Unsigned 8-bit integer
    gtpv2.dfi  DFI (Direct Forwarding Indication)
        Boolean
        DFI
    gtpv2.dtf  DTF (Direct Tunnel Flag)
        Boolean
        DTF
    gtpv2.ebi  EPS Bearer ID (EBI)
        Unsigned 8-bit integer
    gtpv2.enterprise_id  Enterprise ID
        Unsigned 16-bit integer
    gtpv2.f_teid_gre_key  TEID/GRE Key
        Unsigned 32-bit integer
    gtpv2.f_teid_interface_type  Interface Type
        Unsigned 8-bit integer
    gtpv2.f_teid_ipv4  F-TEID IPv4
        IPv4 address
    gtpv2.f_teid_ipv6  F-TEID IPv6
        IPv6 address
    gtpv2.f_teid_v4  V4 (True-IPV4 address field Exists,False-Doesn't Exist in F-TEID)
        Boolean
    gtpv2.f_teid_v6  V6 (True-IPV6 address field Exists,False-Doesn't Exist in F-TEID)
        Boolean
    gtpv2.flags  Flags
        Unsigned 8-bit integer
    gtpv2.flow_qos_gbr_down  Guaranteed Bit Rate For Downlink
        Unsigned 64-bit integer
    gtpv2.flow_qos_gbr_up  Guaranteed Bit Rate For Uplink
        Unsigned 64-bit integer
    gtpv2.flow_qos_label_qci  Label (QCI)
        Unsigned 8-bit integer
    gtpv2.flow_qos_mbr_down  Maximum Bit Rate For Downlink
        Unsigned 64-bit integer
    gtpv2.flow_qos_mbr_up  Maximum Bit Rate For Uplink
        Unsigned 64-bit integer
    gtpv2.hi  HI (Handover Indication)
        Boolean
        HI
    gtpv2.ie_len  IE Length
        Unsigned 16-bit integer
        length of the information element excluding the first four octets
    gtpv2.ie_type  IE Type
        Unsigned 8-bit integer
    gtpv2.imsi  IMSI(International Mobile Subscriber Identity number)
        String
    gtpv2.instance  Instance
        Unsigned 8-bit integer
    gtpv2.ip_address_ipv4  IP address IPv4
        IPv4 address
    gtpv2.ip_address_ipv6  IP address IPv6
        IPv6 address
    gtpv2.israi  ISRAI (Idle mode Signalling Reduction Activation Indication)
        Boolean
        ISRAI
    gtpv2.isrsi  ISRSI (Idle mode Signalling Reduction Supported Indication)
        Boolean
        ISRSI
    gtpv2.mei  MEI(Mobile Equipment Identity)
        String
    gtpv2.message_type  Message Type
        Unsigned 8-bit integer
    gtpv2.msg_lengt  Message Length
        Unsigned 16-bit integer
    gtpv2.msv  MSV (MS Validated)
        Boolean
        MSV
    gtpv2.node_type  Node Type
        Unsigned 8-bit integer
    gtpv2.oi  OI (Operation Indication)
        Boolean
        OI
    gtpv2.p  P
        Unsigned 8-bit integer
        If Piggybacked message is present or not
    gtpv2.pdn_ipv4  PDN IPv4
        IPv4 address
    gtpv2.pdn_ipv6  PDN IPv6
        IPv6 address
    gtpv2.pdn_ipv6_len  IPv6 Prefix Length
        Unsigned 8-bit integer
    gtpv2.pdn_type  PDN Type
        Unsigned 8-bit integer
    gtpv2.pt  PT (Protocol Type)
        Boolean
        PT
    gtpv2.pti  Procedure Transaction Id
        Unsigned 8-bit integer
    gtpv2.rat_type  RAT Type
        Unsigned 8-bit integer
    gtpv2.rec  Restart Counter
        Unsigned 8-bit integer
    gtpv2.selec_mode  Selection Mode
        Unsigned 8-bit integer
    gtpv2.seq  Sequence Number
        Unsigned 32-bit integer
        SEQ
    gtpv2.sgwci  SGWCI (SGW Change Indication)
        Boolean
        SGWCI
    gtpv2.si  SI (Scope Indication)
        Boolean
        SI
    gtpv2.spare  Spare
        Unsigned 16-bit integer
    gtpv2.t  T
        Unsigned 8-bit integer
        If TEID field is present or not
    gtpv2.target_type  Target Type
        Unsigned 8-bit integer
    gtpv2.tdi  TDI (Teardown Indication)
        Boolean
        TDI
    gtpv2.teid  Tunnel Endpoint Identifier
        Unsigned 32-bit integer
        TEID
    gtpv2.ti  Transaction Identifier
        Byte array
    gtpv2.ue_time_zone  Time Zone
        Unsigned 8-bit integer
    gtpv2.ue_time_zone_dst  Daylight Saving Time
        Unsigned 8-bit integer
    gtpv2.uli_cgi_ci  Cell Identity
        Unsigned 16-bit integer
    gtpv2.uli_cgi_flg  CGI Present Flag)
        Boolean
    gtpv2.uli_cgi_lac  Location Area Code
        Unsigned 16-bit integer
    gtpv2.uli_ecgi_eci  ECI (E-UTRAN Cell Identifier)
        Unsigned 32-bit integer
    gtpv2.uli_ecgi_eci_spare  Spare
        Unsigned 8-bit integer
    gtpv2.uli_ecgi_flg  ECGI Present Flag)
        Boolean
    gtpv2.uli_rai_flg  RAI Present Flag)
        Boolean
    gtpv2.uli_rai_lac  Location Area Code
        Unsigned 16-bit integer
    gtpv2.uli_rai_rac  Routing Area Code
        Unsigned 16-bit integer
    gtpv2.uli_sai_flg  SAI Present Flag)
        Boolean
    gtpv2.uli_sai_lac  Location Area Code
        Unsigned 16-bit integer
    gtpv2.uli_sai_sac  Service Area Code
        Unsigned 16-bit integer
    gtpv2.uli_tai_flg  TAI Present Flag)
        Boolean
    gtpv2.uli_tai_tac  Tracking Area Code
        Unsigned 16-bit integer
    gtpv2.version  Version
        Unsigned 8-bit integer

GSM A-I/F BSSMAP (gsm_a_bssmap)

    fe_cell_load_info.cell_capacity_class  Cell capacity class
        Unsigned 8-bit integer
    fe_cell_load_info.load_info  Load value
        Unsigned 8-bit integer
    fe_cell_load_info.nrt_load_info_value  Non-Realtime load information value
        Unsigned 8-bit integer
    fe_cell_load_info.rt_load_value  Realtime load value
        Unsigned 8-bit integer
    fe_cur_chan_type2.chan_field  Channel Field
        Unsigned 8-bit integer
    fe_cur_chan_type2.chan_mode  Channel Mode
        Unsigned 8-bit integer
    fe_cur_chan_type2_chan_field.spare  Channel field Spare bits
        Unsigned 8-bit integer
    fe_cur_chan_type2_chan_mode.spare  Channel Mode Spare bits
        Unsigned 8-bit integer
    fe_dtm_ho_command_ind.spare  Spare octet
        Unsigned 8-bit integer
    fe_dtm_info.dtm_ind  DTM indicator
        Unsigned 8-bit integer
    fe_dtm_info.egprs_ind  EGPRS indicator
        Unsigned 8-bit integer
    fe_dtm_info.spare_bits  DTM Info Spare bits
        Unsigned 8-bit integer
    fe_dtm_info.sto_ind  Time Slot Operation indicator
        Unsigned 8-bit integer
    fe_extra_info.lcs  LCS Information
        Unsigned 8-bit integer
    fe_extra_info.prec  Pre-emption Recommendation
        Unsigned 8-bit integer
    fe_extra_info.spare  Extra Information Spare bits
        Unsigned 8-bit integer
    fe_extra_info.ue_prob  UE support of UMTS
        Unsigned 8-bit integer
    fe_ps_indication.value  PS Indication
        Unsigned 8-bit integer
    fe_target_radio_cell_info.rxlev_ncell  RXLEV-NCELL
        Unsigned 8-bit integer
    fe_target_radio_cell_info.rxlev_ncell_spare  RXLEV-NCELL Spare bits
        Unsigned 8-bit integer
    ggsm_a_bssmap.lsa_only  LSA only
        Boolean
    ggsm_a_bssmap.paging_inf_flg  VGCS/VBS flag
        Boolean
        If 1, a member of a VGCS/VBS-group
    gsm_a.apdu_protocol_id  Protocol ID
        Unsigned 8-bit integer
        APDU embedded protocol id
    gsm_a.be.cell_id_disc  Cell identification discriminator
        Unsigned 8-bit integer
    gsm_a.be.rnc_id  RNC-ID
        Unsigned 16-bit integer
    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.len  Length
        Unsigned 16-bit integer
    gsm_a.sac  SAC
        Unsigned 16-bit integer
    gsm_a_bssmap.act  Active mode support
        Boolean
    gsm_a_bssmap.aoip_trans_ipv4  Transport Layer Address (IPv4)
        IPv4 address
    gsm_a_bssmap.aoip_trans_ipv6  Transport Layer Address (IPv6)
        IPv6 address
    gsm_a_bssmap.aoip_trans_port  UDP Port
        Unsigned 16-bit integer
    gsm_a_bssmap.asind_b2  A-interface resource sharing indicator (AS Ind) bit 2
        Boolean
    gsm_a_bssmap.asind_b3  A-interface resource sharing indicator (AS Ind) bit 3
        Boolean
    gsm_a_bssmap.bss_record__type  BSS Record Type
        Unsigned 8-bit integer
    gsm_a_bssmap.bss_res  Group or broadcast call re-establishment by the BSS indicator
        Boolean
    gsm_a_bssmap.callid  Call Identifier
        Unsigned 32-bit integer
    gsm_a_bssmap.cause  BSSMAP Cause
        Unsigned 8-bit integer
    gsm_a_bssmap.causeType.extension  Extension
        Boolean
    gsm_a_bssmap.cch_mode  Channel mode
        Unsigned 8-bit integer
    gsm_a_bssmap.cell_id_list_seg_cell_id_disc  Cell identification discriminator
        Unsigned 8-bit integer
    gsm_a_bssmap.chanType.permittedIndicator.extension  Extension
        Boolean
    gsm_a_bssmap.channel  Channel
        Unsigned 8-bit integer
    gsm_a_bssmap.elem_id  Element ID
        Unsigned 8-bit integer
    gsm_a_bssmap.ep  EP
        Unsigned 8-bit integer
    gsm_a_bssmap.fi  FI(Full IP)
        Boolean
    gsm_a_bssmap.fi2  FI(Full IP)
        Boolean
    gsm_a_bssmap.field_elem_id  Field Element ID
        Unsigned 8-bit integer
    gsm_a_bssmap.filler_bits  Filler Bits
        Unsigned 8-bit integer
    gsm_a_bssmap.lcs_pri  Periodicity
        Unsigned 8-bit integer
    gsm_a_bssmap.locationType.locationInformation  Location Information
        Unsigned 8-bit integer
    gsm_a_bssmap.locationType.positioningMethod  Positioning Method
        Unsigned 8-bit integer
    gsm_a_bssmap.lsa_id  Identification of Localised Service Area
        Unsigned 24-bit integer
    gsm_a_bssmap.lsa_inf_prio  Priority
        Unsigned 8-bit integer
    gsm_a_bssmap.msc_record_type  MSC Record Type
        Unsigned 8-bit integer
    gsm_a_bssmap.num_ms  Number of handover candidates
        Unsigned 8-bit integer
    gsm_a_bssmap.paging_cause  Paging Cause
        Unsigned 8-bit integer
    gsm_a_bssmap.periodicity  Periodicity
        Unsigned 8-bit integer
    gsm_a_bssmap.pi  PI
        Boolean
    gsm_a_bssmap.pi2  PI
        Boolean
    gsm_a_bssmap.posData.discriminator  Positioning Data Discriminator
        Unsigned 8-bit integer
    gsm_a_bssmap.posData.method  Positioning method
        Unsigned 8-bit integer
    gsm_a_bssmap.posData.usage  Usage
        Unsigned 8-bit integer
    gsm_a_bssmap.pref  Preferential access
        Boolean
    gsm_a_bssmap.pt  PT
        Boolean
    gsm_a_bssmap.pt2  PT
        Boolean
    gsm_a_bssmap.res_ind_method  Resource indication method
        Unsigned 8-bit integer
    gsm_a_bssmap.seq_len  Sequence Length
        Unsigned 8-bit integer
    gsm_a_bssmap.seq_no  Sequence Number
        Unsigned 8-bit integer
    gsm_a_bssmap.serv_ho_inf  Service Handover information
        Unsigned 8-bit integer
    gsm_a_bssmap.sm  Subsequent Mode
        Boolean
    gsm_a_bssmap.smi  Subsequent Modification Indication(SMI)
        Unsigned 8-bit integer
    gsm_a_bssmap.spare  Spare
        Unsigned 8-bit integer
    gsm_a_bssmap.spare_bits  Spare bit(s)
        Unsigned 8-bit integer
    gsm_a_bssmap.speech_codec  Codec Type
        Unsigned 8-bit integer
    gsm_a_bssmap.talker_pri  Priority
        Unsigned 8-bit integer
    gsm_a_bssmap.tarr  Total Accessible Resource Requested
        Boolean
    gsm_a_bssmap.tcp  Talker Channel Parameter (TCP)
        Boolean
    gsm_a_bssmap.tf  TF
        Boolean
    gsm_a_bssmap.tf2  TF
        Boolean
    gsm_a_bssmap.tot_no_of_fullr_ch  Total number of accessible full rate channels
        Unsigned 16-bit integer
    gsm_a_bssmap.tot_no_of_hr_ch  Total number of accessible half rate channels
        Unsigned 16-bit integer
    gsm_a_bssmap.tpind  Talker priority indicator (TP Ind)
        Boolean
    gsm_a_bssmap.trace_id  Trace Reference
        Unsigned 16-bit integer
    gsm_a_bssmap.trace_invoking_event  Invoking Event
        Unsigned 8-bit integer
    gsm_a_bssmap.trace_omc_id  OMC ID
        String
    gsm_a_bssmap.trace_priority_indication  Priority Indication
        Unsigned 8-bit integer
    gsm_a_bssmap.trace_trigger_id  Priority Indication
        String

GSM A-I/F COMMON (gsm_a_common)

    gsm_a.A5_2_algorithm_sup  A5/2 algorithm supported
        Unsigned 8-bit integer
    gsm_a.A5_3_algorithm_sup  A5/3 algorithm supported
        Unsigned 8-bit integer
    gsm_a.A5_4_algorithm_sup  A5/4 algorithm supported
        Unsigned 8-bit integer
    gsm_a.A5_5_algorithm_sup  A5/5 algorithm supported
        Unsigned 8-bit integer
    gsm_a.A5_6_algorithm_sup  A5/6 algorithm supported
        Unsigned 8-bit integer
    gsm_a.A5_7_algorithm_sup  A5/7 algorithm supported
        Unsigned 8-bit integer
    gsm_a.CM3  CM3
        Unsigned 8-bit integer
    gsm_a.CMSP  CMSP: CM Service Prompt
        Unsigned 8-bit integer
    gsm_a.FC_frequency_cap  FC Frequency Capability
        Unsigned 8-bit integer
    gsm_a.L3_protocol_discriminator  Protocol discriminator
        Unsigned 8-bit integer
    gsm_a.LCS_VA_cap  LCS VA capability (LCS value added location request notification capability)
        Unsigned 8-bit integer
    gsm_a.MSC2_rev  Revision Level
        Unsigned 8-bit integer
    gsm_a.SM_cap  SM capability (MT SMS pt to pt capability)
        Unsigned 8-bit integer
    gsm_a.SS_screening_indicator  SS Screening Indicator
        Unsigned 8-bit integer
    gsm_a.SoLSA  SoLSA
        Unsigned 8-bit integer
    gsm_a.UCS2_treatment  UCS2 treatment
        Unsigned 8-bit integer
    gsm_a.VBS_notification_rec  VBS notification reception
        Unsigned 8-bit integer
    gsm_a.VGCS_notification_rec  VGCS notification reception
        Unsigned 8-bit integer
    gsm_a.call_prio  Call priority
        Unsigned 8-bit integer
    gsm_a.classmark3.8_psk_multislot_power_prof  8-PSK Multislot Power Profile
        Unsigned 8-bit integer
    gsm_a.classmark3.8_psk_rf_power_capability_1  8-PSK RF Power Capability 1
        Unsigned 8-bit integer
    gsm_a.classmark3.8_psk_rf_power_capability_2  8-PSK RF Power Capability 2
        Unsigned 8-bit integer
    gsm_a.classmark3.8_psk_struct  8-PSK Struct
        Unsigned 8-bit integer
    gsm_a.classmark3.8_psk_struct_present  8-PSK Struct present
        Unsigned 8-bit integer
    gsm_a.classmark3.a5_bits  A5 bits
        Unsigned 8-bit integer
    gsm_a.classmark3.additional_positioning_caps  Additional Positioning Capabilities
        Unsigned 8-bit integer
    gsm_a.classmark3.ass_radio_cap1  Associated Radio Capability 1
        Unsigned 8-bit integer
    gsm_a.classmark3.ass_radio_cap2  Associated Radio Capability 2
        Unsigned 8-bit integer
    gsm_a.classmark3.cdma_2000_rat_cap  CDMA 2000 Radio Access Technology Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.ciphering_mode_setting_cap  Ciphering Mode Setting Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.downlink_adv_receiver_perf  Downlink Advanced Receiver Performance
        Unsigned 8-bit integer
    gsm_a.classmark3.dtm_e_gprs_high_mutli_slot_info_present  DTM E/GPRS High Multi Slot Information present
        Unsigned 8-bit integer
    gsm_a.classmark3.dtm_e_gprs_multi_slot_info_present  DTM E/GPRS Multi Slot Information present
        Unsigned 8-bit integer
    gsm_a.classmark3.dtm_egprs_high_multi_slot_class  DTM EGPRS High Multi Slot Class
        Unsigned 8-bit integer
    gsm_a.classmark3.dtm_egprs_high_multi_slot_class_present  DTM EGPRS High Multi Slot Class present
        Unsigned 8-bit integer
    gsm_a.classmark3.dtm_egprs_multi_slot_class  DTM EGPRS Multi Slot Class
        Unsigned 8-bit integer
    gsm_a.classmark3.dtm_egprs_multi_slot_class_present  DTM EGPRS Multi Slot Class present
        Unsigned 8-bit integer
    gsm_a.classmark3.dtm_enhancements_capability  DTM Enhancements Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.dtm_gprs_multi_slot_class  DTM GPRS Multi Slot Class
        Unsigned 8-bit integer
    gsm_a.classmark3.e_utra_fdd_support  E-UTRA FDD support
        Unsigned 8-bit integer
    gsm_a.classmark3.e_utra_meas_and_report_support  E-UTRA Measurement and Reporting support
        Unsigned 8-bit integer
    gsm_a.classmark3.e_utra_tdd_support  E-UTRA TDD support
        Unsigned 8-bit integer
    gsm_a.classmark3.ecsd_multi_slot_capability  ECSD Multi Slot Capability present
        Unsigned 8-bit integer
    gsm_a.classmark3.ecsd_multi_slot_class  ECSD Multi Slot Class
        Unsigned 8-bit integer
    gsm_a.classmark3.egsmSupported  E-GSM or R-GSM Supported
        Unsigned 8-bit integer
    gsm_a.classmark3.ext_dtm_e_gprs_info_present  Extended DTM E/GPRS Multi Slot Information present
        Unsigned 8-bit integer
    gsm_a.classmark3.ext_dtm_egprs_multi_slot_class  Extended DTM EGPRS Multi Slot Class
        Unsigned 8-bit integer
    gsm_a.classmark3.ext_dtm_gprs_multi_slot_class  Extended DTM GPRS Multi Slot Class
        Unsigned 8-bit integer
    gsm_a.classmark3.ext_meas_cap  Extended Measurement Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.geran_feature_package_1  GERAN Feature Package 1
        Unsigned 8-bit integer
    gsm_a.classmark3.geran_feature_package_2  GERAN Feature Package 2
        Unsigned 8-bit integer
    gsm_a.classmark3.geran_iu_mode_cap  GERAN Iu Mode Capabilities
        Unsigned 24-bit integer
    gsm_a.classmark3.geran_iu_mode_cap.flo_iu_cap  FLO Iu Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.geran_iu_mode_cap.length  Length
        Unsigned 8-bit integer
    gsm_a.classmark3.geran_iu_mode_support  GERAN Iu Mode Support
        Unsigned 8-bit integer
    gsm_a.classmark3.gmsk_multislot_power_prof  GMSK Multislot Power Profile
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm1800Supported  GSM 1800 Supported
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm_1900_assoc_radio_cap  GSM 1900 Associated Radio Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm_1900_assoc_radio_cap_present  GSM 1900 Associated Radio Capability present
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm_400_assoc_radio_cap  GSM 400 Associated Radio Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm_400_band_info_present  GSM 400 Band Information present
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm_400_bands_supported  GSM 400 Bands Supported
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm_710_assoc_radio_cap  GSM 710 Associated Radio Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm_710_assoc_radio_cap_present  GSM 710 Associated Radio Capability present
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm_750_assoc_radio_cap  GSM 750 Associated Radio Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm_750_assoc_radio_cap_present  GSM 750 Associated Radio Capability present
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm_850_assoc_radio_cap  GSM 850 Associated Radio Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm_850_assoc_radio_cap_present  GSM 850 Associated Radio Capability present
        Unsigned 8-bit integer
    gsm_a.classmark3.gsm_band  GSM Band
        Unsigned 8-bit integer
    gsm_a.classmark3.high_multislot_cap  High Multislot Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.high_multislot_cap_present  High Multislot Capability present
        Unsigned 8-bit integer
    gsm_a.classmark3.modulation_capability  Modulation Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.ms_assisted_e_otd  MS assisted E-OTD
        Unsigned 8-bit integer
    gsm_a.classmark3.ms_assisted_gps  MS assisted GPS
        Unsigned 8-bit integer
    gsm_a.classmark3.ms_based_e_otd  MS based E-OTD
        Unsigned 8-bit integer
    gsm_a.classmark3.ms_based_gps  MS based GPS
        Unsigned 8-bit integer
    gsm_a.classmark3.ms_conventional_gps  MS Conventional GPS
        Unsigned 8-bit integer
    gsm_a.classmark3.ms_measurement_capability  MS measurement capability
        Unsigned 8-bit integer
    gsm_a.classmark3.ms_pos_method  MS Positioning Method
        Unsigned 8-bit integer
    gsm_a.classmark3.ms_pos_method_cap_present  MS Positioning Method Capability present
        Unsigned 8-bit integer
    gsm_a.classmark3.multislot_cap  HSCSD Multi Slot Class
        Unsigned 8-bit integer
    gsm_a.classmark3.multislot_capabilities  HSCSD Multi Slot Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.offset_required  Offset required
        Unsigned 8-bit integer
    gsm_a.classmark3.pgsmSupported  P-GSM Supported
        Unsigned 8-bit integer
    gsm_a.classmark3.r_capabilities  R-GSM band Associated Radio Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.repeated_acch_cap  Repeated ACCH Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.rsupport  R Support
        Unsigned 8-bit integer
    gsm_a.classmark3.single_band_support  Single Band Support
        Unsigned 8-bit integer
    gsm_a.classmark3.single_slot_dtm_supported  Single Slot DTM
        Unsigned 8-bit integer
    gsm_a.classmark3.sm_value  SM_VALUE (Switch-Measure)
        Unsigned 8-bit integer
    gsm_a.classmark3.sms_value  SMS_VALUE (Switch-Measure-Switch)
        Unsigned 8-bit integer
    gsm_a.classmark3.t_gsm_400_assoc_radio_cap  T-GSM 400 Associated Radio Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.t_gsm_400_bands_supported  T-GSM 400 Bands Supported
        Unsigned 8-bit integer
    gsm_a.classmark3.t_gsm_810_assoc_radio_cap  T-GSM 810 Associated Radio Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.t_gsm_810_assoc_radio_cap_present  T-GSM 810 Associated Radio Capability present
        Unsigned 8-bit integer
    gsm_a.classmark3.t_gsm_900_assoc_radio_cap  T-GSM 900 Associated Radio Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.t_gsm_900_assoc_radio_cap_present  T-GSM 900 Associated Radio Capability present
        Unsigned 8-bit integer
    gsm_a.classmark3.umts_128_mcps_tdd_rat_cap  UMTS 1.28 Mcps TDD Radio Access Technology Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.umts_384_mcps_tdd_rat_cap  UMTS 3.84 Mcps TDD Radio Access Technology Capability
        Unsigned 8-bit integer
    gsm_a.classmark3.umts_fdd_rat_cap  UMTS FDD Radio Access Technology Capability
        Unsigned 8-bit integer
    gsm_a.gad.D  D: Direction of Altitude
        Unsigned 16-bit integer
    gsm_a.gad.altitude  Altitude in meters
        Unsigned 16-bit integer
    gsm_a.gad.confidence  Confidence(%)
        Unsigned 8-bit integer
    gsm_a.gad.included_angle  Included angle
        Unsigned 8-bit integer
    gsm_a.gad.location_estimate  Location estimate
        Unsigned 8-bit integer
    gsm_a.gad.no_of_points  Number of points
        Unsigned 8-bit integer
    gsm_a.gad.offset_angle  Offset angle
        Unsigned 8-bit integer
    gsm_a.gad.orientation_of_major_axis  Orientation of major axis
        Unsigned 8-bit integer
    gsm_a.gad.sign_of_latitude  Sign of latitude
        Unsigned 8-bit integer
    gsm_a.gad.sign_of_longitude  Degrees of longitude
        Unsigned 24-bit integer
    gsm_a.gad.uncertainty_altitude  Uncertainty Altitude
        Unsigned 8-bit integer
    gsm_a.gad.uncertainty_code  Uncertainty code
        Unsigned 8-bit integer
    gsm_a.gad.uncertainty_semi_major  Uncertainty semi-major
        Unsigned 8-bit integer
    gsm_a.gad.uncertainty_semi_minor  Uncertainty semi-minor
        Unsigned 8-bit integer
    gsm_a.ie.mobileid.type  Mobile Identity Type
        Unsigned 8-bit integer
    gsm_a.imei  IMEI
        String
    gsm_a.imeisv  IMEISV
        String
    gsm_a.imsi  IMSI
        String
    gsm_a.key_seq  key sequence
        Unsigned 8-bit integer
    gsm_a.lac  Location Area Code (LAC)
        Unsigned 16-bit integer
    gsm_a.mbs_service_id  MBMS Service ID
        Unsigned 24-bit integer
    gsm_a.mbs_session_id  MBMS Session ID
        Unsigned 8-bit integer
    gsm_a.mbs_session_id_ind  MBMS Session Identity indication
        Boolean
    gsm_a.multi_bnd_sup_fields  Multiband supported field
        Unsigned 8-bit integer
    gsm_a.oddevenind  Odd/even indication
        Unsigned 8-bit integer
    gsm_a.ps_sup_cap  PS capability (pseudo-synchronization capability)
        Unsigned 8-bit integer
    gsm_a.skip.ind  Skip Indicator
        Unsigned 8-bit integer
    gsm_a.spare_bits  Spare bit(s)
        Unsigned 8-bit integer
    gsm_a.spareb7  Spare
        Unsigned 8-bit integer
    gsm_a.spareb8  Spare
        Unsigned 8-bit integer
    gsm_a.tmgi_mcc_mnc_ind  MCC/MNC indication
        Boolean
    gsm_a.tmsi  TMSI/P-TMSI
        Unsigned 32-bit integer
    gsm_a_common.elem_id  Element ID
        Unsigned 8-bit integer

GSM A-I/F DTAP (gsm_a_dtap)

    gsm_a.bitmap_length  Bitmap Length
        Unsigned 8-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.codec.fr_amr  FR AMR
        Boolean
    gsm_a.codec.fr_amr_wb  FR AMR-WB
        Boolean
    gsm_a.codec.gsm_efr  GSM EFR
        Boolean
    gsm_a.codec.gsm_fr  GSM FR
        Boolean
    gsm_a.codec.gsm_hr  GSM HR
        Boolean
    gsm_a.codec.hr_amr  HR AMR
        Boolean
    gsm_a.codec.ofr_amr_wb  OFR AMR-WB
        Boolean
    gsm_a.codec.ohr_amr  OHR AMR
        Boolean
    gsm_a.codec.ohr_amr_wb  OHR AMR-WB
        Boolean
    gsm_a.codec.pdc_efr  PDC EFR
        Boolean
    gsm_a.codec.tdma_efr  TDMA EFR
        Boolean
    gsm_a.codec.umts_amr  UMTS AMR
        Boolean
    gsm_a.codec.umts_amr_2  UMTS AMR 2
        Boolean
    gsm_a.codec.umts_amr_wb  UMTS AMR-WB
        Boolean
    gsm_a.conn_num  Connected Number
        String
    gsm_a.dtap.afi  Authority and Format Identifier
        Unsigned 8-bit integer
    gsm_a.dtap.alerting_pattern  Alerting Pattern
        Unsigned 8-bit integer
    gsm_a.dtap.autn  AUTN value
        Byte array
    gsm_a.dtap.autn.amf  AMF
        Byte array
    gsm_a.dtap.autn.mac  MAC
        Byte array
    gsm_a.dtap.autn.sqn_xor_ak  SQN xor AK
        Byte array
    gsm_a.dtap.auts  AUTS value
        Byte array
    gsm_a.dtap.auts.mac_s  MAC-S
        Byte array
    gsm_a.dtap.auts.sqn_ms_xor_ak  SQN_MS xor AK
        Byte array
    gsm_a.dtap.call_state  Call state
        Unsigned 8-bit integer
    gsm_a.dtap.cause_of_no_cli  Cause of no CLI
        Unsigned 8-bit integer
    gsm_a.dtap.cause_ss_diagnostics  Supplementary Services Diagnostics
        Unsigned 8-bit integer
    gsm_a.dtap.ccbs_activation  CCBS Activation
        Boolean
    gsm_a.dtap.coding_standard  Coding standard
        Unsigned 8-bit integer
    gsm_a.dtap.emerg_num_info_length  Emergency Number Info length
        Unsigned 8-bit integer
    gsm_a.dtap.emergency_bcd_num  Emergency BCD Number
        String
    gsm_a.dtap.location  Location
        Unsigned 8-bit integer
    gsm_a.dtap.mcat  MCAT
        Boolean
    gsm_a.dtap.mcs  MCS
        Boolean
    gsm_a.dtap.progress_description  Progress description
        Unsigned 8-bit integer
    gsm_a.dtap.rand  RAND value
        Byte array
    gsm_a.dtap.recall_type  Recall type
        Unsigned 8-bit integer
    gsm_a.dtap.rej_cause  Reject cause
        Unsigned 8-bit integer
    gsm_a.dtap.serv_cat_b1  Police
        Boolean
    gsm_a.dtap.serv_cat_b2  Ambulance
        Boolean
    gsm_a.dtap.serv_cat_b3  Fire Brigade
        Boolean
    gsm_a.dtap.serv_cat_b4  Marine Guard
        Boolean
    gsm_a.dtap.serv_cat_b5  Mountain Rescue
        Boolean
    gsm_a.dtap.serv_cat_b6  Manually initiated eCall
        Boolean
    gsm_a.dtap.serv_cat_b7  Automatically initiated eCall
        Boolean
    gsm_a.dtap.signal_value  Signal value
        Unsigned 8-bit integer
    gsm_a.dtap.sres  SRES value
        Byte array
    gsm_a.dtap.stream_identifier  Stream Identifier
        Unsigned 8-bit integer
    gsm_a.dtap.u2u_prot_discr  User-user protocol discriminator
        Unsigned 8-bit integer
    gsm_a.dtap.xres  XRES value
        Byte array
    gsm_a.dtap_msg_cc_type  DTAP Call Control 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_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.dtap_msg_tp_type  DTAP Tests Procedures Message Type
        Unsigned 8-bit integer
    gsm_a.dtap_seq_no  Sequence number
        Unsigned 8-bit integer
    gsm_a.extension  Extension
        Boolean
    gsm_a.itc  Information transfer capability
        Unsigned 8-bit integer
    gsm_a.lsa_id  LSA Identifier
        Unsigned 24-bit integer
    gsm_a.notif_descr  Notification description
        Unsigned 8-bit integer
    gsm_a.numbering_plan_id  Numbering plan identification
        Unsigned 8-bit integer
    gsm_a.odd_even_ind  Odd/even indicator
        Unsigned 8-bit integer
    gsm_a.present_ind  Presentation indicator
        Unsigned 8-bit integer
    gsm_a.red_party_bcd_num  Redirecting Party BCD Number
        String
    gsm_a.screening_ind  Screening indicator
        Unsigned 8-bit integer
    gsm_a.speech_vers_ind  Speech version indication
        Unsigned 8-bit integer
    gsm_a.sysid  System Identification (SysID)
        Unsigned 8-bit integer
    gsm_a.type_of_number  Type of number
        Unsigned 8-bit integer
    gsm_a.type_of_sub_addr  Type of subaddress
        Unsigned 8-bit integer
    gsm_a_dtap.cause  DTAP Cause
        Unsigned 8-bit integer
    gsm_a_dtap.elem_id  Element ID
        Unsigned 8-bit integer

GSM A-I/F GPRS Mobility and Session Management (gsm_a_gm)

    gsm_a.dtap_msg_gmm_type  DTAP GPRS Mobility 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.gm.ac_ref_nr  A&C reference number
        Unsigned 8-bit integer
    gsm_a.gm.acc_cap_struct_len  Length in bits
        Unsigned 8-bit integer
    gsm_a.gm.acc_tech_type  Access Technology Type
        Unsigned 8-bit integer
    gsm_a.gm.apc  APC
        Boolean
    gsm_a.gm.cause  gmm Cause
        Unsigned 8-bit integer
    gsm_a.gm.ciph_key_seq_num  Ciphering key sequence number
        Unsigned 8-bit integer
    gsm_a.gm.fop  Follow-on proceed
        Boolean
    gsm_a.gm.for  Follow-on request pending
        Boolean
    gsm_a.gm.force_to_standby  Force to standby
        Unsigned 8-bit integer
    gsm_a.gm.gprs_timer_unit  Unit
        Unsigned 8-bit integer
    gsm_a.gm.gprs_timer_value  Timer value
        Unsigned 8-bit integer
    gsm_a.gm.gps_a  GPS-A
        Boolean
    gsm_a.gm.gps_b  GPS-B
        Boolean
    gsm_a.gm.gps_c  GPS-C
        Boolean
    gsm_a.gm.imeisv_req  IMEISV request
        Unsigned 8-bit integer
    gsm_a.gm.otd_a  OTD-A
        Boolean
    gsm_a.gm.otd_b  OTD-B
        Boolean
    gsm_a.gm.rac  Routing Area Code (RAC)
        Unsigned 8-bit integer
    gsm_a.gm.rac.8psk_pow_cap_pres  8PSK Power Capability Bits
        Boolean
    gsm_a.gm.rac.cdma2000_cap  CDMA 2000 Radio Access Technology Capability
        Boolean
    gsm_a.gm.rac.comp_int_meas_cap  Controlled early Classmark Sending
        Boolean
    gsm_a.gm.rac.dtm_egprs_multi_slot_cls_pres  DTM EGPRS Multi Slot Class
        Boolean
    gsm_a.gm.rac.geran_feat_pkg  GERAN Feature Package 1
        Boolean
    gsm_a.gm.rac.multislot_capability  Multislot capability struct
        Boolean
    gsm_a.gm.rac.single_slt_dtm  Single Slot DTM
        Boolean
    gsm_a.gm.rac.umts_128_tdd_ra_cap  UMTS 1.28 Mcps TDD Radio Access Technology Capability
        Boolean
    gsm_a.gm.rac.umts_384_tdd_ra_cap  UMTS 3.84 Mcps TDD Radio Access Technology Capability
        Boolean
    gsm_a.gm.rac.umts_fdd_cap  UMTS FDD Radio Access Technology Capability
        Boolean
    gsm_a.gm.res_of_attach  Result of attach
        Unsigned 8-bit integer
    gsm_a.gm.serv_type  Service type
        Unsigned 8-bit integer
    gsm_a.gm.sm  (SM_VALUE) Switch-Measure
        Unsigned 8-bit integer
    gsm_a.gm.sm.ext  Ext
        Unsigned 8-bit integer
    gsm_a.gm.sms  SMS_VALUE (Switch-Measure-Switch)
        Unsigned 8-bit integer
    gsm_a.gm.tmsi_flag  TMSI flag
        Boolean
    gsm_a.gm.type_of_attach  Type of attach
        Unsigned 8-bit integer
    gsm_a.gm.type_of_ciph_alg  Type of ciphering algorithm
        Unsigned 8-bit integer
    gsm_a.gm.type_of_identity  Type of identity
        Unsigned 8-bit integer
    gsm_a.gm.update_type  Update type
        Unsigned 8-bit integer
    gsm_a.gmm.cn_spec_drs_cycle_len_coef  CN Specific DRX cycle length coefficient
        Unsigned 8-bit integer
    gsm_a.gmm.net_cap.csfb  CSFB Capability
        Boolean
    gsm_a.gmm.net_cap.epc  EPC Capability
        Boolean
    gsm_a.gmm.net_cap.ext_gea_bits  Extended GEA bits
        Unsigned 8-bit integer
    gsm_a.gmm.net_cap.gea1  GEA/1
        Boolean
    gsm_a.gmm.net_cap.gea2  GEA/2
        Boolean
    gsm_a.gmm.net_cap.gea3  GEA/3
        Boolean
    gsm_a.gmm.net_cap.gea4  GEA/4
        Boolean
    gsm_a.gmm.net_cap.gea5  GEA/5
        Boolean
    gsm_a.gmm.net_cap.gea6  GEA/6
        Boolean
    gsm_a.gmm.net_cap.gea7  GEA/7
        Boolean
    gsm_a.gmm.net_cap.isr  ISR support
        Boolean
    gsm_a.gmm.net_cap.lcs  LCS VA capability
        Boolean
    gsm_a.gmm.net_cap.pfc  PFC feature mode
        Boolean
    gsm_a.gmm.net_cap.ps_irat_iu  PS inter-RAT HO to UTRAN Iu mode capability
        Boolean
    gsm_a.gmm.net_cap.ps_irat_s1  PS inter-RAT HO to E-UTRAN S1 mode capability
        Boolean
    gsm_a.gmm.net_cap.rev  Revision level indicator
        Boolean
    gsm_a.gmm.net_cap.smdch  SM capabilities via dedicated channels
        Boolean
    gsm_a.gmm.net_cap.smgprs  SM capabilities via GPRS channels
        Boolean
    gsm_a.gmm.net_cap.solsa  SoLSA Capability
        Boolean
    gsm_a.gmm.net_cap.srvcc_to_geran  SRVCC to GERAN/UTRAN capability
        Boolean
    gsm_a.gmm.net_cap.ss_scr_ind  SS Screening Indicator
        Unsigned 8-bit integer
    gsm_a.gmm.net_cap.ucs2  UCS2 support
        Boolean
    gsm_a.gmm.non_drx_timer  Non-DRX timer
        Unsigned 8-bit integer
    gsm_a.gmm.split_on_ccch  SPLIT on CCCH
        Boolean
    gsm_a.ptmsi_sig  P-TMSI Signature
        Unsigned 24-bit integer
    gsm_a.ptmsi_sig2  P-TMSI Signature 2
        Unsigned 24-bit integer
    gsm_a.qos.ber  Residual Bit Error Rate (BER)
        Unsigned 8-bit integer
    gsm_a.qos.del_of_err_sdu  Delivery of erroneous SDUs
        Unsigned 8-bit integer
    gsm_a.qos.del_order  Delivery order
        Unsigned 8-bit integer
    gsm_a.qos.delay_cls  Quality of Service Delay class
        Unsigned 8-bit integer
    gsm_a.qos.guar_bitrate_downl  Guaranteed bitrate for downlink
        Unsigned 8-bit integer
    gsm_a.qos.guar_bitrate_downl_ext  Guaranteed bitrate for downlink (extended)
        Unsigned 8-bit integer
    gsm_a.qos.guar_bitrate_upl  Guaranteed bitrate for uplink
        Unsigned 8-bit integer
    gsm_a.qos.guar_bitrate_upl_ext  Guaranteed bitrate for uplink (extended)
        Unsigned 8-bit integer
    gsm_a.qos.max_bitrate_downl  Maximum bitrate for downlink
        Unsigned 8-bit integer
    gsm_a.qos.max_bitrate_downl_ext  Maximum bitrate for downlink (extended)
        Unsigned 8-bit integer
    gsm_a.qos.max_bitrate_upl  Maximum bitrate for uplink
        Unsigned 8-bit integer
    gsm_a.qos.max_bitrate_upl_ext  Maximum bitrate for uplink (extended)
        Unsigned 8-bit integer
    gsm_a.qos.mean_throughput  Mean throughput
        Unsigned 8-bit integer
    gsm_a.qos.peak_throughput  Peak throughput
        Unsigned 8-bit integer
    gsm_a.qos.prec_class  Precedence class
        Unsigned 8-bit integer
    gsm_a.qos.sdu_err_rat  SDU error ratio
        Unsigned 8-bit integer
    gsm_a.qos.signalling_ind  Signalling indication
        Boolean
    gsm_a.qos.source_stat_desc  Source statistics description
        Unsigned 8-bit integer
    gsm_a.qos.traf_handl_prio  Traffic handling priority
        Unsigned 8-bit integer
    gsm_a.qos.traff_hdl_pri  Traffic handling priority
        Unsigned 8-bit integer
    gsm_a.qos.traffic_cls  Traffic class
        Unsigned 8-bit integer
    gsm_a.qos.trans_delay  Transfer delay
        Unsigned 8-bit integer
    gsm_a.sm.cause  SM Cause
        Unsigned 8-bit integer
    gsm_a.sm.cause_2  SM Cause 2
        Unsigned 8-bit integer
    gsm_a.sm.enh_nsapi  Enhanced NSAPI
        Unsigned 8-bit integer
    gsm_a.sm.ip4_address  IPv4 adress
        IPv4 address
    gsm_a.sm.ip4_mask  IPv4 address mask
        IPv4 address
    gsm_a.sm.ip6_address  IPv6 adress
        IPv6 address
    gsm_a.sm.ip6_mask  IPv6 adress mask
        IPv6 address
    gsm_a.sm.llc_sapi  LLC SAPI
        Unsigned 8-bit integer
    gsm_a.sm.packet_flow_id  Packet Flow Identifier (PFI)
        Unsigned 8-bit integer
    gsm_a.sm.pdp_type_org  PDP type organization
        Unsigned 8-bit integer
    gsm_a.sm.req_type  Request type
        Unsigned 8-bit integer
    gsm_a.sm.tdi  Tear Down Indicator (TDI)
        Boolean
    gsm_a.sm.tmgi  Temporary Mobile Group Identity (TMGI)
        Unsigned 24-bit integer
    gsm_a.tft.e_bit  E bit
        Boolean
    gsm_a.tft.flow_label_type  Flow Label Type
        Unsigned 24-bit integer
    gsm_a.tft.op_code  TFT operation code
        Unsigned 8-bit integer
    gsm_a.tft.param_id  Parameter identifier
        Unsigned 8-bit integer
    gsm_a.tft.pkt_flt  Number of packet filters
        Unsigned 8-bit integer
    gsm_a.tft.pkt_flt_dir  Packet filter direction
        Unsigned 8-bit integer
    gsm_a.tft.pkt_flt_id  Packet filter identifier
        Unsigned 8-bit integer
    gsm_a.tft.port  Port
        Unsigned 16-bit integer
    gsm_a.tft.port_high  High limit port
        Unsigned 16-bit integer
    gsm_a.tft.port_low  Low limit port
        Unsigned 16-bit integer
    gsm_a.tft.protocol_header  Protocol/header
        Unsigned 8-bit integer
    gsm_a.tft.security  IPSec security parameter index
        Unsigned 32-bit integer
    gsm_a.tft.traffic_mask  Mask field
        Unsigned 8-bit integer
    gsm_a_gm.elem_id  Element ID
        Unsigned 8-bit integer

GSM A-I/F RP (gsm_a_rp)

    gsm_a.rp_msg_type  RP Message Type
        Unsigned 8-bit integer
    gsm_a_rp.elem_id  Element ID
        Unsigned 8-bit integer

GSM CCCH (gsm_a_ccch)

    gsm_a.algorithm_identifier  Algorithm identifier
        Unsigned 8-bit integer
    gsm_a.bcc  BCC
        Unsigned 8-bit integer
    gsm_a.bcch_arfcn  BCCH ARFCN(RF channel number)
        Unsigned 16-bit integer
    gsm_a.dtap_msg_rr_type  DTAP Radio Resources Management Message Type
        Unsigned 8-bit integer
    gsm_a.ncc  NCC
        Unsigned 8-bit integer
    gsm_a.rr.1800_reporting_offset  1800 Reporting Offset
        Unsigned 8-bit integer
        Offset to the reported value when prioritising the cells for reporting for GSM frequency band 1800 (1800 Reporting Offset)
    gsm_a.rr.1800_reporting_threshold  1800 Reporting Threshold
        Unsigned 8-bit integer
        Apply priority reporting if the reported value is above threshold for GSM frequency band 1800 (1800 Reporting Threshold)
    gsm_a.rr.1900_reporting_offset  1900 Reporting Offset
        Unsigned 8-bit integer
        Offset to the reported value when prioritising the cells for reporting for GSM frequency band 1900 (1900 Reporting Offset)
    gsm_a.rr.1900_reporting_threshold  1900 Reporting Threshold
        Unsigned 8-bit integer
        Apply priority reporting if the reported value is above threshold for GSM frequency band 1900 (1900 Reporting Threshold)
    gsm_a.rr.3g_ba_ind  3G BA-IND
        Unsigned 8-bit integer
        3G BCCH Allocation Indication (3G BA-IND)
    gsm_a.rr.3g_ba_used  3G-BA-USED
        Unsigned 8-bit integer
    gsm_a.rr.3g_ccn_active  3G CCN Active
        Boolean
    gsm_a.rr.3g_search_prio  3G Search Prio
        Boolean
    gsm_a.rr.3g_wait  3G Wait
        Unsigned 8-bit integer
    gsm_a.rr.400_reporting_offset  400 Reporting Offset
        Unsigned 8-bit integer
        Offset to the reported value when prioritising the cells for reporting for GSM frequency band 400 (400 Reporting Offset)
    gsm_a.rr.400_reporting_threshold  400 Reporting Threshold
        Unsigned 8-bit integer
        Apply priority reporting if the reported value is above threshold for GSM frequency band 400 (400 Reporting Threshold)
    gsm_a.rr.700_reporting_offset  700 Reporting Offset
        Unsigned 8-bit integer
        Offset to the reported value when prioritising the cells for reporting for GSM frequency band 700 (700 Reporting Offset)
    gsm_a.rr.700_reporting_threshold  700 Reporting Threshold
        Unsigned 8-bit integer
        Apply priority reporting if the reported value is above threshold for GSM frequency band 700 (700 Reporting Threshold)
    gsm_a.rr.810_reporting_offset  810 Reporting Offset
        Unsigned 8-bit integer
        Offset to the reported value when prioritising the cells for reporting for GSM frequency band 810 (810 Reporting Offset)
    gsm_a.rr.810_reporting_threshold  810 Reporting Threshold
        Unsigned 8-bit integer
        Apply priority reporting if the reported value is above threshold for GSM frequency band 810 (810 Reporting Threshold)
    gsm_a.rr.850_reporting_offset  850 Reporting Offset
        Unsigned 8-bit integer
        Offset to the reported value when prioritising the cells for reporting for GSM frequency band 850 (850 Reporting Offset)
    gsm_a.rr.900_reporting_offset  900 Reporting Offset
        Unsigned 8-bit integer
        Offset to the reported value when prioritising the cells for reporting for GSM frequency band 900 (900 Reporting Offset)
    gsm_a.rr.900_reporting_threshold  900 Reporting Threshold
        Unsigned 8-bit integer
        Apply priority reporting if the reported value is above threshold for GSM frequency band 900 (900 Reporting Threshold)
    gsm_a.rr.CR  CR
        Unsigned 8-bit integer
    gsm_a.rr.Group_cipher_key_number  Group cipher key number
        Unsigned 8-bit integer
    gsm_a.rr.ICMI  ICMI: Initial Codec Mode Indicator
        Unsigned 8-bit integer
    gsm_a.rr.MBMS_broadcast  MBMS Broadcast
        Boolean
    gsm_a.rr.MBMS_multicast  MBMS Multicast
        Boolean
    gsm_a.rr.NCSB  NSCB: Noise Suppression Control Bit
        Unsigned 8-bit integer
    gsm_a.rr.RRcause  RR cause value
        Unsigned 8-bit integer
    gsm_a.rr.SC  SC
        Unsigned 8-bit integer
    gsm_a.rr.T1prim  T1'
        Unsigned 8-bit integer
    gsm_a.rr.T2  T2
        Unsigned 8-bit integer
    gsm_a.rr.T3  T3
        Unsigned 16-bit integer
    gsm_a.rr.absolute_index_start_emr  Absolute Index Start EMR
        Unsigned 8-bit integer
    gsm_a.rr.acc  ACC
        Unsigned 16-bit integer
        Access Control Class N barred (ACC)
    gsm_a.rr.access_burst_type  Access Burst Type
        Boolean
        Format used in the PACKET CHANNEL REQUEST message, the PS HANDOVER ACCESS message, the PTCCH uplink block and in the PACKET CONTROL ACKNOWLEDGMENT message (Access Burst Type)
    gsm_a.rr.acs  ACS
        Boolean
        Additional Reselect Param Indicator (ACS)
    gsm_a.rr.alpha  Alpha
        Unsigned 8-bit integer
        Alpha parameter for GPR MS output power control (Alpha)
    gsm_a.rr.amr_config  AMR Configuration
        Unsigned 8-bit integer
    gsm_a.rr.amr_hysteresis  AMR Hysteresis
        Unsigned 8-bit integer
    gsm_a.rr.amr_threshold  AMR Threshold
        Unsigned 8-bit integer
    gsm_a.rr.apdu_data  APDU Data
        Byte array
    gsm_a.rr.apdu_flags  APDU Flags
        Unsigned 8-bit integer
    gsm_a.rr.apdu_id  APDU ID
        Unsigned 8-bit integer
    gsm_a.rr.arfcn  ARFCN
        Unsigned 16-bit integer
        Absolute Radio Frequency Channel Number (ARFCN)
    gsm_a.rr.arfcn_first  ARFCN First
        Unsigned 16-bit integer
    gsm_a.rr.arfcn_index  ARFCN Index
        Unsigned 8-bit integer
    gsm_a.rr.arfcn_range  ARFCN Range
        Unsigned 8-bit integer
    gsm_a.rr.att  ATT
        Unsigned 8-bit integer
        Attach Indicator (ATT)
    gsm_a.rr.ba_freq  BA Freq
        Unsigned 16-bit integer
        ARFCN indicating a single frequency to be used by the mobile station in cell selection and reselection (BA Freq)
    gsm_a.rr.ba_ind  BA-IND
        Unsigned 8-bit integer
        BCCH Allocation Indication (BA-IND)
    gsm_a.rr.ba_list_pref_length  Length of BA List Pref
        Unsigned 8-bit integer
    gsm_a.rr.ba_used  BA-USED
        Unsigned 8-bit integer
    gsm_a.rr.band_offset  Band Offset
        Unsigned 16-bit integer
    gsm_a.rr.bandwidth_fdd  Bandwidth FDD
        Unsigned 8-bit integer
    gsm_a.rr.bandwidth_tdd  Bandwidth TDD
        Unsigned 8-bit integer
    gsm_a.rr.bcch_change_mark  BCCH Change Mark
        Unsigned 8-bit integer
    gsm_a.rr.bcch_freq_ncell  BCCH-FREQ-NCELL
        Unsigned 8-bit integer
    gsm_a.rr.bep_period  BEP Period
        Unsigned 8-bit integer
    gsm_a.rr.bs_ag_blks_res  BS_AG_BLKS_RES
        Unsigned 8-bit integer
        Access Grant Reserved Blocks (BS_AG_BLKS_RES)
    gsm_a.rr.bs_cv_max  BS CV Max
        Unsigned 8-bit integer
        Base Station Countdown Value Maximum (BS CV Max)
    gsm_a.rr.bs_pa_mfrms  BS-PA-MFRMS
        Unsigned 8-bit integer
    gsm_a.rr.bsic  BSIC
        Unsigned 8-bit integer
        Base Station Identify Code (BSIC)
    gsm_a.rr.bsic_ncell  BSIC-NCELL
        Unsigned 8-bit integer
    gsm_a.rr.bsic_seen  BSIC Seen
        Boolean
    gsm_a.rr.bss_paging_coordination  BSS Paging Coordination
        Boolean
    gsm_a.rr.carrier_ind  Carrier Indication
        Boolean
    gsm_a.rr.cbq  CBQ
        Unsigned 8-bit integer
        Cell Bar Qualify
    gsm_a.rr.cbq3  CBQ3
        Unsigned 8-bit integer
        Cell Bar Qualify 3
    gsm_a.rr.ccch_conf  CCCH-CONF
        Unsigned 8-bit integer
    gsm_a.rr.ccn_active  CCN Active
        Boolean
    gsm_a.rr.cell_barr_access  CELL_BARR_ACCESS
        Unsigned 8-bit integer
        Cell Barred for Access (CELL_BARR_ACCESS)
    gsm_a.rr.cell_reselect_hyst  Cell Reselection Hysteresis
        Unsigned 8-bit integer
        Cell Reselection Hysteresis (dB)
    gsm_a.rr.cell_reselect_offset  Cell Reselect Offset
        Unsigned 8-bit integer
        Offset to the C2 reselection criterion (Cell Reselect Offset)
    gsm_a.rr.channel_mode  Channel Mode
        Unsigned 8-bit integer
    gsm_a.rr.channel_mode2  Channel Mode 2
        Unsigned 8-bit integer
    gsm_a.rr.control_ack_type  Control Ack Type
        Boolean
        Default format of the PACKET CONTROL ACKNOWLEDGMENT message (Control Ack Type)
    gsm_a.rr.cv_bep  CV BEP
        Unsigned 8-bit integer
        Coefficient of Variation of the Bit Error Probability (CV BEP)
    gsm_a.rr.dedicated_mode_mbms_notification_support  Dedicated Mode MBMS Notification Support
        Boolean
    gsm_a.rr.dedicated_mode_or_tbf  Dedicated mode or TBF
        Unsigned 8-bit integer
    gsm_a.rr.drx_timer_max  DRX Timer Max
        Unsigned 8-bit integer
        Discontinuous Reception Timer Max (DRX Timer Max)
    gsm_a.rr.dtm_enhancements_capability  DTM Enhancements Capability
        Boolean
    gsm_a.rr.dtm_support  DTM Support
        Boolean
        Dual Transfer Mode Support (DTM Support)
    gsm_a.rr.dtx_bcch  DTX (BCCH)
        Unsigned 8-bit integer
        Discontinuous Transmission (DTX-BCCH)
    gsm_a.rr.dtx_sacch  DTX (SACCH)
        Unsigned 8-bit integer
        Discontinuous Transmission (DTX-SACCH)
    gsm_a.rr.dtx_used  DTX-USED
        Boolean
    gsm_a.rr.dyn_arfcn_length  Length of Dynamic Mapping
        Unsigned 8-bit integer
    gsm_a.rr.egprs_packet_channel_request  EGPRS Packet Channel Request
        Boolean
    gsm_a.rr.ext_ind  EXT-IND
        Unsigned 8-bit integer
        Extension Indication (EXT-IND)
    gsm_a.rr.ext_utbf_no_data  Ext UTBF No Data
        Boolean
    gsm_a.rr.fdd_multirat_reporting  FDD Multirat Reporting
        Unsigned 8-bit integer
        Number of cells from the FDD access technology that shall be included in the list of strongest cells or in the measurement report (FDD Multirat Reporting)
    gsm_a.rr.fdd_qmin  FDD Qmin
        Unsigned 8-bit integer
        Minimum threshold for Ec/No for UTRAN FDD cell re-selection (FDD Qmin)
    gsm_a.rr.fdd_qmin_offset  FDD Qmin Offset
        Unsigned 8-bit integer
        Offset to FDD Qmin value (FDD Qmin Offset)
    gsm_a.rr.fdd_qoffset  FDD Qoffset
        Unsigned 8-bit integer
        Offset to RLA_C for cell re selection to FDD access technology (FDD Qoffset)
    gsm_a.rr.fdd_rep_quant  FDD Rep Quant
        Boolean
        FDD Reporting Quantity (FDD Rep Quant)
    gsm_a.rr.fdd_reporting_offset  FDD Reporting Offset
        Unsigned 8-bit integer
        Offset to the reported value when prioritising the cells for reporting for FDD access technology (FDD Reporting Offset)
    gsm_a.rr.fdd_reporting_threshold  FDD Reporting Threshold
        Unsigned 8-bit integer
        Apply priority reporting if the reported value is above threshold for FDD access technology (FDD Reporting Threshold)
    gsm_a.rr.fdd_reporting_threshold_2  FDD Reporting Threshold 2
        Unsigned 8-bit integer
        Reporting threshold for the CPICH parameter (Ec/No or RSCP) that is not reported according to FDD_REP_QUANT (FDD Reporting Threshold 2)
    gsm_a.rr.fdd_rscpmin  FDD RSCPmin
        Unsigned 8-bit integer
        Minimum threshold of RSCP for UTRAN FDD cell re-selection (FDD RSCPmin)
    gsm_a.rr.fdd_uarfcn  FDD UARFCN
        Unsigned 16-bit integer
    gsm_a.rr.frequency_scrolling  Frequency Scrolling
        Boolean
    gsm_a.rr.gprs_ms_txpwr_max_cch  GPRS MS TxPwr Max CCH
        Unsigned 8-bit integer
    gsm_a.rr.gprs_resumption_ack  Ack
        Boolean
        GPRS Resumption Ack bit
    gsm_a.rr.gsm_band  GSM Band
        Unsigned 8-bit integer
    gsm_a.rr.gsm_report_type  Report Type
        Boolean
        Report type the MS shall use (Report Type)
    gsm_a.rr.ho_ref_val  Handover reference value
        Unsigned 8-bit integer
    gsm_a.rr.hsn  HSN
        Unsigned 8-bit integer
        Hopping Sequence Number (HSN)
    gsm_a.rr.inc_skip_arfcn  Increment skip ARFCN
        Unsigned 8-bit integer
    gsm_a.rr.index_start_3g  Index Start 3G
        Unsigned 8-bit integer
    gsm_a.rr.invalid_bsic_reporting  Invalid BSIC Reporting
        Boolean
    gsm_a.rr.last_segment  Last Segment
        Boolean
    gsm_a.rr.lowest_arfcn  Lowest ARFCN
        Unsigned 8-bit integer
    gsm_a.rr.lsa_offset  LSA Offset
        Unsigned 8-bit integer
        Offset to be used for LSA cell re selection between cells with the same LSA priorities (LSA Offset)
    gsm_a.rr.ma_length  MA Length
        Unsigned 8-bit integer
        Mobile Allocation Length (MA Length)
    gsm_a.rr.max_lapdm  Max LAPDm
        Unsigned 8-bit integer
        Maximum number of LAPDm frames on which a layer 3 can be segmented into and be sent on the main DCCH (Max LAPDm)
    gsm_a.rr.max_retrans  Max retrans
        Unsigned 8-bit integer
        Maximum number of retransmissions
    gsm_a.rr.mean_bep_gmsk  Mean BEP GMSK
        Unsigned 8-bit integer
        Mean Bit Error Probability in GMSK (Mean BEP GMSK)
    gsm_a.rr.meas_valid  MEAS-VALID
        Boolean
    gsm_a.rr.mi_count  Measurement Information Count
        Unsigned 8-bit integer
    gsm_a.rr.mi_index  Measurement Information Index
        Unsigned 8-bit integer
    gsm_a.rr.mnci_support  MNCI Support
        Boolean
        MBMS Neighbouring Cell Information Support (MNCI Support)
    gsm_a.rr.mobile_time_difference  Mobile Timing Difference value (in half bit periods)
        Unsigned 32-bit integer
    gsm_a.rr.mp_change_mark  Measurement Parameter Change Mark
        Unsigned 8-bit integer
    gsm_a.rr.ms_txpwr_max_cch  MS TXPWR MAX CCH
        Unsigned 8-bit integer
    gsm_a.rr.mscr  MSCR
        Unsigned 8-bit integer
        MSC Release Indicator (MSCR)
    gsm_a.rr.multiband_reporting  Multiband Reporting
        Unsigned 8-bit integer
        Number of cells to be reported in each band if Multiband Reporting
    gsm_a.rr.multiple_tbf_capability  Multiple TBF Capability
        Boolean
    gsm_a.rr.multirate_speech_ver  Multirate speech version
        Unsigned 8-bit integer
    gsm_a.rr.n_avg_i  N Avg I
        Unsigned 8-bit integer
        Interfering signal strength filter constant for power control (N Avg I)
    gsm_a.rr.nbr_rcvd_blocks  Nb Rcvd Blocks
        Unsigned 8-bit integer
        Number of correctly decoded blocks that were completed during the measurement report period (Nb Rcvd Blocks)
    gsm_a.rr.nc_non_drx_period  NC Non DRX Period
        Unsigned 8-bit integer
    gsm_a.rr.nc_reporting_period_i  NC Reporting Period I
        Unsigned 8-bit integer
        NC Reporting Period in Packet Idle mode (NC Reporting Period I)
    gsm_a.rr.nc_reporting_period_t  NC Reporting Period T
        Unsigned 8-bit integer
        NC Reporting Period in Packet Transfer mode (NC Reporting Period T)
    gsm_a.rr.ncc_permitted  NCC Permitted
        Unsigned 8-bit integer
    gsm_a.rr.nch_position  NCH Position
        Unsigned 8-bit integer
    gsm_a.rr.neci  NECI
        Unsigned 8-bit integer
        New Establishment Cause Indicator (NECI)
    gsm_a.rr.network_control_order  Network Control Order
        Unsigned 8-bit integer
    gsm_a.rr.nln_pch  NLN (PCH)
        Unsigned 8-bit integer
    gsm_a.rr.nln_sacch  NLN (SACCH)
        Unsigned 8-bit integer
    gsm_a.rr.nln_status_pch  NLN Status (PCH)
        Unsigned 8-bit integer
    gsm_a.rr.nln_status_sacch  NLN Status (SACCH)
        Unsigned 8-bit integer
    gsm_a.rr.nmo  NMO
        Unsigned 8-bit integer
        Network mode of Operation (NMO)
    gsm_a.rr.no_ncell_m  NO-NCELL-M
        Unsigned 8-bit integer
    gsm_a.rr.nw_ext_utbf  NW Ext UTBF
        Boolean
        Network Extended Uplink TBF (NW Ext UTBF)
    gsm_a.rr.page_mode  Page Mode
        Unsigned 8-bit integer
    gsm_a.rr.paging_channel_restructuring  Paging Channel Restructuring
        Boolean
    gsm_a.rr.pan_dec  PAN Dec
        Unsigned 8-bit integer
    gsm_a.rr.pan_inc  PAN Inc
        Unsigned 8-bit integer
    gsm_a.rr.pan_max  PAN Max
        Unsigned 8-bit integer
    gsm_a.rr.pbcch_pb  Pb
        Unsigned 8-bit integer
        Power reduction on PBCCH/PCCCH (Pb)
    gsm_a.rr.pbcch_tn  TN
        Unsigned 8-bit integer
        Timeslot Number for PCCH (TN)
    gsm_a.rr.pbcch_tsc  TSC
        Unsigned 8-bit integer
        Training Sequence Code for PBCCH (TSC)
    gsm_a.rr.pc_meas_chan  PC Meas Chan
        Boolean
        Channel used to measure the received power level on the downlink for the purpose of the uplink power control (PC Meas Chan)
    gsm_a.rr.penalty_time  Penalty Time
        Unsigned 8-bit integer
        Duration for which the temporary offset is applied (Penalty Time)
    gsm_a.rr.pfc_feature_mode  PFC Feature Mode
        Boolean
        Packet Flow Context Feature Mode (PFC Feature Mode)
    gsm_a.rr.pow_cmd_atc  ATC
        Boolean
    gsm_a.rr.pow_cmd_epc  EPC_mode
        Boolean
    gsm_a.rr.pow_cmd_fpcepc  FPC_EPC
        Boolean
    gsm_a.rr.pow_cmd_pow  POWER LEVEL
        Unsigned 8-bit integer
    gsm_a.rr.power_offset  Power Offset
        Unsigned 8-bit integer
        Power offset used in conjunction with the MS TXPWR MAX CCH parameter by the class 3 DCS 1800 MS (Power Offset)
    gsm_a.rr.prio_thr  Prio Thr
        Unsigned 8-bit integer
        Prio signal strength threshold is related to RXLEV ACCESS_MIN (Prio Thr)
    gsm_a.rr.priority_access_thr  Priority Access Thr
        Unsigned 8-bit integer
        Priority Access Threshold for packet access (Priority Access Thr)
    gsm_a.rr.psi1_repeat_period  PSI1 Repeat Period
        Unsigned 8-bit integer
    gsm_a.rr.pwrc  PWRC
        Boolean
        Power Control Indicator (PWRC)
    gsm_a.rr.qsearch_c  Qsearch C
        Unsigned 8-bit integer
        Search for 3G cells if signal level is below (0 7) or above (8 15) threshold (Qsearch C)
    gsm_a.rr.qsearch_c_initial  QSearch C Initial
        Boolean
        Qsearch value to be used in connected mode before Qsearch C is received (QSearch C Initial)
    gsm_a.rr.qsearch_i  Qsearch I
        Unsigned 8-bit integer
        Search for 3G cells if signal level is below (0 7) or above (8 15) threshold (Qsearch I)
    gsm_a.rr.qsearch_p  Qsearch P
        Unsigned 8-bit integer
        Search for 3G cells if signal level below threshold (Qsearch P)
    gsm_a.rr.rac  RAC
        Unsigned 8-bit integer
        Routeing Area Code
    gsm_a.rr.radio_link_timeout  Radio Link Timeout
        Unsigned 8-bit integer
        Radio Link Timeout (s)
    gsm_a.rr.range_higher  Range Higher
        Unsigned 16-bit integer
        ARFCN used as the higher limit of a range of frequencies to be used by the mobile station in cell selection (Range Higher)
    gsm_a.rr.range_lower  Range Lower
        Unsigned 16-bit integer
        ARFCN used as the lower limit of a range of frequencies to be used by the mobile station in cell selection (Range Lower)
    gsm_a.rr.range_nb  Number of Ranges
        Unsigned 8-bit integer
    gsm_a.rr.re  RE
        Boolean
        Call re-establishment allowed (RE)
    gsm_a.rr.reduced_latency_access  Reduced Latency Access
        Boolean
    gsm_a.rr.rep_priority  Rep Priority
        Boolean
        Reporting Priority
    gsm_a.rr.report_type  Report Type
        Boolean
    gsm_a.rr.reporting_quantity  Reporting Quantity
        Unsigned 8-bit integer
    gsm_a.rr.reporting_rate  Reporting Rate
        Boolean
    gsm_a.rr.rfl_number  RFL Number
        Unsigned 8-bit integer
        Radio Frequency List Number (RFL Number)
    gsm_a.rr.rfn  RFN
        Unsigned 16-bit integer
        Reduced Frame Number
    gsm_a.rr.rr_2_pseudo_len  L2 Pseudo Length value
        Unsigned 8-bit integer
    gsm_a.rr.rxlev_access_min  RXLEV-ACCESS-MIN
        Unsigned 8-bit integer
    gsm_a.rr.rxlev_full_serv_cell  RXLEV-FULL-SERVING-CELL
        Unsigned 8-bit integer
    gsm_a.rr.rxlev_ncell  RXLEV-NCELL
        Unsigned 8-bit integer
    gsm_a.rr.rxlev_sub_serv_cell  RXLEV-SUB-SERVING-CELL
        Unsigned 8-bit integer
    gsm_a.rr.rxqual_full_serv_cell  RXQUAL-FULL-SERVING-CELL
        Unsigned 8-bit integer
    gsm_a.rr.rxqual_sub_serv_cell  RXQUAL-SUB-SERVING-CELL
        Unsigned 8-bit integer
    gsm_a.rr.scale  Scale
        Boolean
        Offset applied for the reported RXLEV values (Scale)
    gsm_a.rr.scale_ord  Scale Ord
        Unsigned 8-bit integer
        Offset used for the reported RXLEV values (Scale Ord)
    gsm_a.rr.seq_code  Sequence Code
        Unsigned 8-bit integer
    gsm_a.rr.serving_band_reporting  Serving Band Reporting
        Unsigned 8-bit integer
        Number of cells reported from the GSM serving frequency band (Serving Band Reporting)
    gsm_a.rr.set_of_amr_codec_modes_v1b1  4,75 kbit/s codec rate
        Boolean
    gsm_a.rr.set_of_amr_codec_modes_v1b2  5,15 kbit/s codec rate
        Boolean
    gsm_a.rr.set_of_amr_codec_modes_v1b3  5,90 kbit/s codec rate
        Boolean
    gsm_a.rr.set_of_amr_codec_modes_v1b4  6,70 kbit/s codec rate
        Boolean
    gsm_a.rr.set_of_amr_codec_modes_v1b5  7,40 kbit/s codec rate
        Boolean
    gsm_a.rr.set_of_amr_codec_modes_v1b6  7,95 kbit/s codec rate
        Boolean
    gsm_a.rr.set_of_amr_codec_modes_v1b7  10,2 kbit/s codec rate
        Boolean
    gsm_a.rr.set_of_amr_codec_modes_v1b8  12,2 kbit/s codec rate
        Boolean
    gsm_a.rr.set_of_amr_codec_modes_v2b1  6,60 kbit/s codec rate
        Boolean
    gsm_a.rr.set_of_amr_codec_modes_v2b2  8,85 kbit/s codec rate
        Boolean
    gsm_a.rr.set_of_amr_codec_modes_v2b3  12,65 kbit/s codec rate
        Boolean
    gsm_a.rr.set_of_amr_codec_modes_v2b4  15,85 kbit/s codec rate
        Boolean
    gsm_a.rr.set_of_amr_codec_modes_v2b5  23,85 kbit/s codec rate
        Boolean
    gsm_a.rr.sgsnr  SGSNR
        Boolean
        SGSN Release (SGSNR)
    gsm_a.rr.si13_change_mark  SI13 Change Mark
        Unsigned 8-bit integer
    gsm_a.rr.si13_position  SI13 Position
        Unsigned 8-bit integer
    gsm_a.rr.si13alt_position  SI13alt Position
        Boolean
    gsm_a.rr.si2n_support  SI2n Support
        Unsigned 8-bit integer
    gsm_a.rr.si2quater_count  SI2quater Count
        Unsigned 8-bit integer
    gsm_a.rr.si2quater_index  SI2quater Index
        Unsigned 8-bit integer
    gsm_a.rr.si2quater_position  SI2quater Position
        Boolean
    gsm_a.rr.si2ter_3g_change_mark  SI2ter 3G Change Mark
        Unsigned 8-bit integer
    gsm_a.rr.si2ter_count  SI2ter Count
        Unsigned 8-bit integer
    gsm_a.rr.si2ter_index  SI2ter Index
        Unsigned 8-bit integer
    gsm_a.rr.si2ter_mp_change_mark  SI2ter Measurement Parameter Change Mark
        Unsigned 8-bit integer
    gsm_a.rr.si_change_field  SI Change Field
        Unsigned 8-bit integer
    gsm_a.rr.si_status_ind  SI Status Ind
        Boolean
    gsm_a.rr.spgc_ccch_sup  SPGC CCCH Sup
        Boolean
        Split PG Cycle Code on CCCH Support (SPGC CCCH Sup)
    gsm_a.rr.start_mode  Start Mode
        Unsigned 8-bit integer
    gsm_a.rr.suspension_cause  Suspension cause value
        Unsigned 8-bit integer
    gsm_a.rr.sync_ind_nci  Normal cell indication(NCI)
        Boolean
    gsm_a.rr.sync_ind_rot  Report Observed Time Difference(ROT)
        Boolean
    gsm_a.rr.t3168  T3168
        Unsigned 8-bit integer
    gsm_a.rr.t3192  T3192
        Unsigned 8-bit integer
    gsm_a.rr.t3212  T3212
        Unsigned 8-bit integer
        Periodic Update period (T3212) (deci-hours)
    gsm_a.rr.t_avg_t  T Avg T
        Unsigned 8-bit integer
        Signal strength filter period for power control in packet transfer mode
    gsm_a.rr.t_avg_w  T Avg W
        Unsigned 8-bit integer
        Signal strength filter period for power control in packet idle mode
    gsm_a.rr.target_mode  Target mode
        Unsigned 8-bit integer
    gsm_a.rr.tdd_multirat_reporting  TDD Multirat Reporting
        Unsigned 8-bit integer
        Number of cells from the TDD access technology that shall be included in the list of strongest cells or in the measurement report (TDD Multirat Reporting)
    gsm_a.rr.tdd_qoffset  TDD Qoffset
        Unsigned 8-bit integer
        Offset to RLA_C for cell re selection to TDD access technology (TDD Qoffset)
    gsm_a.rr.tdd_reporting_offset  TDD Reporting Offset
        Unsigned 8-bit integer
        Offset to the reported value when prioritising the cells for reporting for TDD access technology (TDD Reporting Offset)
    gsm_a.rr.tdd_reporting_threshold  TDD Reporting Threshold
        Unsigned 8-bit integer
        Apply priority reporting if the reported value is above threshold for TDD access technology (TDD Reporting Threshold)
    gsm_a.rr.tdd_uarfcn  TDD UARFCN
        Unsigned 16-bit integer
    gsm_a.rr.temporary_offset  Temporary Offset
        Unsigned 8-bit integer
        Negative offset to C2 for the duration of Penalty Time (Temporary Offset)
    gsm_a.rr.time_diff  Time difference value
        Unsigned 8-bit integer
    gsm_a.rr.timing_adv  Timing advance value
        Unsigned 8-bit integer
    gsm_a.rr.tlli  TLLI
        Unsigned 32-bit integer
    gsm_a.rr.tmsi_ptmsi  TMSI/P-TMSI Value
        Unsigned 32-bit integer
    gsm_a.rr.tx_integer  Tx-integer
        Unsigned 8-bit integer
        Number of Slots to spread Transmission (Tx-integer)
    gsm_a.rr.utran_freq_length  Length of UTRAN freq list
        Unsigned 8-bit integer
    gsm_a.rr.vbs_vgcs_inband_notifications  Inband Notifications
        Boolean
    gsm_a.rr.vbs_vgcs_inband_pagings  Inband Pagings
        Boolean
    gsm_a.rr.wait_indication  Wait Indication
        Unsigned 8-bit integer
    gsm_a.rr_cdma200_cm_cng_msg_req  CDMA2000 CLASSMARK CHANGE
        Boolean
    gsm_a.rr_chnl_needed_ch1  Channel 1
        Unsigned 8-bit integer
    gsm_a.rr_chnl_needed_ch2  Channel 2
        Unsigned 8-bit integer
    gsm_a.rr_chnl_needed_ch3  Channel 3
        Unsigned 8-bit integer
    gsm_a.rr_chnl_needed_ch4  Channel 4
        Unsigned 8-bit integer
    gsm_a.rr_cm_cng_msg_req  CLASSMARK CHANGE
        Boolean
    gsm_a.rr_format_id  Format Identifier
        Unsigned 8-bit integer
    gsm_a.rr_geran_iu_cm_cng_msg_req  GERAN IU MODE CLASSMARK CHANGE
        Boolean
    gsm_a.rr_sync_ind_si  Synchronization indication(SI)
        Unsigned 8-bit integer
    gsm_a.rr_utran_cm_cng_msg_req  UTRAN CLASSMARK CHANGE
        Unsigned 8-bit integer
    gsm_a_rr.elem_id  Element ID
        Unsigned 8-bit integer
    gsm_a_rr_ra  Random Access Information (RA)
        Unsigned 8-bit integer

GSM Mobile Application (gsm_map)

    gsm_map.HLR_Id  HLR-Id
        Byte array
    gsm_map.PlmnContainer  PlmnContainer
        No value
        gsm_map.PlmnContainer
    gsm_map.PrivateExtension  PrivateExtension
        No value
    gsm_map.accessNetworkProtocolId  accessNetworkProtocolId
        Unsigned 32-bit integer
    gsm_map.address.digits  Address digits
        String
    gsm_map.bearerService  bearerService
        Unsigned 8-bit integer
        BearerServiceCode
    gsm_map.cbs.cbs_coding_grp15_mess_code  Message coding
        Unsigned 8-bit integer
    gsm_map.cbs.coding_grp  Coding Group
        Unsigned 8-bit integer
    gsm_map.cbs.coding_grp0_lang  Language
        Unsigned 8-bit integer
    gsm_map.cbs.coding_grp1_lang  Language
        Unsigned 8-bit integer
    gsm_map.cbs.coding_grp2_lang  Language
        Unsigned 8-bit integer
    gsm_map.cbs.coding_grp3_lang  Language
        Unsigned 8-bit integer
    gsm_map.cbs.coding_grp4_7_char_set  Character set being used
        Unsigned 8-bit integer
    gsm_map.cbs.coding_grp4_7_class  Message Class
        Unsigned 8-bit integer
    gsm_map.cbs.coding_grp4_7_class_ind  Message Class present
        Boolean
    gsm_map.cbs.coding_grp4_7_comp  Compressed indicator
        Boolean
    gsm_map.cbs.gsm_map_cbs_coding_grp15_class  Message Class
        Unsigned 8-bit integer
    gsm_map.cellGlobalIdOrServiceAreaIdFixedLength  cellGlobalIdOrServiceAreaIdFixedLength
        Byte array
    gsm_map.ch.additionalSignalInfo  additionalSignalInfo
        No value
        Ext_ExternalSignalInfo
    gsm_map.ch.alertingPattern  alertingPattern
        Byte array
    gsm_map.ch.allInformationSent  allInformationSent
        No value
    gsm_map.ch.allowedServices  allowedServices
        Byte array
    gsm_map.ch.basicService  basicService
        Unsigned 32-bit integer
        Ext_BasicServiceCode
    gsm_map.ch.basicService2  basicService2
        Unsigned 32-bit integer
        Ext_BasicServiceCode
    gsm_map.ch.basicServiceGroup  basicServiceGroup
        Unsigned 32-bit integer
        Ext_BasicServiceCode
    gsm_map.ch.basicServiceGroup2  basicServiceGroup2
        Unsigned 32-bit integer
        Ext_BasicServiceCode
    gsm_map.ch.callDiversionTreatmentIndicator  callDiversionTreatmentIndicator
        Byte array
    gsm_map.ch.callInfo  callInfo
        No value
        ExternalSignalInfo
    gsm_map.ch.callOutcome  callOutcome
        Unsigned 32-bit integer
    gsm_map.ch.callPriority  callPriority
        Unsigned 32-bit integer
        EMLPP_Priority
    gsm_map.ch.callReferenceNumber  callReferenceNumber
        Byte array
    gsm_map.ch.callReportdata  callReportdata
        No value
    gsm_map.ch.callTerminationIndicator  callTerminationIndicator
        Unsigned 32-bit integer
    gsm_map.ch.camelInfo  camelInfo
        No value
    gsm_map.ch.camelRoutingInfo  camelRoutingInfo
        No value
    gsm_map.ch.ccbs_Call  ccbs-Call
        No value
    gsm_map.ch.ccbs_Feature  ccbs-Feature
        No value
    gsm_map.ch.ccbs_Indicators  ccbs-Indicators
        No value
    gsm_map.ch.ccbs_Monitoring  ccbs-Monitoring
        Unsigned 32-bit integer
        ReportingState
    gsm_map.ch.ccbs_Possible  ccbs-Possible
        No value
    gsm_map.ch.ccbs_SubscriberStatus  ccbs-SubscriberStatus
        Unsigned 32-bit integer
    gsm_map.ch.cugSubscriptionFlag  cugSubscriptionFlag
        No value
    gsm_map.ch.cug_CheckInfo  cug-CheckInfo
        No value
    gsm_map.ch.cug_Interlock  cug-Interlock
        Byte array
    gsm_map.ch.cug_OutgoingAccess  cug-OutgoingAccess
        No value
    gsm_map.ch.d_csi  d-csi
        No value
    gsm_map.ch.eventReportData  eventReportData
        No value
    gsm_map.ch.extendedRoutingInfo  extendedRoutingInfo
        Unsigned 32-bit integer
    gsm_map.ch.extensionContainer  extensionContainer
        No value
    gsm_map.ch.firstServiceAllowed  firstServiceAllowed
        Boolean
    gsm_map.ch.forwardedToNumber  forwardedToNumber
        Byte array
        ISDN_AddressString
    gsm_map.ch.forwardedToSubaddress  forwardedToSubaddress
        Byte array
        ISDN_SubaddressString
    gsm_map.ch.forwardingData  forwardingData
        No value
    gsm_map.ch.forwardingInterrogationRequired  forwardingInterrogationRequired
        No value
    gsm_map.ch.forwardingOptions  forwardingOptions
        Byte array
    gsm_map.ch.forwardingReason  forwardingReason
        Unsigned 32-bit integer
    gsm_map.ch.gmscCamelSubscriptionInfo  gmscCamelSubscriptionInfo
        No value
    gsm_map.ch.gmsc_Address  gmsc-Address
        Byte array
        ISDN_AddressString
    gsm_map.ch.gmsc_OrGsmSCF_Address  gmsc-OrGsmSCF-Address
        Byte array
        ISDN_AddressString
    gsm_map.ch.gsmSCF_InitiatedCall  gsmSCF-InitiatedCall
        No value
    gsm_map.ch.gsm_BearerCapability  gsm-BearerCapability
        No value
        ExternalSignalInfo
    gsm_map.ch.imsi  imsi
        Byte array
    gsm_map.ch.interrogationType  interrogationType
        Unsigned 32-bit integer
    gsm_map.ch.istAlertTimer  istAlertTimer
        Unsigned 32-bit integer
        IST_AlertTimerValue
    gsm_map.ch.istInformationWithdraw  istInformationWithdraw
        No value
    gsm_map.ch.istSupportIndicator  istSupportIndicator
        Unsigned 32-bit integer
        IST_SupportIndicator
    gsm_map.ch.keepCCBS_CallIndicator  keepCCBS-CallIndicator
        No value
    gsm_map.ch.lmsi  lmsi
        Byte array
    gsm_map.ch.longFTN_Supported  longFTN-Supported
        No value
    gsm_map.ch.longForwardedToNumber  longForwardedToNumber
        Byte array
        FTN_AddressString
    gsm_map.ch.monitoringMode  monitoringMode
        Unsigned 32-bit integer
    gsm_map.ch.msc_Number  msc-Number
        Byte array
        ISDN_AddressString
    gsm_map.ch.msisdn  msisdn
        Byte array
        ISDN_AddressString
    gsm_map.ch.msrn  msrn
        Byte array
        ISDN_AddressString
    gsm_map.ch.mtRoamingRetry  mtRoamingRetry
        No value
    gsm_map.ch.mtRoamingRetryIndicator  mtRoamingRetryIndicator
        No value
    gsm_map.ch.mtRoamingRetrySupported  mtRoamingRetrySupported
        No value
    gsm_map.ch.naea_PreferredCI  naea-PreferredCI
        No value
    gsm_map.ch.networkSignalInfo  networkSignalInfo
        No value
        ExternalSignalInfo
    gsm_map.ch.networkSignalInfo2  networkSignalInfo2
        No value
        ExternalSignalInfo
    gsm_map.ch.numberOfForwarding  numberOfForwarding
        Unsigned 32-bit integer
    gsm_map.ch.numberPortabilityStatus  numberPortabilityStatus
        Unsigned 32-bit integer
    gsm_map.ch.o_BcsmCamelTDPCriteriaList  o-BcsmCamelTDPCriteriaList
        Unsigned 32-bit integer
    gsm_map.ch.o_BcsmCamelTDP_CriteriaList  o-BcsmCamelTDP-CriteriaList
        Unsigned 32-bit integer
        O_BcsmCamelTDPCriteriaList
    gsm_map.ch.o_CSI  o-CSI
        No value
    gsm_map.ch.offeredCamel4CSIs  offeredCamel4CSIs
        Byte array
    gsm_map.ch.offeredCamel4CSIsInInterrogatingNode  offeredCamel4CSIsInInterrogatingNode
        Byte array
        OfferedCamel4CSIs
    gsm_map.ch.offeredCamel4CSIsInVMSC  offeredCamel4CSIsInVMSC
        Byte array
        OfferedCamel4CSIs
    gsm_map.ch.orNotSupportedInGMSC  orNotSupportedInGMSC
        No value
    gsm_map.ch.or_Capability  or-Capability
        Unsigned 32-bit integer
        OR_Phase
    gsm_map.ch.or_Interrogation  or-Interrogation
        No value
    gsm_map.ch.pagingArea  pagingArea
        Unsigned 32-bit integer
    gsm_map.ch.pre_pagingSupported  pre-pagingSupported
        No value
    gsm_map.ch.releaseResourcesSupported  releaseResourcesSupported
        No value
    gsm_map.ch.replaceB_Number  replaceB-Number
        No value
    gsm_map.ch.roamingNumber  roamingNumber
        Byte array
        ISDN_AddressString
    gsm_map.ch.routingInfo  routingInfo
        Unsigned 32-bit integer
    gsm_map.ch.routingInfo2  routingInfo2
        Unsigned 32-bit integer
        RoutingInfo
    gsm_map.ch.ruf_Outcome  ruf-Outcome
        Unsigned 32-bit integer
    gsm_map.ch.secondServiceAllowed  secondServiceAllowed
        Boolean
    gsm_map.ch.ss_List  ss-List
        Unsigned 32-bit integer
    gsm_map.ch.ss_List2  ss-List2
        Unsigned 32-bit integer
        SS_List
    gsm_map.ch.subscriberInfo  subscriberInfo
        No value
    gsm_map.ch.supportedCCBS_Phase  supportedCCBS-Phase
        Unsigned 32-bit integer
    gsm_map.ch.supportedCamelPhases  supportedCamelPhases
        Byte array
    gsm_map.ch.supportedCamelPhasesInInterrogatingNode  supportedCamelPhasesInInterrogatingNode
        Byte array
        SupportedCamelPhases
    gsm_map.ch.supportedCamelPhasesInVMSC  supportedCamelPhasesInVMSC
        Byte array
        SupportedCamelPhases
    gsm_map.ch.suppressCCBS  suppressCCBS
        Boolean
    gsm_map.ch.suppressCUG  suppressCUG
        Boolean
    gsm_map.ch.suppressIncomingCallBarring  suppressIncomingCallBarring
        No value
    gsm_map.ch.suppressMTSS  suppressMTSS
        Byte array
    gsm_map.ch.suppress_T_CSI  suppress-T-CSI
        No value
    gsm_map.ch.suppress_VT_CSI  suppress-VT-CSI
        No value
    gsm_map.ch.suppressionOfAnnouncement  suppressionOfAnnouncement
        No value
    gsm_map.ch.t_BCSM_CAMEL_TDP_CriteriaList  t-BCSM-CAMEL-TDP-CriteriaList
        Unsigned 32-bit integer
    gsm_map.ch.t_CSI  t-CSI
        No value
    gsm_map.ch.translatedB_Number  translatedB-Number
        Byte array
        ISDN_AddressString
    gsm_map.ch.unavailabilityCause  unavailabilityCause
        Unsigned 32-bit integer
    gsm_map.ch.uuIndicator  uuIndicator
        Byte array
    gsm_map.ch.uu_Data  uu-Data
        No value
    gsm_map.ch.uui  uui
        Byte array
    gsm_map.ch.uusCFInteraction  uusCFInteraction
        No value
    gsm_map.ch.vmsc_Address  vmsc-Address
        Byte array
        ISDN_AddressString
    gsm_map.currentPassword  currentPassword
        String
    gsm_map.defaultPriority  defaultPriority
        Unsigned 32-bit integer
        EMLPP_Priority
    gsm_map.dialogue.MAP_DialoguePDU  MAP-DialoguePDU
        Unsigned 32-bit integer
    gsm_map.dialogue.alternativeApplicationContext  alternativeApplicationContext
        Object Identifier
        OBJECT_IDENTIFIER
    gsm_map.dialogue.applicationProcedureCancellation  applicationProcedureCancellation
        Unsigned 32-bit integer
        ProcedureCancellationReason
    gsm_map.dialogue.destinationReference  destinationReference
        Byte array
        AddressString
    gsm_map.dialogue.extensionContainer  extensionContainer
        No value
    gsm_map.dialogue.map_ProviderAbortReason  map-ProviderAbortReason
        Unsigned 32-bit integer
    gsm_map.dialogue.map_UserAbortChoice  map-UserAbortChoice
        Unsigned 32-bit integer
    gsm_map.dialogue.map_accept  map-accept
        No value
        MAP_AcceptInfo
    gsm_map.dialogue.map_close  map-close
        No value
        MAP_CloseInfo
    gsm_map.dialogue.map_open  map-open
        No value
        MAP_OpenInfo
    gsm_map.dialogue.map_providerAbort  map-providerAbort
        No value
        MAP_ProviderAbortInfo
    gsm_map.dialogue.map_refuse  map-refuse
        No value
        MAP_RefuseInfo
    gsm_map.dialogue.map_userAbort  map-userAbort
        No value
        MAP_UserAbortInfo
    gsm_map.dialogue.originationReference  originationReference
        Byte array
        AddressString
    gsm_map.dialogue.reason  reason
        Unsigned 32-bit integer
    gsm_map.dialogue.resourceUnavailable  resourceUnavailable
        Unsigned 32-bit integer
        ResourceUnavailableReason
    gsm_map.dialogue.userResourceLimitation  userResourceLimitation
        No value
    gsm_map.dialogue.userSpecificReason  userSpecificReason
        No value
    gsm_map.disc_par  Discrimination parameter
        Unsigned 8-bit integer
    gsm_map.er.absentSubscriberDiagnosticSM  absentSubscriberDiagnosticSM
        Unsigned 32-bit integer
    gsm_map.er.absentSubscriberReason  absentSubscriberReason
        Unsigned 32-bit integer
    gsm_map.er.additionalAbsentSubscriberDiagnosticSM  additionalAbsentSubscriberDiagnosticSM
        Unsigned 32-bit integer
        AbsentSubscriberDiagnosticSM
    gsm_map.er.additionalNetworkResource  additionalNetworkResource
        Unsigned 32-bit integer
    gsm_map.er.additionalRoamingNotAllowedCause  additionalRoamingNotAllowedCause
        Unsigned 32-bit integer
    gsm_map.er.basicService  basicService
        Unsigned 32-bit integer
        BasicServiceCode
    gsm_map.er.callBarringCause  callBarringCause
        Unsigned 32-bit integer
    gsm_map.er.ccbs_Busy  ccbs-Busy
        No value
    gsm_map.er.ccbs_Possible  ccbs-Possible
        No value
    gsm_map.er.cug_RejectCause  cug-RejectCause
        Unsigned 32-bit integer
    gsm_map.er.diagnosticInfo  diagnosticInfo
        Byte array
        SignalInfo
    gsm_map.er.extensibleCallBarredParam  extensibleCallBarredParam
        No value
    gsm_map.er.extensibleSystemFailureParam  extensibleSystemFailureParam
        No value
    gsm_map.er.extensionContainer  extensionContainer
        No value
    gsm_map.er.failureCauseParam  failureCauseParam
        Unsigned 32-bit integer
    gsm_map.er.gprsConnectionSuspended  gprsConnectionSuspended
        No value
    gsm_map.er.neededLcsCapabilityNotSupportedInServingNode  neededLcsCapabilityNotSupportedInServingNode
        No value
    gsm_map.er.networkResource  networkResource
        Unsigned 32-bit integer
    gsm_map.er.positionMethodFailure_Diagnostic  positionMethodFailure-Diagnostic
        Unsigned 32-bit integer
    gsm_map.er.roamingNotAllowedCause  roamingNotAllowedCause
        Unsigned 32-bit integer
    gsm_map.er.shapeOfLocationEstimateNotSupported  shapeOfLocationEstimateNotSupported
        No value
    gsm_map.er.sm_EnumeratedDeliveryFailureCause  sm-EnumeratedDeliveryFailureCause
        Unsigned 32-bit integer
    gsm_map.er.ss_Code  ss-Code
        Unsigned 8-bit integer
    gsm_map.er.ss_Status  ss-Status
        Byte array
    gsm_map.er.unauthorisedMessageOriginator  unauthorisedMessageOriginator
        No value
    gsm_map.er.unauthorizedLCSClient_Diagnostic  unauthorizedLCSClient-Diagnostic
        Unsigned 32-bit integer
    gsm_map.er.unknownSubscriberDiagnostic  unknownSubscriberDiagnostic
        Unsigned 32-bit integer
    gsm_map.extId  extId
        Object Identifier
    gsm_map.extType  extType
        No value
    gsm_map.ext_BearerService  ext-BearerService
        Unsigned 8-bit integer
        Ext_BearerServiceCode
    gsm_map.ext_ProtocolId  ext-ProtocolId
        Unsigned 32-bit integer
    gsm_map.ext_Teleservice  ext-Teleservice
        Unsigned 8-bit integer
        Ext_TeleserviceCode
    gsm_map.ext_qos_subscribed_pri  Allocation/Retention priority
        Unsigned 8-bit integer
    gsm_map.extension  Extension
        Boolean
    gsm_map.extensionContainer  extensionContainer
        No value
    gsm_map.externalAddress  externalAddress
        Byte array
        ISDN_AddressString
    gsm_map.forwarding_reason  Forwarding reason
        Unsigned 8-bit integer
    gsm_map.getPassword  getPassword
        Unsigned 8-bit integer
    gsm_map.gr.additionalInfo  additionalInfo
        Byte array
    gsm_map.gr.additionalSubscriptions  additionalSubscriptions
        Byte array
    gsm_map.gr.an_APDU  an-APDU
        No value
        AccessNetworkSignalInfo
    gsm_map.gr.anchorMSC_Address  anchorMSC-Address
        Byte array
        ISDN_AddressString
    gsm_map.gr.asciCallReference  asciCallReference
        Byte array
        ASCI_CallReference
    gsm_map.gr.callOriginator  callOriginator
        No value
    gsm_map.gr.cellId  cellId
        Byte array
        GlobalCellId
    gsm_map.gr.cipheringAlgorithm  cipheringAlgorithm
        Byte array
    gsm_map.gr.cksn  cksn
        Byte array
    gsm_map.gr.codec_Info  codec-Info
        Byte array
    gsm_map.gr.downlinkAttached  downlinkAttached
        No value
    gsm_map.gr.dualCommunication  dualCommunication
        No value
    gsm_map.gr.emergencyModeResetCommandFlag  emergencyModeResetCommandFlag
        No value
    gsm_map.gr.extensionContainer  extensionContainer
        No value
    gsm_map.gr.groupCallNumber  groupCallNumber
        Byte array
        ISDN_AddressString
    gsm_map.gr.groupId  groupId
        Byte array
        Long_GroupId
    gsm_map.gr.groupKey  groupKey
        Byte array
        Kc
    gsm_map.gr.groupKeyNumber_Vk_Id  groupKeyNumber-Vk-Id
        Unsigned 32-bit integer
        GroupKeyNumber
    gsm_map.gr.imsi  imsi
        Byte array
    gsm_map.gr.kc  kc
        Byte array
    gsm_map.gr.priority  priority
        Unsigned 32-bit integer
        EMLPP_Priority
    gsm_map.gr.releaseGroupCall  releaseGroupCall
        No value
    gsm_map.gr.requestedInfo  requestedInfo
        Unsigned 32-bit integer
    gsm_map.gr.sm_RP_UI  sm-RP-UI
        Byte array
        SignalInfo
    gsm_map.gr.stateAttributes  stateAttributes
        No value
    gsm_map.gr.talkerChannelParameter  talkerChannelParameter
        No value
    gsm_map.gr.talkerPriority  talkerPriority
        Unsigned 32-bit integer
    gsm_map.gr.teleservice  teleservice
        Unsigned 8-bit integer
        Ext_TeleserviceCode
    gsm_map.gr.tmsi  tmsi
        Byte array
    gsm_map.gr.uplinkAttached  uplinkAttached
        No value
    gsm_map.gr.uplinkFree  uplinkFree
        No value
    gsm_map.gr.uplinkRejectCommand  uplinkRejectCommand
        No value
    gsm_map.gr.uplinkReleaseCommand  uplinkReleaseCommand
        No value
    gsm_map.gr.uplinkReleaseIndication  uplinkReleaseIndication
        No value
    gsm_map.gr.uplinkReplyIndicator  uplinkReplyIndicator
        No value
    gsm_map.gr.uplinkRequest  uplinkRequest
        No value
    gsm_map.gr.uplinkRequestAck  uplinkRequestAck
        No value
    gsm_map.gr.uplinkSeizedCommand  uplinkSeizedCommand
        No value
    gsm_map.gr.vstk  vstk
        Byte array
    gsm_map.gr.vstk_rand  vstk-rand
        Byte array
    gsm_map.gsnaddress_ipv4  GSN-Address IPv4
        IPv4 address
        IPAddress IPv4
    gsm_map.gsnaddress_ipv6  GSN Address IPv6
        IPv4 address
        IPAddress IPv6
    gsm_map.ie_tag  Tag
        Unsigned 8-bit integer
        GSM 04.08 tag
    gsm_map.ietf_pdp_type_number  PDP Type Number
        Unsigned 8-bit integer
        IETF PDP Type Number
    gsm_map.imsi  imsi
        Byte array
    gsm_map.imsi_WithLMSI  imsi-WithLMSI
        No value
    gsm_map.imsi_digits  IMSI digits
        String
    gsm_map.isdn.address.digits  ISDN Address digits
        String
    gsm_map.laiFixedLength  laiFixedLength
        Byte array
    gsm_map.lcs.Area  Area
        No value
    gsm_map.lcs.LCS_ClientID  LCS-ClientID
        No value
    gsm_map.lcs.ReportingPLMN  ReportingPLMN
        No value
    gsm_map.lcs.aaa_Server_Name  aaa-Server-Name
        Byte array
        DiameterIdentity
    gsm_map.lcs.accuracyFulfilmentIndicator  accuracyFulfilmentIndicator
        Unsigned 32-bit integer
    gsm_map.lcs.add_LocationEstimate  add-LocationEstimate
        Byte array
        Add_GeographicalInformation
    gsm_map.lcs.additional_LCS_CapabilitySets  additional-LCS-CapabilitySets
        Byte array
        SupportedLCS_CapabilitySets
    gsm_map.lcs.additional_Number  additional-Number
        Unsigned 32-bit integer
    gsm_map.lcs.additional_v_gmlc_Address  additional-v-gmlc-Address
        Byte array
        GSN_Address
    gsm_map.lcs.ageOfLocationEstimate  ageOfLocationEstimate
        Unsigned 32-bit integer
        AgeOfLocationInformation
    gsm_map.lcs.areaDefinition  areaDefinition
        No value
    gsm_map.lcs.areaEventInfo  areaEventInfo
        No value
    gsm_map.lcs.areaIdentification  areaIdentification
        Byte array
    gsm_map.lcs.areaList  areaList
        Unsigned 32-bit integer
    gsm_map.lcs.areaType  areaType
        Unsigned 32-bit integer
    gsm_map.lcs.beingInsideArea  beingInsideArea
        Boolean
    gsm_map.lcs.callSessionRelated  callSessionRelated
        Unsigned 32-bit integer
        PrivacyCheckRelatedAction
    gsm_map.lcs.callSessionUnrelated  callSessionUnrelated
        Unsigned 32-bit integer
        PrivacyCheckRelatedAction
    gsm_map.lcs.cellIdOrSai  cellIdOrSai
        Unsigned 32-bit integer
        CellGlobalIdOrServiceAreaIdOrLAI
    gsm_map.lcs.dataCodingScheme  dataCodingScheme
        Byte array
        USSD_DataCodingScheme
    gsm_map.lcs.deferredLocationEventType  deferredLocationEventType
        Byte array
    gsm_map.lcs.deferredmt_lrData  deferredmt-lrData
        No value
    gsm_map.lcs.deferredmt_lrResponseIndicator  deferredmt-lrResponseIndicator
        No value
    gsm_map.lcs.ellipsoidArc  ellipsoidArc
        Boolean
    gsm_map.lcs.ellipsoidPoint  ellipsoidPoint
        Boolean
    gsm_map.lcs.ellipsoidPointWithAltitude  ellipsoidPointWithAltitude
        Boolean
    gsm_map.lcs.ellipsoidPointWithAltitudeAndUncertaintyElipsoid  ellipsoidPointWithAltitudeAndUncertaintyElipsoid
        Boolean
    gsm_map.lcs.ellipsoidPointWithUncertaintyCircle  ellipsoidPointWithUncertaintyCircle
        Boolean
    gsm_map.lcs.ellipsoidPointWithUncertaintyEllipse  ellipsoidPointWithUncertaintyEllipse
        Boolean
    gsm_map.lcs.enteringIntoArea  enteringIntoArea
        Boolean
    gsm_map.lcs.extensionContainer  extensionContainer
        No value
    gsm_map.lcs.geranPositioningData  geranPositioningData
        Byte array
        PositioningDataInformation
    gsm_map.lcs.gprsNodeIndicator  gprsNodeIndicator
        No value
    gsm_map.lcs.h_gmlc_Address  h-gmlc-Address
        Byte array
        GSN_Address
    gsm_map.lcs.horizontal_accuracy  horizontal-accuracy
        Byte array
    gsm_map.lcs.imei  imei
        Byte array
    gsm_map.lcs.imsi  imsi
        Byte array
    gsm_map.lcs.intervalTime  intervalTime
        Unsigned 32-bit integer
    gsm_map.lcs.lcsAPN  lcsAPN
        Byte array
        APN
    gsm_map.lcs.lcsClientDialedByMS  lcsClientDialedByMS
        Byte array
        AddressString
    gsm_map.lcs.lcsClientExternalID  lcsClientExternalID
        No value
    gsm_map.lcs.lcsClientInternalID  lcsClientInternalID
        Unsigned 32-bit integer
    gsm_map.lcs.lcsClientName  lcsClientName
        No value
    gsm_map.lcs.lcsClientType  lcsClientType
        Unsigned 32-bit integer
    gsm_map.lcs.lcsCodeword  lcsCodeword
        No value
    gsm_map.lcs.lcsCodewordString  lcsCodewordString
        Byte array
    gsm_map.lcs.lcsLocationInfo  lcsLocationInfo
        No value
    gsm_map.lcs.lcsRequestorID  lcsRequestorID
        No value
    gsm_map.lcs.lcsServiceTypeID  lcsServiceTypeID
        Unsigned 32-bit integer
    gsm_map.lcs.lcs_ClientID  lcs-ClientID
        No value
    gsm_map.lcs.lcs_Event  lcs-Event
        Unsigned 32-bit integer
    gsm_map.lcs.lcs_FormatIndicator  lcs-FormatIndicator
        Unsigned 32-bit integer
    gsm_map.lcs.lcs_Priority  lcs-Priority
        Byte array
    gsm_map.lcs.lcs_PrivacyCheck  lcs-PrivacyCheck
        No value
    gsm_map.lcs.lcs_QoS  lcs-QoS
        No value
    gsm_map.lcs.lcs_ReferenceNumber  lcs-ReferenceNumber
        Byte array
    gsm_map.lcs.leavingFromArea  leavingFromArea
        Boolean
    gsm_map.lcs.lmsi  lmsi
        Byte array
    gsm_map.lcs.locationEstimate  locationEstimate
        Byte array
        Ext_GeographicalInformation
    gsm_map.lcs.locationEstimateType  locationEstimateType
        Unsigned 32-bit integer
    gsm_map.lcs.locationType  locationType
        No value
    gsm_map.lcs.mlcNumber  mlcNumber
        Byte array
        ISDN_AddressString
    gsm_map.lcs.mlc_Number  mlc-Number
        Byte array
        ISDN_AddressString
    gsm_map.lcs.mme_Name  mme-Name
        Byte array
        DiameterIdentity
    gsm_map.lcs.mme_Number  mme-Number
        Byte array
        DiameterIdentity
    gsm_map.lcs.mo_lrShortCircuitIndicator  mo-lrShortCircuitIndicator
        No value
    gsm_map.lcs.msAvailable  msAvailable
        Boolean
    gsm_map.lcs.msc_Number  msc-Number
        Byte array
        ISDN_AddressString
    gsm_map.lcs.msisdn  msisdn
        Byte array
        ISDN_AddressString
    gsm_map.lcs.na_ESRD  na-ESRD
        Byte array
        ISDN_AddressString
    gsm_map.lcs.na_ESRK  na-ESRK
        Byte array
        ISDN_AddressString
    gsm_map.lcs.nameString  nameString
        Byte array
    gsm_map.lcs.networkNode_Number  networkNode-Number
        Byte array
        ISDN_AddressString
    gsm_map.lcs.occurrenceInfo  occurrenceInfo
        Unsigned 32-bit integer
    gsm_map.lcs.periodicLDR  periodicLDR
        Boolean
    gsm_map.lcs.periodicLDRInfo  periodicLDRInfo
        No value
    gsm_map.lcs.plmn_Id  plmn-Id
        Byte array
    gsm_map.lcs.plmn_List  plmn-List
        Unsigned 32-bit integer
        PLMNList
    gsm_map.lcs.plmn_ListPrioritized  plmn-ListPrioritized
        No value
    gsm_map.lcs.polygon  polygon
        Boolean
    gsm_map.lcs.ppr_Address  ppr-Address
        Byte array
        GSN_Address
    gsm_map.lcs.privacyOverride  privacyOverride
        No value
    gsm_map.lcs.pseudonymIndicator  pseudonymIndicator
        No value
    gsm_map.lcs.ran_PeriodicLocationSupport  ran-PeriodicLocationSupport
        No value
    gsm_map.lcs.ran_Technology  ran-Technology
        Unsigned 32-bit integer
    gsm_map.lcs.reportingAmount  reportingAmount
        Unsigned 32-bit integer
    gsm_map.lcs.reportingInterval  reportingInterval
        Unsigned 32-bit integer
    gsm_map.lcs.reportingPLMNList  reportingPLMNList
        No value
    gsm_map.lcs.requestorIDString  requestorIDString
        Byte array
    gsm_map.lcs.responseTime  responseTime
        No value
    gsm_map.lcs.responseTimeCategory  responseTimeCategory
        Unsigned 32-bit integer
    gsm_map.lcs.sai_Present  sai-Present
        No value
    gsm_map.lcs.sequenceNumber  sequenceNumber
        Unsigned 32-bit integer
    gsm_map.lcs.sgsn_Number  sgsn-Number
        Byte array
        ISDN_AddressString
    gsm_map.lcs.slr_ArgExtensionContainer  slr-ArgExtensionContainer
        No value
    gsm_map.lcs.supportedGADShapes  supportedGADShapes
        Byte array
    gsm_map.lcs.supportedLCS_CapabilitySets  supportedLCS-CapabilitySets
        Byte array
    gsm_map.lcs.targetMS  targetMS
        Unsigned 32-bit integer
        SubscriberIdentity
    gsm_map.lcs.targetServingNodeForHandover  targetServingNodeForHandover
        Unsigned 32-bit integer
        ServingNodeAddress
    gsm_map.lcs.terminationCause  terminationCause
        Unsigned 32-bit integer
    gsm_map.lcs.utranPositioningData  utranPositioningData
        Byte array
        UtranPositioningDataInfo
    gsm_map.lcs.v_gmlc_Address  v-gmlc-Address
        Byte array
        GSN_Address
    gsm_map.lcs.velocityEstimate  velocityEstimate
        Byte array
    gsm_map.lcs.velocityRequest  velocityRequest
        No value
    gsm_map.lcs.verticalCoordinateRequest  verticalCoordinateRequest
        No value
    gsm_map.lcs.vertical_accuracy  vertical-accuracy
        Byte array
    gsm_map.length  Length
        Unsigned 8-bit integer
    gsm_map.lmsi  lmsi
        Byte array
    gsm_map.maximumentitledPriority  maximumentitledPriority
        Unsigned 32-bit integer
        EMLPP_Priority
    gsm_map.ms.APN_Configuration  APN-Configuration
        No value
    gsm_map.ms.AuthenticationQuintuplet  AuthenticationQuintuplet
        No value
    gsm_map.ms.AuthenticationTriplet  AuthenticationTriplet
        No value
    gsm_map.ms.BSSMAP_ServiceHandoverInfo  BSSMAP-ServiceHandoverInfo
        No value
    gsm_map.ms.CSG_SubscriptionData  CSG-SubscriptionData
        No value
    gsm_map.ms.CUG_Feature  CUG-Feature
        No value
    gsm_map.ms.CUG_Subscription  CUG-Subscription
        No value
    gsm_map.ms.CauseValue  CauseValue
        Byte array
    gsm_map.ms.ContextId  ContextId
        Unsigned 32-bit integer
    gsm_map.ms.DP_AnalysedInfoCriterium  DP-AnalysedInfoCriterium
        No value
    gsm_map.ms.DestinationNumberLengthList_item  DestinationNumberLengthList item
        Unsigned 32-bit integer
        INTEGER_1_maxNumOfISDN_AddressDigits
    gsm_map.ms.EPC_AV  EPC-AV
        No value
    gsm_map.ms.Ext_BasicServiceCode  Ext-BasicServiceCode
        Unsigned 32-bit integer
    gsm_map.ms.Ext_BearerServiceCode  Ext-BearerServiceCode
        Unsigned 8-bit integer
    gsm_map.ms.Ext_CallBarringFeature  Ext-CallBarringFeature
        No value
    gsm_map.ms.Ext_ForwFeature  Ext-ForwFeature
        No value
    gsm_map.ms.Ext_SS_Info  Ext-SS-Info
        Unsigned 32-bit integer
    gsm_map.ms.Ext_TeleserviceCode  Ext-TeleserviceCode
        Unsigned 8-bit integer
    gsm_map.ms.ExternalClient  ExternalClient
        No value
    gsm_map.ms.GPRS_CamelTDPData  GPRS-CamelTDPData
        No value
    gsm_map.ms.ISDN_AddressString  ISDN-AddressString
        Byte array
    gsm_map.ms.LCSClientInternalID  LCSClientInternalID
        Unsigned 32-bit integer
    gsm_map.ms.LCS_PrivacyClass  LCS-PrivacyClass
        No value
    gsm_map.ms.LSAData  LSAData
        No value
    gsm_map.ms.LSAIdentity  LSAIdentity
        Byte array
    gsm_map.ms.LocationArea  LocationArea
        Unsigned 32-bit integer
    gsm_map.ms.MM_Code  MM-Code
        Byte array
    gsm_map.ms.MOLR_Class  MOLR-Class
        No value
    gsm_map.ms.MSISDN_BS  MSISDN-BS
        No value
    gsm_map.ms.MT_SMS_TPDU_Type  MT-SMS-TPDU-Type
        Unsigned 32-bit integer
    gsm_map.ms.MT_smsCAMELTDP_Criteria  MT-smsCAMELTDP-Criteria
        No value
    gsm_map.ms.O_BcsmCamelTDPData  O-BcsmCamelTDPData
        No value
    gsm_map.ms.O_BcsmCamelTDP_Criteria  O-BcsmCamelTDP-Criteria
        No value
    gsm_map.ms.PDP_Context  PDP-Context
        No value
    gsm_map.ms.PDP_ContextInfo  PDP-ContextInfo
        No value
    gsm_map.ms.RadioResource  RadioResource
        No value
    gsm_map.ms.RelocationNumber  RelocationNumber
        No value
    gsm_map.ms.SMS_CAMEL_TDP_Data  SMS-CAMEL-TDP-Data
        No value
    gsm_map.ms.SS_Code  SS-Code
        Unsigned 8-bit integer
    gsm_map.ms.ServiceType  ServiceType
        No value
    gsm_map.ms.SpecificAPNInfo  SpecificAPNInfo
        No value
    gsm_map.ms.T_BCSM_CAMEL_TDP_Criteria  T-BCSM-CAMEL-TDP-Criteria
        No value
    gsm_map.ms.T_BcsmCamelTDPData  T-BcsmCamelTDPData
        No value
    gsm_map.ms.VoiceBroadcastData  VoiceBroadcastData
        No value
    gsm_map.ms.VoiceGroupCallData  VoiceGroupCallData
        No value
    gsm_map.ms.ZoneCode  ZoneCode
        Byte array
    gsm_map.ms.accessMode  accessMode
        Byte array
        OCTET_STRING_SIZE_1
    gsm_map.ms.accessRestrictionData  accessRestrictionData
        Byte array
    gsm_map.ms.accessType  accessType
        Unsigned 32-bit integer
    gsm_map.ms.activationRequestForUE_reachability  activationRequestForUE-reachability
        Byte array
        ServingNode
    gsm_map.ms.add_Capability  add-Capability
        No value
    gsm_map.ms.add_info  add-info
        No value
    gsm_map.ms.add_lcs_PrivacyExceptionList  add-lcs-PrivacyExceptionList
        Unsigned 32-bit integer
        LCS_PrivacyExceptionList
    gsm_map.ms.additionalInfo  additionalInfo
        Byte array
    gsm_map.ms.additionalRequestedCAMEL_SubscriptionInfo  additionalRequestedCAMEL-SubscriptionInfo
        Unsigned 32-bit integer
    gsm_map.ms.additionalSubscriptions  additionalSubscriptions
        Byte array
    gsm_map.ms.additionalVectorsAreForEPS  additionalVectorsAreForEPS
        No value
    gsm_map.ms.ageOfLocationInformation  ageOfLocationInformation
        Unsigned 32-bit integer
    gsm_map.ms.alertingDP  alertingDP
        Boolean
    gsm_map.ms.allECT-Barred  allECT-Barred
        Boolean
    gsm_map.ms.allEPS_Data  allEPS-Data
        No value
    gsm_map.ms.allGPRSData  allGPRSData
        No value
    gsm_map.ms.allIC-CallsBarred  allIC-CallsBarred
        Boolean
    gsm_map.ms.allInformationSent  allInformationSent
        No value
    gsm_map.ms.allLSAData  allLSAData
        No value
    gsm_map.ms.allOG-CallsBarred  allOG-CallsBarred
        Boolean
    gsm_map.ms.allPacketOrientedServicesBarred  allPacketOrientedServicesBarred
        Boolean
    gsm_map.ms.allocation_Retention_Priority  allocation-Retention-Priority
        No value
    gsm_map.ms.allowedGSM_Algorithms  allowedGSM-Algorithms
        Byte array
    gsm_map.ms.allowedUMTS_Algorithms  allowedUMTS-Algorithms
        No value
    gsm_map.ms.alternativeChannelType  alternativeChannelType
        Byte array
        RadioResourceInformation
    gsm_map.ms.ambr  ambr
        No value
    gsm_map.ms.an_APDU  an-APDU
        No value
        AccessNetworkSignalInfo
    gsm_map.ms.aoipAvailableCodecsListMap  aoipAvailableCodecsListMap
        No value
        AoIPCodecsList
    gsm_map.ms.aoipSelectedCodecTarget  aoipSelectedCodecTarget
        Byte array
        AoIPCodec
    gsm_map.ms.aoipSupportedCodecsListAnchor  aoipSupportedCodecsListAnchor
        No value
        AoIPCodecsList
    gsm_map.ms.apn  apn
        Byte array
    gsm_map.ms.apn_ConfigurationProfile  apn-ConfigurationProfile
        No value
    gsm_map.ms.apn_InUse  apn-InUse
        Byte array
        APN
    gsm_map.ms.apn_Subscribed  apn-Subscribed
        Byte array
        APN
    gsm_map.ms.apn_oi_Replacement  apn-oi-Replacement
        Byte array
    gsm_map.ms.apn_oi_replacementWithdraw  apn-oi-replacementWithdraw
        No value
    gsm_map.ms.areaRestricted  areaRestricted
        No value
    gsm_map.ms.asciCallReference  asciCallReference
        Byte array
        ASCI_CallReference
    gsm_map.ms.assumedIdle  assumedIdle
        No value
    gsm_map.ms.authenticationSetList  authenticationSetList
        Unsigned 32-bit integer
    gsm_map.ms.autn  autn
        Byte array
    gsm_map.ms.auts  auts
        Byte array
    gsm_map.ms.baoc  baoc
        Boolean
    gsm_map.ms.barring-OutgoingCalls  barring-OutgoingCalls
        Boolean
    gsm_map.ms.basicService  basicService
        Unsigned 32-bit integer
        Ext_BasicServiceCode
    gsm_map.ms.basicServiceCriteria  basicServiceCriteria
        Unsigned 32-bit integer
    gsm_map.ms.basicServiceGroupList  basicServiceGroupList
        Unsigned 32-bit integer
        Ext_BasicServiceGroupList
    gsm_map.ms.basicServiceList  basicServiceList
        Unsigned 32-bit integer
    gsm_map.ms.bearerServiceList  bearerServiceList
        Unsigned 32-bit integer
    gsm_map.ms.bmuef  bmuef
        No value
        UESBI_Iu
    gsm_map.ms.boic  boic
        Boolean
    gsm_map.ms.boicExHC  boicExHC
        Boolean
    gsm_map.ms.broadcastInitEntitlement  broadcastInitEntitlement
        No value
    gsm_map.ms.bssmap_ServiceHandover  bssmap-ServiceHandover
        Byte array
    gsm_map.ms.bssmap_ServiceHandoverList  bssmap-ServiceHandoverList
        Unsigned 32-bit integer
    gsm_map.ms.callBarringData  callBarringData
        No value
    gsm_map.ms.callBarringFeatureList  callBarringFeatureList
        Unsigned 32-bit integer
        Ext_CallBarFeatureList
    gsm_map.ms.callBarringInfo  callBarringInfo
        No value
        Ext_CallBarInfo
    gsm_map.ms.callBarringInfoFor_CSE  callBarringInfoFor-CSE
        No value
        Ext_CallBarringInfoFor_CSE
    gsm_map.ms.callForwardingData  callForwardingData
        No value
    gsm_map.ms.callPriority  callPriority
        Unsigned 32-bit integer
        EMLPP_Priority
    gsm_map.ms.callTypeCriteria  callTypeCriteria
        Unsigned 32-bit integer
    gsm_map.ms.camelBusy  camelBusy
        No value
    gsm_map.ms.camelCapabilityHandling  camelCapabilityHandling
        Unsigned 32-bit integer
    gsm_map.ms.camelSubscriptionInfoWithdraw  camelSubscriptionInfoWithdraw
        No value
    gsm_map.ms.camel_SubscriptionInfo  camel-SubscriptionInfo
        No value
    gsm_map.ms.cancelSGSN  cancelSGSN
        Boolean
    gsm_map.ms.cancellationType  cancellationType
        Unsigned 32-bit integer
    gsm_map.ms.category  category
        Byte array
    gsm_map.ms.cellGlobalIdOrServiceAreaIdOrLAI  cellGlobalIdOrServiceAreaIdOrLAI
        Unsigned 32-bit integer
    gsm_map.ms.cf-Enhancements  cf-Enhancements
        Boolean
    gsm_map.ms.changeOfPositionDP  changeOfPositionDP
        Boolean
    gsm_map.ms.chargeableECT-Barred  chargeableECT-Barred
        Boolean
    gsm_map.ms.chargingCharacteristics  chargingCharacteristics
        Unsigned 16-bit integer
    gsm_map.ms.chargingCharacteristicsWithdraw  chargingCharacteristicsWithdraw
        No value
    gsm_map.ms.chargingId  chargingId
        Byte array
        GPRSChargingID
    gsm_map.ms.chargingIndicator  chargingIndicator
        Boolean
    gsm_map.ms.chosenChannelInfo  chosenChannelInfo
        Byte array
    gsm_map.ms.chosenRadioResourceInformation  chosenRadioResourceInformation
        No value
    gsm_map.ms.chosenSpeechVersion  chosenSpeechVersion
        Byte array
    gsm_map.ms.ck  ck
        Byte array
    gsm_map.ms.cksn  cksn
        Byte array
    gsm_map.ms.clientIdentity  clientIdentity
        No value
        LCSClientExternalID
    gsm_map.ms.cmi  cmi
        Byte array
        OCTET_STRING_SIZE_1
    gsm_map.ms.codec1  codec1
        Byte array
        AoIPCodec
    gsm_map.ms.codec2  codec2
        Byte array
        AoIPCodec
    gsm_map.ms.codec3  codec3
        Byte array
        AoIPCodec
    gsm_map.ms.codec4  codec4
        Byte array
        AoIPCodec
    gsm_map.ms.codec5  codec5
        Byte array
        AoIPCodec
    gsm_map.ms.codec6  codec6
        Byte array
        AoIPCodec
    gsm_map.ms.codec7  codec7
        Byte array
        AoIPCodec
    gsm_map.ms.codec8  codec8
        Byte array
        AoIPCodec
    gsm_map.ms.collectInformation  collectInformation
        Boolean
    gsm_map.ms.completeDataListIncluded  completeDataListIncluded
        No value
    gsm_map.ms.contextId  contextId
        Unsigned 32-bit integer
    gsm_map.ms.contextIdList  contextIdList
        Unsigned 32-bit integer
    gsm_map.ms.criteriaForChangeOfPositionDP  criteriaForChangeOfPositionDP
        Boolean
    gsm_map.ms.cs_AllocationRetentionPriority  cs-AllocationRetentionPriority
        Byte array
    gsm_map.ms.cs_LCS_NotSupportedByUE  cs-LCS-NotSupportedByUE
        No value
    gsm_map.ms.csg_Id  csg-Id
        Byte array
    gsm_map.ms.csg_SubscriptionDataList  csg-SubscriptionDataList
        Unsigned 32-bit integer
    gsm_map.ms.csg_SubscriptionDataRequested  csg-SubscriptionDataRequested
        No value
    gsm_map.ms.csg_SubscriptionDeleted  csg-SubscriptionDeleted
        No value
    gsm_map.ms.csiActive  csiActive
        No value
    gsm_map.ms.csi_Active  csi-Active
        No value
    gsm_map.ms.cug_FeatureList  cug-FeatureList
        Unsigned 32-bit integer
    gsm_map.ms.cug_Index  cug-Index
        Unsigned 32-bit integer
    gsm_map.ms.cug_Info  cug-Info
        No value
    gsm_map.ms.cug_Interlock  cug-Interlock
        Byte array
    gsm_map.ms.cug_SubscriptionList  cug-SubscriptionList
        Unsigned 32-bit integer
    gsm_map.ms.currentLocation  currentLocation
        No value
    gsm_map.ms.currentLocationRetrieved  currentLocationRetrieved
        No value
    gsm_map.ms.currentSecurityContext  currentSecurityContext
        Unsigned 32-bit integer
    gsm_map.ms.currentlyUsedCodec  currentlyUsedCodec
        Byte array
        Codec
    gsm_map.ms.d-IM-CSI  d-IM-CSI
        Boolean
    gsm_map.ms.d-csi  d-csi
        Boolean
    gsm_map.ms.d_CSI  d-CSI
        No value
    gsm_map.ms.d_IM_CSI  d-IM-CSI
        No value
        D_CSI
    gsm_map.ms.defaultCallHandling  defaultCallHandling
        Unsigned 32-bit integer
    gsm_map.ms.defaultContext  defaultContext
        Unsigned 32-bit integer
        ContextId
    gsm_map.ms.defaultSMS_Handling  defaultSMS-Handling
        Unsigned 32-bit integer
    gsm_map.ms.defaultSessionHandling  defaultSessionHandling
        Unsigned 32-bit integer
        DefaultGPRS_Handling
    gsm_map.ms.destinationNumberCriteria  destinationNumberCriteria
        No value
    gsm_map.ms.destinationNumberLengthList  destinationNumberLengthList
        Unsigned 32-bit integer
    gsm_map.ms.destinationNumberList  destinationNumberList
        Unsigned 32-bit integer
    gsm_map.ms.dfc-WithArgument  dfc-WithArgument
        Boolean
    gsm_map.ms.dialledNumber  dialledNumber
        Byte array
        ISDN_AddressString
    gsm_map.ms.disconnectLeg  disconnectLeg
        Boolean
    gsm_map.ms.doublyChargeableECT-Barred  doublyChargeableECT-Barred
        Boolean
    gsm_map.ms.dp_AnalysedInfoCriteriaList  dp-AnalysedInfoCriteriaList
        Unsigned 32-bit integer
    gsm_map.ms.dtmf-MidCall  dtmf-MidCall
        Boolean
    gsm_map.ms.e-utran  e-utran
        Boolean
    gsm_map.ms.e-utranNotAllowed  e-utranNotAllowed
        Boolean
    gsm_map.ms.e_utranCellGlobalIdentity  e-utranCellGlobalIdentity
        Byte array
        OCTET_STRING_SIZE_7
    gsm_map.ms.emergencyReset  emergencyReset
        Boolean
    gsm_map.ms.emergencyUplinkRequest  emergencyUplinkRequest
        Boolean
    gsm_map.ms.emlpp_Info  emlpp-Info
        No value
    gsm_map.ms.encryptionAlgorithm  encryptionAlgorithm
        Byte array
        ChosenEncryptionAlgorithm
    gsm_map.ms.encryptionAlgorithms  encryptionAlgorithms
        Byte array
        PermittedEncryptionAlgorithms
    gsm_map.ms.encryptionInfo  encryptionInfo
        Byte array
        EncryptionInformation
    gsm_map.ms.entityReleased  entityReleased
        Boolean
    gsm_map.ms.epsDataList  epsDataList
        Unsigned 32-bit integer
        EPS_DataList
    gsm_map.ms.epsSubscriptionDataWithdraw  epsSubscriptionDataWithdraw
        Unsigned 32-bit integer
        EPS_SubscriptionDataWithdraw
    gsm_map.ms.eps_AuthenticationSetList  eps-AuthenticationSetList
        Unsigned 32-bit integer
    gsm_map.ms.eps_SubscriberState  eps-SubscriberState
        Unsigned 32-bit integer
        PS_SubscriberState
    gsm_map.ms.eps_SubscriptionData  eps-SubscriptionData
        No value
    gsm_map.ms.eps_info  eps-info
        Unsigned 32-bit integer
    gsm_map.ms.eps_qos_Subscribed  eps-qos-Subscribed
        No value
    gsm_map.ms.equipmentStatus  equipmentStatus
        Unsigned 32-bit integer
    gsm_map.ms.eventMet  eventMet
        Byte array
        MM_Code
    gsm_map.ms.expirationDate  expirationDate
        Byte array
        Time
    gsm_map.ms.ext2_QoS_Subscribed  ext2-QoS-Subscribed
        Byte array
    gsm_map.ms.ext3_QoS_Subscribed  ext3-QoS-Subscribed
        Byte array
    gsm_map.ms.ext4_QoS_Subscribed  ext4-QoS-Subscribed
        Byte array
    gsm_map.ms.ext_QoS_Subscribed  ext-QoS-Subscribed
        Byte array
    gsm_map.ms.ext_externalClientList  ext-externalClientList
        Unsigned 32-bit integer
    gsm_map.ms.ext_pdp_Address  ext-pdp-Address
        Byte array
        PDP_Address
    gsm_map.ms.ext_pdp_Type  ext-pdp-Type
        Byte array
    gsm_map.ms.extensionContainer  extensionContainer
        No value
    gsm_map.ms.externalClientList  externalClientList
        Unsigned 32-bit integer
    gsm_map.ms.failureCause  failureCause
        Unsigned 32-bit integer
    gsm_map.ms.forwardedToNumber  forwardedToNumber
        Byte array
        ISDN_AddressString
    gsm_map.ms.forwardedToSubaddress  forwardedToSubaddress
        Byte array
        ISDN_SubaddressString
    gsm_map.ms.forwardingFeatureList  forwardingFeatureList
        Unsigned 32-bit integer
        Ext_ForwFeatureList
    gsm_map.ms.forwardingInfo  forwardingInfo
        No value
        Ext_ForwInfo
    gsm_map.ms.forwardingInfoFor_CSE  forwardingInfoFor-CSE
        No value
        Ext_ForwardingInfoFor_CSE
    gsm_map.ms.forwardingOptions  forwardingOptions
        Byte array
    gsm_map.ms.freezeM_TMSI  freezeM-TMSI
        No value
    gsm_map.ms.freezeP_TMSI  freezeP-TMSI
        No value
    gsm_map.ms.freezeTMSI  freezeTMSI
        No value
    gsm_map.ms.gan  gan
        Boolean
    gsm_map.ms.ganNotAllowed  ganNotAllowed
        Boolean
    gsm_map.ms.geodeticInformation  geodeticInformation
        Byte array
    gsm_map.ms.geographicalInformation  geographicalInformation
        Byte array
    gsm_map.ms.geran  geran
        Boolean
    gsm_map.ms.geranCodecList  geranCodecList
        No value
        CodecList
    gsm_map.ms.geranNotAllowed  geranNotAllowed
        Boolean
    gsm_map.ms.geran_classmark  geran-classmark
        Byte array
    gsm_map.ms.ggsn_Address  ggsn-Address
        Byte array
        GSN_Address
    gsm_map.ms.ggsn_Number  ggsn-Number
        Byte array
        ISDN_AddressString
    gsm_map.ms.gmlc_List  gmlc-List
        Unsigned 32-bit integer
    gsm_map.ms.gmlc_ListWithdraw  gmlc-ListWithdraw
        No value
    gsm_map.ms.gmlc_Restriction  gmlc-Restriction
        Unsigned 32-bit integer
    gsm_map.ms.gprs-csi  gprs-csi
        Boolean
    gsm_map.ms.gprsDataList  gprsDataList
        Unsigned 32-bit integer
    gsm_map.ms.gprsEnhancementsSupportIndicator  gprsEnhancementsSupportIndicator
        No value
    gsm_map.ms.gprsSubscriptionData  gprsSubscriptionData
        No value
    gsm_map.ms.gprsSubscriptionDataNotNeeded  gprsSubscriptionDataNotNeeded
        No value
    gsm_map.ms.gprsSubscriptionDataWithdraw  gprsSubscriptionDataWithdraw
        Unsigned 32-bit integer
    gsm_map.ms.gprs_CSI  gprs-CSI
        No value
    gsm_map.ms.gprs_CamelTDPDataList  gprs-CamelTDPDataList
        Unsigned 32-bit integer
    gsm_map.ms.gprs_MS_Class  gprs-MS-Class
        No value
        GPRSMSClass
    gsm_map.ms.gprs_TriggerDetectionPoint  gprs-TriggerDetectionPoint
        Unsigned 32-bit integer
    gsm_map.ms.groupId  groupId
        Byte array
    gsm_map.ms.groupid  groupid
        Byte array
    gsm_map.ms.gsmSCF_Address  gsmSCF-Address
        Byte array
        ISDN_AddressString
    gsm_map.ms.gsm_SecurityContextData  gsm-SecurityContextData
        No value
    gsm_map.ms.handoverNumber  handoverNumber
        Byte array
        ISDN_AddressString
    gsm_map.ms.hlr_List  hlr-List
        Unsigned 32-bit integer
    gsm_map.ms.hlr_Number  hlr-Number
        Byte array
        ISDN_AddressString
    gsm_map.ms.ho-toNon3GPP-AccessNotAllowed  ho-toNon3GPP-AccessNotAllowed
        Boolean
    gsm_map.ms.ho_NumberNotRequired  ho-NumberNotRequired
        No value
    gsm_map.ms.homogeneousSupportOfIMSVoiceOverPSSessions  homogeneousSupportOfIMSVoiceOverPSSessions
        Boolean
        BOOLEAN
    gsm_map.ms.hopCounter  hopCounter
        Unsigned 32-bit integer
    gsm_map.ms.i-hspa-evolution  i-hspa-evolution
        Boolean
    gsm_map.ms.i-hspa-evolutionNotAllowed  i-hspa-evolutionNotAllowed
        Boolean
    gsm_map.ms.iUSelectedCodec  iUSelectedCodec
        Byte array
        Codec
    gsm_map.ms.ics_Indicator  ics-Indicator
        Boolean
        BOOLEAN
    gsm_map.ms.identity  identity
        Unsigned 32-bit integer
    gsm_map.ms.ik  ik
        Byte array
    gsm_map.ms.imei  imei
        Byte array
    gsm_map.ms.imeisv  imeisv
        Byte array
        IMEI
    gsm_map.ms.immediateResponsePreferred  immediateResponsePreferred
        No value
    gsm_map.ms.imsVoiceOverPS_SessionsIndication  imsVoiceOverPS-SessionsIndication
        Unsigned 32-bit integer
        IMS_VoiceOverPS_SessionsInd
    gsm_map.ms.imsi  imsi
        Byte array
    gsm_map.ms.informPreviousNetworkEntity  informPreviousNetworkEntity
        No value
    gsm_map.ms.initialAttachIndicator  initialAttachIndicator
        Boolean
    gsm_map.ms.initiateCallAttempt  initiateCallAttempt
        Boolean
    gsm_map.ms.integrityProtectionAlgorithm  integrityProtectionAlgorithm
        Byte array
        ChosenIntegrityProtectionAlgorithm
    gsm_map.ms.integrityProtectionAlgorithms  integrityProtectionAlgorithms
        Byte array
        PermittedIntegrityProtectionAlgorithms
    gsm_map.ms.integrityProtectionInfo  integrityProtectionInfo
        Byte array
        IntegrityProtectionInformation
    gsm_map.ms.interCUG_Restrictions  interCUG-Restrictions
        Byte array
    gsm_map.ms.internationalECT-Barred  internationalECT-Barred
        Boolean
    gsm_map.ms.internationalOGCallsBarred  internationalOGCallsBarred
        Boolean
    gsm_map.ms.internationalOGCallsNotToHPLMN-CountryBarred  internationalOGCallsNotToHPLMN-CountryBarred
        Boolean
    gsm_map.ms.interzonalECT-Barred  interzonalECT-Barred
        Boolean
    gsm_map.ms.interzonalOGCallsAndInternationalOGCallsNotToHPLMN-CountryBarred  interzonalOGCallsAndInternationalOGCallsNotToHPLMN-CountryBarred
        Boolean
    gsm_map.ms.interzonalOGCallsBarred  interzonalOGCallsBarred
        Boolean
    gsm_map.ms.interzonalOGCallsNotToHPLMN-CountryBarred  interzonalOGCallsNotToHPLMN-CountryBarred
        Boolean
    gsm_map.ms.intraCUG_Options  intraCUG-Options
        Unsigned 32-bit integer
    gsm_map.ms.isr_Information  isr-Information
        Byte array
    gsm_map.ms.istAlertTimer  istAlertTimer
        Unsigned 32-bit integer
        IST_AlertTimerValue
    gsm_map.ms.istInformationWithdraw  istInformationWithdraw
        No value
    gsm_map.ms.istSupportIndicator  istSupportIndicator
        Unsigned 32-bit integer
        IST_SupportIndicator
    gsm_map.ms.iuAvailableCodecsList  iuAvailableCodecsList
        No value
        CodecList
    gsm_map.ms.iuCurrentlyUsedCodec  iuCurrentlyUsedCodec
        Byte array
        Codec
    gsm_map.ms.iuSelectedCodec  iuSelectedCodec
        Byte array
        Codec
    gsm_map.ms.iuSupportedCodecsList  iuSupportedCodecsList
        No value
        SupportedCodecsList
    gsm_map.ms.kasme  kasme
        Byte array
    gsm_map.ms.kc  kc
        Byte array
    gsm_map.ms.keyStatus  keyStatus
        Unsigned 32-bit integer
    gsm_map.ms.ksi  ksi
        Byte array
    gsm_map.ms.lac  lac
        Byte array
    gsm_map.ms.laiFixedLength  laiFixedLength
        Byte array
    gsm_map.ms.lastRAT_Type  lastRAT-Type
        Unsigned 32-bit integer
        Used_RAT_Type
    gsm_map.ms.lastUE_ActivityTime  lastUE-ActivityTime
        Byte array
        Time
    gsm_map.ms.lcs-CallSessionRelated  lcs-CallSessionRelated
        Boolean
    gsm_map.ms.lcs-CallSessionUnrelated  lcs-CallSessionUnrelated
        Boolean
    gsm_map.ms.lcs-PLMN-operator  lcs-PLMN-operator
        Boolean
    gsm_map.ms.lcs-ServiceType  lcs-ServiceType
        Boolean
    gsm_map.ms.lcs-all-MOLR-SS  lcs-all-MOLR-SS
        Boolean
    gsm_map.ms.lcs-all-PrivExcep  lcs-all-PrivExcep
        Boolean
    gsm_map.ms.lcs-autonomousSelfLocation  lcs-autonomousSelfLocation
        Boolean
    gsm_map.ms.lcs-basicSelfLocation  lcs-basicSelfLocation
        Boolean
    gsm_map.ms.lcs-transferToThirdParty  lcs-transferToThirdParty
        Boolean
    gsm_map.ms.lcs-universal  lcs-universal
        Boolean
    gsm_map.ms.lcsCapabilitySet1  lcsCapabilitySet1
        Boolean
    gsm_map.ms.lcsCapabilitySet2  lcsCapabilitySet2
        Boolean
    gsm_map.ms.lcsCapabilitySet3  lcsCapabilitySet3
        Boolean
    gsm_map.ms.lcsCapabilitySet4  lcsCapabilitySet4
        Boolean
    gsm_map.ms.lcsCapabilitySet5  lcsCapabilitySet5
        Boolean
    gsm_map.ms.lcsInformation  lcsInformation
        No value
    gsm_map.ms.lcs_PrivacyExceptionList  lcs-PrivacyExceptionList
        Unsigned 32-bit integer
    gsm_map.ms.lmsi  lmsi
        Byte array
    gsm_map.ms.lmu_Indicator  lmu-Indicator
        No value
    gsm_map.ms.locationAtAlerting  locationAtAlerting
        Boolean
    gsm_map.ms.locationInformation  locationInformation
        No value
    gsm_map.ms.locationInformationEPS  locationInformationEPS
        No value
    gsm_map.ms.locationInformationGPRS  locationInformationGPRS
        No value
    gsm_map.ms.locationNumber  locationNumber
        Byte array
    gsm_map.ms.longFTN_Supported  longFTN-Supported
        No value
    gsm_map.ms.longForwardedToNumber  longForwardedToNumber
        Byte array
        FTN_AddressString
    gsm_map.ms.longGroupID_Supported  longGroupID-Supported
        No value
    gsm_map.ms.longGroupId  longGroupId
        Byte array
        Long_GroupId
    gsm_map.ms.lsaActiveModeIndicator  lsaActiveModeIndicator
        No value
    gsm_map.ms.lsaAttributes  lsaAttributes
        Byte array
    gsm_map.ms.lsaDataList  lsaDataList
        Unsigned 32-bit integer
    gsm_map.ms.lsaIdentity  lsaIdentity
        Byte array
    gsm_map.ms.lsaIdentityList  lsaIdentityList
        Unsigned 32-bit integer
    gsm_map.ms.lsaInformation  lsaInformation
        No value
    gsm_map.ms.lsaInformationWithdraw  lsaInformationWithdraw
        Unsigned 32-bit integer
    gsm_map.ms.lsaOnlyAccessIndicator  lsaOnlyAccessIndicator
        Unsigned 32-bit integer
    gsm_map.ms.m-csi  m-csi
        Boolean
    gsm_map.ms.mSNetworkCapability  mSNetworkCapability
        Byte array
    gsm_map.ms.mSRadioAccessCapability  mSRadioAccessCapability
        Byte array
    gsm_map.ms.m_CSI  m-CSI
        No value
    gsm_map.ms.matchType  matchType
        Unsigned 32-bit integer
    gsm_map.ms.max_RequestedBandwidth_DL  max-RequestedBandwidth-DL
        Signed 32-bit integer
        Bandwidth
    gsm_map.ms.max_RequestedBandwidth_UL  max-RequestedBandwidth-UL
        Signed 32-bit integer
        Bandwidth
    gsm_map.ms.mc_SS_Info  mc-SS-Info
        No value
    gsm_map.ms.mg-csi  mg-csi
        Boolean
    gsm_map.ms.mg_csi  mg-csi
        No value
    gsm_map.ms.mme  mme
        Boolean
    gsm_map.ms.mnpInfoRes  mnpInfoRes
        No value
    gsm_map.ms.mnpRequestedInfo  mnpRequestedInfo
        No value
    gsm_map.ms.mo-sms-csi  mo-sms-csi
        Boolean
    gsm_map.ms.mo_sms_CSI  mo-sms-CSI
        No value
        SMS_CSI
    gsm_map.ms.mobileNotReachableReason  mobileNotReachableReason
        Unsigned 32-bit integer
        AbsentSubscriberDiagnosticSM
    gsm_map.ms.mobilityTriggers  mobilityTriggers
        Unsigned 32-bit integer
    gsm_map.ms.modificationRequestFor_CB_Info  modificationRequestFor-CB-Info
        No value
    gsm_map.ms.modificationRequestFor_CF_Info  modificationRequestFor-CF-Info
        No value
    gsm_map.ms.modificationRequestFor_CSG  modificationRequestFor-CSG
        No value
    gsm_map.ms.modificationRequestFor_CSI  modificationRequestFor-CSI
        No value
    gsm_map.ms.modificationRequestFor_IP_SM_GW_Data  modificationRequestFor-IP-SM-GW-Data
        No value
    gsm_map.ms.modificationRequestFor_ODB_data  modificationRequestFor-ODB-data
        No value
    gsm_map.ms.modifyCSI_State  modifyCSI-State
        Unsigned 32-bit integer
        ModificationInstruction
    gsm_map.ms.modifyNotificationToCSE  modifyNotificationToCSE
        Unsigned 32-bit integer
        ModificationInstruction
    gsm_map.ms.modifyRegistrationStatus  modifyRegistrationStatus
        Unsigned 32-bit integer
        ModificationInstruction
    gsm_map.ms.molr_List  molr-List
        Unsigned 32-bit integer
    gsm_map.ms.moveLeg  moveLeg
        Boolean
    gsm_map.ms.msNotReachable  msNotReachable
        No value
    gsm_map.ms.ms_Classmark2  ms-Classmark2
        Byte array
    gsm_map.ms.ms_classmark  ms-classmark
        No value
    gsm_map.ms.msc_Number  msc-Number
        Byte array
        ISDN_AddressString
    gsm_map.ms.msisdn  msisdn
        Byte array
        ISDN_AddressString
    gsm_map.ms.msisdn_BS_List  msisdn-BS-List
        Unsigned 32-bit integer
    gsm_map.ms.mt-sms-csi  mt-sms-csi
        Boolean
    gsm_map.ms.mt_smsCAMELTDP_CriteriaList  mt-smsCAMELTDP-CriteriaList
        Unsigned 32-bit integer
    gsm_map.ms.mt_sms_CSI  mt-sms-CSI
        No value
        SMS_CSI
    gsm_map.ms.multicallBearerInfo  multicallBearerInfo
        Unsigned 32-bit integer
    gsm_map.ms.multipleBearerNotSupported  multipleBearerNotSupported
        No value
    gsm_map.ms.multipleBearerRequested  multipleBearerRequested
        No value
    gsm_map.ms.multipleECT-Barred  multipleECT-Barred
        Boolean
    gsm_map.ms.naea_PreferredCI  naea-PreferredCI
        No value
    gsm_map.ms.netDetNotReachable  netDetNotReachable
        Unsigned 32-bit integer
        NotReachableReason
    gsm_map.ms.networkAccessMode  networkAccessMode
        Unsigned 32-bit integer
    gsm_map.ms.noReplyConditionTime  noReplyConditionTime
        Unsigned 32-bit integer
        Ext_NoRepCondTime
    gsm_map.ms.nodeTypeIndicator  nodeTypeIndicator
        No value
    gsm_map.ms.notProvidedFromSGSNorMME  notProvidedFromSGSNorMME
        No value
    gsm_map.ms.notProvidedFromVLR  notProvidedFromVLR
        No value
    gsm_map.ms.notificationToCSE  notificationToCSE
        No value
    gsm_map.ms.notificationToMSUser  notificationToMSUser
        Unsigned 32-bit integer
    gsm_map.ms.nsapi  nsapi
        Unsigned 32-bit integer
    gsm_map.ms.numberOfRequestedAdditional_Vectors  numberOfRequestedAdditional-Vectors
        Unsigned 32-bit integer
        NumberOfRequestedVectors
    gsm_map.ms.numberOfRequestedVectors  numberOfRequestedVectors
        Unsigned 32-bit integer
    gsm_map.ms.numberPortabilityStatus  numberPortabilityStatus
        Unsigned 32-bit integer
    gsm_map.ms.o-IM-CSI  o-IM-CSI
        Boolean
    gsm_map.ms.o-csi  o-csi
        Boolean
    gsm_map.ms.o_BcsmCamelTDPDataList  o-BcsmCamelTDPDataList
        Unsigned 32-bit integer
    gsm_map.ms.o_BcsmCamelTDP_CriteriaList  o-BcsmCamelTDP-CriteriaList
        Unsigned 32-bit integer
        O_BcsmCamelTDPCriteriaList
    gsm_map.ms.o_BcsmTriggerDetectionPoint  o-BcsmTriggerDetectionPoint
        Unsigned 32-bit integer
    gsm_map.ms.o_CSI  o-CSI
        No value
    gsm_map.ms.o_CauseValueCriteria  o-CauseValueCriteria
        Unsigned 32-bit integer
    gsm_map.ms.o_IM_BcsmCamelTDP_CriteriaList  o-IM-BcsmCamelTDP-CriteriaList
        Unsigned 32-bit integer
        O_BcsmCamelTDPCriteriaList
    gsm_map.ms.o_IM_CSI  o-IM-CSI
        No value
        O_CSI
    gsm_map.ms.odb  odb
        No value
    gsm_map.ms.odb-HPLMN-APN  odb-HPLMN-APN
        Boolean
    gsm_map.ms.odb-VPLMN-APN  odb-VPLMN-APN
        Boolean
    gsm_map.ms.odb-all-apn  odb-all-apn
        Boolean
    gsm_map.ms.odb-all-int-og-not-to-HPLMN-country  odb-all-int-og-not-to-HPLMN-country
        Boolean
    gsm_map.ms.odb-all-international-og  odb-all-international-og
        Boolean
    gsm_map.ms.odb-all-interzonal-og  odb-all-interzonal-og
        Boolean
    gsm_map.ms.odb-all-interzonal-og-and-internat-og-not-to-HPLMN-country  odb-all-interzonal-og-and-internat-og-not-to-HPLMN-country
        Boolean
    gsm_map.ms.odb-all-interzonal-og-not-to-HPLMN-country  odb-all-interzonal-og-not-to-HPLMN-country
        Boolean
    gsm_map.ms.odb-all-og  odb-all-og
        Boolean
    gsm_map.ms.odb_Data  odb-Data
        No value
    gsm_map.ms.odb_GeneralData  odb-GeneralData
        Byte array
    gsm_map.ms.odb_HPLMN_Data  odb-HPLMN-Data
        Byte array
    gsm_map.ms.odb_Info  odb-Info
        No value
    gsm_map.ms.odb_data  odb-data
        No value
    gsm_map.ms.offeredCamel4CSIs  offeredCamel4CSIs
        Byte array
    gsm_map.ms.offeredCamel4CSIsInSGSN  offeredCamel4CSIsInSGSN
        Byte array
        OfferedCamel4CSIs
    gsm_map.ms.offeredCamel4CSIsInVLR  offeredCamel4CSIsInVLR
        Byte array
        OfferedCamel4CSIs
    gsm_map.ms.offeredCamel4Functionalities  offeredCamel4Functionalities
        Byte array
    gsm_map.ms.or-Interactions  or-Interactions
        Boolean
    gsm_map.ms.pagingArea  pagingArea
        Unsigned 32-bit integer
    gsm_map.ms.pagingArea_Capability  pagingArea-Capability
        No value
    gsm_map.ms.password  password
        String
    gsm_map.ms.pdn_Type  pdn-Type
        Byte array
    gsm_map.ms.pdn_gw_AllocationType  pdn-gw-AllocationType
        Unsigned 32-bit integer
    gsm_map.ms.pdn_gw_Identity  pdn-gw-Identity
        No value
    gsm_map.ms.pdn_gw_ipv4_Address  pdn-gw-ipv4-Address
        Byte array
        PDP_Address
    gsm_map.ms.pdn_gw_ipv6_Address  pdn-gw-ipv6-Address
        Byte array
        PDP_Address
    gsm_map.ms.pdn_gw_name  pdn-gw-name
        Byte array
        FQDN
    gsm_map.ms.pdn_gw_update  pdn-gw-update
        No value
    gsm_map.ms.pdp_Address  pdp-Address
        Byte array
    gsm_map.ms.pdp_ChargingCharacteristics  pdp-ChargingCharacteristics
        Unsigned 16-bit integer
        ChargingCharacteristics
    gsm_map.ms.pdp_ContextActive  pdp-ContextActive
        No value
    gsm_map.ms.pdp_ContextId  pdp-ContextId
        Unsigned 32-bit integer
        ContextId
    gsm_map.ms.pdp_ContextIdentifier  pdp-ContextIdentifier
        Unsigned 32-bit integer
        ContextId
    gsm_map.ms.pdp_Type  pdp-Type
        Byte array
    gsm_map.ms.phase1  phase1
        Boolean
    gsm_map.ms.phase2  phase2
        Boolean
    gsm_map.ms.phase3  phase3
        Boolean
    gsm_map.ms.phase4  phase4
        Boolean
    gsm_map.ms.playTone  playTone
        Boolean
    gsm_map.ms.plmn-SpecificBarringType1  plmn-SpecificBarringType1
        Boolean
    gsm_map.ms.plmn-SpecificBarringType2  plmn-SpecificBarringType2
        Boolean
    gsm_map.ms.plmn-SpecificBarringType3  plmn-SpecificBarringType3
        Boolean
    gsm_map.ms.plmn-SpecificBarringType4  plmn-SpecificBarringType4
        Boolean
    gsm_map.ms.plmnClientList  plmnClientList
        Unsigned 32-bit integer
    gsm_map.ms.pre_emption_capability  pre-emption-capability
        Boolean
        BOOLEAN
    gsm_map.ms.pre_emption_vulnerability  pre-emption-vulnerability
        Boolean
        BOOLEAN
    gsm_map.ms.preferentialCUG_Indicator  preferentialCUG-Indicator
        Unsigned 32-bit integer
        CUG_Index
    gsm_map.ms.premiumRateEntertainementOGCallsBarred  premiumRateEntertainementOGCallsBarred
        Boolean
    gsm_map.ms.premiumRateInformationOGCallsBarred  premiumRateInformationOGCallsBarred
        Boolean
    gsm_map.ms.previous_LAI  previous-LAI
        Byte array
        LAIFixedLength
    gsm_map.ms.priority_level  priority-level
        Signed 32-bit integer
        INTEGER
    gsm_map.ms.privilegedUplinkRequest  privilegedUplinkRequest
        Boolean
    gsm_map.ms.provisionedSS  provisionedSS
        Unsigned 32-bit integer
        Ext_SS_InfoList
    gsm_map.ms.ps_AttachedNotReachableForPaging  ps-AttachedNotReachableForPaging
        No value
    gsm_map.ms.ps_AttachedReachableForPaging  ps-AttachedReachableForPaging
        No value
    gsm_map.ms.ps_Detached  ps-Detached
        No value
    gsm_map.ms.ps_LCS_NotSupportedByUE  ps-LCS-NotSupportedByUE
        No value
    gsm_map.ms.ps_PDP_ActiveNotReachableForPaging  ps-PDP-ActiveNotReachableForPaging
        Unsigned 32-bit integer
        PDP_ContextInfoList
    gsm_map.ms.ps_PDP_ActiveReachableForPaging  ps-PDP-ActiveReachableForPaging
        Unsigned 32-bit integer
        PDP_ContextInfoList
    gsm_map.ms.ps_SubscriberState  ps-SubscriberState
        Unsigned 32-bit integer
    gsm_map.ms.psi-enhancements  psi-enhancements
        Boolean
    gsm_map.ms.qos2_Negotiated  qos2-Negotiated
        Byte array
        Ext2_QoS_Subscribed
    gsm_map.ms.qos2_Requested  qos2-Requested
        Byte array
        Ext2_QoS_Subscribed
    gsm_map.ms.qos2_Subscribed  qos2-Subscribed
        Byte array
        Ext2_QoS_Subscribed
    gsm_map.ms.qos3_Negotiated  qos3-Negotiated
        Byte array
        Ext3_QoS_Subscribed
    gsm_map.ms.qos3_Requested  qos3-Requested
        Byte array
        Ext3_QoS_Subscribed
    gsm_map.ms.qos3_Subscribed  qos3-Subscribed
        Byte array
        Ext3_QoS_Subscribed
    gsm_map.ms.qos4_Negotiated  qos4-Negotiated
        Byte array
        Ext4_QoS_Subscribed
    gsm_map.ms.qos4_Requested  qos4-Requested
        Byte array
        Ext4_QoS_Subscribed
    gsm_map.ms.qos4_Subscribed  qos4-Subscribed
        Byte array
        Ext4_QoS_Subscribed
    gsm_map.ms.qos_Class_Identifier  qos-Class-Identifier
        Unsigned 32-bit integer
    gsm_map.ms.qos_Negotiated  qos-Negotiated
        Byte array
        Ext_QoS_Subscribed
    gsm_map.ms.qos_Requested  qos-Requested
        Byte array
        Ext_QoS_Subscribed
    gsm_map.ms.qos_Subscribed  qos-Subscribed
        Byte array
    gsm_map.ms.quintupletList  quintupletList
        Unsigned 32-bit integer
    gsm_map.ms.rab_ConfigurationIndicator  rab-ConfigurationIndicator
        No value
    gsm_map.ms.rab_Id  rab-Id
        Unsigned 32-bit integer
    gsm_map.ms.radioResourceInformation  radioResourceInformation
        Byte array
    gsm_map.ms.radioResourceList  radioResourceList
        Unsigned 32-bit integer
    gsm_map.ms.ranap_ServiceHandover  ranap-ServiceHandover
        Byte array
    gsm_map.ms.rand  rand
        Byte array
    gsm_map.ms.re_attempt  re-attempt
        Boolean
        BOOLEAN
    gsm_map.ms.re_synchronisationInfo  re-synchronisationInfo
        No value
    gsm_map.ms.regSub  regSub
        Boolean
    gsm_map.ms.regionalSubscriptionData  regionalSubscriptionData
        Unsigned 32-bit integer
        ZoneCodeList
    gsm_map.ms.regionalSubscriptionIdentifier  regionalSubscriptionIdentifier
        Byte array
        ZoneCode
    gsm_map.ms.regionalSubscriptionResponse  regionalSubscriptionResponse
        Unsigned 32-bit integer
    gsm_map.ms.registrationAllCF-Barred  registrationAllCF-Barred
        Boolean
    gsm_map.ms.registrationCFNotToHPLMN-Barred  registrationCFNotToHPLMN-Barred
        Boolean
    gsm_map.ms.registrationInternationalCF-Barred  registrationInternationalCF-Barred
        Boolean
    gsm_map.ms.registrationInterzonalCF-Barred  registrationInterzonalCF-Barred
        Boolean
    gsm_map.ms.registrationInterzonalCFNotToHPLMN-Barred  registrationInterzonalCFNotToHPLMN-Barred
        Boolean
    gsm_map.ms.relocationNumberList  relocationNumberList
        Unsigned 32-bit integer
    gsm_map.ms.requestedCAMEL_SubscriptionInfo  requestedCAMEL-SubscriptionInfo
        Unsigned 32-bit integer
    gsm_map.ms.requestedCamel_SubscriptionInfo  requestedCamel-SubscriptionInfo
        Unsigned 32-bit integer
    gsm_map.ms.requestedDomain  requestedDomain
        Unsigned 32-bit integer
        DomainType
    gsm_map.ms.requestedEquipmentInfo  requestedEquipmentInfo
        Byte array
    gsm_map.ms.requestedInfo  requestedInfo
        No value
    gsm_map.ms.requestedSS_Info  requestedSS-Info
        No value
        SS_ForBS_Code
    gsm_map.ms.requestedSubscriptionInfo  requestedSubscriptionInfo
        No value
    gsm_map.ms.requestingNodeType  requestingNodeType
        Unsigned 32-bit integer
    gsm_map.ms.requestingPLMN_Id  requestingPLMN-Id
        Byte array
        PLMN_Id
    gsm_map.ms.rfsp_id  rfsp-id
        Unsigned 32-bit integer
    gsm_map.ms.rnc_Address  rnc-Address
        Byte array
        GSN_Address
    gsm_map.ms.roamerAccessToHPLMN-AP-Barred  roamerAccessToHPLMN-AP-Barred
        Boolean
    gsm_map.ms.roamerAccessToVPLMN-AP-Barred  roamerAccessToVPLMN-AP-Barred
        Boolean
    gsm_map.ms.roamingOutsidePLMN-Barred  roamingOutsidePLMN-Barred
        Boolean
    gsm_map.ms.roamingOutsidePLMN-CountryBarred  roamingOutsidePLMN-CountryBarred
        Boolean
    gsm_map.ms.roamingOutsidePLMNIC-CallsBarred  roamingOutsidePLMNIC-CallsBarred
        Boolean
    gsm_map.ms.roamingOutsidePLMNICountryIC-CallsBarred  roamingOutsidePLMNICountryIC-CallsBarred
        Boolean
    gsm_map.ms.roamingOutsidePLMNOG-CallsBarred  roamingOutsidePLMNOG-CallsBarred
        Boolean
    gsm_map.ms.roamingRestrictedInSgsnDueToUnsupportedFeature  roamingRestrictedInSgsnDueToUnsupportedFeature
        No value
    gsm_map.ms.roamingRestrictedInSgsnDueToUnsuppportedFeature  roamingRestrictedInSgsnDueToUnsuppportedFeature
        No value
    gsm_map.ms.roamingRestrictionDueToUnsupportedFeature  roamingRestrictionDueToUnsupportedFeature
        No value
    gsm_map.ms.routeingAreaIdentity  routeingAreaIdentity
        Byte array
        RAIdentity
    gsm_map.ms.routeingNumber  routeingNumber
        Byte array
    gsm_map.ms.sai_Present  sai-Present
        No value
    gsm_map.ms.segmentationProhibited  segmentationProhibited
        No value
    gsm_map.ms.selectedGSM_Algorithm  selectedGSM-Algorithm
        Byte array
    gsm_map.ms.selectedLSAIdentity  selectedLSAIdentity
        Byte array
        LSAIdentity
    gsm_map.ms.selectedLSA_Id  selectedLSA-Id
        Byte array
        LSAIdentity
    gsm_map.ms.selectedRab_Id  selectedRab-Id
        Unsigned 32-bit integer
        RAB_Id
    gsm_map.ms.selectedUMTS_Algorithms  selectedUMTS-Algorithms
        No value
    gsm_map.ms.sendSubscriberData  sendSubscriberData
        No value
    gsm_map.ms.servedPartyIP_IPv4_Address  servedPartyIP-IPv4-Address
        Byte array
        PDP_Address
    gsm_map.ms.servedPartyIP_IPv6_Address  servedPartyIP-IPv6-Address
        Byte array
        PDP_Address
    gsm_map.ms.serviceChangeDP  serviceChangeDP
        Boolean
    gsm_map.ms.serviceKey  serviceKey
        Unsigned 32-bit integer
    gsm_map.ms.serviceTypeIdentity  serviceTypeIdentity
        Unsigned 32-bit integer
        LCSServiceTypeID
    gsm_map.ms.serviceTypeList  serviceTypeList
        Unsigned 32-bit integer
    gsm_map.ms.servingNetworkEnhancedDialledServices  servingNetworkEnhancedDialledServices
        Boolean
    gsm_map.ms.servingNodeTypeIndicator  servingNodeTypeIndicator
        No value
    gsm_map.ms.sgsn_Address  sgsn-Address
        Byte array
        GSN_Address
    gsm_map.ms.sgsn_CAMEL_SubscriptionInfo  sgsn-CAMEL-SubscriptionInfo
        No value
    gsm_map.ms.sgsn_Capability  sgsn-Capability
        No value
    gsm_map.ms.sgsn_Number  sgsn-Number
        Byte array
        ISDN_AddressString
    gsm_map.ms.sgsn_mmeSeparationSupported  sgsn-mmeSeparationSupported
        No value
    gsm_map.ms.skipSubscriberDataUpdate  skipSubscriberDataUpdate
        No value
    gsm_map.ms.sm-mo-pp  sm-mo-pp
        Boolean
    gsm_map.ms.smsCallBarringSupportIndicator  smsCallBarringSupportIndicator
        No value
    gsm_map.ms.sms_CAMEL_TDP_DataList  sms-CAMEL-TDP-DataList
        Unsigned 32-bit integer
    gsm_map.ms.sms_TriggerDetectionPoint  sms-TriggerDetectionPoint
        Unsigned 32-bit integer
    gsm_map.ms.solsaSupportIndicator  solsaSupportIndicator
        No value
    gsm_map.ms.specificAPNInfoList  specificAPNInfoList
        Unsigned 32-bit integer
    gsm_map.ms.specificCSIDeletedList  specificCSIDeletedList
        Byte array
        SpecificCSI_Withdraw
    gsm_map.ms.specificCSI_Withdraw  specificCSI-Withdraw
        Byte array
    gsm_map.ms.splitLeg  splitLeg
        Boolean
    gsm_map.ms.sres  sres
        Byte array
    gsm_map.ms.ss-AccessBarred  ss-AccessBarred
        Boolean
    gsm_map.ms.ss-csi  ss-csi
        Boolean
    gsm_map.ms.ss_CSI  ss-CSI
        No value
    gsm_map.ms.ss_CamelData  ss-CamelData
        No value
    gsm_map.ms.ss_Code  ss-Code
        Unsigned 8-bit integer
    gsm_map.ms.ss_Data  ss-Data
        No value
        Ext_SS_Data
    gsm_map.ms.ss_EventList  ss-EventList
        Unsigned 32-bit integer
    gsm_map.ms.ss_InfoFor_CSE  ss-InfoFor-CSE
        Unsigned 32-bit integer
        Ext_SS_InfoFor_CSE
    gsm_map.ms.ss_List  ss-List
        Unsigned 32-bit integer
    gsm_map.ms.ss_Status  ss-Status
        Byte array
        Ext_SS_Status
    gsm_map.ms.ss_SubscriptionOption  ss-SubscriptionOption
        Unsigned 32-bit integer
    gsm_map.ms.stn_sr  stn-sr
        Byte array
        ISDN_AddressString
    gsm_map.ms.stn_srWithdraw  stn-srWithdraw
        No value
    gsm_map.ms.subscribedEnhancedDialledServices  subscribedEnhancedDialledServices
        Boolean
    gsm_map.ms.subscriberDataStored  subscriberDataStored
        Byte array
        AgeIndicator
    gsm_map.ms.subscriberIdentity  subscriberIdentity
        Unsigned 32-bit integer
    gsm_map.ms.subscriberInfo  subscriberInfo
        No value
    gsm_map.ms.subscriberState  subscriberState
        Unsigned 32-bit integer
    gsm_map.ms.subscriberStatus  subscriberStatus
        Unsigned 32-bit integer
    gsm_map.ms.superChargerSupportedInHLR  superChargerSupportedInHLR
        Byte array
        AgeIndicator
    gsm_map.ms.superChargerSupportedInServingNetworkEntity  superChargerSupportedInServingNetworkEntity
        Unsigned 32-bit integer
        SuperChargerInfo
    gsm_map.ms.supportedCAMELPhases  supportedCAMELPhases
        Byte array
    gsm_map.ms.supportedCamelPhases  supportedCamelPhases
        Byte array
    gsm_map.ms.supportedFeatures  supportedFeatures
        Byte array
    gsm_map.ms.supportedLCS_CapabilitySets  supportedLCS-CapabilitySets
        Byte array
    gsm_map.ms.supportedRAT_TypesIndicator  supportedRAT-TypesIndicator
        Byte array
        SupportedRAT_Types
    gsm_map.ms.supportedSGSN_CAMEL_Phases  supportedSGSN-CAMEL-Phases
        Byte array
        SupportedCamelPhases
    gsm_map.ms.supportedVLR_CAMEL_Phases  supportedVLR-CAMEL-Phases
        Byte array
        SupportedCamelPhases
    gsm_map.ms.t-csi  t-csi
        Boolean
    gsm_map.ms.t_BCSM_CAMEL_TDP_CriteriaList  t-BCSM-CAMEL-TDP-CriteriaList
        Unsigned 32-bit integer
    gsm_map.ms.t_BCSM_TriggerDetectionPoint  t-BCSM-TriggerDetectionPoint
        Unsigned 32-bit integer
        T_BcsmTriggerDetectionPoint
    gsm_map.ms.t_BcsmCamelTDPDataList  t-BcsmCamelTDPDataList
        Unsigned 32-bit integer
    gsm_map.ms.t_BcsmTriggerDetectionPoint  t-BcsmTriggerDetectionPoint
        Unsigned 32-bit integer
    gsm_map.ms.t_CSI  t-CSI
        No value
    gsm_map.ms.t_CauseValueCriteria  t-CauseValueCriteria
        Unsigned 32-bit integer
    gsm_map.ms.t_adsData  t-adsData
        No value
    gsm_map.ms.t_adsDataRetrieval  t-adsDataRetrieval
        No value
    gsm_map.ms.targetCellId  targetCellId
        Byte array
        GlobalCellId
    gsm_map.ms.targetMSC_Number  targetMSC-Number
        Byte array
        ISDN_AddressString
    gsm_map.ms.targetRNCId  targetRNCId
        Byte array
        RNCId
    gsm_map.ms.teid_ForGnAndGp  teid-ForGnAndGp
        Byte array
        TEID
    gsm_map.ms.teid_ForIu  teid-ForIu
        Byte array
        TEID
    gsm_map.ms.teleserviceList  teleserviceList
        Unsigned 32-bit integer
    gsm_map.ms.tif-csi  tif-csi
        Boolean
    gsm_map.ms.tif_CSI  tif-CSI
        No value
    gsm_map.ms.tif_CSI_NotificationToCSE  tif-CSI-NotificationToCSE
        No value
    gsm_map.ms.tmsi  tmsi
        Byte array
    gsm_map.ms.tpdu_TypeCriterion  tpdu-TypeCriterion
        Unsigned 32-bit integer
    gsm_map.ms.trace  trace
        Boolean
    gsm_map.ms.tracePropagationList  tracePropagationList
        No value
    gsm_map.ms.trackingAreaIdentity  trackingAreaIdentity
        Byte array
        OCTET_STRING_SIZE_6
    gsm_map.ms.transactionId  transactionId
        Byte array
    gsm_map.ms.tripletList  tripletList
        Unsigned 32-bit integer
    gsm_map.ms.typeOfUpdate  typeOfUpdate
        Unsigned 32-bit integer
    gsm_map.ms.ue_ReachabilityRequestIndicator  ue-ReachabilityRequestIndicator
        No value
    gsm_map.ms.ue_reachable  ue-reachable
        Byte array
        ServingNode
    gsm_map.ms.ue_reachableIndicator  ue-reachableIndicator
        No value
    gsm_map.ms.uesbi_Iu  uesbi-Iu
        No value
    gsm_map.ms.uesbi_IuA  uesbi-IuA
        Byte array
    gsm_map.ms.uesbi_IuB  uesbi-IuB
        Byte array
    gsm_map.ms.umts_SecurityContextData  umts-SecurityContextData
        No value
    gsm_map.ms.updateMME  updateMME
        Boolean
    gsm_map.ms.usedRAT_Type  usedRAT-Type
        Unsigned 32-bit integer
        Used_RAT_Type
    gsm_map.ms.userCSGInformation  userCSGInformation
        No value
    gsm_map.ms.utran  utran
        Boolean
    gsm_map.ms.utranCodecList  utranCodecList
        No value
        CodecList
    gsm_map.ms.utranNotAllowed  utranNotAllowed
        Boolean
    gsm_map.ms.v_gmlc_Address  v-gmlc-Address
        Byte array
        GSN_Address
    gsm_map.ms.vbsGroupIndication  vbsGroupIndication
        No value
    gsm_map.ms.vbsSubscriptionData  vbsSubscriptionData
        Unsigned 32-bit integer
        VBSDataList
    gsm_map.ms.vgcsGroupIndication  vgcsGroupIndication
        No value
    gsm_map.ms.vgcsSubscriptionData  vgcsSubscriptionData
        Unsigned 32-bit integer
        VGCSDataList
    gsm_map.ms.vlrCamelSubscriptionInfo  vlrCamelSubscriptionInfo
        No value
    gsm_map.ms.vlr_Capability  vlr-Capability
        No value
    gsm_map.ms.vlr_Number  vlr-Number
        Byte array
        ISDN_AddressString
    gsm_map.ms.vlr_number  vlr-number
        Byte array
        ISDN_AddressString
    gsm_map.ms.vplmnAddressAllowed  vplmnAddressAllowed
        No value
    gsm_map.ms.vt-IM-CSI  vt-IM-CSI
        Boolean
    gsm_map.ms.vt-csi  vt-csi
        Boolean
    gsm_map.ms.vt_BCSM_CAMEL_TDP_CriteriaList  vt-BCSM-CAMEL-TDP-CriteriaList
        Unsigned 32-bit integer
        T_BCSM_CAMEL_TDP_CriteriaList
    gsm_map.ms.vt_CSI  vt-CSI
        No value
        T_CSI
    gsm_map.ms.vt_IM_BCSM_CAMEL_TDP_CriteriaList  vt-IM-BCSM-CAMEL-TDP-CriteriaList
        Unsigned 32-bit integer
        T_BCSM_CAMEL_TDP_CriteriaList
    gsm_map.ms.vt_IM_CSI  vt-IM-CSI
        No value
        T_CSI
    gsm_map.ms.warningToneEnhancements  warningToneEnhancements
        Boolean
    gsm_map.ms.wrongPasswordAttemptsCounter  wrongPasswordAttemptsCounter
        Unsigned 32-bit integer
    gsm_map.ms.xres  xres
        Byte array
    gsm_map.msisdn  msisdn
        Byte array
        ISDN_AddressString
    gsm_map.na_ESRK_Request  na-ESRK-Request
        No value
    gsm_map.naea_PreferredCIC  naea-PreferredCIC
        Byte array
        NAEA_CIC
    gsm_map.nature_of_number  Nature of number
        Unsigned 8-bit integer
    gsm_map.nbrSB  nbrSB
        Unsigned 32-bit integer
        MaxMC_Bearers
    gsm_map.nbrUser  nbrUser
        Unsigned 32-bit integer
        MC_Bearers
    gsm_map.notification_to_clling_party  Notification to calling party
        Boolean
    gsm_map.notification_to_forwarding_party  Notification to forwarding party
        Boolean
    gsm_map.number_plan  Number plan
        Unsigned 8-bit integer
    gsm_map.old.Component  Component
        Unsigned 32-bit integer
    gsm_map.om.a  a
        Boolean
    gsm_map.om.bearerActivationModificationDeletion  bearerActivationModificationDeletion
        Boolean
    gsm_map.om.bm-sc  bm-sc
        Boolean
    gsm_map.om.bmsc_List  bmsc-List
        Byte array
        BMSC_InterfaceList
    gsm_map.om.bmsc_TraceDepth  bmsc-TraceDepth
        Unsigned 32-bit integer
        TraceDepth
    gsm_map.om.cap  cap
        Boolean
    gsm_map.om.context  context
        Boolean
    gsm_map.om.eNB  eNB
        Boolean
    gsm_map.om.eNB_List  eNB-List
        Byte array
        ENB_InterfaceList
    gsm_map.om.eNB_TraceDepth  eNB-TraceDepth
        Unsigned 32-bit integer
        TraceDepth
    gsm_map.om.extensionContainer  extensionContainer
        No value
    gsm_map.om.gb  gb
        Boolean
    gsm_map.om.ge  ge
        Boolean
    gsm_map.om.ggsn  ggsn
        Boolean
    gsm_map.om.ggsn_List  ggsn-List
        Byte array
        GGSN_InterfaceList
    gsm_map.om.ggsn_TraceDepth  ggsn-TraceDepth
        Unsigned 32-bit integer
        TraceDepth
    gsm_map.om.gi  gi
        Boolean
    gsm_map.om.gmb  gmb
        Boolean
    gsm_map.om.gn  gn
        Boolean
    gsm_map.om.gs  gs
        Boolean
    gsm_map.om.gx  gx
        Boolean
    gsm_map.om.gxc  gxc
        Boolean
    gsm_map.om.handover  handover
        Boolean
    gsm_map.om.handovers  handovers
        Boolean
    gsm_map.om.imsi  imsi
        Byte array
    gsm_map.om.initialAttachTrackingAreaUpdateDetach  initialAttachTrackingAreaUpdateDetach
        Boolean
    gsm_map.om.iu  iu
        Boolean
    gsm_map.om.iu-up  iu-up
        Boolean
    gsm_map.om.iub  iub
        Boolean
    gsm_map.om.iur  iur
        Boolean
    gsm_map.om.lu-imsiAttach-imsiDetach  lu-imsiAttach-imsiDetach
        Boolean
    gsm_map.om.map-b  map-b
        Boolean
    gsm_map.om.map-c  map-c
        Boolean
    gsm_map.om.map-d  map-d
        Boolean
    gsm_map.om.map-e  map-e
        Boolean
    gsm_map.om.map-f  map-f
        Boolean
    gsm_map.om.map-g  map-g
        Boolean
    gsm_map.om.map-gd  map-gd
        Boolean
    gsm_map.om.map-gf  map-gf
        Boolean
    gsm_map.om.map-gr  map-gr
        Boolean
    gsm_map.om.mbmsContext  mbmsContext
        Boolean
    gsm_map.om.mbmsMulticastServiceActivation  mbmsMulticastServiceActivation
        Boolean
    gsm_map.om.mc  mc
        Boolean
    gsm_map.om.mgw  mgw
        Boolean
    gsm_map.om.mgw_EventList  mgw-EventList
        Byte array
    gsm_map.om.mgw_InterfaceList  mgw-InterfaceList
        Byte array
    gsm_map.om.mgw_List  mgw-List
        Byte array
        MGW_InterfaceList
    gsm_map.om.mgw_TraceDepth  mgw-TraceDepth
        Unsigned 32-bit integer
        TraceDepth
    gsm_map.om.mme  mme
        Boolean
    gsm_map.om.mme_List  mme-List
        Byte array
        MME_InterfaceList
    gsm_map.om.mme_TraceDepth  mme-TraceDepth
        Unsigned 32-bit integer
        TraceDepth
    gsm_map.om.mo-mt-sms  mo-mt-sms
        Boolean
    gsm_map.om.mo-mtCall  mo-mtCall
        Boolean
    gsm_map.om.msc-s  msc-s
        Boolean
    gsm_map.om.msc_s_EventList  msc-s-EventList
        Byte array
    gsm_map.om.msc_s_InterfaceList  msc-s-InterfaceList
        Byte array
    gsm_map.om.msc_s_List  msc-s-List
        Byte array
        MSC_S_InterfaceList
    gsm_map.om.msc_s_TraceDepth  msc-s-TraceDepth
        Unsigned 32-bit integer
        TraceDepth
    gsm_map.om.nb-up  nb-up
        Boolean
    gsm_map.om.omc_Id  omc-Id
        Byte array
        AddressString
    gsm_map.om.pdn-connectionCreation  pdn-connectionCreation
        Boolean
    gsm_map.om.pdn-connectionTermination  pdn-connectionTermination
        Boolean
    gsm_map.om.pdpContext  pdpContext
        Boolean
    gsm_map.om.pgw  pgw
        Boolean
    gsm_map.om.pgw_List  pgw-List
        Byte array
        PGW_InterfaceList
    gsm_map.om.pgw_TraceDepth  pgw-TraceDepth
        Unsigned 32-bit integer
        TraceDepth
    gsm_map.om.rau-gprsAttach-gprsDetach  rau-gprsAttach-gprsDetach
        Boolean
    gsm_map.om.rnc  rnc
        Boolean
    gsm_map.om.rnc_InterfaceList  rnc-InterfaceList
        Byte array
    gsm_map.om.rnc_List  rnc-List
        Byte array
        RNC_InterfaceList
    gsm_map.om.rnc_TraceDepth  rnc-TraceDepth
        Unsigned 32-bit integer
        TraceDepth
    gsm_map.om.s1-mme  s1-mme
        Boolean
    gsm_map.om.s10  s10
        Boolean
    gsm_map.om.s11  s11
        Boolean
    gsm_map.om.s2a  s2a
        Boolean
    gsm_map.om.s2b  s2b
        Boolean
    gsm_map.om.s2c  s2c
        Boolean
    gsm_map.om.s3  s3
        Boolean
    gsm_map.om.s4  s4
        Boolean
    gsm_map.om.s5  s5
        Boolean
    gsm_map.om.s6a  s6a
        Boolean
    gsm_map.om.s6b  s6b
        Boolean
    gsm_map.om.s6d  s6d
        Boolean
    gsm_map.om.s8b  s8b
        Boolean
    gsm_map.om.serviceRequestts  serviceRequestts
        Boolean
    gsm_map.om.sgi  sgi
        Boolean
    gsm_map.om.sgsn  sgsn
        Boolean
    gsm_map.om.sgsn_List  sgsn-List
        Byte array
        SGSN_InterfaceList
    gsm_map.om.sgsn_TraceDepth  sgsn-TraceDepth
        Unsigned 32-bit integer
        TraceDepth
    gsm_map.om.sgw  sgw
        Boolean
    gsm_map.om.sgw_List  sgw-List
        Byte array
        SGW_InterfaceList
    gsm_map.om.sgw_TraceDepth  sgw-TraceDepth
        Unsigned 32-bit integer
        TraceDepth
    gsm_map.om.ss  ss
        Boolean
    gsm_map.om.traceCollectionEntity  traceCollectionEntity
        Byte array
        GSN_Address
    gsm_map.om.traceDepthList  traceDepthList
        No value
    gsm_map.om.traceEventList  traceEventList
        No value
    gsm_map.om.traceInterfaceList  traceInterfaceList
        No value
    gsm_map.om.traceNE_TypeList  traceNE-TypeList
        Byte array
    gsm_map.om.traceRecordingSessionReference  traceRecordingSessionReference
        Byte array
    gsm_map.om.traceReference  traceReference
        Byte array
    gsm_map.om.traceReference2  traceReference2
        Byte array
    gsm_map.om.traceSupportIndicator  traceSupportIndicator
        No value
    gsm_map.om.traceType  traceType
        Unsigned 32-bit integer
    gsm_map.om.ue-initiatedPDNconectivityRequest  ue-initiatedPDNconectivityRequest
        Boolean
    gsm_map.om.ue-initiatedPDNdisconnection  ue-initiatedPDNdisconnection
        Boolean
    gsm_map.om.uu  uu
        Boolean
    gsm_map.om.x2  x2
        Boolean
    gsm_map.pcs_Extensions  pcs-Extensions
        No value
    gsm_map.pdp_type_org  PDP Type Organization
        Unsigned 8-bit integer
    gsm_map.privateExtensionList  privateExtensionList
        Unsigned 32-bit integer
    gsm_map.protocolId  protocolId
        Unsigned 32-bit integer
    gsm_map.qos.ber  Residual Bit Error Rate (BER)
        Unsigned 8-bit integer
    gsm_map.qos.brate_dlink  Guaranteed bit rate for downlink in kbit/s
        Unsigned 32-bit integer
        Guaranteed bit rate for downlink
    gsm_map.qos.brate_ulink  Guaranteed bit rate for uplink in kbit/s
        Unsigned 32-bit integer
        Guaranteed bit rate for uplink
    gsm_map.qos.del_of_err_sdu  Delivery of erroneous SDUs
        Unsigned 8-bit integer
    gsm_map.qos.del_order  Delivery order
        Unsigned 8-bit integer
    gsm_map.qos.max_brate_dlink  Maximum bit rate for downlink in kbit/s
        Unsigned 32-bit integer
        Maximum bit rate for downlink
    gsm_map.qos.max_brate_ulink  Maximum bit rate for uplink in kbit/s
        Unsigned 32-bit integer
        Maximum bit rate for uplink
    gsm_map.qos.max_sdu  Maximum SDU size
        Unsigned 32-bit integer
    gsm_map.qos.sdu_err_rat  SDU error ratio
        Unsigned 8-bit integer
    gsm_map.qos.traff_hdl_pri  Traffic handling priority
        Unsigned 8-bit integer
    gsm_map.qos.traffic_cls  Traffic class
        Unsigned 8-bit integer
    gsm_map.qos.transfer_delay  Transfer delay (Raw data see TS 24.008 for interpretation)
        Unsigned 8-bit integer
        Transfer delay
    gsm_map.ranap.EncryptionInformation  EncryptionInformation
        No value
        gsm_map.ranap.EncryptionInformation
    gsm_map.ranap.IntegrityProtectionInformation  IntegrityProtectionInformation
        No value
        gsm_map.ranap.IntegrityProtectionInformation
    gsm_map.ranap.service_Handover  service-Handover
        Unsigned 32-bit integer
        gsm_map.ranap.Service_Handover
    gsm_map.redirecting_presentation  Redirecting presentation
        Boolean
    gsm_map.servicecentreaddress_digits  ServiceCentreAddress digits
        String
    gsm_map.signalInfo  signalInfo
        Byte array
    gsm_map.slr_Arg_PCS_Extensions  slr-Arg-PCS-Extensions
        No value
    gsm_map.sm.ISDN_AddressString  ISDN-AddressString
        Byte array
    gsm_map.sm.absentSubscriberDiagnosticSM  absentSubscriberDiagnosticSM
        Unsigned 32-bit integer
    gsm_map.sm.additionalAbsentSubscriberDiagnosticSM  additionalAbsentSubscriberDiagnosticSM
        Unsigned 32-bit integer
        AbsentSubscriberDiagnosticSM
    gsm_map.sm.additionalAlertReasonIndicator  additionalAlertReasonIndicator
        No value
    gsm_map.sm.additionalSM_DeliveryOutcome  additionalSM-DeliveryOutcome
        Unsigned 32-bit integer
        SM_DeliveryOutcome
    gsm_map.sm.additional_Number  additional-Number
        Unsigned 32-bit integer
    gsm_map.sm.alertReason  alertReason
        Unsigned 32-bit integer
    gsm_map.sm.alertReasonIndicator  alertReasonIndicator
        No value
    gsm_map.sm.asciCallReference  asciCallReference
        Byte array
        ASCI_CallReference
    gsm_map.sm.deliveryOutcomeIndicator  deliveryOutcomeIndicator
        No value
    gsm_map.sm.dispatcherList  dispatcherList
        Unsigned 32-bit integer
    gsm_map.sm.extensionContainer  extensionContainer
        No value
    gsm_map.sm.gprsNodeIndicator  gprsNodeIndicator
        No value
    gsm_map.sm.gprsSupportIndicator  gprsSupportIndicator
        No value
    gsm_map.sm.imsi  imsi
        Byte array
    gsm_map.sm.ip_sm_gw_Indicator  ip-sm-gw-Indicator
        No value
    gsm_map.sm.ip_sm_gw_absentSubscriberDiagnosticSM  ip-sm-gw-absentSubscriberDiagnosticSM
        Unsigned 32-bit integer
        AbsentSubscriberDiagnosticSM
    gsm_map.sm.ip_sm_gw_sm_deliveryOutcome  ip-sm-gw-sm-deliveryOutcome
        Unsigned 32-bit integer
        SM_DeliveryOutcome
    gsm_map.sm.lmsi  lmsi
        Byte array
    gsm_map.sm.locationInfoWithLMSI  locationInfoWithLMSI
        No value
    gsm_map.sm.mcef-Set  mcef-Set
        Boolean
    gsm_map.sm.mnrf-Set  mnrf-Set
        Boolean
    gsm_map.sm.mnrg-Set  mnrg-Set
        Boolean
    gsm_map.sm.moreMessagesToSend  moreMessagesToSend
        No value
    gsm_map.sm.msc_Number  msc-Number
        Byte array
        ISDN_AddressString
    gsm_map.sm.msisdn  msisdn
        Byte array
        ISDN_AddressString
    gsm_map.sm.mw_Status  mw-Status
        Byte array
    gsm_map.sm.networkNode_Number  networkNode-Number
        Byte array
        ISDN_AddressString
    gsm_map.sm.noSM_RP_DA  noSM-RP-DA
        No value
    gsm_map.sm.noSM_RP_OA  noSM-RP-OA
        No value
    gsm_map.sm.ongoingCall  ongoingCall
        No value
    gsm_map.sm.sc-AddressNotIncluded  sc-AddressNotIncluded
        Boolean
    gsm_map.sm.serviceCentreAddress  serviceCentreAddress
        Byte array
        AddressString
    gsm_map.sm.serviceCentreAddressDA  serviceCentreAddressDA
        Byte array
        AddressString
    gsm_map.sm.serviceCentreAddressOA  serviceCentreAddressOA
        Byte array
    gsm_map.sm.sgsn_Number  sgsn-Number
        Byte array
        ISDN_AddressString
    gsm_map.sm.sm_DeliveryOutcome  sm-DeliveryOutcome
        Unsigned 32-bit integer
    gsm_map.sm.sm_RP_DA  sm-RP-DA
        Unsigned 32-bit integer
    gsm_map.sm.sm_RP_MTI  sm-RP-MTI
        Unsigned 32-bit integer
    gsm_map.sm.sm_RP_OA  sm-RP-OA
        Unsigned 32-bit integer
    gsm_map.sm.sm_RP_PRI  sm-RP-PRI
        Boolean
        BOOLEAN
    gsm_map.sm.sm_RP_SMEA  sm-RP-SMEA
        Byte array
    gsm_map.sm.sm_RP_UI  sm-RP-UI
        Byte array
        SignalInfo
    gsm_map.sm.sm_deliveryNotIntended  sm-deliveryNotIntended
        Unsigned 32-bit integer
    gsm_map.sm.storedMSISDN  storedMSISDN
        Byte array
        ISDN_AddressString
    gsm_map.ss.AddressString  AddressString
        Byte array
    gsm_map.ss.BasicServiceCode  BasicServiceCode
        Unsigned 32-bit integer
    gsm_map.ss.CCBS_Feature  CCBS-Feature
        No value
    gsm_map.ss.CallBarringFeature  CallBarringFeature
        No value
    gsm_map.ss.ForwardingFeature  ForwardingFeature
        No value
    gsm_map.ss.SS_Code  SS-Code
        Unsigned 8-bit integer
    gsm_map.ss.alertingPattern  alertingPattern
        Byte array
    gsm_map.ss.b_subscriberNumber  b-subscriberNumber
        Byte array
        ISDN_AddressString
    gsm_map.ss.b_subscriberSubaddress  b-subscriberSubaddress
        Byte array
        ISDN_SubaddressString
    gsm_map.ss.basicService  basicService
        Unsigned 32-bit integer
        BasicServiceCode
    gsm_map.ss.basicServiceGroup  basicServiceGroup
        Unsigned 32-bit integer
        BasicServiceCode
    gsm_map.ss.basicServiceGroupList  basicServiceGroupList
        Unsigned 32-bit integer
    gsm_map.ss.callBarringFeatureList  callBarringFeatureList
        Unsigned 32-bit integer
    gsm_map.ss.callBarringInfo  callBarringInfo
        No value
    gsm_map.ss.callInfo  callInfo
        No value
        ExternalSignalInfo
    gsm_map.ss.camel-invoked  camel-invoked
        Boolean
    gsm_map.ss.ccbs_Data  ccbs-Data
        No value
    gsm_map.ss.ccbs_Feature  ccbs-Feature
        No value
    gsm_map.ss.ccbs_FeatureList  ccbs-FeatureList
        Unsigned 32-bit integer
    gsm_map.ss.ccbs_Index  ccbs-Index
        Unsigned 32-bit integer
    gsm_map.ss.ccbs_RequestState  ccbs-RequestState
        Unsigned 32-bit integer
    gsm_map.ss.cliRestrictionOption  cliRestrictionOption
        Unsigned 32-bit integer
    gsm_map.ss.clir-invoked  clir-invoked
        Boolean
    gsm_map.ss.defaultPriority  defaultPriority
        Unsigned 32-bit integer
        EMLPP_Priority
    gsm_map.ss.extensionContainer  extensionContainer
        No value
    gsm_map.ss.forwardedToNumber  forwardedToNumber
        Byte array
        AddressString
    gsm_map.ss.forwardedToSubaddress  forwardedToSubaddress
        Byte array
        ISDN_SubaddressString
    gsm_map.ss.forwardingFeatureList  forwardingFeatureList
        Unsigned 32-bit integer
    gsm_map.ss.forwardingInfo  forwardingInfo
        No value
    gsm_map.ss.forwardingOptions  forwardingOptions
        Byte array
    gsm_map.ss.genericServiceInfo  genericServiceInfo
        No value
    gsm_map.ss.imsi  imsi
        Byte array
    gsm_map.ss.longFTN_Supported  longFTN-Supported
        No value
    gsm_map.ss.longForwardedToNumber  longForwardedToNumber
        Byte array
        FTN_AddressString
    gsm_map.ss.maximumEntitledPriority  maximumEntitledPriority
        Unsigned 32-bit integer
        EMLPP_Priority
    gsm_map.ss.msisdn  msisdn
        Byte array
        ISDN_AddressString
    gsm_map.ss.nbrSB  nbrSB
        Unsigned 32-bit integer
        MaxMC_Bearers
    gsm_map.ss.nbrSN  nbrSN
        Unsigned 32-bit integer
        MC_Bearers
    gsm_map.ss.nbrUser  nbrUser
        Unsigned 32-bit integer
        MC_Bearers
    gsm_map.ss.networkSignalInfo  networkSignalInfo
        No value
        ExternalSignalInfo
    gsm_map.ss.noReplyConditionTime  noReplyConditionTime
        Unsigned 32-bit integer
    gsm_map.ss.overrideCategory  overrideCategory
        Unsigned 32-bit integer
    gsm_map.ss.serviceIndicator  serviceIndicator
        Byte array
    gsm_map.ss.ss_Code  ss-Code
        Unsigned 8-bit integer
    gsm_map.ss.ss_Data  ss-Data
        No value
    gsm_map.ss.ss_Event  ss-Event
        Unsigned 8-bit integer
        SS_Code
    gsm_map.ss.ss_EventSpecification  ss-EventSpecification
        Unsigned 32-bit integer
    gsm_map.ss.ss_Status  ss-Status
        Byte array
    gsm_map.ss.ss_SubscriptionOption  ss-SubscriptionOption
        Unsigned 32-bit integer
    gsm_map.ss.translatedB_Number  translatedB-Number
        Byte array
        ISDN_AddressString
    gsm_map.ss.ussd_DataCodingScheme  ussd-DataCodingScheme
        Byte array
    gsm_map.ss.ussd_String  ussd-String
        Byte array
    gsm_map.ss_Code  ss-Code
        Unsigned 8-bit integer
    gsm_map.ss_Status  ss-Status
        Byte array
        Ext_SS_Status
    gsm_map.ss_status_a_bit  A bit
        Boolean
    gsm_map.ss_status_p_bit  P bit
        Boolean
    gsm_map.ss_status_q_bit  Q bit
        Boolean
    gsm_map.ss_status_r_bit  R bit
        Boolean
    gsm_map.teleservice  teleservice
        Unsigned 8-bit integer
        TeleserviceCode
    gsm_map.tmsi  tmsi
        Byte array
        gsm_map.TMSI
    gsm_map.unused  Unused
        Unsigned 8-bit integer
    gsm_old.AuthenticationTriplet_v2  AuthenticationTriplet-v2
        No value
    gsm_old.SendAuthenticationInfoResOld_item  SendAuthenticationInfoResOld item
        No value
    gsm_old.b_Subscriber_Address  b-Subscriber-Address
        Byte array
        ISDN_AddressString
    gsm_old.basicService  basicService
        Unsigned 32-bit integer
        BasicServiceCode
    gsm_old.bss_APDU  bss-APDU
        No value
    gsm_old.call_Direction  call-Direction
        Byte array
        CallDirection
    gsm_old.category  category
        Byte array
    gsm_old.channelType  channelType
        No value
        ExternalSignalInfo
    gsm_old.chosenChannel  chosenChannel
        No value
        ExternalSignalInfo
    gsm_old.cug_CheckInfo  cug-CheckInfo
        No value
    gsm_old.derivable  derivable
        Signed 32-bit integer
        InvokeIdType
    gsm_old.errorCode  errorCode
        Unsigned 32-bit integer
        MAP_ERROR
    gsm_old.extensionContainer  extensionContainer
        No value
    gsm_old.generalProblem  generalProblem
        Signed 32-bit integer
    gsm_old.globalValue  globalValue
        Object Identifier
        OBJECT_IDENTIFIER
    gsm_old.gsm_BearerCapability  gsm-BearerCapability
        No value
        ExternalSignalInfo
    gsm_old.handoverNumber  handoverNumber
        Byte array
        ISDN_AddressString
    gsm_old.highLayerCompatibility  highLayerCompatibility
        No value
        ExternalSignalInfo
    gsm_old.ho_NumberNotRequired  ho-NumberNotRequired
        No value
    gsm_old.imsi  imsi
        Byte array
    gsm_old.initialisationVector  initialisationVector
        Byte array
    gsm_old.invoke  invoke
        No value
    gsm_old.invokeID  invokeID
        Signed 32-bit integer
        InvokeIdType
    gsm_old.invokeIDRej  invokeIDRej
        Unsigned 32-bit integer
    gsm_old.invokeProblem  invokeProblem
        Signed 32-bit integer
    gsm_old.invokeparameter  invokeparameter
        No value
    gsm_old.isdn_BearerCapability  isdn-BearerCapability
        No value
        ExternalSignalInfo
    gsm_old.kc  kc
        Byte array
    gsm_old.linkedID  linkedID
        Signed 32-bit integer
        InvokeIdType
    gsm_old.lmsi  lmsi
        Byte array
    gsm_old.localValue  localValue
        Signed 32-bit integer
        OperationLocalvalue
    gsm_old.lowerLayerCompatibility  lowerLayerCompatibility
        No value
        ExternalSignalInfo
    gsm_old.moreMessagesToSend  moreMessagesToSend
        No value
    gsm_old.msisdn  msisdn
        Byte array
        ISDN_AddressString
    gsm_old.networkSignalInfo  networkSignalInfo
        No value
        ExternalSignalInfo
    gsm_old.noSM_RP_DA  noSM-RP-DA
        No value
    gsm_old.noSM_RP_OA  noSM-RP-OA
        No value
    gsm_old.not_derivable  not-derivable
        No value
    gsm_old.numberOfForwarding  numberOfForwarding
        Unsigned 32-bit integer
    gsm_old.opCode  opCode
        Unsigned 32-bit integer
        MAP_OPERATION
    gsm_old.operationCode  operationCode
        Unsigned 32-bit integer
    gsm_old.operatorSS_Code  operatorSS-Code
        Unsigned 32-bit integer
    gsm_old.operatorSS_Code_item  operatorSS-Code item
        Byte array
        OCTET_STRING_SIZE_1
    gsm_old.originalComponentIdentifier  originalComponentIdentifier
        Unsigned 32-bit integer
    gsm_old.originatingEntityNumber  originatingEntityNumber
        Byte array
        ISDN_AddressString
    gsm_old.parameter  parameter
        No value
        ReturnErrorParameter
    gsm_old.problem  problem
        Unsigned 32-bit integer
    gsm_old.protectedPayload  protectedPayload
        Byte array
    gsm_old.protocolId  protocolId
        Unsigned 32-bit integer
    gsm_old.rand  rand
        Byte array
    gsm_old.reject  reject
        No value
    gsm_old.resultretres  resultretres
        No value
    gsm_old.returnError  returnError
        No value
    gsm_old.returnErrorProblem  returnErrorProblem
        Signed 32-bit integer
    gsm_old.returnResultLast  returnResultLast
        No value
        ReturnResult
    gsm_old.returnResultNotLast  returnResultNotLast
        No value
        ReturnResult
    gsm_old.returnResultProblem  returnResultProblem
        Signed 32-bit integer
    gsm_old.returnparameter  returnparameter
        No value
        ReturnResultParameter
    gsm_old.routingInfo  routingInfo
        Unsigned 32-bit integer
    gsm_old.sIWFSNumber  sIWFSNumber
        Byte array
        ISDN_AddressString
    gsm_old.securityHeader  securityHeader
        No value
    gsm_old.securityParametersIndex  securityParametersIndex
        Byte array
    gsm_old.serviceCentreAddressDA  serviceCentreAddressDA
        Byte array
        AddressString
    gsm_old.serviceCentreAddressOA  serviceCentreAddressOA
        Byte array
    gsm_old.signalInfo  signalInfo
        Byte array
    gsm_old.sm_RP_DA  sm-RP-DA
        Unsigned 32-bit integer
        SM_RP_DAold
    gsm_old.sm_RP_OA  sm-RP-OA
        Unsigned 32-bit integer
        SM_RP_OAold
    gsm_old.sm_RP_UI  sm-RP-UI
        Byte array
        SignalInfo
    gsm_old.sres  sres
        Byte array
    gsm_old.targetCellId  targetCellId
        Byte array
        GlobalCellId
    gsm_old.tripletList  tripletList
        Unsigned 32-bit integer
        TripletListold
    gsm_old.userInfo  userInfo
        No value
    gsm_old.vlr_Number  vlr-Number
        Byte array
        ISDN_AddressString
    gsm_ss.PositioningProtocolPDU  PositioningProtocolPDU
        Byte array
    gsm_ss.SS_UserData  SS-UserData
        String
        gsm_map.ss.SS_UserData
    gsm_ss.add_LocationEstimate  add-LocationEstimate
        Byte array
        Add_GeographicalInformation
    gsm_ss.ageOfLocationInfo  ageOfLocationInfo
        Unsigned 32-bit integer
        AgeOfLocationInformation
    gsm_ss.alertingPattern  alertingPattern
        Byte array
    gsm_ss.areaEventInfo  areaEventInfo
        No value
    gsm_ss.callIsWaiting_Indicator  callIsWaiting-Indicator
        No value
    gsm_ss.callOnHold_Indicator  callOnHold-Indicator
        Unsigned 32-bit integer
    gsm_ss.callingName  callingName
        Unsigned 32-bit integer
        Name
    gsm_ss.ccbs_Feature  ccbs-Feature
        No value
    gsm_ss.chargingInformation  chargingInformation
        No value
    gsm_ss.clirSuppressionRejected  clirSuppressionRejected
        No value
    gsm_ss.cug_Index  cug-Index
        Unsigned 32-bit integer
    gsm_ss.dataCodingScheme  dataCodingScheme
        Byte array
        USSD_DataCodingScheme
    gsm_ss.decipheringKeys  decipheringKeys
        Byte array
    gsm_ss.deferredLocationEventType  deferredLocationEventType
        Byte array
    gsm_ss.deflectedToNumber  deflectedToNumber
        Byte array
        AddressString
    gsm_ss.deflectedToSubaddress  deflectedToSubaddress
        Byte array
        ISDN_SubaddressString
    gsm_ss.e1  e1
        Unsigned 32-bit integer
    gsm_ss.e2  e2
        Unsigned 32-bit integer
    gsm_ss.e3  e3
        Unsigned 32-bit integer
    gsm_ss.e4  e4
        Unsigned 32-bit integer
    gsm_ss.e5  e5
        Unsigned 32-bit integer
    gsm_ss.e6  e6
        Unsigned 32-bit integer
    gsm_ss.e7  e7
        Unsigned 32-bit integer
    gsm_ss.ect_CallState  ect-CallState
        Unsigned 32-bit integer
    gsm_ss.ect_Indicator  ect-Indicator
        No value
    gsm_ss.ganssAssistanceData  ganssAssistanceData
        Byte array
    gsm_ss.gpsAssistanceData  gpsAssistanceData
        Byte array
    gsm_ss.h_gmlc_address  h-gmlc-address
        Byte array
        GSN_Address
    gsm_ss.lcsClientExternalID  lcsClientExternalID
        No value
    gsm_ss.lcsClientName  lcsClientName
        No value
    gsm_ss.lcsCodeword  lcsCodeword
        No value
    gsm_ss.lcsRequestorID  lcsRequestorID
        No value
    gsm_ss.lcsServiceTypeID  lcsServiceTypeID
        Unsigned 32-bit integer
    gsm_ss.lcs_QoS  lcs-QoS
        No value
    gsm_ss.lengthInCharacters  lengthInCharacters
        Signed 32-bit integer
        INTEGER
    gsm_ss.locationEstimate  locationEstimate
        Byte array
        Ext_GeographicalInformation
    gsm_ss.locationMethod  locationMethod
        Unsigned 32-bit integer
    gsm_ss.locationType  locationType
        No value
    gsm_ss.locationUpdateRequest  locationUpdateRequest
        No value
    gsm_ss.mlc_Number  mlc-Number
        Byte array
        ISDN_AddressString
    gsm_ss.mo_lrShortCircuit  mo-lrShortCircuit
        No value
    gsm_ss.molr_Type  molr-Type
        Unsigned 32-bit integer
    gsm_ss.mpty_Indicator  mpty-Indicator
        No value
    gsm_ss.multicall_Indicator  multicall-Indicator
        Unsigned 32-bit integer
    gsm_ss.multiplePositioningProtocolPDUs  multiplePositioningProtocolPDUs
        Unsigned 32-bit integer
    gsm_ss.nameIndicator  nameIndicator
        No value
    gsm_ss.namePresentationAllowed  namePresentationAllowed
        No value
        NameSet
    gsm_ss.namePresentationRestricted  namePresentationRestricted
        No value
        NameSet
    gsm_ss.nameString  nameString
        Byte array
        USSD_String
    gsm_ss.nameUnavailable  nameUnavailable
        No value
    gsm_ss.notificationType  notificationType
        Unsigned 32-bit integer
        NotificationToMSUser
    gsm_ss.numberNotAvailableDueToInterworking  numberNotAvailableDueToInterworking
        No value
    gsm_ss.partyNumber  partyNumber
        Byte array
        ISDN_AddressString
    gsm_ss.partyNumberSubaddress  partyNumberSubaddress
        Byte array
        ISDN_SubaddressString
    gsm_ss.periodicLDRInfo  periodicLDRInfo
        No value
    gsm_ss.presentationAllowedAddress  presentationAllowedAddress
        No value
        RemotePartyNumber
    gsm_ss.presentationRestricted  presentationRestricted
        No value
    gsm_ss.presentationRestrictedAddress  presentationRestrictedAddress
        No value
        RemotePartyNumber
    gsm_ss.pseudonymIndicator  pseudonymIndicator
        No value
    gsm_ss.qoS  qoS
        No value
        LCS_QoS
    gsm_ss.rdn  rdn
        Unsigned 32-bit integer
    gsm_ss.referenceNumber  referenceNumber
        Byte array
        LCS_ReferenceNumber
    gsm_ss.reportingPLMNList  reportingPLMNList
        No value
    gsm_ss.sequenceNumber  sequenceNumber
        Unsigned 32-bit integer
    gsm_ss.ss_Code  ss-Code
        Unsigned 8-bit integer
    gsm_ss.ss_Notification  ss-Notification
        Byte array
    gsm_ss.ss_Status  ss-Status
        Byte array
    gsm_ss.supportedGADShapes  supportedGADShapes
        Byte array
    gsm_ss.suppressOA  suppressOA
        No value
    gsm_ss.suppressPrefCUG  suppressPrefCUG
        No value
    gsm_ss.terminationCause  terminationCause
        Unsigned 32-bit integer
    gsm_ss.uUS_Required  uUS-Required
        Boolean
        BOOLEAN
    gsm_ss.uUS_Service  uUS-Service
        Unsigned 32-bit integer
    gsm_ss.velocityEstimate  velocityEstimate
        Byte array
    gsm_ss.verificationResponse  verificationResponse
        Unsigned 32-bit integer

GSM Radiotap (gsmtap)

    gsmtap.antenna  Antenna Number
        Unsigned 8-bit integer
    gsmtap.arfcn  ARFCN
        Unsigned 16-bit integer
    gsmtap.burst_type  Burst Type
        Unsigned 8-bit integer
    gsmtap.chan_type  Channel Type
        Unsigned 8-bit integer
    gsmtap.frame_nr  GSM Frame Number
        Unsigned 32-bit integer
    gsmtap.hdr_len  Header Length
        Unsigned 8-bit integer
    gsmtap.sacch_l1.fpc  FPC
        Boolean
    gsmtap.sacch_l1.power_lev  MS power level
        Unsigned 8-bit integer
    gsmtap.sacch_l1.ta  Actual Timing Advance
        Unsigned 8-bit integer
    gsmtap.signal_dbm  Signal Level (dBm)
        Unsigned 8-bit integer
    gsmtap.snr_db  Signal/Noise Ratio (dB)
        Unsigned 8-bit integer
    gsmtap.sub_slot  Sub-Slot
        Unsigned 8-bit integer
    gsmtap.ts  Time Slot
        Unsigned 8-bit integer
    gsmtap.type  Payload Type
        Unsigned 8-bit integer
    gsmtap.uplink  Uplink
        Unsigned 16-bit integer
    gsmtap.version  Version
        Unsigned 8-bit integer

GSM SACCH (gsm_a_sacch)

    gsm_a.sacch_msg_rr_type  SACCH Radio Resources Management Message Type
        Unsigned 8-bit integer

GSM SMS TPDU (GSM 03.40) (gsm_sms)

    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.reassembled.length  Reassembled Short Message length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    gsm-sms.udh.mm.msg_id  Message identifier
        Unsigned 16-bit integer
        Identification of the message
    gsm-sms.udh.mm.msg_part  Message part number
        Unsigned 8-bit integer
        Message part (fragment) sequence number
    gsm-sms.udh.mm.msg_parts  Message parts
        Unsigned 8-bit integer
        Total number of message parts (fragments)
    gsm_sms.coding_group_bits2  Coding Group Bits
        Unsigned 8-bit integer
    gsm_sms.coding_group_bits4  Coding Group Bits
        Unsigned 8-bit integer
    gsm_sms.sms_text  SMS text
        String
        The text of the SMS
    gsm_sms.tp-da  TP-DA Digits
        String
        TP-Destination-Address Digits
    gsm_sms.tp-dcs  TP-DCS
        Unsigned 8-bit integer
        TP-Data-Coding-Scheme
    gsm_sms.tp-mms  TP-MMS
        Boolean
        TP-More-Messages-to-Send
    gsm_sms.tp-mr  TP-MR
        Unsigned 8-bit integer
        TP-Message-Reference
    gsm_sms.tp-mti  TP-MTI
        Unsigned 8-bit integer
        TP-Message-Type-Indicator (in the direction MS to SC)
    gsm_sms.tp-oa  TP-OA Digits
        String
        TP-Originating-Address Digits
    gsm_sms.tp-pid  TP-PID
        Unsigned 8-bit integer
        TP-Protocol-Identifier
    gsm_sms.tp-ra  TP-RA Digits
        String
        TP-Recipient-Address Digits
    gsm_sms.tp-rd  TP-RD
        Boolean
        TP-Reject-Duplicates
    gsm_sms.tp-rp  TP-RP
        Boolean
        TP-Reply-Path
    gsm_sms.tp-sri  TP-SRI
        Boolean
        TP-Status-Report-Indication
    gsm_sms.tp-srq  TP-SRQ
        Boolean
        TP-Status-Report-Qualifier
    gsm_sms.tp-srr  TP-SRR
        Boolean
        TP-Status-Report-Request
    gsm_sms.tp-udhi  TP-UDHI
        Boolean
        TP-User-Data-Header-Indicator
    gsm_sms.tp-vpf  TP-VPF
        Unsigned 8-bit integer
        TP-Validity-Period-Format

GSM Short Message Service User Data (gsm-sms-ud)

    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
    gsm-sms-ud.udh.ports.src  Source port
        Unsigned 8-bit integer

GSM Um Interface (gsm_um)

    gsm_um.arfcn  ARFCN
        Unsigned 16-bit integer
        Absolute radio frequency channel number
    gsm_um.bsic  BSIC
        Unsigned 8-bit integer
        Base station identity code
    gsm_um.channel  Channel
        NULL terminated string
    gsm_um.direction  Direction
        NULL terminated string
    gsm_um.error  Error
        Unsigned 8-bit integer
    gsm_um.frame  TDMA Frame
        Unsigned 32-bit integer
    gsm_um.l2_pseudo_len  L2 Pseudo Length
        Unsigned 8-bit integer
    gsm_um.timeshift  Timeshift
        Unsigned 16-bit integer

GSM over IP ip.access CCM sub-protocol (ipaccess)

    ipaccess.attr_string  String
        String
        String attribute
    ipaccess.attr_tag  Tag
        Unsigned 8-bit integer
        Attribute Tag
    ipaccess.msg_type  MessageType
        Unsigned 8-bit integer
        Type of ip.access messsage

GSM over IP protocol as used by ip.access (gsm_ipa)

    ipa.data_len  DataLen
        Unsigned 8-bit integer
        The length of the data (in bytes)
    ipa.protocol  Protocol
        Unsigned 8-bit integer
        The IPA Sub-Protocol

GSS-API Generic Security Service Application Program Interface (gss-api)

    gss-api.OID  OID
        String
        This is a GSS-API Object Identifier
    gss-api.reassembled.length  Reassembled GSSAPI length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    gss-api.reassembled_in  Reassembled In
        Frame number
        The frame where this pdu is reassembled
    gss-api.segment  GSSAPI Segment
        Frame number
    gss-api.segment.error  Defragmentation error
        Frame number
        Defragmentation error due to illegal fragments
    gss-api.segment.multipletails  Multiple tail fragments found
        Boolean
        Several tails were found when defragmenting the packet
    gss-api.segment.overlap  Fragment overlap
        Boolean
        Fragment overlaps with other fragments
    gss-api.segment.overlap.conflict  Conflicting data in fragment overlap
        Boolean
        Overlapping fragments contained conflicting data
    gss-api.segment.segments  GSSAPI Segments
        No value
    gss-api.segment.toolongfragment  Fragment too long
        Boolean
        Fragment contained data past end of packet

Gateway Load Balancing Protocol (glbp)

    glbp.auth.authlength  Authlength
        Unsigned 8-bit integer
    glbp.auth.authtype  Authtype
        Unsigned 8-bit integer
    glbp.auth.authunknown  Unknown auth value
        Byte array
    glbp.auth.md5chainhash  MD5-chain hash
        Byte array
    glbp.auth.md5chainindex  MD5-chain index
        Unsigned 32-bit integer
    glbp.auth.md5hash  MD5-string hash
        Byte array
    glbp.auth.plainpass  Plain pass
        String
    glbp.group  Group
        Unsigned 16-bit integer
    glbp.hello.addrlen  Address length
        Unsigned 8-bit integer
    glbp.hello.addrtype  Address type
        Unsigned 8-bit integer
    glbp.hello.helloint  Helloint
        Unsigned 32-bit integer
        Hello interval [msec]
    glbp.hello.holdint  Holdint
        Unsigned 32-bit integer
        Hold interval [msec]
    glbp.hello.priority  Priority
        Unsigned 8-bit integer
    glbp.hello.redirect  Redirect
        Unsigned 16-bit integer
        Redirect interval [sec]
    glbp.hello.timeout  Timeout
        Unsigned 16-bit integer
        Forwarder timeout interval [sec]
    glbp.hello.unknown10  Unknown1-0
        Byte array
    glbp.hello.unknown11  Unknown1-1
        Byte array
    glbp.hello.unknown12  Unknown1-2
        Byte array
    glbp.hello.unknown13  Unknown1-3
        Byte array
    glbp.hello.vgstate  VG state?
        Unsigned 8-bit integer
    glbp.hello.virtualipv4  Virtual IPv4
        IPv4 address
    glbp.hello.virtualipv6  Virtual IPv6
        IPv6 address
    glbp.hello.virtualunk  Virtual Unknown
        Byte array
    glbp.length  Length
        Unsigned 8-bit integer
    glbp.ownerid  Owner ID
        6-byte Hardware (MAC) Address
    glbp.reqresp.forwarder  Forwarder?
        Unsigned 8-bit integer
    glbp.reqresp.priority  Priority
        Unsigned 8-bit integer
    glbp.reqresp.unknown21  Unknown2-1
        Byte array
    glbp.reqresp.unknown22  Unknown2-2
        Byte array
    glbp.reqresp.vfstate  VF state?
        Unsigned 8-bit integer
    glbp.reqresp.virtualmac  Virtualmac
        6-byte Hardware (MAC) Address
    glbp.reqresp.weight  Weight
        Unsigned 8-bit integer
    glbp.tlv  TLV
        Protocol
    glbp.type  Type
        Unsigned 8-bit integer
    glbp.unknown.data  Unknown TLV data
        Byte array
    glbp.unknown1  Unknown1
        Unsigned 8-bit integer
    glbp.unknown2  Unknown2
        Byte array
    glbp.version  Version?
        Unsigned 8-bit integer

General Inter-ORB Protocol (giop)

    giop.TCKind  TypeCode enum
        Unsigned 32-bit integer
    giop.compressed  ZIOP
        Unsigned 8-bit integer
    giop.endianness  Endianness
        Unsigned 8-bit integer
    giop.exceptionid  Exception id
        String
    giop.flags  Message Flags
        Unsigned 8-bit integer
    giop.flags.fragment  Fragment
        Boolean
    giop.flags.little_endian  Little Endian
        Boolean
    giop.flags.ziop_enabled  ZIOP Enabled
        Boolean
    giop.flags.ziop_supported  ZIOP Supported
        Boolean
    giop.iiop.host  IIOP::Profile_host
        String
    giop.iiop.port  IIOP::Profile_port
        Unsigned 16-bit integer
    giop.iiop.scid  SCID
        Unsigned 32-bit integer
    giop.iiop.vscid  VSCID
        Unsigned 32-bit integer
    giop.iiop_vmaj  IIOP Major Version
        Unsigned 8-bit integer
    giop.iiop_vmin  IIOP Minor Version
        Unsigned 8-bit integer
    giop.iioptag  IIOP Component TAG
        Unsigned 32-bit integer
    giop.iortag  IOR Profile TAG
        Unsigned 8-bit integer
    giop.len  Message size
        Unsigned 32-bit integer
    giop.objektkey  Object Key
        Byte array
    giop.profid  Profile ID
        Unsigned 32-bit integer
    giop.replystatus  Reply status
        Unsigned 32-bit integer
    giop.repoid  Repository ID
        String
    giop.request_id  Request id
        Unsigned 32-bit integer
    giop.request_op  Request operation
        String
    giop.seqlen  Sequence Length
        Unsigned 32-bit integer
    giop.strlen  String Length
        Unsigned 32-bit integer
    giop.tcValueModifier  ValueModifier
        Signed 16-bit integer
    giop.tcVisibility  Visibility
        Signed 16-bit integer
    giop.tcboolean  TypeCode boolean data
        Boolean
    giop.tcchar  TypeCode char data
        Unsigned 8-bit integer
    giop.tccount  TypeCode count
        Unsigned 32-bit integer
    giop.tcdefault_used  default_used
        Signed 32-bit integer
    giop.tcdigits  Digits
        Unsigned 16-bit integer
    giop.tcdouble  TypeCode double data
        Double-precision floating point
    giop.tcenumdata  TypeCode enum data
        Unsigned 32-bit integer
    giop.tcfloat  TypeCode float data
        Double-precision floating point
    giop.tclength  Length
        Unsigned 32-bit integer
    giop.tclongdata  TypeCode long data
        Signed 32-bit integer
    giop.tcmaxlen  Maximum length
        Unsigned 32-bit integer
    giop.tcmemname  TypeCode member name
        String
    giop.tcname  TypeCode name
        String
    giop.tcoctet  TypeCode octet data
        Unsigned 8-bit integer
    giop.tcscale  Scale
        Signed 16-bit integer
    giop.tcshortdata  TypeCode short data
        Signed 16-bit integer
    giop.tcstring  TypeCode string data
        String
    giop.tculongdata  TypeCode ulong data
        Unsigned 32-bit integer
    giop.tcushortdata  TypeCode ushort data
        Unsigned 16-bit integer
    giop.type  Message type
        Unsigned 8-bit integer
    giop.typeid  IOR::type_id
        String

Generic Routing Encapsulation (gre)

    gre.3ggp2_di  Duration Indicator
        Boolean
    gre.3ggp2_fci  Flow Control Indicator
        Boolean
    gre.3ggp2_sdi  SDI/DOS
        Boolean
        Short Data Indicator(SDI)/Data Over Signaling (DOS)
    gre.ggp2_3ggp2_seg  Type
        Unsigned 16-bit integer
    gre.ggp2_attrib_id  Type
        Unsigned 8-bit integer
    gre.ggp2_attrib_length  Length
        Unsigned 8-bit integer
    gre.ggp2_flow_disc  Flow ID
        Byte array
    gre.key  GRE Key
        Unsigned 32-bit integer
    gre.proto  Protocol Type
        Unsigned 16-bit integer
        The protocol that is GRE encapsulated

GigE Vision Control Protocol (gvcp)

    gvcp.address  Address
        Unsigned 32-bit integer
    gvcp.address2  Address 2
        Unsigned 32-bit integer
    gvcp.data  Data
        Byte array
    gvcp.ether  Link layer address (ethernet)
        6-byte Hardware (MAC) Address
    gvcp.ip  IPv4 address
        IPv4 address
    gvcp.nbytes  Number of bytes
        Unsigned 32-bit integer
    gvcp.netmask  Netmask
        IPv4 address
    gvcp.nwritten  Number of registers written
        Unsigned 32-bit integer
    gvcp.opcode  GVCP Opcode
        Unsigned 16-bit integer
    gvcp.remainder  Remaining arguments
        Byte array
    gvcp.seqn  GVCP Sequence number
        Unsigned 16-bit integer
    gvcp.size  GVCP Payload bytes
        Unsigned 16-bit integer
    gvcp.type  GVCP Type
        Unsigned 16-bit integer
    gvcp.unkown16  2-byte unknown meaning
        Unsigned 16-bit integer
    gvcp.value  Value
        Unsigned 32-bit integer
    gvcp.value2  Value 2
        Unsigned 32-bit integer

Gigamon Header (gmhdr)

    gmhdr.etype  Type
        Unsigned 16-bit integer
        Ethertype
    gmhdr.generic  Generic Field
        Byte array
    gmhdr.len  Length
        Unsigned 16-bit integer
    gmhdr.pktsize  Original Packet Size
        Unsigned 16-bit integer
    gmhdr.srcport  Src Port
        Unsigned 24-bit integer
        Original Source Port
    gmhdr.srcport_bid  Box Id
        Unsigned 24-bit integer
        Original Source Box Id
    gmhdr.srcport_gid  Group Id
        Unsigned 24-bit integer
        Original Source Group Id
    gmhdr.srcport_pid  Port Id
        Unsigned 24-bit integer
        Original Source Port Id
    gmhdr.srcport_plfm  Platform Id
        Unsigned 24-bit integer
        Original Platform Id
    gmhdr.timestamp  Time Stamp
        Date/Time stamp
    gmhdr.trailer  Trailer
        Byte array
        GMHDR Trailer

Git Smart Protocol (git)

    git.data  Packet data
        Byte array
    git.length  Packet length
        Unsigned 16-bit integer
    git.terminator  Terminator packet
        Unsigned 16-bit integer

Gnutella Protocol (gnutella)

    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
        NULL terminated 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

H.248 3GPP (h2483gpp)

    h248.package_3GCSD  CSD Package
        Byte array
        Circuit Switched Data Package
    h248.package_3GCSD.actprot  Activate Protocol
        Byte array
        Activate the higher layer protocol
    h248.package_3GCSD.actprot.localpeer  Local Peer Role
        Unsigned 32-bit integer
        It is used to inform the modem whether it should act as originating or terminating peer
    h248.package_3GCSD.gsmchancod  GSM channel coding
        Byte array
        Channel information needed for GSM
    h248.package_3GCSD.plmnbc  PLMN Bearer Capability
        Byte array
        The PLMN Bearer Capability
    h248.package_3GCSD.protres  Protocol Negotiation Result
        Byte array
        This event is used to report the result of the protocol negotiation
    h248.package_3GCSD.protres.cause  Possible Failure Cause
        Unsigned 32-bit integer
        indicates the possible failure cause
    h248.package_3GCSD.protres.result  Negotiation Result
        Unsigned 32-bit integer
        reports whether the protocol negotiation has been successful
    h248.package_3GCSD.ratechg  Rate Change
        Byte array
        This event is used to report a rate change
    h248.package_3GCSD.ratechg.rate  New Rate
        Unsigned 32-bit integer
        reports the new rate for the termination
    h248.package_3GTFO  Tandem Free Operation
        Byte array
        This package defines events and properties for Tandem Free Operation (TFO) control
    h248.package_3GTFO.codec_modify  Optimal Codec Event
        Byte array
        The event is used to notify the MGC that TFO negotiation has resulted in an optimal codec type being proposed
    h248.package_3GTFO.codec_modify.optimalcodec  Optimal Codec Type
        Byte array
        indicates which is the proposed codec type for TFO
    h248.package_3GTFO.codeclist  TFO Codec List
        Byte array
        List of codecs for use in TFO protocol
    h248.package_3GTFO.distant_codec_list  Codec List Event
        Byte array
        The event is used to notify the MGC of the distant TFO partner's supported codec list
    h248.package_3GTFO.distant_codec_list.distlist  Distant Codec List
        Byte array
        indicates the codec list for TFO
    h248.package_3GTFO.status  TFO Status Event
        Byte array
        The event is used to notify the MGC that a TFO link has been established or broken
    h248.package_3GTFO.status.tfostatus  TFO Status
        Boolean
        reports whether TFO has been established or broken
    h248.package_3GTFO.tfoenable  TFO Activity Control
        Unsigned 32-bit integer
        Defines if TFO is enabled or not
    h248.package_3GUP.Mode  Mode
        Unsigned 32-bit integer
    h248.package_3GUP.delerrsdu  Delivery of erroneous SDUs
        Unsigned 32-bit integer
    h248.package_3GUP.initdir  Initialisation Direction
        Unsigned 32-bit integer
    h248.package_3GUP.interface  Interface
        Unsigned 32-bit integer
    h248.package_3GUP.upversions  UPversions
        Unsigned 32-bit integer

H.248 Annex C (h248c)

    h248.pkg.annexc.ACodec  ACodec
        Byte array
    h248.pkg.annexc.BIR  BIR
        Byte array
    h248.pkg.annexc.Mediatx  Mediatx
        Unsigned 32-bit integer
    h248.pkg.annexc.NSAP  NSAP
        Byte array
    h248.pkg.annexc.USI  USI
        Byte array
        User Service Information
    h248.pkg.annexc.a2pcdv  A2PCDV
        Unsigned 24-bit integer
        Acceptable 2 point CDV
    h248.pkg.annexc.aal1st  AAL1ST
        Unsigned 8-bit integer
        AAL1 subtype
    h248.pkg.annexc.aaltype  AALtype
        Unsigned 8-bit integer
        AAL Type
    h248.pkg.annexc.aclr  ACLR
        Unsigned 8-bit integer
        Acceptable Cell Loss Ratio (Q.2965.2 ATMF UNI 4.0)
    h248.pkg.annexc.addlayer3prot  addlayer3prot
        Unsigned 8-bit integer
        Additional User Information Layer 3 protocol
    h248.pkg.annexc.aesa  AESA
        Byte array
        ATM End System Address
    h248.pkg.annexc.alc  ALC
        Byte array
        AAL2 Link Characteristics
    h248.pkg.annexc.appcdv  APPCDV
        Unsigned 24-bit integer
        Acceptable Point to Point CDV
    h248.pkg.annexc.assign  llidnegot
        Unsigned 8-bit integer
        Assignor/Assignee
    h248.pkg.annexc.atc  ATC
        Unsigned 32-bit integer
        ATM Traffic Capability
    h248.pkg.annexc.bbtc  BBTC
        Unsigned 8-bit integer
        Broadband Transfer Capability
    h248.pkg.annexc.bcob  BCOB
        Unsigned 8-bit integer
        Broadband Bearer Class
    h248.pkg.annexc.bei  BEI
        Boolean
        Best Effort Indicator
    h248.pkg.annexc.bit_rate  Bit Rate
        Unsigned 32-bit integer
    h248.pkg.annexc.bmsdu  bmsdu
        Byte array
    h248.pkg.annexc.c2pcdv  C2PCDV
        Unsigned 24-bit integer
        Cumulative 2 point CDV
    h248.pkg.annexc.cbrr  CBRR
        Unsigned 8-bit integer
        CBR rate
    h248.pkg.annexc.ceetd  CEETD
        Unsigned 16-bit integer
        Cumulative End-to-End Transit Delay (Q.2965.2 ATMF UNI 4.0)
    h248.pkg.annexc.cid  CID
        Unsigned 32-bit integer
        Channel-Id
    h248.pkg.annexc.clc  CLC
        Byte array
        Close Logical Channel
    h248.pkg.annexc.clcack  CLCack
        Byte array
        Close Logical Channel Acknowledge
    h248.pkg.annexc.cppcdv  CPPCDV
        Unsigned 24-bit integer
        Cumulative Point to Point CDV
    h248.pkg.annexc.databits  databits
        Unsigned 8-bit integer
        Number of data bits
    h248.pkg.annexc.dialedn  Dialed Number
        Byte array
    h248.pkg.annexc.dialingn  Dialing Number
        Byte array
    h248.pkg.annexc.dlci  DLCI
        Unsigned 32-bit integer
        Data Link Connection ID (FR)
    h248.pkg.annexc.duplexmode  duplexmode
        Unsigned 8-bit integer
        Mode Duplex
    h248.pkg.annexc.echoci  ECHOCI
        Byte array
        Not used
    h248.pkg.annexc.ecm  ECM
        Unsigned 8-bit integer
        Error Correction Method
    h248.pkg.annexc.encrypt_key  Encrypt Key
        Unsigned 32-bit integer
        Encryption Key
    h248.pkg.annexc.encrypt_type  Encrypttype
        Byte array
        Encryption Type
    h248.pkg.annexc.fd  FD
        Boolean
        Frame Discard
    h248.pkg.annexc.flowcontrx  flowcontrx
        Unsigned 8-bit integer
        Flow Control on Reception
    h248.pkg.annexc.flowconttx  flowconttx
        Unsigned 8-bit integer
        Flow Control on Transmission
    h248.pkg.annexc.fmsdu  fmsdu
        Byte array
        FMSDU
    h248.pkg.annexc.gain  Gain
        Unsigned 32-bit integer
        Gain (dB)
    h248.pkg.annexc.h222  H222LogicalChannelParameters
        Byte array
    h248.pkg.annexc.h223  H223LogicalChannelParameters
        Byte array
    h248.pkg.annexc.h2250  H2250LogicalChannelParameters
        Byte array
    h248.pkg.annexc.inbandneg  inbandneg
        Unsigned 8-bit integer
        In-band/Out-band negotiation
    h248.pkg.annexc.intrate  UPPC
        Unsigned 8-bit integer
        Intermediate Rate
    h248.pkg.annexc.ipv4  IPv4
        IPv4 address
        IPv4 Address
    h248.pkg.annexc.ipv6  IPv6
        IPv6 address
        IPv6 Address
    h248.pkg.annexc.itc  ITC
        Unsigned 8-bit integer
        Information Transfer Capability
    h248.pkg.annexc.jitterbuf  JitterBuff
        Unsigned 32-bit integer
        Jitter Buffer Size (ms)
    h248.pkg.annexc.layer2prot  layer2prot
        Unsigned 8-bit integer
        Layer 2 protocol
    h248.pkg.annexc.layer3prot  layer3prot
        Unsigned 8-bit integer
        Layer 3 protocol
    h248.pkg.annexc.llidnegot  llidnegot
        Unsigned 8-bit integer
        Logical Link Identifier negotiation
    h248.pkg.annexc.maxcpssdu  Max CPS SDU
        Unsigned 8-bit integer
        Maximum Common Part Sublayer Service Data Unit size
    h248.pkg.annexc.mbs0  MBS0
        Unsigned 24-bit integer
        Maximum Burst Size for CLP=0
    h248.pkg.annexc.mbs1  MBS1
        Unsigned 24-bit integer
        Maximum Burst Size for CLP=1
    h248.pkg.annexc.media  Media
        Unsigned 32-bit integer
        Media Type
    h248.pkg.annexc.meetd  MEETD
        Unsigned 16-bit integer
        Maximum End-to-End Transit Delay (Q.2965.2 ATMF UNI 4.0)
    h248.pkg.annexc.modem  modem
        Unsigned 8-bit integer
        Modem Type
    h248.pkg.annexc.mult  Rate Multiplier
        Unsigned 8-bit integer
    h248.pkg.annexc.multiframe  multiframe
        Unsigned 8-bit integer
        Multiple Frame establishment support in datalink
    h248.pkg.annexc.nci  NCI
        Unsigned 8-bit integer
        Nature of Connection Indicator
    h248.pkg.annexc.negotiation  UPPC
        Unsigned 8-bit integer
        Negotiation
    h248.pkg.annexc.nicrx  nicrx
        Unsigned 8-bit integer
        Network independent clock on reception
    h248.pkg.annexc.nictx  nictx
        Unsigned 8-bit integer
        Network independent clock on transmission
    h248.pkg.annexc.num_of_channels  Number of Channels
        Unsigned 32-bit integer
    h248.pkg.annexc.olc  OLC
        Byte array
        Open Logical Channel
    h248.pkg.annexc.olcack  OLCack
        Byte array
        Open Logical Channel Acknowledge
    h248.pkg.annexc.olccnf  OLCcnf
        Byte array
        Open Logical Channel CNF
    h248.pkg.annexc.olcrej  OLCrej
        Byte array
        Open Logical Channel Reject
    h248.pkg.annexc.opmode  OPMODE
        Unsigned 8-bit integer
        Mode of operation
    h248.pkg.annexc.parity  parity
        Unsigned 8-bit integer
        Parity Information Bits
    h248.pkg.annexc.pcr0  PCR0
        Unsigned 24-bit integer
        Peak Cell Rate for CLP=0
    h248.pkg.annexc.pcr1  PCR1
        Unsigned 24-bit integer
        Peak Cell Rate for CLP=1
    h248.pkg.annexc.pfci  PFCI
        Unsigned 8-bit integer
        Partially Filled Cells Identifier
    h248.pkg.annexc.port  Port
        Unsigned 16-bit integer
    h248.pkg.annexc.porttype  PortType
        Unsigned 32-bit integer
        Port Type
    h248.pkg.annexc.ppt  PPT
        Unsigned 32-bit integer
        Primary Payload Type
    h248.pkg.annexc.qosclass  QosClass
        Unsigned 16-bit integer
        QoS Class (Q.2965.1)
    h248.pkg.annexc.rateadapthdr  rateadapthdr
        Unsigned 8-bit integer
        Rate Adaptation Header/No-Header
    h248.pkg.annexc.rtp_payload  RTP Payload type
        Unsigned 32-bit integer
        Payload type in RTP Profile
    h248.pkg.annexc.samplepp  Samplepp
        Unsigned 32-bit integer
    h248.pkg.annexc.sampling_rate  Sampling Rate
        Unsigned 32-bit integer
    h248.pkg.annexc.sc  Service Class
        Unsigned 32-bit integer
    h248.pkg.annexc.scr0  SCR0
        Unsigned 24-bit integer
        Sustained Cell Rate for CLP=0
    h248.pkg.annexc.scr1  SCR1
        Unsigned 24-bit integer
        Sustained Cell Rate for CLP=1
    h248.pkg.annexc.scri  SCRI
        Unsigned 8-bit integer
        Source Clock frequency Recovery Method
    h248.pkg.annexc.sdbt  SDBT
        Unsigned 16-bit integer
        Structured Data Transfer Blocksize
    h248.pkg.annexc.sdp_a  sdp_a
        String
        SDP A
    h248.pkg.annexc.sdp_b  sdp_b
        String
        SDP B
    h248.pkg.annexc.sdp_c  sdp_c
        String
        SDP C
    h248.pkg.annexc.sdp_e  sdp_e
        String
        SDP E
    h248.pkg.annexc.sdp_i  sdp_i
        String
        SDP I
    h248.pkg.annexc.sdp_k  sdp_k
        String
        SDP K
    h248.pkg.annexc.sdp_m  sdp_m
        String
        SDP M
    h248.pkg.annexc.sdp_o  sdp_o
        String
        SDP O
    h248.pkg.annexc.sdp_p  sdp_p
        String
        SDP P
    h248.pkg.annexc.sdp_r  sdp_r
        String
        SDP R
    h248.pkg.annexc.sdp_s  sdp_s
        String
        SDP S
    h248.pkg.annexc.sdp_t  sdp_t
        String
        SDP T
    h248.pkg.annexc.sdp_u  sdp_u
        String
        SDP U
    h248.pkg.annexc.sdp_v  sdp_v
        String
        SDP V
    h248.pkg.annexc.sdp_z  sdp_z
        String
        SDP Z
    h248.pkg.annexc.sid  SID
        Unsigned 32-bit integer
        Silence Insertion Descriptor
    h248.pkg.annexc.silence_supp  SilenceSupp
        Boolean
        Silence Suppression
    h248.pkg.annexc.sscs  sscs
        Byte array
    h248.pkg.annexc.stc  STC
        Unsigned 8-bit integer
        Susceptibility to Clipping
    h248.pkg.annexc.stopbits  stopbits
        Unsigned 8-bit integer
        Number of stop bits
    h248.pkg.annexc.sut  SUT
        Byte array
        Served User Transport
    h248.pkg.annexc.syncasync  SyncAsync
        Unsigned 8-bit integer
        Synchronous/Asynchronous
    h248.pkg.annexc.tci  TCI
        Boolean
        Test Connection Indicator
    h248.pkg.annexc.ti  TI
        Boolean
        Tagging Indicator
    h248.pkg.annexc.timer_cu  Timer CU
        Unsigned 32-bit integer
        Milliseconds to hold the  partially filled cell before sending
    h248.pkg.annexc.tmr  TMR
        Unsigned 8-bit integer
        Transmission Medium Requirement
    h248.pkg.annexc.tmsr  TMSR
        Unsigned 8-bit integer
        Transmission Medium Requirement Subrate
    h248.pkg.annexc.transmission_mode  Transmission Mode
        Unsigned 32-bit integer
    h248.pkg.annexc.transmode  TransMode
        Unsigned 8-bit integer
        Transfer Mode
    h248.pkg.annexc.transrate  TransRate
        Unsigned 8-bit integer
        Transfer Rate
    h248.pkg.annexc.uppc  UPPC
        Unsigned 8-bit integer
        User Plane Connection Configuration
    h248.pkg.annexc.userrate  Userrate
        Unsigned 8-bit integer
        User Rate
    h248.pkg.annexc.v76  V76LogicalChannelParameters
        Byte array
    h248.pkg.annexc.vci  VCI
        Unsigned 16-bit integer
        Virtual Circuit Identifier
    h248.pkg.annexc.vpi  VPI
        Unsigned 16-bit integer
        Virtual Path Identifier

H.248 Annex E (h248e)

    h248.pkg.al  Analog Line Supervision Package
        Byte array
    h248.pkg.al.ev.flashhook.mindur  Minimum duration in ms
        Unsigned 32-bit integer
    h248.pkg.al.ev.offhook.strict  strict
        Unsigned 8-bit integer
    h248.pkg.al.ev.onhook.init  init
        Boolean
    h248.pkg.al.ev.onhook.strict  strict
        Unsigned 8-bit integer
    h248.pkg.al.flashhook  flashhook
        Byte array
    h248.pkg.al.offhook  offhook
        Byte array
    h248.pkg.al.onhook  onhook
        Byte array
    h248.pkg.generic  Generic Package
        Byte array
    h248.pkg.generic.cause  Cause Event
        Byte array
    h248.pkg.generic.cause.failurecause  Generic Cause
        String
    h248.pkg.generic.cause.gencause  Generic Cause
        Unsigned 32-bit integer
    h248.pkg.generic.sc  Signal Completion
        Byte array
    h248.pkg.generic.sc.meth  Termination Method
        Unsigned 32-bit integer
    h248.pkg.generic.sc.rid  Request ID
        Unsigned 32-bit integer
    h248.pkg.generic.sc.sig_id  Signal Identity
        Byte array
    h248.pkg.generic.sc.slid  Signal List ID
        Unsigned 32-bit integer
    h248.pkg.rtp  RTP package
        Byte array
    h248.pkg.rtp.stat.ps  Packets Sent
        Unsigned 64-bit integer
    h248.pkg.tdmc  TDM Circuit Package
        Byte array
    h248.pkg.tdmc.ec  Echo Cancellation
        Boolean
    h248.pkg.tdmc.gain  Gain
        Unsigned 32-bit integer

H.248 MEGACO (h248)

    h248.ActionReply  ActionReply
        No value
    h248.ActionRequest  ActionRequest
        No value
    h248.AmmDescriptor  AmmDescriptor
        Unsigned 32-bit integer
    h248.AuditReturnParameter  AuditReturnParameter
        Unsigned 32-bit integer
    h248.CommandReply  CommandReply
        Unsigned 32-bit integer
    h248.CommandRequest  CommandRequest
        No value
    h248.ContextIDinList  ContextIDinList
        Unsigned 32-bit integer
    h248.EventParamValue  EventParamValue
        Byte array
    h248.EventParameter  EventParameter
        No value
    h248.EventSpec  EventSpec
        No value
    h248.IndAudPropertyParm  IndAudPropertyParm
        No value
    h248.IndAudStreamDescriptor  IndAudStreamDescriptor
        No value
    h248.IndAuditParameter  IndAuditParameter
        Unsigned 32-bit integer
    h248.ModemType  ModemType
        Unsigned 32-bit integer
    h248.ObservedEvent  ObservedEvent
        No value
    h248.PackagesItem  PackagesItem
        No value
    h248.PropertyGroup  PropertyGroup
        Unsigned 32-bit integer
    h248.PropertyID  PropertyID
        Byte array
    h248.PropertyParm  PropertyParm
        No value
    h248.RequestedEvent  RequestedEvent
        No value
    h248.SCreasonValueOctetStr  SCreasonValueOctetStr
        Byte array
    h248.SecondRequestedEvent  SecondRequestedEvent
        No value
    h248.SigParamValue  SigParamValue
        Byte array
    h248.SigParameter  SigParameter
        No value
    h248.Signal  Signal
        No value
    h248.SignalRequest  SignalRequest
        Unsigned 32-bit integer
    h248.StatisticsParameter  StatisticsParameter
        No value
    h248.StreamDescriptor  StreamDescriptor
        No value
    h248.TerminationID  TerminationID
        No value
    h248.TopologyRequest  TopologyRequest
        No value
    h248.Transaction  Transaction
        Unsigned 32-bit integer
    h248.TransactionAck  TransactionAck
        No value
    h248.Value_item  Value item
        Byte array
        OCTET_STRING
    h248.WildcardField  WildcardField
        Byte array
    h248.actionReplies  actionReplies
        Unsigned 32-bit integer
        SEQUENCE_OF_ActionReply
    h248.actions  actions
        Unsigned 32-bit integer
        SEQUENCE_OF_ActionRequest
    h248.ad  ad
        Byte array
        AuthData
    h248.addReply  addReply
        No value
    h248.addReq  addReq
        No value
    h248.address  address
        IPv4 address
        OCTET_STRING_SIZE_4
    h248.andAUDITSelect  andAUDITSelect
        No value
    h248.auditCapReply  auditCapReply
        Unsigned 32-bit integer
    h248.auditCapRequest  auditCapRequest
        No value
    h248.auditDescriptor  auditDescriptor
        No value
    h248.auditPropertyToken  auditPropertyToken
        Unsigned 32-bit integer
        SEQUENCE_OF_IndAuditParameter
    h248.auditResult  auditResult
        No value
    h248.auditResultTermList  auditResultTermList
        No value
        TermListAuditResult
    h248.auditToken  auditToken
        Byte array
    h248.auditValueReply  auditValueReply
        Unsigned 32-bit integer
    h248.auditValueReplyV1  auditValueReplyV1
        No value
    h248.auditValueRequest  auditValueRequest
        No value
    h248.authHeader  authHeader
        No value
        AuthenticationHeader
    h248.command  command
        Unsigned 32-bit integer
    h248.commandReply  commandReply
        Unsigned 32-bit integer
        SEQUENCE_OF_CommandReply
    h248.commandRequests  commandRequests
        Unsigned 32-bit integer
        SEQUENCE_OF_CommandRequest
    h248.contectAuditResult  contectAuditResult
        No value
        TerminationID
    h248.contextAttrAuditReq  contextAttrAuditReq
        No value
    h248.contextAuditResult  contextAuditResult
        Unsigned 32-bit integer
        TerminationIDList
    h248.contextId  contextId
        Unsigned 32-bit integer
        Context ID
    h248.contextList  contextList
        Unsigned 32-bit integer
        SEQUENCE_OF_ContextIDinList
    h248.contextProp  contextProp
        Unsigned 32-bit integer
        SEQUENCE_OF_PropertyParm
    h248.contextPropAud  contextPropAud
        Unsigned 32-bit integer
        SEQUENCE_OF_IndAudPropertyParm
    h248.contextReply  contextReply
        No value
        ContextRequest
    h248.contextRequest  contextRequest
        No value
    h248.ctx  Context
        Unsigned 32-bit integer
    h248.ctx.cmd  Command in Frame
        Frame number
    h248.ctx.term  Termination
        String
    h248.ctx.term.bir  BIR
        String
    h248.ctx.term.nsap  NSAP
        String
    h248.ctx.term.type  Type
        Unsigned 32-bit integer
    h248.data  data
        Byte array
        OCTET_STRING
    h248.date  date
        String
        IA5String_SIZE_8
    h248.descriptors  descriptors
        Unsigned 32-bit integer
        SEQUENCE_OF_AmmDescriptor
    h248.deviceName  deviceName
        String
        PathName
    h248.digitMapBody  digitMapBody
        String
        IA5String
    h248.digitMapDescriptor  digitMapDescriptor
        No value
    h248.digitMapName  digitMapName
        Byte array
    h248.digitMapToken  digitMapToken
        Boolean
    h248.digitMapValue  digitMapValue
        No value
    h248.direction  direction
        Unsigned 32-bit integer
        SignalDirection
    h248.domainName  domainName
        No value
    h248.duration  duration
        Unsigned 32-bit integer
        INTEGER_0_65535
    h248.durationTimer  durationTimer
        Unsigned 32-bit integer
        INTEGER_0_99
    h248.emergency  emergency
        Boolean
        BOOLEAN
    h248.emptyDescriptors  emptyDescriptors
        No value
        AuditDescriptor
    h248.error  error
        No value
        ErrorDescriptor
    h248.errorCode  errorCode
        Unsigned 32-bit integer
        ErrorDescriptor/errorCode
    h248.errorDescriptor  errorDescriptor
        No value
    h248.errorText  errorText
        String
    h248.evParList  evParList
        Unsigned 32-bit integer
        SEQUENCE_OF_EventParameter
    h248.eventAction  eventAction
        No value
        RequestedActions
    h248.eventBufferControl  eventBufferControl
        No value
    h248.eventBufferDescriptor  eventBufferDescriptor
        Unsigned 32-bit integer
    h248.eventBufferToken  eventBufferToken
        Boolean
    h248.eventDM  eventDM
        Unsigned 32-bit integer
    h248.eventList  eventList
        Unsigned 32-bit integer
        SEQUENCE_OF_RequestedEvent
    h248.eventName  eventName
        Byte array
        PkgdName
    h248.eventParList  eventParList
        Unsigned 32-bit integer
        SEQUENCE_OF_EventParameter
    h248.eventParamValue  eventParamValue
        Unsigned 32-bit integer
        EventParamValues
    h248.eventParameterName  eventParameterName
        Byte array
    h248.eventParamterName  eventParamterName
        Byte array
        Name
    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
        IA5String_SIZE_8
    h248.extraInfo  extraInfo
        Unsigned 32-bit integer
        EventPar_extraInfo
    h248.firstAck  firstAck
        Unsigned 32-bit integer
        TransactionId
    h248.h221NonStandard  h221NonStandard
        No value
    h248.id  id
        Unsigned 32-bit integer
        INTEGER_0_65535
    h248.iepscallind  iepscallind
        Boolean
        Iepscallind_BOOL
    h248.immAckRequired  immAckRequired
        No value
    h248.indauddigitMapDescriptor  indauddigitMapDescriptor
        No value
    h248.indaudeventBufferDescriptor  indaudeventBufferDescriptor
        No value
    h248.indaudeventsDescriptor  indaudeventsDescriptor
        No value
    h248.indaudmediaDescriptor  indaudmediaDescriptor
        No value
    h248.indaudpackagesDescriptor  indaudpackagesDescriptor
        No value
    h248.indaudsignalsDescriptor  indaudsignalsDescriptor
        Unsigned 32-bit integer
    h248.indaudstatisticsDescriptor  indaudstatisticsDescriptor
        No value
    h248.intersigDelay  intersigDelay
        Unsigned 32-bit integer
        INTEGER_0_65535
    h248.ip4Address  ip4Address
        No value
    h248.ip6Address  ip6Address
        No value
    h248.keepActive  keepActive
        Boolean
        BOOLEAN
    h248.lastAck  lastAck
        Unsigned 32-bit integer
        TransactionId
    h248.localControlDescriptor  localControlDescriptor
        No value
        IndAudLocalControlDescriptor
    h248.localDescriptor  localDescriptor
        No value
        IndAudLocalRemoteDescriptor
    h248.longTimer  longTimer
        Unsigned 32-bit integer
        INTEGER_0_99
    h248.mId  mId
        Unsigned 32-bit integer
    h248.manufacturerCode  manufacturerCode
        Unsigned 32-bit integer
        INTEGER_0_65535
    h248.mediaDescriptor  mediaDescriptor
        No value
    h248.mediaToken  mediaToken
        Boolean
    h248.mess  mess
        No value
        Message
    h248.messageBody  messageBody
        Unsigned 32-bit integer
    h248.messageError  messageError
        No value
        ErrorDescriptor
    h248.modReply  modReply
        No value
    h248.modReq  modReq
        No value
    h248.modemDescriptor  modemDescriptor
        No value
    h248.modemToken  modemToken
        Boolean
    h248.moveReply  moveReply
        No value
    h248.moveReq  moveReq
        No value
    h248.mpl  mpl
        Unsigned 32-bit integer
        SEQUENCE_OF_PropertyParm
    h248.mtl  mtl
        Unsigned 32-bit integer
        SEQUENCE_OF_ModemType
    h248.mtpAddress  mtpAddress
        Byte array
    h248.mtpaddress.ni  NI
        Unsigned 32-bit integer
    h248.mtpaddress.pc  PC
        Unsigned 32-bit integer
    h248.multiStream  multiStream
        Unsigned 32-bit integer
        SEQUENCE_OF_IndAudStreamDescriptor
    h248.muxDescriptor  muxDescriptor
        No value
    h248.muxToken  muxToken
        Boolean
    h248.muxType  muxType
        Unsigned 32-bit integer
    h248.name  name
        String
        IA5String
    h248.neverNotify  neverNotify
        No value
    h248.nonStandardData  nonStandardData
        No value
    h248.nonStandardIdentifier  nonStandardIdentifier
        Unsigned 32-bit integer
    h248.notifyBehaviour  notifyBehaviour
        Unsigned 32-bit integer
    h248.notifyCompletion  notifyCompletion
        Byte array
    h248.notifyImmediate  notifyImmediate
        No value
    h248.notifyRegulated  notifyRegulated
        No value
        RegulatedEmbeddedDescriptor
    h248.notifyReply  notifyReply
        No value
    h248.notifyReq  notifyReq
        No value
    h248.object  object
        Object Identifier
        OBJECT_IDENTIFIER
    h248.observedEventLst  observedEventLst
        Unsigned 32-bit integer
        SEQUENCE_OF_ObservedEvent
    h248.observedEventsDescriptor  observedEventsDescriptor
        No value
    h248.observedEventsToken  observedEventsToken
        Boolean
    h248.onInterruptByEvent  onInterruptByEvent
        Boolean
    h248.onInterruptByNewSignalDescr  onInterruptByNewSignalDescr
        Boolean
    h248.onIteration  onIteration
        Boolean
    h248.onTimeOut  onTimeOut
        Boolean
    h248.oneStream  oneStream
        No value
        IndAudStreamParms
    h248.optional  optional
        No value
    h248.orAUDITSelect  orAUDITSelect
        No value
    h248.otherReason  otherReason
        Boolean
    h248.packageName  packageName
        Byte array
        Name
    h248.packageVersion  packageVersion
        Unsigned 32-bit integer
        INTEGER_0_99
    h248.package_bcp.BNCChar  BNCChar
        Unsigned 32-bit integer
    h248.package_eventid  Event ID
        Unsigned 16-bit integer
        Parameter ID
    h248.package_name  Package
        Unsigned 16-bit integer
    h248.package_paramid  Parameter ID
        Unsigned 16-bit integer
    h248.package_signalid  Signal ID
        Unsigned 16-bit integer
        Parameter ID
    h248.packagesDescriptor  packagesDescriptor
        Unsigned 32-bit integer
    h248.packagesToken  packagesToken
        Boolean
    h248.pkg.unknown  Unknown Package
        Byte array
    h248.pkg.unknown.evt  Unknown Event
        Byte array
    h248.pkg.unknown.param  Parameter
        Byte array
    h248.pkg.unknown.sig  Unknown Signal
        Byte array
    h248.pkgdName  pkgdName
        Byte array
    h248.portNumber  portNumber
        Unsigned 32-bit integer
        INTEGER_0_65535
    h248.priority  priority
        Unsigned 32-bit integer
        INTEGER_0_15
    h248.profileName  profileName
        String
        IA5String_SIZE_1_67
    h248.propGroupID  propGroupID
        Unsigned 32-bit integer
        INTEGER_0_65535
    h248.propGrps  propGrps
        Unsigned 32-bit integer
        IndAudPropertyGroup
    h248.propertyName  propertyName
        Byte array
    h248.propertyParms  propertyParms
        Unsigned 32-bit integer
        SEQUENCE_OF_IndAudPropertyParm
    h248.range  range
        Boolean
        BOOLEAN
    h248.relation  relation
        Unsigned 32-bit integer
    h248.remoteDescriptor  remoteDescriptor
        No value
        IndAudLocalRemoteDescriptor
    h248.requestID  requestID
        Unsigned 32-bit integer
    h248.requestId  requestId
        Unsigned 32-bit integer
    h248.reserveGroup  reserveGroup
        No value
    h248.reserveValue  reserveValue
        No value
    h248.resetEventsDescriptor  resetEventsDescriptor
        No value
    h248.secParmIndex  secParmIndex
        Byte array
        SecurityParmIndex
    h248.secondEvent  secondEvent
        No value
        SecondEventsDescriptor
    h248.segmentNumber  segmentNumber
        Unsigned 32-bit integer
    h248.segmentReply  segmentReply
        No value
    h248.segmentationComplete  segmentationComplete
        No value
    h248.selectLogic  selectLogic
        Unsigned 32-bit integer
    h248.selectemergency  selectemergency
        Boolean
        BOOLEAN
    h248.selectiepscallind  selectiepscallind
        Boolean
        BOOLEAN
    h248.selectpriority  selectpriority
        Unsigned 32-bit integer
        INTEGER_0_15
    h248.seqNum  seqNum
        Byte array
        SequenceNum
    h248.seqSigList  seqSigList
        No value
        IndAudSeqSigList
    h248.serviceChangeAddress  serviceChangeAddress
        Unsigned 32-bit integer
    h248.serviceChangeDelay  serviceChangeDelay
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h248.serviceChangeIncompleteFlag  serviceChangeIncompleteFlag
        No value
    h248.serviceChangeInfo  serviceChangeInfo
        No value
        AuditDescriptor
    h248.serviceChangeMethod  serviceChangeMethod
        Unsigned 32-bit integer
    h248.serviceChangeMgcId  serviceChangeMgcId
        Unsigned 32-bit integer
        MId
    h248.serviceChangeParms  serviceChangeParms
        No value
        ServiceChangeParm
    h248.serviceChangeProfile  serviceChangeProfile
        No value
    h248.serviceChangeReason  serviceChangeReason
        Unsigned 32-bit integer
        SCreasonValue
    h248.serviceChangeReasonstr  ServiceChangeReasonStr
        String
        h248.IA5String
    h248.serviceChangeReply  serviceChangeReply
        No value
    h248.serviceChangeReq  serviceChangeReq
        No value
        ServiceChangeRequest
    h248.serviceChangeResParms  serviceChangeResParms
        No value
        ServiceChangeResParm
    h248.serviceChangeResult  serviceChangeResult
        Unsigned 32-bit integer
    h248.serviceChangeVersion  serviceChangeVersion
        Unsigned 32-bit integer
        INTEGER_0_99
    h248.serviceState  serviceState
        No value
    h248.serviceStateSel  serviceStateSel
        Unsigned 32-bit integer
        ServiceState
    h248.shortTimer  shortTimer
        Unsigned 32-bit integer
        INTEGER_0_99
    h248.sigParList  sigParList
        Unsigned 32-bit integer
        SEQUENCE_OF_SigParameter
    h248.sigParameterName  sigParameterName
        Byte array
    h248.sigType  sigType
        Unsigned 32-bit integer
        SignalType
    h248.signal  signal
        No value
        IndAudSignal
    h248.signalList  signalList
        No value
        IndAudSignal
    h248.signalName  signalName
        Byte array
        PkgdName
    h248.signalRequestID  signalRequestID
        Unsigned 32-bit integer
        RequestID
    h248.signal_name  Package and Signal name
        Unsigned 32-bit integer
        Package
    h248.signalsDescriptor  signalsDescriptor
        Unsigned 32-bit integer
    h248.signalsToken  signalsToken
        Boolean
    h248.startTimer  startTimer
        Unsigned 32-bit integer
        INTEGER_0_99
    h248.statName  statName
        Byte array
        PkgdName
    h248.statValue  statValue
        Unsigned 32-bit integer
    h248.statisticsDescriptor  statisticsDescriptor
        Unsigned 32-bit integer
    h248.statsToken  statsToken
        Boolean
    h248.streamID  streamID
        Unsigned 32-bit integer
    h248.streamMode  streamMode
        No value
    h248.streamModeSel  streamModeSel
        Unsigned 32-bit integer
        StreamMode
    h248.streamParms  streamParms
        No value
        IndAudStreamParms
    h248.streams  streams
        Unsigned 32-bit integer
        IndAudMediaDescriptorStreams
    h248.sublist  sublist
        Boolean
        BOOLEAN
    h248.subtractReply  subtractReply
        No value
    h248.subtractReq  subtractReq
        No value
    h248.t35CountryCode1  t35CountryCode1
        Unsigned 32-bit integer
        INTEGER_0_255
    h248.t35CountryCode2  t35CountryCode2
        Unsigned 32-bit integer
        INTEGER_0_255
    h248.t35Extension  t35Extension
        Unsigned 32-bit integer
        INTEGER_0_255
    h248.term.wildcard.level  Wildcarding Level
        Unsigned 8-bit integer
    h248.term.wildcard.mode  Wildcard Mode
        Unsigned 8-bit integer
    h248.term.wildcard.pos  Wildcarding Position
        Unsigned 8-bit integer
    h248.termList  termList
        Unsigned 32-bit integer
        SEQUENCE_OF_TerminationID
    h248.termStateDescr  termStateDescr
        No value
        IndAudTerminationStateDescriptor
    h248.terminationAudit  terminationAudit
        Unsigned 32-bit integer
    h248.terminationAuditResult  terminationAuditResult
        Unsigned 32-bit integer
        TerminationAudit
    h248.terminationFrom  terminationFrom
        No value
        TerminationID
    h248.terminationID  terminationID
        Unsigned 32-bit integer
        TerminationIDList
    h248.terminationTo  terminationTo
        No value
        TerminationID
    h248.time  time
        String
        IA5String_SIZE_8
    h248.timeNotation  timeNotation
        No value
    h248.timeStamp  timeStamp
        No value
        TimeNotation
    h248.timestamp  timestamp
        No value
        TimeNotation
    h248.topology  topology
        No value
    h248.topologyDirection  topologyDirection
        Unsigned 32-bit integer
    h248.topologyDirectionExtension  topologyDirectionExtension
        Unsigned 32-bit integer
    h248.topologyReq  topologyReq
        Unsigned 32-bit integer
    h248.transactionError  transactionError
        No value
        ErrorDescriptor
    h248.transactionId  transactionId
        Unsigned 32-bit integer
    h248.transactionPending  transactionPending
        No value
    h248.transactionReply  transactionReply
        No value
    h248.transactionRequest  transactionRequest
        No value
    h248.transactionResponseAck  transactionResponseAck
        Unsigned 32-bit integer
    h248.transactionResult  transactionResult
        Unsigned 32-bit integer
    h248.transactions  transactions
        Unsigned 32-bit integer
        SEQUENCE_OF_Transaction
    h248.value  value
        Unsigned 32-bit integer
        SEQUENCE_OF_PropertyID
    h248.value_item  value item
        Byte array
        OCTET_STRING
    h248.version  version
        Unsigned 32-bit integer
    h248.wildcard  wildcard
        Unsigned 32-bit integer
        SEQUENCE_OF_WildcardField
    h248.wildcardReturn  wildcardReturn
        No value

H.248 Q.1950 Annex A (h248q1950)

    h248.pkg.BCP  BCP (Bearer characteristics package)
        Byte array
    h248.pkg.BNCCT  BNCCT (Bearer network connection cut-through package)
        Byte array
    h248.pkg.BT  BT (Bearer control Tunneling)
        Byte array
    h248.pkg.BT.BIT  Bearer Information Transport
        Byte array
    h248.pkg.BT.TIND  tind (Tunnel INDication)
        Byte array
    h248.pkg.BT.TunOpt  Tunnelling Options
        Unsigned 32-bit integer
    h248.pkg.GB  GB (Generic bearer connection)
        Byte array
    h248.pkg.GB.BNCChang  BNCChange
        Byte array
        This event occurs whenever a change to a Bearer Network connection occurs
    h248.pkg.GB.BNCChang.EstBNC  Type
        Byte array
        This signal triggers the bearer control function to send bearer establishment signalling
    h248.pkg.GB.BNCChang.RelBNC  RelBNC
        Byte array
        This signal triggers the bearer control function to send bearer release
    h248.pkg.GB.BNCChang.RelBNC.Failurecause  Failurecause
        Byte array
        The Release Cause is the value generated by the Released equipment
    h248.pkg.GB.BNCChang.RelBNC.Generalcause  Generalcause
        Unsigned 32-bit integer
        This indicates the general reason for the Release
    h248.pkg.GB.BNCChang.Type  Type
        Unsigned 32-bit integer
    h248.pkg.RI  RI (Reuse idle package)
        Byte array
    h248.pkg.bcg  bcg (Basic call progress tones generator with directionality)
        Byte array
    h248.pkg.bcg.bbt  bbt (Busy tone)
        Unsigned 8-bit integer
    h248.pkg.bcg.bcr  bcr (Call ringing tone)
        Unsigned 8-bit integer
    h248.pkg.bcg.bct  bct (Congestion tone)
        Unsigned 8-bit integer
    h248.pkg.bcg.bcw  bcw (Call waiting tone)
        Unsigned 8-bit integer
    h248.pkg.bcg.bdt  bdt (Dial Tone)
        Unsigned 8-bit integer
    h248.pkg.bcg.bpt  bpt (Payphone recognition tone)
        Unsigned 8-bit integer
    h248.pkg.bcg.bpy  bpy (Pay tone)
        Unsigned 8-bit integer
    h248.pkg.bcg.brt  brt (Ringing tone)
        Unsigned 8-bit integer
    h248.pkg.bcg.bsit  bsit (Special information tone)
        Unsigned 8-bit integer
    h248.pkg.bcg.bwt  bwt (Warning tone)
        Unsigned 8-bit integer
    h248.pkg.bcp.bncchar  BNCChar (BNC Characteristics)
        Unsigned 32-bit integer
        BNC Characteristics
    h248.pkg.bcp.bncct  Bearer network connection cut-through capability
        Unsigned 32-bit integer
        This property allows the MGC to ask the MG when the cut through of a bearer will occur, early or late.
    h248.pkg.bcp.btd  btd (Tone Direction)
        Unsigned 32-bit integer
    h248.pkg.bcp.rii  Reuse Idle Indication
        Unsigned 32-bit integer
        This property indicates that the provided bearer network connection relates to an Idle Bearer.

H.248.10 (h248chp)

    h248.chp.mgcon  MGCon
        Byte array
        This event occurs when the MG requires that the MGC start or finish load reduction.
    h248.chp.mgcon.reduction  Reduction
        Unsigned 32-bit integer
        Percentage of the load that the MGC is requested to block

H.248.7 (h248an)

    h248.an.apf  Fixed Announcement Play
        Byte array
        Initiates the play of a fixed announcement
    h248.an.apf.an  Announcement name
        Unsigned 32-bit integer
    h248.an.apf.av  Announcement Variant
        String
    h248.an.apf.di  Announcement Direction
        Unsigned 32-bit integer
    h248.an.apf.noc  Number of cycles
        Unsigned 32-bit integer
    h248.an.apv  Fixed Announcement Play
        Byte array
        Initiates the play of a fixed announcement
    h248.an.apv.an  Announcement name
        Unsigned 32-bit integer
    h248.an.apv.av  Announcement Variant
        String
    h248.an.apv.di  Announcement Direction
        Unsigned 32-bit integer
    h248.an.apv.noc  Number of cycles
        Unsigned 32-bit integer
    h248.an.apv.num  Number
        Unsigned 32-bit integer
    h248.an.apv.sp  Specific parameters
        String
    h248.an.apv.spi  Specific parameters interpretation
        Unsigned 32-bit integer

H.263 RTP Payload header (RFC2190) (rfc2190)

    rfc2190.advanced_prediction  Advanced prediction option
        Boolean
        Advanced Prediction option for current picture
    rfc2190.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.
    rfc2190.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.
    rfc2190.ftype  F
        Boolean
        Indicates the mode of the payload header (MODE A or B/C)
    rfc2190.gobn  GOB Number
        Unsigned 8-bit integer
        GOB number in effect at the start of the packet.
    rfc2190.hmv1  Horizontal motion vector 1
        Unsigned 8-bit integer
        Horizontal motion vector predictor for the first MB in this packet
    rfc2190.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.
    rfc2190.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.
    rfc2190.pbframes  p/b frame
        Boolean
        Optional PB-frames mode as defined by H.263 (MODE C)
    rfc2190.picture_coding_type  Inter-coded frame
        Boolean
        Picture coding type, intra-coded (false) or inter-coded (true)
    rfc2190.quant  Quantizer
        Unsigned 8-bit integer
        Quantization value for the first MB coded at the starting of the packet.
    rfc2190.r  Reserved field
        Unsigned 8-bit integer
        Reserved field that should contain zeroes
    rfc2190.rr  Reserved field 2
        Unsigned 16-bit integer
        Reserved field that should contain zeroes
    rfc2190.sbit  Start bit position
        Unsigned 8-bit integer
        Start bit position specifies number of most significant bits that shall be ignored in the first data byte.
    rfc2190.srcformat  SRC format
        Unsigned 8-bit integer
        Source format specifies the resolution of the current picture.
    rfc2190.syntax_based_arithmetic  Syntax-based arithmetic coding
        Boolean
        Syntax-based Arithmetic Coding option for current picture
    rfc2190.tr  Temporal Reference for P frames
        Unsigned 8-bit integer
        Temporal Reference for the P frame as defined by H.263
    rfc2190.trb  Temporal Reference for B frames
        Unsigned 8-bit integer
        Temporal Reference for the B frame as defined by H.263
    rfc2190.unrestricted_motion_vector  Motion vector
        Boolean
        Unrestricted Motion Vector option for current picture
    rfc2190.vmv1  Vertical motion vector 1
        Unsigned 8-bit integer
        Vertical motion vector predictor for the first MB in this packet
    rfc2190.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.

H.264 (h264)

    h264.AdditionalModesSupported  AdditionalModesSupported
        Unsigned 8-bit integer
    h264.ProfileIOP  ProfileIOP
        Unsigned 8-bit integer
    h264.add_mode_sup  Additional Modes Supported
        Unsigned 8-bit integer
    h264.add_mode_sup.rcdo  Reduced Complexity Decoding Operation (RCDO) support
        Boolean
    h264.aspect_ratio_idc  aspect_ratio_idc
        Unsigned 8-bit integer
    h264.aspect_ratio_info_present_flag  aspect_ratio_info_present_flag
        Unsigned 8-bit integer
    h264.bit_depth_chroma_minus8  bit_depth_chroma_minus8
        Unsigned 32-bit integer
    h264.bit_depth_luma_minus8  bit_depth_luma_minus8
        Unsigned 32-bit integer
    h264.bit_rate_scale  bit_rate_scale
        Unsigned 8-bit integer
    h264.bit_rate_value_minus1  bit_rate_value_minus1
        Unsigned 32-bit integer
    h264.bitstream_restriction_flag  bitstream_restriction_flag
        Unsigned 8-bit integer
    h264.cbr_flag  cbr_flag
        Unsigned 8-bit integer
    h264.chroma_format_id  chroma_format_id
        Unsigned 32-bit integer
    h264.chroma_loc_info_present_flag  chroma_loc_info_present_flag
        Unsigned 8-bit integer
    h264.chroma_qp_index_offset  chroma_qp_index_offset
        Signed 32-bit integer
    h264.chroma_sample_loc_type_bottom_field  chroma_sample_loc_type_bottom_field
        Unsigned 32-bit integer
    h264.chroma_sample_loc_type_top_field  chroma_sample_loc_type_top_field
        Unsigned 32-bit integer
    h264.colour_description_present_flag  colour_description_present_flag
        Unsigned 8-bit integer
    h264.colour_primaries  colour_primaries
        Unsigned 8-bit integer
    h264.constrained_intra_pred_flag  constrained_intra_pred_flag
        Unsigned 8-bit integer
    h264.constraint_set0_flag  Constraint_set0_flag
        Unsigned 8-bit integer
    h264.constraint_set1_flag  Constraint_set1_flag
        Unsigned 8-bit integer
    h264.constraint_set2_flag  Constraint_set2_flag
        Unsigned 8-bit integer
    h264.constraint_set3_flag  Constraint_set3_flag
        Unsigned 8-bit integer
    h264.cpb_cnt_minus1  cpb_cnt_minus1
        Unsigned 32-bit integer
    h264.cpb_removal_delay_length_minus1  cpb_removal_delay_length_minus1
        Unsigned 8-bit integer
    h264.cpb_size_scale  cpb_size_scale
        Unsigned 8-bit integer
    h264.cpb_size_value_minus1  cpb_size_value_minus1
        Unsigned 32-bit integer
    h264.deblocking_filter_control_present_flag  deblocking_filter_control_present_flag
        Unsigned 8-bit integer
    h264.delta_pic_order_always_zero_flag  delta_pic_order_always_zero_flag
        Unsigned 8-bit integer
    h264.direct_8x8_inference_flag  direct_8x8_inference_flag
        Unsigned 8-bit integer
    h264.dpb_output_delay_length_minus11  dpb_output_delay_length_minus11
        Unsigned 8-bit integer
    h264.end.bit  End bit
        Boolean
    h264.entropy_coding_mode_flag  entropy_coding_mode_flag
        Unsigned 8-bit integer
    h264.f  F bit
        Boolean
    h264.first_mb_in_slice  first_mb_in_slice
        Unsigned 32-bit integer
    h264.fixed_frame_rate_flag  fixed_frame_rate_flag
        Unsigned 8-bit integer
    h264.forbidden.bit  Forbidden bit
        Unsigned 8-bit integer
    h264.forbidden_zero_bit  Forbidden_zero_bit
        Unsigned 8-bit integer
    h264.frame_crop_bottom_offset  frame_crop_bottom_offset
        Unsigned 32-bit integer
    h264.frame_crop_left_offset  frame_crop_left_offset
        Unsigned 32-bit integer
    h264.frame_crop_right_offset  frame_crop_left_offset
        Unsigned 32-bit integer
    h264.frame_crop_top_offset  frame_crop_top_offset
        Unsigned 32-bit integer
    h264.frame_cropping_flag  frame_cropping_flag
        Unsigned 8-bit integer
    h264.frame_mbs_only_flag  frame_mbs_only_flag
        Unsigned 8-bit integer
    h264.frame_num  frame_num
        Unsigned 8-bit integer
    h264.gaps_in_frame_num_value_allowed_flag  gaps_in_frame_num_value_allowed_flag
        Unsigned 8-bit integer
    h264.initial_cpb_removal_delay_length_minus1  initial_cpb_removal_delay_length_minus1
        Unsigned 8-bit integer
    h264.level_id  Level_id
        Unsigned 8-bit integer
    h264.log2_max_frame_num_minus4  log2_max_frame_num_minus4
        Unsigned 32-bit integer
    h264.log2_max_mv_length_vertical  log2_max_mv_length_vertical
        Unsigned 32-bit integer
    h264.log2_max_pic_order_cnt_lsb_minus4  log2_max_pic_order_cnt_lsb_minus4
        Unsigned 32-bit integer
    h264.low_delay_hrd_flag  low_delay_hrd_flag
        Unsigned 8-bit integer
    h264.matrix_coefficients  matrix_coefficients
        Unsigned 8-bit integer
    h264.max_bits_per_mb_denom  max_bits_per_mb_denom
        Unsigned 32-bit integer
    h264.max_bytes_per_pic_denom  max_bytes_per_pic_denom
        Unsigned 32-bit integer
    h264.max_dec_frame_buffering  max_dec_frame_buffering
        Unsigned 32-bit integer
    h264.max_mv_length_horizontal  max_mv_length_horizontal
        Unsigned 32-bit integer
    h264.mb_adaptive_frame_field_flag  mb_adaptive_frame_field_flag
        Unsigned 8-bit integer
    h264.motion_vectors_over_pic_boundaries_flag  motion_vectors_over_pic_boundaries_flag
        Unsigned 32-bit integer
    h264.nal_hrd_parameters_present_flag  nal_hrd_parameters_present_flag
        Unsigned 8-bit integer
    h264.nal_nri  Nal_ref_idc (NRI)
        Unsigned 8-bit integer
    h264.nal_ref_idc  Nal_ref_idc
        Unsigned 8-bit integer
    h264.nal_unit  NAL unit
        Byte array
    h264.nal_unit_hdr  Type
        Unsigned 8-bit integer
    h264.nal_unit_type  Nal_unit_type
        Unsigned 8-bit integer
    h264.num_ref_frames  num_ref_frames
        Unsigned 32-bit integer
    h264.num_ref_frames_in_pic_order_cnt_cycle  num_ref_frames_in_pic_order_cnt_cycle
        Unsigned 32-bit integer
    h264.num_ref_idx_l0_active_minus1  num_ref_idx_l0_active_minus1
        Unsigned 32-bit integer
    h264.num_ref_idx_l1_active_minus1  num_ref_idx_l1_active_minus1
        Unsigned 32-bit integer
    h264.num_reorder_frames  num_reorder_frames
        Unsigned 32-bit integer
    h264.num_slice_groups_minus1  num_slice_groups_minus1
        Unsigned 32-bit integer
    h264.num_units_in_tick  num_units_in_tick
        Unsigned 32-bit integer
    h264.offset_for_non_ref_pic  offset_for_non_ref_pic
        Signed 32-bit integer
    h264.offset_for_ref_frame  offset_for_ref_frame
        Signed 32-bit integer
    h264.offset_for_top_to_bottom_field  offset_for_top_to_bottom_field
        Signed 32-bit integer
    h264.overscan_appropriate_flag  overscan_appropriate_flag
        Unsigned 8-bit integer
    h264.overscan_info_present_flag  overscan_info_present_flag
        Unsigned 8-bit integer
    h264.par.constraint_set0_flag  constraint_set0_flag
        Boolean
    h264.par.constraint_set1_flag  constraint_set1_flag
        Boolean
    h264.par.constraint_set2_flag  constraint_set2_flag
        Boolean
    h264.payloadsize  PayloadSize
        Unsigned 32-bit integer
    h264.payloadtype  payloadType
        Unsigned 32-bit integer
    h264.pic_height_in_map_units_minus1  pic_height_in_map_units_minus1
        Unsigned 32-bit integer
    h264.pic_init_qp_minus26  pic_init_qp_minus26
        Signed 32-bit integer
    h264.pic_init_qs_minus26  pic_init_qs_minus26
        Signed 32-bit integer
    h264.pic_order_cnt_type  pic_order_cnt_type
        Unsigned 32-bit integer
    h264.pic_order_present_flag  pic_order_present_flag
        Unsigned 8-bit integer
    h264.pic_parameter_set_id  pic_parameter_set_id
        Unsigned 32-bit integer
    h264.pic_scaling_matrix_present_flag  pic_scaling_matrix_present_flag
        Unsigned 8-bit integer
    h264.pic_struct_present_flag  pic_struct_present_flag
        Unsigned 8-bit integer
    h264.pic_width_in_mbs_minus1  pic_width_in_mbs_minus1
        Unsigned 32-bit integer
    h264.profile  Profile
        Byte array
    h264.profile.base  Baseline Profile
        Boolean
    h264.profile.ext  Extended Profile.
        Boolean
    h264.profile.high  High Profile
        Boolean
    h264.profile.high10  High 10 Profile
        Boolean
    h264.profile.high4_2_2  High 4:2:2 Profile
        Boolean
    h264.profile.high4_4_4  High 4:4:4 Profile
        Boolean
    h264.profile.main  Main Profile
        Boolean
    h264.profile_idc  Profile_idc
        Unsigned 8-bit integer
    h264.qpprime_y_zero_transform_bypass_flag  qpprime_y_zero_transform_bypass_flag
        Unsigned 32-bit integer
    h264.rbsp_stop_bit  rbsp_stop_bit
        Unsigned 8-bit integer
    h264.rbsp_trailing_bits  rbsp_trailing_bits
        Unsigned 8-bit integer
    h264.redundant_pic_cnt_present_flag  redundant_pic_cnt_present_flag
        Unsigned 8-bit integer
    h264.reserved_zero_4bits  Reserved_zero_4bits
        Unsigned 8-bit integer
    h264.residual_colour_transform_flag  residual_colour_transform_flag
        Unsigned 8-bit integer
    h264.sar_height  sar_height
        Unsigned 16-bit integer
    h264.sar_width  sar_width
        Unsigned 16-bit integer
    h264.second_chroma_qp_index_offset  second_chroma_qp_index_offset
        Signed 32-bit integer
    h264.seq_parameter_set_id  seq_parameter_set_id
        Unsigned 32-bit integer
    h264.seq_scaling_matrix_present_flag  seq_scaling_matrix_present_flag
        Unsigned 32-bit integer
    h264.slice_group_map_type  slice_group_map_type
        Unsigned 32-bit integer
    h264.slice_id  slice_id
        Unsigned 32-bit integer
    h264.slice_type  slice_type
        Unsigned 32-bit integer
    h264.start.bit  Start bit
        Boolean
    h264.time_offset_length  time_offset_length
        Unsigned 8-bit integer
    h264.time_scale  time_scale
        Unsigned 32-bit integer
    h264.timing_info_present_flag  timing_info_present_flag
        Unsigned 8-bit integer
    h264.transfer_characteristics  transfer_characteristics
        Unsigned 8-bit integer
    h264.transform_8x8_mode_flag  transform_8x8_mode_flag
        Unsigned 8-bit integer
    h264.vcl_hrd_parameters_present_flag  vcl_hrd_parameters_present_flag
        Unsigned 8-bit integer
    h264.video_format  video_format
        Unsigned 8-bit integer
    h264.video_full_range_flag  video_full_range_flag
        Unsigned 8-bit integer
    h264.video_signal_type_present_flag  video_signal_type_present_flag
        Unsigned 8-bit integer
    h264.vui_parameters_present_flag  vui_parameters_present_flag
        Unsigned 8-bit integer
    h264.weighted_bipred_idc  weighted_bipred_idc
        Unsigned 8-bit integer
    h264.weighted_pred_flag  weighted_pred_flag
        Unsigned 8-bit integer

H.282 Remote Device Control (rdc)

    h282.ControlAttribute  ControlAttribute
        Unsigned 32-bit integer
    h282.DeviceAttribute  DeviceAttribute
        Unsigned 32-bit integer
    h282.DeviceEvent  DeviceEvent
        Unsigned 32-bit integer
    h282.DeviceEventIdentifier  DeviceEventIdentifier
        Unsigned 32-bit integer
    h282.DeviceProfile  DeviceProfile
        No value
    h282.NonCollapsingCapabilities  NonCollapsingCapabilities
        Unsigned 32-bit integer
    h282.NonCollapsingCapabilities_item  NonCollapsingCapabilities item
        No value
    h282.RDCPDU  RDCPDU
        Unsigned 32-bit integer
    h282.StatusAttribute  StatusAttribute
        Unsigned 32-bit integer
    h282.StatusAttributeIdentifier  StatusAttributeIdentifier
        Unsigned 32-bit integer
    h282.StreamProfile  StreamProfile
        No value
    h282.absolute  absolute
        No value
    h282.accessoryTextLabel  accessoryTextLabel
        Unsigned 32-bit integer
    h282.accessoryTextLabel_item  accessoryTextLabel item
        No value
    h282.activate  activate
        No value
    h282.active  active
        No value
    h282.applicationData  applicationData
        Unsigned 32-bit integer
    h282.audioInputs  audioInputs
        No value
        DeviceInputs
    h282.audioInputsSupported  audioInputsSupported
        No value
        AudioInputsCapability
    h282.audioSinkFlag  audioSinkFlag
        Boolean
        BOOLEAN
    h282.audioSourceFlag  audioSourceFlag
        Boolean
        BOOLEAN
    h282.auto  auto
        No value
    h282.autoSlideShowFinished  autoSlideShowFinished
        No value
    h282.autoSlideShowFinishedSupported  autoSlideShowFinishedSupported
        No value
    h282.automatic  automatic
        No value
    h282.availableDevices  availableDevices
        Unsigned 32-bit integer
    h282.availableDevices_item  availableDevices item
        No value
    h282.backLight  backLight
        Unsigned 32-bit integer
    h282.backLightModeSupported  backLightModeSupported
        No value
    h282.backLightSettingSupported  backLightSettingSupported
        Unsigned 32-bit integer
        MaxBacklight
    h282.calibrateWhiteBalance  calibrateWhiteBalance
        No value
    h282.calibrateWhiteBalanceSupported  calibrateWhiteBalanceSupported
        No value
    h282.camera  camera
        No value
    h282.cameraFilterSupported  cameraFilterSupported
        No value
        CameraFilterCapability
    h282.cameraFocusedToLimit  cameraFocusedToLimit
        Unsigned 32-bit integer
    h282.cameraFocusedToLimitSupported  cameraFocusedToLimitSupported
        No value
    h282.cameraLensSupported  cameraLensSupported
        No value
        CameraLensCapability
    h282.cameraPanSpeedSupported  cameraPanSpeedSupported
        No value
        CameraPanSpeedCapability
    h282.cameraPannedToLimit  cameraPannedToLimit
        Unsigned 32-bit integer
    h282.cameraPannedToLimitSupported  cameraPannedToLimitSupported
        No value
    h282.cameraTiltSpeedSupported  cameraTiltSpeedSupported
        No value
        CameraTiltSpeedCapability
    h282.cameraTiltedToLimit  cameraTiltedToLimit
        Unsigned 32-bit integer
    h282.cameraTiltedToLimitSupported  cameraTiltedToLimitSupported
        No value
    h282.cameraZoomedToLimit  cameraZoomedToLimit
        Unsigned 32-bit integer
    h282.cameraZoomedToLimitSupported  cameraZoomedToLimitSupported
        No value
    h282.capabilityID  capabilityID
        Unsigned 32-bit integer
    h282.captureImage  captureImage
        No value
    h282.captureImageSupported  captureImageSupported
        No value
    h282.clearCameraLens  clearCameraLens
        No value
    h282.clearCameraLensSupported  clearCameraLensSupported
        No value
    h282.configurableAudioInputs  configurableAudioInputs
        No value
        DeviceInputs
    h282.configurableAudioInputsSupported  configurableAudioInputsSupported
        No value
        AudioInputsCapability
    h282.configurableVideoInputs  configurableVideoInputs
        No value
        DeviceInputs
    h282.configurableVideoInputsSupported  configurableVideoInputsSupported
        No value
        VideoInputsCapability
    h282.configureAudioInputs  configureAudioInputs
        No value
        DeviceInputs
    h282.configureDeviceEventsRequest  configureDeviceEventsRequest
        No value
    h282.configureDeviceEventsResponse  configureDeviceEventsResponse
        No value
    h282.configureVideoInputs  configureVideoInputs
        No value
        DeviceInputs
    h282.continue  continue
        No value
    h282.continuousFastForwardControl  continuousFastForwardControl
        Boolean
        BOOLEAN
    h282.continuousFastForwardSupported  continuousFastForwardSupported
        No value
    h282.continuousPlayBackMode  continuousPlayBackMode
        Boolean
        BOOLEAN
    h282.continuousPlayBackModeSupported  continuousPlayBackModeSupported
        No value
    h282.continuousRewindControl  continuousRewindControl
        Boolean
        BOOLEAN
    h282.continuousRewindSupported  continuousRewindSupported
        No value
    h282.controlAttributeList  controlAttributeList
        Unsigned 32-bit integer
        SET_SIZE_1_8_OF_ControlAttribute
    h282.currentAudioOutputMute  currentAudioOutputMute
        Unsigned 32-bit integer
    h282.currentAutoSlideDisplayTime  currentAutoSlideDisplayTime
        Unsigned 32-bit integer
    h282.currentBackLight  currentBackLight
        Unsigned 32-bit integer
    h282.currentBackLightMode  currentBackLightMode
        Unsigned 32-bit integer
        CurrentMode
    h282.currentCameraFilter  currentCameraFilter
        Unsigned 32-bit integer
        CurrentCameraFilterNumber
    h282.currentCameraLens  currentCameraLens
        Unsigned 32-bit integer
        CurrentCameraLensNumber
    h282.currentCameraPanSpeed  currentCameraPanSpeed
        Unsigned 32-bit integer
    h282.currentCameraTiltSpeed  currentCameraTiltSpeed
        Unsigned 32-bit integer
    h282.currentDay  currentDay
        Unsigned 32-bit integer
    h282.currentDeviceDate  currentDeviceDate
        No value
    h282.currentDeviceIsLocked  currentDeviceIsLocked
        No value
    h282.currentDevicePreset  currentDevicePreset
        Unsigned 32-bit integer
    h282.currentDeviceTime  currentDeviceTime
        No value
    h282.currentExternalLight  currentExternalLight
        Unsigned 32-bit integer
    h282.currentFocusMode  currentFocusMode
        Unsigned 32-bit integer
        CurrentMode
    h282.currentFocusPosition  currentFocusPosition
        Unsigned 32-bit integer
    h282.currentHour  currentHour
        Unsigned 32-bit integer
    h282.currentIrisMode  currentIrisMode
        Unsigned 32-bit integer
        CurrentMode
    h282.currentIrisPosition  currentIrisPosition
        Unsigned 32-bit integer
    h282.currentMinute  currentMinute
        Unsigned 32-bit integer
    h282.currentMonth  currentMonth
        Unsigned 32-bit integer
    h282.currentPanPosition  currentPanPosition
        Unsigned 32-bit integer
    h282.currentPlaybackSpeed  currentPlaybackSpeed
        Unsigned 32-bit integer
    h282.currentPointingMode  currentPointingMode
        Unsigned 32-bit integer
    h282.currentProgramDuration  currentProgramDuration
        No value
        ProgramDuration
    h282.currentSelectedProgram  currentSelectedProgram
        Unsigned 32-bit integer
    h282.currentSlide  currentSlide
        Unsigned 32-bit integer
    h282.currentTiltPosition  currentTiltPosition
        Unsigned 32-bit integer
    h282.currentWhiteBalance  currentWhiteBalance
        Unsigned 32-bit integer
    h282.currentWhiteBalanceMode  currentWhiteBalanceMode
        Unsigned 32-bit integer
        CurrentMode
    h282.currentYear  currentYear
        Unsigned 32-bit integer
    h282.currentZoomPosition  currentZoomPosition
        Unsigned 32-bit integer
    h282.currentdeviceState  currentdeviceState
        Unsigned 32-bit integer
    h282.currentstreamPlayerState  currentstreamPlayerState
        Unsigned 32-bit integer
    h282.data  data
        Byte array
        OCTET_STRING
    h282.day  day
        Unsigned 32-bit integer
    h282.deviceAlreadyLocked  deviceAlreadyLocked
        No value
    h282.deviceAttributeError  deviceAttributeError
        No value
    h282.deviceAttributeList  deviceAttributeList
        Unsigned 32-bit integer
        SET_OF_DeviceAttribute
    h282.deviceAttributeRequest  deviceAttributeRequest
        No value
    h282.deviceAttributeResponse  deviceAttributeResponse
        No value
    h282.deviceAvailabilityChanged  deviceAvailabilityChanged
        Boolean
        BOOLEAN
    h282.deviceAvailabilityChangedSupported  deviceAvailabilityChangedSupported
        No value
    h282.deviceClass  deviceClass
        Unsigned 32-bit integer
    h282.deviceControlRequest  deviceControlRequest
        No value
    h282.deviceDateSupported  deviceDateSupported
        No value
    h282.deviceEventIdentifierList  deviceEventIdentifierList
        Unsigned 32-bit integer
        SET_OF_DeviceEventIdentifier
    h282.deviceEventList  deviceEventList
        Unsigned 32-bit integer
        SET_SIZE_1_8_OF_DeviceEvent
    h282.deviceEventNotifyIndication  deviceEventNotifyIndication
        No value
    h282.deviceID  deviceID
        Unsigned 32-bit integer
    h282.deviceIdentifier  deviceIdentifier
        Unsigned 32-bit integer
        DeviceID
    h282.deviceIncompatible  deviceIncompatible
        No value
    h282.deviceList  deviceList
        Unsigned 32-bit integer
        SET_SIZE_0_127_OF_DeviceProfile
    h282.deviceLockChanged  deviceLockChanged
        Boolean
        BOOLEAN
    h282.deviceLockEnquireRequest  deviceLockEnquireRequest
        No value
    h282.deviceLockEnquireResponse  deviceLockEnquireResponse
        No value
    h282.deviceLockRequest  deviceLockRequest
        No value
    h282.deviceLockResponse  deviceLockResponse
        No value
    h282.deviceLockStateChangedSupported  deviceLockStateChangedSupported
        No value
    h282.deviceLockTerminatedIndication  deviceLockTerminatedIndication
        No value
    h282.deviceName  deviceName
        String
        TextString
    h282.devicePresetSupported  devicePresetSupported
        No value
        DevicePresetCapability
    h282.deviceState  deviceState
        Unsigned 32-bit integer
    h282.deviceStateSupported  deviceStateSupported
        No value
    h282.deviceStatusEnquireRequest  deviceStatusEnquireRequest
        No value
    h282.deviceStatusEnquireResponse  deviceStatusEnquireResponse
        No value
    h282.deviceTimeSupported  deviceTimeSupported
        No value
    h282.deviceUnavailable  deviceUnavailable
        No value
    h282.divisorFactors  divisorFactors
        Unsigned 32-bit integer
    h282.divisorFactors_item  divisorFactors item
        Unsigned 32-bit integer
        INTEGER_10_1000
    h282.down  down
        No value
    h282.eventsNotSupported  eventsNotSupported
        No value
    h282.externalCameraLightSupported  externalCameraLightSupported
        No value
        ExternalCameraLightCapability
    h282.far  far
        No value
    h282.fastForwarding  fastForwarding
        No value
    h282.filterNumber  filterNumber
        Unsigned 32-bit integer
        INTEGER_1_255
    h282.filterTextLabel  filterTextLabel
        Unsigned 32-bit integer
    h282.filterTextLabel_item  filterTextLabel item
        No value
    h282.focusContinuous  focusContinuous
        No value
    h282.focusContinuousSupported  focusContinuousSupported
        No value
    h282.focusDirection  focusDirection
        Unsigned 32-bit integer
    h282.focusImage  focusImage
        No value
    h282.focusImageSupported  focusImageSupported
        No value
    h282.focusModeSupported  focusModeSupported
        No value
    h282.focusPosition  focusPosition
        Signed 32-bit integer
    h282.focusPositionSupported  focusPositionSupported
        Unsigned 32-bit integer
        MinFocusPositionStepSize
    h282.getAudioInputs  getAudioInputs
        No value
    h282.getAudioOutputState  getAudioOutputState
        No value
    h282.getAutoSlideDisplayTime  getAutoSlideDisplayTime
        No value
    h282.getBackLight  getBackLight
        No value
    h282.getBackLightMode  getBackLightMode
        No value
    h282.getBacklightMode  getBacklightMode
        No value
    h282.getCameraFilter  getCameraFilter
        No value
    h282.getCameraLens  getCameraLens
        No value
    h282.getCameraPanSpeed  getCameraPanSpeed
        No value
    h282.getCameraTiltSpeed  getCameraTiltSpeed
        No value
    h282.getConfigurableAudioInputs  getConfigurableAudioInputs
        No value
    h282.getConfigurableVideoInputs  getConfigurableVideoInputs
        No value
    h282.getCurrentProgramDuration  getCurrentProgramDuration
        No value
    h282.getDeviceDate  getDeviceDate
        No value
    h282.getDeviceState  getDeviceState
        No value
    h282.getDeviceTime  getDeviceTime
        No value
    h282.getExternalLight  getExternalLight
        No value
    h282.getFocusMode  getFocusMode
        No value
    h282.getFocusPosition  getFocusPosition
        No value
    h282.getIrisMode  getIrisMode
        No value
    h282.getIrisPosition  getIrisPosition
        No value
    h282.getNonStandardStatus  getNonStandardStatus
        Unsigned 32-bit integer
        NonStandardIdentifier
    h282.getPanPosition  getPanPosition
        No value
    h282.getPlaybackSpeed  getPlaybackSpeed
        No value
    h282.getPointingMode  getPointingMode
        No value
    h282.getSelectedProgram  getSelectedProgram
        No value
    h282.getSelectedSlide  getSelectedSlide
        No value
    h282.getStreamPlayerState  getStreamPlayerState
        No value
    h282.getTiltPosition  getTiltPosition
        No value
    h282.getVideoInputs  getVideoInputs
        No value
    h282.getWhiteBalance  getWhiteBalance
        No value
    h282.getWhiteBalanceMode  getWhiteBalanceMode
        No value
    h282.getZoomPosition  getZoomPosition
        No value
    h282.getdevicePreset  getdevicePreset
        No value
    h282.gotoHomePosition  gotoHomePosition
        No value
    h282.gotoNormalPlayTimePoint  gotoNormalPlayTimePoint
        No value
        ProgramDuration
    h282.gotoNormalPlayTimePointSupported  gotoNormalPlayTimePointSupported
        No value
    h282.h221NonStandard  h221NonStandard
        Byte array
        H221NonStandardIdentifier
    h282.h221nonStandard  h221nonStandard
        Byte array
        H221NonStandardIdentifier
    h282.homePositionSupported  homePositionSupported
        No value
    h282.hour  hour
        Unsigned 32-bit integer
    h282.hours  hours
        Unsigned 32-bit integer
        INTEGER_0_24
    h282.inactive  inactive
        No value
    h282.indication  indication
        Unsigned 32-bit integer
        IndicationPDU
    h282.inputDevices  inputDevices
        Unsigned 32-bit integer
    h282.inputDevices_item  inputDevices item
        No value
    h282.instanceNumber  instanceNumber
        Unsigned 32-bit integer
        INTEGER_0_255
    h282.invalidStreamID  invalidStreamID
        No value
    h282.irisContinuousSupported  irisContinuousSupported
        No value
    h282.irisModeSupported  irisModeSupported
        No value
    h282.irisPosition  irisPosition
        Signed 32-bit integer
    h282.irisPositionSupported  irisPositionSupported
        Unsigned 32-bit integer
        MinIrisPositionStepSize
    h282.key  key
        Unsigned 32-bit integer
    h282.left  left
        No value
    h282.lensNumber  lensNumber
        Unsigned 32-bit integer
        INTEGER_1_255
    h282.lensTextLabel  lensTextLabel
        Byte array
        DeviceText
    h282.lightLabel  lightLabel
        Byte array
        DeviceText
    h282.lightNumber  lightNumber
        Unsigned 32-bit integer
        INTEGER_1_10
    h282.lightSource  lightSource
        No value
    h282.lightTextLabel  lightTextLabel
        Unsigned 32-bit integer
    h282.lightTextLabel_item  lightTextLabel item
        No value
    h282.lockFlag  lockFlag
        Boolean
        BOOLEAN
    h282.lockNotRequired  lockNotRequired
        No value
    h282.lockRequired  lockRequired
        No value
    h282.lockingNotSupported  lockingNotSupported
        No value
    h282.manual  manual
        No value
    h282.maxDown  maxDown
        Signed 32-bit integer
        INTEGER_M18000_0
    h282.maxLeft  maxLeft
        Signed 32-bit integer
        INTEGER_M18000_0
    h282.maxNumber  maxNumber
        Unsigned 32-bit integer
        PresetNumber
    h282.maxNumberOfFilters  maxNumberOfFilters
        Unsigned 32-bit integer
        INTEGER_2_255
    h282.maxNumberOfLens  maxNumberOfLens
        Unsigned 32-bit integer
        INTEGER_2_255
    h282.maxRight  maxRight
        Unsigned 32-bit integer
        INTEGER_0_18000
    h282.maxSpeed  maxSpeed
        Unsigned 32-bit integer
        CameraPanSpeed
    h282.maxUp  maxUp
        Unsigned 32-bit integer
        INTEGER_0_18000
    h282.microphone  microphone
        No value
    h282.microseconds  microseconds
        Unsigned 32-bit integer
        INTEGER_0_99999
    h282.minSpeed  minSpeed
        Unsigned 32-bit integer
        CameraPanSpeed
    h282.minStepSize  minStepSize
        Unsigned 32-bit integer
        INTEGER_1_18000
    h282.minute  minute
        Unsigned 32-bit integer
    h282.minutes  minutes
        Unsigned 32-bit integer
        INTEGER_0_59
    h282.mode  mode
        Unsigned 32-bit integer
    h282.month  month
        Unsigned 32-bit integer
    h282.multiplierFactors  multiplierFactors
        Unsigned 32-bit integer
    h282.multiplierFactors_item  multiplierFactors item
        Unsigned 32-bit integer
        INTEGER_10_1000
    h282.multiplyFactor  multiplyFactor
        Boolean
        BOOLEAN
    h282.mute  mute
        Boolean
        BOOLEAN
    h282.near  near
        No value
    h282.next  next
        No value
    h282.nextProgramSelect  nextProgramSelect
        Unsigned 32-bit integer
        SelectDirection
    h282.nextProgramSupported  nextProgramSupported
        No value
    h282.nonStandard  nonStandard
        Unsigned 32-bit integer
        Key
    h282.nonStandardAttributeSupported  nonStandardAttributeSupported
        No value
        NonStandardParameter
    h282.nonStandardControl  nonStandardControl
        No value
        NonStandardParameter
    h282.nonStandardData  nonStandardData
        No value
        NonStandardParameter
    h282.nonStandardDevice  nonStandardDevice
        Unsigned 32-bit integer
        NonStandardIdentifier
    h282.nonStandardEvent  nonStandardEvent
        No value
        NonStandardParameter
    h282.nonStandardIndication  nonStandardIndication
        No value
        NonStandardPDU
    h282.nonStandardRequest  nonStandardRequest
        No value
        NonStandardPDU
    h282.nonStandardResponse  nonStandardResponse
        No value
        NonStandardPDU
    h282.nonStandardStatus  nonStandardStatus
        No value
        NonStandardParameter
    h282.none  none
        No value
    h282.numberOfDeviceInputs  numberOfDeviceInputs
        Unsigned 32-bit integer
        INTEGER_2_64
    h282.numberOfDeviceRows  numberOfDeviceRows
        Unsigned 32-bit integer
        INTEGER_1_64
    h282.object  object
        Object Identifier
        OBJECT_IDENTIFIER
    h282.panContinuous  panContinuous
        No value
    h282.panContinuousSupported  panContinuousSupported
        No value
    h282.panDirection  panDirection
        Unsigned 32-bit integer
    h282.panPosition  panPosition
        Signed 32-bit integer
    h282.panPositionSupported  panPositionSupported
        No value
        PanPositionCapability
    h282.panViewSupported  panViewSupported
        No value
    h282.pause  pause
        No value
    h282.pauseSupported  pauseSupported
        No value
    h282.pausedOnPlay  pausedOnPlay
        No value
    h282.pausedOnRecord  pausedOnRecord
        No value
    h282.play  play
        Boolean
        BOOLEAN
    h282.playAutoSlideShow  playAutoSlideShow
        Unsigned 32-bit integer
        AutoSlideShowControl
    h282.playSlideShowSupported  playSlideShowSupported
        No value
    h282.playSupported  playSupported
        No value
    h282.playToNormalPlayTimePoint  playToNormalPlayTimePoint
        No value
        ProgramDuration
    h282.playToNormalPlayTimePointSupported  playToNormalPlayTimePointSupported
        No value
    h282.playbackSpeedSupported  playbackSpeedSupported
        No value
        PlayBackSpeedCapability
    h282.playing  playing
        No value
    h282.pointingModeSupported  pointingModeSupported
        No value
    h282.positioningMode  positioningMode
        Unsigned 32-bit integer
    h282.preset  preset
        Unsigned 32-bit integer
        PresetNumber
    h282.presetCapability  presetCapability
        Unsigned 32-bit integer
    h282.presetCapability_item  presetCapability item
        No value
    h282.presetNumber  presetNumber
        Unsigned 32-bit integer
    h282.presetTextLabel  presetTextLabel
        Byte array
        DeviceText
    h282.previous  previous
        No value
    h282.program  program
        Unsigned 32-bit integer
        ProgramNumber
    h282.programUnavailable  programUnavailable
        No value
    h282.readProgramDurationSupported  readProgramDurationSupported
        No value
    h282.readStreamPlayerStateSupported  readStreamPlayerStateSupported
        No value
    h282.record  record
        Boolean
        BOOLEAN
    h282.recordForDuration  recordForDuration
        No value
    h282.recordForDurationSupported  recordForDurationSupported
        No value
    h282.recordSupported  recordSupported
        No value
    h282.recording  recording
        No value
    h282.relative  relative
        No value
    h282.remoteControlFlag  remoteControlFlag
        Boolean
        BOOLEAN
    h282.request  request
        Unsigned 32-bit integer
        RequestPDU
    h282.requestAutoSlideShowFinished  requestAutoSlideShowFinished
        No value
    h282.requestCameraFocusedToLimit  requestCameraFocusedToLimit
        No value
    h282.requestCameraPannedToLimit  requestCameraPannedToLimit
        No value
    h282.requestCameraTiltedToLimit  requestCameraTiltedToLimit
        No value
    h282.requestCameraZoomedToLimit  requestCameraZoomedToLimit
        No value
    h282.requestDenied  requestDenied
        No value
    h282.requestDeviceAvailabilityChanged  requestDeviceAvailabilityChanged
        No value
    h282.requestDeviceLockChanged  requestDeviceLockChanged
        No value
    h282.requestHandle  requestHandle
        Unsigned 32-bit integer
        Handle
    h282.requestNonStandardEvent  requestNonStandardEvent
        Unsigned 32-bit integer
        NonStandardIdentifier
    h282.requestStreamPlayerProgramChange  requestStreamPlayerProgramChange
        No value
    h282.requestStreamPlayerStateChange  requestStreamPlayerStateChange
        No value
    h282.response  response
        Unsigned 32-bit integer
        ResponsePDU
    h282.result  result
        Unsigned 32-bit integer
    h282.rewinding  rewinding
        No value
    h282.right  right
        No value
    h282.scaleFactor  scaleFactor
        Unsigned 32-bit integer
        INTEGER_10_1000
    h282.searchBackwardsControl  searchBackwardsControl
        Boolean
        BOOLEAN
    h282.searchBackwardsSupported  searchBackwardsSupported
        No value
    h282.searchForwardsControl  searchForwardsControl
        Boolean
        BOOLEAN
    h282.searchForwardsSupported  searchForwardsSupported
        No value
    h282.searchingBackwards  searchingBackwards
        No value
    h282.searchingForwards  searchingForwards
        No value
    h282.seconds  seconds
        Unsigned 32-bit integer
        INTEGER_0_59
    h282.selectCameraFilter  selectCameraFilter
        Unsigned 32-bit integer
        CameraFilterNumber
    h282.selectCameraLens  selectCameraLens
        Unsigned 32-bit integer
        CameraLensNumber
    h282.selectExternalLight  selectExternalLight
        Unsigned 32-bit integer
    h282.selectNextSlide  selectNextSlide
        Unsigned 32-bit integer
        SelectDirection
    h282.selectNextSlideSupported  selectNextSlideSupported
        No value
    h282.selectProgram  selectProgram
        Unsigned 32-bit integer
        ProgramNumber
    h282.selectProgramSupported  selectProgramSupported
        Unsigned 32-bit integer
        MaxNumberOfPrograms
    h282.selectSlide  selectSlide
        Unsigned 32-bit integer
        SlideNumber
    h282.selectSlideSupported  selectSlideSupported
        Unsigned 32-bit integer
        MaxNumberOfSlides
    h282.setAudioOutputMute  setAudioOutputMute
        Boolean
        BOOLEAN
    h282.setAudioOutputStateSupported  setAudioOutputStateSupported
        No value
    h282.setAutoSlideDisplayTime  setAutoSlideDisplayTime
        Unsigned 32-bit integer
        AutoSlideDisplayTime
    h282.setBackLight  setBackLight
        Unsigned 32-bit integer
        BackLight
    h282.setBackLightMode  setBackLightMode
        Unsigned 32-bit integer
        Mode
    h282.setCameraPanSpeed  setCameraPanSpeed
        Unsigned 32-bit integer
        CameraPanSpeed
    h282.setCameraTiltSpeed  setCameraTiltSpeed
        Unsigned 32-bit integer
        CameraTiltSpeed
    h282.setDeviceDate  setDeviceDate
        No value
        DeviceDate
    h282.setDevicePreset  setDevicePreset
        No value
        DevicePreset
    h282.setDeviceState  setDeviceState
        Unsigned 32-bit integer
        DeviceState
    h282.setDeviceTime  setDeviceTime
        No value
        DeviceTime
    h282.setFocusMode  setFocusMode
        Unsigned 32-bit integer
        Mode
    h282.setFocusPosition  setFocusPosition
        No value
    h282.setIrisMode  setIrisMode
        Unsigned 32-bit integer
        Mode
    h282.setIrisPosition  setIrisPosition
        No value
    h282.setPanPosition  setPanPosition
        No value
    h282.setPanView  setPanView
        Signed 32-bit integer
        PanView
    h282.setPlaybackSpeed  setPlaybackSpeed
        No value
        PlaybackSpeed
    h282.setPointingMode  setPointingMode
        Unsigned 32-bit integer
        PointingToggle
    h282.setSlideDisplayTimeSupported  setSlideDisplayTimeSupported
        Unsigned 32-bit integer
        MaxSlideDisplayTime
    h282.setTiltPosition  setTiltPosition
        No value
    h282.setTiltView  setTiltView
        Signed 32-bit integer
        TiltView
    h282.setWhiteBalance  setWhiteBalance
        Unsigned 32-bit integer
        WhiteBalance
    h282.setWhiteBalanceMode  setWhiteBalanceMode
        Unsigned 32-bit integer
        Mode
    h282.setZoomMagnification  setZoomMagnification
        Unsigned 32-bit integer
        ZoomMagnification
    h282.setZoomPosition  setZoomPosition
        No value
    h282.slide  slide
        Unsigned 32-bit integer
        SlideNumber
    h282.slideProjector  slideProjector
        No value
    h282.slideShowModeSupported  slideShowModeSupported
        No value
    h282.sourceChangeEventIndication  sourceChangeEventIndication
        No value
    h282.sourceChangeFlag  sourceChangeFlag
        Boolean
        BOOLEAN
    h282.sourceCombiner  sourceCombiner
        No value
    h282.sourceEventNotify  sourceEventNotify
        Boolean
        BOOLEAN
    h282.sourceEventsRequest  sourceEventsRequest
        No value
    h282.sourceEventsResponse  sourceEventsResponse
        No value
    h282.sourceSelectRequest  sourceSelectRequest
        No value
    h282.sourceSelectResponse  sourceSelectResponse
        No value
    h282.speed  speed
        Unsigned 32-bit integer
        CameraPanSpeed
    h282.speedStepSize  speedStepSize
        Unsigned 32-bit integer
        CameraPanSpeed
    h282.standard  standard
        Unsigned 32-bit integer
        INTEGER_0_65535
    h282.start  start
        No value
    h282.state  state
        Unsigned 32-bit integer
        StreamPlayerState
    h282.statusAttributeIdentifierList  statusAttributeIdentifierList
        Unsigned 32-bit integer
        SET_SIZE_1_16_OF_StatusAttributeIdentifier
    h282.statusAttributeList  statusAttributeList
        Unsigned 32-bit integer
        SET_SIZE_1_16_OF_StatusAttribute
    h282.stop  stop
        No value
    h282.stopped  stopped
        No value
    h282.store  store
        No value
    h282.storeModeSupported  storeModeSupported
        Boolean
        BOOLEAN
    h282.streamID  streamID
        Unsigned 32-bit integer
    h282.streamIdentifier  streamIdentifier
        Unsigned 32-bit integer
        StreamID
    h282.streamList  streamList
        Unsigned 32-bit integer
        SET_SIZE_0_127_OF_StreamProfile
    h282.streamName  streamName
        String
        TextString
    h282.streamPlayerProgramChange  streamPlayerProgramChange
        Unsigned 32-bit integer
        ProgramNumber
    h282.streamPlayerProgramChangeSupported  streamPlayerProgramChangeSupported
        No value
    h282.streamPlayerRecorder  streamPlayerRecorder
        No value
    h282.streamPlayerStateChange  streamPlayerStateChange
        Unsigned 32-bit integer
        StreamPlayerState
    h282.streamPlayerStateChangeSupported  streamPlayerStateChangeSupported
        No value
    h282.successful  successful
        No value
    h282.telescopic  telescopic
        No value
    h282.tiltContinuous  tiltContinuous
        No value
    h282.tiltContinuousSupported  tiltContinuousSupported
        No value
    h282.tiltDirection  tiltDirection
        Unsigned 32-bit integer
    h282.tiltPosition  tiltPosition
        Signed 32-bit integer
    h282.tiltPositionSupported  tiltPositionSupported
        No value
        TiltPositionCapability
    h282.tiltViewSupported  tiltViewSupported
        No value
    h282.time  time
        Unsigned 32-bit integer
        AutoSlideDisplayTime
    h282.timeOut  timeOut
        Unsigned 32-bit integer
        INTEGER_50_1000
    h282.toggle  toggle
        No value
    h282.unknown  unknown
        No value
    h282.unknownDevice  unknownDevice
        No value
    h282.up  up
        No value
    h282.videoInputs  videoInputs
        No value
        DeviceInputs
    h282.videoInputsSupported  videoInputsSupported
        No value
        VideoInputsCapability
    h282.videoSinkFlag  videoSinkFlag
        Boolean
        BOOLEAN
    h282.videoSourceFlag  videoSourceFlag
        Boolean
        BOOLEAN
    h282.videoStreamFlag  videoStreamFlag
        Boolean
        BOOLEAN
    h282.whiteBalance  whiteBalance
        Unsigned 32-bit integer
    h282.whiteBalanceModeSupported  whiteBalanceModeSupported
        No value
    h282.whiteBalanceSettingSupported  whiteBalanceSettingSupported
        Unsigned 32-bit integer
        MaxWhiteBalance
    h282.wide  wide
        No value
    h282.year  year
        Unsigned 32-bit integer
    h282.zoomContinuous  zoomContinuous
        No value
    h282.zoomContinuousSupported  zoomContinuousSupported
        No value
    h282.zoomDirection  zoomDirection
        Unsigned 32-bit integer
    h282.zoomMagnificationSupported  zoomMagnificationSupported
        Unsigned 32-bit integer
        MinZoomMagnificationStepSize
    h282.zoomPosition  zoomPosition
        Signed 32-bit integer
    h282.zoomPositionSupported  zoomPositionSupported
        Unsigned 32-bit integer
        MinZoomPositionSetSize

H.283 Logical Channel Transport (lct)

    h283.LCTPDU  LCTPDU
        No value
    h283.NonStandardParameter  NonStandardParameter
        No value
    h283.ack  ack
        No value
    h283.announceReq  announceReq
        No value
    h283.announceResp  announceResp
        No value
    h283.data  data
        Byte array
        OCTET_STRING
    h283.dataType  dataType
        Unsigned 32-bit integer
    h283.deviceChange  deviceChange
        No value
    h283.deviceListReq  deviceListReq
        No value
    h283.deviceListResp  deviceListResp
        Unsigned 32-bit integer
    h283.dstAddr  dstAddr
        No value
        MTAddress
    h283.h221NonStandard  h221NonStandard
        No value
    h283.lctIndication  lctIndication
        Unsigned 32-bit integer
    h283.lctMessage  lctMessage
        Unsigned 32-bit integer
    h283.lctRequest  lctRequest
        Unsigned 32-bit integer
    h283.lctResponse  lctResponse
        Unsigned 32-bit integer
    h283.mAddress  mAddress
        Unsigned 32-bit integer
        INTEGER_0_65535
    h283.manufacturerCode  manufacturerCode
        Unsigned 32-bit integer
        INTEGER_0_65535
    h283.nonStandardIdentifier  nonStandardIdentifier
        Unsigned 32-bit integer
    h283.nonStandardMessage  nonStandardMessage
        No value
    h283.nonStandardParameters  nonStandardParameters
        Unsigned 32-bit integer
        SEQUENCE_OF_NonStandardParameter
    h283.object  object
        Object Identifier
        OBJECT_IDENTIFIER
    h283.pduType  pduType
        Unsigned 32-bit integer
    h283.rdcData  rdcData
        No value
    h283.rdcPDU  rdcPDU
        Unsigned 32-bit integer
    h283.reliable  reliable
        Boolean
        BOOLEAN
    h283.seqNumber  seqNumber
        Unsigned 32-bit integer
        INTEGER_0_65535
    h283.srcAddr  srcAddr
        No value
        MTAddress
    h283.t35CountryCode  t35CountryCode
        Unsigned 32-bit integer
        INTEGER_0_255
    h283.t35Extension  t35Extension
        Unsigned 32-bit integer
        INTEGER_0_255
    h283.tAddress  tAddress
        Unsigned 32-bit integer
        INTEGER_0_65535
    h283.timestamp  timestamp
        Unsigned 32-bit integer
        INTEGER_0_4294967295

H.323 (h323)

    h323.BackupCallSignalAddresses_item  BackupCallSignalAddresses item
        Unsigned 32-bit integer
    h323.RasTunnelledSignallingMessage  RasTunnelledSignallingMessage
        No value
    h323.RobustnessData  RobustnessData
        No value
    h323.alternateTransport  alternateTransport
        No value
        AlternateTransportAddresses
    h323.backupCallSignalAddresses  backupCallSignalAddresses
        Unsigned 32-bit integer
    h323.connectData  connectData
        No value
        Connect_RD
    h323.endpointGuid  endpointGuid
        Globally Unique Identifier
        GloballyUniqueIdentifier
    h323.fastStart  fastStart
        Unsigned 32-bit integer
    h323.fastStart_item  fastStart item
        Byte array
        OCTET_STRING
    h323.h245Address  h245Address
        Unsigned 32-bit integer
        TransportAddress
    h323.hasSharedRepository  hasSharedRepository
        No value
    h323.includeFastStart  includeFastStart
        No value
    h323.irrFrequency  irrFrequency
        Unsigned 32-bit integer
        INTEGER_1_65535
    h323.messageContent  messageContent
        Unsigned 32-bit integer
    h323.messageContent_item  messageContent item
        Byte array
        OCTET_STRING
    h323.nonStandardData  nonStandardData
        No value
        NonStandardParameter
    h323.rcfData  rcfData
        No value
        Rcf_RD
    h323.resetH245  resetH245
        No value
    h323.robustnessData  robustnessData
        Unsigned 32-bit integer
    h323.rrqData  rrqData
        No value
        Rrq_RD
    h323.setupData  setupData
        No value
        Setup_RD
    h323.statusData  statusData
        No value
        Status_RD
    h323.statusInquiryData  statusInquiryData
        No value
        StatusInquiry_RD
    h323.tcp  tcp
        Unsigned 32-bit integer
        TransportAddress
    h323.timeToLive  timeToLive
        Unsigned 32-bit integer
    h323.tunnelledProtocolID  tunnelledProtocolID
        No value
        TunnelledProtocol
    h323.tunnellingRequired  tunnellingRequired
        No value
    h323.versionID  versionID
        Unsigned 32-bit integer
        INTEGER_1_256

H.324/CCSRL (ccsrl)

    ccsrl.ls  Last Segment
        Unsigned 8-bit integer
        Last segment indicator

H.324/SRP (srp)

    srp.crc  CRC
        Unsigned 16-bit integer
    srp.crc_bad  Bad CRC
        Boolean
    srp.header  Header
        Unsigned 8-bit integer
        SRP header octet
    srp.seqno  Sequence Number
        Unsigned 8-bit integer

H.450 Remote Operations Apdus (h450.ros)

    h450.ros.argument  argument
        Byte array
        InvokeArgument
    h450.ros.errcode  errcode
        Unsigned 32-bit integer
        Code
    h450.ros.general  general
        Signed 32-bit integer
        GeneralProblem
    h450.ros.global  global
        Object Identifier
    h450.ros.invoke  invoke
        No value
    h450.ros.invokeId  invokeId
        Signed 32-bit integer
        T_invokeIdConstrained
    h450.ros.linkedId  linkedId
        Signed 32-bit integer
        InvokeId
    h450.ros.local  local
        Signed 32-bit integer
    h450.ros.opcode  opcode
        Unsigned 32-bit integer
        Code
    h450.ros.parameter  parameter
        Byte array
    h450.ros.problem  problem
        Unsigned 32-bit integer
    h450.ros.reject  reject
        No value
    h450.ros.result  result
        No value
    h450.ros.returnError  returnError
        No value
    h450.ros.returnResult  returnResult
        No value

H.450 Supplementary Services (h450)

    h450.10.CfbOvrOptArg  CfbOvrOptArg
        No value
    h450.10.CoReqOptArg  CoReqOptArg
        No value
    h450.10.MixedExtension  MixedExtension
        Unsigned 32-bit integer
    h450.10.RUAlertOptArg  RUAlertOptArg
        No value
    h450.10.extension  extension
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.11.CIFrcRelArg  CIFrcRelArg
        No value
    h450.11.CIFrcRelOptRes  CIFrcRelOptRes
        No value
    h450.11.CIGetCIPLOptArg  CIGetCIPLOptArg
        No value
    h450.11.CIGetCIPLRes  CIGetCIPLRes
        No value
    h450.11.CIIsOptArg  CIIsOptArg
        No value
    h450.11.CIIsOptRes  CIIsOptRes
        No value
    h450.11.CINotificationArg  CINotificationArg
        No value
    h450.11.CIRequestArg  CIRequestArg
        No value
    h450.11.CIRequestRes  CIRequestRes
        No value
    h450.11.CISilentArg  CISilentArg
        No value
    h450.11.CISilentOptRes  CISilentOptRes
        No value
    h450.11.CIWobOptArg  CIWobOptArg
        No value
    h450.11.CIWobOptRes  CIWobOptRes
        No value
    h450.11.MixedExtension  MixedExtension
        Unsigned 32-bit integer
    h450.11.argumentExtension  argumentExtension
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.11.callForceReleased  callForceReleased
        No value
    h450.11.callIntruded  callIntruded
        No value
    h450.11.callIntrusionComplete  callIntrusionComplete
        No value
    h450.11.callIntrusionEnd  callIntrusionEnd
        No value
    h450.11.callIntrusionImpending  callIntrusionImpending
        No value
    h450.11.callIsolated  callIsolated
        No value
    h450.11.ciCapabilityLevel  ciCapabilityLevel
        Unsigned 32-bit integer
    h450.11.ciProtectionLevel  ciProtectionLevel
        Unsigned 32-bit integer
    h450.11.ciStatusInformation  ciStatusInformation
        Unsigned 32-bit integer
    h450.11.resultExtension  resultExtension
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.11.silentMonitoringPermitted  silentMonitoringPermitted
        No value
    h450.11.specificCall  specificCall
        No value
        CallIdentifier
    h450.12.CmnArg  CmnArg
        No value
    h450.12.DummyArg  DummyArg
        No value
    h450.12.MixedExtension  MixedExtension
        Unsigned 32-bit integer
    h450.12.extension  extension
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.12.extensionArg  extensionArg
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.12.featureControl  featureControl
        No value
    h450.12.featureList  featureList
        No value
    h450.12.featureValues  featureValues
        No value
    h450.12.partyCategory  partyCategory
        Unsigned 32-bit integer
    h450.12.ssCCBSPossible  ssCCBSPossible
        No value
    h450.12.ssCCNRPossible  ssCCNRPossible
        No value
    h450.12.ssCFreRoutingSupported  ssCFreRoutingSupported
        No value
    h450.12.ssCHDoNotHold  ssCHDoNotHold
        No value
    h450.12.ssCHFarHoldSupported  ssCHFarHoldSupported
        No value
    h450.12.ssCIConferenceSupported  ssCIConferenceSupported
        No value
    h450.12.ssCIForcedReleaseSupported  ssCIForcedReleaseSupported
        No value
    h450.12.ssCIIsolationSupported  ssCIIsolationSupported
        No value
    h450.12.ssCISilentMonitorPermitted  ssCISilentMonitorPermitted
        No value
    h450.12.ssCISilentMonitoringSupported  ssCISilentMonitoringSupported
        No value
    h450.12.ssCIWaitOnBusySupported  ssCIWaitOnBusySupported
        No value
    h450.12.ssCIprotectionLevel  ssCIprotectionLevel
        Unsigned 32-bit integer
    h450.12.ssCOSupported  ssCOSupported
        No value
    h450.12.ssCPCallParkSupported  ssCPCallParkSupported
        No value
    h450.12.ssCTDoNotTransfer  ssCTDoNotTransfer
        No value
    h450.12.ssCTreRoutingSupported  ssCTreRoutingSupported
        No value
    h450.12.ssMWICallbackCall  ssMWICallbackCall
        No value
    h450.12.ssMWICallbackSupported  ssMWICallbackSupported
        No value
    h450.2.CTActiveArg  CTActiveArg
        No value
    h450.2.CTCompleteArg  CTCompleteArg
        No value
    h450.2.CTIdentifyRes  CTIdentifyRes
        No value
    h450.2.CTInitiateArg  CTInitiateArg
        No value
    h450.2.CTSetupArg  CTSetupArg
        No value
    h450.2.CTUpdateArg  CTUpdateArg
        No value
    h450.2.DummyArg  DummyArg
        Unsigned 32-bit integer
    h450.2.DummyRes  DummyRes
        Unsigned 32-bit integer
    h450.2.Extension  Extension
        No value
    h450.2.PAR_unspecified  PAR-unspecified
        Unsigned 32-bit integer
    h450.2.SubaddressTransferArg  SubaddressTransferArg
        No value
    h450.2.argumentExtension  argumentExtension
        Unsigned 32-bit integer
        T_cTInitiateArg_argumentExtension
    h450.2.basicCallInfoElements  basicCallInfoElements
        Byte array
        H225InformationElement
    h450.2.callIdentity  callIdentity
        String
    h450.2.callStatus  callStatus
        Unsigned 32-bit integer
    h450.2.connectedAddress  connectedAddress
        No value
        EndpointAddress
    h450.2.connectedInfo  connectedInfo
        String
        BMPString_SIZE_1_128
    h450.2.endDesignation  endDesignation
        Unsigned 32-bit integer
    h450.2.extension  extension
        No value
    h450.2.extensionSeq  extensionSeq
        Unsigned 32-bit integer
    h450.2.nonStandard  nonStandard
        No value
        NonStandardParameter
    h450.2.nonStandardData  nonStandardData
        No value
        NonStandardParameter
    h450.2.redirectionInfo  redirectionInfo
        String
        BMPString_SIZE_1_128
    h450.2.redirectionNumber  redirectionNumber
        No value
        EndpointAddress
    h450.2.redirectionSubaddress  redirectionSubaddress
        Unsigned 32-bit integer
        PartySubaddress
    h450.2.reroutingNumber  reroutingNumber
        No value
        EndpointAddress
    h450.2.resultExtension  resultExtension
        Unsigned 32-bit integer
    h450.2.transferringNumber  transferringNumber
        No value
        EndpointAddress
    h450.3.ARG_activateDiversionQ  ARG-activateDiversionQ
        No value
    h450.3.ARG_callRerouting  ARG-callRerouting
        No value
    h450.3.ARG_cfnrDivertedLegFailed  ARG-cfnrDivertedLegFailed
        Unsigned 32-bit integer
    h450.3.ARG_checkRestriction  ARG-checkRestriction
        No value
    h450.3.ARG_deactivateDiversionQ  ARG-deactivateDiversionQ
        No value
    h450.3.ARG_divertingLegInformation1  ARG-divertingLegInformation1
        No value
    h450.3.ARG_divertingLegInformation2  ARG-divertingLegInformation2
        No value
    h450.3.ARG_divertingLegInformation3  ARG-divertingLegInformation3
        No value
    h450.3.ARG_divertingLegInformation4  ARG-divertingLegInformation4
        No value
    h450.3.ARG_interrogateDiversionQ  ARG-interrogateDiversionQ
        No value
    h450.3.Extension  Extension
        No value
    h450.3.IntResult  IntResult
        No value
    h450.3.IntResultList  IntResultList
        Unsigned 32-bit integer
    h450.3.PAR_unspecified  PAR-unspecified
        Unsigned 32-bit integer
    h450.3.RES_activateDiversionQ  RES-activateDiversionQ
        Unsigned 32-bit integer
    h450.3.RES_callRerouting  RES-callRerouting
        Unsigned 32-bit integer
    h450.3.RES_checkRestriction  RES-checkRestriction
        Unsigned 32-bit integer
    h450.3.RES_deactivateDiversionQ  RES-deactivateDiversionQ
        Unsigned 32-bit integer
    h450.3.activatingUserNr  activatingUserNr
        No value
        EndpointAddress
    h450.3.basicService  basicService
        Unsigned 32-bit integer
    h450.3.calledAddress  calledAddress
        No value
        EndpointAddress
    h450.3.callingInfo  callingInfo
        String
        BMPString_SIZE_1_128
    h450.3.callingNr  callingNr
        No value
        EndpointAddress
    h450.3.callingNumber  callingNumber
        No value
        EndpointAddress
    h450.3.callingPartySubaddress  callingPartySubaddress
        Unsigned 32-bit integer
        PartySubaddress
    h450.3.deactivatingUserNr  deactivatingUserNr
        No value
        EndpointAddress
    h450.3.diversionCounter  diversionCounter
        Unsigned 32-bit integer
        INTEGER_1_15
    h450.3.diversionReason  diversionReason
        Unsigned 32-bit integer
    h450.3.divertedToAddress  divertedToAddress
        No value
        EndpointAddress
    h450.3.divertedToNr  divertedToNr
        No value
        EndpointAddress
    h450.3.divertingNr  divertingNr
        No value
        EndpointAddress
    h450.3.extension  extension
        Unsigned 32-bit integer
        ActivateDiversionQArg_extension
    h450.3.extensionSeq  extensionSeq
        Unsigned 32-bit integer
    h450.3.h225InfoElement  h225InfoElement
        Byte array
        H225InformationElement
    h450.3.interrogatingUserNr  interrogatingUserNr
        No value
        EndpointAddress
    h450.3.lastReroutingNr  lastReroutingNr
        No value
        EndpointAddress
    h450.3.nominatedInfo  nominatedInfo
        String
        BMPString_SIZE_1_128
    h450.3.nominatedNr  nominatedNr
        No value
        EndpointAddress
    h450.3.nonStandard  nonStandard
        No value
        NonStandardParameter
    h450.3.nonStandardData  nonStandardData
        No value
        NonStandardParameter
    h450.3.originalCalledInfo  originalCalledInfo
        String
        BMPString_SIZE_1_128
    h450.3.originalCalledNr  originalCalledNr
        No value
        EndpointAddress
    h450.3.originalDiversionReason  originalDiversionReason
        Unsigned 32-bit integer
        DiversionReason
    h450.3.originalReroutingReason  originalReroutingReason
        Unsigned 32-bit integer
        DiversionReason
    h450.3.presentationAllowedIndicator  presentationAllowedIndicator
        Boolean
    h450.3.procedure  procedure
        Unsigned 32-bit integer
    h450.3.redirectingInfo  redirectingInfo
        String
        BMPString_SIZE_1_128
    h450.3.redirectingNr  redirectingNr
        No value
        EndpointAddress
    h450.3.redirectionInfo  redirectionInfo
        String
        BMPString_SIZE_1_128
    h450.3.redirectionNr  redirectionNr
        No value
        EndpointAddress
    h450.3.remoteEnabled  remoteEnabled
        Boolean
        BOOLEAN
    h450.3.reroutingReason  reroutingReason
        Unsigned 32-bit integer
        DiversionReason
    h450.3.servedUserNr  servedUserNr
        No value
        EndpointAddress
    h450.3.subscriptionOption  subscriptionOption
        Unsigned 32-bit integer
    h450.4.HoldNotificArg  HoldNotificArg
        No value
    h450.4.MixedExtension  MixedExtension
        Unsigned 32-bit integer
    h450.4.PAR_undefined  PAR-undefined
        Unsigned 32-bit integer
    h450.4.RemoteHoldArg  RemoteHoldArg
        No value
    h450.4.RemoteHoldRes  RemoteHoldRes
        No value
    h450.4.RemoteRetrieveArg  RemoteRetrieveArg
        No value
    h450.4.RemoteRetrieveRes  RemoteRetrieveRes
        No value
    h450.4.RetrieveNotificArg  RetrieveNotificArg
        No value
    h450.4.extension  extension
        No value
    h450.4.extensionArg  extensionArg
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.4.extensionRes  extensionRes
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.4.nonStandardData  nonStandardData
        No value
        NonStandardParameter
    h450.5.CpNotifyArg  CpNotifyArg
        No value
    h450.5.CpRequestArg  CpRequestArg
        No value
    h450.5.CpRequestRes  CpRequestRes
        No value
    h450.5.CpSetupArg  CpSetupArg
        No value
    h450.5.CpSetupRes  CpSetupRes
        No value
    h450.5.CpickupNotifyArg  CpickupNotifyArg
        No value
    h450.5.GroupIndicationOffArg  GroupIndicationOffArg
        No value
    h450.5.GroupIndicationOffRes  GroupIndicationOffRes
        No value
    h450.5.GroupIndicationOnArg  GroupIndicationOnArg
        No value
    h450.5.GroupIndicationOnRes  GroupIndicationOnRes
        No value
    h450.5.MixedExtension  MixedExtension
        Unsigned 32-bit integer
    h450.5.PAR_undefined  PAR-undefined
        Unsigned 32-bit integer
    h450.5.PickExeArg  PickExeArg
        No value
    h450.5.PickExeRes  PickExeRes
        No value
    h450.5.PickrequArg  PickrequArg
        No value
    h450.5.PickrequRes  PickrequRes
        No value
    h450.5.PickupArg  PickupArg
        No value
    h450.5.PickupRes  PickupRes
        No value
    h450.5.callPickupId  callPickupId
        No value
        CallIdentifier
    h450.5.extensionArg  extensionArg
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.5.extensionRes  extensionRes
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.5.groupMemberUserNr  groupMemberUserNr
        No value
        EndpointAddress
    h450.5.parkCondition  parkCondition
        Unsigned 32-bit integer
    h450.5.parkPosition  parkPosition
        Unsigned 32-bit integer
        ParkedToPosition
    h450.5.parkedNumber  parkedNumber
        No value
        EndpointAddress
    h450.5.parkedToNumber  parkedToNumber
        No value
        EndpointAddress
    h450.5.parkedToPosition  parkedToPosition
        Unsigned 32-bit integer
    h450.5.parkingNumber  parkingNumber
        No value
        EndpointAddress
    h450.5.partyToRetrieve  partyToRetrieve
        No value
        EndpointAddress
    h450.5.picking_upNumber  picking-upNumber
        No value
        EndpointAddress
    h450.5.retrieveAddress  retrieveAddress
        No value
        EndpointAddress
    h450.5.retrieveCallType  retrieveCallType
        Unsigned 32-bit integer
        CallType
    h450.6.CallWaitingArg  CallWaitingArg
        No value
    h450.6.MixedExtension  MixedExtension
        Unsigned 32-bit integer
    h450.6.extensionArg  extensionArg
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.6.nbOfAddWaitingCalls  nbOfAddWaitingCalls
        Unsigned 32-bit integer
        INTEGER_0_255
    h450.7.DummyRes  DummyRes
        Unsigned 32-bit integer
    h450.7.MWIActivateArg  MWIActivateArg
        No value
    h450.7.MWIDeactivateArg  MWIDeactivateArg
        No value
    h450.7.MWIInterrogateArg  MWIInterrogateArg
        No value
    h450.7.MWIInterrogateRes  MWIInterrogateRes
        Unsigned 32-bit integer
    h450.7.MWIInterrogateResElt  MWIInterrogateResElt
        No value
    h450.7.MixedExtension  MixedExtension
        Unsigned 32-bit integer
    h450.7.PAR_undefined  PAR-undefined
        Unsigned 32-bit integer
    h450.7.basicService  basicService
        Unsigned 32-bit integer
    h450.7.callbackReq  callbackReq
        Boolean
        BOOLEAN
    h450.7.extensionArg  extensionArg
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.7.integer  integer
        Unsigned 32-bit integer
        INTEGER_0_65535
    h450.7.msgCentreId  msgCentreId
        Unsigned 32-bit integer
    h450.7.nbOfMessages  nbOfMessages
        Unsigned 32-bit integer
    h450.7.numericString  numericString
        String
        NumericString_SIZE_1_10
    h450.7.originatingNr  originatingNr
        No value
        EndpointAddress
    h450.7.partyNumber  partyNumber
        No value
        EndpointAddress
    h450.7.priority  priority
        Unsigned 32-bit integer
        INTEGER_0_9
    h450.7.servedUserNr  servedUserNr
        No value
        EndpointAddress
    h450.7.timestamp  timestamp
        String
    h450.8.ARG_alertingName  ARG-alertingName
        No value
    h450.8.ARG_busyName  ARG-busyName
        No value
    h450.8.ARG_callingName  ARG-callingName
        No value
    h450.8.ARG_connectedName  ARG-connectedName
        No value
    h450.8.MixedExtension  MixedExtension
        Unsigned 32-bit integer
    h450.8.extendedName  extendedName
        String
    h450.8.extensionArg  extensionArg
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.8.name  name
        Unsigned 32-bit integer
    h450.8.nameNotAvailable  nameNotAvailable
        No value
    h450.8.namePresentationAllowed  namePresentationAllowed
        Unsigned 32-bit integer
    h450.8.namePresentationRestricted  namePresentationRestricted
        Unsigned 32-bit integer
    h450.8.restrictedNull  restrictedNull
        No value
    h450.8.simpleName  simpleName
        Byte array
    h450.9.CcArg  CcArg
        Unsigned 32-bit integer
    h450.9.CcRequestArg  CcRequestArg
        No value
    h450.9.CcRequestRes  CcRequestRes
        No value
    h450.9.CcShortArg  CcShortArg
        No value
    h450.9.MixedExtension  MixedExtension
        Unsigned 32-bit integer
    h450.9.can_retain_service  can-retain-service
        Boolean
        BOOLEAN
    h450.9.ccIdentifier  ccIdentifier
        No value
        CallIdentifier
    h450.9.extension  extension
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_255_OF_MixedExtension
    h450.9.longArg  longArg
        No value
        CcLongArg
    h450.9.numberA  numberA
        No value
        EndpointAddress
    h450.9.numberB  numberB
        No value
        EndpointAddress
    h450.9.retain_service  retain-service
        Boolean
        BOOLEAN
    h450.9.retain_sig_connection  retain-sig-connection
        Boolean
        BOOLEAN
    h450.9.service  service
        Unsigned 32-bit integer
        BasicService
    h450.9.shortArg  shortArg
        No value
        CcShortArg
    h450.AliasAddress  AliasAddress
        Unsigned 32-bit integer
    h450.H4501SupplementaryService  H4501SupplementaryService
        No value
    h450.anyEntity  anyEntity
        No value
    h450.clearCallIfAnyInvokePduNotRecognized  clearCallIfAnyInvokePduNotRecognized
        No value
    h450.destinationAddress  destinationAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h450.destinationAddressPresentationIndicator  destinationAddressPresentationIndicator
        Unsigned 32-bit integer
        PresentationIndicator
    h450.destinationAddressScreeningIndicator  destinationAddressScreeningIndicator
        Unsigned 32-bit integer
        ScreeningIndicator
    h450.destinationEntity  destinationEntity
        Unsigned 32-bit integer
        EntityType
    h450.destinationEntityAddress  destinationEntityAddress
        Unsigned 32-bit integer
        AddressInformation
    h450.discardAnyUnrecognizedInvokePdu  discardAnyUnrecognizedInvokePdu
        No value
    h450.endpoint  endpoint
        No value
    h450.error  Error
        Unsigned 8-bit integer
    h450.extensionArgument  extensionArgument
        No value
    h450.extensionId  extensionId
        Object Identifier
        OBJECT_IDENTIFIER
    h450.interpretationApdu  interpretationApdu
        Unsigned 32-bit integer
    h450.networkFacilityExtension  networkFacilityExtension
        No value
    h450.nsapSubaddress  nsapSubaddress
        Byte array
    h450.oddCountIndicator  oddCountIndicator
        Boolean
        BOOLEAN
    h450.operation  Operation
        Unsigned 8-bit integer
    h450.rejectAnyUnrecognizedInvokePdu  rejectAnyUnrecognizedInvokePdu
        No value
    h450.remoteExtensionAddress  remoteExtensionAddress
        Unsigned 32-bit integer
        AliasAddress
    h450.remoteExtensionAddressPresentationIndicator  remoteExtensionAddressPresentationIndicator
        Unsigned 32-bit integer
        PresentationIndicator
    h450.remoteExtensionAddressScreeningIndicator  remoteExtensionAddressScreeningIndicator
        Unsigned 32-bit integer
        ScreeningIndicator
    h450.rosApdus  rosApdus
        Unsigned 32-bit integer
    h450.rosApdus_item  rosApdus item
        Unsigned 32-bit integer
    h450.serviceApdu  serviceApdu
        Unsigned 32-bit integer
        ServiceApdus
    h450.sourceEntity  sourceEntity
        Unsigned 32-bit integer
        EntityType
    h450.sourceEntityAddress  sourceEntityAddress
        Unsigned 32-bit integer
        AddressInformation
    h450.subaddressInformation  subaddressInformation
        Byte array
    h450.userSpecifiedSubaddress  userSpecifiedSubaddress
        No value

H.460 Supplementary Services (h460)

    h460.10.CallPartyCategoryInfo  CallPartyCategoryInfo
        No value
    h460.10.callPartyCategory  callPartyCategory
        Unsigned 32-bit integer
    h460.10.originatingLineInfo  originatingLineInfo
        Unsigned 32-bit integer
    h460.14.MLPPInfo  MLPPInfo
        No value
    h460.14.altID  altID
        Unsigned 32-bit integer
        AliasAddress
    h460.14.altTimer  altTimer
        Unsigned 32-bit integer
        INTEGER_0_255
    h460.14.alternateParty  alternateParty
        No value
    h460.14.mlppNotification  mlppNotification
        Unsigned 32-bit integer
    h460.14.mlppReason  mlppReason
        Unsigned 32-bit integer
    h460.14.precedence  precedence
        Unsigned 32-bit integer
        MlppPrecedence
    h460.14.preemptCallID  preemptCallID
        No value
        CallIdentifier
    h460.14.preemptionComplete  preemptionComplete
        No value
    h460.14.preemptionEnd  preemptionEnd
        No value
    h460.14.preemptionInProgress  preemptionInProgress
        No value
    h460.14.preemptionPending  preemptionPending
        No value
    h460.14.releaseCall  releaseCall
        No value
    h460.14.releaseDelay  releaseDelay
        Unsigned 32-bit integer
        INTEGER_0_255
    h460.14.releaseReason  releaseReason
        Unsigned 32-bit integer
        MlppReason
    h460.15.SignallingChannelData  SignallingChannelData
        No value
    h460.15.TransportAddress  TransportAddress
        Unsigned 32-bit integer
    h460.15.channelResumeAddress  channelResumeAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_TransportAddress
    h460.15.channelResumeRequest  channelResumeRequest
        No value
    h460.15.channelResumeResponse  channelResumeResponse
        No value
    h460.15.channelSuspendCancel  channelSuspendCancel
        No value
    h460.15.channelSuspendConfirm  channelSuspendConfirm
        No value
    h460.15.channelSuspendRequest  channelSuspendRequest
        No value
    h460.15.channelSuspendResponse  channelSuspendResponse
        No value
    h460.15.immediateResume  immediateResume
        Boolean
        BOOLEAN
    h460.15.okToSuspend  okToSuspend
        Boolean
        BOOLEAN
    h460.15.randomNumber  randomNumber
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h460.15.resetH245  resetH245
        No value
    h460.15.signallingChannelData  signallingChannelData
        Unsigned 32-bit integer
    h460.18.IncomingCallIndication  IncomingCallIndication
        No value
    h460.18.LRQKeepAliveData  LRQKeepAliveData
        No value
    h460.18.callID  callID
        No value
        CallIdentifier
    h460.18.callSignallingAddress  callSignallingAddress
        Unsigned 32-bit integer
        TransportAddress
    h460.18.lrqKeepAliveInterval  lrqKeepAliveInterval
        Unsigned 32-bit integer
        TimeToLive
    h460.19.TraversalParameters  TraversalParameters
        No value
    h460.19.keepAliveChannel  keepAliveChannel
        Unsigned 32-bit integer
        TransportAddress
    h460.19.keepAliveInterval  keepAliveInterval
        Unsigned 32-bit integer
        TimeToLive
    h460.19.keepAlivePayloadType  keepAlivePayloadType
        Unsigned 32-bit integer
        INTEGER_0_127
    h460.19.multiplexID  multiplexID
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h460.19.multiplexedMediaChannel  multiplexedMediaChannel
        Unsigned 32-bit integer
        TransportAddress
    h460.19.multiplexedMediaControlChannel  multiplexedMediaControlChannel
        Unsigned 32-bit integer
        TransportAddress
    h460.2.NumberPortabilityInfo  NumberPortabilityInfo
        Unsigned 32-bit integer
    h460.2.addressTranslated  addressTranslated
        No value
    h460.2.aliasAddress  aliasAddress
        Unsigned 32-bit integer
    h460.2.concatenatedNumber  concatenatedNumber
        No value
    h460.2.nUMBERPORTABILITYDATA  nUMBERPORTABILITYDATA
        No value
    h460.2.numberPortabilityRejectReason  numberPortabilityRejectReason
        Unsigned 32-bit integer
    h460.2.portabilityTypeOfNumber  portabilityTypeOfNumber
        Unsigned 32-bit integer
    h460.2.portedAddress  portedAddress
        No value
        PortabilityAddress
    h460.2.portedNumber  portedNumber
        No value
    h460.2.privateTypeOfNumber  privateTypeOfNumber
        Unsigned 32-bit integer
    h460.2.publicTypeOfNumber  publicTypeOfNumber
        Unsigned 32-bit integer
    h460.2.qorPortedNumber  qorPortedNumber
        No value
    h460.2.regionalData  regionalData
        Byte array
        OCTET_STRING
    h460.2.regionalParams  regionalParams
        No value
        RegionalParameters
    h460.2.routingAddress  routingAddress
        No value
        PortabilityAddress
    h460.2.routingNumber  routingNumber
        No value
    h460.2.t35CountryCode  t35CountryCode
        Unsigned 32-bit integer
        INTEGER_0_255
    h460.2.t35Extension  t35Extension
        Unsigned 32-bit integer
        INTEGER_0_255
    h460.2.typeOfAddress  typeOfAddress
        Unsigned 32-bit integer
        NumberPortabilityTypeOfNumber
    h460.2.unspecified  unspecified
        No value
    h460.2.variantIdentifier  variantIdentifier
        Unsigned 32-bit integer
        INTEGER_1_255
    h460.21.Capability  Capability
        Unsigned 32-bit integer
    h460.21.CapabilityAdvertisement  CapabilityAdvertisement
        No value
    h460.21.TransmitCapabilities  TransmitCapabilities
        No value
    h460.21.capabilities  capabilities
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_256_OF_Capability
    h460.21.capability  capability
        Unsigned 32-bit integer
    h460.21.groupIdentifer  groupIdentifer
        Byte array
        GloballyUniqueID
    h460.21.maxGroups  maxGroups
        Unsigned 32-bit integer
        INTEGER_1_65535
    h460.21.receiveCapabilities  receiveCapabilities
        No value
    h460.21.sourceAddress  sourceAddress
        Unsigned 32-bit integer
        UnicastAddress
    h460.21.transmitCapabilities  transmitCapabilities
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_256_OF_TransmitCapabilities
    h460.3.CircuitStatus  CircuitStatus
        No value
    h460.3.CircuitStatusMap  CircuitStatusMap
        No value
    h460.3.baseCircuitID  baseCircuitID
        No value
        CircuitIdentifier
    h460.3.busyStatus  busyStatus
        No value
    h460.3.circuitStatusMap  circuitStatusMap
        Unsigned 32-bit integer
        SEQUENCE_OF_CircuitStatusMap
    h460.3.range  range
        Unsigned 32-bit integer
        INTEGER_0_4095
    h460.3.serviceStatus  serviceStatus
        No value
    h460.3.status  status
        Byte array
        OCTET_STRING
    h460.3.statusType  statusType
        Unsigned 32-bit integer
        CircuitStatusType
    h460.4.CallPriorityInfo  CallPriorityInfo
        No value
    h460.4.ClearToken  ClearToken
        No value
    h460.4.CountryInternationalNetworkCallOriginationIdentification  CountryInternationalNetworkCallOriginationIdentification
        No value
    h460.4.CryptoToken  CryptoToken
        Unsigned 32-bit integer
    h460.4.countryCode  countryCode
        String
        X121CountryCode
    h460.4.cryptoTokens  cryptoTokens
        Unsigned 32-bit integer
        SEQUENCE_OF_CryptoToken
    h460.4.e164  e164
        No value
    h460.4.emergencyAuthorized  emergencyAuthorized
        No value
    h460.4.emergencyPublic  emergencyPublic
        No value
    h460.4.high  high
        No value
    h460.4.identificationCode  identificationCode
        String
    h460.4.normal  normal
        No value
    h460.4.numberingPlan  numberingPlan
        Unsigned 32-bit integer
    h460.4.priorityExtension  priorityExtension
        Unsigned 32-bit integer
        INTEGER_0_255
    h460.4.priorityUnauthorized  priorityUnauthorized
        No value
    h460.4.priorityUnavailable  priorityUnavailable
        No value
    h460.4.priorityValue  priorityValue
        Unsigned 32-bit integer
    h460.4.priorityValueUnknown  priorityValueUnknown
        No value
    h460.4.rejectReason  rejectReason
        Unsigned 32-bit integer
    h460.4.tokens  tokens
        Unsigned 32-bit integer
        SEQUENCE_OF_ClearToken
    h460.4.x121  x121
        No value
    h460.9.ExtendedRTPMetrics  ExtendedRTPMetrics
        No value
    h460.9.Extension  Extension
        No value
    h460.9.PerCallQoSReport  PerCallQoSReport
        No value
    h460.9.QosMonitoringReportData  QosMonitoringReportData
        Unsigned 32-bit integer
    h460.9.RTCPMeasures  RTCPMeasures
        No value
    h460.9.adaptive  adaptive
        No value
    h460.9.burstDuration  burstDuration
        Unsigned 32-bit integer
        INTEGER_0_65535
    h460.9.burstLossDensity  burstLossDensity
        Unsigned 32-bit integer
        INTEGER_0_255
    h460.9.burstMetrics  burstMetrics
        No value
    h460.9.callIdentifier  callIdentifier
        No value
    h460.9.callReferenceValue  callReferenceValue
        Unsigned 32-bit integer
    h460.9.conferenceID  conferenceID
        Globally Unique Identifier
        ConferenceIdentifier
    h460.9.cumulativeNumberOfPacketsLost  cumulativeNumberOfPacketsLost
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h460.9.disabled  disabled
        No value
    h460.9.endSystemDelay  endSystemDelay
        Unsigned 32-bit integer
        INTEGER_0_65535
    h460.9.enhanced  enhanced
        No value
    h460.9.estimatedMOSCQ  estimatedMOSCQ
        Unsigned 32-bit integer
        INTEGER_10_50
    h460.9.estimatedMOSLQ  estimatedMOSLQ
        Unsigned 32-bit integer
        INTEGER_10_50
    h460.9.estimatedThroughput  estimatedThroughput
        Unsigned 32-bit integer
        BandWidth
    h460.9.extRFactor  extRFactor
        Unsigned 32-bit integer
        INTEGER_0_100
    h460.9.extensionContent  extensionContent
        Byte array
        OCTET_STRING
    h460.9.extensionId  extensionId
        Unsigned 32-bit integer
        GenericIdentifier
    h460.9.extensions  extensions
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    h460.9.final  final
        No value
        FinalQosMonReport
    h460.9.fractionLostRate  fractionLostRate
        Unsigned 32-bit integer
        INTEGER_0_65535
    h460.9.gapDuration  gapDuration
        Unsigned 32-bit integer
        INTEGER_0_65535
    h460.9.gapLossDensity  gapLossDensity
        Unsigned 32-bit integer
        INTEGER_0_255
    h460.9.gmin  gmin
        Unsigned 32-bit integer
        INTEGER_0_255
    h460.9.interGK  interGK
        No value
        InterGKQosMonReport
    h460.9.jitterBufferAbsoluteMax  jitterBufferAbsoluteMax
        Unsigned 32-bit integer
        INTEGER_0_65535
    h460.9.jitterBufferAdaptRate  jitterBufferAdaptRate
        Unsigned 32-bit integer
        INTEGER_0_15
    h460.9.jitterBufferDiscardRate  jitterBufferDiscardRate
        Unsigned 32-bit integer
        INTEGER_0_255
    h460.9.jitterBufferMaxSize  jitterBufferMaxSize
        Unsigned 32-bit integer
        INTEGER_0_65535
    h460.9.jitterBufferNominalSize  jitterBufferNominalSize
        Unsigned 32-bit integer
        INTEGER_0_65535
    h460.9.jitterBufferParms  jitterBufferParms
        No value
    h460.9.jitterBufferType  jitterBufferType
        Unsigned 32-bit integer
        JitterBufferTypes
    h460.9.meanEstimatedEnd2EndDelay  meanEstimatedEnd2EndDelay
        Unsigned 32-bit integer
        EstimatedEnd2EndDelay
    h460.9.meanJitter  meanJitter
        Unsigned 32-bit integer
        CalculatedJitter
    h460.9.mediaChannelsQoS  mediaChannelsQoS
        Unsigned 32-bit integer
        SEQUENCE_OF_RTCPMeasures
    h460.9.mediaInfo  mediaInfo
        Unsigned 32-bit integer
        SEQUENCE_OF_RTCPMeasures
    h460.9.mediaReceiverMeasures  mediaReceiverMeasures
        No value
    h460.9.mediaSenderMeasures  mediaSenderMeasures
        No value
    h460.9.networkPacketLossRate  networkPacketLossRate
        Unsigned 32-bit integer
        INTEGER_0_255
    h460.9.noiseLevel  noiseLevel
        Signed 32-bit integer
        INTEGER_M127_0
    h460.9.nonStandardData  nonStandardData
        No value
        NonStandardParameter
    h460.9.nonadaptive  nonadaptive
        No value
    h460.9.packetLostRate  packetLostRate
        Unsigned 32-bit integer
        INTEGER_0_65535
    h460.9.perCallInfo  perCallInfo
        Unsigned 32-bit integer
        SEQUENCE_OF_PerCallQoSReport
    h460.9.periodic  periodic
        No value
        PeriodicQoSMonReport
    h460.9.plcType  plcType
        Unsigned 32-bit integer
        PLCtypes
    h460.9.rFactor  rFactor
        Unsigned 32-bit integer
        INTEGER_0_100
    h460.9.reserved  reserved
        No value
    h460.9.residualEchoReturnLoss  residualEchoReturnLoss
        Unsigned 32-bit integer
        INTEGER_0_127
    h460.9.rtcpAddress  rtcpAddress
        No value
        TransportChannelInfo
    h460.9.rtcpRoundTripDelay  rtcpRoundTripDelay
        Unsigned 32-bit integer
        INTEGER_0_65535
    h460.9.rtpAddress  rtpAddress
        No value
        TransportChannelInfo
    h460.9.sessionId  sessionId
        Unsigned 32-bit integer
        INTEGER_1_255
    h460.9.signalLevel  signalLevel
        Signed 32-bit integer
        INTEGER_M127_10
    h460.9.standard  standard
        No value
    h460.9.unknown  unknown
        No value
    h460.9.unspecified  unspecified
        No value
    h460.9.worstEstimatedEnd2EndDelay  worstEstimatedEnd2EndDelay
        Unsigned 32-bit integer
        EstimatedEnd2EndDelay
    h460.9.worstJitter  worstJitter
        Unsigned 32-bit integer
        CalculatedJitter

H.501 Mobility (h501)

    h501.AccessToken  AccessToken
        Unsigned 32-bit integer
    h501.AddressTemplate  AddressTemplate
        No value
    h501.AliasAddress  AliasAddress
        Unsigned 32-bit integer
    h501.AlternatePE  AlternatePE
        No value
    h501.CircuitIdentifier  CircuitIdentifier
        No value
    h501.ClearToken  ClearToken
        No value
    h501.ContactInformation  ContactInformation
        No value
    h501.CryptoH323Token  CryptoH323Token
        Unsigned 32-bit integer
    h501.Descriptor  Descriptor
        No value
    h501.DescriptorID  DescriptorID
        Globally Unique Identifier
    h501.DescriptorInfo  DescriptorInfo
        No value
    h501.GenericData  GenericData
        No value
    h501.Message  Message
        No value
    h501.NonStandardParameter  NonStandardParameter
        No value
    h501.Pattern  Pattern
        Unsigned 32-bit integer
    h501.PriceElement  PriceElement
        No value
    h501.PriceInfoSpec  PriceInfoSpec
        No value
    h501.RouteInformation  RouteInformation
        No value
    h501.SecurityMode  SecurityMode
        No value
    h501.ServiceControlSession  ServiceControlSession
        No value
    h501.SupportedProtocols  SupportedProtocols
        Unsigned 32-bit integer
    h501.TransportAddress  TransportAddress
        Unsigned 32-bit integer
    h501.UpdateInformation  UpdateInformation
        No value
    h501.UsageField  UsageField
        No value
    h501.accessConfirmation  accessConfirmation
        No value
    h501.accessRejection  accessRejection
        No value
    h501.accessRequest  accessRequest
        No value
    h501.accessToken  accessToken
        Unsigned 32-bit integer
        SEQUENCE_OF_AccessToken
    h501.accessTokens  accessTokens
        Unsigned 32-bit integer
        SEQUENCE_OF_AccessToken
    h501.added  added
        No value
    h501.algorithmOIDs  algorithmOIDs
        Unsigned 32-bit integer
    h501.algorithmOIDs_item  algorithmOIDs item
        Object Identifier
        OBJECT_IDENTIFIER
    h501.aliasesInconsistent  aliasesInconsistent
        No value
    h501.alternateIsPermanent  alternateIsPermanent
        Boolean
        BOOLEAN
    h501.alternatePE  alternatePE
        Unsigned 32-bit integer
        SEQUENCE_OF_AlternatePE
    h501.alternates  alternates
        No value
        AlternatePEInfo
    h501.amount  amount
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h501.annexGversion  annexGversion
        Object Identifier
        ProtocolVersion
    h501.applicationMessage  applicationMessage
        Byte array
    h501.authentication  authentication
        Unsigned 32-bit integer
        AuthenticationMechanism
    h501.authenticationConfirmation  authenticationConfirmation
        No value
    h501.authenticationRejection  authenticationRejection
        No value
    h501.authenticationRequest  authenticationRequest
        No value
    h501.body  body
        Unsigned 32-bit integer
        MessageBody
    h501.bytes  bytes
        No value
    h501.callEnded  callEnded
        No value
    h501.callIdentifier  callIdentifier
        No value
    h501.callInProgress  callInProgress
        No value
    h501.callInfo  callInfo
        No value
        CallInformation
    h501.callSpecific  callSpecific
        Boolean
        BOOLEAN
    h501.cannotSupportUsageSpec  cannotSupportUsageSpec
        No value
    h501.causeIE  causeIE
        Unsigned 32-bit integer
        INTEGER_1_65535
    h501.changed  changed
        No value
    h501.circuitID  circuitID
        No value
        CircuitInfo
    h501.common  common
        No value
        MessageCommonInfo
    h501.conferenceID  conferenceID
        Globally Unique Identifier
        ConferenceIdentifier
    h501.contactAddress  contactAddress
        Unsigned 32-bit integer
        AliasAddress
    h501.contacts  contacts
        Unsigned 32-bit integer
        SEQUENCE_OF_ContactInformation
    h501.continue  continue
        No value
    h501.cryptoToken  cryptoToken
        Unsigned 32-bit integer
        CryptoH323Token
    h501.cryptoTokens  cryptoTokens
        Unsigned 32-bit integer
        SEQUENCE_OF_CryptoH323Token
    h501.currency  currency
        String
        IA5String_SIZE_3
    h501.currencyScale  currencyScale
        Signed 32-bit integer
        INTEGER_M127_127
    h501.delay  delay
        Unsigned 32-bit integer
        INTEGER_1_65535
    h501.deleted  deleted
        No value
    h501.descriptor  descriptor
        Unsigned 32-bit integer
        SEQUENCE_OF_Descriptor
    h501.descriptorConfirmation  descriptorConfirmation
        No value
    h501.descriptorID  descriptorID
        Unsigned 32-bit integer
        SEQUENCE_OF_DescriptorID
    h501.descriptorIDConfirmation  descriptorIDConfirmation
        No value
    h501.descriptorIDRejection  descriptorIDRejection
        No value
    h501.descriptorIDRequest  descriptorIDRequest
        No value
    h501.descriptorInfo  descriptorInfo
        Unsigned 32-bit integer
        SEQUENCE_OF_DescriptorInfo
    h501.descriptorRejection  descriptorRejection
        No value
    h501.descriptorRequest  descriptorRequest
        No value
    h501.descriptorUpdate  descriptorUpdate
        No value
    h501.descriptorUpdateAck  descriptorUpdateAck
        No value
    h501.desiredProtocols  desiredProtocols
        Unsigned 32-bit integer
        SEQUENCE_OF_SupportedProtocols
    h501.destAddress  destAddress
        No value
        PartyInformation
    h501.destination  destination
        No value
    h501.destinationInfo  destinationInfo
        No value
        PartyInformation
    h501.destinationUnavailable  destinationUnavailable
        No value
    h501.domainIdentifier  domainIdentifier
        Unsigned 32-bit integer
        AliasAddress
    h501.elementIdentifier  elementIdentifier
        String
    h501.end  end
        No value
    h501.endOfRange  endOfRange
        Unsigned 32-bit integer
        PartyNumber
    h501.endTime  endTime
        Date/Time stamp
        TimeStamp
    h501.endpointType  endpointType
        No value
    h501.expired  expired
        No value
    h501.failures  failures
        No value
    h501.featureSet  featureSet
        No value
    h501.gatekeeperID  gatekeeperID
        String
        GatekeeperIdentifier
    h501.genericData  genericData
        Unsigned 32-bit integer
        SEQUENCE_OF_GenericData
    h501.genericDataReason  genericDataReason
        No value
    h501.hopCount  hopCount
        Unsigned 32-bit integer
        INTEGER_1_255
    h501.hopCountExceeded  hopCountExceeded
        No value
    h501.hoursFrom  hoursFrom
        String
        IA5String_SIZE_6
    h501.hoursUntil  hoursUntil
        String
        IA5String_SIZE_6
    h501.id  id
        Object Identifier
        OBJECT_IDENTIFIER
    h501.illegalID  illegalID
        No value
    h501.incomplete  incomplete
        No value
    h501.incompleteAddress  incompleteAddress
        No value
    h501.initial  initial
        No value
    h501.integrity  integrity
        Unsigned 32-bit integer
        IntegrityMechanism
    h501.integrityCheckValue  integrityCheckValue
        No value
        ICV
    h501.invalidCall  invalidCall
        No value
    h501.lastChanged  lastChanged
        String
        GlobalTimeStamp
    h501.logicalAddresses  logicalAddresses
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h501.maintenance  maintenance
        No value
    h501.maximum  maximum
        No value
    h501.messageType  messageType
        Unsigned 32-bit integer
    h501.minimum  minimum
        No value
    h501.missingDestInfo  missingDestInfo
        No value
    h501.missingSourceInfo  missingSourceInfo
        No value
    h501.multipleCalls  multipleCalls
        Boolean
        BOOLEAN
    h501.needCallInformation  needCallInformation
        No value
    h501.neededFeature  neededFeature
        No value
    h501.never  never
        No value
    h501.noDescriptors  noDescriptors
        No value
    h501.noMatch  noMatch
        No value
    h501.noServiceRelationship  noServiceRelationship
        No value
    h501.nonExistent  nonExistent
        No value
    h501.nonStandard  nonStandard
        Unsigned 32-bit integer
        SEQUENCE_OF_NonStandardParameter
    h501.nonStandardConfirmation  nonStandardConfirmation
        No value
    h501.nonStandardData  nonStandardData
        No value
        NonStandardParameter
    h501.nonStandardRejection  nonStandardRejection
        No value
    h501.nonStandardRequest  nonStandardRequest
        No value
    h501.notSupported  notSupported
        No value
    h501.notUnderstood  notUnderstood
        No value
    h501.originator  originator
        No value
    h501.outOfService  outOfService
        No value
    h501.packetSizeExceeded  packetSizeExceeded
        No value
    h501.packets  packets
        No value
    h501.partialResponse  partialResponse
        Boolean
        BOOLEAN
    h501.pattern  pattern
        Unsigned 32-bit integer
        SEQUENCE_OF_Pattern
    h501.period  period
        Unsigned 32-bit integer
        INTEGER_1_65535
    h501.preConnect  preConnect
        No value
    h501.preferred  preferred
        Unsigned 32-bit integer
    h501.preferred_item  preferred item
        Object Identifier
        OBJECT_IDENTIFIER
    h501.priceElement  priceElement
        Unsigned 32-bit integer
        SEQUENCE_OF_PriceElement
    h501.priceFormula  priceFormula
        String
        IA5String_SIZE_1_2048
    h501.priceInfo  priceInfo
        Unsigned 32-bit integer
        SEQUENCE_OF_PriceInfoSpec
    h501.priority  priority
        Unsigned 32-bit integer
        INTEGER_0_127
    h501.quantum  quantum
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h501.range  range
        No value
    h501.reason  reason
        Unsigned 32-bit integer
        ServiceRejectionReason
    h501.registrationLost  registrationLost
        No value
    h501.releaseCompleteReason  releaseCompleteReason
        Unsigned 32-bit integer
    h501.replyAddress  replyAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_TransportAddress
    h501.requestInProgress  requestInProgress
        No value
    h501.required  required
        Unsigned 32-bit integer
    h501.required_item  required item
        Object Identifier
        OBJECT_IDENTIFIER
    h501.resourceUnavailable  resourceUnavailable
        No value
    h501.routeInfo  routeInfo
        Unsigned 32-bit integer
        SEQUENCE_OF_RouteInformation
    h501.seconds  seconds
        No value
    h501.security  security
        No value
    h501.securityIntegrityFailed  securityIntegrityFailed
        No value
    h501.securityMode  securityMode
        Unsigned 32-bit integer
        SEQUENCE_OF_SecurityMode
    h501.securityReplay  securityReplay
        No value
    h501.securityWrongGeneralID  securityWrongGeneralID
        No value
    h501.securityWrongOID  securityWrongOID
        No value
    h501.securityWrongSendersID  securityWrongSendersID
        No value
    h501.securityWrongSyncTime  securityWrongSyncTime
        No value
    h501.sendAccessRequest  sendAccessRequest
        No value
    h501.sendSetup  sendSetup
        No value
    h501.sendTo  sendTo
        String
        ElementIdentifier
    h501.sendToPEAddress  sendToPEAddress
        Unsigned 32-bit integer
        AliasAddress
    h501.sender  sender
        Unsigned 32-bit integer
        AliasAddress
    h501.senderRole  senderRole
        Unsigned 32-bit integer
        Role
    h501.sequenceNumber  sequenceNumber
        Unsigned 32-bit integer
        INTEGER_0_65535
    h501.serviceConfirmation  serviceConfirmation
        No value
    h501.serviceControl  serviceControl
        Unsigned 32-bit integer
        SEQUENCE_OF_ServiceControlSession
    h501.serviceID  serviceID
        Globally Unique Identifier
    h501.serviceRedirected  serviceRedirected
        No value
    h501.serviceRejection  serviceRejection
        No value
    h501.serviceRelease  serviceRelease
        No value
    h501.serviceRequest  serviceRequest
        No value
    h501.serviceUnavailable  serviceUnavailable
        No value
    h501.sourceInfo  sourceInfo
        No value
        PartyInformation
    h501.specific  specific
        Unsigned 32-bit integer
        AliasAddress
    h501.srcInfo  srcInfo
        No value
        PartyInformation
    h501.start  start
        No value
    h501.startOfRange  startOfRange
        Unsigned 32-bit integer
        PartyNumber
    h501.startTime  startTime
        Date/Time stamp
        TimeStamp
    h501.supportedCircuits  supportedCircuits
        Unsigned 32-bit integer
        SEQUENCE_OF_CircuitIdentifier
    h501.supportedProtocols  supportedProtocols
        Unsigned 32-bit integer
        SEQUENCE_OF_SupportedProtocols
    h501.templates  templates
        Unsigned 32-bit integer
        SEQUENCE_OF_AddressTemplate
    h501.terminated  terminated
        No value
    h501.terminationCause  terminationCause
        No value
    h501.timeToLive  timeToLive
        Unsigned 32-bit integer
        INTEGER_1_4294967295
    h501.timeZone  timeZone
        Signed 32-bit integer
    h501.token  token
        No value
        ClearToken
    h501.tokenNotValid  tokenNotValid
        No value
    h501.tokens  tokens
        Unsigned 32-bit integer
        SEQUENCE_OF_ClearToken
    h501.transportAddress  transportAddress
        Unsigned 32-bit integer
        AliasAddress
    h501.transportQoS  transportQoS
        Unsigned 32-bit integer
    h501.type  type
        No value
        EndpointType
    h501.unavailable  unavailable
        No value
    h501.undefined  undefined
        No value
    h501.units  units
        Unsigned 32-bit integer
    h501.unknownCall  unknownCall
        No value
    h501.unknownMessage  unknownMessage
        Byte array
        OCTET_STRING
    h501.unknownMessageResponse  unknownMessageResponse
        No value
    h501.unknownServiceID  unknownServiceID
        No value
    h501.unknownUsageSendTo  unknownUsageSendTo
        No value
    h501.updateInfo  updateInfo
        Unsigned 32-bit integer
        SEQUENCE_OF_UpdateInformation
    h501.updateType  updateType
        Unsigned 32-bit integer
    h501.usageCallStatus  usageCallStatus
        Unsigned 32-bit integer
    h501.usageConfirmation  usageConfirmation
        No value
    h501.usageFields  usageFields
        Unsigned 32-bit integer
        SEQUENCE_OF_UsageField
    h501.usageIndication  usageIndication
        No value
    h501.usageIndicationConfirmation  usageIndicationConfirmation
        No value
    h501.usageIndicationRejection  usageIndicationRejection
        No value
    h501.usageRejection  usageRejection
        No value
    h501.usageRequest  usageRequest
        No value
    h501.usageSpec  usageSpec
        No value
        UsageSpecification
    h501.usageUnavailable  usageUnavailable
        No value
    h501.userAuthenticator  userAuthenticator
        Unsigned 32-bit integer
        SEQUENCE_OF_CryptoH323Token
    h501.userIdentifier  userIdentifier
        Unsigned 32-bit integer
        AliasAddress
    h501.userInfo  userInfo
        No value
        UserInformation
    h501.validFrom  validFrom
        String
        GlobalTimeStamp
    h501.validUntil  validUntil
        String
        GlobalTimeStamp
    h501.validationConfirmation  validationConfirmation
        No value
    h501.validationRejection  validationRejection
        No value
    h501.validationRequest  validationRequest
        No value
    h501.value  value
        Byte array
        OCTET_STRING
    h501.version  version
        Object Identifier
        ProtocolVersion
    h501.when  when
        No value
    h501.wildcard  wildcard
        Unsigned 32-bit integer
        AliasAddress

H221NonStandard (h221nonstd)

H235-SECURITY-MESSAGES (h235)

    h235.GenericData  GenericData
        No value
    h235.ProfileElement  ProfileElement
        No value
    h235.SrtpCryptoCapability  SrtpCryptoCapability
        Unsigned 32-bit integer
    h235.SrtpCryptoInfo  SrtpCryptoInfo
        No value
    h235.SrtpKeyParameters  SrtpKeyParameters
        No value
    h235.algorithmOID  algorithmOID
        Object Identifier
        OBJECT_IDENTIFIER
    h235.allowMKI  allowMKI
        Boolean
        BOOLEAN
    h235.authenticationBES  authenticationBES
        Unsigned 32-bit integer
    h235.base  base
        No value
        ECpoint
    h235.bits  bits
        Byte array
        BIT_STRING
    h235.certProtectedKey  certProtectedKey
        No value
        SIGNED
    h235.certSign  certSign
        No value
    h235.certificate  certificate
        Byte array
        OCTET_STRING
    h235.challenge  challenge
        Byte array
        ChallengeString
    h235.clearSalt  clearSalt
        Byte array
        OCTET_STRING
    h235.clearSaltingKey  clearSaltingKey
        Byte array
        OCTET_STRING
    h235.cryptoEncryptedToken  cryptoEncryptedToken
        No value
    h235.cryptoHashedToken  cryptoHashedToken
        No value
    h235.cryptoPwdEncr  cryptoPwdEncr
        No value
        ENCRYPTED
    h235.cryptoSignedToken  cryptoSignedToken
        No value
    h235.cryptoSuite  cryptoSuite
        Object Identifier
        OBJECT_IDENTIFIER
    h235.data  data
        Unsigned 32-bit integer
        OCTET_STRING
    h235.default  default
        No value
    h235.dhExch  dhExch
        No value
    h235.dhkey  dhkey
        No value
        DHset
    h235.eckasdh2  eckasdh2
        No value
    h235.eckasdhkey  eckasdhkey
        Unsigned 32-bit integer
        ECKASDH
    h235.eckasdhp  eckasdhp
        No value
    h235.element  element
        Unsigned 32-bit integer
    h235.elementID  elementID
        Unsigned 32-bit integer
        INTEGER_0_255
    h235.encryptedData  encryptedData
        Byte array
        OCTET_STRING
    h235.encryptedSaltingKey  encryptedSaltingKey
        Byte array
        OCTET_STRING
    h235.encryptedSessionKey  encryptedSessionKey
        Byte array
        OCTET_STRING
    h235.fecAfterSrtp  fecAfterSrtp
        No value
    h235.fecBeforeSrtp  fecBeforeSrtp
        No value
    h235.fecOrder  fecOrder
        No value
    h235.fieldSize  fieldSize
        Byte array
        BIT_STRING_SIZE_0_511
    h235.flag  flag
        Boolean
        BOOLEAN
    h235.generalID  generalID
        String
        Identifier
    h235.generator  generator
        Byte array
        BIT_STRING_SIZE_0_2048
    h235.genericKeyMaterial  genericKeyMaterial
        Byte array
        OCTET_STRING
    h235.h235Key  h235Key
        Unsigned 32-bit integer
    h235.halfkey  halfkey
        Byte array
        BIT_STRING_SIZE_0_2048
    h235.hash  hash
        Byte array
        BIT_STRING
    h235.hashedVals  hashedVals
        No value
        ClearToken
    h235.integer  integer
        Signed 32-bit integer
    h235.ipsec  ipsec
        No value
    h235.iv  iv
        Byte array
        OCTET_STRING
    h235.iv16  iv16
        Byte array
    h235.iv8  iv8
        Byte array
    h235.kdr  kdr
        Unsigned 32-bit integer
        INTEGER_0_24
    h235.keyDerivationOID  keyDerivationOID
        Object Identifier
        OBJECT_IDENTIFIER
    h235.keyExch  keyExch
        Object Identifier
        OBJECT_IDENTIFIER
    h235.length  length
        Unsigned 32-bit integer
        INTEGER_1_128
    h235.lifetime  lifetime
        Unsigned 32-bit integer
    h235.masterKey  masterKey
        Byte array
        OCTET_STRING
    h235.masterSalt  masterSalt
        Byte array
        OCTET_STRING
    h235.mki  mki
        No value
    h235.modSize  modSize
        Byte array
        BIT_STRING_SIZE_0_2048
    h235.modulus  modulus
        Byte array
        BIT_STRING_SIZE_0_511
    h235.name  name
        String
        BMPString
    h235.newParameter  newParameter
        Unsigned 32-bit integer
        SEQUENCE_OF_GenericData
    h235.nonStandard  nonStandard
        No value
        NonStandardParameter
    h235.nonStandardIdentifier  nonStandardIdentifier
        Object Identifier
        OBJECT_IDENTIFIER
    h235.octets  octets
        Byte array
        OCTET_STRING
    h235.paramS  paramS
        No value
    h235.paramSsalt  paramSsalt
        No value
        Params
    h235.password  password
        String
    h235.powerOfTwo  powerOfTwo
        Signed 32-bit integer
        INTEGER
    h235.profileInfo  profileInfo
        Unsigned 32-bit integer
        SEQUENCE_OF_ProfileElement
    h235.public_key  public-key
        No value
        ECpoint
    h235.pwdHash  pwdHash
        No value
    h235.pwdSymEnc  pwdSymEnc
        No value
    h235.radius  radius
        No value
    h235.ranInt  ranInt
        Signed 32-bit integer
        INTEGER
    h235.random  random
        Signed 32-bit integer
        RandomVal
    h235.secureChannel  secureChannel
        Byte array
        KeyMaterial
    h235.secureSharedSecret  secureSharedSecret
        No value
        V3KeySyncMaterial
    h235.sendersID  sendersID
        String
        Identifier
    h235.sessionParams  sessionParams
        No value
        SrtpSessionParameters
    h235.sharedSecret  sharedSecret
        No value
        ENCRYPTED
    h235.signature  signature
        Byte array
        BIT_STRING
    h235.specific  specific
        Signed 32-bit integer
        INTEGER
    h235.timeStamp  timeStamp
        Date/Time stamp
    h235.tls  tls
        No value
    h235.toBeSigned  toBeSigned
        No value
    h235.token  token
        No value
        ENCRYPTED
    h235.tokenOID  tokenOID
        Object Identifier
        OBJECT_IDENTIFIER
    h235.type  type
        Object Identifier
        OBJECT_IDENTIFIER
    h235.unauthenticatedSrtp  unauthenticatedSrtp
        Boolean
        BOOLEAN
    h235.unencryptedSrtcp  unencryptedSrtcp
        Boolean
        BOOLEAN
    h235.unencryptedSrtp  unencryptedSrtp
        Boolean
        BOOLEAN
    h235.value  value
        Byte array
        OCTET_STRING
    h235.weierstrassA  weierstrassA
        Byte array
        BIT_STRING_SIZE_0_511
    h235.weierstrassB  weierstrassB
        Byte array
        BIT_STRING_SIZE_0_511
    h235.windowSizeHint  windowSizeHint
        Unsigned 32-bit integer
        INTEGER_64_65535
    h235.x  x
        Byte array
        BIT_STRING_SIZE_0_511
    h235.y  y
        Byte array
        BIT_STRING_SIZE_0_511

H323-MESSAGES (h225)

    h221.Manufacturer  H.221 Manufacturer
        Unsigned 32-bit integer
    h225.AddressPattern  AddressPattern
        Unsigned 32-bit integer
    h225.AdmissionConfirm  AdmissionConfirm
        No value
    h225.AliasAddress  AliasAddress
        Unsigned 32-bit integer
    h225.AlternateGK  AlternateGK
        No value
    h225.AuthenticationMechanism  AuthenticationMechanism
        Unsigned 32-bit integer
    h225.BandwidthDetails  BandwidthDetails
        No value
    h225.CallReferenceValue  CallReferenceValue
        Unsigned 32-bit integer
    h225.CallsAvailable  CallsAvailable
        No value
    h225.ClearToken  ClearToken
        No value
    h225.ConferenceIdentifier  ConferenceIdentifier
        Globally Unique Identifier
    h225.ConferenceList  ConferenceList
        No value
    h225.CryptoH323Token  CryptoH323Token
        Unsigned 32-bit integer
    h225.DataRate  DataRate
        No value
    h225.DestinationInfo_item  DestinationInfo item
        Unsigned 32-bit integer
    h225.DisplayName  DisplayName
        No value
    h225.Endpoint  Endpoint
        No value
    h225.EnumeratedParameter  EnumeratedParameter
        No value
    h225.ExtendedAliasAddress  ExtendedAliasAddress
        No value
    h225.FastStart_item  FastStart item
        Unsigned 32-bit integer
    h225.FeatureDescriptor  FeatureDescriptor
        No value
    h225.GenericData  GenericData
        No value
    h225.H245Control_item  H245Control item
        Unsigned 32-bit integer
    h225.H245Security  H245Security
        Unsigned 32-bit integer
    h225.H248PackagesDescriptor  H248PackagesDescriptor
        Byte array
    h225.H323_UserInformation  H323-UserInformation
        No value
    h225.IntegrityMechanism  IntegrityMechanism
        Unsigned 32-bit integer
    h225.Language_item  Language item
        String
        IA5String_SIZE_1_32
    h225.NonStandardParameter  NonStandardParameter
        No value
    h225.ParallelH245Control_item  ParallelH245Control item
        Unsigned 32-bit integer
    h225.PartyNumber  PartyNumber
        Unsigned 32-bit integer
    h225.QOSCapability  QOSCapability
        No value
    h225.RTPSession  RTPSession
        No value
    h225.RasMessage  RasMessage
        Unsigned 32-bit integer
    h225.RasUsageSpecification  RasUsageSpecification
        No value
    h225.ServiceControlSession  ServiceControlSession
        No value
    h225.SupportedPrefix  SupportedPrefix
        No value
    h225.SupportedProtocols  SupportedProtocols
        Unsigned 32-bit integer
    h225.TransportAddress  TransportAddress
        Unsigned 32-bit integer
    h225.TransportChannelInfo  TransportChannelInfo
        No value
    h225.TunnelledProtocol  TunnelledProtocol
        No value
    h225.abbreviatedNumber  abbreviatedNumber
        No value
    h225.activeMC  activeMC
        Boolean
        BOOLEAN
    h225.adaptiveBusy  adaptiveBusy
        No value
    h225.additionalSourceAddresses  additionalSourceAddresses
        Unsigned 32-bit integer
        SEQUENCE_OF_ExtendedAliasAddress
    h225.additiveRegistration  additiveRegistration
        No value
    h225.additiveRegistrationNotSupported  additiveRegistrationNotSupported
        No value
    h225.address  address
        String
        IsupDigits
    h225.addressNotAvailable  addressNotAvailable
        No value
    h225.admissionConfirm  admissionConfirm
        No value
    h225.admissionConfirmSequence  admissionConfirmSequence
        Unsigned 32-bit integer
        SEQUENCE_OF_AdmissionConfirm
    h225.admissionReject  admissionReject
        No value
    h225.admissionRequest  admissionRequest
        No value
    h225.alerting  alerting
        No value
        Alerting_UUIE
    h225.alertingAddress  alertingAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.alertingTime  alertingTime
        Date/Time stamp
        TimeStamp
    h225.algorithmOID  algorithmOID
        Object Identifier
        OBJECT_IDENTIFIER
    h225.algorithmOIDs  algorithmOIDs
        Unsigned 32-bit integer
    h225.algorithmOIDs_item  algorithmOIDs item
        Object Identifier
        OBJECT_IDENTIFIER
    h225.alias  alias
        Unsigned 32-bit integer
        AliasAddress
    h225.aliasAddress  aliasAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.aliasesInconsistent  aliasesInconsistent
        No value
    h225.allowedBandWidth  allowedBandWidth
        Unsigned 32-bit integer
        BandWidth
    h225.almostOutOfResources  almostOutOfResources
        Boolean
        BOOLEAN
    h225.altGKInfo  altGKInfo
        No value
    h225.altGKisPermanent  altGKisPermanent
        Boolean
        BOOLEAN
    h225.alternateEndpoints  alternateEndpoints
        Unsigned 32-bit integer
        SEQUENCE_OF_Endpoint
    h225.alternateGatekeeper  alternateGatekeeper
        Unsigned 32-bit integer
        SEQUENCE_OF_AlternateGK
    h225.alternateTransportAddresses  alternateTransportAddresses
        No value
    h225.alternativeAddress  alternativeAddress
        Unsigned 32-bit integer
        TransportAddress
    h225.alternativeAliasAddress  alternativeAliasAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.amountString  amountString
        String
        BMPString_SIZE_1_512
    h225.annexE  annexE
        Unsigned 32-bit integer
        SEQUENCE_OF_TransportAddress
    h225.ansi_41_uim  ansi-41-uim
        No value
    h225.answerCall  answerCall
        Boolean
        BOOLEAN
    h225.answeredCall  answeredCall
        Boolean
        BOOLEAN
    h225.assignedGatekeeper  assignedGatekeeper
        No value
        AlternateGK
    h225.associatedSessionIds  associatedSessionIds
        Unsigned 32-bit integer
    h225.associatedSessionIds_item  associatedSessionIds item
        Unsigned 32-bit integer
        INTEGER_1_255
    h225.audio  audio
        Unsigned 32-bit integer
        SEQUENCE_OF_RTPSession
    h225.authenticationCapability  authenticationCapability
        Unsigned 32-bit integer
        SEQUENCE_OF_AuthenticationMechanism
    h225.authenticationMode  authenticationMode
        Unsigned 32-bit integer
        AuthenticationMechanism
    h225.authenticaton  authenticaton
        Unsigned 32-bit integer
        SecurityServiceMode
    h225.auto  auto
        No value
    h225.bChannel  bChannel
        No value
    h225.badFormatAddress  badFormatAddress
        No value
    h225.bandWidth  bandWidth
        Unsigned 32-bit integer
    h225.bandwidth  bandwidth
        Unsigned 32-bit integer
    h225.bandwidthConfirm  bandwidthConfirm
        No value
    h225.bandwidthDetails  bandwidthDetails
        Unsigned 32-bit integer
        SEQUENCE_OF_BandwidthDetails
    h225.bandwidthReject  bandwidthReject
        No value
    h225.bandwidthRequest  bandwidthRequest
        No value
    h225.billingMode  billingMode
        Unsigned 32-bit integer
    h225.bonded_mode1  bonded-mode1
        No value
    h225.bonded_mode2  bonded-mode2
        No value
    h225.bonded_mode3  bonded-mode3
        No value
    h225.bool  bool
        Boolean
        BOOLEAN
    h225.busyAddress  busyAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.callCreditCapability  callCreditCapability
        No value
    h225.callCreditServiceControl  callCreditServiceControl
        No value
    h225.callDurationLimit  callDurationLimit
        Unsigned 32-bit integer
        INTEGER_1_4294967295
    h225.callEnd  callEnd
        No value
    h225.callForwarded  callForwarded
        No value
    h225.callIdentifier  callIdentifier
        No value
    h225.callInProgress  callInProgress
        No value
    h225.callIndependentSupplementaryService  callIndependentSupplementaryService
        No value
    h225.callLinkage  callLinkage
        No value
    h225.callModel  callModel
        Unsigned 32-bit integer
    h225.callProceeding  callProceeding
        No value
        CallProceeding_UUIE
    h225.callReferenceValue  callReferenceValue
        Unsigned 32-bit integer
    h225.callServices  callServices
        No value
        QseriesOptions
    h225.callSignalAddress  callSignalAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_TransportAddress
    h225.callSignalling  callSignalling
        No value
        TransportChannelInfo
    h225.callSpecific  callSpecific
        No value
    h225.callStart  callStart
        No value
    h225.callStartingPoint  callStartingPoint
        No value
        RasUsageSpecificationcallStartingPoint
    h225.callType  callType
        Unsigned 32-bit integer
    h225.calledPartyNotRegistered  calledPartyNotRegistered
        No value
    h225.callerNotRegistered  callerNotRegistered
        No value
    h225.calls  calls
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h225.canDisplayAmountString  canDisplayAmountString
        Boolean
        BOOLEAN
    h225.canEnforceDurationLimit  canEnforceDurationLimit
        Boolean
        BOOLEAN
    h225.canMapAlias  canMapAlias
        Boolean
        BOOLEAN
    h225.canMapSrcAlias  canMapSrcAlias
        Boolean
        BOOLEAN
    h225.canOverlapSend  canOverlapSend
        Boolean
        BOOLEAN
    h225.canReportCallCapacity  canReportCallCapacity
        Boolean
        BOOLEAN
    h225.capability_negotiation  capability-negotiation
        No value
    h225.capacity  capacity
        No value
        CallCapacity
    h225.capacityInfoRequested  capacityInfoRequested
        No value
    h225.capacityReportingCapability  capacityReportingCapability
        No value
    h225.capacityReportingSpec  capacityReportingSpec
        No value
        CapacityReportingSpecification
    h225.carrier  carrier
        No value
        CarrierInfo
    h225.carrierIdentificationCode  carrierIdentificationCode
        Byte array
        OCTET_STRING_SIZE_3_4
    h225.carrierName  carrierName
        String
        IA5String_SIZE_1_128
    h225.channelMultiplier  channelMultiplier
        Unsigned 32-bit integer
        INTEGER_1_256
    h225.channelRate  channelRate
        Unsigned 32-bit integer
        BandWidth
    h225.cic  cic
        No value
        CicInfo
    h225.cic_item  cic item
        Byte array
        OCTET_STRING_SIZE_2_4
    h225.circuitInfo  circuitInfo
        No value
    h225.close  close
        No value
    h225.cname  cname
        String
        PrintableString
    h225.collectDestination  collectDestination
        No value
    h225.collectPIN  collectPIN
        No value
    h225.complete  complete
        No value
    h225.compound  compound
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_512_OF_EnumeratedParameter
    h225.conferenceAlias  conferenceAlias
        Unsigned 32-bit integer
        AliasAddress
    h225.conferenceCalling  conferenceCalling
        Boolean
        BOOLEAN
    h225.conferenceGoal  conferenceGoal
        Unsigned 32-bit integer
    h225.conferenceID  conferenceID
        Globally Unique Identifier
        ConferenceIdentifier
    h225.conferenceListChoice  conferenceListChoice
        No value
    h225.conferences  conferences
        Unsigned 32-bit integer
        SEQUENCE_OF_ConferenceList
    h225.connect  connect
        No value
        Connect_UUIE
    h225.connectTime  connectTime
        Date/Time stamp
        TimeStamp
    h225.connectedAddress  connectedAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.connectionAggregation  connectionAggregation
        Unsigned 32-bit integer
        ScnConnectionAggregation
    h225.connectionParameters  connectionParameters
        No value
    h225.connectionType  connectionType
        Unsigned 32-bit integer
        ScnConnectionType
    h225.content  content
        Unsigned 32-bit integer
    h225.contents  contents
        Unsigned 32-bit integer
        ServiceControlDescriptor
    h225.create  create
        No value
    h225.credit  credit
        No value
    h225.cryptoEPCert  cryptoEPCert
        No value
        SIGNED
    h225.cryptoEPPwdEncr  cryptoEPPwdEncr
        No value
        ENCRYPTED
    h225.cryptoEPPwdHash  cryptoEPPwdHash
        No value
    h225.cryptoFastStart  cryptoFastStart
        No value
        SIGNED
    h225.cryptoGKCert  cryptoGKCert
        No value
        SIGNED
    h225.cryptoGKPwdEncr  cryptoGKPwdEncr
        No value
        ENCRYPTED
    h225.cryptoGKPwdHash  cryptoGKPwdHash
        No value
    h225.cryptoTokens  cryptoTokens
        Unsigned 32-bit integer
        SEQUENCE_OF_CryptoH323Token
    h225.currentCallCapacity  currentCallCapacity
        No value
        CallCapacityInfo
    h225.data  data
        Unsigned 32-bit integer
        T_nsp_data
    h225.dataPartyNumber  dataPartyNumber
        String
        NumberDigits
    h225.dataRatesSupported  dataRatesSupported
        Unsigned 32-bit integer
        SEQUENCE_OF_DataRate
    h225.debit  debit
        No value
    h225.default  default
        No value
    h225.delay  delay
        Unsigned 32-bit integer
        INTEGER_1_65535
    h225.desiredFeatures  desiredFeatures
        Unsigned 32-bit integer
        SEQUENCE_OF_FeatureDescriptor
    h225.desiredProtocols  desiredProtocols
        Unsigned 32-bit integer
        SEQUENCE_OF_SupportedProtocols
    h225.desiredTunnelledProtocol  desiredTunnelledProtocol
        No value
        TunnelledProtocol
    h225.destAlternatives  destAlternatives
        Unsigned 32-bit integer
        SEQUENCE_OF_Endpoint
    h225.destCallSignalAddress  destCallSignalAddress
        Unsigned 32-bit integer
        TransportAddress
    h225.destExtraCRV  destExtraCRV
        Unsigned 32-bit integer
        SEQUENCE_OF_CallReferenceValue
    h225.destExtraCallInfo  destExtraCallInfo
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.destinationAddress  destinationAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.destinationCircuitID  destinationCircuitID
        No value
        CircuitIdentifier
    h225.destinationInfo  destinationInfo
        No value
        EndpointType
    h225.destinationRejection  destinationRejection
        No value
    h225.destinationType  destinationType
        No value
        EndpointType
    h225.dialledDigits  dialledDigits
        String
        DialedDigits
    h225.digSig  digSig
        No value
    h225.direct  direct
        No value
    h225.discoveryComplete  discoveryComplete
        Boolean
        BOOLEAN
    h225.discoveryRequired  discoveryRequired
        No value
    h225.disengageConfirm  disengageConfirm
        No value
    h225.disengageReason  disengageReason
        Unsigned 32-bit integer
    h225.disengageReject  disengageReject
        No value
    h225.disengageRequest  disengageRequest
        No value
    h225.displayName  displayName
        Unsigned 32-bit integer
        SEQUENCE_OF_DisplayName
    h225.duplicateAlias  duplicateAlias
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.e164Number  e164Number
        No value
        PublicPartyNumber
    h225.email_ID  email-ID
        String
        IA5String_SIZE_1_512
    h225.empty  empty
        No value
        T_empty_flg
    h225.encryption  encryption
        Unsigned 32-bit integer
        SecurityServiceMode
    h225.end  end
        No value
    h225.endOfRange  endOfRange
        Unsigned 32-bit integer
        PartyNumber
    h225.endTime  endTime
        No value
    h225.endpointAlias  endpointAlias
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.endpointAliasPattern  endpointAliasPattern
        Unsigned 32-bit integer
        SEQUENCE_OF_AddressPattern
    h225.endpointBased  endpointBased
        No value
    h225.endpointControlled  endpointControlled
        No value
    h225.endpointIdentifier  endpointIdentifier
        String
    h225.endpointType  endpointType
        No value
    h225.endpointVendor  endpointVendor
        No value
        VendorIdentifier
    h225.enforceCallDurationLimit  enforceCallDurationLimit
        Boolean
        BOOLEAN
    h225.enterpriseNumber  enterpriseNumber
        Object Identifier
        OBJECT_IDENTIFIER
    h225.esn  esn
        String
        TBCD_STRING_SIZE_16
    h225.exceedsCallCapacity  exceedsCallCapacity
        No value
    h225.facility  facility
        No value
        Facility_UUIE
    h225.facilityCallDeflection  facilityCallDeflection
        No value
    h225.failed  failed
        No value
    h225.fastConnectRefused  fastConnectRefused
        No value
    h225.fastStart  fastStart
        Unsigned 32-bit integer
    h225.featureServerAlias  featureServerAlias
        Unsigned 32-bit integer
        AliasAddress
    h225.featureSet  featureSet
        No value
    h225.featureSetUpdate  featureSetUpdate
        No value
    h225.forcedDrop  forcedDrop
        No value
    h225.forwardedElements  forwardedElements
        No value
    h225.fullRegistrationRequired  fullRegistrationRequired
        No value
    h225.gatekeeper  gatekeeper
        No value
        GatekeeperInfo
    h225.gatekeeperBased  gatekeeperBased
        No value
    h225.gatekeeperConfirm  gatekeeperConfirm
        No value
    h225.gatekeeperControlled  gatekeeperControlled
        No value
    h225.gatekeeperId  gatekeeperId
        String
        GatekeeperIdentifier
    h225.gatekeeperIdentifier  gatekeeperIdentifier
        String
    h225.gatekeeperReject  gatekeeperReject
        No value
    h225.gatekeeperRequest  gatekeeperRequest
        No value
    h225.gatekeeperResources  gatekeeperResources
        No value
    h225.gatekeeperRouted  gatekeeperRouted
        No value
    h225.gateway  gateway
        No value
        GatewayInfo
    h225.gatewayDataRate  gatewayDataRate
        No value
        DataRate
    h225.gatewayResources  gatewayResources
        No value
    h225.genericData  genericData
        Unsigned 32-bit integer
        SEQUENCE_OF_GenericData
    h225.genericDataReason  genericDataReason
        No value
    h225.globalCallId  globalCallId
        Globally Unique Identifier
        GloballyUniqueID
    h225.group  group
        String
        IA5String_SIZE_1_128
    h225.gsm_uim  gsm-uim
        No value
    h225.guid  guid
        Globally Unique Identifier
    h225.h221  h221
        No value
    h225.h221NonStandard  h221NonStandard
        No value
    h225.h245  h245
        No value
        TransportChannelInfo
    h225.h245Address  h245Address
        Unsigned 32-bit integer
        H245TransportAddress
    h225.h245Control  h245Control
        Unsigned 32-bit integer
    h225.h245SecurityCapability  h245SecurityCapability
        Unsigned 32-bit integer
        SEQUENCE_OF_H245Security
    h225.h245SecurityMode  h245SecurityMode
        Unsigned 32-bit integer
        H245Security
    h225.h245Tunnelling  h245Tunnelling
        Boolean
    h225.h248Message  h248Message
        Byte array
        OCTET_STRING
    h225.h310  h310
        No value
        H310Caps
    h225.h310GwCallsAvailable  h310GwCallsAvailable
        Unsigned 32-bit integer
        SEQUENCE_OF_CallsAvailable
    h225.h320  h320
        No value
        H320Caps
    h225.h320GwCallsAvailable  h320GwCallsAvailable
        Unsigned 32-bit integer
        SEQUENCE_OF_CallsAvailable
    h225.h321  h321
        No value
        H321Caps
    h225.h321GwCallsAvailable  h321GwCallsAvailable
        Unsigned 32-bit integer
        SEQUENCE_OF_CallsAvailable
    h225.h322  h322
        No value
        H322Caps
    h225.h322GwCallsAvailable  h322GwCallsAvailable
        Unsigned 32-bit integer
        SEQUENCE_OF_CallsAvailable
    h225.h323  h323
        No value
        H323Caps
    h225.h323GwCallsAvailable  h323GwCallsAvailable
        Unsigned 32-bit integer
        SEQUENCE_OF_CallsAvailable
    h225.h323_ID  h323-ID
        String
        BMPString_SIZE_1_256
    h225.h323_message_body  h323-message-body
        Unsigned 32-bit integer
    h225.h323_uu_pdu  h323-uu-pdu
        No value
    h225.h323pdu  h323pdu
        No value
        H323_UU_PDU
    h225.h324  h324
        No value
        H324Caps
    h225.h324GwCallsAvailable  h324GwCallsAvailable
        Unsigned 32-bit integer
        SEQUENCE_OF_CallsAvailable
    h225.h4501SupplementaryService  h4501SupplementaryService
        Unsigned 32-bit integer
    h225.h4501SupplementaryService_item  h4501SupplementaryService item
        Unsigned 32-bit integer
    h225.hMAC_MD5  hMAC-MD5
        No value
    h225.hMAC_iso10118_2_l  hMAC-iso10118-2-l
        Unsigned 32-bit integer
        EncryptIntAlg
    h225.hMAC_iso10118_2_s  hMAC-iso10118-2-s
        Unsigned 32-bit integer
        EncryptIntAlg
    h225.hMAC_iso10118_3  hMAC-iso10118-3
        Object Identifier
        OBJECT_IDENTIFIER
    h225.hopCount  hopCount
        Unsigned 32-bit integer
        INTEGER_1_31
    h225.hopCountExceeded  hopCountExceeded
        No value
    h225.hplmn  hplmn
        String
        TBCD_STRING_SIZE_1_4
    h225.hybrid1536  hybrid1536
        No value
    h225.hybrid1920  hybrid1920
        No value
    h225.hybrid2x64  hybrid2x64
        No value
    h225.hybrid384  hybrid384
        No value
    h225.icv  icv
        Byte array
        BIT_STRING
    h225.id  id
        Unsigned 32-bit integer
        TunnelledProtocol_id
    h225.imei  imei
        String
        TBCD_STRING_SIZE_15_16
    h225.imsi  imsi
        String
        TBCD_STRING_SIZE_3_16
    h225.inConf  inConf
        No value
    h225.inIrr  inIrr
        No value
    h225.incomplete  incomplete
        No value
    h225.incompleteAddress  incompleteAddress
        No value
    h225.infoRequest  infoRequest
        No value
    h225.infoRequestAck  infoRequestAck
        No value
    h225.infoRequestNak  infoRequestNak
        No value
    h225.infoRequestResponse  infoRequestResponse
        No value
    h225.information  information
        No value
        Information_UUIE
    h225.insufficientResources  insufficientResources
        No value
    h225.integrity  integrity
        Unsigned 32-bit integer
        SecurityServiceMode
    h225.integrityCheckValue  integrityCheckValue
        No value
        ICV
    h225.internationalNumber  internationalNumber
        No value
    h225.invalidAlias  invalidAlias
        No value
    h225.invalidCID  invalidCID
        No value
    h225.invalidCall  invalidCall
        No value
    h225.invalidCallSignalAddress  invalidCallSignalAddress
        No value
    h225.invalidConferenceID  invalidConferenceID
        No value
    h225.invalidEndpointIdentifier  invalidEndpointIdentifier
        No value
    h225.invalidPermission  invalidPermission
        No value
    h225.invalidRASAddress  invalidRASAddress
        No value
    h225.invalidRevision  invalidRevision
        No value
    h225.invalidTerminalAliases  invalidTerminalAliases
        No value
    h225.invalidTerminalType  invalidTerminalType
        No value
    h225.invite  invite
        No value
    h225.ip  ip
        IPv4 address
        T_h245Ip
    h225.ip6Address  ip6Address
        No value
        T_h245Ip6Address
    h225.ipAddress  ipAddress
        No value
        T_h245IpAddress
    h225.ipSourceRoute  ipSourceRoute
        No value
        T_h245IpSourceRoute
    h225.ipsec  ipsec
        No value
        SecurityCapabilities
    h225.ipxAddress  ipxAddress
        No value
        T_h245IpxAddress
    h225.irrFrequency  irrFrequency
        Unsigned 32-bit integer
        INTEGER_1_65535
    h225.irrFrequencyInCall  irrFrequencyInCall
        Unsigned 32-bit integer
        INTEGER_1_65535
    h225.irrStatus  irrStatus
        Unsigned 32-bit integer
        InfoRequestResponseStatus
    h225.isText  isText
        No value
    h225.iso9797  iso9797
        Object Identifier
        OBJECT_IDENTIFIER
    h225.isoAlgorithm  isoAlgorithm
        Object Identifier
        OBJECT_IDENTIFIER
    h225.isupNumber  isupNumber
        Unsigned 32-bit integer
    h225.join  join
        No value
    h225.keepAlive  keepAlive
        Boolean
        BOOLEAN
    h225.language  language
        Unsigned 32-bit integer
    h225.level1RegionalNumber  level1RegionalNumber
        No value
    h225.level2RegionalNumber  level2RegionalNumber
        No value
    h225.localNumber  localNumber
        No value
    h225.locationConfirm  locationConfirm
        No value
    h225.locationReject  locationReject
        No value
    h225.locationRequest  locationRequest
        No value
    h225.loose  loose
        No value
    h225.maintainConnection  maintainConnection
        Boolean
        BOOLEAN
    h225.maintenance  maintenance
        No value
    h225.makeCall  makeCall
        Boolean
        BOOLEAN
    h225.manufacturerCode  manufacturerCode
        Unsigned 32-bit integer
    h225.maximumCallCapacity  maximumCallCapacity
        No value
        CallCapacityInfo
    h225.mc  mc
        Boolean
        BOOLEAN
    h225.mcu  mcu
        No value
        McuInfo
    h225.mcuCallsAvailable  mcuCallsAvailable
        Unsigned 32-bit integer
        SEQUENCE_OF_CallsAvailable
    h225.mdn  mdn
        String
        TBCD_STRING_SIZE_3_16
    h225.mediaWaitForConnect  mediaWaitForConnect
        Boolean
        BOOLEAN
    h225.member  member
        Unsigned 32-bit integer
    h225.member_item  member item
        Unsigned 32-bit integer
        INTEGER_0_65535
    h225.messageContent  messageContent
        Unsigned 32-bit integer
    h225.messageContent_item  messageContent item
        Unsigned 32-bit integer
        T_messageContent_item
    h225.messageNotUnderstood  messageNotUnderstood
        Byte array
        OCTET_STRING
    h225.mid  mid
        String
        TBCD_STRING_SIZE_1_4
    h225.min  min
        String
        TBCD_STRING_SIZE_3_16
    h225.mobileUIM  mobileUIM
        Unsigned 32-bit integer
    h225.modifiedSrcInfo  modifiedSrcInfo
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.mscid  mscid
        String
        TBCD_STRING_SIZE_3_16
    h225.msisdn  msisdn
        String
        TBCD_STRING_SIZE_3_16
    h225.multicast  multicast
        Boolean
        BOOLEAN
    h225.multipleCalls  multipleCalls
        Boolean
        BOOLEAN
    h225.multirate  multirate
        No value
    h225.nToN  nToN
        No value
    h225.nToOne  nToOne
        No value
    h225.nakReason  nakReason
        Unsigned 32-bit integer
        InfoRequestNakReason
    h225.name  name
        String
        BMPString_SIZE_1_80
    h225.nationalNumber  nationalNumber
        No value
    h225.nationalStandardPartyNumber  nationalStandardPartyNumber
        String
        NumberDigits
    h225.natureOfAddress  natureOfAddress
        Unsigned 32-bit integer
    h225.needResponse  needResponse
        Boolean
        BOOLEAN
    h225.needToRegister  needToRegister
        Boolean
        BOOLEAN
    h225.neededFeatureNotSupported  neededFeatureNotSupported
        No value
    h225.neededFeatures  neededFeatures
        Unsigned 32-bit integer
        SEQUENCE_OF_FeatureDescriptor
    h225.nested  nested
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_16_OF_GenericData
    h225.nestedcryptoToken  nestedcryptoToken
        Unsigned 32-bit integer
        CryptoToken
    h225.netBios  netBios
        Byte array
        OCTET_STRING_SIZE_16
    h225.netnum  netnum
        Byte array
        OCTET_STRING_SIZE_4
    h225.networkSpecificNumber  networkSpecificNumber
        No value
    h225.newConnectionNeeded  newConnectionNeeded
        No value
    h225.newTokens  newTokens
        No value
    h225.nextSegmentRequested  nextSegmentRequested
        Unsigned 32-bit integer
        INTEGER_0_65535
    h225.noBandwidth  noBandwidth
        No value
    h225.noControl  noControl
        No value
    h225.noH245  noH245
        No value
    h225.noPermission  noPermission
        No value
    h225.noRouteToDestination  noRouteToDestination
        No value
    h225.noSecurity  noSecurity
        No value
    h225.node  node
        Byte array
        OCTET_STRING_SIZE_6
    h225.nonIsoIM  nonIsoIM
        Unsigned 32-bit integer
        NonIsoIntegrityMechanism
    h225.nonStandard  nonStandard
        No value
        NonStandardParameter
    h225.nonStandardAddress  nonStandardAddress
        No value
        NonStandardParameter
    h225.nonStandardControl  nonStandardControl
        Unsigned 32-bit integer
        SEQUENCE_OF_NonStandardParameter
    h225.nonStandardData  nonStandardData
        No value
        NonStandardParameter
    h225.nonStandardIdentifier  nonStandardIdentifier
        Unsigned 32-bit integer
    h225.nonStandardMessage  nonStandardMessage
        No value
    h225.nonStandardProtocol  nonStandardProtocol
        No value
    h225.nonStandardReason  nonStandardReason
        No value
        NonStandardParameter
    h225.nonStandardUsageFields  nonStandardUsageFields
        Unsigned 32-bit integer
        SEQUENCE_OF_NonStandardParameter
    h225.nonStandardUsageTypes  nonStandardUsageTypes
        Unsigned 32-bit integer
        SEQUENCE_OF_NonStandardParameter
    h225.none  none
        No value
    h225.normalDrop  normalDrop
        No value
    h225.notAvailable  notAvailable
        No value
    h225.notBound  notBound
        No value
    h225.notCurrentlyRegistered  notCurrentlyRegistered
        No value
    h225.notRegistered  notRegistered
        No value
    h225.notify  notify
        No value
        Notify_UUIE
    h225.nsap  nsap
        Byte array
        OCTET_STRING_SIZE_1_20
    h225.number16  number16
        Unsigned 32-bit integer
        INTEGER_0_65535
    h225.number32  number32
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h225.number8  number8
        Unsigned 32-bit integer
        INTEGER_0_255
    h225.numberOfScnConnections  numberOfScnConnections
        Unsigned 32-bit integer
        INTEGER_0_65535
    h225.object  object
        Object Identifier
        T_nsiOID
    h225.oid  oid
        Object Identifier
    h225.oneToN  oneToN
        No value
    h225.open  open
        No value
    h225.originator  originator
        Boolean
        BOOLEAN
    h225.pISNSpecificNumber  pISNSpecificNumber
        No value
    h225.parallelH245Control  parallelH245Control
        Unsigned 32-bit integer
    h225.parameters  parameters
        Unsigned 32-bit integer
    h225.parameters_item  parameters item
        No value
    h225.partyNumber  partyNumber
        Unsigned 32-bit integer
    h225.pdu  pdu
        Unsigned 32-bit integer
    h225.pdu_item  pdu item
        No value
    h225.perCallInfo  perCallInfo
        Unsigned 32-bit integer
    h225.perCallInfo_item  perCallInfo item
        No value
    h225.permissionDenied  permissionDenied
        No value
    h225.pointCode  pointCode
        Byte array
        OCTET_STRING_SIZE_2_5
    h225.pointToPoint  pointToPoint
        No value
    h225.port  port
        Unsigned 32-bit integer
        T_h245IpPort
    h225.preGrantedARQ  preGrantedARQ
        No value
    h225.prefix  prefix
        Unsigned 32-bit integer
        AliasAddress
    h225.presentationAllowed  presentationAllowed
        No value
    h225.presentationIndicator  presentationIndicator
        Unsigned 32-bit integer
    h225.presentationRestricted  presentationRestricted
        No value
    h225.priority  priority
        Unsigned 32-bit integer
        INTEGER_0_127
    h225.privateNumber  privateNumber
        No value
        PrivatePartyNumber
    h225.privateNumberDigits  privateNumberDigits
        String
        NumberDigits
    h225.privateTypeOfNumber  privateTypeOfNumber
        Unsigned 32-bit integer
    h225.productId  productId
        String
        OCTET_STRING_SIZE_1_256
    h225.progress  progress
        No value
        Progress_UUIE
    h225.protocol  protocol
        Unsigned 32-bit integer
        SEQUENCE_OF_SupportedProtocols
    h225.protocolIdentifier  protocolIdentifier
        Object Identifier
    h225.protocolType  protocolType
        String
        IA5String_SIZE_1_64
    h225.protocolVariant  protocolVariant
        String
        IA5String_SIZE_1_64
    h225.protocol_discriminator  protocol-discriminator
        Unsigned 32-bit integer
        INTEGER_0_255
    h225.protocols  protocols
        Unsigned 32-bit integer
        SEQUENCE_OF_SupportedProtocols
    h225.provisionalRespToH245Tunnelling  provisionalRespToH245Tunnelling
        No value
    h225.publicNumberDigits  publicNumberDigits
        String
        NumberDigits
    h225.publicTypeOfNumber  publicTypeOfNumber
        Unsigned 32-bit integer
    h225.q932Full  q932Full
        Boolean
        BOOLEAN
    h225.q951Full  q951Full
        Boolean
        BOOLEAN
    h225.q952Full  q952Full
        Boolean
        BOOLEAN
    h225.q953Full  q953Full
        Boolean
        BOOLEAN
    h225.q954Info  q954Info
        No value
        Q954Details
    h225.q955Full  q955Full
        Boolean
        BOOLEAN
    h225.q956Full  q956Full
        Boolean
        BOOLEAN
    h225.q957Full  q957Full
        Boolean
        BOOLEAN
    h225.qOSCapabilities  qOSCapabilities
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_256_OF_QOSCapability
    h225.qosControlNotSupported  qosControlNotSupported
        No value
    h225.qualificationInformationCode  qualificationInformationCode
        Byte array
        OCTET_STRING_SIZE_1
    h225.range  range
        No value
    h225.ras.dup  Duplicate RAS Message
        Unsigned 32-bit integer
    h225.ras.reqframe  RAS Request Frame
        Frame number
    h225.ras.rspframe  RAS Response Frame
        Frame number
    h225.ras.timedelta  RAS Service Response Time
        Time duration
        Timedelta between RAS-Request and RAS-Response
    h225.rasAddress  rasAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_TransportAddress
    h225.raw  raw
        Byte array
        OCTET_STRING
    h225.reason  reason
        Unsigned 32-bit integer
        ReleaseCompleteReason
    h225.recvAddress  recvAddress
        Unsigned 32-bit integer
        TransportAddress
    h225.refresh  refresh
        No value
    h225.registerWithAssignedGK  registerWithAssignedGK
        No value
    h225.registrationConfirm  registrationConfirm
        No value
    h225.registrationReject  registrationReject
        No value
    h225.registrationRequest  registrationRequest
        No value
    h225.rehomingModel  rehomingModel
        Unsigned 32-bit integer
    h225.rejectReason  rejectReason
        Unsigned 32-bit integer
        GatekeeperRejectReason
    h225.releaseComplete  releaseComplete
        No value
        ReleaseComplete_UUIE
    h225.releaseCompleteCauseIE  releaseCompleteCauseIE
        Byte array
        OCTET_STRING_SIZE_2_32
    h225.remoteExtensionAddress  remoteExtensionAddress
        Unsigned 32-bit integer
        AliasAddress
    h225.replaceWithConferenceInvite  replaceWithConferenceInvite
        Globally Unique Identifier
        ConferenceIdentifier
    h225.replacementFeatureSet  replacementFeatureSet
        Boolean
        BOOLEAN
    h225.replyAddress  replyAddress
        Unsigned 32-bit integer
        TransportAddress
    h225.requestDenied  requestDenied
        No value
    h225.requestInProgress  requestInProgress
        No value
    h225.requestSeqNum  requestSeqNum
        Unsigned 32-bit integer
    h225.requestToDropOther  requestToDropOther
        No value
    h225.required  required
        No value
        RasUsageInfoTypes
    h225.reregistrationRequired  reregistrationRequired
        No value
    h225.resourceUnavailable  resourceUnavailable
        No value
    h225.resourcesAvailableConfirm  resourcesAvailableConfirm
        No value
    h225.resourcesAvailableIndicate  resourcesAvailableIndicate
        No value
    h225.restart  restart
        No value
    h225.result  result
        Unsigned 32-bit integer
    h225.route  route
        Unsigned 32-bit integer
        T_h245Route
    h225.routeCallToGatekeeper  routeCallToGatekeeper
        No value
    h225.routeCallToMC  routeCallToMC
        No value
    h225.routeCallToSCN  routeCallToSCN
        Unsigned 32-bit integer
        SEQUENCE_OF_PartyNumber
    h225.routeCalltoSCN  routeCalltoSCN
        Unsigned 32-bit integer
        SEQUENCE_OF_PartyNumber
    h225.route_item  route item
        Byte array
        OCTET_STRING_SIZE_4
    h225.routing  routing
        Unsigned 32-bit integer
        T_h245Routing
    h225.routingNumberNationalFormat  routingNumberNationalFormat
        No value
    h225.routingNumberNetworkSpecificFormat  routingNumberNetworkSpecificFormat
        No value
    h225.routingNumberWithCalledDirectoryNumber  routingNumberWithCalledDirectoryNumber
        No value
    h225.rtcpAddress  rtcpAddress
        No value
        TransportChannelInfo
    h225.rtcpAddresses  rtcpAddresses
        No value
        TransportChannelInfo
    h225.rtpAddress  rtpAddress
        No value
        TransportChannelInfo
    h225.screeningIndicator  screeningIndicator
        Unsigned 32-bit integer
    h225.sctp  sctp
        Unsigned 32-bit integer
        SEQUENCE_OF_TransportAddress
    h225.securityCertificateDateInvalid  securityCertificateDateInvalid
        No value
    h225.securityCertificateExpired  securityCertificateExpired
        No value
    h225.securityCertificateIncomplete  securityCertificateIncomplete
        No value
    h225.securityCertificateMissing  securityCertificateMissing
        No value
    h225.securityCertificateNotReadable  securityCertificateNotReadable
        No value
    h225.securityCertificateRevoked  securityCertificateRevoked
        No value
    h225.securityCertificateSignatureInvalid  securityCertificateSignatureInvalid
        No value
    h225.securityDHmismatch  securityDHmismatch
        No value
    h225.securityDenial  securityDenial
        No value
    h225.securityDenied  securityDenied
        No value
    h225.securityError  securityError
        Unsigned 32-bit integer
        SecurityErrors
    h225.securityIntegrityFailed  securityIntegrityFailed
        No value
    h225.securityReplay  securityReplay
        No value
    h225.securityUnknownCA  securityUnknownCA
        No value
    h225.securityUnsupportedCertificateAlgOID  securityUnsupportedCertificateAlgOID
        No value
    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
        INTEGER_0_65535
    h225.segmentedResponseSupported  segmentedResponseSupported
        No value
    h225.sendAddress  sendAddress
        Unsigned 32-bit integer
        TransportAddress
    h225.sender  sender
        Boolean
        BOOLEAN
    h225.sent  sent
        Boolean
        BOOLEAN
    h225.serviceControl  serviceControl
        Unsigned 32-bit integer
        SEQUENCE_OF_ServiceControlSession
    h225.serviceControlIndication  serviceControlIndication
        No value
    h225.serviceControlResponse  serviceControlResponse
        No value
    h225.sesn  sesn
        String
        TBCD_STRING_SIZE_16
    h225.sessionId  sessionId
        Unsigned 32-bit integer
        INTEGER_0_255
    h225.set  set
        Byte array
        BIT_STRING_SIZE_32
    h225.setup  setup
        No value
        Setup_UUIE
    h225.setupAcknowledge  setupAcknowledge
        No value
        SetupAcknowledge_UUIE
    h225.sid  sid
        String
        TBCD_STRING_SIZE_1_4
    h225.signal  signal
        Byte array
        H248SignalsDescriptor
    h225.sip  sip
        No value
        SIPCaps
    h225.sipGwCallsAvailable  sipGwCallsAvailable
        Unsigned 32-bit integer
        SEQUENCE_OF_CallsAvailable
    h225.soc  soc
        String
        TBCD_STRING_SIZE_3_16
    h225.sourceAddress  sourceAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.sourceCallSignalAddress  sourceCallSignalAddress
        Unsigned 32-bit integer
        TransportAddress
    h225.sourceCircuitID  sourceCircuitID
        No value
        CircuitIdentifier
    h225.sourceEndpointInfo  sourceEndpointInfo
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.sourceInfo  sourceInfo
        No value
        EndpointType
    h225.srcAlternatives  srcAlternatives
        Unsigned 32-bit integer
        SEQUENCE_OF_Endpoint
    h225.srcCallSignalAddress  srcCallSignalAddress
        Unsigned 32-bit integer
        TransportAddress
    h225.srcInfo  srcInfo
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.ssrc  ssrc
        Unsigned 32-bit integer
        INTEGER_1_4294967295
    h225.standard  standard
        Unsigned 32-bit integer
    h225.start  start
        No value
    h225.startH245  startH245
        No value
    h225.startOfRange  startOfRange
        Unsigned 32-bit integer
        PartyNumber
    h225.startTime  startTime
        No value
    h225.started  started
        No value
    h225.status  status
        No value
        Status_UUIE
    h225.statusInquiry  statusInquiry
        No value
        StatusInquiry_UUIE
    h225.stimulusControl  stimulusControl
        No value
    h225.stopped  stopped
        No value
    h225.strict  strict
        No value
    h225.subIdentifier  subIdentifier
        String
        IA5String_SIZE_1_64
    h225.subscriberNumber  subscriberNumber
        No value
    h225.substituteConfIDs  substituteConfIDs
        Unsigned 32-bit integer
        SEQUENCE_OF_ConferenceIdentifier
    h225.supportedFeatures  supportedFeatures
        Unsigned 32-bit integer
        SEQUENCE_OF_FeatureDescriptor
    h225.supportedH248Packages  supportedH248Packages
        Unsigned 32-bit integer
        SEQUENCE_OF_H248PackagesDescriptor
    h225.supportedPrefixes  supportedPrefixes
        Unsigned 32-bit integer
        SEQUENCE_OF_SupportedPrefix
    h225.supportedProtocols  supportedProtocols
        Unsigned 32-bit integer
        SEQUENCE_OF_SupportedProtocols
    h225.supportedTunnelledProtocols  supportedTunnelledProtocols
        Unsigned 32-bit integer
        SEQUENCE_OF_TunnelledProtocol
    h225.supportsACFSequences  supportsACFSequences
        No value
    h225.supportsAdditiveRegistration  supportsAdditiveRegistration
        No value
    h225.supportsAltGK  supportsAltGK
        No value
    h225.supportsAssignedGK  supportsAssignedGK
        Boolean
        BOOLEAN
    h225.symmetricOperationRequired  symmetricOperationRequired
        No value
    h225.systemAccessType  systemAccessType
        Byte array
        OCTET_STRING_SIZE_1
    h225.systemMyTypeCode  systemMyTypeCode
        Byte array
        OCTET_STRING_SIZE_1
    h225.system_id  system-id
        Unsigned 32-bit integer
    h225.t120OnlyGwCallsAvailable  t120OnlyGwCallsAvailable
        Unsigned 32-bit integer
        SEQUENCE_OF_CallsAvailable
    h225.t120_only  t120-only
        No value
        T120OnlyCaps
    h225.t35CountryCode  t35CountryCode
        Unsigned 32-bit integer
    h225.t35Extension  t35Extension
        Unsigned 32-bit integer
    h225.t38FaxAnnexbOnly  t38FaxAnnexbOnly
        No value
        T38FaxAnnexbOnlyCaps
    h225.t38FaxAnnexbOnlyGwCallsAvailable  t38FaxAnnexbOnlyGwCallsAvailable
        Unsigned 32-bit integer
        SEQUENCE_OF_CallsAvailable
    h225.t38FaxProfile  t38FaxProfile
        No value
    h225.t38FaxProtocol  t38FaxProtocol
        Unsigned 32-bit integer
        DataProtocolCapability
    h225.tcp  tcp
        No value
    h225.telexPartyNumber  telexPartyNumber
        String
        NumberDigits
    h225.terminal  terminal
        No value
        TerminalInfo
    h225.terminalAlias  terminalAlias
        Unsigned 32-bit integer
        SEQUENCE_OF_AliasAddress
    h225.terminalAliasPattern  terminalAliasPattern
        Unsigned 32-bit integer
        SEQUENCE_OF_AddressPattern
    h225.terminalCallsAvailable  terminalCallsAvailable
        Unsigned 32-bit integer
        SEQUENCE_OF_CallsAvailable
    h225.terminalExcluded  terminalExcluded
        No value
    h225.terminalType  terminalType
        No value
        EndpointType
    h225.terminationCause  terminationCause
        No value
    h225.text  text
        String
        IA5String
    h225.threadId  threadId
        Globally Unique Identifier
        GloballyUniqueID
    h225.threePartyService  threePartyService
        Boolean
        BOOLEAN
    h225.timeStamp  timeStamp
        Date/Time stamp
    h225.timeToLive  timeToLive
        Unsigned 32-bit integer
    h225.tls  tls
        No value
        SecurityCapabilities
    h225.tmsi  tmsi
        Byte array
        OCTET_STRING_SIZE_1_4
    h225.token  token
        No value
        HASHED
    h225.tokens  tokens
        Unsigned 32-bit integer
        SEQUENCE_OF_ClearToken
    h225.totalBandwidthRestriction  totalBandwidthRestriction
        Unsigned 32-bit integer
        BandWidth
    h225.transport  transport
        Unsigned 32-bit integer
        TransportAddress
    h225.transportID  transportID
        Unsigned 32-bit integer
        TransportAddress
    h225.transportNotSupported  transportNotSupported
        No value
    h225.transportQOS  transportQOS
        Unsigned 32-bit integer
    h225.transportQOSNotSupported  transportQOSNotSupported
        No value
    h225.transportedInformation  transportedInformation
        No value
    h225.ttlExpired  ttlExpired
        No value
    h225.tunnelledProtocolAlternateID  tunnelledProtocolAlternateID
        No value
        TunnelledProtocolAlternateIdentifier
    h225.tunnelledProtocolID  tunnelledProtocolID
        No value
        TunnelledProtocol
    h225.tunnelledProtocolObjectID  tunnelledProtocolObjectID
        Object Identifier
    h225.tunnelledSignallingMessage  tunnelledSignallingMessage
        No value
    h225.tunnelledSignallingRejected  tunnelledSignallingRejected
        No value
    h225.tunnellingRequired  tunnellingRequired
        No value
    h225.unallocatedNumber  unallocatedNumber
        No value
    h225.undefinedNode  undefinedNode
        Boolean
        BOOLEAN
    h225.undefinedReason  undefinedReason
        No value
    h225.unicode  unicode
        String
        BMPString
    h225.unknown  unknown
        No value
    h225.unknownMessageResponse  unknownMessageResponse
        No value
    h225.unreachableDestination  unreachableDestination
        No value
    h225.unreachableGatekeeper  unreachableGatekeeper
        No value
    h225.unregistrationConfirm  unregistrationConfirm
        No value
    h225.unregistrationReject  unregistrationReject
        No value
    h225.unregistrationRequest  unregistrationRequest
        No value
    h225.unsolicited  unsolicited
        Boolean
        BOOLEAN
    h225.url  url
        String
        IA5String_SIZE_0_512
    h225.url_ID  url-ID
        String
        IA5String_SIZE_1_512
    h225.usageInfoRequested  usageInfoRequested
        No value
        RasUsageInfoTypes
    h225.usageInformation  usageInformation
        No value
        RasUsageInformation
    h225.usageReportingCapability  usageReportingCapability
        No value
        RasUsageInfoTypes
    h225.usageSpec  usageSpec
        Unsigned 32-bit integer
        SEQUENCE_OF_RasUsageSpecification
    h225.useGKCallSignalAddressToAnswer  useGKCallSignalAddressToAnswer
        Boolean
        BOOLEAN
    h225.useGKCallSignalAddressToMakeCall  useGKCallSignalAddressToMakeCall
        Boolean
        BOOLEAN
    h225.useSpecifiedTransport  useSpecifiedTransport
        Unsigned 32-bit integer
    h225.user_data  user-data
        No value
    h225.user_information  user-information
        Byte array
        OCTET_STRING_SIZE_1_131
    h225.uuiesRequested  uuiesRequested
        No value
    h225.vendor  vendor
        No value
        VendorIdentifier
    h225.versionId  versionId
        String
        OCTET_STRING_SIZE_1_256
    h225.video  video
        Unsigned 32-bit integer
        SEQUENCE_OF_RTPSession
    h225.voice  voice
        No value
        VoiceCaps
    h225.voiceGwCallsAvailable  voiceGwCallsAvailable
        Unsigned 32-bit integer
        SEQUENCE_OF_CallsAvailable
    h225.vplmn  vplmn
        String
        TBCD_STRING_SIZE_1_4
    h225.when  when
        No value
        CapacityReportingSpecification_when
    h225.wildcard  wildcard
        Unsigned 32-bit integer
        AliasAddress
    h225.willRespondToIRR  willRespondToIRR
        Boolean
        BOOLEAN
    h225.willSupplyUUIEs  willSupplyUUIEs
        Boolean
        BOOLEAN

HDLC PW, FR port mode (no CW) (pw_hdlc_nocw_fr)

    pw_hdlc  PW HDLC
        No value
    pw_hdlc.address  Address
        Unsigned 8-bit integer
    pw_hdlc.address_field  Address field
        Unsigned 8-bit integer
    pw_hdlc.control_field  Control field
        Unsigned 8-bit integer
    pw_hdlc.cr_bit  C/R bit
        Unsigned 8-bit integer
    pw_hdlc.pf_bit  Poll/Final bit
        Unsigned 8-bit integer

HDLC-like framing for PPP (pw_hdlc_nocw_hdlc_ppp)

HI2Operations (hi2operations)

    HI2Operations.AddressType  AddressType
        No value
    HI2Operations.CallId  CallId
        No value
    HI2Operations.CircuitIdType  CircuitIdType
        String
    HI2Operations.DSS1_SS_Invoke_Components_item  DSS1-SS-Invoke-Components item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.DSS1_SS_parameters_codeset_0_item  DSS1-SS-parameters-codeset-0 item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.DSS1_SS_parameters_codeset_4_item  DSS1-SS-parameters-codeset-4 item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.DSS1_SS_parameters_codeset_5_item  DSS1-SS-parameters-codeset-5 item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.DSS1_SS_parameters_codeset_6_item  DSS1-SS-parameters-codeset-6 item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.DSS1_SS_parameters_codeset_7_item  DSS1-SS-parameters-codeset-7 item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.DSS1_parameters_codeset_0_item  DSS1-parameters-codeset-0 item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.GA_Polygon_item  GA-Polygon item
        No value
    HI2Operations.IRIContent  IRIContent
        Unsigned 32-bit integer
    HI2Operations.IRIsContent  IRIsContent
        Unsigned 32-bit integer
    HI2Operations.ISUP_SS_parameters_item  ISUP-SS-parameters item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.ISUP_parameters_item  ISUP-parameters item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.LocationType_en301040  LocationType-en301040
        Unsigned 32-bit integer
    HI2Operations.MAP_SS_Invoke_Components_item  MAP-SS-Invoke-Components item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.MAP_SS_Parameters_item  MAP-SS-Parameters item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.MAP_parameters_item  MAP-parameters item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.National_Parameters_item  National-Parameters item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.Non_Standard_Supplementary_Services_item  Non-Standard-Supplementary-Services item
        Unsigned 32-bit integer
    HI2Operations.Other_Services_item  Other-Services item
        Byte array
        OCTET_STRING_SIZE_1_256
    HI2Operations.PartyInformation  PartyInformation
        No value
    HI2Operations.TETRAAddressType  TETRAAddressType
        Unsigned 32-bit integer
    HI2Operations.aPN  aPN
        Byte array
        OCTET_STRING_SIZE_1_100
    HI2Operations.accessingElementId  accessingElementId
        String
    HI2Operations.alertingSignal  alertingSignal
        Unsigned 32-bit integer
    HI2Operations.answer  answer
        No value
    HI2Operations.answering  answering
        No value
        PartyId
    HI2Operations.associate  associate
        String
        SDP
    HI2Operations.azimuth  azimuth
        Unsigned 32-bit integer
        INTEGER_0_359
    HI2Operations.both_IRI_CC  both-IRI-CC
        No value
    HI2Operations.cCCId  cCCId
        Unsigned 32-bit integer
    HI2Operations.cCLink1Characteristics  cCLink1Characteristics
        No value
        CallContentLinkCharacteristics
    HI2Operations.cCLink2Characteristics  cCLink2Characteristics
        No value
        CallContentLinkCharacteristics
    HI2Operations.cCLink_State  cCLink-State
        Unsigned 32-bit integer
    HI2Operations.cC_Link_Identifier  cC-Link-Identifier
        Byte array
    HI2Operations.cI  cI
        Byte array
        CellIdType
    HI2Operations.cPlaneData  cPlaneData
        Byte array
        BIT_STRING
    HI2Operations.cTTRAFFICind  cTTRAFFICind
        No value
    HI2Operations.callContentLinkInformation  callContentLinkInformation
        No value
    HI2Operations.callId  callId
        No value
    HI2Operations.callRelation  callRelation
        Unsigned 32-bit integer
    HI2Operations.called  called
        No value
        PartyId
    HI2Operations.calledNumber  calledNumber
        String
        VisibleString_SIZE_1_40_
    HI2Operations.calledPartyNumber  calledPartyNumber
        Unsigned 32-bit integer
    HI2Operations.calling  calling
        No value
        PartyId
    HI2Operations.callingName  callingName
        String
        VisibleString_SIZE_1_40_
    HI2Operations.callingNumber  callingNumber
        String
        VisibleString_SIZE_1_40_
    HI2Operations.callingPartyNumber  callingPartyNumber
        Unsigned 32-bit integer
    HI2Operations.caseId  caseId
        String
    HI2Operations.cc  cc
        Unsigned 32-bit integer
    HI2Operations.ccOpenOption  ccOpenOption
        Unsigned 32-bit integer
    HI2Operations.ccOpenTime  ccOpenTime
        Unsigned 32-bit integer
        SEQUENCE_OF_CallId
    HI2Operations.cc_item  cc item
        Byte array
        OCTET_STRING
    HI2Operations.ccchange  ccchange
        No value
    HI2Operations.ccclose  ccclose
        No value
    HI2Operations.ccopen  ccopen
        No value
    HI2Operations.cctivity  cctivity
        Unsigned 32-bit integer
        ActivityClassType
    HI2Operations.cdcPdu  cdcPdu
        No value
    HI2Operations.ci  ci
        Signed 32-bit integer
        INTEGER
    HI2Operations.combCCC  combCCC
        String
        VisibleString_SIZE_1_20_
    HI2Operations.communicationIdentifier  communicationIdentifier
        No value
    HI2Operations.communication_Identity_Number  communication-Identity-Number
        Byte array
        OCTET_STRING_SIZE_1_8
    HI2Operations.content  content
        Byte array
        OCTET_STRING_SIZE_1_270
    HI2Operations.context  context
        String
        VisibleString_SIZE_1_32_
    HI2Operations.conversationDuration  conversationDuration
        Byte array
        OCTET_STRING_SIZE_3
    HI2Operations.copySignal  copySignal
        Byte array
        BIT_STRING
    HI2Operations.correlation  correlation
        Unsigned 32-bit integer
        CorrelationValues
    HI2Operations.cotargetaddress  cotargetaddress
        Unsigned 32-bit integer
        SEQUENCE_OF_AddressType
    HI2Operations.cotargetcommsid  cotargetcommsid
        Unsigned 32-bit integer
        SEQUENCE_OF_CircuitIdType
    HI2Operations.cotargetlocation  cotargetlocation
        Unsigned 32-bit integer
        SEQUENCE_OF_LocationType_en301040
    HI2Operations.countryCode  countryCode
        String
        PrintableString_SIZE_2
    HI2Operations.cryptoCheckSum  cryptoCheckSum
        Byte array
        BIT_STRING
    HI2Operations.dNS_Format  dNS-Format
        Byte array
        OCTET_STRING_SIZE_1_25
    HI2Operations.dSS1_Format  dSS1-Format
        Byte array
        OCTET_STRING_SIZE_1_25
    HI2Operations.dSS1_SS_Invoke_components  dSS1-SS-Invoke-components
        Unsigned 32-bit integer
    HI2Operations.dSS1_SS_parameters_codeset_0  dSS1-SS-parameters-codeset-0
        Unsigned 32-bit integer
    HI2Operations.dSS1_SS_parameters_codeset_4  dSS1-SS-parameters-codeset-4
        Unsigned 32-bit integer
    HI2Operations.dSS1_SS_parameters_codeset_5  dSS1-SS-parameters-codeset-5
        Unsigned 32-bit integer
    HI2Operations.dSS1_SS_parameters_codeset_6  dSS1-SS-parameters-codeset-6
        Unsigned 32-bit integer
    HI2Operations.dSS1_SS_parameters_codeset_7  dSS1-SS-parameters-codeset-7
        Unsigned 32-bit integer
    HI2Operations.dSS1_parameters_codeset_0  dSS1-parameters-codeset-0
        Unsigned 32-bit integer
    HI2Operations.dialedDigits  dialedDigits
        String
        VisibleString_SIZE_1_128_
    HI2Operations.direction  direction
        Unsigned 32-bit integer
        DirectionType
    HI2Operations.dn  dn
        String
        VisibleString_SIZE_1_15_
    HI2Operations.domainID  domainID
        Object Identifier
        OBJECT_IDENTIFIER
    HI2Operations.e164_Format  e164-Format
        Byte array
        OCTET_STRING_SIZE_1_25
    HI2Operations.e164_Number  e164-Number
        Byte array
        OCTET_STRING_SIZE_1_25
    HI2Operations.e164address  e164address
        String
        NumericString_SIZE_20
    HI2Operations.eventTime  eventTime
        String
    HI2Operations.featureKey  featureKey
        String
        VisibleString_SIZE_1_128_
    HI2Operations.firstCallCalling  firstCallCalling
        No value
        PartyId
    HI2Operations.flowDirection  flowDirection
        Unsigned 32-bit integer
    HI2Operations.gPRSCorrelationNumber  gPRSCorrelationNumber
        Byte array
    HI2Operations.gPRSOperationErrorCode  gPRSOperationErrorCode
        Byte array
    HI2Operations.gPRS_parameters  gPRS-parameters
        No value
    HI2Operations.gPRSevent  gPRSevent
        Unsigned 32-bit integer
    HI2Operations.generalDisplay  generalDisplay
        String
        VisibleString_SIZE_1_80_
    HI2Operations.generalizedTime  generalizedTime
        String
    HI2Operations.genericAddress  genericAddress
        String
        VisibleString_SIZE_1_32_
    HI2Operations.genericDigits  genericDigits
        String
        VisibleString_SIZE_1_32_
    HI2Operations.genericName  genericName
        String
        VisibleString_SIZE_1_48_
    HI2Operations.geoCoordinates  geoCoordinates
        No value
    HI2Operations.geodeticData  geodeticData
        Byte array
        BIT_STRING
    HI2Operations.geographicalCoordinates  geographicalCoordinates
        No value
    HI2Operations.ggsnAddress  ggsnAddress
        Unsigned 32-bit integer
        DataNodeAddress
    HI2Operations.globalCellID  globalCellID
        Byte array
        OCTET_STRING_SIZE_5_7
    HI2Operations.gsmLocation  gsmLocation
        Unsigned 32-bit integer
    HI2Operations.iMSevent  iMSevent
        Unsigned 32-bit integer
    HI2Operations.iP4address  iP4address
        Byte array
        BIT_STRING_SIZE_32
    HI2Operations.iP6address  iP6address
        Byte array
        BIT_STRING_SIZE_128
    HI2Operations.iPBinaryAddress  iPBinaryAddress
        Byte array
        OCTET_STRING_SIZE_4_16
    HI2Operations.iPTextAddress  iPTextAddress
        String
        IA5String_SIZE_7_45
    HI2Operations.iP_Address  iP-Address
        No value
        IPAddress
    HI2Operations.iP_Format  iP-Format
        Byte array
        OCTET_STRING_SIZE_1_25
    HI2Operations.iP_assignment  iP-assignment
        Unsigned 32-bit integer
    HI2Operations.iP_type  iP-type
        Unsigned 32-bit integer
    HI2Operations.iP_value  iP-value
        Unsigned 32-bit integer
    HI2Operations.iRIContent  iRIContent
        Unsigned 32-bit integer
    HI2Operations.iRISequence  iRISequence
        Unsigned 32-bit integer
    HI2Operations.iRITransaction  iRITransaction
        Unsigned 32-bit integer
        IRITransactionType
    HI2Operations.iRITransactionNumber  iRITransactionNumber
        Signed 32-bit integer
        INTEGER
    HI2Operations.iRI_Begin_record  iRI-Begin-record
        No value
        IRI_Parameters
    HI2Operations.iRI_Continue_record  iRI-Continue-record
        No value
        IRI_Parameters
    HI2Operations.iRI_End_record  iRI-End-record
        No value
        IRI_Parameters
    HI2Operations.iRI_Report_record  iRI-Report-record
        No value
        IRI_Parameters
    HI2Operations.iRIversion  iRIversion
        Unsigned 32-bit integer
    HI2Operations.iSUP_Format  iSUP-Format
        Byte array
        OCTET_STRING_SIZE_1_25
    HI2Operations.iSUP_SS_parameters  iSUP-SS-parameters
        Unsigned 32-bit integer
    HI2Operations.iSUP_parameters  iSUP-parameters
        Unsigned 32-bit integer
    HI2Operations.imei  imei
        Byte array
        OCTET_STRING_SIZE_8
    HI2Operations.imsi  imsi
        Byte array
        OCTET_STRING_SIZE_3_8
    HI2Operations.initiator  initiator
        Unsigned 32-bit integer
    HI2Operations.input  input
        Unsigned 32-bit integer
    HI2Operations.intercepted_Call_Direct  intercepted-Call-Direct
        Unsigned 32-bit integer
    HI2Operations.intercepted_Call_State  intercepted-Call-State
        Unsigned 32-bit integer
    HI2Operations.interpretedSignal  interpretedSignal
        Signed 32-bit integer
        INTEGER
    HI2Operations.ipAddress  ipAddress
        No value
    HI2Operations.iri  iri
        Byte array
        OCTET_STRING
    HI2Operations.iri_CC  iri-CC
        No value
        IRI_to_CC_Correlation
    HI2Operations.iri_IRI  iri-IRI
        Byte array
        IRI_to_IRI_Correlation
    HI2Operations.iri_to_CC  iri-to-CC
        No value
        IRI_to_CC_Correlation
    HI2Operations.iri_to_iri  iri-to-iri
        Byte array
        IRI_to_IRI_Correlation
    HI2Operations.lEMF_Address  lEMF-Address
        Unsigned 32-bit integer
        CalledPartyNumber
    HI2Operations.lIInstanceid  lIInstanceid
        Unsigned 32-bit integer
        LIIDType
    HI2Operations.lSLoc  lSLoc
        Unsigned 32-bit integer
        TETRAAddressType
    HI2Operations.lai  lai
        Unsigned 32-bit integer
        INTEGER_0_65535
    HI2Operations.lastRedirecting  lastRedirecting
        No value
        PartyId
    HI2Operations.lastRedirectingNumber  lastRedirectingNumber
        String
        VisibleString_SIZE_1_40_
    HI2Operations.latitude  latitude
        String
        PrintableString_SIZE_7_10
    HI2Operations.latitudeSign  latitudeSign
        Unsigned 32-bit integer
    HI2Operations.lawfulInterceptionIdentifier  lawfulInterceptionIdentifier
        Byte array
    HI2Operations.ldiEvent  ldiEvent
        Unsigned 32-bit integer
    HI2Operations.localTime  localTime
        No value
        LocalTimeStamp
    HI2Operations.locationOfTheTarget  locationOfTheTarget
        No value
        Location
    HI2Operations.longitude  longitude
        String
        PrintableString_SIZE_8_11
    HI2Operations.ls_Loc  ls-Loc
        Signed 32-bit integer
        INTEGER
    HI2Operations.mAP_Format  mAP-Format
        Byte array
        OCTET_STRING_SIZE_1_25
    HI2Operations.mAP_SS_Invoke_Components  mAP-SS-Invoke-Components
        Unsigned 32-bit integer
    HI2Operations.mAP_SS_Parameters  mAP-SS-Parameters
        Unsigned 32-bit integer
    HI2Operations.mAP_parameters  mAP-parameters
        Unsigned 32-bit integer
    HI2Operations.mSLoc  mSLoc
        No value
        TETRACGIType
    HI2Operations.mapDatum  mapDatum
        Unsigned 32-bit integer
    HI2Operations.mcc  mcc
        Unsigned 32-bit integer
        INTEGER_0_1023
    HI2Operations.mediareport  mediareport
        No value
    HI2Operations.message  message
        Unsigned 32-bit integer
    HI2Operations.messageWaitingNotif  messageWaitingNotif
        String
        VisibleString_SIZE_1_40_
    HI2Operations.mnc  mnc
        Unsigned 32-bit integer
        INTEGER_0_16383
    HI2Operations.msISDN  msISDN
        Byte array
        OCTET_STRING_SIZE_1_9
    HI2Operations.ms_Loc  ms-Loc
        No value
    HI2Operations.nameAddress  nameAddress
        String
        PrintableString_SIZE_1_100
    HI2Operations.national_HI2_ASN1parameters  national-HI2-ASN1parameters
        No value
    HI2Operations.national_Parameters  national-Parameters
        Unsigned 32-bit integer
    HI2Operations.nature_Of_The_intercepted_call  nature-Of-The-intercepted-call
        Unsigned 32-bit integer
    HI2Operations.networkIdentifier  networkIdentifier
        No value
        Network_Identifier
    HI2Operations.network_Element_Identifier  network-Element-Identifier
        Unsigned 32-bit integer
    HI2Operations.network_Identifier  network-Identifier
        No value
    HI2Operations.networksignal  networksignal
        No value
    HI2Operations.new  new
        No value
        CallId
    HI2Operations.non_Standard_Supplementary_Services  non-Standard-Supplementary-Services
        Unsigned 32-bit integer
    HI2Operations.numRedirections  numRedirections
        Unsigned 32-bit integer
        INTEGER_1_100_
    HI2Operations.old  old
        No value
        CallId
    HI2Operations.oldRAI  oldRAI
        Byte array
        OCTET_STRING_SIZE_6
    HI2Operations.operator_Identifier  operator-Identifier
        Byte array
        OCTET_STRING_SIZE_1_5
    HI2Operations.originalCalled  originalCalled
        No value
        PartyId
    HI2Operations.originalCalledNumber  originalCalledNumber
        String
        VisibleString_SIZE_1_40_
    HI2Operations.origination  origination
        No value
    HI2Operations.other  other
        String
        VisibleString_SIZE_1_128_
    HI2Operations.otherSignalingInformation  otherSignalingInformation
        String
        VisibleString_SIZE_1_128_
    HI2Operations.other_Services  other-Services
        Unsigned 32-bit integer
    HI2Operations.other_message  other-message
        Unsigned 32-bit integer
    HI2Operations.pDP_address_allocated_to_the_target  pDP-address-allocated-to-the-target
        Unsigned 32-bit integer
        DataNodeAddress
    HI2Operations.pDP_type  pDP-type
        Byte array
        OCTET_STRING_SIZE_2
    HI2Operations.pISNaddress  pISNaddress
        String
        NumericString_SIZE_20
    HI2Operations.partyIdentity  partyIdentity
        No value
    HI2Operations.partyInformation  partyInformation
        Unsigned 32-bit integer
        SET_SIZE_1_10_OF_PartyInformation
    HI2Operations.party_Qualifier  party-Qualifier
        Unsigned 32-bit integer
    HI2Operations.point  point
        No value
        GA_Point
    HI2Operations.pointWithUnCertainty  pointWithUnCertainty
        No value
        GA_PointWithUnCertainty
    HI2Operations.polygon  polygon
        Unsigned 32-bit integer
        GA_Polygon
    HI2Operations.port  port
        String
        VisibleString_SIZE_1_32_
    HI2Operations.protocolVersion  protocolVersion
        Unsigned 32-bit integer
    HI2Operations.qOS  qOS
        Unsigned 32-bit integer
        UmtsQos
    HI2Operations.qosGn  qosGn
        Byte array
        OCTET_STRING
    HI2Operations.qosMobileRadio  qosMobileRadio
        Byte array
        OCTET_STRING
    HI2Operations.rAI  rAI
        Byte array
        OCTET_STRING_SIZE_6
    HI2Operations.redirectedFromInfo  redirectedFromInfo
        No value
    HI2Operations.redirectedfrom  redirectedfrom
        No value
        PartyId
    HI2Operations.redirectedto  redirectedto
        No value
        PartyId
    HI2Operations.redirectingName  redirectingName
        String
        VisibleString_SIZE_1_40_
    HI2Operations.redirectingReason  redirectingReason
        String
        VisibleString_SIZE_1_40_
    HI2Operations.redirection  redirection
        No value
    HI2Operations.relatedCallId  relatedCallId
        No value
        CallId
    HI2Operations.release  release
        No value
    HI2Operations.release_Reason  release-Reason
        Byte array
        OCTET_STRING_SIZE_2
    HI2Operations.release_Reason_Of_Intercepted_Call  release-Reason-Of-Intercepted-Call
        Byte array
        OCTET_STRING_SIZE_2
    HI2Operations.release_Time  release-Time
        Unsigned 32-bit integer
        TimeStamp
    HI2Operations.reserved  reserved
        No value
    HI2Operations.reserved0  reserved0
        No value
    HI2Operations.reserved1  reserved1
        No value
    HI2Operations.reserved2  reserved2
        No value
    HI2Operations.reserved3  reserved3
        No value
    HI2Operations.reserved4  reserved4
        No value
    HI2Operations.reserved5  reserved5
        No value
    HI2Operations.reserved6  reserved6
        No value
    HI2Operations.reserved7  reserved7
        No value
    HI2Operations.reserved8  reserved8
        No value
    HI2Operations.reserved9  reserved9
        No value
    HI2Operations.resourceState  resourceState
        Unsigned 32-bit integer
    HI2Operations.ringingDuration  ringingDuration
        Byte array
        OCTET_STRING_SIZE_3
    HI2Operations.sAI  sAI
        Byte array
        OCTET_STRING_SIZE_7
    HI2Operations.sIPMessage  sIPMessage
        Byte array
        OCTET_STRING
    HI2Operations.sMS  sMS
        No value
        SMS_report
    HI2Operations.sMSOriginatingAddress  sMSOriginatingAddress
        Unsigned 32-bit integer
        DataNodeAddress
    HI2Operations.sMSTerminatingAddress  sMSTerminatingAddress
        Unsigned 32-bit integer
        DataNodeAddress
    HI2Operations.sMS_Contents  sMS-Contents
        No value
    HI2Operations.sStype  sStype
        Unsigned 32-bit integer
    HI2Operations.sciData  sciData
        Byte array
        SciDataMode
    HI2Operations.scope  scope
        Unsigned 32-bit integer
    HI2Operations.secondCallCalling  secondCallCalling
        No value
        PartyId
    HI2Operations.sepCCCpair  sepCCCpair
        No value
    HI2Operations.sepRecvCCC  sepRecvCCC
        String
        VisibleString_SIZE_1_20_
    HI2Operations.sepXmitCCC  sepXmitCCC
        String
        VisibleString_SIZE_1_20_
    HI2Operations.sequencenumber  sequencenumber
        String
        VisibleString_SIZE_1_25_
    HI2Operations.serverCenterAddress  serverCenterAddress
        No value
        PartyInformation
    HI2Operations.serviceName  serviceName
        String
        VisibleString_SIZE_1_128_
    HI2Operations.serviceinstance  serviceinstance
        No value
    HI2Operations.services_Data_Information  services-Data-Information
        No value
    HI2Operations.services_Information  services-Information
        No value
    HI2Operations.servingSGSN_address  servingSGSN-address
        Byte array
        OCTET_STRING_SIZE_5_17
    HI2Operations.servingSGSN_number  servingSGSN-number
        Byte array
        OCTET_STRING_SIZE_1_20
    HI2Operations.sgsnAddress  sgsnAddress
        Unsigned 32-bit integer
        DataNodeAddress
    HI2Operations.signal  signal
        No value
    HI2Operations.simpleIndication  simpleIndication
        Unsigned 32-bit integer
    HI2Operations.sip_uri  sip-uri
        Byte array
        OCTET_STRING
    HI2Operations.ssi  ssi
        Byte array
        SSIType
    HI2Operations.standard_Supplementary_Services  standard-Supplementary-Services
        No value
    HI2Operations.subject  subject
        String
        SDP
    HI2Operations.subjectAudibleSignal  subjectAudibleSignal
        Unsigned 32-bit integer
        AudibleSignal
    HI2Operations.subjectsignal  subjectsignal
        No value
    HI2Operations.supplementaryAddress  supplementaryAddress
        Unsigned 32-bit integer
        SEQUENCE_OF_TETRAAddressType
    HI2Operations.supplementaryTargetaddress  supplementaryTargetaddress
        No value
        AddressType
    HI2Operations.supplementary_Services_Information  supplementary-Services-Information
        No value
        Supplementary_Services
    HI2Operations.switchhookFlash  switchhookFlash
        String
        VisibleString_SIZE_1_128_
    HI2Operations.systemidentity  systemidentity
        String
        VisibleString_SIZE_1_15_
    HI2Operations.tARGETACTIVITYMONITOR  tARGETACTIVITYMONITOR
        No value
        TARGETACTIVITYMONITOR_1
    HI2Operations.tARGETACTIVITYMONITORind  tARGETACTIVITYMONITORind
        No value
    HI2Operations.tARGETCOMMSMONITORind  tARGETCOMMSMONITORind
        No value
    HI2Operations.tEI  tEI
        Byte array
        TEIType
    HI2Operations.tETRAaddress  tETRAaddress
        No value
        TSIType
    HI2Operations.tLIInstanceid  tLIInstanceid
        Byte array
        TLIIdType
    HI2Operations.tSI  tSI
        No value
        TSIType
    HI2Operations.tTRAFFICind  tTRAFFICind
        No value
    HI2Operations.targetAction  targetAction
        No value
        ActivityType
    HI2Operations.targetLocation  targetLocation
        Unsigned 32-bit integer
        LocationType
    HI2Operations.targetcommsid  targetcommsid
        String
        CircuitIdType
    HI2Operations.targetlocation  targetlocation
        Unsigned 32-bit integer
        LocationType_en301040
    HI2Operations.tei  tei
        Byte array
        OCTET_STRING_SIZE_1_15
    HI2Operations.tel_url  tel-url
        Byte array
        OCTET_STRING
    HI2Operations.terminalDisplayInfo  terminalDisplayInfo
        No value
    HI2Operations.terminationattempt  terminationattempt
        No value
    HI2Operations.tetraLocation  tetraLocation
        Unsigned 32-bit integer
    HI2Operations.timeStamp  timeStamp
        Unsigned 32-bit integer
    HI2Operations.timestamp  timestamp
        String
        UTCTime
    HI2Operations.trafficPacket  trafficPacket
        Byte array
        BIT_STRING
    HI2Operations.transfer_status  transfer-status
        Unsigned 32-bit integer
    HI2Operations.transitCarrierId  transitCarrierId
        String
    HI2Operations.translationinput  translationinput
        String
        VisibleString_SIZE_1_32_
    HI2Operations.trunkId  trunkId
        String
        VisibleString_SIZE_1_32_
    HI2Operations.umtsLocation  umtsLocation
        Unsigned 32-bit integer
    HI2Operations.uncertaintyCode  uncertaintyCode
        Unsigned 32-bit integer
        INTEGER_0_127
    HI2Operations.userProvided  userProvided
        String
        VisibleString_SIZE_1_15_
    HI2Operations.userSignal  userSignal
        Unsigned 32-bit integer
        UserSignalType
    HI2Operations.userinput  userinput
        String
        VisibleString_SIZE_1_32_
    HI2Operations.utcTime  utcTime
        String
    HI2Operations.utmCoordinates  utmCoordinates
        No value
    HI2Operations.utmRefCoordinates  utmRefCoordinates
        No value
    HI2Operations.utm_East  utm-East
        String
        PrintableString_SIZE_10
    HI2Operations.utm_North  utm-North
        String
        PrintableString_SIZE_7
    HI2Operations.utmref_string  utmref-string
        String
        PrintableString_SIZE_13
    HI2Operations.version  version
        Signed 32-bit integer
        INTEGER
    HI2Operations.wGS84Coordinates  wGS84Coordinates
        Byte array
        OCTET_STRING
    HI2Operations.winterSummerIndication  winterSummerIndication
        Unsigned 32-bit integer
    HI2Operations.x25Address  x25Address
        Byte array
    HI2Operations.x25_Format  x25-Format
        Byte array
        OCTET_STRING_SIZE_1_25

HP Extended Local-Link Control (hpext)

    hpext.dxsap  DXSAP
        Unsigned 16-bit integer
    hpext.sxsap  SXSAP
        Unsigned 16-bit integer

HP NIC Teaming Heartbeat (hpteam)

    hpteam.data  Proprietary Data
        Byte array

HP Remote Maintenance Protocol (rmp)

    rmp.filename  Filename
        Length string pair
    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

HP Switch Protocol (hpsw)

    hpsw.tlv_len  Length
        Unsigned 8-bit integer
    hpsw.tlv_type  Type
        Unsigned 8-bit integer
    hpsw.type  Type
        Unsigned 8-bit integer
    hpsw.version  Version
        Unsigned 8-bit integer

HP encapsulated remote mirroring (hp_erm)

    hp_erm.unknown  Unknown
        Byte array

HP-UX Network Tracing and Logging (nettl)

    nettl.devid  Device ID
        Signed 32-bit integer
        HP-UX Device ID
    nettl.kind  Trace Kind
        Unsigned 32-bit integer
        HP-UX Trace record kind
    nettl.pid  Process ID (pid/ktid)
        Signed 32-bit integer
        HP-UX Process/thread id
    nettl.subsys  Subsystem
        Unsigned 16-bit integer
        HP-UX Subsystem/Driver
    nettl.uid  User ID (uid)
        Unsigned 16-bit integer
        HP-UX User ID

Hilscher analyzer dissector (hilscher)

    hilscher.information_type  Hilscher information block type
        Unsigned 8-bit integer
    hilscher.net_analyzer.gpio_edge  Event type
        Unsigned 8-bit integer
    hilscher.net_analyzer.gpio_number  Event on
        Unsigned 8-bit integer

HomePlug protocol (homeplug)

    homeplug.bcl  Bridging Characteristics Local
        No value
    homeplug.bcl.hpbda  Host Proxied DA
        6-byte Hardware (MAC) Address
        Host Proxied Bridged Destination Address
    homeplug.bcl.hprox_das  Number of host proxied DAs
        Unsigned 8-bit integer
        Number of host proxied DAs supported by the bridge application
    homeplug.bcl.network  Network/Local
        Boolean
        Local (0) or Network Bridge (1) Information
    homeplug.bcl.return  Return/Set
        Boolean
        From host: Return (1) or set bridging characteristics (0)
    homeplug.bcl.rsvd  Reserved
        Unsigned 8-bit integer
    homeplug.bcn  Bridging Characteristics Network
        No value
    homeplug.bcn.bp_da  Bridged DA
        6-byte Hardware (MAC) Address
        Bridged Destination Address
    homeplug.bcn.bp_das  Number of bridge proxied DAs
        Unsigned 8-bit integer
        Number of bridge proxied DAs supported
    homeplug.bcn.brda  Address of Bridge
        6-byte Hardware (MAC) Address
    homeplug.bcn.fbn  First Bridge Number
        Unsigned 8-bit integer
    homeplug.bcn.network  Network
        Boolean
        Local (0) or Network Bridge (1) Information
    homeplug.bcn.return  Return/Set
        Boolean
        From host: Return (1) or set bridging characteristics (0)
    homeplug.bcn.rsvd  Reserved
        Unsigned 8-bit integer
    homeplug.cer  Channel Estimation Response
        No value
    homeplug.cer.bda  Bridged Destination Address
        6-byte Hardware (MAC) Address
    homeplug.cer.bp  Bridge Proxy
        Unsigned 8-bit integer
    homeplug.cer.cerv  Channel Estimation Response Version
        Unsigned 8-bit integer
    homeplug.cer.mod  Modulation Method
        Unsigned 8-bit integer
    homeplug.cer.nbdas  Number Bridged Destination Addresses
        Unsigned 8-bit integer
    homeplug.cer.rate  FEC Rate
        Unsigned 8-bit integer
    homeplug.cer.rsvd1  Reserved
        Unsigned 16-bit integer
    homeplug.cer.rsvd2  Reserved
        Unsigned 8-bit integer
    homeplug.cer.rxtmi  Receive Tone Map Index
        Unsigned 8-bit integer
    homeplug.cer.vt  Valid Tone Flags
        Unsigned 8-bit integer
    homeplug.cer.vt11  Valid Tone Flags [83-80]
        Unsigned 8-bit integer
    homeplug.cnk  Confirm Network Encryption Key
        No value
    homeplug.data  Data
        Byte array
    homeplug.hreq  Host Request
        No value
    homeplug.hreq.gclbpl  Get/Clear Local Bridge Proxy List
        Unsigned 8-bit integer
    homeplug.hreq.gdv  Get Device Version
        Unsigned 8-bit integer
    homeplug.hreq.gfv  Get Firmware Version
        Unsigned 8-bit integer
    homeplug.hreq.gnek  Get Network Encryption Key
        Unsigned 8-bit integer
    homeplug.hreq.grbt  Get Remote Bridge Table
        Unsigned 8-bit integer
    homeplug.hreq.gslnm  Get/Set Logical Network Mapping
        Unsigned 8-bit integer
    homeplug.hreq.gsss  Get/Set Spectral Scaling
        Unsigned 8-bit integer
    homeplug.hreq.mid  Message ID
        Unsigned 8-bit integer
    homeplug.hreq.nvds  Non-volatile Database Status
        Unsigned 8-bit integer
    homeplug.hreq.reset  Reset
        Unsigned 8-bit integer
    homeplug.hreq.reset.delay  Delay
        Unsigned 16-bit integer
    homeplug.hreq.reset.type  Type
        Unsigned 8-bit integer
    homeplug.hreq.rsl  Reset Secondary Loader
        Unsigned 8-bit integer
    homeplug.hrsp  Host Response
        No value
    homeplug.hrsp.gdvr  Get Device Version
        Unsigned 8-bit integer
    homeplug.hrsp.gfvr  Get Firmware Version
        Unsigned 8-bit integer
        Get Firmwave Version
    homeplug.hrsp.gnekr  Get Network Encryption Key
        Unsigned 8-bit integer
    homeplug.hrsp.gnekr.key  Key
        Unsigned 64-bit integer
    homeplug.hrsp.gnekr.select  Key Select
        Unsigned 8-bit integer
    homeplug.hrsp.invalid  Invalid
        Unsigned 8-bit integer
    homeplug.hrsp.mid  Message ID
        Unsigned 8-bit integer
    homeplug.hrsp.version  Version
        String
    homeplug.htag  Host Tag
        No value
    homeplug.leader  Loader
        No value
    homeplug.loader.cm  Commit Modules
        Unsigned 8-bit integer
    homeplug.loader.data  Data
        Byte array
    homeplug.loader.data.address  Address
        Unsigned 32-bit integer
    homeplug.loader.data.length  Data length
        Unsigned 16-bit integer
    homeplug.loader.emd  Erase Module Data
        Unsigned 8-bit integer
    homeplug.loader.gdfv  Get Device/Firmware Version
        Unsigned 8-bit integer
    homeplug.loader.gmd  Get Module Data
        Unsigned 8-bit integer
    homeplug.loader.length  Length
        Unsigned 16-bit integer
    homeplug.loader.lenvms  Erase NVM Sectors
        Unsigned 8-bit integer
    homeplug.loader.lrm  Read Memory
        Unsigned 8-bit integer
    homeplug.loader.lrnvm  Read NVM Data
        Unsigned 8-bit integer
    homeplug.loader.lsf  Start Firmware
        Unsigned 8-bit integer
    homeplug.loader.lwm  Write Memory
        Unsigned 8-bit integer
    homeplug.loader.mid  Message ID
        Unsigned 8-bit integer
    homeplug.loader.module.id  Module ID
        Unsigned 32-bit integer
    homeplug.loader.module.offset  Offset
        Unsigned 32-bit integer
    homeplug.loader.module.size  Module size
        Unsigned 32-bit integer
    homeplug.loader.nvmp  Get NVM Parameters
        Unsigned 8-bit integer
    homeplug.loader.nvmp.blocksize  Block Size
        Unsigned 32-bit integer
    homeplug.loader.nvmp.memorysize  Memory Size
        Unsigned 32-bit integer
    homeplug.loader.nvmp.pagesize  Page Size
        Unsigned 32-bit integer
    homeplug.loader.nvmp.type  Type
        Unsigned 32-bit integer
    homeplug.loader.smd  Set Module Data
        Unsigned 8-bit integer
    homeplug.loader.status  Status
        Unsigned 16-bit integer
    homeplug.loader.version  Version
        String
    homeplug.mctrl  MAC Control Field
        No value
    homeplug.mctrl.ne  Number of MAC Data Entries
        Unsigned 8-bit integer
    homeplug.mctrl.rsvd  Reserved
        Unsigned 8-bit integer
    homeplug.mehdr  MAC Management Entry Header
        No value
    homeplug.mehdr.metype  MAC Entry Type
        Unsigned 8-bit integer
    homeplug.mehdr.mev  MAC Entry Version
        Unsigned 8-bit integer
    homeplug.melen  MAC Management Entry Length
        Unsigned 8-bit integer
    homeplug.mmentry  MAC Management Entry Data
        Unsigned 8-bit integer
    homeplug.mwr  Multicast With Response
        No value
    homeplug.ns  Network Statistics
        No value
    homeplug.ns.ac  Action Control
        Boolean
    homeplug.ns.buf_in_use  Buffer in use
        Boolean
        Buffer in use (1) or Available (0)
    homeplug.ns.bytes40  Bytes in 40 symbols
        Unsigned 16-bit integer
    homeplug.ns.bytes40_robo  Bytes in 40 symbols in ROBO
        Unsigned 16-bit integer
    homeplug.ns.drops  Frame Drops
        Unsigned 16-bit integer
    homeplug.ns.drops_robo  Frame Drops in ROBO
        Unsigned 16-bit integer
    homeplug.ns.extended  Network Statistics is Extended
        Boolean
        Network Statistics is Extended (MELEN >= 199)
    homeplug.ns.fails  Fails Received
        Unsigned 16-bit integer
    homeplug.ns.fails_robo  Fails Received in ROBO
        Unsigned 16-bit integer
    homeplug.ns.icid  IC_ID
        Unsigned 8-bit integer
    homeplug.ns.msdu_len  MSDU Length
        Unsigned 8-bit integer
    homeplug.ns.netw_da  Address of Network DA
        6-byte Hardware (MAC) Address
    homeplug.ns.prio  Priority
        Unsigned 8-bit integer
    homeplug.ns.seqn  Sequence Number
        Unsigned 8-bit integer
    homeplug.ns.toneidx  Transmit tone map index
        Unsigned 8-bit integer
        Maps to the 16 statistics occurring earlier in this MME
    homeplug.ns.tx_bfr_state  Transmit Buffer State
        No value
    homeplug.psr  Parameters and Statistics Response
        No value
    homeplug.psr.rxbp40  Receive Cumulative Bytes per 40-symbol
        Unsigned 32-bit integer
    homeplug.psr.txack  Transmit ACK Counter
        Unsigned 16-bit integer
    homeplug.psr.txca0lat  Transmit CA0 Latency Counter
        Unsigned 16-bit integer
    homeplug.psr.txca1lat  Transmit CA1 Latency Counter
        Unsigned 16-bit integer
    homeplug.psr.txca2lat  Transmit CA2 Latency Counter
        Unsigned 16-bit integer
    homeplug.psr.txca3lat  Transmit CA3 Latency Counter
        Unsigned 16-bit integer
    homeplug.psr.txcloss  Transmit Contention Loss Counter
        Unsigned 16-bit integer
    homeplug.psr.txcoll  Transmit Collision Counter
        Unsigned 16-bit integer
    homeplug.psr.txfail  Transmit FAIL Counter
        Unsigned 16-bit integer
    homeplug.psr.txnack  Transmit NACK Counter
        Unsigned 16-bit integer
    homeplug.rba  Replace Bridge Address
        No value
    homeplug.rce  Request Channel Estimation
        No value
    homeplug.rce.cev  Channel Estimation Version
        Unsigned 8-bit integer
    homeplug.rce.rsvd  Reserved
        Unsigned 8-bit integer
    homeplug.rps  Request Parameters and Statistics
        No value
    homeplug.slp  Set Local Parameters
        No value
    homeplug.slp.ma  MAC Address
        6-byte Hardware (MAC) Address
    homeplug.snk  Set Network Encryption Key
        No value
    homeplug.snk.eks  Encryption Key Select
        Unsigned 8-bit integer
    homeplug.snk.nek  Network Encryption Key
        Byte array
    homeplug.stc  Set Transmit Characteristics
        No value
    homeplug.stc.cftop  Contention Free Transmit Override Priority
        Boolean
        Transmit subsequent contention free frames with CA2/CA3 priority
    homeplug.stc.dder  Disable Default Encryption Receive
        Boolean
    homeplug.stc.dees  Disable EEPROM Save
        Boolean
    homeplug.stc.dur  Disable Unencrypted Receive
        Boolean
    homeplug.stc.ebp  INT51X1 (Host/DTE Option) Enable Backpressure
        Boolean
    homeplug.stc.encf  Encryption Flag
        Boolean
        Encrypt subsequent frames
    homeplug.stc.lco  Local Consumption Only
        Boolean
        Do not transmit subsequent frames to medium
    homeplug.stc.retry  Retry Control
        Unsigned 8-bit integer
    homeplug.stc.rexp  Response Expected
        Boolean
        Mark subsequent frames to receive response
    homeplug.stc.rsvd1  Reserved
        Unsigned 8-bit integer
    homeplug.stc.rsvd2  Reserved
        Unsigned 8-bit integer
    homeplug.stc.txcf  Transmit Contention Free
        Boolean
        Mark subsequently transmitted frames as contention free
    homeplug.stc.txeks  EKS to be used for encryption
        Unsigned 8-bit integer
    homeplug.stc.txprio  Transmit Priority
        Unsigned 8-bit integer
    homeplug.vs  Vendor Specific
        No value
    homeplug.vs.dir  Direction
        Unsigned 8-bit integer
    homeplug.vs.mid  Message ID
        Unsigned 8-bit integer
    homeplug.vs.oui  OUI
        Unsigned 24-bit integer

Host Identity Protocol (hip)

    hip.checksum  Checksum
        Unsigned 16-bit integer
    hip.controls  HIP Controls
        Unsigned 16-bit integer
    hip.controls.a  Anonymous (Sender's HI is anonymous)
        Boolean
    hip.hdr_len  Header Length
        Unsigned 8-bit integer
    hip.hit_rcvr  Receiver's HIT
        Byte array
    hip.hit_sndr  Sender's HIT
        Byte array
    hip.packet_type  Packet Type
        Unsigned 8-bit integer
    hip.proto  Payload Protocol
        Unsigned 8-bit integer
    hip.shim6_fixed_p  Header fixed bit P
        Unsigned 8-bit integer
    hip.shim6_fixed_s  Header fixed bit S
        Unsigned 8-bit integer
    hip.tlv.cert_count  Cert count
        Unsigned 8-bit integer
    hip.tlv.cert_group  Cert group
        Unsigned 8-bit integer
    hip.tlv.cert_id  Cert ID
        Unsigned 8-bit integer
    hip.tlv.cert_type  Cert type
        Unsigned 8-bit integer
    hip.tlv.certificate  Certificate
        Byte array
    hip.tlv.dh_group_id  Group ID
        Unsigned 8-bit integer
    hip.tlv.dh_public_value  Public Value
        Byte array
    hip.tlv.dh_pv_length  Public Value Length
        Unsigned 16-bit integer
    hip.tlv.enc_reserved  Reserved
        Unsigned 32-bit integer
    hip.tlv.esp_trans_res  Reserved
        Unsigned 16-bit integer
    hip.tlv.hmac  HMAC
        Byte array
    hip.tlv.host_domain_id_length  Domain Identifier Length
        Unsigned 16-bit integer
    hip.tlv.host_domain_id_type  Domain Identifier Type
        Unsigned 8-bit integer
    hip.tlv.host_id_e  RSA Host Identity exponent (e)
        Byte array
    hip.tlv.host_id_e_length  RSA Host Identity exponent length (e_len)
        Unsigned 16-bit integer
    hip.tlv.host_id_g  Host Identity G
        Byte array
    hip.tlv.host_id_hdr  Host Identity flags
        Unsigned 32-bit integer
    hip.tlv.host_id_header_algo  Host Identity Header Algorithm
        Unsigned 32-bit integer
    hip.tlv.host_id_header_flags  Host Identity Header Flags
        Unsigned 32-bit integer
    hip.tlv.host_id_header_proto  Host Identity Header Protocol
        Unsigned 32-bit integer
    hip.tlv.host_id_length  Host Identity Length
        Unsigned 16-bit integer
    hip.tlv.host_id_n  RSA Host Identity public modulus (n)
        Byte array
    hip.tlv.host_id_p  Host Identity P
        Byte array
    hip.tlv.host_id_y  Host Identity Y (public value)
        Byte array
    hip.tlv.host_identity_q  Host Identity Q
        Byte array
    hip.tlv.host_identity_t  Host Identity T
        Unsigned 8-bit integer
    hip.tlv.locator_address  Locator
        IPv6 address
    hip.tlv.locator_kind  Locator kind
        Unsigned 8-bit integer
    hip.tlv.locator_len  Locator Length
        Unsigned 8-bit integer
    hip.tlv.locator_lifetime  Locator Lifetime
        Unsigned 32-bit integer
    hip.tlv.locator_port  Locator port
        Unsigned 16-bit integer
    hip.tlv.locator_priority  Locator priority
        Unsigned 32-bit integer
    hip.tlv.locator_reserved  Reserved
        Unsigned 8-bit integer
    hip.tlv.locator_spi  Locator SPI
        Unsigned 32-bit integer
    hip.tlv.locator_traffic_type  Traffic Type
        Unsigned 8-bit integer
    hip.tlv.locator_transport_protocol  Locator transport protocol
        Unsigned 8-bit integer
    hip.tlv.locator_type  Locator Type
        Unsigned 8-bit integer
    hip.tlv.nat_traversal_mode_id  NAT Traversal Mode ID
        Unsigned 16-bit integer
    hip.tlv.notification_data  Notification Data
        Byte array
    hip.tlv.notification_res  Notification Reserved
        Unsigned 16-bit integer
    hip.tlv.notification_type  Notification Message Type
        Unsigned 16-bit integer
    hip.tlv.opaque_data  Opaque Data
        Byte array
    hip.tlv.puzzle_random_i  Random number (I)
        Byte array
    hip.tlv.r1_counter  R1 Counter
        Byte array
    hip.tlv.r1_reserved  Reserved
        Unsigned 32-bit integer
    hip.tlv.reg_failtype  Registration Failure Type
        Unsigned 8-bit integer
    hip.tlv.reg_from_port  Port
        Unsigned 16-bit integer
    hip.tlv.reg_lt  Registration Lifetime
        Unsigned 8-bit integer
    hip.tlv.reg_ltmax  Maximum Registration Lifetime
        Unsigned 8-bit integer
    hip.tlv.reg_ltmin  Minimum Registration Lifetime
        Unsigned 8-bit integer
    hip.tlv.reg_type  Registration Type
        Unsigned 8-bit integer
    hip.tlv.relay_from_port  Relay From Port
        Unsigned 16-bit integer
    hip.tlv.relay_to_port  Relay To Port
        Unsigned 16-bit integer
    hip.tlv.sig  Signature
        Byte array
    hip.tlv.sig_alg  Signature Algorithm
        Unsigned 8-bit integer
    hip.tlv.solution_random_i  Random number (I)
        Byte array
    hip.tlv.trans_id  Transform ID
        Unsigned 16-bit integer
    hip.tlv_ack_updid  ACKed Peer Update ID
        Unsigned 32-bit integer
    hip.tlv_esp_info_key_index  Keymaterial Index
        Unsigned 16-bit integer
    hip.tlv_esp_info_new_spi  New SPI
        Unsigned 32-bit integer
    hip.tlv_esp_info_old_spi  Old SPI
        Unsigned 32-bit integer
    hip.tlv_esp_info_reserved  Reserved
        Unsigned 16-bit integer
    hip.tlv_from_address  Address
        IPv6 address
    hip.tlv_puzzle_k  Difficulty (K)
        Unsigned 8-bit integer
    hip.tlv_puzzle_lifetime  Lifetime
        Unsigned 8-bit integer
    hip.tlv_puzzle_opaque  Opaque Data
        Unsigned 16-bit integer
    hip.tlv_reg_from_address  Address
        IPv6 address
    hip.tlv_reg_from_protocol  Protocol
        Unsigned 8-bit integer
    hip.tlv_reg_from_reserved  Reserved
        Unsigned 8-bit integer
    hip.tlv_relay_from_address  Address
        IPv6 address
    hip.tlv_relay_from_protocol  Protocol
        Unsigned 8-bit integer
    hip.tlv_relay_from_reserved  Reserved
        Unsigned 8-bit integer
    hip.tlv_relay_to_address  Address
        IPv6 address
    hip.tlv_relay_to_protocol  Protocol
        Unsigned 8-bit integer
    hip.tlv_relay_to_reserved  Reserved
        Unsigned 8-bit integer
    hip.tlv_rvs_address  RVS Address
        IPv6 address
    hip.tlv_seq_update_id  Seq Update ID
        Unsigned 32-bit integer
    hip.tlv_solution_j  Solution (J)
        Byte array
    hip.tlv_solution_k  Difficulty (K)
        Unsigned 8-bit integer
    hip.tlv_solution_opaque  Opaque Data
        Unsigned 16-bit integer
    hip.tlv_solution_reserved  Reserved
        Unsigned 8-bit integer
    hip.tlv_transaction_minta  Min Ta
        Unsigned 32-bit integer
    hip.type  Type
        Unsigned 16-bit integer
    hip.version  Version
        Unsigned 8-bit integer

Hummingbird NFS Daemon (hclnfsd)

    hclnfsd.access  Access
        Unsigned 32-bit integer
    hclnfsd.authorize.ident.obscure  Obscure Ident
        String
        Authentication Obscure Ident
    hclnfsd.cookie  Cookie
        Unsigned 32-bit integer
    hclnfsd.copies  Copies
        Unsigned 32-bit integer
    hclnfsd.device  Device
        String
    hclnfsd.exclusive  Exclusive
        Unsigned 32-bit integer
    hclnfsd.fileext  File Extension
        Unsigned 32-bit integer
    hclnfsd.filename  Filename
        String
    hclnfsd.gid  GID
        Unsigned 32-bit integer
        Group ID
    hclnfsd.group  Group
        String
    hclnfsd.host_ip  Host IP
        IPv4 address
    hclnfsd.hostname  Hostname
        String
    hclnfsd.jobstatus  Job Status
        Unsigned 32-bit integer
    hclnfsd.length  Length
        Unsigned 32-bit integer
    hclnfsd.lockname  Lockname
        String
    hclnfsd.lockowner  Lockowner
        Byte array
    hclnfsd.logintext  Login Text
        String
    hclnfsd.mode  Mode
        Unsigned 32-bit integer
    hclnfsd.npp  Number of Physical Printers
        Unsigned 32-bit integer
    hclnfsd.offset  Offset
        Unsigned 32-bit integer
    hclnfsd.pqn  Print Queue Number
        Unsigned 32-bit integer
    hclnfsd.printername  Printer Name
        String
        Printer name
    hclnfsd.printparameters  Print Parameters
        String
    hclnfsd.printqueuecomment  Comment
        String
        Print Queue Comment
    hclnfsd.printqueuename  Name
        String
        Print Queue Name
    hclnfsd.procedure_v1  V1 Procedure
        Unsigned 32-bit integer
    hclnfsd.queuestatus  Queue Status
        Unsigned 32-bit integer
    hclnfsd.request_type  Request Type
        Unsigned 32-bit integer
    hclnfsd.sequence  Sequence
        Unsigned 32-bit integer
    hclnfsd.server_ip  Server IP
        IPv4 address
    hclnfsd.size  Size
        Unsigned 32-bit integer
    hclnfsd.status  Status
        Unsigned 32-bit integer
    hclnfsd.timesubmitted  Time Submitted
        Unsigned 32-bit integer
    hclnfsd.uid  UID
        Unsigned 32-bit integer
        User ID
    hclnfsd.unknown_data  Unknown
        Byte array
        Data
    hclnfsd.username  Username
        String

HyperSCSI (hyperscsi)

    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

Hypertext Transfer Protocol (http)

    http.accept  Accept
        String
        HTTP Accept
    http.accept_encoding  Accept Encoding
        String
        HTTP Accept Encoding
    http.accept_language  Accept-Language
        String
        HTTP Accept Language
    http.authbasic  Credentials
        String
    http.authorization  Authorization
        String
        HTTP Authorization header
    http.cache_control  Cache-Control
        String
        HTTP Cache Control
    http.connection  Connection
        String
        HTTP Connection
    http.content_encoding  Content-Encoding
        String
        HTTP Content-Encoding header
    http.content_length  Content length
        Unsigned 64-bit integer
    http.content_length_header  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.proxy_connect_host  Proxy-Connect-Hostname
        String
        HTTP Proxy Connect Hostname
    http.proxy_connect_port  Proxy-Connect-Port
        Unsigned 16-bit integer
        HTTP Proxy Connect Port
    http.referer  Referer
        String
        HTTP Referer
    http.request  Request
        Boolean
        TRUE if HTTP request
    http.request.method  Request Method
        String
        HTTP Request Method
    http.request.uri  Request URI
        String
        HTTP Request-URI
    http.request.version  Request Version
        String
        HTTP Request HTTP-Version
    http.response  Response
        Boolean
        TRUE if HTTP response
    http.response.code  Response Code
        Unsigned 16-bit integer
        HTTP Response Code
    http.server  Server
        String
        HTTP Server
    http.set_cookie  Set-Cookie
        String
        HTTP Set Cookie
    http.transfer_encoding  Transfer-Encoding
        String
        HTTP Transfer-Encoding header
    http.user_agent  User-Agent
        String
        HTTP User-Agent header
    http.www_authenticate  WWW-Authenticate
        String
        HTTP WWW-Authenticate header
    http.x_forwarded_for  X-Forwarded-For
        String
        HTTP X-Forwarded-For

ICBAAccoCallback (cba_acco_cb)

    cba.acco.cb_conn_data  CBA Connection data
        No value
    cba.acco.cb_count  Count
        Unsigned 16-bit integer
    cba.acco.cb_flags  Flags
        Unsigned 8-bit integer
    cba.acco.cb_item  Item
        No value
    cba.acco.cb_item_data  Data(Hex)
        Byte array
    cba.acco.cb_item_hole  Hole
        No value
    cba.acco.cb_item_length  Length
        Unsigned 16-bit integer
    cba.acco.cb_length  Length
        Unsigned 32-bit integer
    cba.acco.cb_version  Version
        Unsigned 8-bit integer
    cba.connect_in  Connect in frame
        Frame number
        This connection Connect was in the packet with this number
    cba.data_first_in  First data in frame
        Frame number
        The first data of this connection/frame in the packet with this number
    cba.data_last_in  Last data in frame
        Frame number
        The last data of this connection/frame in the packet with this number
    cba.disconnect_in  Disconnect in frame
        Frame number
        This connection Disconnect was in the packet with this number
    cba.disconnectme_in  DisconnectMe in frame
        Frame number
        This connection/frame DisconnectMe was in the packet with this number

ICBAAccoCallback2 (cba_acco_cb2)

ICBAAccoMgt (cba_acco_mgt)

    cba.acco.addconnectionin  ADDCONNECTIONIN
        No value
    cba.acco.addconnectionout  ADDCONNECTIONOUT
        No value
    cba.acco.cdb_cookie  CDBCookie
        Unsigned 32-bit integer
    cba.acco.conn_cons_id  ConsumerID
        Unsigned 32-bit integer
    cba.acco.conn_consumer  Consumer
        String
    cba.acco.conn_consumer_item  ConsumerItem
        String
    cba.acco.conn_epsilon  Epsilon
        No value
    cba.acco.conn_error_state  ConnErrorState
        Unsigned 32-bit integer
    cba.acco.conn_persist  Persistence
        Unsigned 16-bit integer
    cba.acco.conn_prov_id  ProviderID
        Unsigned 32-bit integer
    cba.acco.conn_provider  Provider
        String
    cba.acco.conn_provider_item  ProviderItem
        String
    cba.acco.conn_qos_type  QoSType
        Unsigned 16-bit integer
    cba.acco.conn_qos_value  QoSValue
        Unsigned 16-bit integer
    cba.acco.conn_state  State
        Unsigned 8-bit integer
    cba.acco.conn_substitute  Substitute
        No value
    cba.acco.conn_version  ConnVersion
        Unsigned 16-bit integer
    cba.acco.connectin  CONNECTIN
        No value
    cba.acco.connectincr  CONNECTINCR
        No value
    cba.acco.connectout  CONNECTOUT
        No value
    cba.acco.connectoutcr  CONNECTOUTCR
        No value
    cba.acco.count  Count
        Unsigned 32-bit integer
    cba.acco.data  Data
        No value
    cba.acco.dcom  DcomRuntime
        Boolean
        This is a DCOM runtime context
    cba.acco.diag_data  Data
        Byte array
    cba.acco.diag_in_length  InLength
        Unsigned 32-bit integer
    cba.acco.diag_out_length  OutLength
        Unsigned 32-bit integer
    cba.acco.diag_req  Request
        Unsigned 32-bit integer
    cba.acco.diagconsconnout  DIAGCONSCONNOUT
        No value
    cba.acco.getconnectionout  GETCONNECTIONOUT
        No value
    cba.acco.getconsconnout  GETCONSCONNOUT
        No value
    cba.acco.getidout  GETIDOUT
        No value
    cba.acco.info_curr  Current
        Unsigned 32-bit integer
    cba.acco.info_max  Max
        Unsigned 32-bit integer
    cba.acco.item  Item
        String
    cba.acco.opnum  Operation
        Unsigned 16-bit integer
    cba.acco.ping_factor  PingFactor
        Unsigned 16-bit integer
    cba.acco.prov_crid  ProviderCRID
        Unsigned 32-bit integer
    cba.acco.qc  QualityCode
        Unsigned 8-bit integer
    cba.acco.readitemout  ReadItemOut
        No value
    cba.acco.rtauto  RTAuto
        String
    cba.acco.srt  SrtRuntime
        Boolean
        This is an SRT runtime context
    cba.acco.time_stamp  TimeStamp
        Unsigned 64-bit integer
    cba.acco.writeitemin  WriteItemIn
        No value

ICBAAccoMgt2 (cba_acco_mgt2)

ICBAAccoServer (cba_acco_server)

    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

ICBAAccoServer2 (cba_acco_server2)

ICBAAccoServerSRT (cba_acco_server_srt)

ICBAAccoSync (cba_acco_sync)

ICBABrowse (cba_browse)

    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
    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

ICBABrowse2 (cba_browse2)

ICBAGroupError (cba_grouperror)

ICBAGroupErrorEvent (cba_grouperror_event)

ICBALogicalDevice (cba_ldev)

ICBALogicalDevice2 (cba_ldev2)

ICBAPersist (cba_persist)

ICBAPersist2 (cba_persist2)

ICBAPhysicalDevice (cba_pdev)

    cba.component_id  ComponentID
        String
    cba.component_version  Version
        String
    cba.multi_app  MultiApp
        Unsigned 16-bit integer
    cba.name  Name
        String
    cba.pbaddress  PROFIBUS Address
        No value
    cba.pbaddress.address  Address
        Unsigned 8-bit integer
    cba.pbaddress.system_id  SystemID
        Unsigned 8-bit integer
    cba.pdev_stamp  PDevStamp
        Unsigned 32-bit integer
    cba.producer  Producer
        String
    cba.product  Product
        String
    cba.profinet_dcom_stack  PROFInetDCOMStack
        Unsigned 16-bit integer
    cba.revision_major  Major
        Unsigned 16-bit integer
    cba.revision_minor  Minor
        Unsigned 16-bit integer
    cba.revision_service_pack  ServicePack
        Unsigned 16-bit integer
    cba.save_ldev_name  LDevName
        No value
    cba.save_result  PartialResult
        No value
    cba_revision_build  Build
        Unsigned 16-bit integer

ICBAPhysicalDevice2 (cba_pdev2)

ICBAPhysicalDevicePC (cba_pdev_pc)

ICBAPhysicalDevicePCEvent (cba_pdev_pc_event)

ICBARTAuto (cba_rtauto)

ICBARTAuto2 (cba_rtauto2)

ICBAState (cba_state)

ICBAStateEvent (cba_state_event)

ICBASystemProperties (cba_sysprop)

ICBATime (cba_time)

ICQ Protocol (icq)

    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

IEC 60870-5-104-Apci (104apci)

    104apci.apdulen  ApduLen
        Unsigned 8-bit integer
        APDU Len
    104apci.type  ApciType
        Unsigned 8-bit integer
        APCI type
    104apci.utype  ApciUType
        Unsigned 8-bit integer
        Apci U type

IEC 60870-5-104-Asdu (104asdu)

    104asdu.addr  Addr
        Unsigned 16-bit integer
        Common Address of Asdu
    104asdu.causetx  CauseTx
        Unsigned 8-bit integer
        Cause of Transmision
    104asdu.ioa  IOA
        Unsigned 24-bit integer
        Information Object Address
    104asdu.nega  Negative
        Boolean
    104asdu.numix  NumIx
        Unsigned 8-bit integer
        Number of Information Objects/Elements
    104asdu.oa  OA
        Unsigned 8-bit integer
        Originator Address
    104asdu.sq  SQ
        Boolean
        Sequence
    104asdu.test  Test
        Boolean
    104asdu.typeid  TypeId
        Unsigned 8-bit integer
        Asdu Type Id
    iec104.asdu_asdunormval  Object value
        Signed 16-bit integer
        Object value
    iec104.asdu_float  Object value
        Single-precision floating point
        Object value

IEC61850 Sampled Values (sv)

    sv.ASDU  ASDU
        No value
    sv.appid  APPID
        Unsigned 16-bit integer
    sv.confRef  confRef
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    sv.length  Length
        Unsigned 16-bit integer
    sv.meas_quality  quality
        Unsigned 32-bit integer
    sv.meas_quality.badreference  bad reference
        Boolean
    sv.meas_quality.derived  derived
        Boolean
    sv.meas_quality.failure  failure
        Boolean
    sv.meas_quality.inaccurate  inaccurate
        Boolean
    sv.meas_quality.inconsistent  inconsistent
        Boolean
    sv.meas_quality.olddata  old data
        Boolean
    sv.meas_quality.operatorblocked  operator blocked
        Boolean
    sv.meas_quality.oscillatory  oscillatory
        Boolean
    sv.meas_quality.outofrange  out of range
        Boolean
    sv.meas_quality.overflow  overflow
        Boolean
    sv.meas_quality.source  source
        Unsigned 32-bit integer
    sv.meas_quality.teset  test
        Boolean
    sv.meas_quality.validity  validity
        Unsigned 32-bit integer
    sv.meas_value  value
        Signed 32-bit integer
    sv.noASDU  noASDU
        Unsigned 32-bit integer
        INTEGER_0_65535
    sv.reserve1  Reserved 1
        Unsigned 16-bit integer
    sv.reserve2  Reserved 2
        Unsigned 16-bit integer
    sv.savPdu  savPdu
        No value
    sv.seqASDU  seqASDU
        Unsigned 32-bit integer
        SEQUENCE_OF_ASDU
    sv.seqData  seqData
        Byte array
        Data
    sv.smpCnt  smpCnt
        Unsigned 32-bit integer
    sv.smpSynch  smpSynch
        Signed 32-bit integer
    sv.svID  svID
        String
        VisibleString

IEEE 1722 Protocol (ieee1722)

    ieee1722.avbtp_timestamp  AVBTP Timestamp
        Unsigned 32-bit integer
    ieee1722.cdfield  Control/Data Indicator
        Boolean
    ieee1722.channel  1394 Packet Channel
        Unsigned 8-bit integer
    ieee1722.data  Audio Data
        Byte array
    ieee1722.data.sample.label  Label
        Unsigned 8-bit integer
    ieee1722.data.sample.sampledata  Sample
        Byte array
    ieee1722.dbc  Data Block Continuity
        Unsigned 8-bit integer
    ieee1722.dbs  Data Block Size
        Unsigned 8-bit integer
    ieee1722.fdf  Format Dependent Field
        Unsigned 8-bit integer
    ieee1722.fmt  Format ID
        Unsigned 8-bit integer
    ieee1722.fn  Fraction Number
        Unsigned 8-bit integer
    ieee1722.gateway_info  Gateway Info
        Unsigned 32-bit integer
    ieee1722.gvfield  AVBTP Gateway Info Valid
        Boolean
    ieee1722.mrfield  AVBTP Media Reset
        Unsigned 8-bit integer
    ieee1722.packet_data_len  1394 Packet Data Length
        Unsigned 16-bit integer
    ieee1722.qpc  Quadlet Padding Count
        Unsigned 8-bit integer
    ieee1722.seqnum  Sequence Number
        Unsigned 8-bit integer
    ieee1722.sid  Source ID
        Unsigned 8-bit integer
    ieee1722.sph  Source Packet Header
        Boolean
    ieee1722.stream_id  Stream ID
        Unsigned 64-bit integer
    ieee1722.subtype  AVBTP Subtype
        Unsigned 8-bit integer
    ieee1722.svfield  AVBTP Stream ID Valid
        Boolean
    ieee1722.sy  1394 App-specific Control
        Unsigned 8-bit integer
    ieee1722.syt  SYT
        Unsigned 16-bit integer
    ieee1722.tag  1394 Packet Format Tag
        Unsigned 8-bit integer
    ieee1722.tcode  1394 Packet Tcode
        Unsigned 8-bit integer
    ieee1722.tufield  AVBTP Timestamp Uncertain
        Boolean
    ieee1722.tvfield  Source Timestamp Valid
        Boolean
    ieee1722.verfield  AVBTP Version
        Unsigned 8-bit integer

IEEE 802.11 Radiotap Capture header (radiotap)

    radiotap.antenna  Antenna
        Unsigned 32-bit integer
        Antenna number this frame was sent/received over (starting at 0)
    radiotap.channel  Channel
        Unsigned 32-bit integer
        802.11 channel number that this frame was sent/received on
    radiotap.channel.freq  Channel frequency
        Unsigned 32-bit integer
        Channel frequency in megahertz that this frame was sent/received on
    radiotap.channel.type  Channel type
        Unsigned 16-bit integer
    radiotap.channel.type.2ghz  2 GHz spectrum
        Boolean
        Channel Type 2 GHz spectrum
    radiotap.channel.type.5ghz  5 GHz spectrum
        Boolean
        Channel Type 5 GHz spectrum
    radiotap.channel.type.cck  Complementary Code Keying (CCK)
        Boolean
        Channel Type Complementary Code Keying (CCK) Modulation
    radiotap.channel.type.dynamic  Dynamic CCK-OFDM
        Boolean
        Channel Type Dynamic CCK-OFDM Channel
    radiotap.channel.type.gfsk  Gaussian Frequency Shift Keying (GFSK)
        Boolean
        Channel Type Gaussian Frequency Shift Keying (GFSK) Modulation
    radiotap.channel.type.gsm  GSM (900MHz)
        Boolean
        Channel Type GSM
    radiotap.channel.type.half  Half Rate Channel (10MHz Channel Width)
        Boolean
        Channel Type Half Rate
    radiotap.channel.type.ofdm  Orthogonal Frequency-Division Multiplexing (OFDM)
        Boolean
        Channel Type Orthogonal Frequency-Division Multiplexing (OFDM)
    radiotap.channel.type.passive  Passive
        Boolean
        Channel Type Passive
    radiotap.channel.type.quarter  Quarter Rate Channel (5MHz Channel Width)
        Boolean
        Channel Type Quarter Rate
    radiotap.channel.type.sturbo  Static Turbo
        Boolean
        Channel Type Status Turbo
    radiotap.channel.type.turbo  Turbo
        Boolean
        Channel Type Turbo
    radiotap.channel.xtype.passive  Passive
        Boolean
        Channel Type Passive
    radiotap.datarate  Data rate (Mb/s)
        Single-precision floating point
        Speed this frame was sent/received at
    radiotap.db_antnoise  SSI Noise (dB)
        Unsigned 32-bit integer
        RF noise power at the antenna from a fixed, arbitrary value in decibels
    radiotap.db_antsignal  SSI Signal (dB)
        Unsigned 32-bit integer
        RF signal power at the antenna from a fixed, arbitrary value in decibels
    radiotap.db_txattenuation  Transmit attenuation (dB)
        Unsigned 16-bit integer
        Transmit power expressed as decibels from max power set at factory (0 is max power)
    radiotap.dbm_antsignal  SSI Signal (dBm)
        Signed 32-bit integer
        RF signal power at the antenna from a fixed, arbitrary value in decibels from one milliwatt
    radiotap.fcs  802.11 FCS
        Unsigned 32-bit integer
        Frame check sequence of this frame
    radiotap.fcs_bad  Bad FCS
        Boolean
        Specifies if this frame has a bad frame check sequence
    radiotap.fhss.hopset  FHSS Hop Set
        Unsigned 8-bit integer
        Frequency Hopping Spread Spectrum hopset
    radiotap.fhss.pattern  FHSS Pattern
        Unsigned 8-bit integer
        Frequency Hopping Spread Spectrum hop pattern
    radiotap.flags  Flags
        Unsigned 8-bit integer
    radiotap.flags.badfcs  Bad FCS
        Boolean
        Frame received with bad FCS
    radiotap.flags.cfp  CFP
        Boolean
        Sent/Received during CFP
    radiotap.flags.datapad  Data Pad
        Boolean
        Frame has padding between 802.11 header and payload
    radiotap.flags.fcs  FCS at end
        Boolean
        Frame includes FCS at end
    radiotap.flags.frag  Fragmentation
        Boolean
        Sent/Received with fragmentation
    radiotap.flags.preamble  Preamble
        Boolean
        Sent/Received with short preamble
    radiotap.flags.shortgi  Short GI
        Boolean
        Frame Sent/Received with HT short Guard Interval
    radiotap.flags.wep  WEP
        Boolean
        Sent/Received with WEP encryption
    radiotap.length  Header length
        Unsigned 16-bit integer
        Length of header including version, pad, length and data fields
    radiotap.mactime  MAC timestamp
        Unsigned 64-bit integer
        Value in microseconds of the MAC's Time Synchronization Function timer when the first bit of the MPDU arrived at the MAC.
    radiotap.pad  Header pad
        Unsigned 8-bit integer
        Padding
    radiotap.present  Present flags
        Unsigned 32-bit integer
        Bitmask indicating which fields are present
    radiotap.present.antenna  Antenna
        Boolean
        Specifies if the antenna number field is present
    radiotap.present.channel  Channel
        Boolean
        Specifies if the transmit/receive frequency field is present
    radiotap.present.db_antnoise  DB Antenna Noise
        Boolean
        Specifies if the RF signal power at antenna in dBm field is present
    radiotap.present.db_antsignal  DB Antenna Signal
        Boolean
        Specifies if the RF signal power at antenna in dB field is present
    radiotap.present.db_tx_attenuation  DB TX Attenuation
        Boolean
        Specifies if the transmit power from max power (in dB) field is present
    radiotap.present.dbm_antnoise  DBM Antenna Noise
        Boolean
        Specifies if the RF noise power at antenna field is present
    radiotap.present.dbm_antsignal  DBM Antenna Signal
        Boolean
        Specifies if the antenna signal strength in dBm is present
    radiotap.present.dbm_tx_attenuation  DBM TX Attenuation
        Boolean
        Specifies if the transmit power from max power (in dBm) field is present
    radiotap.present.ext  Ext
        Boolean
        Specifies if there are any extensions to the header present
    radiotap.present.fcs  FCS in header
        Boolean
        Specifies if the FCS field is present
    radiotap.present.fhss  FHSS
        Boolean
        Specifies if the hop set and pattern is present for frequency hopping radios
    radiotap.present.flags  Flags
        Boolean
        Specifies if the channel flags field is present
    radiotap.present.lock_quality  Lock Quality
        Boolean
        Specifies if the signal quality field is present
    radiotap.present.rate  Rate
        Boolean
        Specifies if the transmit/receive rate field is present
    radiotap.present.rxflags  RX flags
        Boolean
        Specifies if the RX flags field is present
    radiotap.present.tsft  TSFT
        Boolean
        Specifies if the Time Synchronization Function Timer field is present
    radiotap.present.tx_attenuation  TX Attenuation
        Boolean
        Specifies if the transmit power from max power field is present
    radiotap.present.xchannel  Channel+
        Boolean
        Specifies if the extended channel info field is present
    radiotap.quality  Signal Quality
        Unsigned 16-bit integer
        Signal quality (unitless measure)
    radiotap.rxflags  RX flags
        Unsigned 16-bit integer
    radiotap.rxflags.badplcp  Bad PLCP
        Boolean
        Frame with bad PLCP
    radiotap.txattenuation  Transmit attenuation
        Unsigned 16-bit integer
        Transmit power expressed as unitless distance from max power set at factory (0 is max power)
    radiotap.txpower  Transmit power
        Signed 32-bit integer
        Transmit power in decibels per one milliwatt (dBm)
    radiotap.version  Header revision
        Unsigned 8-bit integer
        Version of radiotap header format
    radiotap.xchannel  Channel number
        Unsigned 32-bit integer
    radiotap.xchannel.flags  Channel type
        Unsigned 32-bit integer
    radiotap.xchannel.freq  Channel frequency
        Unsigned 32-bit integer
    radiotap.xchannel.type.2ghz  2 GHz spectrum
        Boolean
        Channel Type 2 GHz spectrum
    radiotap.xchannel.type.5ghz  5 GHz spectrum
        Boolean
        Channel Type 5 GHz spectrum
    radiotap.xchannel.type.cck  Complementary Code Keying (CCK)
        Boolean
        Channel Type Complementary Code Keying (CCK) Modulation
    radiotap.xchannel.type.dynamic  Dynamic CCK-OFDM
        Boolean
        Channel Type Dynamic CCK-OFDM Channel
    radiotap.xchannel.type.gfsk  Gaussian Frequency Shift Keying (GFSK)
        Boolean
        Channel Type Gaussian Frequency Shift Keying (GFSK) Modulation
    radiotap.xchannel.type.gsm  GSM (900MHz)
        Boolean
        Channel Type GSM
    radiotap.xchannel.type.half  Half Rate Channel (10MHz Channel Width)
        Boolean
        Channel Type Half Rate
    radiotap.xchannel.type.ht20  HT Channel (20MHz Channel Width)
        Boolean
        Channel Type HT/20
    radiotap.xchannel.type.ht40d  HT Channel (40MHz Channel Width with Extension channel below)
        Boolean
        Channel Type HT/40-
    radiotap.xchannel.type.ht40u  HT Channel (40MHz Channel Width with Extension channel above)
        Boolean
        Channel Type HT/40+
    radiotap.xchannel.type.ofdm  Orthogonal Frequency-Division Multiplexing (OFDM)
        Boolean
        Channel Type Orthogonal Frequency-Division Multiplexing (OFDM)
    radiotap.xchannel.type.quarter  Quarter Rate Channel (5MHz Channel Width)
        Boolean
        Channel Type Quarter Rate
    radiotap.xchannel.type.sturbo  Static Turbo
        Boolean
        Channel Type Status Turbo
    radiotap.xchannel.type.turbo  Turbo
        Boolean
        Channel Type Turbo

IEEE 802.11 wireless LAN (wlan)

    chan.chan_adapt  Adaptable
        Unsigned 8-bit integer
    chan.chan_channel  channel
        Unsigned 8-bit integer
    chan.chan_content  Contents
        Unsigned 8-bit integer
    chan.chan_length  Length
        Unsigned 8-bit integer
    chan.chan_rate  Rate
        Unsigned 8-bit integer
    chan.chan_tx_pow  Tx Power
        Unsigned 8-bit integer
    chan.chan_uknown  Number of Channels
        Unsigned 8-bit integer
    pst.ACF  Application Contents Field (ACF)
        Unsigned 32-bit integer
        PST ACF
    pst.ACID  Application Class ID (ACID)
        Unsigned 8-bit integer
        PST ACID
    pst.ACM  Application Context Mask
        String
        PST ACM
    pst.ACM.contents  Application Context Mask Contents (ACM)
        Unsigned 32-bit integer
        PST ACM Contents
    pst.ACM.length  Application Context Mask (ACM) Length
        Unsigned 8-bit integer
        PST ACM Length
    pst.addressing  Addressing
        Unsigned 8-bit integer
        PST Addressing
    pst.channel  Service (IEE802.11) Channel
        Unsigned 8-bit integer
        PST Service Channel
    pst.contents  Provider Service Table Contents
        Unsigned 8-bit integer
        PST Contents
    pst.ipv6addr  Internet Protocol V6 Address
        IPv6 address
        IP v6 Addr
    pst.length  Provider Service Table Length
        Unsigned 16-bit integer
        PST Length
    pst.macaddr  Medium Access Control Address (MAC addr)
        6-byte Hardware (MAC) Address
        MAC Address
    pst.priority  Application Priority
        Unsigned 8-bit integer
        PST Priority
    pst.providerCount  No. of Providers announcing their Services
        Unsigned 8-bit integer
        Provider Count
    pst.serviceport  Service Port
        Unsigned 16-bit integer
        PST Service Port
    pst.timingQuality  Timing Quality
        Unsigned 16-bit integer
        PST Timing Quality
    radiotap.dbm_antnoise  SSI Noise (dBm)
        Signed 32-bit integer
        RF noise power at the antenna from a fixed, arbitrary value in decibels per one milliwatt
    wlan.addr  Source or Destination address
        6-byte Hardware (MAC) Address
        Source or Destination Hardware Address
    wlan.aid  Association ID
        Unsigned 16-bit integer
        Association-ID field
    wlan.analysis.retransmission  Retransmission
        No value
        This frame is a suspected wireless retransmission
    wlan.analysis.retransmission_frame  Retransmission of frame
        Frame number
        This is a retransmission of frame #
    wlan.antenna  Antenna
        Unsigned 32-bit integer
        Antenna number this frame was sent/received over (starting at 0)
    wlan.ba.basic.tidinfo  TID for which a Basic BlockAck frame is requested
        Unsigned 16-bit integer
        Traffic Identifier (TID) for which a Basic BlockAck frame is requested
    wlan.ba.bm  Block Ack Bitmap
        Byte array
    wlan.ba.control  Block Ack Request Control
        Unsigned 16-bit integer
    wlan.ba.control.ackpolicy  BAR Ack Policy
        Boolean
        Block Ack Request (BAR) Ack Policy
    wlan.ba.control.cbitmap  Compressed Bitmap
        Boolean
    wlan.ba.control.multitid  Multi-TID
        Boolean
        Multi-Traffic Identifier (TID)
    wlan.ba.mtid.tid  Traffic Identifier (TID) Info
        Unsigned 8-bit integer
    wlan.ba.mtid.tidinfo  Number of TIDs Present
        Unsigned 16-bit integer
        Number of Traffic Identifiers (TIDs) Present
    wlan.ba.type  Block Ack Type
        Unsigned 8-bit integer
    wlan.bar.compressed.tidinfo  TID for which a BlockAck frame is requested
        Unsigned 16-bit integer
        Traffic Identifier (TID) for which a BlockAck frame is requested
    wlan.bar.control  Block Ack Request (BAR) Control
        Unsigned 16-bit integer
    wlan.bar.mtid.tidinfo.reserved  Reserved
        Unsigned 16-bit integer
    wlan.bar.mtid.tidinfo.value  Multi-TID Value
        Unsigned 16-bit integer
    wlan.bar.type  Block Ack Request Type
        Unsigned 8-bit integer
        Block Ack Request (BAR) Type
    wlan.bssid  BSS Id
        6-byte Hardware (MAC) Address
        Basic Service Set ID
    wlan.ccmp.extiv  CCMP Ext. Initialization Vector
        String
        CCMP Extended Initialization Vector
    wlan.channel  Channel
        Unsigned 8-bit integer
        802.11 channel number that this frame was sent/received on
    wlan.channel_frequency  Channel frequency
        Unsigned 32-bit integer
        Channel frequency in megahertz that this frame was sent/received on
    wlan.controlwrap.addr1  First Address of Contained Frame
        6-byte Hardware (MAC) Address
    wlan.da  Destination address
        6-byte Hardware (MAC) Address
        Destination Hardware Address
    wlan.data_rate  Data Rate
        Unsigned 64-bit integer
        Data rate (b/s)
    wlan.dbm_antsignal  SSI Signal (dBm)
        Signed 32-bit integer
        RF signal power at the antenna from a fixed, arbitrary value in decibels from one milliwatt
    wlan.duration  Duration
        Unsigned 16-bit integer
        Duration field
    wlan.fc  Frame Control Field
        Unsigned 16-bit integer
        MAC Frame control
    wlan.fc.ds  DS status
        Unsigned 8-bit integer
        Data-frame DS-traversal status
    wlan.fc.frag  More Fragments
        Boolean
        More Fragments flag
    wlan.fc.fromds  From DS
        Boolean
        From DS flag
    wlan.fc.moredata  More Data
        Boolean
        More data flag
    wlan.fc.order  Order flag
        Boolean
        Strictly ordered flag
    wlan.fc.protected  Protected flag
        Boolean
    wlan.fc.pwrmgt  PWR MGT
        Boolean
        Power management status
    wlan.fc.retry  Retry
        Boolean
        Retransmission flag
    wlan.fc.subtype  Subtype
        Unsigned 8-bit integer
        Frame subtype
    wlan.fc.tods  To DS
        Boolean
        To DS flag
    wlan.fc.type  Type
        Unsigned 8-bit integer
        Frame type
    wlan.fc.type_subtype  Type/Subtype
        Unsigned 8-bit integer
        Type and subtype combined (first byte: type, second byte: subtype)
    wlan.fc.version  Version
        Unsigned 8-bit integer
        MAC Protocol version
    wlan.fcs  Frame check sequence
        Unsigned 32-bit integer
        Frame Check Sequence (FCS)
    wlan.fcs_bad  Bad
        Boolean
        True if the FCS is incorrect
    wlan.fcs_good  Good
        Boolean
        True if the FCS is correct
    wlan.flags  Protocol Flags
        Unsigned 8-bit integer
        Protocol flags
    wlan.frag  Fragment number
        Unsigned 16-bit integer
    wlan.fragment  802.11 Fragment
        Frame number
    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
    wlan.hosttime  Host timestamp
        Unsigned 64-bit integer
    wlan.mactime  MAC timestamp
        Unsigned 64-bit integer
        Value in microseconds of the MAC's Time Synchronization Function timer when the first bit of the MPDU arrived at the MAC
    wlan.normrssi_antnoise  Normalized RSSI Noise
        Unsigned 32-bit integer
        RF noise power at the antenna, normalized to the range 0-1000
    wlan.normrssi_antsignal  Normalized RSSI Signal
        Unsigned 32-bit integer
        RF signal power at the antenna, normalized to the range 0-1000
    wlan.qos.ack  Ack Policy
        Unsigned 8-bit integer
    wlan.qos.amsdupresent  Payload Type
        Boolean
    wlan.qos.bit4  QoS bit 4
        Boolean
    wlan.qos.buf_state_indicated  Buffer State Indicated
        Boolean
    wlan.qos.eosp  EOSP
        Boolean
        EOSP Field
    wlan.qos.highest_pri_buf_ac  Highest-Priority Buffered AC
        Unsigned 8-bit integer
    wlan.qos.priority  Priority
        Unsigned 16-bit integer
        802.1D Tag
    wlan.qos.qap_buf_load  QAP Buffered Load
        Unsigned 8-bit integer
    wlan.qos.queue_size  Queue Size
        Unsigned 16-bit integer
    wlan.qos.txop_dur_req  TXOP Duration Requested
        Unsigned 16-bit integer
    wlan.qos.txop_limit  TXOP Limit
        Unsigned 16-bit integer
    wlan.ra  Receiver address
        6-byte Hardware (MAC) Address
        Receiving Station Hardware Address
    wlan.rawrssi_antnoise  Raw RSSI Noise
        Unsigned 32-bit integer
        RF noise power at the antenna, reported as RSSI by the adapter
    wlan.rawrssi_antsignal  Raw RSSI Signal
        Unsigned 32-bit integer
        RF signal power at the antenna, reported as RSSI by the adapter
    wlan.reassembled.length  Reassembled 802.11 length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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
    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
    wlan.wep.iv  Initialization Vector
        Unsigned 24-bit integer
    wlan.wep.key  Key Index
        Unsigned 8-bit integer
    wlan.wep.weakiv  Weak IV
        Boolean

IEEE 802.11 wireless LAN aggregate frame (wlan_aggregate)

    wlan_aggregate.msduheader  MAC Service Data Unit (MSDU)
        Unsigned 16-bit integer

IEEE 802.11 wireless LAN management frame (wlan_mgt)

    wlan_mgt.aironet.data  Aironet IE data
        Byte array
    wlan_mgt.aironet.qos.paramset  Aironet IE QoS paramset
        Unsigned 8-bit integer
    wlan_mgt.aironet.qos.unk1  Aironet IE QoS unknown 1
        Unsigned 8-bit integer
    wlan_mgt.aironet.qos.val  Aironet IE QoS valueset
        Byte array
    wlan_mgt.aironet.type  Aironet IE type
        Unsigned 8-bit integer
    wlan_mgt.aironet.version  Aironet IE CCX version?
        Unsigned 8-bit integer
    wlan_mgt.aruba_heartbeat_sequence  Aruba Heartbeat Sequence
        Unsigned 64-bit integer
    wlan_mgt.aruba_mtu_size  Aruba MTU Size
        Unsigned 16-bit integer
    wlan_mgt.aruba_type  Aruba Type
        Unsigned 16-bit integer
        Aruba Management
    wlan_mgt.asel  Antenna Selection (ASEL) Capabilities
        Unsigned 8-bit integer
    wlan_mgt.asel.capable  Antenna Selection Capable
        Boolean
    wlan_mgt.asel.csi  Explicit CSI Feedback
        Boolean
    wlan_mgt.asel.if  Antenna Indices Feedback
        Boolean
    wlan_mgt.asel.reserved  Reserved
        Unsigned 8-bit integer
    wlan_mgt.asel.rx  Rx ASEL
        Boolean
    wlan_mgt.asel.sppdu  Tx Sounding PPDUs
        Boolean
    wlan_mgt.asel.txcsi  Explicit CSI Feedback Based Tx ASEL
        Boolean
    wlan_mgt.asel.txif  Antenna Indices Feedback Based Tx ASEL
        Boolean
    wlan_mgt.extcap  Extended Capabilities
        Unsigned 8-bit integer
    wlan_mgt.extcap.infoexchange.b0  20/40 BSS Coexistence Management Support
        Boolean
        HT Information Exchange Support
    wlan_mgt.extcap.infoexchange.b1  On-demand beacon
        Boolean
    wlan_mgt.extcap.infoexchange.b2  Extended Channel Switching
        Boolean
    wlan_mgt.extcap.infoexchange.b3  WAVE indication
        Boolean
    wlan_mgt.extchanswitch.new.channumber  New Channel Number
        Unsigned 8-bit integer
    wlan_mgt.extchanswitch.new.regclass  New Regulatory Class
        Unsigned 8-bit integer
    wlan_mgt.extchanswitch.switchcount  Channel Switch Count
        Unsigned 8-bit integer
    wlan_mgt.extchanswitch.switchmode  Channel Switch Mode
        Unsigned 8-bit integer
    wlan_mgt.fixed.action  Action
        Unsigned 8-bit integer
    wlan_mgt.fixed.action_code  Action code
        Unsigned 16-bit integer
        Management action code
    wlan_mgt.fixed.aid  Association ID
        Unsigned 16-bit integer
    wlan_mgt.fixed.all  Fixed parameters
        Unsigned 16-bit integer
    wlan_mgt.fixed.antsel  Antenna Selection
        Unsigned 8-bit integer
    wlan_mgt.fixed.antsel.ant0  Antenna 0
        Unsigned 8-bit integer
    wlan_mgt.fixed.antsel.ant1  Antenna 1
        Unsigned 8-bit integer
    wlan_mgt.fixed.antsel.ant2  Antenna 2
        Unsigned 8-bit integer
    wlan_mgt.fixed.antsel.ant3  Antenna 3
        Unsigned 8-bit integer
    wlan_mgt.fixed.antsel.ant4  Antenna 4
        Unsigned 8-bit integer
    wlan_mgt.fixed.antsel.ant5  Antenna 5
        Unsigned 8-bit integer
    wlan_mgt.fixed.antsel.ant6  Antenna 6
        Unsigned 8-bit integer
    wlan_mgt.fixed.antsel.ant7  Antenna 7
        Unsigned 8-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.baparams  Block Ack Parameters
        Unsigned 16-bit integer
    wlan_mgt.fixed.baparams.amsdu  A-MSDUs
        Boolean
        A-MSDU Permitted in QoS Data MPDUs
    wlan_mgt.fixed.baparams.buffersize  Number of Buffers (1 Buffer = 2304 Bytes)
        Unsigned 16-bit integer
        Number of Buffers
    wlan_mgt.fixed.baparams.policy  Block Ack Policy
        Boolean
    wlan_mgt.fixed.baparams.tid  Traffic Identifier
        Unsigned 8-bit integer
    wlan_mgt.fixed.batimeout  Block Ack Timeout
        Unsigned 16-bit integer
    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
    wlan_mgt.fixed.capabilities.apsd  Automatic Power Save Delivery
        Boolean
    wlan_mgt.fixed.capabilities.cfpoll.ap  CFP participation capabilities
        Unsigned 16-bit integer
        CF-Poll capabilities for an AP
    wlan_mgt.fixed.capabilities.cfpoll.sta  CFP participation capabilities
        Unsigned 16-bit integer
        CF-Poll capabilities for a STA
    wlan_mgt.fixed.capabilities.del_blk_ack  Delayed Block Ack
        Boolean
    wlan_mgt.fixed.capabilities.dsss_ofdm  DSSS-OFDM
        Boolean
        DSSS-OFDM Modulation
    wlan_mgt.fixed.capabilities.ess  ESS capabilities
        Boolean
    wlan_mgt.fixed.capabilities.ibss  IBSS status
        Boolean
        IBSS participation
    wlan_mgt.fixed.capabilities.imm_blk_ack  Immediate Block Ack
        Boolean
    wlan_mgt.fixed.capabilities.pbcc  PBCC
        Boolean
        PBCC Modulation
    wlan_mgt.fixed.capabilities.preamble  Short Preamble
        Boolean
    wlan_mgt.fixed.capabilities.privacy  Privacy
        Boolean
        WEP support
    wlan_mgt.fixed.capabilities.short_slot_time  Short Slot Time
        Boolean
    wlan_mgt.fixed.capabilities.spec_man  Spectrum Management
        Boolean
    wlan_mgt.fixed.category_code  Category code
        Unsigned 16-bit integer
        Management action category
    wlan_mgt.fixed.chanwidth  Supported Channel Width
        Unsigned 8-bit integer
    wlan_mgt.fixed.country  Country String
        String
    wlan_mgt.fixed.current_ap  Current AP
        6-byte Hardware (MAC) Address
        MAC address of current AP
    wlan_mgt.fixed.da  Destination Address
        6-byte Hardware (MAC) Address
        Destination MAC address
    wlan_mgt.fixed.delba.param  Delete Block Ack (DELBA) Parameter Set
        Unsigned 16-bit integer
    wlan_mgt.fixed.delba.param.initiator  Initiator
        Boolean
    wlan_mgt.fixed.delba.param.reserved  Reserved
        Unsigned 16-bit integer
    wlan_mgt.fixed.delba.param.tid  TID
        Unsigned 16-bit integer
        Traffic Identifier (TID)
    wlan_mgt.fixed.dialog_token  Dialog token
        Unsigned 8-bit integer
        Management action dialog token
    wlan_mgt.fixed.dls_timeout  DLS timeout
        Unsigned 16-bit integer
        DLS timeout value
    wlan_mgt.fixed.dsn  DSN
        Unsigned 32-bit integer
        Destination Sequence Number
    wlan_mgt.fixed.dst_mac_addr  Destination address
        6-byte Hardware (MAC) Address
        Destination MAC address
    wlan_mgt.fixed.dstcount  Destination Count
        Unsigned 8-bit integer
    wlan_mgt.fixed.extchansw  Extended Channel Switch Announcement
        Unsigned 32-bit integer
    wlan_mgt.fixed.fragment  Fragment
        Unsigned 16-bit integer
    wlan_mgt.fixed.hopcount  Hop Count
        Unsigned 8-bit integer
    wlan_mgt.fixed.htact  HT Action
        Unsigned 8-bit integer
        HT Action Code
    wlan_mgt.fixed.length  Message Length
        Unsigned 8-bit integer
    wlan_mgt.fixed.lifetime  Lifetime
        Unsigned 32-bit integer
        Route Lifetime
    wlan_mgt.fixed.listen_ival  Listen Interval
        Unsigned 16-bit integer
    wlan_mgt.fixed.maxregpwr  Maximum Regulation Power
        Unsigned 16-bit integer
    wlan_mgt.fixed.maxtxpwr  Maximum Transmit Power
        Unsigned 8-bit integer
    wlan_mgt.fixed.metric  Metric
        Unsigned 32-bit integer
        Route Metric
    wlan_mgt.fixed.mimo.control.chanwidth  Channel Width
        Boolean
    wlan_mgt.fixed.mimo.control.codebookinfo  Codebook Information
        Unsigned 16-bit integer
    wlan_mgt.fixed.mimo.control.cosize  Coefficient Size (Nb)
        Unsigned 16-bit integer
    wlan_mgt.fixed.mimo.control.grouping  Grouping (Ng)
        Unsigned 16-bit integer
    wlan_mgt.fixed.mimo.control.matrixseg  Remaining Matrix Segment
        Unsigned 16-bit integer
    wlan_mgt.fixed.mimo.control.ncindex  Nc Index
        Unsigned 16-bit integer
        Number of Columns Less One
    wlan_mgt.fixed.mimo.control.nrindex  Nr Index
        Unsigned 16-bit integer
        Number of Rows Less One
    wlan_mgt.fixed.mimo.control.reserved  Reserved
        Unsigned 16-bit integer
    wlan_mgt.fixed.mimo.control.soundingtime  Sounding Timestamp
        Unsigned 32-bit integer
    wlan_mgt.fixed.mode  Message Mode
        Unsigned 8-bit integer
    wlan_mgt.fixed.mrvl_action_type  Marvell Action type
        Unsigned 8-bit integer
        Vendor Specific Action Type (Marvell)
    wlan_mgt.fixed.mrvl_mesh_action  Mesh action(Marvell)
        Unsigned 8-bit integer
        Mesh action code(Marvell)
    wlan_mgt.fixed.msmtpilotint  Measurement Pilot Interval
        Unsigned 16-bit integer
        Measurement Pilot Interval Fixed Field
    wlan_mgt.fixed.pco.phasecntrl  Phased Coexistence Operation (PCO) Phase Control
        Boolean
    wlan_mgt.fixed.psmp.paramset  Power Save Multi-Poll (PSMP) Parameter Set
        Unsigned 16-bit integer
    wlan_mgt.fixed.psmp.paramset.more  More PSMP
        Boolean
        More Power Save Multi-Poll (PSMP)
    wlan_mgt.fixed.psmp.paramset.nsta  Number of STA Info Fields Present
        Unsigned 8-bit integer
    wlan_mgt.fixed.psmp.paramset.seqduration  PSMP Sequence Duration
        Unsigned 16-bit integer
        Power Save Multi-Poll (PSMP) Sequence Duration
    wlan_mgt.fixed.psmp.stainfo  Power Save Multi-Poll (PSMP) Station Information
        Unsigned 8-bit integer
    wlan_mgt.fixed.psmp.stainfo.dttduration  DTT Duration
        Unsigned 8-bit integer
    wlan_mgt.fixed.psmp.stainfo.dttstart  DTT Start Offset
        Unsigned 16-bit integer
    wlan_mgt.fixed.psmp.stainfo.multicastid  Power Save Multi-Poll (PSMP) Multicast ID
        Unsigned 64-bit integer
    wlan_mgt.fixed.psmp.stainfo.reserved  Reserved
        Unsigned 16-bit integer
    wlan_mgt.fixed.psmp.stainfo.staid  Target Station ID
        Unsigned 16-bit integer
    wlan_mgt.fixed.psmp.stainfo.uttduration  UTT Duration
        Unsigned 16-bit integer
    wlan_mgt.fixed.psmp.stainfo.uttstart  UTT Start Offset
        Unsigned 16-bit integer
    wlan_mgt.fixed.publicact  Public Action
        Unsigned 8-bit integer
        Public Action Code
    wlan_mgt.fixed.qosinfo.ap  QoS Information (AP)
        Unsigned 8-bit integer
    wlan_mgt.fixed.qosinfo.ap.edcaupdate  EDCA Parameter Set Update Count
        Unsigned 8-bit integer
        Enhanced Distributed Channel Access (EDCA) Parameter Set Update Count
    wlan_mgt.fixed.qosinfo.ap.qack  Q-Ack
        Boolean
        QoS Ack
    wlan_mgt.fixed.qosinfo.ap.reserved  Reserved
        Boolean
    wlan_mgt.fixed.qosinfo.ap.txopreq  TXOP Request
        Boolean
        Transmit Opportunity (TXOP) Request
    wlan_mgt.fixed.qosinfo.sta  QoS Information (STA)
        Unsigned 8-bit integer
    wlan_mgt.fixed.qosinfo.sta.ac.be  AC_BE
        Boolean
    wlan_mgt.fixed.qosinfo.sta.ac.bk  AC_BK
        Boolean
    wlan_mgt.fixed.qosinfo.sta.ac.vi  AC_VI
        Boolean
    wlan_mgt.fixed.qosinfo.sta.ac.vo  AC_VO
        Boolean
    wlan_mgt.fixed.qosinfo.sta.moredataack  More Data Ack
        Boolean
    wlan_mgt.fixed.qosinfo.sta.qack  Q-Ack
        Boolean
        QoS Ack
    wlan_mgt.fixed.qosinfo.sta.splen  Service Period (SP) Length
        Unsigned 8-bit integer
    wlan_mgt.fixed.reason_code  Reason code
        Unsigned 16-bit integer
        Reason for unsolicited notification
    wlan_mgt.fixed.rreqid  RREQ ID
        Unsigned 32-bit integer
    wlan_mgt.fixed.sa  Source Address
        6-byte Hardware (MAC) Address
        Source MAC address
    wlan_mgt.fixed.sequence  Starting Sequence Number
        Unsigned 16-bit integer
    wlan_mgt.fixed.sm.powercontrol  Spatial Multiplexing (SM) Power Control
        Unsigned 8-bit integer
    wlan_mgt.fixed.sm.powercontrol.enabled  SM Power Save
        Boolean
        Spatial Multiplexing (SM) Power Save
    wlan_mgt.fixed.sm.powercontrol.mode  SM Mode
        Boolean
        Spatial Multiplexing (SM) Mode
    wlan_mgt.fixed.sm.powercontrol.reserved  Reserved
        Unsigned 8-bit integer
    wlan_mgt.fixed.src_mac_addr  Source address
        6-byte Hardware (MAC) Address
        Source MAC address
    wlan_mgt.fixed.ssc  Block Ack Starting Sequence Control (SSC)
        Unsigned 16-bit integer
    wlan_mgt.fixed.ssn  SSN
        Unsigned 32-bit integer
        Source Sequence Number
    wlan_mgt.fixed.sta_address  STA Address
        6-byte Hardware (MAC) Address
        STA address
    wlan_mgt.fixed.status_code  Status code
        Unsigned 16-bit integer
        Status of requested event
    wlan_mgt.fixed.target_ap_address  Target AP Address
        6-byte Hardware (MAC) Address
        Target AP MAC address
    wlan_mgt.fixed.timestamp  Timestamp
        String
    wlan_mgt.fixed.tnoisefloor  Transceiver Noise Floor
        Unsigned 8-bit integer
    wlan_mgt.fixed.ttl  Message TTL
        Unsigned 8-bit integer
    wlan_mgt.fixed.txpwr  Transmit Power Used
        Unsigned 8-bit integer
    wlan_mgt.ft.anonce  ANonce
        Byte array
    wlan_mgt.ft.element_count  Element Count
        Unsigned 16-bit integer
    wlan_mgt.ft.mic  MIC
        Byte array
    wlan_mgt.ft.mic_control  MIC Control
        Unsigned 16-bit integer
    wlan_mgt.ft.snonce  SNonce
        Byte array
    wlan_mgt.ft.subelem.data  Data
        Byte array
    wlan_mgt.ft.subelem.gtk.key  GTK
        Byte array
    wlan_mgt.ft.subelem.gtk.key_id  Key ID
        Unsigned 16-bit integer
    wlan_mgt.ft.subelem.gtk.key_info  Key Info
        Unsigned 16-bit integer
    wlan_mgt.ft.subelem.gtk.key_length  Key Length
        Unsigned 8-bit integer
    wlan_mgt.ft.subelem.gtk.rsc  RSC
        Byte array
    wlan_mgt.ft.subelem.id  Subelement ID
        Unsigned 8-bit integer
    wlan_mgt.ft.subelem.igtk.ipn  IPN
        Byte array
    wlan_mgt.ft.subelem.igtk.key  Wrapped Key (IGTK)
        Byte array
    wlan_mgt.ft.subelem.igtk.key_id  Key ID
        Unsigned 16-bit integer
    wlan_mgt.ft.subelem.igtk.key_length  Key Length
        Unsigned 8-bit integer
    wlan_mgt.ft.subelem.len  Length
        Unsigned 8-bit integer
    wlan_mgt.ft.subelem.r0kh_id  PMK-R0 key holder identifier (R0KH-ID)
        String
    wlan_mgt.ft.subelem.r1kh_id  PMK-R1 key holder identifier (R1KH-ID)
        Byte array
    wlan_mgt.ht.ampduparam  A-MPDU Parameters
        Unsigned 16-bit integer
    wlan_mgt.ht.ampduparam.maxlength  Maximum Rx A-MPDU Length
        Unsigned 8-bit integer
    wlan_mgt.ht.ampduparam.mpdudensity  MPDU Density
        Unsigned 8-bit integer
    wlan_mgt.ht.ampduparam.reserved  Reserved
        Unsigned 8-bit integer
    wlan_mgt.ht.capabilities  HT Capabilities Info
        Unsigned 16-bit integer
        HT Capability information
    wlan_mgt.ht.capabilities.40mhzintolerant  HT Forty MHz Intolerant
        Boolean
    wlan_mgt.ht.capabilities.amsdu  HT Max A-MSDU length
        Boolean
    wlan_mgt.ht.capabilities.delayedblockack  HT Delayed Block ACK
        Boolean
    wlan_mgt.ht.capabilities.dsscck  HT DSSS/CCK mode in 40MHz
        Boolean
        HT DSS/CCK mode in 40MHz
    wlan_mgt.ht.capabilities.green  HT Green Field
        Boolean
    wlan_mgt.ht.capabilities.ldpccoding  HT LDPC coding capability
        Boolean
    wlan_mgt.ht.capabilities.lsig  HT L-SIG TXOP Protection support
        Boolean
    wlan_mgt.ht.capabilities.psmp  HT PSMP Support
        Boolean
    wlan_mgt.ht.capabilities.rxstbc  HT Rx STBC
        Unsigned 16-bit integer
        HT Tx STBC
    wlan_mgt.ht.capabilities.short20  HT Short GI for 20MHz
        Boolean
    wlan_mgt.ht.capabilities.short40  HT Short GI for 40MHz
        Boolean
    wlan_mgt.ht.capabilities.sm  HT SM Power Save
        Unsigned 16-bit integer
    wlan_mgt.ht.capabilities.txstbc  HT Tx STBC
        Boolean
    wlan_mgt.ht.capabilities.width  HT Support channel width
        Boolean
    wlan_mgt.ht.info.  Shortest service interval
        Unsigned 8-bit integer
    wlan_mgt.ht.info.burstlim  Transmit burst limit
        Boolean
    wlan_mgt.ht.info.chanwidth  Supported channel width
        Boolean
    wlan_mgt.ht.info.delim1  HT Information Delimiter #1
        Unsigned 8-bit integer
    wlan_mgt.ht.info.delim2  HT Information Delimiter #2
        Unsigned 16-bit integer
    wlan_mgt.ht.info.delim3  HT Information Delimiter #3
        Unsigned 16-bit integer
    wlan_mgt.ht.info.dualbeacon  Dual beacon
        Boolean
    wlan_mgt.ht.info.dualcts  Dual Clear To Send (CTS) protection
        Boolean
    wlan_mgt.ht.info.greenfield  Non-greenfield STAs present
        Boolean
    wlan_mgt.ht.info.lsigprotsupport  L-SIG TXOP Protection Full Support
        Boolean
    wlan_mgt.ht.info.obssnonht  OBSS non-HT STAs present
        Boolean
    wlan_mgt.ht.info.operatingmode  Operating mode of BSS
        Unsigned 16-bit integer
    wlan_mgt.ht.info.pco.active  Phased Coexistence Operation (PCO)
        Boolean
    wlan_mgt.ht.info.pco.phase  Phased Coexistence Operation (PCO) Phase
        Boolean
    wlan_mgt.ht.info.primarychannel  Primary Channel
        Unsigned 8-bit integer
    wlan_mgt.ht.info.psmponly  Power Save Multi-Poll (PSMP) stations only
        Boolean
    wlan_mgt.ht.info.reserved1  Reserved
        Unsigned 16-bit integer
    wlan_mgt.ht.info.reserved2  Reserved
        Unsigned 16-bit integer
    wlan_mgt.ht.info.reserved3  Reserved
        Unsigned 16-bit integer
    wlan_mgt.ht.info.rifs  Reduced Interframe Spacing (RIFS)
        Boolean
    wlan_mgt.ht.info.secchanoffset  Secondary channel offset
        Unsigned 8-bit integer
    wlan_mgt.ht.info.secondarybeacon  Beacon ID
        Boolean
    wlan_mgt.ht.mcsset  Rx Supported Modulation and Coding Scheme Set
        String
    wlan_mgt.ht.mcsset.highestdatarate  Highest Supported Data Rate
        Unsigned 16-bit integer
    wlan_mgt.ht.mcsset.rxbitmask.0to7  Rx Bitmask Bits 0-7
        Unsigned 32-bit integer
    wlan_mgt.ht.mcsset.rxbitmask.16to23  Rx Bitmask Bits 16-23
        Unsigned 32-bit integer
    wlan_mgt.ht.mcsset.rxbitmask.24to31  Rx Bitmask Bits 24-31
        Unsigned 32-bit integer
    wlan_mgt.ht.mcsset.rxbitmask.32  Rx Bitmask Bit 32
        Unsigned 32-bit integer
    wlan_mgt.ht.mcsset.rxbitmask.33to38  Rx Bitmask Bits 33-38
        Unsigned 32-bit integer
    wlan_mgt.ht.mcsset.rxbitmask.39to52  Rx Bitmask Bits 39-52
        Unsigned 32-bit integer
    wlan_mgt.ht.mcsset.rxbitmask.53to76  Rx Bitmask Bits 53-76
        Unsigned 32-bit integer
    wlan_mgt.ht.mcsset.rxbitmask.8to15  Rx Bitmask Bits 8-15
        Unsigned 32-bit integer
    wlan_mgt.ht.mcsset.txmaxss  Tx Maximum Number of Spatial Streams Supported
        Unsigned 16-bit integer
    wlan_mgt.ht.mcsset.txrxmcsnotequal  Tx and Rx MCS Set
        Boolean
    wlan_mgt.ht.mcsset.txsetdefined  Tx Supported MCS Set
        Boolean
    wlan_mgt.ht.mcsset.txunequalmod  Unequal Modulation
        Boolean
    wlan_mgt.hta.capabilities  HT Additional Capabilities
        Unsigned 16-bit integer
        HT Additional Capability information
    wlan_mgt.hta.capabilities.  Basic STB Modulation and Coding Scheme (MCS)
        Unsigned 16-bit integer
    wlan_mgt.hta.capabilities.controlledaccess  Controlled Access Only
        Boolean
    wlan_mgt.hta.capabilities.extchan  Extension Channel Offset
        Unsigned 16-bit integer
    wlan_mgt.hta.capabilities.nongfdevices  Non Greenfield (GF) devices Present
        Boolean
        on Greenfield (GF) devices Present
    wlan_mgt.hta.capabilities.operatingmode  Operating Mode
        Unsigned 16-bit integer
    wlan_mgt.hta.capabilities.rectxwidth  Recommended Tx Channel Width
        Boolean
        Recommended Transmit Channel Width
    wlan_mgt.hta.capabilities.rifsmode  Reduced Interframe Spacing (RIFS) Mode
        Boolean
    wlan_mgt.hta.capabilities.serviceinterval  Service Interval Granularity
        Unsigned 16-bit integer
    wlan_mgt.htc  HT Control (+HTC)
        Unsigned 32-bit integer
        High Throughput Control (+HTC)
    wlan_mgt.htc.ac_constraint  AC Constraint
        Boolean
        High Throughput Control AC Constraint
    wlan_mgt.htc.cal.pos  Calibration Position
        Unsigned 16-bit integer
        High Throughput Control Calibration Position
    wlan_mgt.htc.cal.seq  Calibration Sequence Identifier
        Unsigned 16-bit integer
        High Throughput Control Calibration Sequence Identifier
    wlan_mgt.htc.csi_steering  CSI/Steering
        Unsigned 16-bit integer
        High Throughput Control CSI/Steering
    wlan_mgt.htc.lac  Link Adaptation Control (LAC)
        Unsigned 16-bit integer
        High Throughput Control Link Adaptation Control (LAC)
    wlan_mgt.htc.lac.asel.command  Antenna Selection (ASEL) Command
        Unsigned 16-bit integer
        High Throughput Control Link Adaptation Control Antenna Selection (ASEL) Command
    wlan_mgt.htc.lac.asel.data  Antenna Selection (ASEL) Data
        Unsigned 16-bit integer
        High Throughput Control Link Adaptation Control Antenna Selection (ASEL) Data
    wlan_mgt.htc.lac.mai.aseli  Antenna Selection Indication (ASELI)
        Unsigned 16-bit integer
        High Throughput Control Link Adaptation Control MAI Antenna Selection Indication
    wlan_mgt.htc.lac.mai.mrq  MCS Request (MRQ)
        Boolean
        High Throughput Control Link Adaptation Control MAI MCS Request
    wlan_mgt.htc.lac.mai.msi  MCS Request Sequence Identifier (MSI)
        Unsigned 16-bit integer
        High Throughput Control Link Adaptation Control MAI MCS Request Sequence Identifier
    wlan_mgt.htc.lac.mai.reserved  Reserved
        Unsigned 16-bit integer
        High Throughput Control Link Adaptation Control MAI Reserved
    wlan_mgt.htc.lac.mfb  MCS Feedback (MFB)
        Unsigned 16-bit integer
        High Throughput Control Link Adaptation Control MCS Feedback
    wlan_mgt.htc.lac.mfsi  MCS Feedback Sequence Identifier (MFSI)
        Unsigned 16-bit integer
        High Throughput Control Link Adaptation Control MCS Feedback Sequence Identifier (MSI)
    wlan_mgt.htc.lac.reserved  Reserved
        Boolean
        High Throughput Control Link Adaptation Control Reserved
    wlan_mgt.htc.lac.trq  Training Request (TRQ)
        Boolean
        High Throughput Control Link Adaptation Control Training Request (TRQ)
    wlan_mgt.htc.ndp_announcement  NDP Announcement
        Boolean
        High Throughput Control NDP Announcement
    wlan_mgt.htc.rdg_more_ppdu  RDG/More PPDU
        Boolean
        High Throughput Control RDG/More PPDU
    wlan_mgt.htc.reserved1  Reserved
        Unsigned 16-bit integer
        High Throughput Control Reserved
    wlan_mgt.htc.reserved2  Reserved
        Unsigned 16-bit integer
        High Throughput Control Reserved
    wlan_mgt.htex.capabilities  HT Extended Capabilities
        Unsigned 16-bit integer
        HT Extended Capability information
    wlan_mgt.htex.capabilities.htc  High Throughput
        Boolean
    wlan_mgt.htex.capabilities.mcs  MCS Feedback capability
        Unsigned 16-bit integer
    wlan_mgt.htex.capabilities.pco  Transmitter supports PCO
        Boolean
    wlan_mgt.htex.capabilities.rdresponder  Reverse Direction Responder
        Boolean
    wlan_mgt.htex.capabilities.transtime  Time needed to transition between 20MHz and 40MHz
        Unsigned 16-bit integer
    wlan_mgt.marvell.data  Marvell IE data
        Byte array
    wlan_mgt.marvell.ie.cap  Mesh Capabilities
        Unsigned 8-bit integer
    wlan_mgt.marvell.ie.metric_id  Path Selection Metric
        Unsigned 8-bit integer
    wlan_mgt.marvell.ie.proto_id  Path Selection Protocol
        Unsigned 8-bit integer
    wlan_mgt.marvell.ie.subtype  Subtype
        Unsigned 8-bit integer
    wlan_mgt.marvell.ie.type  Type
        Unsigned 8-bit integer
    wlan_mgt.marvell.ie.version  Version
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.antid  Antenna ID
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.bssid  BSSID Being Reported
        6-byte Hardware (MAC) Address
    wlan_mgt.measure.rep.ccabusy  CCA Busy Fraction
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.chanload  Channel Load
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.channelnumber  Measurement Channel Number
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.frameinfo  Reported Frame Information
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.frameinfo.frametype  Reported Frame Type
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.frameinfo.phytype  Condensed PHY
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.mapfield  Map Field
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.parenttsf  Parent Timing Synchronization Function (TSF)
        Unsigned 32-bit integer
    wlan_mgt.measure.rep.rcpi  Received Channel Power Indicator (RCPI)
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.regclass  Regulatory Class
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.repmode.incapable  Measurement Reports
        Boolean
    wlan_mgt.measure.rep.repmode.late  Measurement Report Mode Field
        Boolean
    wlan_mgt.measure.rep.repmode.mapfield.bss  BSS
        Boolean
    wlan_mgt.measure.rep.repmode.mapfield.radar  Radar
        Boolean
    wlan_mgt.measure.rep.repmode.mapfield.reserved  Reserved
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.repmode.mapfield.unidentsig  Unidentified Signal
        Boolean
    wlan_mgt.measure.rep.repmode.mapfield.unmeasured  Unmeasured
        Boolean
    wlan_mgt.measure.rep.repmode.refused  Autonomous Measurement Reports
        Boolean
    wlan_mgt.measure.rep.repmode.reserved  Reserved
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.reptype  Measurement Report Type
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.rpi.histogram_report  Receive Power Indicator (RPI) Histogram Report
        String
    wlan_mgt.measure.rep.rpi.rpi0density  RPI 0 Density
        Unsigned 8-bit integer
        Receive Power Indicator (RPI) 0 Density
    wlan_mgt.measure.rep.rpi.rpi1density  RPI 1 Density
        Unsigned 8-bit integer
        Receive Power Indicator (RPI) 1 Density
    wlan_mgt.measure.rep.rpi.rpi2density  RPI 2 Density
        Unsigned 8-bit integer
        Receive Power Indicator (RPI) 2 Density
    wlan_mgt.measure.rep.rpi.rpi3density  RPI 3 Density
        Unsigned 8-bit integer
        Receive Power Indicator (RPI) 3 Density
    wlan_mgt.measure.rep.rpi.rpi4density  RPI 4 Density
        Unsigned 8-bit integer
        Receive Power Indicator (RPI) 4 Density
    wlan_mgt.measure.rep.rpi.rpi5density  RPI 5 Density
        Unsigned 8-bit integer
        Receive Power Indicator (RPI) 5 Density
    wlan_mgt.measure.rep.rpi.rpi6density  RPI 6 Density
        Unsigned 8-bit integer
        Receive Power Indicator (RPI) 6 Density
    wlan_mgt.measure.rep.rpi.rpi7density  RPI 7 Density
        Unsigned 8-bit integer
        Receive Power Indicator (RPI) 7 Density
    wlan_mgt.measure.rep.rsni  Received Signal to Noise Indicator (RSNI)
        Unsigned 8-bit integer
    wlan_mgt.measure.rep.starttime  Measurement Start Time
        Unsigned 64-bit integer
    wlan_mgt.measure.req.bssid  BSSID
        6-byte Hardware (MAC) Address
    wlan_mgt.measure.req.channelnumber  Measurement Channel Number
        Unsigned 8-bit integer
    wlan_mgt.measure.req.clr  Measurement Token
        Unsigned 8-bit integer
    wlan_mgt.measure.req.groupid  Group ID
        Unsigned 8-bit integer
    wlan_mgt.measure.req.measurementmode  Measurement Mode
        Unsigned 8-bit integer
    wlan_mgt.measure.req.measuretoken  Measurement Token
        Unsigned 8-bit integer
    wlan_mgt.measure.req.randint  Randomization Interval
        Unsigned 16-bit integer
    wlan_mgt.measure.req.regclass  Measurement Channel Number
        Unsigned 8-bit integer
    wlan_mgt.measure.req.repcond  Reporting Condition
        Unsigned 8-bit integer
    wlan_mgt.measure.req.reportmac  MAC on wich to gather data
        6-byte Hardware (MAC) Address
    wlan_mgt.measure.req.reqmode  Measurement Request Mode
        Unsigned 8-bit integer
    wlan_mgt.measure.req.reqmode.enable  Measurement Request Mode Field
        Boolean
    wlan_mgt.measure.req.reqmode.report  Autonomous Measurement Reports
        Boolean
    wlan_mgt.measure.req.reqmode.request  Measurement Reports
        Boolean
    wlan_mgt.measure.req.reqmode.reserved1  Reserved
        Unsigned 8-bit integer
    wlan_mgt.measure.req.reqmode.reserved2  Reserved
        Unsigned 8-bit integer
    wlan_mgt.measure.req.reqtype  Measurement Request Type
        Unsigned 8-bit integer
    wlan_mgt.measure.req.starttime  Measurement Start Time
        Unsigned 64-bit integer
    wlan_mgt.measure.req.threshold  Threshold/Offset
        Unsigned 8-bit integer
    wlan_mgt.mimo.csimatrices.snr  Signal to Noise Ratio (SNR)
        Unsigned 8-bit integer
    wlan_mgt.mmie.ipn  IPN
        Byte array
    wlan_mgt.mmie.keyid  KeyID
        Unsigned 16-bit integer
    wlan_mgt.mmie.mic  MIC
        Byte array
    wlan_mgt.mobility_domain.ft_capab  FT Capability and Policy
        Unsigned 8-bit integer
    wlan_mgt.mobility_domain.ft_capab.ft_over_ds  Fast BSS Transition over DS
        Unsigned 8-bit integer
    wlan_mgt.mobility_domain.ft_capab.resource_req  Resource Request Protocol Capability
        Unsigned 8-bit integer
    wlan_mgt.mobility_domain.mdid  Mobility Domain Identifier
        Unsigned 16-bit integer
    wlan_mgt.nreport.bssid  BSSID
        6-byte Hardware (MAC) Address
    wlan_mgt.nreport.bssid.info  BSSID Information
        Unsigned 32-bit integer
    wlan_mgt.nreport.bssid.info.capability.apsd  Capability: APSD
        Unsigned 16-bit integer
    wlan_mgt.nreport.bssid.info.capability.dback  Capability: Delayed Block Ack
        Unsigned 16-bit integer
    wlan_mgt.nreport.bssid.info.capability.iback  Capability: Immediate Block Ack
        Unsigned 16-bit integer
    wlan_mgt.nreport.bssid.info.capability.qos  Capability: QoS
        Unsigned 16-bit integer
    wlan_mgt.nreport.bssid.info.capability.radiomsnt  Capability: Radio Measurement
        Unsigned 16-bit integer
    wlan_mgt.nreport.bssid.info.capability.specmngt  Capability: Spectrum Management
        Unsigned 16-bit integer
    wlan_mgt.nreport.bssid.info.hthoughput  High Throughput
        Unsigned 16-bit integer
    wlan_mgt.nreport.bssid.info.keyscope  Key Scope
        Unsigned 16-bit integer
    wlan_mgt.nreport.bssid.info.mobilitydomain  Mobility Domain
        Unsigned 16-bit integer
    wlan_mgt.nreport.bssid.info.reachability  AP Reachability
        Unsigned 16-bit integer
    wlan_mgt.nreport.bssid.info.reserved  Reserved
        Unsigned 32-bit integer
    wlan_mgt.nreport.bssid.info.security  Security
        Unsigned 16-bit integer
    wlan_mgt.nreport.channumber  Channel Number
        Unsigned 8-bit integer
    wlan_mgt.nreport.phytype  PHY Type
        Unsigned 8-bit integer
    wlan_mgt.nreport.regclass  Regulatory Class
        Unsigned 8-bit integer
    wlan_mgt.powercap.max  Maximum Transmit Power
        Unsigned 8-bit integer
    wlan_mgt.powercap.min  Minimum Transmit Power
        Unsigned 8-bit integer
    wlan_mgt.qbss.adc  Available Admission Capabilities
        Unsigned 8-bit integer
    wlan_mgt.qbss.cu  Channel Utilization
        Unsigned 8-bit integer
    wlan_mgt.qbss.scount  Station Count
        Unsigned 16-bit integer
    wlan_mgt.qbss.version  QBSS Version
        Unsigned 8-bit integer
    wlan_mgt.qbss2.cal  Call Admission Limit
        Unsigned 8-bit integer
    wlan_mgt.qbss2.cu  Channel Utilization
        Unsigned 8-bit integer
    wlan_mgt.qbss2.glimit  G.711 CU Quantum
        Unsigned 8-bit integer
    wlan_mgt.qbss2.scount  Station Count
        Unsigned 16-bit integer
    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
    wlan_mgt.rsn.capabilities.mfpc  Management Frame Protection Capable
        Boolean
    wlan_mgt.rsn.capabilities.mfpr  Management Frame Protection Required
        Boolean
    wlan_mgt.rsn.capabilities.no_pairwise  RSN No Pairwise capabilities
        Boolean
    wlan_mgt.rsn.capabilities.peerkey  PeerKey Enabled
        Boolean
    wlan_mgt.rsn.capabilities.preauth  RSN Pre-Auth capabilities
        Boolean
    wlan_mgt.rsn.capabilities.ptksa_replay_counter  RSN PTKSA Replay Counter capabilities
        Unsigned 16-bit integer
    wlan_mgt.sched.sched_info  Schedule Info
        Unsigned 16-bit integer
        Schedule Info field
    wlan_mgt.sched.spec_int  Specification Interval
        Unsigned 16-bit integer
    wlan_mgt.sched.srv_int  Service Interval
        Unsigned 32-bit integer
    wlan_mgt.sched.srv_start  Service Start Time
        Unsigned 32-bit integer
    wlan_mgt.secchanoffset  Secondary Channel Offset
        Unsigned 8-bit integer
    wlan_mgt.ssid  SSID
        String
    wlan_mgt.supchan  Supported Channels Set
        Unsigned 8-bit integer
    wlan_mgt.supchan.first  First Supported Channel
        Unsigned 8-bit integer
    wlan_mgt.supchan.range  Supported Channel Range
        Unsigned 8-bit integer
    wlan_mgt.supregclass.alt  Alternate Regulatory Classes
        String
    wlan_mgt.supregclass.current  Current Regulatory Class
        Unsigned 8-bit integer
    wlan_mgt.tag.interpretation  Tag interpretation
        String
        Interpretation of tag
    wlan_mgt.tag.length  Tag length
        Unsigned 32-bit integer
        Length of tag
    wlan_mgt.tag.number  Tag
        Unsigned 8-bit integer
        Element ID
    wlan_mgt.tag.oui  OUI
        Byte array
        OUI of vendor specific IE
    wlan_mgt.tagged.all  Tagged parameters
        Unsigned 16-bit integer
    wlan_mgt.tclas.class_mask  Classifier Mask
        Unsigned 8-bit integer
    wlan_mgt.tclas.class_type  Classifier Type
        Unsigned 8-bit integer
    wlan_mgt.tclas.params.dscp  IPv4 DSCP
        Unsigned 8-bit integer
        IPv4 Differentiated Services Code Point (DSCP) Field
    wlan_mgt.tclas.params.dst_port  Destination Port
        Unsigned 16-bit integer
    wlan_mgt.tclas.params.flow  Flow Label
        Unsigned 24-bit integer
        IPv6 Flow Label
    wlan_mgt.tclas.params.ipv4_dst  IPv4 Dst Addr
        IPv4 address
    wlan_mgt.tclas.params.ipv4_src  IPv4 Src Addr
        IPv4 address
    wlan_mgt.tclas.params.ipv6_dst  IPv6 Dst Addr
        IPv6 address
    wlan_mgt.tclas.params.ipv6_src  IPv6 Src Addr
        IPv6 address
    wlan_mgt.tclas.params.protocol  Protocol
        Unsigned 8-bit integer
        IPv4 Protocol
    wlan_mgt.tclas.params.src_port  Source Port
        Unsigned 16-bit integer
    wlan_mgt.tclas.params.tag_type  802.1Q Tag Type
        Unsigned 16-bit integer
    wlan_mgt.tclas.params.type  Ethernet Type
        Unsigned 8-bit integer
        Classifier Parameters Ethernet Type
    wlan_mgt.tclas.params.version  IP Version
        Unsigned 8-bit integer
    wlan_mgt.tclas_proc.processing  Processing
        Unsigned 8-bit integer
        TCLAS Processing
    wlan_mgt.tcprep.link_mrg  Link Margin
        Signed 8-bit integer
    wlan_mgt.tcprep.trsmt_pow  Transmit Power
        Signed 8-bit integer
    wlan_mgt.tim.bmapctl  Bitmap control
        Unsigned 8-bit integer
    wlan_mgt.tim.dtim_count  DTIM count
        Unsigned 8-bit integer
    wlan_mgt.tim.dtim_period  DTIM period
        Unsigned 8-bit integer
    wlan_mgt.tim.length  TIM length
        Unsigned 8-bit integer
        Traffic Indication Map length
    wlan_mgt.ts_delay  Traffic Stream (TS) Delay
        Unsigned 32-bit integer
    wlan_mgt.ts_info  Traffic Stream (TS) Info
        Unsigned 24-bit integer
        Traffic Stream (TS) Info field
    wlan_mgt.ts_info.ack  Ack Policy
        Unsigned 8-bit integer
        Traffic Stream (TS) Info Ack Policy
    wlan_mgt.ts_info.agg  Aggregation
        Unsigned 8-bit integer
        Traffic Stream (TS) Info Access Policy
    wlan_mgt.ts_info.apsd  Automatic Power-Save Delivery (APSD)
        Unsigned 8-bit integer
        Traffic Stream (TS) Info Automatic Power-Save Delivery (APSD)
    wlan_mgt.ts_info.dir  Direction
        Unsigned 8-bit integer
        Traffic Stream (TS) Info Direction
    wlan_mgt.ts_info.sched  Schedule
        Unsigned 8-bit integer
        Traffic Stream (TS) Info Schedule
    wlan_mgt.ts_info.tsid  Traffic Stream ID (TSID)
        Unsigned 8-bit integer
        Traffic Stream ID (TSID) Info TSID
    wlan_mgt.ts_info.type  Traffic Type
        Unsigned 8-bit integer
        Traffic Stream (TS) Info Traffic Type
    wlan_mgt.ts_info.up  User Priority
        Unsigned 8-bit integer
        Traffic Stream (TS) Info User Priority
    wlan_mgt.tspec.burst_size  Burst Size
        Unsigned 32-bit integer
    wlan_mgt.tspec.delay_bound  Delay Bound
        Unsigned 32-bit integer
    wlan_mgt.tspec.inact_int  Inactivity Interval
        Unsigned 32-bit integer
    wlan_mgt.tspec.max_msdu  Maximum MSDU Size
        Unsigned 16-bit integer
    wlan_mgt.tspec.max_srv  Maximum Service Interval
        Unsigned 32-bit integer
    wlan_mgt.tspec.mean_data  Mean Data Rate
        Unsigned 32-bit integer
    wlan_mgt.tspec.medium  Medium Time
        Unsigned 16-bit integer
    wlan_mgt.tspec.min_data  Minimum Data Rate
        Unsigned 32-bit integer
    wlan_mgt.tspec.min_phy  Minimum PHY Rate
        Unsigned 32-bit integer
    wlan_mgt.tspec.min_srv  Minimum Service Interval
        Unsigned 32-bit integer
    wlan_mgt.tspec.nor_msdu  Normal MSDU Size
        Unsigned 16-bit integer
    wlan_mgt.tspec.peak_data  Peak Data Rate
        Unsigned 32-bit integer
    wlan_mgt.tspec.srv_start  Service Start Time
        Unsigned 32-bit integer
    wlan_mgt.tspec.surplus  Surplus Bandwidth Allowance
        Unsigned 16-bit integer
    wlan_mgt.tspec.susp_int  Suspension Interval
        Unsigned 32-bit integer
    wlan_mgt.txbf  Transmit Beam Forming (TxBF) Capabilities
        Unsigned 16-bit integer
    wlan_mgt.txbf.calibration  Calibration
        Unsigned 32-bit integer
    wlan_mgt.txbf.channelest  Maximum number of space time streams for which channel dimensions can be simultaneously estimated
        Unsigned 32-bit integer
    wlan_mgt.txbf.csi  STA can apply TxBF using CSI explicit feedback
        Boolean
        Station can apply TxBF using CSI explicit feedback
    wlan_mgt.txbf.csi.maxrows  Maximum number of rows of CSI explicit feedback
        Unsigned 32-bit integer
    wlan_mgt.txbf.csinumant  Max antennae STA can support when CSI feedback required
        Unsigned 32-bit integer
        Max antennae station can support when CSI feedback required
    wlan_mgt.txbf.fm.compressed.bf  STA can compress and use compressed Beamforming Feedback Matrix
        Unsigned 32-bit integer
        Station can compress and use compressed Beamforming Feedback Matrix
    wlan_mgt.txbf.fm.compressed.maxant  Max antennae STA can support when compressed Beamforming feedback required
        Unsigned 32-bit integer
        Max antennae station can support when compressed Beamforming feedback required
    wlan_mgt.txbf.fm.compressed.tbf  STA can apply TxBF using compressed beamforming feedback matrix
        Boolean
        Station can apply TxBF using compressed beamforming feedback matrix
    wlan_mgt.txbf.fm.uncompressed.maxant  Max antennae STA can support when uncompressed Beamforming feedback required
        Unsigned 32-bit integer
        Max antennae station can support when uncompressed Beamforming feedback required
    wlan_mgt.txbf.fm.uncompressed.rbf  Receiver can return explicit uncompressed Beamforming Feedback Matrix
        Unsigned 32-bit integer
    wlan_mgt.txbf.fm.uncompressed.tbf  STA can apply TxBF using uncompressed beamforming feedback matrix
        Boolean
        Station can apply TxBF using uncompressed beamforming feedback matrix
    wlan_mgt.txbf.impltxbf  Implicit TxBF capable
        Boolean
        Implicit Transmit Beamforming (TxBF) capable
    wlan_mgt.txbf.mingroup  Minimal grouping used for explicit feedback reports
        Unsigned 32-bit integer
    wlan_mgt.txbf.rcsi  Receiver can return explicit CSI feedback
        Unsigned 32-bit integer
    wlan_mgt.txbf.reserved  Reserved
        Unsigned 32-bit integer
    wlan_mgt.txbf.rxndp  Receive Null Data packet (NDP)
        Boolean
    wlan_mgt.txbf.rxss  Receive Staggered Sounding
        Boolean
    wlan_mgt.txbf.txbf  Transmit Beamforming
        Boolean
    wlan_mgt.txbf.txndp  Transmit Null Data packet (NDP)
        Boolean
    wlan_mgt.txbf.txss  Transmit Staggered Sounding
        Boolean
        Transmit staggered sounding
    wlan_mgt.vs.asel  Antenna Selection (ASEL) Capabilities (VS)
        Unsigned 8-bit integer
        Vendor Specific Antenna Selection (ASEL) Capabilities
    wlan_mgt.vs.ht.ampduparam  A-MPDU Parameters (VS)
        Unsigned 16-bit integer
        Vendor Specific A-MPDU Parameters
    wlan_mgt.vs.ht.capabilities  HT Capabilities Info (VS)
        Unsigned 16-bit integer
        Vendor Specific HT Capability information
    wlan_mgt.vs.ht.mcsset  Rx Supported Modulation and Coding Scheme Set (VS)
        String
        Vendor Specific Rx Supported Modulation and Coding Scheme Set
    wlan_mgt.vs.htex.capabilities  HT Extended Capabilities (VS)
        Unsigned 16-bit integer
        Vendor Specific HT Extended Capability information
    wlan_mgt.vs.txbf  Transmit Beam Forming (TxBF) Capabilities (VS)
        Unsigned 16-bit integer
        Vendor Specific Transmit Beam Forming (TxBF) Capabilities

IEEE 802.15.4 Low-Rate Wireless PAN (wpan)

    wpan-nonask-phy.frame_length  Frame Length
        Unsigned 8-bit integer
    wpan-nonask-phy.preamble  Preamble
        Unsigned 32-bit integer
    wpan-nonask-phy.sfd  Start of Frame Delimiter
        Unsigned 8-bit integer
    wpan.ack_request  Acknowledge Request
        Boolean
        Whether the sender of this packet requests acknowledgement or not.
    wpan.asoc.addr  Short Address
        Unsigned 16-bit integer
        The short address that the device should assume. An address of 0xfffe indicates that the device should use its IEEE 64-bit long address.
    wpan.assoc.status  Association Status
        Unsigned 8-bit integer
    wpan.assoc_permit  Association Permit
        Boolean
        Whether this PAN is accepting association requests or not.
    wpan.aux_sec.frame_counter  Frame Counter
        Unsigned 32-bit integer
        Frame counter of the originator of the protected frame
    wpan.aux_sec.key_id_mode  Key Identifier Mode
        Unsigned 8-bit integer
        The scheme to use by the recipient to lookup the key in its key table
    wpan.aux_sec.key_index  Key Index
        Unsigned 8-bit integer
        Key Index for processing of the protected frame
    wpan.aux_sec.key_source  Key Source
        Unsigned 64-bit integer
        Key Source for processing of the protected frame
    wpan.aux_sec.reserved  Reserved
        Unsigned 8-bit integer
        Reserved
    wpan.aux_sec.sec_level  Security Level
        Unsigned 8-bit integer
        The Security Level of the frame
    wpan.battery_ext  Battery Extension
        Boolean
        Whether transmissions may not extend past the length of the beacon frame.
    wpan.bcn_coord  PAN Coordinator
        Boolean
        Whether this beacon frame is being transmitted by the PAN coordinator or not.
    wpan.beacon_order  Beacon Interval
        Unsigned 16-bit integer
        Specifies the transmission interval of the beacons.
    wpan.cap  Final CAP Slot
        Unsigned 16-bit integer
        Specifies the final superframe slot used by the CAP.
    wpan.cinfo.alloc_addr  Allocate Address
        Boolean
        Whether this device wishes to use a 16-bit short address instead of its IEEE 802.15.4 64-bit long address.
    wpan.cinfo.alt_coord  Alternate PAN Coordinator
        Boolean
        Whether this device can act as a PAN coordinator or not.
    wpan.cinfo.device_type  Device Type
        Boolean
        Whether this device is RFD (reduced-function device) or FFD (full-function device).
    wpan.cinfo.idle_rx  Receive On When Idle
        Boolean
        Whether this device can receive packets while idle or not.
    wpan.cinfo.power_src  Power Source
        Boolean
        Whether this device is operating on AC/mains or battery power.
    wpan.cinfo.sec_capable  Security Capability
        Boolean
        Whether this device is capable of receiving encrypted packets.
    wpan.cmd  Command Identifier
        Unsigned 8-bit integer
    wpan.correlation  LQI Correlation Value
        Unsigned 8-bit integer
    wpan.disassoc.reason  Disassociation Reason
        Unsigned 8-bit integer
    wpan.dst_addr16  Destination
        Unsigned 16-bit integer
    wpan.dst_addr64  Destination
        Unsigned 64-bit integer
    wpan.dst_addr_mode  Destination Addressing Mode
        Unsigned 16-bit integer
    wpan.dst_pan  Destination PAN
        Unsigned 16-bit integer
    wpan.fcs  FCS
        Unsigned 16-bit integer
    wpan.fcs_ok  FCS Valid
        Boolean
    wpan.frame_type  Frame Type
        Unsigned 16-bit integer
    wpan.gts.count  GTS Descriptor Count
        Unsigned 8-bit integer
        The number of GTS descriptors present in this beacon frame.
    wpan.gts.direction  Direction
        Boolean
        A flag defining the direction of the GTS Slot.
    wpan.gts.permit  GTS Permit
        Boolean
        Whether the PAN coordinator is accepting GTS requests or not.
    wpan.gtsreq.direction  GTS Direction
        Boolean
        The direction of traffic in the guaranteed timeslot.
    wpan.gtsreq.length  GTS Length
        Unsigned 8-bit integer
        Number of superframe slots the device is requesting.
    wpan.gtsreq.type  Characteristic Type
        Boolean
        Whether this request is to allocate or deallocate a timeslot.
    wpan.intra_pan  Intra-PAN
        Boolean
        Whether this packet originated and terminated within the same PAN or not.
    wpan.pending  Frame Pending
        Boolean
        Indication of additional packets waiting to be transferred from the source device.
    wpan.pending16  Address
        Unsigned 16-bit integer
        Device with pending data to receive.
    wpan.pending64  Address
        Unsigned 64-bit integer
        Device with pending data to receive.
    wpan.realign.addr  Coordinator Short Address
        Unsigned 16-bit integer
        The 16-bit address the coordinator wishes to use for future communication.
    wpan.realign.channel  Logical Channel
        Unsigned 8-bit integer
        The logical channel the coordinator wishes to use for future communication.
    wpan.realign.channel_page  Channel Page
        Unsigned 8-bit integer
        The logical channel page the coordinator wishes to use for future communication.
    wpan.realign.pan  PAN ID
        Unsigned 16-bit integer
        The PAN identifier the coordinator wishes to use for future communication.
    wpan.rssi  RSSI
        Signed 8-bit integer
        Received Signal Strength
    wpan.security  Security Enabled
        Boolean
        Whether security operations are performed at the MAC layer or not.
    wpan.seq_no  Sequence Number
        Unsigned 8-bit integer
    wpan.src_addr16  Source
        Unsigned 16-bit integer
    wpan.src_addr64  Source
        Unsigned 64-bit integer
    wpan.src_addr_mode  Source Addressing Mode
        Unsigned 16-bit integer
    wpan.src_pan  Source PAN
        Unsigned 16-bit integer
    wpan.superframe_order  Superframe Interval
        Unsigned 16-bit integer
        Specifies the length of time the coordinator will interact with the PAN.
    wpan.version  Frame Version
        Unsigned 16-bit integer

IEEE 802.15.4 Low-Rate Wireless PAN non-ASK PHY (wpan-nonask-phy)

IEEE 802.1ad (ieee8021ad)

    ieee8021ad.cvid  ID
        Unsigned 16-bit integer
        C-Vlan ID
    ieee8021ad.dei  DEI
        Unsigned 16-bit integer
        Drop Eligibility
    ieee8021ad.id  ID
        Unsigned 16-bit integer
        Vlan ID
    ieee8021ad.priority  Priority
        Unsigned 16-bit integer
    ieee8021ad.svid  ID
        Unsigned 16-bit integer
        S-Vlan ID

IEEE 802.1ah (ieee8021ah)

    ieee8021ah.cdst  C-Destination
        6-byte Hardware (MAC) Address
        Customer Destination Address
    ieee8021ah.csrc  C-Source
        6-byte Hardware (MAC) Address
        Customer Source Address
    ieee8021ah.drop  DROP
        Unsigned 32-bit integer
        Drop
    ieee8021ah.etype  Type
        Unsigned 16-bit integer
    ieee8021ah.isid  I-SID
        Unsigned 32-bit integer
    ieee8021ah.len  Length
        Unsigned 16-bit integer
    ieee8021ah.nca  NCA
        Unsigned 32-bit integer
        No Customer Addresses
    ieee8021ah.priority  Priority
        Unsigned 32-bit integer
    ieee8021ah.res1  RES1
        Unsigned 32-bit integer
        Reserved1
    ieee8021ah.res2  RES2
        Unsigned 32-bit integer
        Reserved2
    ieee8021ah.trailer  Trailer
        Byte array
        802.1ah Trailer

IEEE C37.118 Synchrophasor Protocol (synphasor)

    synphasor.command  Command
        Unsigned 16-bit integer
    synphasor.conf.analog_format  Analog values format
        Boolean
    synphasor.conf.cfgcnt  Configuration change count
        Unsigned 16-bit integer
    synphasor.conf.dfreq_format  FREQ/DFREQ format
        Boolean
    synphasor.conf.fnom  Nominal line freqency
        Boolean
    synphasor.conf.numpmu  Number of PMU blocks included in the frame
        Unsigned 16-bit integer
    synphasor.conf.phasor_format  Phasor format
        Boolean
    synphasor.conf.phasor_notation  Phasor notation
        Boolean
    synphasor.conf.timebase  Resolution of fractional second time stamp
        Unsigned 24-bit integer
    synphasor.data.CFGchange  Configuration changed
        Boolean
    synphasor.data.PMUerror  PMU error
        Boolean
    synphasor.data.sorting  Data sorting
        Boolean
    synphasor.data.sync  Time syncronized
        Boolean
    synphasor.data.t_unlock  Unlocked time
        Unsigned 16-bit integer
    synphasor.data.trigger  Trigger detected
        Boolean
    synphasor.data.trigger_reason  Trigger reason
        Unsigned 16-bit integer
    synphasor.data.valid  Data valid
        Boolean
    synphasor.fracsec  Fraction of second (raw)
        Unsigned 24-bit integer
    synphasor.frsize  Framesize
        Unsigned 16-bit integer
    synphasor.frtype  Frame Type
        Unsigned 16-bit integer
    synphasor.idcode  PMU/DC ID number
        Unsigned 16-bit integer
    synphasor.soc  SOC time stamp (UTC)
        NULL terminated string
    synphasor.sync  Synchronization word
        Unsigned 16-bit integer
    synphasor.timeqal.lsdir  Leap second direction
        Boolean
    synphasor.timeqal.lsocc  Leap second occurred
        Boolean
    synphasor.timeqal.lspend  Leap second pending
        Boolean
    synphasor.timeqal.timequalindic  Time Quality indicator code
        Unsigned 8-bit integer
    synphasor.version  Version
        Unsigned 16-bit integer

IEEE802a OUI Extended Ethertype (ieee802a)

    ieee802a.oui  Organization Code
        Unsigned 24-bit integer
    ieee802a.pid  Protocol ID
        Unsigned 16-bit integer

ILMI (ilmi)

IP Device Control (SS7 over IP) (ipdc)

    ipdc.length  Payload length
        Unsigned 16-bit integer
    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
    ipdc.trans_id  Transaction ID
        Byte array
    ipdc.trans_id_size  Transaction ID size
        Unsigned 8-bit integer

IP Over FC (ipfc)

    ipfc.nh.da  Network DA
        String
    ipfc.nh.sa  Network SA
        String

IP Payload Compression (ipcomp)

    ipcomp.cpi  IPComp CPI
        Unsigned 16-bit integer
        IP Payload Compression Protocol Compression Parameter Index
    ipcomp.flags  IPComp Flags
        Unsigned 8-bit integer
        IP Payload Compression Protocol Flags

IP Virtual Services Sync Daemon (ipvs)

    ipvs.caddr  Client Address
        IPv4 address
    ipvs.conncount  Connection Count
        Unsigned 8-bit integer
    ipvs.cport  Client Port
        Unsigned 16-bit integer
    ipvs.daddr  Destination Address
        IPv4 address
    ipvs.dport  Destination Port
        Unsigned 16-bit integer
    ipvs.flags  Flags
        Unsigned 16-bit integer
    ipvs.in_seq.delta  Input Sequence (Delta)
        Unsigned 32-bit integer
    ipvs.in_seq.initial  Input Sequence (Initial)
        Unsigned 32-bit integer
    ipvs.in_seq.pdelta  Input Sequence (Previous Delta)
        Unsigned 32-bit integer
    ipvs.out_seq.delta  Output Sequence (Delta)
        Unsigned 32-bit integer
    ipvs.out_seq.initial  Output Sequence (Initial)
        Unsigned 32-bit integer
    ipvs.out_seq.pdelta  Output Sequence (Previous Delta)
        Unsigned 32-bit integer
    ipvs.proto  Protocol
        Unsigned 8-bit integer
    ipvs.resv8  Reserved
        Unsigned 8-bit integer
    ipvs.size  Size
        Unsigned 16-bit integer
    ipvs.state  State
        Unsigned 16-bit integer
    ipvs.syncid  Synchronization ID
        Unsigned 8-bit integer
    ipvs.vaddr  Virtual Address
        IPv4 address
    ipvs.vport  Virtual Port
        Unsigned 16-bit integer

IPSICTL (ipsictl)

    ipsictl.data  Data
        Byte array
        IPSICTL data
    ipsictl.field1  Field1
        Unsigned 16-bit integer
        IPSICTL Field1
    ipsictl.length  Length
        Unsigned 16-bit integer
        IPSICTL Length
    ipsictl.magic  Magic
        Unsigned 16-bit integer
        IPSICTL Magic
    ipsictl.pdu  PDU
        Unsigned 16-bit integer
        IPSICTL PDU
    ipsictl.sequence  Sequence
        Unsigned 16-bit integer
        IPSICTL Sequence
    ipsictl.type  Type
        Unsigned 16-bit integer
        IPSICTL Type

IPX Message (ipxmsg)

    ipxmsg.conn  Connection Number
        Unsigned 8-bit integer
    ipxmsg.sigchar  Signature Char
        Unsigned 8-bit integer

IPX Routing Information Protocol (ipxrip)

    ipxrip.request  Request
        Boolean
        TRUE if IPX RIP request
    ipxrip.response  Response
        Boolean
        TRUE if IPX RIP response

IPX WAN (ipxwan)

    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

IPv6 over IEEE 802.15.4 (6lowpan)

    6lowpan.bcast.seqnum  Sequence number
        Unsigned 8-bit integer
    6lowpan.class  Traffic class
        Unsigned 8-bit integer
    6lowpan.dscp  DSCP
        Unsigned 8-bit integer
    6lowpan.dst  Destination
        IPv6 address
        Destination IPv6 address
    6lowpan.ecn  ECN
        Unsigned 8-bit integer
    6lowpan.flow  Flow label
        Unsigned 32-bit integer
    6lowpan.frag.offset  Datagram offset
        Unsigned 8-bit integer
    6lowpan.frag.size  Datagram size
        Unsigned 16-bit integer
    6lowpan.frag.tag  Datagram tag
        Unsigned 16-bit integer
    6lowpan.fragment  Message fragment
        Frame number
    6lowpan.fragment.error  Message defragmentation error
        Frame number
    6lowpan.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    6lowpan.fragment.overlap  Message fragment overlap
        Boolean
    6lowpan.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    6lowpan.fragment.too_long_fragment  Message fragment too long
        Boolean
    6lowpan.fragments  Message fragments
        No value
    6lowpan.hc1.class  Traffic class and flow label
        Boolean
    6lowpan.hc1.dst_ifc  Destination interface
        Boolean
    6lowpan.hc1.dst_prefix  Destination prefix
        Boolean
    6lowpan.hc1.more  More HC bits
        Boolean
    6lowpan.hc1.next  Next header
        Unsigned 8-bit integer
    6lowpan.hc1.src_ifc  Source interface
        Boolean
    6lowpan.hc1.src_prefix  Source prefix
        Boolean
    6lowpan.hc2.udp.dst  Destination port
        Boolean
    6lowpan.hc2.udp.length  Length
        Boolean
    6lowpan.hc2.udp.src  Source port
        Boolean
    6lowpan.hops  Hop limit
        Unsigned 8-bit integer
    6lowpan.iphc.cid  Context identifier extension
        Boolean
    6lowpan.iphc.dac  Destination address compression
        Boolean
    6lowpan.iphc.dam  Destination address mode
        Unsigned 16-bit integer
    6lowpan.iphc.dci  Destination context identifier
        Unsigned 8-bit integer
    6lowpan.iphc.hlim  Hop limit
        Unsigned 16-bit integer
    6lowpan.iphc.m  Multicast address compression
        Boolean
    6lowpan.iphc.nh  Next header
        Boolean
    6lowpan.iphc.sac  Source address compression
        Boolean
    6lowpan.iphc.sam  Source address mode
        Unsigned 16-bit integer
    6lowpan.iphc.sci  Source context identifier
        Unsigned 8-bit integer
    6lowpan.iphc.tf  Traffic class and flow label
        Unsigned 16-bit integer
        traffic class and flow control encoding
    6lowpan.mesh.dest16  Destination
        Unsigned 16-bit integer
    6lowpan.mesh.dest64  Destination
        Unsigned 64-bit integer
    6lowpan.mesh.f  D
        Boolean
        short destination address present
    6lowpan.mesh.hops  Hops left
        Unsigned 8-bit integer
    6lowpan.mesh.hops8  Deep Hops left (Flags.Hops left == 15)
        Unsigned 8-bit integer
    6lowpan.mesh.orig16  Originator
        Unsigned 16-bit integer
    6lowpan.mesh.orig64  Originator
        Unsigned 64-bit integer
    6lowpan.mesh.v  V
        Boolean
        short originator address present
    6lowpan.next  Next header
        Unsigned 8-bit integer
    6lowpan.nhc.ext.eid  Header ID
        Unsigned 8-bit integer
    6lowpan.nhc.ext.length  Header length
        Unsigned 8-bit integer
    6lowpan.nhc.ext.next  Next header
        Unsigned 8-bit integer
    6lowpan.nhc.ext.nh  Next header
        Boolean
    6lowpan.nhc.pattern  Pattern
        Unsigned 8-bit integer
    6lowpan.nhc.udp.checksum  Checksum
        Boolean
    6lowpan.nhc.udp.dst  Destination port
        Boolean
    6lowpan.nhc.udp.src  Source port
        Boolean
    6lowpan.pattern  Pattern
        Unsigned 8-bit integer
    6lowpan.reassembled.in  Reassembled in
        Frame number
    6lowpan.reassembled.length  Reassembled 6LowPAN length
        Unsigned 32-bit integer
    6lowpan.src  Source
        IPv6 address
        Source IPv6 address
    6lowpan.udp.checksum  UDP checksum
        Unsigned 16-bit integer
    6lowpan.udp.dst  Destination port
        Unsigned 16-bit integer
    6lowpan.udp.length  UDP length
        Unsigned 16-bit integer
    6lowpan.udp.src  Source port
        Unsigned 16-bit integer

IRemUnknown (remunk)

    remunk_flags  Flags
        Unsigned 32-bit integer
    remunk_iids  IIDs
        Unsigned 16-bit integer
    remunk_int_refs  InterfaceRefs
        Unsigned 32-bit integer
    remunk_opnum  Operation
        Unsigned 16-bit integer
    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

IRemUnknown2 (remunk2)

ISC Object Management API (omapi)

    omapi.authid  Authentication ID
        Unsigned 32-bit integer
    omapi.authlength  Authentication length
        Unsigned 32-bit integer
    omapi.handle  Handle
        Unsigned 32-bit integer
    omapi.hlength  Header length
        Unsigned 32-bit integer
    omapi.id  ID
        Unsigned 32-bit integer
    omapi.msg_name  Message name
        String
    omapi.msg_name_length  Message name length
        Unsigned 16-bit integer
    omapi.msg_value  Message value
        String
    omapi.msg_value_length  Message value length
        Unsigned 32-bit integer
    omapi.obj_name  Object name
        String
    omapi.obj_name_length  Object name length
        Unsigned 16-bit integer
    omapi.obj_value  Object value
        Byte array
    omapi.object_value_length  Object value length
        Unsigned 32-bit integer
    omapi.opcode  Opcode
        Unsigned 32-bit integer
    omapi.rid  Response ID
        Unsigned 32-bit integer
    omapi.signature  Signature
        Byte array
    omapi.version  Version
        Unsigned 32-bit integer

ISDN (isdn)

    isdn.channel  Channel
        Unsigned 8-bit integer

ISDN Q.921-User Adaptation Layer (iua)

    iua.asp_identifier  ASP identifier
        Unsigned 32-bit integer
    iua.asp_reason  Reason
        Unsigned 32-bit integer
    iua.diagnostic_information  Diagnostic information
        Byte array
    iua.dlci_one_bit  One bit
        Boolean
    iua.dlci_sapi  SAPI
        Unsigned 8-bit integer
    iua.dlci_spare  Spare
        Unsigned 16-bit integer
    iua.dlci_spare_bit  Spare bit
        Boolean
    iua.dlci_tei  TEI
        Unsigned 8-bit integer
    iua.dlci_zero_bit  Zero bit
        Boolean
    iua.error_code  Error code
        Unsigned 32-bit integer
    iua.heartbeat_data  Heartbeat data
        Byte array
    iua.info_string  Info string
        String
    iua.int_interface_identifier  Integer interface identifier
        Unsigned 32-bit integer
    iua.interface_range_end  End
        Unsigned 32-bit integer
    iua.interface_range_start  Start
        Unsigned 32-bit integer
    iua.message_class  Message class
        Unsigned 8-bit integer
    iua.message_length  Message length
        Unsigned 32-bit integer
    iua.message_type  Message Type
        Unsigned 8-bit integer
    iua.parameter_length  Parameter length
        Unsigned 16-bit integer
    iua.parameter_padding  Parameter padding
        Byte array
    iua.parameter_tag  Parameter Tag
        Unsigned 16-bit integer
    iua.parameter_value  Parameter value
        Byte array
    iua.release_reason  Reason
        Unsigned 32-bit integer
    iua.reserved  Reserved
        Unsigned 8-bit integer
    iua.status_identification  Status identification
        Unsigned 16-bit integer
    iua.status_type  Status type
        Unsigned 16-bit integer
    iua.tei_status  TEI status
        Unsigned 32-bit integer
    iua.text_interface_identifier  Text interface identifier
        String
    iua.traffic_mode_type  Traffic mode type
        Unsigned 32-bit integer
    iua.version  Version
        Unsigned 8-bit integer

ISDN User Part (isup)

    ansi_isup.cause_indicator  Cause indicator
        Unsigned 8-bit integer
    ansi_isup.coding_standard  Coding standard
        Unsigned 8-bit integer
    bat_ase.Comp_Report_Reason  Compatibility report reason
        Unsigned 8-bit integer
    bat_ase.Comp_Report_diagnostic  Diagnostics
        Unsigned 16-bit integer
    bat_ase.ETSI_codec_type_subfield  ETSI codec type subfield
        Unsigned 8-bit integer
    bat_ase.ITU_T_codec_type_subfield  ITU-T codec type subfield
        Unsigned 8-bit integer
    bat_ase.Local_BCU_ID  Local BCU ID
        Unsigned 32-bit integer
    bat_ase.acs  Active Code Set
        Unsigned 8-bit integer
    bat_ase.acs.10_2  10.2 kbps rate
        Unsigned 8-bit integer
    bat_ase.acs.12_2  12.2 kbps rate
        Unsigned 8-bit integer
    bat_ase.acs.4_75  4.75 kbps rate
        Unsigned 8-bit integer
    bat_ase.acs.5_15  5.15 kbps rate
        Unsigned 8-bit integer
    bat_ase.acs.5_90  5.90 kbps rate
        Unsigned 8-bit integer
    bat_ase.acs.6_70  6.70 kbps rate
        Unsigned 8-bit integer
    bat_ase.acs.7_40  7.40 kbps rate
        Unsigned 8-bit integer
    bat_ase.acs.7_95  7.95 kbps rate
        Unsigned 8-bit integer
    bat_ase.bearer_control_tunneling  Bearer control tunneling
        Boolean
    bat_ase.bearer_redir_ind  Redirection Indicator
        Unsigned 8-bit integer
    bat_ase.bncid  Backbone Network Connection Identifier (BNCId)
        Unsigned 32-bit integer
    bat_ase.char  Backbone network connection characteristics
        Unsigned 8-bit integer
    bat_ase.late_cut_trough_cap_ind  Late Cut-through capability indicator
        Boolean
    bat_ase.macs  Maximal number of Codec Modes, MACS
        Unsigned 8-bit integer
    bat_ase.optimisation_mode  Optimisation Mode for ACS , OM
        Unsigned 8-bit integer
    bat_ase.organization_identifier_subfield  Organization identifier subfield
        Unsigned 8-bit integer
    bat_ase.scs  Supported Code Set
        Unsigned 8-bit integer
    bat_ase.scs.10_2  10.2 kbps rate
        Unsigned 8-bit integer
    bat_ase.scs.12_2  12.2 kbps rate
        Unsigned 8-bit integer
    bat_ase.scs.4_75  4.75 kbps rate
        Unsigned 8-bit integer
    bat_ase.scs.5_15  5.15 kbps rate
        Unsigned 8-bit integer
    bat_ase.scs.5_90  5.90 kbps rate
        Unsigned 8-bit integer
    bat_ase.scs.6_70  6.70 kbps rate
        Unsigned 8-bit integer
    bat_ase.scs.7_40  7.40 kbps rate
        Unsigned 8-bit integer
    bat_ase.scs.7_95  7.95 kbps rate
        Unsigned 8-bit integer
    bat_ase.signal_type  Q.765.5 - Signal Type
        Unsigned 8-bit integer
    bat_ase_biwfa  Interworking Function Address( X.213 NSAP encoded)
        Byte array
    bicc.bat_ase_BCTP_BVEI  BVEI
        Boolean
    bicc.bat_ase_BCTP_Tunnelled_Protocol_Indicator  Tunnelled Protocol Indicator
        Unsigned 8-bit integer
    bicc.bat_ase_BCTP_Version_Indicator  BCTP Version Indicator
        Unsigned 8-bit integer
    bicc.bat_ase_BCTP_tpei  TPEI
        Boolean
    bicc.bat_ase_Instruction_ind_for_general_action  BAT ASE Instruction indicator for general action
        Unsigned 8-bit integer
    bicc.bat_ase_Instruction_ind_for_pass_on_not_possible  Instruction ind for pass-on not possible
        Unsigned 8-bit integer
    bicc.bat_ase_Send_notification_ind_for_general_action  Send notification indicator for general action
        Boolean
    bicc.bat_ase_Send_notification_ind_for_pass_on_not_possible  Send notification indication for pass-on not possible
        Boolean
    bicc.bat_ase_bat_ase_action_indicator_field  BAT ASE action indicator field
        Unsigned 8-bit integer
    bicc.bat_ase_identifier  BAT ASE Identifiers
        Unsigned 8-bit integer
    bicc.bat_ase_length_indicator  BAT ASE Element length indicator
        Unsigned 16-bit integer
    cg_alarm_car_ind  Alarm Carrier Indicator
        Unsigned 8-bit integer
    cg_alarm_cnt_chk  Continuity Check Indicator
        Unsigned 8-bit integer
    cg_carrier_ind  CVR Circuit Group Carrier
        Unsigned 8-bit integer
    cg_char_ind.doubleSeize  Double Seize Control
        Unsigned 8-bit integer
    conn_rsp_ind  CVR Response Ind
        Unsigned 8-bit integer
    isup.APM_Sequence_ind  Sequence indicator (SI)
        Boolean
    isup.APM_slr  Segmentation local reference (SLR)
        Unsigned 8-bit integer
    isup.Discard_message_ind_value  Discard message indicator
        Boolean
    isup.Discard_parameter_ind  Discard parameter indicator
        Boolean
    isup.IECD_inf_ind_vals  IECD information indicator
        Unsigned 8-bit integer
    isup.IECD_req_ind_vals  IECD request indicator
        Unsigned 8-bit integer
    isup.OECD_inf_ind_vals  OECD information indicator
        Unsigned 8-bit integer
    isup.OECD_req_ind_vals  OECD request indicator
        Unsigned 8-bit integer
    isup.Release_call_ind  Release call indicator
        Boolean
    isup.Send_notification_ind  Send notification indicator
        Boolean
    isup.UUI_network_discard_ind  User-to-User indicator network discard indicator
        Boolean
    isup.UUI_req_service1  User-to-User indicator request service 1
        Unsigned 8-bit integer
    isup.UUI_req_service2  User-to-User indicator request service 2
        Unsigned 8-bit integer
    isup.UUI_req_service3  User-to-User indicator request service 3
        Unsigned 8-bit integer
    isup.UUI_res_service1  User-to-User indicator response service 1
        Unsigned 8-bit integer
    isup.UUI_res_service2  User-to-User indicator response service 2
        Unsigned 8-bit integer
    isup.UUI_res_service3  User-to-User response service 3
        Unsigned 8-bit integer
    isup.UUI_type  User-to-User indicator type
        Boolean
    isup.access_delivery_ind  Access delivery indicator
        Boolean
    isup.address_presentation_restricted_indicator  Address presentation restricted indicator
        Unsigned 8-bit integer
    isup.apm_segmentation_ind  APM segmentation indicator
        Unsigned 8-bit integer
    isup.app_Release_call_indicator  Release call indicator (RCI)
        Boolean
    isup.app_Send_notification_ind  Send notification indicator (SNI)
        Boolean
    isup.app_context_identifier  Application context identifier
        Unsigned 16-bit integer
    isup.automatic_congestion_level  Automatic congestion level
        Unsigned 8-bit integer
    isup.backw_call_echo_control_device_indicator  Echo Control Device Indicator
        Boolean
    isup.backw_call_end_to_end_information_indicator  End-to-end information indicator
        Boolean
    isup.backw_call_end_to_end_method_indicator  End-to-end method indicator
        Unsigned 16-bit integer
    isup.backw_call_holding_indicator  Holding indicator
        Boolean
    isup.backw_call_interworking_indicator  Interworking indicator
        Boolean
    isup.backw_call_isdn_access_indicator  ISDN access indicator
        Boolean
    isup.backw_call_isdn_user_part_indicator  ISDN user part indicator
        Boolean
    isup.backw_call_sccp_method_indicator  SCCP method indicator
        Unsigned 16-bit integer
    isup.call_diversion_may_occur_ind  Call diversion may occur indicator
        Boolean
    isup.call_processing_state  Call processing state
        Unsigned 8-bit integer
    isup.call_to_be_diverted_ind  Call to be diverted indicator
        Unsigned 8-bit integer
    isup.call_to_be_offered_ind  Call to be offered indicator
        Unsigned 8-bit integer
    isup.called  ISUP Called Number
        String
    isup.called_party_even_address_signal_digit  Address signal digit
        Unsigned 8-bit integer
    isup.called_party_nature_of_address_indicator  Nature of address indicator
        Unsigned 8-bit integer
    isup.called_party_odd_address_signal_digit  Address signal digit
        Unsigned 8-bit integer
    isup.called_partys_category_indicator  Called party's category indicator
        Unsigned 16-bit integer
    isup.called_partys_status_indicator  Called party's status indicator
        Unsigned 16-bit integer
    isup.calling  ISUP Calling Number
        String
    isup.calling_party_address_request_indicator  Calling party address request indicator
        Boolean
    isup.calling_party_address_response_indicator  Calling party address response indicator
        Unsigned 16-bit integer
    isup.calling_party_even_address_signal_digit  Address signal digit
        Unsigned 8-bit integer
    isup.calling_party_nature_of_address_indicator  Nature of address indicator
        Unsigned 8-bit integer
    isup.calling_party_odd_address_signal_digit  Address signal digit
        Unsigned 8-bit integer
    isup.calling_partys_category  Calling Party's category
        Unsigned 8-bit integer
    isup.calling_partys_category_request_indicator  Calling party's category request indicator
        Boolean
    isup.calling_partys_category_response_indicator  Calling party's category response indicator
        Boolean
    isup.cause_indicator  Cause indicator
        Unsigned 8-bit integer
    isup.cause_location  Cause location
        Unsigned 8-bit integer
    isup.cgs_message_type  Circuit group supervision message type
        Unsigned 8-bit integer
    isup.charge_indicator  Charge indicator
        Unsigned 16-bit integer
    isup.charge_information_request_indicator  Charge information request indicator
        Boolean
    isup.charge_information_response_indicator  Charge information response indicator
        Boolean
    isup.charge_number_nature_of_address_indicator  Nature of address indicator
        Unsigned 8-bit integer
    isup.cic  CIC
        Unsigned 16-bit integer
    isup.clg_call_ind  Closed user group call indicator
        Unsigned 8-bit integer
    isup.conference_acceptance_ind  Conference acceptance indicator
        Unsigned 8-bit integer
    isup.connected_line_identity_request_ind  Connected line identity request indicator
        Boolean
    isup.continuity_check_indicator  Continuity Check Indicator
        Unsigned 8-bit integer
    isup.continuity_indicator  Continuity indicator
        Boolean
    isup.echo_control_device_indicator  Echo Control Device Indicator
        Boolean
    isup.event_ind  Event indicator
        Unsigned 8-bit integer
    isup.event_presentatiation_restr_ind  Event presentation restricted indicator
        Boolean
    isup.extension_ind  Extension indicator
        Boolean
    isup.forw_call_end_to_end_information_indicator  End-to-end information indicator
        Boolean
    isup.forw_call_end_to_end_method_indicator  End-to-end method indicator
        Unsigned 16-bit integer
    isup.forw_call_interworking_indicator  Interworking indicator
        Boolean
    isup.forw_call_isdn_access_indicator  ISDN access indicator
        Boolean
    isup.forw_call_isdn_user_part_indicator  ISDN user part indicator
        Boolean
    isup.forw_call_natnl_inatnl_call_indicator  National/international call indicator
        Boolean
    isup.forw_call_ported_num_trans_indicator  Ported number translation indicator
        Boolean
    isup.forw_call_preferences_indicator  ISDN user part preference indicator
        Unsigned 16-bit integer
    isup.forw_call_sccp_method_indicator  SCCP method indicator
        Unsigned 16-bit integer
    isup.hold_provided_indicator  Hold provided indicator
        Boolean
    isup.hw_blocking_state  HW blocking state
        Unsigned 8-bit integer
    isup.inband_information_ind  In-band information indicator
        Boolean
    isup.info_req_holding_indicator  Holding indicator
        Boolean
    isup.inn_indicator  INN indicator
        Boolean
    isup.isdn_generic_name_availability  Availability indicator
        Boolean
    isup.isdn_generic_name_ia5  Generic Name
        String
    isup.isdn_generic_name_presentation  Presentation indicator
        Unsigned 8-bit integer
    isup.isdn_generic_name_type  Type indicator
        Unsigned 8-bit integer
    isup.isdn_odd_even_indicator  Odd/even indicator
        Boolean
    isup.location_presentation_restr_ind  Calling Geodetic Location presentation restricted indicator
        Unsigned 8-bit integer
    isup.location_screening_ind  Calling Geodetic Location screening indicator
        Unsigned 8-bit integer
    isup.loop_prevention_response_ind  Response indicator
        Unsigned 8-bit integer
    isup.malicious_call_ident_request_indicator  Malicious call identification request indicator (ISUP'88)
        Boolean
    isup.mandatory_variable_parameter_pointer  Pointer to Parameter
        Unsigned 8-bit integer
    isup.map_type  Map Type
        Unsigned 8-bit integer
    isup.message_type  Message Type
        Unsigned 8-bit integer
    isup.mlpp_user  MLPP user indicator
        Boolean
    isup.mtc_blocking_state  Maintenance blocking state
        Unsigned 8-bit integer
    isup.network_identification_plan  Network identification plan
        Unsigned 8-bit integer
    isup.ni_indicator  NI indicator
        Boolean
    isup.numbering_plan_indicator  Numbering plan indicator
        Unsigned 8-bit integer
    isup.optional_parameter_part_pointer  Pointer to optional parameter part
        Unsigned 8-bit integer
    isup.orig_addr_len  Originating Address length
        Unsigned 8-bit integer
    isup.original_redirection_reason  Original redirection reason
        Unsigned 16-bit integer
    isup.parameter_length  Parameter Length
        Unsigned 8-bit integer
    isup.parameter_type  Parameter Type
        Unsigned 8-bit integer
    isup.range_indicator  Range indicator
        Unsigned 8-bit integer
    isup.redirecting  ISUP Redirecting Number
        String
    isup.redirecting_ind  Redirection indicator
        Unsigned 16-bit integer
    isup.redirection_counter  Redirection counter
        Unsigned 16-bit integer
    isup.redirection_reason  Redirection reason
        Unsigned 16-bit integer
    isup.satellite_indicator  Satellite Indicator
        Unsigned 8-bit integer
    isup.screening_indicator  Screening indicator
        Unsigned 8-bit integer
    isup.screening_indicator_enhanced  Screening indicator
        Unsigned 8-bit integer
    isup.simple_segmentation_ind  Simple segmentation indicator
        Boolean
    isup.solicided_indicator  Solicited indicator
        Boolean
    isup.suspend_resume_indicator  Suspend/Resume indicator
        Boolean
    isup.temporary_alternative_routing_ind  Temporary alternative routing indicator
        Boolean
    isup.transit_at_intermediate_exchange_ind  Transit at intermediate exchange indicator
        Boolean
    isup.transmission_medium_requirement  Transmission medium requirement
        Unsigned 8-bit integer
    isup.transmission_medium_requirement_prime  Transmission medium requirement prime
        Unsigned 8-bit integer
    isup.type_of_network_identification  Type of network identification
        Unsigned 8-bit integer
    isup_Pass_on_not_possible_ind  Pass on not possible indicator
        Unsigned 8-bit integer
    isup_Pass_on_not_possible_val  Pass on not possible indicator
        Boolean
    isup_apm.msg.fragment  Message fragment
        Frame number
    isup_apm.msg.fragment.error  Message defragmentation error
        Frame number
    isup_apm.msg.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    isup_apm.msg.fragment.overlap  Message fragment overlap
        Boolean
    isup_apm.msg.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    isup_apm.msg.fragment.too_long_fragment  Message fragment too long
        Boolean
    isup_apm.msg.fragments  Message fragments
        No value
    isup_apm.msg.reassembled.in  Reassembled in
        Frame number
    isup_apm.msg.reassembled.length  Reassembled ISUP length
        Unsigned 32-bit integer
    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

ISMACryp Protocol (ismacryp)

    ismacryp.au.index  AU index
        Unsigned 64-bit integer
    ismacryp.au.index_delta  AU index delta
        Unsigned 64-bit integer
    ismacryp.au.size  AU size
        Unsigned 64-bit integer
    ismacryp.au_headers.length  AU Headers Length
        Unsigned 16-bit integer
    ismacryp.au_is_encrypted  AU_is_encrypted flag
        Boolean
    ismacryp.cts_delta  CTS delta
        Boolean
    ismacryp.cts_flag  CTS flag
        Boolean
    ismacryp.data  Data
        No value
    ismacryp.delta_iv  Delta IV
        Byte array
    ismacryp.dts_delta  DTS delta
        Boolean
    ismacryp.dts_flag  DTS flag
        Boolean
    ismacryp.header  AU Header
        No value
    ismacryp.header.byte  Header Byte
        No value
    ismacryp.header.length  Header Length
        Unsigned 16-bit integer
    ismacryp.iv  IV
        Byte array
    ismacryp.key_indicator  Key Indicator
        Byte array
    ismacryp.len  Total Length
        Unsigned 16-bit integer
    ismacryp.message  Message
        No value
    ismacryp.message.len  Message Length
        Unsigned 16-bit integer
    ismacryp.padding  Padding bits
        Boolean
    ismacryp.padding_bitcount  Padding_bitcount bits
        Boolean
    ismacryp.parameter  Parameter
        No value
    ismacryp.parameter.len  Parameter Length
        Unsigned 16-bit integer
    ismacryp.parameter.value  Parameter Value
        No value
    ismacryp.rap_flag  RAP flag
        Boolean
    ismacryp.reserved  Reserved bits
        Boolean
    ismacryp.slice_end  Slice_end flag
        Boolean
    ismacryp.slice_start  Slice_start flag
        Boolean
    ismacryp.stream_state  Stream state
        Boolean
    ismacryp.unused  Unused bits
        Boolean
    ismacryp.version  Version
        Unsigned 8-bit integer

ISO 10035-1 OSI Connectionless Association Control Service (clacse)

ISO 10589 ISIS InTRA Domain Routeing Information Exchange Protocol (isis)

    isis.csnp.pdu_length  PDU length
        Unsigned 16-bit integer
    isis.hello.circuit_type  Circuit type
        Unsigned 8-bit integer
    isis.hello.clv_ipv4_int_addr  IPv4 interface address
        IPv4 address
    isis.hello.clv_ipv6_int_addr  IPv6 interface address
        IPv6 address
    isis.hello.clv_mt  MT-ID
        Unsigned 16-bit integer
    isis.hello.clv_ptp_adj  Point-to-point Adjacency
        Unsigned 8-bit integer
    isis.hello.clv_restart.neighbor  Restarting Neighbor ID
        Byte array
        The System ID of the restarting neighbor
    isis.hello.clv_restart.remain_time  Remaining holding time
        Unsigned 16-bit integer
        How long the helper router will maintain the existing adjacency
    isis.hello.clv_restart_flags  Restart Signaling Flags
        Unsigned 8-bit integer
    isis.hello.clv_restart_flags.ra  Restart Acknowledgment
        Boolean
        When set, the router is willing to enter helper mode
    isis.hello.clv_restart_flags.rr  Restart Request
        Boolean
        When set, the router is beginning a graceful restart
    isis.hello.clv_restart_flags.sa  Suppress Adjacency
        Boolean
        When set, the router is starting as opposed to restarting
    isis.hello.holding_timer  Holding timer
        Unsigned 16-bit integer
    isis.hello.lan_id  SystemID{ Designated IS }
        Byte array
    isis.hello.local_circuit_id  Local circuit ID
        Unsigned 8-bit integer
    isis.hello.pdu_length  PDU length
        Unsigned 16-bit integer
    isis.hello.priority  Priority
        Unsigned 8-bit integer
    isis.hello.source_id  SystemID{ Sender of PDU }
        Byte array
    isis.irpd  Intra Domain Routing Protocol Discriminator
        Unsigned 8-bit integer
    isis.len  PDU Header Length
        Unsigned 8-bit integer
    isis.lsp.att  Attachment
        Unsigned 8-bit integer
    isis.lsp.checksum  Checksum
        Unsigned 16-bit integer
    isis.lsp.checksum_bad  Bad Checksum
        Boolean
        Bad IS-IS LSP Checksum
    isis.lsp.checksum_good  Good Checksum
        Boolean
        Good IS-IS LSP Checksum
    isis.lsp.clv_ipv4_int_addr  IPv4 interface address
        IPv4 address
    isis.lsp.clv_ipv6_int_addr  IPv6 interface address
        IPv6 address
    isis.lsp.clv_mt  MT-ID
        Unsigned 16-bit integer
    isis.lsp.clv_te_router_id  Traffic Engineering Router ID
        IPv4 address
    isis.lsp.hostname  Hostname
        String
    isis.lsp.is_type  Type of Intermediate System
        Unsigned 8-bit integer
    isis.lsp.lsp_id  LSP-ID
        String
    isis.lsp.overload  Overload bit
        Boolean
        If set, this router will not be used by any decision process to calculate routes
    isis.lsp.partition_repair  Partition Repair
        Boolean
        If set, this router supports the optional Partition Repair function
    isis.lsp.pdu_length  PDU length
        Unsigned 16-bit integer
    isis.lsp.remaining_life  Remaining lifetime
        Unsigned 16-bit integer
    isis.lsp.sequence_number  Sequence number
        Unsigned 32-bit integer
    isis.max_area_adr  Max.AREAs: (0==3)
        Unsigned 8-bit integer
    isis.psnp.pdu_length  PDU length
        Unsigned 16-bit integer
    isis.reserved  Reserved (==0)
        Unsigned 8-bit integer
    isis.sysid_len  System ID Length
        Unsigned 8-bit integer
    isis.type  PDU Type
        Unsigned 8-bit integer
    isis.version  Version (==1)
        Unsigned 8-bit integer
    isis.version2  Version2 (==1)
        Unsigned 8-bit integer

ISO 8073 COTP Connection-Oriented Transport Protocol (cotp)

    cotp.class  Class
        Unsigned 8-bit integer
        Transport protocol class
    cotp.destref  Destination reference
        Unsigned 16-bit integer
        Destination address reference
    cotp.dst-tsap  Destination TSAP
        String
        Called TSAP
    cotp.dst-tsap-bytes  Destination TSAP
        Byte array
        Called TSAP (bytes representation)
    cotp.eot  Last data unit
        Boolean
        Is current TPDU the last data unit of a complete DT TPDU sequence (End of TSDU)?
    cotp.li  Length
        Unsigned 8-bit integer
        Length Indicator, length of this header
    cotp.next-tpdu-number  Your TPDU number
        Unsigned 8-bit integer
    cotp.opts.extended_formats  Extended formats
        Boolean
        Use of extended formats in classes 2, 3, and 4
    cotp.opts.no_explicit_flow_control  No explicit flow control
        Boolean
        No explicit flow control in class 2
    cotp.reassembled.length  Reassembled COTP length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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.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.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
    cotp.type  PDU Type
        Unsigned 8-bit integer
        PDU Type - upper nibble of byte

ISO 8327-1 OSI Session Protocol (ses)

    ses.activity_identifier  Activity Identifier
        Unsigned 32-bit integer
    ses.activity_management  Activity management function unit
        Boolean
    ses.additional_reference_information  Additional Reference Information
        Byte array
    ses.begininng_of_SSDU  beginning of SSDU
        Boolean
    ses.called_session_selector  Called Session Selector
        Byte array
    ses.called_ss_user_reference  Called SS User Reference
        Byte array
    ses.calling_session_selector  Calling Session Selector
        Byte array
    ses.calling_ss_user_reference  Calling SS User Reference
        Byte array
    ses.capability_data  Capability function unit
        Boolean
    ses.common_reference  Common Reference
        Byte array
    ses.connect.f1  Able to receive extended concatenated SPDU
        Boolean
    ses.connect.flags  Flags
        Unsigned 8-bit integer
    ses.data_sep  Data separation function unit
        Boolean
    ses.data_token  data token
        Boolean
        data  token
    ses.data_token_setting  data token setting
        Unsigned 8-bit integer
    ses.duplex  Duplex functional unit
        Boolean
    ses.enclosure.flags  Flags
        Unsigned 8-bit integer
    ses.end_of_SSDU  end of SSDU
        Boolean
    ses.exception_data  Exception function unit
        Boolean
    ses.exception_report.  Session exception report
        Boolean
    ses.expedited_data  Expedited data function unit
        Boolean
    ses.half_duplex  Half-duplex functional unit
        Boolean
    ses.initial_serial_number  Initial Serial Number
        String
    ses.large_initial_serial_number  Large Initial Serial Number
        String
    ses.large_second_initial_serial_number  Large Second Initial Serial Number
        String
    ses.length  Length
        Unsigned 16-bit integer
    ses.major.token  major/activity token
        Boolean
    ses.major_activity_token_setting  major/activity setting
        Unsigned 8-bit integer
        major/activity token setting
    ses.major_resynchronize  Major resynchronize function unit
        Boolean
    ses.minor_resynchronize  Minor resynchronize function unit
        Boolean
    ses.negotiated_release  Negotiated release function unit
        Boolean
    ses.proposed_tsdu_maximum_size_i2r  Proposed TSDU Maximum Size, Initiator to Responder
        Unsigned 16-bit integer
    ses.proposed_tsdu_maximum_size_r2i  Proposed TSDU Maximum Size, Responder to Initiator
        Unsigned 16-bit integer
    ses.protocol_version1  Protocol Version 1
        Boolean
    ses.protocol_version2  Protocol Version 2
        Boolean
    ses.release_token  release token
        Boolean
    ses.release_token_setting  release token setting
        Unsigned 8-bit integer
    ses.req.flags  Flags
        Unsigned 16-bit integer
    ses.reserved  Reserved
        Unsigned 8-bit integer
    ses.resynchronize  Resynchronize function unit
        Boolean
    ses.second_initial_serial_number  Second Initial Serial Number
        String
    ses.second_serial_number  Second Serial Number
        String
    ses.serial_number  Serial Number
        String
    ses.symm_sync  Symmetric synchronize function unit
        Boolean
    ses.synchronize_minor_token_setting  synchronize-minor token setting
        Unsigned 8-bit integer
    ses.synchronize_token  synchronize minor token
        Boolean
    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
    ses.version  Version
        Unsigned 8-bit integer
    ses.version.flags  Flags
        Unsigned 8-bit integer

ISO 8473 CLNP ConnectionLess Network Protocol (clnp)

    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.length  Reassembled CLNP length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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.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.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

ISO 8571 FTAM (ftam)

    ftam.AND_Set  AND-Set
        Unsigned 32-bit integer
    ftam.AND_Set_item  AND-Set item
        Unsigned 32-bit integer
    ftam.Abstract_Syntax_Name  Abstract-Syntax-Name
        Object Identifier
    ftam.Access_Control_Element  Access-Control-Element
        No value
    ftam.Attribute_Extension_Set  Attribute-Extension-Set
        No value
    ftam.Attribute_Extension_Set_Name  Attribute-Extension-Set-Name
        No value
    ftam.Attribute_Extensions_Pattern_item  Attribute-Extensions-Pattern item
        No value
    ftam.Child_Objects_Attribute_item  Child-Objects-Attribute item
        String
        GraphicString
    ftam.Extension_Attribute  Extension-Attribute
        No value
    ftam.Extension_Attribute_identifier  Extension-Attribute-identifier
        Object Identifier
    ftam.Node_Name  Node-Name
        No value
    ftam.Password  Password
        Unsigned 32-bit integer
    ftam.Pathname  Pathname
        Unsigned 32-bit integer
    ftam.Pathname_item  Pathname item
        String
        GraphicString
    ftam.Read_Attributes  Read-Attributes
        No value
    ftam._untag_item  _untag item
        Unsigned 32-bit integer
        Contents_Type_List_item
    ftam.abstract_Syntax_Pattern  abstract-Syntax-Pattern
        No value
        Object_Identifier_Pattern
    ftam.abstract_Syntax_name  abstract-Syntax-name
        Object Identifier
    ftam.abstract_Syntax_not_supported  abstract-Syntax-not-supported
        No value
    ftam.access-class  access-class
        Boolean
    ftam.access_context  access-context
        No value
    ftam.access_control  access-control
        Unsigned 32-bit integer
        Access_Control_Change_Attribute
    ftam.access_passwords  access-passwords
        No value
    ftam.account  account
        String
    ftam.action_list  action-list
        Byte array
        Access_Request
    ftam.action_result  action-result
        Signed 32-bit integer
    ftam.activity_identifier  activity-identifier
        Signed 32-bit integer
    ftam.actual_values  actual-values
        Unsigned 32-bit integer
        SET_OF_Access_Control_Element
    ftam.ae  ae
        Unsigned 32-bit integer
        AE_qualifier
    ftam.any_match  any-match
        No value
    ftam.ap  ap
        Unsigned 32-bit integer
        AP_title
    ftam.attribute_extension_names  attribute-extension-names
        Unsigned 32-bit integer
    ftam.attribute_extensions  attribute-extensions
        Unsigned 32-bit integer
    ftam.attribute_extensions_pattern  attribute-extensions-pattern
        Unsigned 32-bit integer
    ftam.attribute_groups  attribute-groups
        Byte array
    ftam.attribute_names  attribute-names
        Byte array
    ftam.attribute_value_assertions  attribute-value-assertions
        Unsigned 32-bit integer
    ftam.attribute_value_asset_tions  attribute-value-asset-tions
        Unsigned 32-bit integer
        Attribute_Value_Assertions
    ftam.attributes  attributes
        No value
        Select_Attributes
    ftam.begin_end  begin-end
        Signed 32-bit integer
    ftam.boolean_value  boolean-value
        Boolean
        BOOLEAN
    ftam.bulk_Data_PDU  bulk-Data-PDU
        Unsigned 32-bit integer
    ftam.bulk_transfer_number  bulk-transfer-number
        Signed 32-bit integer
        INTEGER
    ftam.change-attribute  change-attribute
        Boolean
    ftam.change_attribute  change-attribute
        Signed 32-bit integer
        Lock
    ftam.change_attribute_password  change-attribute-password
        Unsigned 32-bit integer
        Password
    ftam.charging  charging
        Unsigned 32-bit integer
    ftam.charging_unit  charging-unit
        String
        GraphicString
    ftam.charging_value  charging-value
        Signed 32-bit integer
        INTEGER
    ftam.checkpoint_identifier  checkpoint-identifier
        Signed 32-bit integer
        INTEGER
    ftam.checkpoint_window  checkpoint-window
        Signed 32-bit integer
        INTEGER
    ftam.child_objects  child-objects
        Unsigned 32-bit integer
        Child_Objects_Attribute
    ftam.child_objects_Pattern  child-objects-Pattern
        No value
        Pathname_Pattern
    ftam.complete_pathname  complete-pathname
        Unsigned 32-bit integer
        Pathname
    ftam.concurrency_access  concurrency-access
        No value
    ftam.concurrency_control  concurrency-control
        No value
    ftam.concurrent-access  concurrent-access
        Boolean
    ftam.concurrent_bulk_transfer_number  concurrent-bulk-transfer-number
        Signed 32-bit integer
        INTEGER
    ftam.concurrent_recovery_point  concurrent-recovery-point
        Signed 32-bit integer
        INTEGER
    ftam.consecutive-access  consecutive-access
        Boolean
    ftam.constraint_Set_Pattern  constraint-Set-Pattern
        No value
        Object_Identifier_Pattern
    ftam.constraint_set_abstract_Syntax_Pattern  constraint-set-abstract-Syntax-Pattern
        No value
        T_constraint_set_abstract_Syntax_Pattern
    ftam.constraint_set_and_abstract_Syntax  constraint-set-and-abstract-Syntax
        No value
        T_constraint_set_and_abstract_Syntax
    ftam.constraint_set_name  constraint-set-name
        Object Identifier
    ftam.contents_type  contents-type
        Unsigned 32-bit integer
        T_open_contents_type
    ftam.contents_type_Pattern  contents-type-Pattern
        Unsigned 32-bit integer
    ftam.contents_type_list  contents-type-list
        Unsigned 32-bit integer
    ftam.create_password  create-password
        Unsigned 32-bit integer
        Password
    ftam.date_and_time_of_creation  date-and-time-of-creation
        Unsigned 32-bit integer
        Date_and_Time_Attribute
    ftam.date_and_time_of_creation_Pattern  date-and-time-of-creation-Pattern
        No value
        Date_and_Time_Pattern
    ftam.date_and_time_of_last_attribute_modification  date-and-time-of-last-attribute-modification
        Unsigned 32-bit integer
        Date_and_Time_Attribute
    ftam.date_and_time_of_last_attribute_modification_Pattern  date-and-time-of-last-attribute-modification-Pattern
        No value
        Date_and_Time_Pattern
    ftam.date_and_time_of_last_modification  date-and-time-of-last-modification
        Unsigned 32-bit integer
        Date_and_Time_Attribute
    ftam.date_and_time_of_last_modification_Pattern  date-and-time-of-last-modification-Pattern
        No value
        Date_and_Time_Pattern
    ftam.date_and_time_of_last_read_access  date-and-time-of-last-read-access
        Unsigned 32-bit integer
        Date_and_Time_Attribute
    ftam.date_and_time_of_last_read_access_Pattern  date-and-time-of-last-read-access-Pattern
        No value
        Date_and_Time_Pattern
    ftam.define_contexts  define-contexts
        Unsigned 32-bit integer
        SET_OF_Abstract_Syntax_Name
    ftam.degree_of_overlap  degree-of-overlap
        Signed 32-bit integer
    ftam.delete-Object  delete-Object
        Boolean
    ftam.delete_Object  delete-Object
        Signed 32-bit integer
        Lock
    ftam.delete_password  delete-password
        Unsigned 32-bit integer
        Password
    ftam.delete_values  delete-values
        Unsigned 32-bit integer
        SET_OF_Access_Control_Element
    ftam.destination_file_directory  destination-file-directory
        Unsigned 32-bit integer
    ftam.diagnostic  diagnostic
        Unsigned 32-bit integer
    ftam.diagnostic_type  diagnostic-type
        Signed 32-bit integer
    ftam.document_type  document-type
        No value
        T_document_type
    ftam.document_type_Pattern  document-type-Pattern
        No value
        Object_Identifier_Pattern
    ftam.document_type_name  document-type-name
        Object Identifier
    ftam.enable_fadu_locking  enable-fadu-locking
        Boolean
        BOOLEAN
    ftam.enhanced-file-management  enhanced-file-management
        Boolean
    ftam.enhanced-filestore-management  enhanced-filestore-management
        Boolean
    ftam.equality_comparision  equality-comparision
        Byte array
    ftam.equals-matches  equals-matches
        Boolean
    ftam.erase  erase
        Signed 32-bit integer
        Lock
    ftam.erase_password  erase-password
        Unsigned 32-bit integer
        Password
    ftam.error_Source  error-Source
        Signed 32-bit integer
        Entity_Reference
    ftam.error_action  error-action
        Signed 32-bit integer
    ftam.error_identifier  error-identifier
        Signed 32-bit integer
        INTEGER
    ftam.error_observer  error-observer
        Signed 32-bit integer
        Entity_Reference
    ftam.exclusive  exclusive
        Boolean
    ftam.extend  extend
        Signed 32-bit integer
        Lock
    ftam.extend_password  extend-password
        Unsigned 32-bit integer
        Password
    ftam.extension  extension
        Boolean
    ftam.extension_attribute  extension-attribute
        No value
    ftam.extension_attribute_Pattern  extension-attribute-Pattern
        No value
    ftam.extension_attribute_identifier  extension-attribute-identifier
        Object Identifier
    ftam.extension_attribute_names  extension-attribute-names
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension_Attribute_identifier
    ftam.extension_set_attribute_Patterns  extension-set-attribute-Patterns
        Unsigned 32-bit integer
        T_extension_set_attribute_Patterns
    ftam.extension_set_attribute_Patterns_item  extension-set-attribute-Patterns item
        No value
        T_extension_set_attribute_Patterns_item
    ftam.extension_set_attributes  extension-set-attributes
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension_Attribute
    ftam.extension_set_identifier  extension-set-identifier
        Object Identifier
    ftam.f-erase  f-erase
        Boolean
    ftam.f-extend  f-extend
        Boolean
    ftam.f-insert  f-insert
        Boolean
    ftam.f-read  f-read
        Boolean
    ftam.f-replace  f-replace
        Boolean
    ftam.fSM_PDU  fSM-PDU
        Unsigned 32-bit integer
    ftam.fTAM_Regime_PDU  fTAM-Regime-PDU
        Unsigned 32-bit integer
    ftam.f_Change_Iink_attrib_response  f-Change-Iink-attrib-response
        No value
        F_CHANGE_LINK_ATTRIB_response
    ftam.f_Change_attrib_reques  f-Change-attrib-reques
        No value
        F_CHANGE_ATTRIB_request
    ftam.f_Change_attrib_respon  f-Change-attrib-respon
        No value
        F_CHANGE_ATTRIB_response
    ftam.f_Change_link_attrib_request  f-Change-link-attrib-request
        No value
    ftam.f_Change_prefix_request  f-Change-prefix-request
        No value
    ftam.f_Change_prefix_response  f-Change-prefix-response
        No value
    ftam.f_begin_group_request  f-begin-group-request
        No value
    ftam.f_begin_group_response  f-begin-group-response
        No value
    ftam.f_cancel_request  f-cancel-request
        No value
    ftam.f_cancel_response  f-cancel-response
        No value
    ftam.f_close_request  f-close-request
        No value
    ftam.f_close_response  f-close-response
        No value
    ftam.f_copy_request  f-copy-request
        No value
    ftam.f_copy_response  f-copy-response
        No value
    ftam.f_create_directory_request  f-create-directory-request
        No value
    ftam.f_create_directory_response  f-create-directory-response
        No value
    ftam.f_create_request  f-create-request
        No value
    ftam.f_create_response  f-create-response
        No value
    ftam.f_data_end_request  f-data-end-request
        No value
    ftam.f_delete_request  f-delete-request
        No value
    ftam.f_delete_response  f-delete-response
        No value
    ftam.f_deselect_request  f-deselect-request
        No value
    ftam.f_deselect_response  f-deselect-response
        No value
    ftam.f_end_group_request  f-end-group-request
        No value
    ftam.f_end_group_response  f-end-group-response
        No value
    ftam.f_erase_request  f-erase-request
        No value
    ftam.f_erase_response  f-erase-response
        No value
    ftam.f_group_Change_attrib_request  f-group-Change-attrib-request
        No value
    ftam.f_group_Change_attrib_response  f-group-Change-attrib-response
        No value
    ftam.f_group_copy_request  f-group-copy-request
        No value
    ftam.f_group_copy_response  f-group-copy-response
        No value
    ftam.f_group_delete_request  f-group-delete-request
        No value
    ftam.f_group_delete_response  f-group-delete-response
        No value
    ftam.f_group_list_request  f-group-list-request
        No value
    ftam.f_group_list_response  f-group-list-response
        No value
    ftam.f_group_move_request  f-group-move-request
        No value
    ftam.f_group_move_response  f-group-move-response
        No value
    ftam.f_group_select_request  f-group-select-request
        No value
    ftam.f_group_select_response  f-group-select-response
        No value
    ftam.f_initialize_request  f-initialize-request
        No value
    ftam.f_initialize_response  f-initialize-response
        No value
    ftam.f_link_request  f-link-request
        No value
    ftam.f_link_response  f-link-response
        No value
    ftam.f_list_request  f-list-request
        No value
    ftam.f_list_response  f-list-response
        No value
    ftam.f_locate_request  f-locate-request
        No value
    ftam.f_locate_response  f-locate-response
        No value
    ftam.f_move_request  f-move-request
        No value
    ftam.f_move_response  f-move-response
        No value
    ftam.f_open_request  f-open-request
        No value
    ftam.f_open_response  f-open-response
        No value
    ftam.f_p_abort_request  f-p-abort-request
        No value
    ftam.f_read_attrib_request  f-read-attrib-request
        No value
    ftam.f_read_attrib_response  f-read-attrib-response
        No value
    ftam.f_read_link_attrib_request  f-read-link-attrib-request
        No value
    ftam.f_read_link_attrib_response  f-read-link-attrib-response
        No value
    ftam.f_read_request  f-read-request
        No value
    ftam.f_recover_request  f-recover-request
        No value
    ftam.f_recover_response  f-recover-response
        No value
    ftam.f_restart_request  f-restart-request
        No value
    ftam.f_restart_response  f-restart-response
        No value
    ftam.f_select_another_request  f-select-another-request
        No value
    ftam.f_select_another_response  f-select-another-response
        No value
    ftam.f_select_request  f-select-request
        No value
    ftam.f_select_response  f-select-response
        No value
    ftam.f_terminate_request  f-terminate-request
        No value
    ftam.f_terminate_response  f-terminate-response
        No value
    ftam.f_transfer_end_request  f-transfer-end-request
        No value
    ftam.f_transfer_end_response  f-transfer-end-response
        No value
    ftam.f_u_abort_request  f-u-abort-request
        No value
    ftam.f_unlink_request  f-unlink-request
        No value
    ftam.f_unlink_response  f-unlink-response
        No value
    ftam.f_write_request  f-write-request
        No value
    ftam.fadu-locking  fadu-locking
        Boolean
    ftam.fadu_lock  fadu-lock
        Signed 32-bit integer
    ftam.fadu_number  fadu-number
        Signed 32-bit integer
        INTEGER
    ftam.file-access  file-access
        Boolean
    ftam.file_PDU  file-PDU
        Unsigned 32-bit integer
    ftam.file_access_data_unit_Operation  file-access-data-unit-Operation
        Signed 32-bit integer
        T_file_access_data_unit_Operation
    ftam.file_access_data_unit_identity  file-access-data-unit-identity
        Unsigned 32-bit integer
        FADU_Identity
    ftam.filestore_password  filestore-password
        Unsigned 32-bit integer
        Password
    ftam.first_last  first-last
        Signed 32-bit integer
        T_first_last
    ftam.ftam_quality_of_Service  ftam-quality-of-Service
        Signed 32-bit integer
    ftam.functional_units  functional-units
        Byte array
    ftam.further_details  further-details
        String
        GraphicString
    ftam.future_Object_size  future-Object-size
        Unsigned 32-bit integer
        Object_Size_Attribute
    ftam.future_object_size_Pattern  future-object-size-Pattern
        No value
        Integer_Pattern
    ftam.graphicString  graphicString
        String
    ftam.greater-than-matches  greater-than-matches
        Boolean
    ftam.group-manipulation  group-manipulation
        Boolean
    ftam.grouping  grouping
        Boolean
    ftam.identity  identity
        String
        User_Identity
    ftam.identity_last_attribute_modifier  identity-last-attribute-modifier
        Unsigned 32-bit integer
        User_Identity_Attribute
    ftam.identity_of_creator  identity-of-creator
        Unsigned 32-bit integer
        User_Identity_Attribute
    ftam.identity_of_creator_Pattern  identity-of-creator-Pattern
        No value
        User_Identity_Pattern
    ftam.identity_of_last_attribute_modifier_Pattern  identity-of-last-attribute-modifier-Pattern
        No value
        User_Identity_Pattern
    ftam.identity_of_last_modifier  identity-of-last-modifier
        Unsigned 32-bit integer
        User_Identity_Attribute
    ftam.identity_of_last_modifier_Pattern  identity-of-last-modifier-Pattern
        No value
        User_Identity_Pattern
    ftam.identity_of_last_reader  identity-of-last-reader
        Unsigned 32-bit integer
        User_Identity_Attribute
    ftam.identity_of_last_reader_Pattern  identity-of-last-reader-Pattern
        No value
        User_Identity_Pattern
    ftam.implementation_information  implementation-information
        String
    ftam.incomplete_pathname  incomplete-pathname
        Unsigned 32-bit integer
        Pathname
    ftam.initial_attributes  initial-attributes
        No value
        Create_Attributes
    ftam.initiator_identity  initiator-identity
        String
        User_Identity
    ftam.insert  insert
        Signed 32-bit integer
        Lock
    ftam.insert_password  insert-password
        Unsigned 32-bit integer
        Password
    ftam.insert_values  insert-values
        Unsigned 32-bit integer
        SET_OF_Access_Control_Element
    ftam.integer_value  integer-value
        Signed 32-bit integer
        INTEGER
    ftam.last_member_indicator  last-member-indicator
        Boolean
        BOOLEAN
    ftam.last_transfer_end_read_request  last-transfer-end-read-request
        Signed 32-bit integer
        INTEGER
    ftam.last_transfer_end_read_response  last-transfer-end-read-response
        Signed 32-bit integer
        INTEGER
    ftam.last_transfer_end_write_request  last-transfer-end-write-request
        Signed 32-bit integer
        INTEGER
    ftam.last_transfer_end_write_response  last-transfer-end-write-response
        Signed 32-bit integer
        INTEGER
    ftam.legal_quailfication_Pattern  legal-quailfication-Pattern
        No value
        String_Pattern
    ftam.legal_qualification  legal-qualification
        Unsigned 32-bit integer
        Legal_Qualification_Attribute
    ftam.less-than-matches  less-than-matches
        Boolean
    ftam.level_number  level-number
        Signed 32-bit integer
        INTEGER
    ftam.limited-file-management  limited-file-management
        Boolean
    ftam.limited-filestore-management  limited-filestore-management
        Boolean
    ftam.link  link
        Boolean
    ftam.link_password  link-password
        Unsigned 32-bit integer
        Password
    ftam.linked_Object  linked-Object
        Unsigned 32-bit integer
        Pathname_Attribute
    ftam.linked_Object_Pattern  linked-Object-Pattern
        No value
        Pathname_Pattern
    ftam.location  location
        Unsigned 32-bit integer
        Application_Entity_Title
    ftam.management-class  management-class
        Boolean
    ftam.match_bitstring  match-bitstring
        Byte array
        BIT_STRING
    ftam.maximum_set_size  maximum-set-size
        Signed 32-bit integer
        INTEGER
    ftam.name_list  name-list
        Unsigned 32-bit integer
        SEQUENCE_OF_Node_Name
    ftam.no-access  no-access
        Boolean
    ftam.no-value-available-matches  no-value-available-matches
        Boolean
    ftam.no_value_available  no-value-available
        No value
    ftam.not-required  not-required
        Boolean
    ftam.number_of_characters_match  number-of-characters-match
        Signed 32-bit integer
        INTEGER
    ftam.object-manipulation  object-manipulation
        Boolean
    ftam.object_availabiiity_Pattern  object-availabiiity-Pattern
        No value
        Boolean_Pattern
    ftam.object_availability  object-availability
        Unsigned 32-bit integer
        Object_Availability_Attribute
    ftam.object_identifier_value  object-identifier-value
        Object Identifier
        OBJECT_IDENTIFIER
    ftam.object_size  object-size
        Unsigned 32-bit integer
        Object_Size_Attribute
    ftam.object_size_Pattern  object-size-Pattern
        No value
        Integer_Pattern
    ftam.object_type  object-type
        Signed 32-bit integer
        Object_Type_Attribute
    ftam.object_type_Pattern  object-type-Pattern
        No value
        Integer_Pattern
    ftam.objects_attributes_list  objects-attributes-list
        Unsigned 32-bit integer
    ftam.octetString  octetString
        Byte array
        OCTET_STRING
    ftam.operation_result  operation-result
        Unsigned 32-bit integer
    ftam.override  override
        Signed 32-bit integer
    ftam.parameter  parameter
        No value
    ftam.pass  pass
        Boolean
    ftam.pass_passwords  pass-passwords
        Unsigned 32-bit integer
    ftam.passwords  passwords
        No value
        Access_Passwords
    ftam.path_access_control  path-access-control
        Unsigned 32-bit integer
        Access_Control_Change_Attribute
    ftam.path_access_passwords  path-access-passwords
        Unsigned 32-bit integer
    ftam.pathname  pathname
        Unsigned 32-bit integer
        Pathname_Attribute
    ftam.pathname_Pattern  pathname-Pattern
        No value
    ftam.pathname_value  pathname-value
        Unsigned 32-bit integer
    ftam.pathname_value_item  pathname-value item
        Unsigned 32-bit integer
    ftam.permitted_actions  permitted-actions
        Byte array
        Permitted_Actions_Attribute
    ftam.permitted_actions_Pattern  permitted-actions-Pattern
        No value
        Bitstring_Pattern
    ftam.presentation_action  presentation-action
        Boolean
        BOOLEAN
    ftam.presentation_tontext_management  presentation-tontext-management
        Boolean
        BOOLEAN
    ftam.primaty_pathname  primaty-pathname
        Unsigned 32-bit integer
        Pathname_Attribute
    ftam.primaty_pathname_Pattern  primaty-pathname-Pattern
        No value
        Pathname_Pattern
    ftam.private  private
        Boolean
    ftam.private_use  private-use
        Unsigned 32-bit integer
        Private_Use_Attribute
    ftam.processing_mode  processing-mode
        Byte array
    ftam.proposed  proposed
        Unsigned 32-bit integer
        Contents_Type_Attribute
    ftam.protocol_Version  protocol-Version
        Byte array
    ftam.random-Order  random-Order
        Boolean
    ftam.read  read
        Signed 32-bit integer
        Lock
    ftam.read-Child-objects  read-Child-objects
        Boolean
    ftam.read-Object-availability  read-Object-availability
        Boolean
    ftam.read-Object-size  read-Object-size
        Boolean
    ftam.read-Object-type  read-Object-type
        Boolean
    ftam.read-access-control  read-access-control
        Boolean
    ftam.read-attribute  read-attribute
        Boolean
    ftam.read-contents-type  read-contents-type
        Boolean
    ftam.read-date-and-time-of-creation  read-date-and-time-of-creation
        Boolean
    ftam.read-date-and-time-of-last-attribute-modification  read-date-and-time-of-last-attribute-modification
        Boolean
    ftam.read-date-and-time-of-last-modification  read-date-and-time-of-last-modification
        Boolean
    ftam.read-date-and-time-of-last-read-access  read-date-and-time-of-last-read-access
        Boolean
    ftam.read-future-Object-size  read-future-Object-size
        Boolean
    ftam.read-identity-of-creator  read-identity-of-creator
        Boolean
    ftam.read-identity-of-last-attribute-modifier  read-identity-of-last-attribute-modifier
        Boolean
    ftam.read-identity-of-last-modifier  read-identity-of-last-modifier
        Boolean
    ftam.read-identity-of-last-reader  read-identity-of-last-reader
        Boolean
    ftam.read-l8gal-qualifiCatiOnS  read-l8gal-qualifiCatiOnS
        Boolean
    ftam.read-linked-Object  read-linked-Object
        Boolean
    ftam.read-path-access-control  read-path-access-control
        Boolean
    ftam.read-pathname  read-pathname
        Boolean
    ftam.read-permitted-actions  read-permitted-actions
        Boolean
    ftam.read-primary-pathname  read-primary-pathname
        Boolean
    ftam.read-private-use  read-private-use
        Boolean
    ftam.read-storage-account  read-storage-account
        Boolean
    ftam.read_attribute  read-attribute
        Signed 32-bit integer
        Lock
    ftam.read_attribute_password  read-attribute-password
        Unsigned 32-bit integer
        Password
    ftam.read_password  read-password
        Unsigned 32-bit integer
        Password
    ftam.recovefy_Point  recovefy-Point
        Signed 32-bit integer
        INTEGER
    ftam.recovery  recovery
        Boolean
    ftam.recovery_mode  recovery-mode
        Signed 32-bit integer
        T_request_recovery_mode
    ftam.recovety_Point  recovety-Point
        Signed 32-bit integer
        INTEGER
    ftam.referent_indicator  referent-indicator
        Boolean
    ftam.relational_camparision  relational-camparision
        Byte array
        Equality_Comparision
    ftam.relational_comparision  relational-comparision
        Byte array
    ftam.relative  relative
        Signed 32-bit integer
    ftam.remove_contexts  remove-contexts
        Unsigned 32-bit integer
        SET_OF_Abstract_Syntax_Name
    ftam.replace  replace
        Signed 32-bit integer
        Lock
    ftam.replace_password  replace-password
        Unsigned 32-bit integer
        Password
    ftam.request_Operation_result  request-Operation-result
        Signed 32-bit integer
    ftam.request_type  request-type
        Signed 32-bit integer
    ftam.requested_access  requested-access
        Byte array
        Access_Request
    ftam.reset  reset
        Boolean
        BOOLEAN
    ftam.resource_identifier  resource-identifier
        String
        GraphicString
    ftam.restart-data-transfer  restart-data-transfer
        Boolean
    ftam.retrieval_scope  retrieval-scope
        Signed 32-bit integer
    ftam.reverse-traversal  reverse-traversal
        Boolean
    ftam.root_directory  root-directory
        Unsigned 32-bit integer
        Pathname_Attribute
    ftam.scope  scope
        Unsigned 32-bit integer
    ftam.security  security
        Boolean
    ftam.service_class  service-class
        Byte array
    ftam.shared  shared
        Boolean
    ftam.shared_ASE_infonnation  shared-ASE-infonnation
        No value
        Shared_ASE_Information
    ftam.shared_ASE_information  shared-ASE-information
        No value
    ftam.significance_bitstring  significance-bitstring
        Byte array
        BIT_STRING
    ftam.single_name  single-name
        No value
        Node_Name
    ftam.state_result  state-result
        Signed 32-bit integer
    ftam.storage  storage
        Boolean
    ftam.storage_account  storage-account
        Unsigned 32-bit integer
        Account_Attribute
    ftam.storage_account_Pattern  storage-account-Pattern
        No value
        String_Pattern
    ftam.string_match  string-match
        No value
        String_Pattern
    ftam.string_value  string-value
        Unsigned 32-bit integer
    ftam.string_value_item  string-value item
        Unsigned 32-bit integer
    ftam.substring_match  substring-match
        String
        GraphicString
    ftam.success_Object_count  success-Object-count
        Signed 32-bit integer
        INTEGER
    ftam.success_Object_names  success-Object-names
        Unsigned 32-bit integer
        SEQUENCE_OF_Pathname
    ftam.suggested_delay  suggested-delay
        Signed 32-bit integer
        INTEGER
    ftam.target_Object  target-Object
        Unsigned 32-bit integer
        Pathname_Attribute
    ftam.target_object  target-object
        Unsigned 32-bit integer
        Pathname_Attribute
    ftam.threshold  threshold
        Signed 32-bit integer
        INTEGER
    ftam.time_and_date_value  time-and-date-value
        String
        GeneralizedTime
    ftam.transfer-and-management-class  transfer-and-management-class
        Boolean
    ftam.transfer-class  transfer-class
        Boolean
    ftam.transfer_number  transfer-number
        Signed 32-bit integer
        INTEGER
    ftam.transfer_window  transfer-window
        Signed 32-bit integer
        INTEGER
    ftam.traversal  traversal
        Boolean
    ftam.unconstrained-class  unconstrained-class
        Boolean
    ftam.unknown  unknown
        No value
    ftam.unstructured_binary  ISO FTAM unstructured binary
        Byte array
    ftam.unstructured_text  ISO FTAM unstructured text
        String
    ftam.version-1  version-1
        Boolean
    ftam.version-2  version-2
        Boolean
    ftam.write  write
        Boolean

ISO 8602 CLTP ConnectionLess Transport Protocol (cltp)

    cltp.li  Length
        Unsigned 8-bit integer
        Length Indicator, length of this header
    cltp.type  PDU Type
        Unsigned 8-bit integer

ISO 8650-1 OSI Association Control Service (acse)

    acse.ASOI_tag_item  ASOI-tag item
        No value
    acse.ASO_context_name  ASO-context-name
        Object Identifier
    acse.Context_list_item  Context-list item
        No value
    acse.Default_Context_List_item  Default-Context-List item
        No value
    acse.EXTERNALt  Association-data
        No value
        EXTERNALt
    acse.P_context_result_list_item  P-context-result-list item
        No value
    acse.TransferSyntaxName  TransferSyntaxName
        Object Identifier
    acse.aSO-context-negotiation  aSO-context-negotiation
        Boolean
    acse.aSO_context_name  aSO-context-name
        Object Identifier
        T_AARQ_aSO_context_name
    acse.aSO_context_name_list  aSO-context-name-list
        Unsigned 32-bit integer
    acse.a_user_data  a-user-data
        Unsigned 32-bit integer
        User_Data
    acse.aare  aare
        No value
        AARE_apdu
    acse.aarq  aarq
        No value
        AARQ_apdu
    acse.abort_diagnostic  abort-diagnostic
        Unsigned 32-bit integer
        ABRT_diagnostic
    acse.abort_source  abort-source
        Unsigned 32-bit integer
        ABRT_source
    acse.abrt  abrt
        No value
        ABRT_apdu
    acse.abstract_syntax  abstract-syntax
        Object Identifier
        Abstract_syntax_name
    acse.abstract_syntax_name  abstract-syntax-name
        Object Identifier
    acse.acrp  acrp
        No value
        ACRP_apdu
    acse.acrq  acrq
        No value
        ACRQ_apdu
    acse.acse_service_provider  acse-service-provider
        Unsigned 32-bit integer
    acse.acse_service_user  acse-service-user
        Unsigned 32-bit integer
    acse.adt  adt
        No value
        A_DT_apdu
    acse.ae_title_form1  ae-title-form1
        Unsigned 32-bit integer
    acse.ae_title_form2  ae-title-form2
        Object Identifier
    acse.ap_title_form1  ap-title-form1
        Unsigned 32-bit integer
    acse.ap_title_form2  ap-title-form2
        Object Identifier
    acse.ap_title_form3  ap-title-form3
        String
    acse.arbitrary  arbitrary
        Byte array
        BIT_STRING
    acse.aso_qualifier  aso-qualifier
        Unsigned 32-bit integer
    acse.aso_qualifier_form1  aso-qualifier-form1
        Unsigned 32-bit integer
    acse.aso_qualifier_form2  aso-qualifier-form2
        Signed 32-bit integer
    acse.aso_qualifier_form3  aso-qualifier-form3
        String
    acse.aso_qualifier_form_any_octets  aso-qualifier-form-any-octets
        Byte array
        ASO_qualifier_form_octets
    acse.asoi_identifier  asoi-identifier
        Unsigned 32-bit integer
    acse.authentication  authentication
        Boolean
    acse.bitstring  bitstring
        Byte array
        BIT_STRING
    acse.called_AE_invocation_identifier  called-AE-invocation-identifier
        Signed 32-bit integer
        AE_invocation_identifier
    acse.called_AE_qualifier  called-AE-qualifier
        Unsigned 32-bit integer
        AE_qualifier
    acse.called_AP_invocation_identifier  called-AP-invocation-identifier
        Signed 32-bit integer
        AP_invocation_identifier
    acse.called_AP_title  called-AP-title
        Unsigned 32-bit integer
        AP_title
    acse.called_asoi_tag  called-asoi-tag
        Unsigned 32-bit integer
        ASOI_tag
    acse.calling_AE_invocation_identifier  calling-AE-invocation-identifier
        Signed 32-bit integer
        AE_invocation_identifier
    acse.calling_AE_qualifier  calling-AE-qualifier
        Unsigned 32-bit integer
        AE_qualifier
    acse.calling_AP_invocation_identifier  calling-AP-invocation-identifier
        Signed 32-bit integer
        AP_invocation_identifier
    acse.calling_AP_title  calling-AP-title
        Unsigned 32-bit integer
        AP_title
    acse.calling_asoi_tag  calling-asoi-tag
        Unsigned 32-bit integer
        ASOI_tag
    acse.calling_authentication_value  calling-authentication-value
        Unsigned 32-bit integer
        Authentication_value
    acse.charstring  charstring
        String
        GraphicString
    acse.concrete_syntax_name  concrete-syntax-name
        Object Identifier
    acse.context_list  context-list
        Unsigned 32-bit integer
    acse.data_value_descriptor  data-value-descriptor
        String
        ObjectDescriptor
    acse.default_contact_list  default-contact-list
        Unsigned 32-bit integer
        Default_Context_List
    acse.direct_reference  direct-reference
        Object Identifier
        T_direct_reference
    acse.encoding  encoding
        Unsigned 32-bit integer
    acse.external  external
        No value
        EXTERNALt
    acse.fully_encoded_data  fully-encoded-data
        No value
        PDV_list
    acse.higher-level-association  higher-level-association
        Boolean
    acse.identifier  identifier
        Unsigned 32-bit integer
        ASOI_identifier
    acse.implementation_information  implementation-information
        String
        Implementation_data
    acse.indirect_reference  indirect-reference
        Signed 32-bit integer
        T_indirect_reference
    acse.mechanism_name  mechanism-name
        Object Identifier
    acse.nested-association  nested-association
        Boolean
    acse.octet_aligned  octet-aligned
        Byte array
        T_octet_aligned
    acse.other  other
        No value
        Authentication_value_other
    acse.other_mechanism_name  other-mechanism-name
        Object Identifier
    acse.other_mechanism_value  other-mechanism-value
        No value
    acse.p_context_definition_list  p-context-definition-list
        Unsigned 32-bit integer
        Syntactic_context_list
    acse.p_context_result_list  p-context-result-list
        Unsigned 32-bit integer
    acse.pci  pci
        Signed 32-bit integer
        Presentation_context_identifier
    acse.presentation_context_identifier  presentation-context-identifier
        Signed 32-bit integer
    acse.presentation_data_values  presentation-data-values
        Unsigned 32-bit integer
    acse.protocol_version  protocol-version
        Byte array
        T_AARQ_protocol_version
    acse.provider_reason  provider-reason
        Signed 32-bit integer
    acse.qualifier  qualifier
        Unsigned 32-bit integer
        ASO_qualifier
    acse.reason  reason
        Signed 32-bit integer
        Release_request_reason
    acse.responder_acse_requirements  responder-acse-requirements
        Byte array
        ACSE_requirements
    acse.responding_AE_invocation_identifier  responding-AE-invocation-identifier
        Signed 32-bit integer
        AE_invocation_identifier
    acse.responding_AE_qualifier  responding-AE-qualifier
        Unsigned 32-bit integer
        AE_qualifier
    acse.responding_AP_invocation_identifier  responding-AP-invocation-identifier
        Signed 32-bit integer
        AP_invocation_identifier
    acse.responding_AP_title  responding-AP-title
        Unsigned 32-bit integer
        AP_title
    acse.responding_authentication_value  responding-authentication-value
        Unsigned 32-bit integer
        Authentication_value
    acse.result  result
        Unsigned 32-bit integer
        Associate_result
    acse.result_source_diagnostic  result-source-diagnostic
        Unsigned 32-bit integer
        Associate_source_diagnostic
    acse.rlre  rlre
        No value
        RLRE_apdu
    acse.rlrq  rlrq
        No value
        RLRQ_apdu
    acse.sender_acse_requirements  sender-acse-requirements
        Byte array
        ACSE_requirements
    acse.simple_ASN1_type  simple-ASN1-type
        No value
    acse.simply_encoded_data  simply-encoded-data
        Byte array
    acse.single_ASN1_type  single-ASN1-type
        No value
    acse.transfer_syntax_name  transfer-syntax-name
        Object Identifier
        TransferSyntaxName
    acse.transfer_syntaxes  transfer-syntaxes
        Unsigned 32-bit integer
        SEQUENCE_OF_TransferSyntaxName
    acse.user_information  user-information
        Unsigned 32-bit integer
        Association_data
    acse.version1  version1
        Boolean

ISO 8823 OSI Presentation Protocol (pres)

    pres.Context_list_item  Context-list item
        No value
    pres.PDV_list  PDV-list
        No value
    pres.Presentation_context_deletion_result_list_item  Presentation-context-deletion-result-list item
        Signed 32-bit integer
    pres.Presentation_context_identifier  Presentation-context-identifier
        Signed 32-bit integer
    pres.Presentation_context_identifier_list_item  Presentation-context-identifier-list item
        No value
    pres.Result_list_item  Result-list item
        No value
    pres.Transfer_syntax_name  Transfer-syntax-name
        Object Identifier
    pres.Typed_data_type  Typed data type
        Unsigned 32-bit integer
    pres.UDC_type  UDC-type
        Unsigned 32-bit integer
    pres.UD_type  UD-type
        No value
    pres.aborttype  Abort type
        Unsigned 32-bit integer
    pres.abstract_syntax_name  abstract-syntax-name
        Object Identifier
    pres.acPPDU  acPPDU
        No value
        AC_PPDU
    pres.acaPPDU  acaPPDU
        No value
        ACA_PPDU
    pres.activity-management  activity-management
        Boolean
    pres.arbitrary  arbitrary
        Byte array
        BIT_STRING
    pres.arp_ppdu  arp-ppdu
        No value
    pres.aru_ppdu  aru-ppdu
        Unsigned 32-bit integer
    pres.called_presentation_selector  called-presentation-selector
        Byte array
    pres.calling_presentation_selector  calling-presentation-selector
        Byte array
    pres.capability-data  capability-data
        Boolean
    pres.context-management  context-management
        Boolean
    pres.cpapdu  CPA-PPDU
        No value
    pres.cprtype  CPR-PPDU
        Unsigned 32-bit integer
    pres.cptype  CP-type
        No value
    pres.data-separation  data-separation
        Boolean
    pres.default_context_name  default-context-name
        No value
    pres.default_context_result  default-context-result
        Signed 32-bit integer
    pres.duplex  duplex
        Boolean
    pres.event_identifier  event-identifier
        Signed 32-bit integer
    pres.exceptions  exceptions
        Boolean
    pres.expedited-data  expedited-data
        Boolean
    pres.extensions  extensions
        No value
    pres.fully_encoded_data  fully-encoded-data
        Unsigned 32-bit integer
    pres.half-duplex  half-duplex
        Boolean
    pres.initiators_nominated_context  initiators-nominated-context
        Signed 32-bit integer
        Presentation_context_identifier
    pres.major-synchronize  major-synchronize
        Boolean
    pres.minor-synchronize  minor-synchronize
        Boolean
    pres.mode_selector  mode-selector
        No value
    pres.mode_value  mode-value
        Signed 32-bit integer
    pres.negotiated-release  negotiated-release
        Boolean
    pres.nominated-context  nominated-context
        Boolean
    pres.normal_mode_parameters  normal-mode-parameters
        No value
    pres.octet_aligned  octet-aligned
        Byte array
        T_octet_aligned
    pres.packed-encoding-rules  packed-encoding-rules
        Boolean
    pres.presentation_context_addition_list  presentation-context-addition-list
        Unsigned 32-bit integer
    pres.presentation_context_addition_result_list  presentation-context-addition-result-list
        Unsigned 32-bit integer
    pres.presentation_context_definition_list  presentation-context-definition-list
        Unsigned 32-bit integer
    pres.presentation_context_definition_result_list  presentation-context-definition-result-list
        Unsigned 32-bit integer
    pres.presentation_context_deletion_list  presentation-context-deletion-list
        Unsigned 32-bit integer
    pres.presentation_context_deletion_result_list  presentation-context-deletion-result-list
        Unsigned 32-bit integer
    pres.presentation_context_identifier  presentation-context-identifier
        Signed 32-bit integer
    pres.presentation_context_identifier_list  presentation-context-identifier-list
        Unsigned 32-bit integer
    pres.presentation_data_values  presentation-data-values
        Unsigned 32-bit integer
    pres.presentation_requirements  presentation-requirements
        Byte array
    pres.protocol_options  protocol-options
        Byte array
    pres.protocol_version  protocol-version
        Byte array
    pres.provider_reason  provider-reason
        Signed 32-bit integer
    pres.responders_nominated_context  responders-nominated-context
        Signed 32-bit integer
        Presentation_context_identifier
    pres.responding_presentation_selector  responding-presentation-selector
        Byte array
    pres.restoration  restoration
        Boolean
    pres.result  result
        Signed 32-bit integer
    pres.resynchronize  resynchronize
        Boolean
    pres.short-encoding  short-encoding
        Boolean
    pres.simply_encoded_data  simply-encoded-data
        Byte array
    pres.single_ASN1_type  single-ASN1-type
        No value
    pres.symmetric-synchronize  symmetric-synchronize
        Boolean
    pres.transfer_syntax_name  transfer-syntax-name
        Object Identifier
    pres.transfer_syntax_name_list  transfer-syntax-name-list
        Unsigned 32-bit integer
        SEQUENCE_OF_Transfer_syntax_name
    pres.ttdPPDU  ttdPPDU
        Unsigned 32-bit integer
        User_data
    pres.typed-data  typed-data
        Boolean
    pres.user_data  user-data
        Unsigned 32-bit integer
    pres.user_session_requirements  user-session-requirements
        Byte array
    pres.version-1  version-1
        Boolean
    pres.x400_mode_parameters  x400-mode-parameters
        No value
        RTORJapdu
    pres.x410_mode_parameters  x410-mode-parameters
        No value
        RTORQapdu

ISO 9542 ESIS Routeing Information Exchange Protocol (esis)

    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

ISO 9548-1 OSI Connectionless Session Protocol (clsp)

ISO 9576-1 OSI Connectionless Presentation Protocol (clpres)

ISO/IEC 13818-1 (mp2t)

    mp2t.af  Adaption field
        No value
    mp2t.af.afe_flag  Adaptation Field Extension Flag
        Unsigned 8-bit integer
    mp2t.af.di  Discontinuity Indicator
        Unsigned 8-bit integer
    mp2t.af.e.dnau_14_0  DTS Next AU[14...0]
        Unsigned 16-bit integer
    mp2t.af.e.dnau_29_15  DTS Next AU[29...15]
        Unsigned 16-bit integer
    mp2t.af.e.dnau_32_30  DTS Next AU[32...30]
        Unsigned 8-bit integer
    mp2t.af.e.ltw_flag  LTW Flag
        Unsigned 8-bit integer
    mp2t.af.e.ltwo  LTW Offset
        Unsigned 16-bit integer
    mp2t.af.e.ltwv_flag  LTW Valid Flag
        Unsigned 16-bit integer
    mp2t.af.e.m_1  Marker Bit
        Unsigned 8-bit integer
    mp2t.af.e.m_2  Marker Bit
        Unsigned 16-bit integer
    mp2t.af.e.m_3  Marker Bit
        Unsigned 16-bit integer
    mp2t.af.e.pr  Piecewise Rate
        Unsigned 24-bit integer
    mp2t.af.e.pr_flag  Piecewise Rate Flag
        Unsigned 8-bit integer
    mp2t.af.e.pr_reserved  Reserved
        Unsigned 24-bit integer
    mp2t.af.e.reserved  Reserved
        Unsigned 8-bit integer
    mp2t.af.e.reserved_bytes  Reserved
        Byte array
    mp2t.af.e.ss_flag  Seamless Splice Flag
        Unsigned 8-bit integer
    mp2t.af.e.st  Splice Type
        Unsigned 8-bit integer
    mp2t.af.e_length  Adaptation Field Extension Length
        Unsigned 8-bit integer
    mp2t.af.espi  Elementary Stream Priority Indicator
        Unsigned 8-bit integer
    mp2t.af.length  Adaptation Field Length
        Unsigned 8-bit integer
    mp2t.af.opcr  Original Program Clock Reference
        No value
    mp2t.af.opcr_flag  OPCR Flag
        Unsigned 8-bit integer
    mp2t.af.pcr  Program Clock Reference
        No value
    mp2t.af.pcr_flag  PCR Flag
        Unsigned 8-bit integer
    mp2t.af.rai  Random Access Indicator
        Unsigned 8-bit integer
    mp2t.af.sc  Splice Countdown
        Unsigned 8-bit integer
    mp2t.af.sp_flag  Splicing Point Flag
        Unsigned 8-bit integer
    mp2t.af.stuffing_bytes  Stuffing
        Byte array
    mp2t.af.tpd  Transport Private Data
        Byte array
    mp2t.af.tpd_flag  Transport Private Data Flag
        Unsigned 8-bit integer
    mp2t.af.tpd_length  Transport Private Data Length
        Unsigned 8-bit integer
    mp2t.afc  Adaption Field Control
        Unsigned 32-bit integer
    mp2t.analysis.drops  Some frames dropped
        Unsigned 8-bit integer
        Discontinuity: A number of TS frames were dropped
    mp2t.analysis.flags  MPEG2-TS Analysis Flags
        No value
        This frame has some of the MPEG2 analysis flags set
    mp2t.analysis.skips  TS Continuity Counter Skips
        Unsigned 8-bit integer
        Missing TS frames accoding to CC counter values
    mp2t.cc  Continuity Counter
        Unsigned 32-bit integer
    mp2t.cc.drop  Continuity Counter Drops
        No value
    mp2t.depi_msg.fragment  Message fragment
        Frame number
    mp2t.depi_msg.fragment.error  Message defragmentation error
        Frame number
    mp2t.depi_msg.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    mp2t.depi_msg.fragment.overlap  Message fragment overlap
        Boolean
    mp2t.depi_msg.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    mp2t.depi_msg.fragment.too_long_fragment  Message fragment too long
        Boolean
    mp2t.depi_msg.fragments  Message fragments
        No value
    mp2t.depi_msg.reassembled.in  Reassembled in
        Frame number
    mp2t.depi_msg.reassembled.length  Reassembled MP2T length
        Unsigned 32-bit integer
    mp2t.header  Header
        Unsigned 32-bit integer
    mp2t.malformed_payload  Malformed Payload
        Byte array
    mp2t.payload  Payload
        Byte array
    mp2t.pid  PID
        Unsigned 32-bit integer
    mp2t.pusi  Payload Unit Start Indicator
        Unsigned 32-bit integer
    mp2t.sync_byte  Sync Byte
        Unsigned 32-bit integer
    mp2t.tei  Transport Error Indicator
        Unsigned 32-bit integer
    mp2t.tp  Transport Priority
        Unsigned 32-bit integer
    mp2t.tsc  Transport Scrambling Control
        Unsigned 32-bit integer

ISystemActivator ISystemActivator Resolver (isystemactivator)

    isystemactivator.opnum  Operation
        Unsigned 16-bit integer
    isystemactivator.unknown  IUnknown
        No value

ITU M.3100 Generic Network Information Model (gnm)

    gnm.AcceptableCircuitPackTypeList  AcceptableCircuitPackTypeList
        Unsigned 32-bit integer
    gnm.AcceptableCircuitPackTypeList_item  AcceptableCircuitPackTypeList item
        String
        PrintableString
    gnm.AlarmSeverityAssignment  AlarmSeverityAssignment
        No value
    gnm.AlarmSeverityAssignmentList  AlarmSeverityAssignmentList
        Unsigned 32-bit integer
    gnm.AlarmStatus  AlarmStatus
        Unsigned 32-bit integer
    gnm.Boolean  Boolean
        Boolean
    gnm.Bundle  Bundle
        No value
    gnm.ChannelNumber  ChannelNumber
        Signed 32-bit integer
    gnm.CharacteristicInformation  CharacteristicInformation
        Object Identifier
    gnm.CircuitDirectionality  CircuitDirectionality
        Unsigned 32-bit integer
    gnm.CircuitPackType  CircuitPackType
        String
    gnm.ConnectInformation  ConnectInformation
        Unsigned 32-bit integer
    gnm.ConnectInformation_item  ConnectInformation item
        No value
    gnm.ConnectivityPointer  ConnectivityPointer
        Unsigned 32-bit integer
    gnm.Count  Count
        Signed 32-bit integer
    gnm.CrossConnectionName  CrossConnectionName
        String
    gnm.CrossConnectionObjectPointer  CrossConnectionObjectPointer
        Unsigned 32-bit integer
    gnm.CurrentProblem  CurrentProblem
        No value
    gnm.CurrentProblemList  CurrentProblemList
        Unsigned 32-bit integer
    gnm.Directionality  Directionality
        Unsigned 32-bit integer
    gnm.DisconnectResult  DisconnectResult
        Unsigned 32-bit integer
    gnm.DisconnectResult_item  DisconnectResult item
        Unsigned 32-bit integer
    gnm.DownstreamConnectivityPointer  DownstreamConnectivityPointer
        Unsigned 32-bit integer
    gnm.EquipmentHolderAddress  EquipmentHolderAddress
        Unsigned 32-bit integer
    gnm.EquipmentHolderAddress_item  EquipmentHolderAddress item
        String
        PrintableString
    gnm.EquipmentHolderType  EquipmentHolderType
        String
    gnm.ExplicitTP  ExplicitTP
        Unsigned 32-bit integer
    gnm.ExternalTime  ExternalTime
        String
    gnm.HolderStatus  HolderStatus
        Unsigned 32-bit integer
    gnm.InformationTransferCapabilities  InformationTransferCapabilities
        Unsigned 32-bit integer
    gnm.ListOfCharacteristicInformation  ListOfCharacteristicInformation
        Unsigned 32-bit integer
    gnm.MultipleConnections_item  MultipleConnections item
        Unsigned 32-bit integer
    gnm.NameType  NameType
        Unsigned 32-bit integer
    gnm.NumberOfCircuits  NumberOfCircuits
        Signed 32-bit integer
    gnm.ObjectClass  ObjectClass
        Unsigned 32-bit integer
    gnm.ObjectInstance  ObjectInstance
        Unsigned 32-bit integer
    gnm.ObjectList  ObjectList
        Unsigned 32-bit integer
    gnm.PayloadLevel  PayloadLevel
        Object Identifier
    gnm.Pointer  Pointer
        Unsigned 32-bit integer
    gnm.PointerOrNull  PointerOrNull
        Unsigned 32-bit integer
    gnm.RelatedObjectInstance  RelatedObjectInstance
        Unsigned 32-bit integer
    gnm.Replaceable  Replaceable
        Unsigned 32-bit integer
    gnm.SequenceOfObjectInstance  SequenceOfObjectInstance
        Unsigned 32-bit integer
    gnm.SerialNumber  SerialNumber
        String
    gnm.SignalRateAndMappingList_item  SignalRateAndMappingList item
        No value
    gnm.SignalType  SignalType
        Unsigned 32-bit integer
    gnm.SignallingCapabilities  SignallingCapabilities
        Unsigned 32-bit integer
    gnm.SubordinateCircuitPackSoftwareLoad  SubordinateCircuitPackSoftwareLoad
        Unsigned 32-bit integer
    gnm.SupportableClientList  SupportableClientList
        Unsigned 32-bit integer
    gnm.SupportedTOClasses  SupportedTOClasses
        Unsigned 32-bit integer
    gnm.SupportedTOClasses_item  SupportedTOClasses item
        Object Identifier
        OBJECT_IDENTIFIER
    gnm.SystemTimingSource  SystemTimingSource
        No value
    gnm.ToTPPools_item  ToTPPools item
        No value
    gnm.ToTermSpecifier  ToTermSpecifier
        Unsigned 32-bit integer
    gnm.TpsInGtpList  TpsInGtpList
        Unsigned 32-bit integer
    gnm.TransmissionCharacteristics  TransmissionCharacteristics
        Byte array
    gnm.UserLabel  UserLabel
        String
    gnm.VendorName  VendorName
        String
    gnm.Version  Version
        String
    gnm.additionalInfo  additionalInfo
        Unsigned 32-bit integer
        AdditionalInformation
    gnm.addleg  addleg
        No value
    gnm.administrativeState  administrativeState
        Unsigned 32-bit integer
    gnm.alarmStatus  alarmStatus
        Unsigned 32-bit integer
    gnm.bidirectional  bidirectional
        Unsigned 32-bit integer
        ConnectionTypeBi
    gnm.broadcast  broadcast
        Unsigned 32-bit integer
        SET_OF_ObjectInstance
    gnm.broadcastConcatenated  broadcastConcatenated
        Unsigned 32-bit integer
    gnm.broadcastConcatenated_item  broadcastConcatenated item
        Unsigned 32-bit integer
        SEQUENCE_OF_ObjectInstance
    gnm.bundle  bundle
        No value
    gnm.bundlingFactor  bundlingFactor
        Signed 32-bit integer
        INTEGER
    gnm.characteristicInfoType  characteristicInfoType
        Object Identifier
        CharacteristicInformation
    gnm.characteristicInformation  characteristicInformation
        Object Identifier
    gnm.complex  complex
        Unsigned 32-bit integer
        SEQUENCE_OF_Bundle
    gnm.concatenated  concatenated
        Unsigned 32-bit integer
        SEQUENCE_OF_ObjectInstance
    gnm.connected  connected
        Unsigned 32-bit integer
        ObjectInstance
    gnm.dCME  dCME
        Boolean
    gnm.disconnected  disconnected
        Unsigned 32-bit integer
        ObjectInstance
    gnm.diverse  diverse
        No value
    gnm.downstream  downstream
        Unsigned 32-bit integer
        SignalRateAndMappingList
    gnm.downstreamConnected  downstreamConnected
        Unsigned 32-bit integer
        ObjectInstance
    gnm.downstreamNotConnected  downstreamNotConnected
        Unsigned 32-bit integer
        ObjectInstance
    gnm.echoControl  echoControl
        Boolean
    gnm.explicitPToP  explicitPToP
        No value
    gnm.explicitPtoMP  explicitPtoMP
        No value
    gnm.failed  failed
        Unsigned 32-bit integer
    gnm.fromTp  fromTp
        Unsigned 32-bit integer
        ExplicitTP
    gnm.holderEmpty  holderEmpty
        No value
    gnm.inTheAcceptableList  inTheAcceptableList
        String
        CircuitPackType
    gnm.incorrectInstances  incorrectInstances
        Unsigned 32-bit integer
        SET_OF_ObjectInstance
    gnm.integerValue  integerValue
        Signed 32-bit integer
        INTEGER
    gnm.itemType  itemType
        Unsigned 32-bit integer
    gnm.legs  legs
        Unsigned 32-bit integer
        SET_OF_ToTermSpecifier
    gnm.listofTPs  listofTPs
        Unsigned 32-bit integer
        SEQUENCE_OF_ObjectInstance
    gnm.logicalProblem  logicalProblem
        No value
    gnm.mappingList  mappingList
        Unsigned 32-bit integer
    gnm.mpCrossConnection  mpCrossConnection
        Unsigned 32-bit integer
        ObjectInstance
    gnm.mpXCon  mpXCon
        Unsigned 32-bit integer
        ObjectInstance
    gnm.multipleConnections  multipleConnections
        Unsigned 32-bit integer
    gnm.name  name
        String
        CrossConnectionName
    gnm.namedCrossConnection  namedCrossConnection
        No value
    gnm.none  none
        No value
    gnm.notApplicable  notApplicable
        No value
    gnm.notAvailable  notAvailable
        No value
    gnm.notConnected  notConnected
        Unsigned 32-bit integer
        ObjectInstance
    gnm.notInTheAcceptableList  notInTheAcceptableList
        String
        CircuitPackType
    gnm.null  null
        No value
    gnm.numberOfTPs  numberOfTPs
        Signed 32-bit integer
        INTEGER
    gnm.numericName  numericName
        Signed 32-bit integer
        INTEGER
    gnm.objectClass  objectClass
        Object Identifier
        OBJECT_IDENTIFIER
    gnm.oneTPorGTP  oneTPorGTP
        Unsigned 32-bit integer
        ObjectInstance
    gnm.pString  pString
        String
        GraphicString
    gnm.pointToMultipoint  pointToMultipoint
        No value
    gnm.pointToPoint  pointToPoint
        No value
    gnm.pointer  pointer
        Unsigned 32-bit integer
        ObjectInstance
    gnm.primaryTimingSource  primaryTimingSource
        No value
        SystemTiming
    gnm.problem  problem
        Unsigned 32-bit integer
        ProbableCause
    gnm.problemCause  problemCause
        Unsigned 32-bit integer
    gnm.ptoMPools  ptoMPools
        No value
    gnm.ptoTpPool  ptoTpPool
        No value
    gnm.redline  redline
        Boolean
        Boolean
    gnm.relatedObject  relatedObject
        Unsigned 32-bit integer
        ObjectInstance
    gnm.resourceProblem  resourceProblem
        Unsigned 32-bit integer
    gnm.satellite  satellite
        Boolean
    gnm.secondaryTimingSource  secondaryTimingSource
        No value
        SystemTiming
    gnm.severityAssignedNonServiceAffecting  severityAssignedNonServiceAffecting
        Unsigned 32-bit integer
        AlarmSeverityCode
    gnm.severityAssignedServiceAffecting  severityAssignedServiceAffecting
        Unsigned 32-bit integer
        AlarmSeverityCode
    gnm.severityAssignedServiceIndependent  severityAssignedServiceIndependent
        Unsigned 32-bit integer
        AlarmSeverityCode
    gnm.signalRate  signalRate
        Unsigned 32-bit integer
    gnm.simple  simple
        Object Identifier
        CharacteristicInformation
    gnm.single  single
        Unsigned 32-bit integer
        ObjectInstance
    gnm.softwareIdentifiers  softwareIdentifiers
        Unsigned 32-bit integer
    gnm.softwareIdentifiers_item  softwareIdentifiers item
        String
        PrintableString
    gnm.softwareInstances  softwareInstances
        Unsigned 32-bit integer
        SEQUENCE_OF_ObjectInstance
    gnm.sourceID  sourceID
        Unsigned 32-bit integer
        ObjectInstance
    gnm.sourceType  sourceType
        Unsigned 32-bit integer
    gnm.toPool  toPool
        Unsigned 32-bit integer
        ObjectInstance
    gnm.toTPPools  toTPPools
        Unsigned 32-bit integer
    gnm.toTPs  toTPs
        Unsigned 32-bit integer
        SET_OF_ExplicitTP
    gnm.toTp  toTp
        Unsigned 32-bit integer
        ExplicitTP
    gnm.toTpOrGTP  toTpOrGTP
        Unsigned 32-bit integer
        ExplicitTP
    gnm.toTpPool  toTpPool
        Unsigned 32-bit integer
        ObjectInstance
    gnm.toTps  toTps
        Unsigned 32-bit integer
    gnm.toTps_item  toTps item
        No value
    gnm.tp  tp
        Unsigned 32-bit integer
        ObjectInstance
    gnm.tpPoolId  tpPoolId
        Unsigned 32-bit integer
        ObjectInstance
    gnm.unidirectional  unidirectional
        Unsigned 32-bit integer
        ConnectionType
    gnm.uniform  uniform
        Unsigned 32-bit integer
        SignalRateAndMappingList
    gnm.unknown  unknown
        No value
    gnm.unknownType  unknownType
        No value
    gnm.upStream  upStream
        Unsigned 32-bit integer
        SignalRateAndMappingList
    gnm.upstreamConnected  upstreamConnected
        Unsigned 32-bit integer
        ObjectInstance
    gnm.upstreamNotConnected  upstreamNotConnected
        Unsigned 32-bit integer
        ObjectInstance
    gnm.userLabel  userLabel
        String
    gnm.wavelength  wavelength
        Signed 32-bit integer
    gnm.xCon  xCon
        Unsigned 32-bit integer
        ObjectInstance
    gnm.xConnection  xConnection
        Unsigned 32-bit integer
        ObjectInstance

ITU-T E.164 number (e164)

    e164.called_party_number.digits  E.164 Called party number digits
        String
    e164.calling_party_number.digits  E.164 Calling party number digits
        String

ITU-T E.212 number (e212)

    e212.mcc  Mobile Country Code (MCC)
        Unsigned 16-bit integer
        Mobile Country Code MCC
    e212.mnc  Mobile network code (MNC)
        Unsigned 16-bit integer
        Mobile network code
    e212.msin  Mobile Subscriber Identification Number (MSIN)
        String
        Mobile Subscriber Identification Number(MSIN)

ITU-T Q.708 ISPC Analysis (q708)

    q708.ispc_name  Unique Signalling Point Name
        String
    q708.ispc_operator_name  Signalling Point Operator Name
        String
    q708.sanc  Signalling Area Network Code (SANC)
        Unsigned 16-bit integer

ITU-T Rec X.224 (x224)

    x224.class  Class
        Unsigned 8-bit integer
    x224.code  Code
        Unsigned 8-bit integer
    x224.dst_ref  DST-REF
        Unsigned 16-bit integer
    x224.eot  EOT
        Boolean
    x224.length  Length
        Unsigned 8-bit integer
    x224.nr  NR
        Unsigned 8-bit integer
    x224.rdp_rt  RDP Routing Token
        String
        Used for Remote Desktop Protocol (RDP) load balancing
    x224.src_ref  SRC-REF
        Unsigned 16-bit integer

ITU-T Recommendation H.223 (h223)

    h223.al.fragment  H.223 AL-PDU Fragment
        Frame number
    h223.al.fragment.error  Defragmentation error
        Frame number
        Defragmentation error due to illegal fragments
    h223.al.fragment.multipletails  Multiple tail fragments found
        Boolean
        Several tails were found when defragmenting the packet
    h223.al.fragment.overlap  Fragment overlap
        Boolean
        Fragment overlaps with other fragments
    h223.al.fragment.overlap.conflict  Conflicting data in fragment overlap
        Boolean
        Overlapping fragments contained conflicting data
    h223.al.fragment.toolongfragment  Fragment too long
        Boolean
        Fragment contained data past end of packet
    h223.al.fragments  H.223 AL-PDU Fragments
        No value
    h223.al.payload  H.223 AL Payload
        No value
        H.223 AL-PDU Payload
    h223.al.reassembled.length  Reassembled H.223 AL-PDU length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    h223.al.reassembled_in  AL-PDU fragment, reassembled in frame
        Frame number
        This H.223 AL-PDU packet is reassembled in this frame
    h223.al1  H.223 AL1
        No value
        H.223 AL-PDU using AL1
    h223.al1.framed  H.223 AL1 framing
        Boolean
    h223.al2  H.223 AL2
        Boolean
        H.223 AL-PDU using AL2
    h223.al2.crc  CRC
        Unsigned 8-bit integer
    h223.al2.crc_bad  Bad CRC
        Boolean
    h223.al2.seqno  Sequence Number
        Unsigned 8-bit integer
        H.223 AL2 sequence number
    h223.mux  H.223 MUX-PDU
        No value
    h223.mux.correctedhdr  Corrected value
        Unsigned 24-bit integer
        Corrected header bytes
    h223.mux.deactivated  Deactivated multiplex table entry
        No value
        mpl refers to an entry in the multiplex table which is not active
    h223.mux.extra  Extraneous data
        No value
        data beyond mpl
    h223.mux.fragment  H.223 MUX-PDU Fragment
        Frame number
    h223.mux.fragment.error  Defragmentation error
        Frame number
        Defragmentation error due to illegal fragments
    h223.mux.fragment.multipletails  Multiple tail fragments found
        Boolean
        Several tails were found when defragmenting the packet
    h223.mux.fragment.overlap  Fragment overlap
        Boolean
        Fragment overlaps with other fragments
    h223.mux.fragment.overlap.conflict  Conflicting data in fragment overlap
        Boolean
        Overlapping fragments contained conflicting data
    h223.mux.fragment.toolongfragment  Fragment too long
        Boolean
        Fragment contained data past end of packet
    h223.mux.fragments  H.223 MUX-PDU Fragments
        No value
    h223.mux.hdlc  HDLC flag
        Unsigned 16-bit integer
        framing flag
    h223.mux.header  Header
        No value
        H.223 MUX header
    h223.mux.mc  Multiplex Code
        Unsigned 8-bit integer
        H.223 MUX multiplex code
    h223.mux.mpl  Multiplex Payload Length
        Unsigned 8-bit integer
        H.223 MUX multiplex Payload Length
    h223.mux.rawhdr  Raw value
        Unsigned 24-bit integer
        Raw header bytes
    h223.mux.reassembled.length  Reassembled H.223 MUX-PDU length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    h223.mux.reassembled_in  MUX-PDU fragment, reassembled in frame
        Frame number
        This H.223 MUX-PDU packet is reassembled in this frame
    h223.mux.stuffing  H.223 stuffing PDU
        No value
        Empty PDU used for stuffing when no data available
    h223.mux.vc  H.223 virtual circuit
        Unsigned 16-bit integer
        H.223 Virtual Circuit
    h223.non-h223  Non-H.223 data
        No value
        Initial data in stream, not a PDU
    h223.sequenced_al2  H.223 sequenced AL2
        No value
        H.223 AL-PDU using AL2 with sequence numbers
    h223.unsequenced_al2  H.223 unsequenced AL2
        No value
        H.223 AL-PDU using AL2 without sequence numbers

ITU-T Recommendation H.261 (h261)

    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

ITU-T Recommendation H.263 (h263)

    h263.PB_frames_mode  H.263 Optional PB-frames mode
        Boolean
        Optional PB-frames mode
    h263.cpm  H.263 Continuous Presence Multipoint and Video Multiplex (CPM)
        Boolean
        Continuous Presence Multipoint and Video Multiplex (CPM)
    h263.custom_pcf  H.263 Custom PCF
        Boolean
        Custom PCF
    h263.document_camera_indicator  H.263 Document camera indicator
        Boolean
        Document camera indicator
    h263.ext_source_format  H.263 Source Format
        Unsigned 8-bit integer
        Source Format
    h263.gbsc  H.263 Group of Block Start Code
        Unsigned 32-bit integer
        Group of Block Start Code
    h263.gn  H.263 Group Number
        Unsigned 32-bit integer
        Group Number, GN
    h263.not_dis  H.263 Bits currently not dissected
        Unsigned 32-bit integer
        These bits are not dissected(yet), displayed for clarity
    h263.opptype  H.263 Optional Part of PLUSPTYPE
        Unsigned 24-bit integer
        Optional Part of PLUSPTYPE
    h263.opt_unres_motion_vector_mode  H.263 Optional Unrestricted Motion Vector mode
        Boolean
        Optional Unrestricted Motion Vector mode
    h263.optional_advanced_prediction_mode  H.263 Optional Advanced Prediction mode
        Boolean
        Optional Advanced Prediction mode
    h263.pei  H.263 Extra Insertion Information (PEI)
        Boolean
        Extra Insertion Information (PEI)
    h263.picture_coding_type  H.263 Picture Coding Type
        Boolean
        Picture Coding Type
    h263.pquant  H.263 Quantizer Information (PQUANT)
        Unsigned 32-bit integer
        Quantizer Information (PQUANT)
    h263.psbi  H.263 Picture Sub-Bitstream Indicator (PSBI)
        Unsigned 32-bit integer
        Picture Sub-Bitstream Indicator (PSBI)
    h263.psc  H.263 Picture start Code
        Unsigned 32-bit integer
        Picture start Code, PSC
    h263.psi  H.263 Picture Type Code
        Unsigned 32-bit integer
        Picture Type Code
    h263.psupp  H.263 Supplemental Enhancement Information (PSUPP)
        Unsigned 32-bit integer
        Supplemental Enhancement Information (PSUPP)
    h263.source_format  H.263 Source Format
        Unsigned 8-bit integer
        Source Format
    h263.split_screen_indicator  H.263 Split screen indicator
        Boolean
        Split screen indicator
    h263.stream  H.263 stream
        Byte array
        The H.263 stream including its Picture, GOB or Macro block start code.
    h263.syntax_based_arithmetic_coding_mode  H.263 Optional Syntax-based Arithmetic Coding mode
        Boolean
        Optional Syntax-based Arithmetic Coding mode
    h263.tr2  H.263 Temporal Reference
        Unsigned 32-bit integer
        Temporal Reference, TR
    h263.trb  Temporal Reference for B frames
        Unsigned 8-bit integer
        Temporal Reference for the B frame as defined by H.263
    h263.ufep  H.263 Update Full Extended PTYPE
        Unsigned 16-bit integer
        Update Full Extended PTYPE

ITU-T Recommendation H.263 RTP Payload header (RFC4629) (h263p)

    h263P.PSC  H.263 PSC
        Unsigned 16-bit integer
        Picture Start Code(PSC)
    h263P.extra_hdr  Extra picture header
        Byte array
    h263P.p  P
        Boolean
        Indicates (GOB/Slice) start or (EOS or EOSBS)
    h263P.payload  H.263 RFC4629 payload
        No value
        The actual H.263 RFC4629 data
    h263P.pebit  PEBIT
        Unsigned 16-bit integer
        number of bits that shall be ignored in the last byte of the picture header
    h263P.plen  PLEN
        Unsigned 16-bit integer
        Length, in bytes, of the extra picture header
    h263P.rr  Reserved
        Unsigned 16-bit integer
        Reserved SHALL be zero
    h263P.s  S
        Unsigned 8-bit integer
        Indicates that the packet content is for a sync frame
    h263P.tid  Thread ID
        Unsigned 8-bit integer
    h263P.tr  H.263 Temporal Reference
        Unsigned 16-bit integer
        Temporal Reference, TR
    h263P.trun  Trun
        Unsigned 8-bit integer
        Monotonically increasing (modulo 16) 4-bit number counting the packet number within each thread
    h263P.v  V
        Boolean
        presence of Video Redundancy Coding (VRC) field

InMon sFlow (sflow)

    sflow_245.agent  Agent address
        IPv4 address
        sFlow Agent IP address
    sflow_245.agent.v6  Agent address
        IPv6 address
        sFlow Agent IPv6 address
    sflow_245.as  AS Router
        Unsigned 32-bit integer
        Autonomous System of Router
    sflow_245.broadcastPkts  Broadcast Packets
        Unsigned 32-bit integer
        Broadcast Packets
    sflow_245.community  Gateway Community
        Unsigned 32-bit integer
        Gateway Communities
    sflow_245.communityEntries  Gateway Communities
        Unsigned 32-bit integer
        Gateway Communities
    sflow_245.counters_record_format  Format
        Unsigned 32-bit integer
        Format of sFlow counters record
    sflow_245.discards  Discards
        Unsigned 32-bit integer
        Discards
    sflow_245.dot12HCInHighPriorityOctets  HC In High Priority Octets
        Unsigned 64-bit integer
        dot12 HC Input High Priority Octets
    sflow_245.dot12HCInNormPriorityOctets  HC In Normal Priority Octets
        Unsigned 64-bit integer
        dot12 HC Input Normal Priority Octets
    sflow_245.dot12HCOutHighPriorityOctets  HC Out High Priority Octets
        Unsigned 64-bit integer
        dot12 HC Output High Priority Octets
    sflow_245.dot12InDataErrors  In Data Errors
        Unsigned 32-bit integer
        dot12 Input Data Errors
    sflow_245.dot12InHighPriorityFrames  In High Priority Frames
        Unsigned 32-bit integer
        dot12 Input High Priority Frames
    sflow_245.dot12InHighPriorityOctets  In High Priority Octets
        Unsigned 64-bit integer
        dot12 Input High Priority Octets
    sflow_245.dot12InIPMErrors  In IPM Errors
        Unsigned 32-bit integer
        dot12 Input IPM Errors
    sflow_245.dot12InNormPriorityFrames  In Normal Priority Frames
        Unsigned 32-bit integer
        dot12 Input Normal Priority Frames
    sflow_245.dot12InNormPriorityOctets  In Normal Priority Octets
        Unsigned 64-bit integer
        dot12 Input Normal Priority Octets
    sflow_245.dot12InNullAddressedFrames  In Null Addressed Frames
        Unsigned 32-bit integer
        dot12 Input Null Addressed Frames
    sflow_245.dot12InOversizeFrameErrors  In Oversize Frame Errors
        Unsigned 32-bit integer
        dot12 Input Oversize Frame Errors
    sflow_245.dot12OutHighPriorityFrames  Out High Priority Frames
        Unsigned 32-bit integer
        dot12 Output High Priority Frames
    sflow_245.dot12OutHighPriorityOctets  Out High Priority Octets
        Unsigned 64-bit integer
        dot12 Out High Priority Octets
    sflow_245.dot12TransitionIntoTrainings  Transition Into Trainings
        Unsigned 32-bit integer
        dot12 Transition Into Trainings
    sflow_245.dot3StatsAlignmentErrors  Alignment Errors
        Unsigned 32-bit integer
        dot3 Stats Alignment Errors
    sflow_245.dot3StatsCarrierSenseErrors  Carrier Sense Errors
        Unsigned 32-bit integer
        dot3 Stats Carrier Sense Errors
    sflow_245.dot3StatsDeferredTransmissions  Deferred Transmissions
        Unsigned 32-bit integer
        dot3 Stats Deferred Transmissions
    sflow_245.dot3StatsExcessiveCollisions  Excessive Collisions
        Unsigned 32-bit integer
        dot3 Stats Excessive Collisions
    sflow_245.dot3StatsFCSErrors  FCS Errors
        Unsigned 32-bit integer
        dot3 Stats FCS Errors
    sflow_245.dot3StatsFrameTooLongs  Frame Too Longs
        Unsigned 32-bit integer
        dot3 Stats Frame Too Longs
    sflow_245.dot3StatsInternalMacReceiveErrors  Internal Mac Receive Errors
        Unsigned 32-bit integer
        dot3 Stats Internal Mac Receive Errors
    sflow_245.dot3StatsInternalMacTransmitErrors  Internal Mac Transmit Errors
        Unsigned 32-bit integer
        dot3 Stats Internal Mac Transmit Errors
    sflow_245.dot3StatsLateCollisions  Late Collisions
        Unsigned 32-bit integer
        dot3 Stats Late Collisions
    sflow_245.dot3StatsMultipleCollisionFrames  Multiple Collision Frames
        Unsigned 32-bit integer
        dot3 Stats Multiple Collision Frames
    sflow_245.dot3StatsSQETestErrors  SQE Test Errors
        Unsigned 32-bit integer
        dot3 Stats SQE Test Errors
    sflow_245.dot3StatsSingleCollisionFrames  Single Collision Frames
        Unsigned 32-bit integer
        dot3 Stats Single Collision Frames
    sflow_245.dot3StatsSymbolErrors  Symbol Errors
        Unsigned 32-bit integer
        dot3 Stats Symbol Errors
    sflow_245.dot5StatsACErrors  AC Errors
        Unsigned 32-bit integer
        dot5 Stats AC Errors
    sflow_245.dot5StatsAbortTransErrors  Abort Trans Errors
        Unsigned 32-bit integer
        dot5 Stats Abort Trans Errors
    sflow_245.dot5StatsBurstErrors  Burst Errors
        Unsigned 32-bit integer
        dot5 Stats Burst Errors
    sflow_245.dot5StatsFrameCopiedErrors  Frame Copied Errors
        Unsigned 32-bit integer
        dot5 Stats Frame Copied Errors
    sflow_245.dot5StatsFreqErrors  Freq Errors
        Unsigned 32-bit integer
        dot5 Stats Freq Errors
    sflow_245.dot5StatsHardErrors  Hard Errors
        Unsigned 32-bit integer
        dot5 Stats Hard Errors
    sflow_245.dot5StatsInternalErrors  Internal Errors
        Unsigned 32-bit integer
        dot5 Stats Internal Errors
    sflow_245.dot5StatsLineErrors  Line Errors
        Unsigned 32-bit integer
        dot5 Stats Line Errors
    sflow_245.dot5StatsLobeWires  Lobe Wires
        Unsigned 32-bit integer
        dot5 Stats Lobe Wires
    sflow_245.dot5StatsLostFrameErrors  Lost Frame Errors
        Unsigned 32-bit integer
        dot5 Stats Lost Frame Errors
    sflow_245.dot5StatsReceiveCongestions  Receive Congestions
        Unsigned 32-bit integer
        dot5 Stats Receive Congestions
    sflow_245.dot5StatsRecoveries  Recoveries
        Unsigned 32-bit integer
        dot5 Stats Recoveries
    sflow_245.dot5StatsRemoves  Removes
        Unsigned 32-bit integer
        dot5 Stats Removes
    sflow_245.dot5StatsSignalLoss  Signal Loss
        Unsigned 32-bit integer
        dot5 Stats Signal Loss
    sflow_245.dot5StatsSingles  Singles
        Unsigned 32-bit integer
        dot5 Stats Singles
    sflow_245.dot5StatsSoftErrors  Soft Errors
        Unsigned 32-bit integer
        dot5 Stats Soft Errors
    sflow_245.dot5StatsTokenErrors  Token Errors
        Unsigned 32-bit integer
        dot5 Stats Token Errors
    sflow_245.dot5StatsTransmitBeacons  Transmit Beacons
        Unsigned 32-bit integer
        dot5 Stats Transmit Beacons
    sflow_245.dstAS  AS Destination
        Unsigned 32-bit integer
        Autonomous System destination
    sflow_245.dstASentries  AS Destinations
        Unsigned 32-bit integer
        Autonomous System destinations
    sflow_245.extended_information_type  Extended information type
        Unsigned 32-bit integer
        Type of extended information
    sflow_245.flow_record_format  Format
        Unsigned 32-bit integer
        Format of sFlow flow record
    sflow_245.header  Header of sampled packet
        Byte array
        Data from sampled header
    sflow_245.header_protocol  Header protocol
        Unsigned 32-bit integer
        Protocol of sampled header
    sflow_245.ieee80211_version  Version
        Unsigned 32-bit integer
        IEEE 802.11 Version
    sflow_245.ifdirection  Interface Direction
        Unsigned 32-bit integer
        Interface Direction
    sflow_245.ifinbcast  Input Broadcast Packets
        Unsigned 32-bit integer
        Interface Input Broadcast Packets
    sflow_245.ifindex  Interface index
        Unsigned 32-bit integer
        Interface Index
    sflow_245.ifindisc  Input Discarded Packets
        Unsigned 32-bit integer
        Interface Input Discarded Packets
    sflow_245.ifinerr  Input Errors
        Unsigned 32-bit integer
        Interface Input Errors
    sflow_245.ifinmcast  Input Multicast Packets
        Unsigned 32-bit integer
        Interface Input Multicast Packets
    sflow_245.ifinoct  Input Octets
        Unsigned 64-bit integer
        Interface Input Octets
    sflow_245.ifinpkt  Input Packets
        Unsigned 32-bit integer
        Interface Input Packets
    sflow_245.ifinunk  Input Unknown Protocol Packets
        Unsigned 32-bit integer
        Interface Input Unknown Protocol Packets
    sflow_245.ifoutbcast  Output Broadcast Packets
        Unsigned 32-bit integer
        Interface Output Broadcast Packets
    sflow_245.ifoutdisc  Output Discarded Packets
        Unsigned 32-bit integer
        Interface Output Discarded Packets
    sflow_245.ifouterr  Output Errors
        Unsigned 32-bit integer
        Interface Output Errors
    sflow_245.ifoutmcast  Output Multicast Packets
        Unsigned 32-bit integer
        Interface Output Multicast Packets
    sflow_245.ifoutoct  Output Octets
        Unsigned 64-bit integer
        Outterface Output Octets
    sflow_245.ifoutpkt  Output Packets
        Unsigned 32-bit integer
        Interface Output Packets
    sflow_245.ifpromisc  Promiscuous Mode
        Unsigned 32-bit integer
        Interface Promiscuous Mode
    sflow_245.ifspeed  Interface Speed
        Unsigned 64-bit integer
        Interface Speed
    sflow_245.ifstatus  Interface Status
        Unsigned 32-bit integer
        Interface Status
    sflow_245.iftype  Interface Type
        Unsigned 32-bit integer
        Interface Type
    sflow_245.ipv4_des  Destination IP address
        IPv4 address
        Destination IPv4 address
    sflow_245.ipv4_precedence_type  Precedence
        Unsigned 8-bit integer
        IPv4 Precedence Type
    sflow_245.ipv4_src  Source IP address
        IPv4 address
        Source IPv4 address
    sflow_245.ipv6_des  Destination IP address
        IPv6 address
        Destination IPv6 address
    sflow_245.ipv6_src  Source IP address
        IPv6 address
        Source IPv6 address
    sflow_245.localpref  localpref
        Unsigned 32-bit integer
        Local preferences of AS route
    sflow_245.multicastPkts  Multicast Packets
        Unsigned 32-bit integer
        Multicast Packets
    sflow_245.nexthop  Next hop
        IPv4 address
        Next hop address
    sflow_245.nexthop.dst_mask  Next hop destination mask
        Unsigned 32-bit integer
        Next hop destination mask bits
    sflow_245.nexthop.src_mask  Next hop source mask
        Unsigned 32-bit integer
        Next hop source mask bits
    sflow_245.numsamples  NumSamples
        Unsigned 32-bit integer
        Number of samples in sFlow datagram
    sflow_245.octets  Octets
        Unsigned 64-bit integer
        Octets
    sflow_245.packet_information_type  Sample type
        Unsigned 32-bit integer
        Type of sampled information
    sflow_245.peerAS  AS Peer
        Unsigned 32-bit integer
        Autonomous System of Peer
    sflow_245.pri.in  Incoming 802.1p priority
        Unsigned 32-bit integer
        Incoming 802.1p priority
    sflow_245.pri.out  Outgoing 802.1p priority
        Unsigned 32-bit integer
        Outgoing 802.1p priority
    sflow_245.sampletype  sFlow sample type
        Unsigned 32-bit integer
        Type of sFlow sample
    sflow_245.sequence_number  Sequence number
        Unsigned 32-bit integer
        sFlow datagram sequence number
    sflow_245.srcAS  AS Source
        Unsigned 32-bit integer
        Autonomous System of Source
    sflow_245.sub_agent_id  Sub-agent ID
        Unsigned 32-bit integer
        sFlow sub-agent ID
    sflow_245.sysuptime  SysUptime
        Unsigned 32-bit integer
        System Uptime
    sflow_245.ucastPkts  Unicast Packets
        Unsigned 32-bit integer
        Unicast Packets
    sflow_245.version  Datagram version
        Unsigned 32-bit integer
        sFlow datagram version
    sflow_245.vlan.in  Incoming 802.1Q VLAN
        Unsigned 32-bit integer
        Incoming VLAN ID
    sflow_245.vlan.out  Outgoing 802.1Q VLAN
        Unsigned 32-bit integer
        Outgoing VLAN ID
    sflow_245.vlan_id  VLAN ID
        Unsigned 32-bit integer
        VLAN ID
    sflow_5.channel_busy_time  On Channel Busy (ms)
        Unsigned 32-bit integer
        Time in ms Spent on Channel and Busy
    sflow_5.counter_data_length  Counters data length (byte)
        Unsigned 32-bit integer
        sFlow counters data length
    sflow_5.cpu_1m  1m CPU Load (100 = 1%)
        Unsigned 32-bit integer
        Average CPU Load Over 1 Minute (100 = 1%)
    sflow_5.cpu_5m  5m CPU Load (100 = 1%)
        Unsigned 32-bit integer
        Average CPU Load Over 5 Minutes (100 = 1%)
    sflow_5.cpu_5s  5s CPU Load (100 = 1%)
        Unsigned 32-bit integer
        Average CPU Load Over 5 Seconds (100 = 1%)
    sflow_5.dot11ACKFailureCount  ACK Failure Count
        Unsigned 32-bit integer
        ACK Failure Count
    sflow_5.dot11AssociatedStationCount  Associated Station Count
        Unsigned 32-bit integer
        Associated Station Count
    sflow_5.dot11FCSErrorCount  FCS Error Count
        Unsigned 32-bit integer
        FCS Error Count
    sflow_5.dot11FailedCount  Failed Count
        Unsigned 32-bit integer
        Failed Count
    sflow_5.dot11FrameDuplicateCount  Frame Duplicate Count
        Unsigned 32-bit integer
        Frame Duplicate Count
    sflow_5.dot11MulticastReceivedFrameCount  Multicast Received Frame Count
        Unsigned 32-bit integer
        Multicast Received Frame Count
    sflow_5.dot11MulticastTransmittedFrameCount  Multicast Transmitted Frame Count
        Unsigned 32-bit integer
        Multicast Transmitted Frame Count
    sflow_5.dot11MultipleRetryCount  Multiple Retry Count
        Unsigned 32-bit integer
        Multiple Retry Count
    sflow_5.dot11QoSCFPollsLostCount  QoS CF Polls Lost Count
        Unsigned 32-bit integer
        QoS CF Polls Lost Count
    sflow_5.dot11QoSCFPollsReceivedCount  QoS CF Polls Received Count
        Unsigned 32-bit integer
        QoS CF Polls Received Count
    sflow_5.dot11QoSCFPollsUnusableCount  QoS CF Polls Unusable Count
        Unsigned 32-bit integer
        QoS CF Polls Unusable Count
    sflow_5.dot11QoSCFPollsUnusedCount  QoS CF Polls Unused Count
        Unsigned 32-bit integer
        QoS CF Polls Unused Count
    sflow_5.dot11QoSDiscardedFragmentCount  QoS Discarded Fragment Count
        Unsigned 32-bit integer
        QoS Discarded Fragment Count
    sflow_5.dot11RTSFailureCount  Failure Count
        Unsigned 32-bit integer
        Failure Count
    sflow_5.dot11RTSSuccessCount  RTS Success Count
        Unsigned 32-bit integer
        RTS Success Count
    sflow_5.dot11ReceivedFragmentCount  Received Fragment Count
        Unsigned 32-bit integer
        Received Fragment Count
    sflow_5.dot11RetryCount  Retry Count
        Unsigned 32-bit integer
        Retry Count
    sflow_5.dot11TransmittedFragmentCount  Transmitted Fragment Count
        Unsigned 32-bit integer
        Transmitted Fragment Count
    sflow_5.dot11TransmittedFrameCount  Transmitted Frame Count
        Unsigned 32-bit integer
        Transmitted Frame Count
    sflow_5.dot11WEPUndecryptableCount  WEP Undecryptable Count
        Unsigned 32-bit integer
        WEP Undecryptable Count
    sflow_5.elapsed_time  Elapsed Time (ms)
        Unsigned 32-bit integer
        Elapsed Time in ms
    sflow_5.flow_data_length  Flow data length (byte)
        Unsigned 32-bit integer
        sFlow flow data length
    sflow_5.free_memory  Free Memory
        Unsigned 64-bit integer
        Free Memory
    sflow_5.on_channel_time  On Channel (ms)
        Unsigned 32-bit integer
        Time in ms Spent on Channel
    sflow_5.sample_length  Sample length (byte)
        Unsigned 32-bit integer
        sFlow sample length
    sflow_5.total_memory  Total Memory
        Unsigned 64-bit integer
        Total Memory

InfiniBand (infiniband)

    infiniband.aeth  ACK Extended Transport Header
        Byte array
    infiniband.aeth.msn  Message Sequence Number
        Unsigned 24-bit integer
    infiniband.aeth.syndrome  Syndrome
        Unsigned 8-bit integer
    infiniband.atomicacketh  Atomic ACK Extended Transport Header
        Byte array
    infiniband.atomicacketh.origremdt  Original Remote Data
        Unsigned 64-bit integer
    infiniband.atomiceth  Atomic Extended Transport Header
        Byte array
    infiniband.atomiceth.cmpdt  Compare Data
        Unsigned 64-bit integer
    infiniband.atomiceth.swapdt  Swap (Or Add) Data
        Unsigned 64-bit integer
    infiniband.bth  Base Transport Header
        Byte array
    infiniband.bth.a  Acknowledge Request
        Boolean
    infiniband.bth.destqp  Destination Queue Pair
        Unsigned 24-bit integer
    infiniband.bth.m  MigReq
        Boolean
    infiniband.bth.opcode  Opcode
        Unsigned 8-bit integer
    infiniband.bth.p_key  Partition Key
        Unsigned 16-bit integer
    infiniband.bth.padcnt  Pad Count
        Unsigned 8-bit integer
    infiniband.bth.psn  Packet Sequence Number
        Unsigned 24-bit integer
    infiniband.bth.reserved7  Reserved (7 bits)
        Unsigned 8-bit integer
    infiniband.bth.reserved8  Reserved (8 bits)
        Unsigned 8-bit integer
    infiniband.bth.se  Solicited Event
        Boolean
    infiniband.bth.tver  Header Version
        Unsigned 8-bit integer
    infiniband.deth  Datagram Extended Transport Header
        Byte array
    infiniband.deth.q_key  Queue Key
        Unsigned 64-bit integer
    infiniband.deth.reserved8  Reserved (8 bits)
        Unsigned 32-bit integer
    infiniband.deth.srcqp  Source Queue Pair
        Unsigned 32-bit integer
    infiniband.grh  Global Route Header
        Byte array
    infiniband.grh.dgid  Destination GID
        IPv6 address
    infiniband.grh.flowlabel  Flow Label
        Unsigned 32-bit integer
    infiniband.grh.hoplmt  Hop Limit
        Unsigned 8-bit integer
    infiniband.grh.ipver  IP Version
        Unsigned 8-bit integer
    infiniband.grh.nxthdr  Next Header
        Unsigned 8-bit integer
    infiniband.grh.paylen  Payload Length
        Unsigned 16-bit integer
    infiniband.grh.sgid  Source GID
        IPv6 address
    infiniband.grh.tclass  Traffic Class
        Unsigned 16-bit integer
    infiniband.ieth  RKey
        Byte array
    infiniband.immdt  Immediate Data
        Byte array
    infiniband.informinfo.gid  GID
        IPv6 address
    infiniband.informinfo.isgeneric  IsGeneric
        Unsigned 8-bit integer
    infiniband.informinfo.lidrangebegin  LIDRangeBegin
        Unsigned 16-bit integer
    infiniband.informinfo.lidrangeend  LIDRangeEnd
        Unsigned 16-bit integer
    infiniband.informinfo.producertypevendorid  ProducerTypeVendorID
        Unsigned 24-bit integer
    infiniband.informinfo.qpn  QPN
        Unsigned 24-bit integer
    infiniband.informinfo.resptimevalue  RespTimeValue
        Unsigned 8-bit integer
    infiniband.informinfo.subscribe  Subscribe
        Unsigned 8-bit integer
    infiniband.informinfo.trapnumberdeviceid  TrapNumberDeviceID
        Unsigned 16-bit integer
    infiniband.informinfo.type  Type
        Unsigned 16-bit integer
    infiniband.informinforecord.enum  Enum
        Unsigned 16-bit integer
    infiniband.informinforecord.subscribergid  SubscriberGID
        IPv6 address
    infiniband.invariant.crc  Invariant CRC
        Unsigned 32-bit integer
    infiniband.ledinfo.ledmask  LedMask
        Unsigned 8-bit integer
    infiniband.linearforwardingtable.port  Port
        Unsigned 8-bit integer
    infiniband.linkrecord.fromlid  FromLID
        Unsigned 16-bit integer
    infiniband.linkrecord.fromport  FromPort
        Unsigned 8-bit integer
    infiniband.linkrecord.servicedata  ServiceData
        Byte array
    infiniband.linkrecord.servicegid  ServiceGID
        IPv6 address
    infiniband.linkrecord.serviceid  ServiceID
        Unsigned 64-bit integer
    infiniband.linkrecord.servicekey  ServiceKey
        Byte array
    infiniband.linkrecord.servicelease  ServiceLease
        Unsigned 32-bit integer
    infiniband.linkrecord.servicename  ServiceName
        Byte array
    infiniband.linkrecord.servicep_key  ServiceP_Key
        Unsigned 16-bit integer
    infiniband.linkrecord.tolid  ToLID
        Unsigned 16-bit integer
    infiniband.linkrecord.toport  ToPort
        Unsigned 8-bit integer
    infiniband.linkspeedwidthpairstable.numtables  NumTables
        Unsigned 8-bit integer
    infiniband.linkspeedwidthpairstable.portmask  PortMask
        Byte array
    infiniband.linkspeedwidthpairstable.speedfive  Speed 5 Gbps
        Unsigned 8-bit integer
    infiniband.linkspeedwidthpairstable.speedten  Speed 10 Gbps
        Unsigned 8-bit integer
    infiniband.linkspeedwidthpairstable.speedtwofive  Speed 2.5 Gbps
        Unsigned 8-bit integer
    infiniband.lrh  Local Route Header
        Byte array
    infiniband.lrh.dlid  Destination Local ID
        Unsigned 16-bit integer
    infiniband.lrh.lnh  Link Next Header
        Unsigned 8-bit integer
    infiniband.lrh.lver  Link Version
        Unsigned 8-bit integer
    infiniband.lrh.pktlen  Packet Length
        Unsigned 16-bit integer
    infiniband.lrh.reserved2  Reserved (2 bits)
        Unsigned 8-bit integer
    infiniband.lrh.reserved5  Reserved (5 bits)
        Unsigned 16-bit integer
    infiniband.lrh.sl  Service Level
        Unsigned 8-bit integer
    infiniband.lrh.slid  Source Local ID
        Unsigned 16-bit integer
    infiniband.lrh.vl  Virtual Lane
        Unsigned 8-bit integer
    infiniband.mad  MAD (Management Datagram) Common Header
        Byte array
    infiniband.mad.attributeid  Attribute ID
        Unsigned 16-bit integer
    infiniband.mad.attributemodifier  Attribute Modifier
        Unsigned 32-bit integer
    infiniband.mad.baseversion  Base Version
        Unsigned 8-bit integer
    infiniband.mad.classspecific  Class Specific
        Unsigned 16-bit integer
    infiniband.mad.classversion  Class Version
        Unsigned 8-bit integer
    infiniband.mad.data  MAD Data Payload
        Byte array
    infiniband.mad.method  Method
        Unsigned 8-bit integer
    infiniband.mad.mgmtclass  Management Class
        Unsigned 8-bit integer
    infiniband.mad.reserved16  Reserved
        Unsigned 16-bit integer
    infiniband.mad.status  Status
        Unsigned 16-bit integer
    infiniband.mad.transactionid  Transaction ID
        Unsigned 64-bit integer
    infiniband.mcmemberrecord.flowlabel  FlowLabel
        Unsigned 24-bit integer
    infiniband.mcmemberrecord.hoplimit  HopLimit
        Unsigned 8-bit integer
    infiniband.mcmemberrecord.joinstate  JoinState
        Unsigned 8-bit integer
    infiniband.mcmemberrecord.mgid  MGID
        IPv6 address
    infiniband.mcmemberrecord.mlid  MLID
        Unsigned 16-bit integer
    infiniband.mcmemberrecord.mtu  MTU
        Unsigned 8-bit integer
    infiniband.mcmemberrecord.mtuselector  MTUSelector
        Unsigned 8-bit integer
    infiniband.mcmemberrecord.p_key  P_Key
        Unsigned 16-bit integer
    infiniband.mcmemberrecord.packetlifetime  PacketLifeTime
        Unsigned 8-bit integer
    infiniband.mcmemberrecord.packetlifetimeselector  PacketLifeTimeSelector
        Unsigned 8-bit integer
    infiniband.mcmemberrecord.portgid  PortGID
        IPv6 address
    infiniband.mcmemberrecord.proxyjoin  ProxyJoin
        Unsigned 8-bit integer
    infiniband.mcmemberrecord.q_key  Q_Key
        Unsigned 32-bit integer
    infiniband.mcmemberrecord.rate  Rate
        Unsigned 8-bit integer
    infiniband.mcmemberrecord.rateselector  RateSelector
        Unsigned 8-bit integer
    infiniband.mcmemberrecord.scope  Scope
        Unsigned 8-bit integer
    infiniband.mcmemberrecord.sl  SL
        Unsigned 8-bit integer
    infiniband.mcmemberrecord.tclass  TClass
        Unsigned 8-bit integer
    infiniband.multicastforwardingtable.portmask  PortMask
        Unsigned 16-bit integer
    infiniband.multipathrecord.dgidcount  DGIDCount
        Unsigned 8-bit integer
    infiniband.multipathrecord.flowlabel  FlowLabel
        Unsigned 24-bit integer
    infiniband.multipathrecord.gidscope  GIDScope
        Unsigned 8-bit integer
    infiniband.multipathrecord.hoplimit  HopLimit
        Unsigned 8-bit integer
    infiniband.multipathrecord.independenceselector  IndependenceSelector
        Unsigned 8-bit integer
    infiniband.multipathrecord.mtu  MTU
        Unsigned 8-bit integer
    infiniband.multipathrecord.mtuselector  MTUSelector
        Unsigned 8-bit integer
    infiniband.multipathrecord.numbpath  NumbPath
        Unsigned 8-bit integer
    infiniband.multipathrecord.p_key  P_Key
        Unsigned 16-bit integer
    infiniband.multipathrecord.packetlifetime  PacketLifeTime
        Unsigned 8-bit integer
    infiniband.multipathrecord.packetlifetimeselector  PacketLifeTimeSelector
        Unsigned 8-bit integer
    infiniband.multipathrecord.rate  Rate
        Unsigned 8-bit integer
    infiniband.multipathrecord.rateselector  RateSelector
        Unsigned 8-bit integer
    infiniband.multipathrecord.rawtraffic  RawTraffic
        Unsigned 8-bit integer
    infiniband.multipathrecord.reversible  Reversible
        Unsigned 8-bit integer
    infiniband.multipathrecord.sdgid  SDGID
        IPv6 address
    infiniband.multipathrecord.sgidcount  SGIDCount
        Unsigned 8-bit integer
    infiniband.multipathrecord.sl  SL
        Unsigned 8-bit integer
    infiniband.multipathrecord.tclass  TClass
        Unsigned 8-bit integer
    infiniband.nodedescription.nodestring  NodeString
        String
    infiniband.nodeinfo.baseversion  BaseVersion
        Unsigned 8-bit integer
    infiniband.nodeinfo.classversion  ClassVersion
        Unsigned 8-bit integer
    infiniband.nodeinfo.deviceid  DeviceID
        Unsigned 16-bit integer
    infiniband.nodeinfo.localportnum  LocalPortNum
        Unsigned 8-bit integer
    infiniband.nodeinfo.nodeguid  NodeGUID
        Unsigned 64-bit integer
    infiniband.nodeinfo.nodetype  NodeType
        Unsigned 8-bit integer
    infiniband.nodeinfo.numports  NumPorts
        Unsigned 8-bit integer
    infiniband.nodeinfo.partitioncap  PartitionCap
        Unsigned 16-bit integer
    infiniband.nodeinfo.portguid  PortGUID
        Unsigned 64-bit integer
    infiniband.nodeinfo.revision  Revision
        Unsigned 32-bit integer
    infiniband.nodeinfo.systemimageguid  SystemImageGUID
        Unsigned 64-bit integer
    infiniband.nodeinfo.vendorid  VendorID
        Unsigned 24-bit integer
    infiniband.notice.datadetails  DataDetails
        Byte array
    infiniband.notice.isgeneric  IsGeneric
        Unsigned 8-bit integer
    infiniband.notice.issuerlid  IssuerLID
        Unsigned 16-bit integer
    infiniband.notice.noticecount  NoticeCount
        Unsigned 16-bit integer
    infiniband.notice.noticetoggle  NoticeToggle
        Unsigned 8-bit integer
    infiniband.notice.producertypevendorid  ProducerTypeVendorID
        Unsigned 24-bit integer
    infiniband.notice.trapnumberdeviceid  TrapNumberDeviceID
        Unsigned 16-bit integer
    infiniband.notice.type  Type
        Unsigned 8-bit integer
    infiniband.p_keytable.membershiptype  MembershipType
        Unsigned 8-bit integer
    infiniband.p_keytable.p_keybase  P_KeyBase
        Unsigned 16-bit integer
    infiniband.p_keytable.p_keytableblock  P_KeyTableBlock
        Byte array
    infiniband.pathrecord.dgid  DGID
        IPv6 address
    infiniband.pathrecord.dlid  DLID
        Unsigned 16-bit integer
    infiniband.pathrecord.flowlabel  FlowLabel
        Unsigned 24-bit integer
    infiniband.pathrecord.hoplimit  HopLimit
        Unsigned 8-bit integer
    infiniband.pathrecord.mtu  MTU
        Unsigned 8-bit integer
    infiniband.pathrecord.mtuselector  MTUSelector
        Unsigned 8-bit integer
    infiniband.pathrecord.numbpath  NumbPath
        Unsigned 8-bit integer
    infiniband.pathrecord.p_key  P_Key
        Unsigned 16-bit integer
    infiniband.pathrecord.packetlifetime  PacketLifeTime
        Unsigned 8-bit integer
    infiniband.pathrecord.packetlifetimeselector  PacketLifeTimeSelector
        Unsigned 8-bit integer
    infiniband.pathrecord.preference  Preference
        Unsigned 8-bit integer
    infiniband.pathrecord.rate  Rate
        Unsigned 8-bit integer
    infiniband.pathrecord.rateselector  RateSelector
        Unsigned 8-bit integer
    infiniband.pathrecord.rawtraffic  RawTraffic
        Unsigned 8-bit integer
    infiniband.pathrecord.reversible  Reversible
        Unsigned 8-bit integer
    infiniband.pathrecord.sgid  SGID
        IPv6 address
    infiniband.pathrecord.sl  SL
        Unsigned 16-bit integer
    infiniband.pathrecord.slid  SLID
        Unsigned 16-bit integer
    infiniband.pathrecord.tclass  TClass
        Unsigned 8-bit integer
    infiniband.payload  Payload
        Byte array
    infiniband.portcounters  Port Counters (Performance Management MAD)
        No value
        Performance class PortCounters packet
    infiniband.portcounters.counterselect  CounterSelect
        Unsigned 16-bit integer
        When writing, selects which counters are affected by the operation
    infiniband.portcounters.excessivebufferoverrunerrors  ExcessiveBufferOverrunErrors
        Unsigned 8-bit integer
        The number of times that OverrunErrors consecutive flow control update periods occured
    infiniband.portcounters.linkdownedcounter  LinkDownedCounter
        Unsigned 8-bit integer
        Total number of times failed link error recovery process
    infiniband.portcounters.linkerrorrecoverycounter  LinkErrorRecoveryCounter
        Unsigned 8-bit integer
        Total number of times successfully completed link error recovery process
    infiniband.portcounters.locallinkintegrityerrors  LocalLinkIntegrityErrors
        Unsigned 8-bit integer
        The number of times the count of local physical errors exceeded the threshold specified by LocalPhyErrors
    infiniband.portcounters.portrcvconstrainterrors  PortRcvConstraintErrors
        Unsigned 8-bit integer
        Total number of packets received on the switch physical port that are discarded
    infiniband.portcounters.portrcvdata  PortRcvData
        Unsigned 32-bit integer
        Total number of data octets, divided by 4, received on all VLs at the port
    infiniband.portcounters.portrcverrors  PortRcvErrors
        Unsigned 16-bit integer
        Total number of packets containing an error received
    infiniband.portcounters.portrcvpkts  PortRcvPkts
        Unsigned 32-bit integer
        Total number of packets received from all VLs on the port
    infiniband.portcounters.portrcvremotephysicalerrors  PortRcvRemotePhysicalErrors
        Unsigned 16-bit integer
        Total number of packets marked with EBP delimiter received
    infiniband.portcounters.portrcvswitchrelayerrors  PortRcvSwitchRelayErrors
        Unsigned 16-bit integer
        Total number of packets number of packets discarded because they could not be forwarded by switch relay
    infiniband.portcounters.portselect  PortSelect
        Unsigned 8-bit integer
        Selects the port that will be accessed
    infiniband.portcounters.portxmitconstrainterrors  PortXmitConstraintErrors
        Unsigned 8-bit integer
        Total number of packets not transmitted from the switch physical port
    infiniband.portcounters.portxmitdata  PortXmitData
        Unsigned 32-bit integer
        Total number of data octets, divided by 4, transmitted on all VLs from the port
    infiniband.portcounters.portxmitdiscards  PortXmitDiscards
        Unsigned 16-bit integer
        Total number of outbound packets discarded
    infiniband.portcounters.portxmitpkts  PortXmitPkts
        Unsigned 32-bit integer
        Total number of packets transmitted on all VLs from the port
    infiniband.portcounters.symbolerrorcounter  SymbolErrorCounter
        Unsigned 16-bit integer
        Total number of minor link errors
    infiniband.portcounters.vl15dropped  VL15Dropped
        Unsigned 16-bit integer
        Number of incoming VL15 packets dropped
    infiniband.portcounters_ext  Port Counters Extended (Performance Management MAD)
        No value
        Performance class PortCountersExtended packet
    infiniband.portcounters_ext.counterselect  CounterSelect
        Unsigned 16-bit integer
        When writing, selects which counters are affected by the operation
    infiniband.portcounters_ext.portmulticastrcvpkts  PortMulticastRcvPkts
        Unsigned 64-bit integer
        Total number of multicast packets received from all VLs on the port
    infiniband.portcounters_ext.portmulticastxmitpkts  PortMulticastXmitPkts
        Unsigned 64-bit integer
        Total number of multicast packets transmitted on all VLs from the port
    infiniband.portcounters_ext.portrcvdata  PortRcvData
        Unsigned 64-bit integer
        Total number of data octets, divided by 4, received on all VLs at the port
    infiniband.portcounters_ext.portrcvpkts  PortRcvPkts
        Unsigned 64-bit integer
        Total number of packets received from all VLs on the port
    infiniband.portcounters_ext.portselect  PortSelect
        Unsigned 8-bit integer
        Selects the port that will be accessed
    infiniband.portcounters_ext.portunicastrcvpkts  PortUnicastRcvPkts
        Unsigned 64-bit integer
        Total number of unicast packets received from all VLs on the port
    infiniband.portcounters_ext.portunicastxmitpkts  PortUnicastXmitPkts
        Unsigned 64-bit integer
        Total number of unicast packets transmitted on all VLs from the port
    infiniband.portcounters_ext.portxmitdata  PortXmitData
        Unsigned 64-bit integer
        Total number of data octets, divided by 4, transmitted on all VLs from the port
    infiniband.portcounters_ext.portxmitpkts  PortXmitPkts
        Unsigned 64-bit integer
        Total number of packets transmitted on all VLs from the port
    infiniband.portinfo.capabilitymask  CapabilityMask
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.automaticmigrationsupported  AutomaticMigrationSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.bootmanagementsupported  BootManagementSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.capabilitymasknoticesupported  CapabilityMaskNoticeSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.clientregistrationsupported  ClientRegistrationSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.communicationsmanagementsupported  CommunicationsManagementSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.devicemanagementsupported  DeviceManagementSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.drnoticesupported  DRNoticeSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.issm  SM
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.ledinfosupported  LEDInfoSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.linkroundtriplatencysupported  LinkRoundTripLatencySupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.linkspeedwidthpairstablesupported  LinkSpeedWIdthPairsTableSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.mkeynvram  MKeyNVRAM
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.noticesupported  NoticeSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.optionalpdsupported  OptionalPDSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.otherlocalchangesnoticesupported  OtherLocalChangesNoticeSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.pkeynvram  PKeyNVRAM
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.pkeyswitchexternalporttrapsupported  PKeySwitchExternalPortTrapSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.reinitsupported  ReinitSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.slmappingsupported  SLMappingSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.smdisabled  SMdisabled
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.snmptunnelingsupported  SNMPTunnelingSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.systemimageguidsupported  SystemImageGUIDSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.trapsupported  TrapSupported
        Unsigned 32-bit integer
    infiniband.portinfo.capabilitymask.vendorclasssupported  VendorClassSupported
        Unsigned 32-bit integer
    infiniband.portinfo.clientreregister  ClientReregister
        Unsigned 8-bit integer
    infiniband.portinfo.diagcode  DiagCode
        Unsigned 16-bit integer
    infiniband.portinfo.filterrawinbound  FilterRawInbound
        Unsigned 8-bit integer
    infiniband.portinfo.filterrawoutbound  FilterRawOutbound
        Unsigned 8-bit integer
    infiniband.portinfo.guid  GidPrefix
        Unsigned 64-bit integer
    infiniband.portinfo.guidcap  GUIDCap
        Unsigned 8-bit integer
    infiniband.portinfo.hoqlife  HOQLife
        Unsigned 8-bit integer
    infiniband.portinfo.inittype  InitType
        Unsigned 8-bit integer
    infiniband.portinfo.inittypereply  InitTypeReply
        Unsigned 8-bit integer
    infiniband.portinfo.lid  LID
        Unsigned 16-bit integer
    infiniband.portinfo.linkdowndefaultstate  LinkDownDefaultState
        Unsigned 8-bit integer
    infiniband.portinfo.linkroundtriplatency  LinkRoundTripLatency
        Unsigned 24-bit integer
    infiniband.portinfo.linkspeedactive  LinkSpeedActive
        Unsigned 8-bit integer
    infiniband.portinfo.linkspeedenabled  LinkSpeedEnabled
        Unsigned 8-bit integer
    infiniband.portinfo.linkspeedsupported  LinkSpeedSupported
        Unsigned 8-bit integer
    infiniband.portinfo.linkwidthactive  LinkWidthActive
        Unsigned 8-bit integer
    infiniband.portinfo.linkwidthenabled  LinkWidthEnabled
        Unsigned 8-bit integer
    infiniband.portinfo.linkwidthsupported  LinkWidthSupported
        Unsigned 8-bit integer
    infiniband.portinfo.lmc  LMC
        Unsigned 8-bit integer
    infiniband.portinfo.localphyerrors  LocalPhyErrors
        Unsigned 8-bit integer
    infiniband.portinfo.localportnum  LocalPortNum
        Unsigned 8-bit integer
    infiniband.portinfo.m_key  M_Key
        Unsigned 64-bit integer
    infiniband.portinfo.m_keyleaseperiod  M_KeyLeasePeriod
        Unsigned 16-bit integer
    infiniband.portinfo.m_keyprotectbits  M_KeyProtectBits
        Unsigned 8-bit integer
    infiniband.portinfo.m_keyviolations  M_KeyViolations
        Unsigned 16-bit integer
    infiniband.portinfo.mastersmlid  MasterSMLID
        Unsigned 16-bit integer
    infiniband.portinfo.mastersmsl  MasterSMSL
        Unsigned 8-bit integer
    infiniband.portinfo.maxcredithint  MaxCreditHint
        Unsigned 16-bit integer
    infiniband.portinfo.mtucap  MTUCap
        Unsigned 8-bit integer
    infiniband.portinfo.neighbormtu  NeighborMTU
        Unsigned 8-bit integer
    infiniband.portinfo.operationalvls  OperationalVLs
        Unsigned 8-bit integer
    infiniband.portinfo.overrunerrors  OverrunErrors
        Unsigned 8-bit integer
    infiniband.portinfo.p_keyviolations  P_KeyViolations
        Unsigned 16-bit integer
    infiniband.portinfo.partitionenforcementinbound  PartitionEnforcementInbound
        Unsigned 8-bit integer
    infiniband.portinfo.partitionenforcementoutbound  PartitionEnforcementOutbound
        Unsigned 8-bit integer
    infiniband.portinfo.portphysicalstate  PortPhysicalState
        Unsigned 8-bit integer
    infiniband.portinfo.portstate  PortState
        Unsigned 8-bit integer
    infiniband.portinfo.q_keyviolations  Q_KeyViolations
        Unsigned 16-bit integer
    infiniband.portinfo.resptimevalue  RespTimeValue
        Unsigned 8-bit integer
    infiniband.portinfo.subnettimeout  SubnetTimeOut
        Unsigned 8-bit integer
    infiniband.portinfo.vlarbitrationhighcap  VLArbitrationHighCap
        Unsigned 8-bit integer
    infiniband.portinfo.vlarbitrationlowcap  VLArbitrationLowCap
        Unsigned 8-bit integer
    infiniband.portinfo.vlcap  VLCap
        Unsigned 8-bit integer
    infiniband.portinfo.vlhighlimit  VLHighLimit
        Unsigned 8-bit integer
    infiniband.portinfo.vlstallcount  VLStallCount
        Unsigned 8-bit integer
    infiniband.randomforwardingtable.lid  LID
        Unsigned 16-bit integer
    infiniband.randomforwardingtable.lmc  LMC
        Unsigned 8-bit integer
    infiniband.randomforwardingtable.port  Port
        Unsigned 8-bit integer
    infiniband.randomforwardingtable.valid  Valid
        Unsigned 8-bit integer
    infiniband.rawdata  Raw Data
        Byte array
    infiniband.rdeth  Reliable Datagram Extended Transport Header
        Byte array
    infiniband.rdeth.eecnxt  E2E Context
        Unsigned 24-bit integer
    infiniband.rdeth.reserved8  Reserved (8 bits)
        Unsigned 8-bit integer
    infiniband.reth  RDMA Extended Transport Header
        Byte array
    infiniband.reth.dmalen  DMA Length
        Unsigned 32-bit integer
    infiniband.reth.r_key  Remote Key
        Unsigned 32-bit integer
    infiniband.reth.va  Virtual Address
        Unsigned 64-bit integer
    infiniband.rmpp  RMPP (Reliable Multi-Packet Transaction Protocol)
        Byte array
    infiniband.rmpp.data1  RMPP Data 1
        Unsigned 32-bit integer
    infiniband.rmpp.data2  RMPP Data 2
        Unsigned 32-bit integer
    infiniband.rmpp.extendederrordata  Optional Extended Error Data
        Byte array
    infiniband.rmpp.newwindowlast  New Window Last
        Unsigned 32-bit integer
    infiniband.rmpp.payloadlength  Payload Length
        Unsigned 32-bit integer
    infiniband.rmpp.reserved220  Segment Number
        Byte array
    infiniband.rmpp.rmppflags  RMPP Flags
        Unsigned 8-bit integer
    infiniband.rmpp.rmppstatus  RMPP Status
        Unsigned 8-bit integer
    infiniband.rmpp.rmpptype  RMPP Type
        Unsigned 8-bit integer
    infiniband.rmpp.rmppversion  RMPP Type
        Unsigned 8-bit integer
    infiniband.rmpp.rresptime  R Resp Time
        Unsigned 8-bit integer
    infiniband.rmpp.segmentnumber  Segment Number
        Unsigned 32-bit integer
    infiniband.rmpp.transferreddata  Transferred Data
        Byte array
    infiniband.rwh  Raw Header
        Byte array
    infiniband.rwh.etype  Ethertype
        Unsigned 16-bit integer
        Type
    infiniband.rwh.reserved  Reserved (16 bits)
        Unsigned 16-bit integer
    infiniband.sa.attributeoffset  Attribute Offset
        Unsigned 16-bit integer
    infiniband.sa.blocknum_eightbit  BlockNum_EightBit
        Unsigned 8-bit integer
    infiniband.sa.blocknum_ninebit  BlockNum_NineBit
        Unsigned 16-bit integer
    infiniband.sa.blocknum_sixteenbit  BlockNum_SixteenBit
        Unsigned 16-bit integer
    infiniband.sa.componentmask  Component Mask
        Unsigned 64-bit integer
    infiniband.sa.drdlid  SA Packet (Subnet Administration)
        Byte array
    infiniband.sa.endportlid  EndportLID
        Unsigned 16-bit integer
    infiniband.sa.inputportnum  InputPortNum
        Unsigned 8-bit integer
    infiniband.sa.lid  LID
        Unsigned 16-bit integer
    infiniband.sa.outputportnum  OutputPortNum
        Unsigned 8-bit integer
    infiniband.sa.portnum  PortNum
        Unsigned 8-bit integer
    infiniband.sa.position  Position
        Unsigned 8-bit integer
    infiniband.sa.smkey  SM_Key (Verification Key)
        Unsigned 64-bit integer
    infiniband.sa.subnetadmindata  Subnet Admin Data
        Byte array
    infiniband.serviceassociationrecord.servicekey  ServiceKey
        Byte array
    infiniband.serviceassociationrecord.servicename  ServiceName
        String
    infiniband.sltovlmappingtable.sltovlhighbits  SL(x)toVL
        Unsigned 8-bit integer
    infiniband.sltovlmappingtable.sltovllowbits  SL(x)toVL
        Unsigned 8-bit integer
    infiniband.sminfo.actcount  ActCount
        Unsigned 32-bit integer
    infiniband.sminfo.guid  GUID
        Unsigned 64-bit integer
    infiniband.sminfo.priority  Priority
        Unsigned 8-bit integer
    infiniband.sminfo.sm_key  SM_Key
        Unsigned 64-bit integer
    infiniband.sminfo.smstate  SMState
        Unsigned 8-bit integer
    infiniband.smpdirected  Subnet Management Packet (Directed Route)
        Byte array
    infiniband.smpdirected.d  D (Direction Bit)
        Unsigned 64-bit integer
    infiniband.smpdirected.drdlid  DrDLID
        Unsigned 16-bit integer
    infiniband.smpdirected.drslid  DrSLID
        Unsigned 16-bit integer
    infiniband.smpdirected.hopcount  Hop Count
        Unsigned 8-bit integer
    infiniband.smpdirected.hoppointer  Hop Pointer
        Unsigned 8-bit integer
    infiniband.smpdirected.initialpath  Initial Path
        Byte array
    infiniband.smpdirected.reserved28  Reserved (224 bits)
        Byte array
    infiniband.smpdirected.returnpath  Return Path
        Byte array
    infiniband.smpdirected.smpstatus  Status
        Unsigned 16-bit integer
    infiniband.smplid  Subnet Management Packet (LID Routed)
        Byte array
    infiniband.smplid.mkey  M_Key
        Unsigned 64-bit integer
    infiniband.smplid.reserved1024  Reserved (1024 bits)
        Byte array
    infiniband.smplid.reserved256  Reserved (256 bits)
        Byte array
    infiniband.smplid.smpdata  SMP Data
        Byte array
    infiniband.switchinfo.defaultmulticastnotprimaryport  DefaultMulticastNotPrimaryPort
        Unsigned 8-bit integer
    infiniband.switchinfo.defaultmulticastprimaryport  DefaultMulticastPrimaryPort
        Unsigned 8-bit integer
    infiniband.switchinfo.defaultport  DefaultPort
        Unsigned 8-bit integer
    infiniband.switchinfo.enhancedportzero  EnhancedPortZero
        Unsigned 8-bit integer
    infiniband.switchinfo.filterrawinboundcap  FilterRawInboundCap
        Unsigned 8-bit integer
    infiniband.switchinfo.filterrawoutboundcap  FilterRawOutboundCap
        Unsigned 8-bit integer
    infiniband.switchinfo.guid  GUID
        Unsigned 64-bit integer
    infiniband.switchinfo.inboundenforcementcap  InboundEnforcementCap
        Unsigned 8-bit integer
    infiniband.switchinfo.lidsperport  LIDsPerPort
        Unsigned 16-bit integer
    infiniband.switchinfo.lifetimevalue  LifeTimeValue
        Unsigned 8-bit integer
    infiniband.switchinfo.linearfdbcap  LinearFDBCap
        Unsigned 16-bit integer
    infiniband.switchinfo.linearfdbtop  LinearFDBTop
        Unsigned 16-bit integer
    infiniband.switchinfo.multicastfdbcap  MulticastFDBCap
        Unsigned 16-bit integer
    infiniband.switchinfo.optimizedsltovlmappingprogramming  OptimizedSLtoVLMappingProgramming
        Unsigned 8-bit integer
    infiniband.switchinfo.outboundenforcementcap  OutboundEnforcementCap
        Unsigned 8-bit integer
    infiniband.switchinfo.partitionenforcementcap  PartitionEnforcementCap
        Unsigned 16-bit integer
    infiniband.switchinfo.portstatechange  PortStateChange
        Unsigned 8-bit integer
    infiniband.switchinfo.randomfdbcap  RandomFDBCap
        Unsigned 16-bit integer
    infiniband.trap.attributeid  ATTRIBUTEID
        Unsigned 16-bit integer
    infiniband.trap.attributemodifier  ATTRIBUTEMODIFIER
        Unsigned 32-bit integer
    infiniband.trap.capabilitymask  CAPABILITYMASK
        Unsigned 32-bit integer
    infiniband.trap.comp_mask  COMP_MASK
        Unsigned 64-bit integer
    infiniband.trap.datavalid  DataValid
        IPv6 address
    infiniband.trap.drhopcount  DRHopCount
        Unsigned 8-bit integer
    infiniband.trap.drnotice  DRNotice
        Unsigned 8-bit integer
    infiniband.trap.drnoticereturnpath  DRNoticeReturnPath
        Byte array
    infiniband.trap.drpathtruncated  DRPathTruncated
        Unsigned 8-bit integer
    infiniband.trap.drslid  DRSLID
        Unsigned 16-bit integer
    infiniband.trap.gidaddr  GIDADDR
        IPv6 address
    infiniband.trap.gidaddr1  GIDADDR1
        IPv6 address
    infiniband.trap.gidaddr2  GIDADDR2
        IPv6 address
    infiniband.trap.key  KEY
        Unsigned 32-bit integer
    infiniband.trap.lidaddr  LIDADDR
        Unsigned 16-bit integer
    infiniband.trap.lidaddr1  LIDADDR1
        Unsigned 16-bit integer
    infiniband.trap.lidaddr2  LIDADDR2
        Unsigned 16-bit integer
    infiniband.trap.linkspeecenabledchange  LinkSpeecEnabledChange
        Unsigned 8-bit integer
    infiniband.trap.linkwidthenabledchange  LinkWidthEnabledChange
        Unsigned 8-bit integer
    infiniband.trap.method  METHOD
        Unsigned 8-bit integer
    infiniband.trap.mkey  MKEY
        Unsigned 64-bit integer
    infiniband.trap.nodedescriptionchange  NodeDescriptionChange
        Unsigned 8-bit integer
    infiniband.trap.otherlocalchanges  OtherLocalChanges
        Unsigned 8-bit integer
    infiniband.trap.pkey  PKEY
        Unsigned 16-bit integer
    infiniband.trap.portno  PORTNO
        Unsigned 8-bit integer
    infiniband.trap.qp1  QP1
        Unsigned 24-bit integer
    infiniband.trap.qp2  QP2
        Unsigned 24-bit integer
    infiniband.trap.sl  SL
        Unsigned 8-bit integer
    infiniband.trap.swlidaddr  SWLIDADDR
        IPv6 address
    infiniband.trap.systemimageguid  SYSTEMIMAGEGUID
        Unsigned 64-bit integer
    infiniband.trap.wait_for_repath  WAIT_FOR_REPATH
        Unsigned 8-bit integer
    infiniband.variant.crc  Variant CRC
        Unsigned 16-bit integer
    infiniband.vendor  Unknown/Vendor Specific Data
        Byte array
    infiniband.vendordiag.diagdata  DiagData
        Byte array
    infiniband.vendordiag.nextindex  NextIndex
        Unsigned 16-bit integer
    infiniband.vlarbitrationtable.vl  VL
        Unsigned 8-bit integer
    infiniband.vlarbitrationtable.weight  Weight
        Unsigned 8-bit integer

InfiniBand Link (infiniband_link)

    infiniband_link.fccl  Flow Control Credit Limit
        Unsigned 16-bit integer
    infiniband_link.fctbs  Flow Control Total Blocks Sent
        Unsigned 16-bit integer
    infiniband_link.lpcrc  Link Packet CRC
        Unsigned 16-bit integer
    infiniband_link.op  Operand
        Unsigned 16-bit integer
    infiniband_link.vl  Virtual Lane
        Unsigned 16-bit integer

Information Access Protocol (iap)

    iap.attrname  Attribute Name
        Length string pair
    iap.attrtype  Type
        Unsigned 8-bit integer
    iap.charset  Character Set
        Unsigned 8-bit integer
    iap.classname  Class Name
        Length string pair
    iap.ctl  Control Field
        Unsigned 8-bit integer
    iap.ctl.ack  Acknowledge
        Boolean
    iap.ctl.lst  Last Frame
        Boolean
    iap.ctl.opcode  Opcode
        Unsigned 8-bit integer
    iap.int  Value
        Signed 32-bit integer
    iap.invallsap  Malformed IAP result: "
        No value
    iap.invaloctet  Malformed IAP result: "
        No value
    iap.listentry  List Entry
        No value
    iap.listlen  List Length
        Unsigned 16-bit integer
    iap.objectid  Object Identifier
        Unsigned 16-bit integer
    iap.octseq  Sequence
        Byte array
    iap.return  Return
        Unsigned 8-bit integer
    iap.seqlen  Sequence Length
        Unsigned 16-bit integer
    iap.string  String
        Length string pair

Init shutdown service (initshutdown)

    initshutdown.initshutdown_Abort.server  Server
        Unsigned 16-bit integer
    initshutdown.initshutdown_Init.force_apps  Force Apps
        Unsigned 8-bit integer
    initshutdown.initshutdown_Init.hostname  Hostname
        Unsigned 16-bit integer
    initshutdown.initshutdown_Init.message  Message
        No value
    initshutdown.initshutdown_Init.reboot  Reboot
        Unsigned 8-bit integer
    initshutdown.initshutdown_Init.timeout  Timeout
        Unsigned 32-bit integer
    initshutdown.initshutdown_InitEx.force_apps  Force Apps
        Unsigned 8-bit integer
    initshutdown.initshutdown_InitEx.hostname  Hostname
        Unsigned 16-bit integer
    initshutdown.initshutdown_InitEx.message  Message
        No value
    initshutdown.initshutdown_InitEx.reason  Reason
        Unsigned 32-bit integer
    initshutdown.initshutdown_InitEx.reboot  Reboot
        Unsigned 8-bit integer
    initshutdown.initshutdown_InitEx.timeout  Timeout
        Unsigned 32-bit integer
    initshutdown.initshutdown_String.name  Name
        No value
    initshutdown.initshutdown_String.name_len  Name Len
        Unsigned 16-bit integer
    initshutdown.initshutdown_String.name_size  Name Size
        Unsigned 16-bit integer
    initshutdown.initshutdown_String_sub.name  Name
        No value
    initshutdown.initshutdown_String_sub.name_size  Name Size
        Unsigned 32-bit integer
    initshutdown.opnum  Operation
        Unsigned 16-bit integer
    initshutdown.werror  Windows Error
        Unsigned 32-bit integer

Intel ANS probe (ans)

    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

Intelligent Network Application Protocol (inap)

    inap.ActivateServiceFilteringArg  ActivateServiceFilteringArg
        No value
    inap.AlternativeIdentity  AlternativeIdentity
        Unsigned 32-bit integer
    inap.AnalyseInformationArg  AnalyseInformationArg
        No value
    inap.AnalysedInformationArg  AnalysedInformationArg
        No value
    inap.ApplyChargingArg  ApplyChargingArg
        No value
    inap.ApplyChargingReportArg  ApplyChargingReportArg
        Byte array
    inap.AssistRequestInstructionsArg  AssistRequestInstructionsArg
        No value
    inap.AuthorizeTerminationArg  AuthorizeTerminationArg
        No value
    inap.BCSMEvent  BCSMEvent
        No value
    inap.CallFilteringArg  CallFilteringArg
        No value
    inap.CallGapArg  CallGapArg
        No value
    inap.CallInformationReportArg  CallInformationReportArg
        No value
    inap.CallInformationRequestArg  CallInformationRequestArg
        No value
    inap.CalledPartyNumber  CalledPartyNumber
        Byte array
    inap.CancelArg  CancelArg
        Unsigned 32-bit integer
    inap.CancelStatusReportRequestArg  CancelStatusReportRequestArg
        No value
    inap.ChargingEvent  ChargingEvent
        No value
    inap.CollectInformationArg  CollectInformationArg
        No value
    inap.CollectedInformationArg  CollectedInformationArg
        No value
    inap.ComponentType  ComponentType
        Unsigned 32-bit integer
    inap.ConnectArg  ConnectArg
        No value
    inap.ConnectToResourceArg  ConnectToResourceArg
        No value
    inap.ContinueWithArgumentArg  ContinueWithArgumentArg
        No value
    inap.CounterAndValue  CounterAndValue
        No value
    inap.CreateCallSegmentAssociationArg  CreateCallSegmentAssociationArg
        No value
    inap.CreateCallSegmentAssociationResultArg  CreateCallSegmentAssociationResultArg
        No value
    inap.CreateOrRemoveTriggerDataArg  CreateOrRemoveTriggerDataArg
        No value
    inap.CreateOrRemoveTriggerDataResultArg  CreateOrRemoveTriggerDataResultArg
        No value
    inap.DisconnectForwardConnectionWithArgumentArg  DisconnectForwardConnectionWithArgumentArg
        No value
    inap.DisconnectLegArg  DisconnectLegArg
        No value
    inap.EntityReleasedArg  EntityReleasedArg
        Unsigned 32-bit integer
    inap.Entry  Entry
        Unsigned 32-bit integer
    inap.EstablishTemporaryConnectionArg  EstablishTemporaryConnectionArg
        No value
    inap.EventNotificationChargingArg  EventNotificationChargingArg
        No value
    inap.EventReportBCSMArg  EventReportBCSMArg
        No value
    inap.EventReportFacilityArg  EventReportFacilityArg
        No value
    inap.ExtensionField  ExtensionField
        No value
    inap.FacilitySelectedAndAvailableArg  FacilitySelectedAndAvailableArg
        No value
    inap.FurnishChargingInformationArg  FurnishChargingInformationArg
        Byte array
    inap.GenericNumber  GenericNumber
        Byte array
    inap.HoldCallInNetworkArg  HoldCallInNetworkArg
        Unsigned 32-bit integer
    inap.INprofile  INprofile
        No value
    inap.InitialDPArg  InitialDPArg
        No value
    inap.InitiateCallAttemptArg  InitiateCallAttemptArg
        No value
    inap.Integer4  Integer4
        Unsigned 32-bit integer
    inap.InvokeId_present  InvokeId.present
        Signed 32-bit integer
        InvokeId_present
    inap.ManageTriggerDataArg  ManageTriggerDataArg
        No value
    inap.ManageTriggerDataResultArg  ManageTriggerDataResultArg
        Unsigned 32-bit integer
    inap.MergeCallSegmentsArg  MergeCallSegmentsArg
        No value
    inap.MessageReceivedArg  MessageReceivedArg
        No value
    inap.MidCallArg  MidCallArg
        No value
    inap.MidCallControlInfo_item  MidCallControlInfo item
        No value
    inap.MonitorRouteReportArg  MonitorRouteReportArg
        No value
    inap.MonitorRouteRequestArg  MonitorRouteRequestArg
        No value
    inap.MoveCallSegmentsArg  MoveCallSegmentsArg
        No value
    inap.MoveLegArg  MoveLegArg
        No value
    inap.OAbandonArg  OAbandonArg
        No value
    inap.OAnswerArg  OAnswerArg
        No value
    inap.OCalledPartyBusyArg  OCalledPartyBusyArg
        No value
    inap.ODisconnectArg  ODisconnectArg
        No value
    inap.ONoAnswerArg  ONoAnswerArg
        No value
    inap.OSuspendedArg  OSuspendedArg
        No value
    inap.OriginationAttemptArg  OriginationAttemptArg
        No value
    inap.OriginationAttemptAuthorizedArg  OriginationAttemptAuthorizedArg
        No value
    inap.PAR_cancelFailed  PAR-cancelFailed
        No value
    inap.PAR_requestedInfoError  PAR-requestedInfoError
        Unsigned 32-bit integer
    inap.PAR_taskRefused  PAR-taskRefused
        Unsigned 32-bit integer
    inap.PlayAnnouncementArg  PlayAnnouncementArg
        No value
    inap.PromptAndCollectUserInformationArg  PromptAndCollectUserInformationArg
        No value
    inap.PromptAndReceiveMessageArg  PromptAndReceiveMessageArg
        No value
    inap.ReceivedInformationArg  ReceivedInformationArg
        Unsigned 32-bit integer
    inap.ReconnectArg  ReconnectArg
        No value
    inap.ReferralParameter  ReferralParameter
        No value
    inap.ReleaseCallArg  ReleaseCallArg
        Unsigned 32-bit integer
    inap.ReportUTSIArg  ReportUTSIArg
        No value
    inap.RequestCurrentStatusReportArg  RequestCurrentStatusReportArg
        Unsigned 32-bit integer
    inap.RequestCurrentStatusReportResultArg  RequestCurrentStatusReportResultArg
        No value
    inap.RequestEveryStatusChangeReportArg  RequestEveryStatusChangeReportArg
        No value
    inap.RequestFirstStatusMatchReportArg  RequestFirstStatusMatchReportArg
        No value
    inap.RequestNotificationChargingEventArg  RequestNotificationChargingEventArg
        Unsigned 32-bit integer
    inap.RequestReportBCSMEventArg  RequestReportBCSMEventArg
        No value
    inap.RequestReportFacilityEventArg  RequestReportFacilityEventArg
        No value
    inap.RequestReportUTSIArg  RequestReportUTSIArg
        No value
    inap.RequestedInformation  RequestedInformation
        No value
    inap.RequestedInformationType  RequestedInformationType
        Unsigned 32-bit integer
    inap.RequestedUTSI  RequestedUTSI
        No value
    inap.ResetTimerArg  ResetTimerArg
        No value
    inap.Route  Route
        Byte array
    inap.RouteCountersAndValue  RouteCountersAndValue
        No value
    inap.RouteSelectFailureArg  RouteSelectFailureArg
        No value
    inap.SRFCallGapArg  SRFCallGapArg
        No value
    inap.ScfTaskRefusedParameter  ScfTaskRefusedParameter
        No value
    inap.ScriptCloseArg  ScriptCloseArg
        No value
    inap.ScriptEventArg  ScriptEventArg
        No value
    inap.ScriptInformationArg  ScriptInformationArg
        No value
    inap.ScriptRunArg  ScriptRunArg
        No value
    inap.SelectFacilityArg  SelectFacilityArg
        No value
    inap.SelectRouteArg  SelectRouteArg
        No value
    inap.SendChargingInformationArg  SendChargingInformationArg
        No value
    inap.SendFacilityInformationArg  SendFacilityInformationArg
        No value
    inap.SendSTUIArg  SendSTUIArg
        No value
    inap.ServiceFilteringResponseArg  ServiceFilteringResponseArg
        No value
    inap.SetServiceProfileArg  SetServiceProfileArg
        No value
    inap.SpecializedResourceReportArg  SpecializedResourceReportArg
        No value
    inap.SplitLegArg  SplitLegArg
        No value
    inap.StatusReportArg  StatusReportArg
        No value
    inap.TAnswerArg  TAnswerArg
        No value
    inap.TBusyArg  TBusyArg
        No value
    inap.TDisconnectArg  TDisconnectArg
        No value
    inap.TNoAnswerArg  TNoAnswerArg
        No value
    inap.TSuspendedArg  TSuspendedArg
        No value
    inap.TermAttemptAuthorizedArg  TermAttemptAuthorizedArg
        No value
    inap.TerminationAttemptArg  TerminationAttemptArg
        No value
    inap.Trigger  Trigger
        No value
    inap.TriggerResult  TriggerResult
        No value
    inap.UnavailableNetworkResource  UnavailableNetworkResource
        Unsigned 32-bit integer
    inap.VariablePart  VariablePart
        Unsigned 32-bit integer
    inap.aALParameters  aALParameters
        Byte array
    inap.aChBillingChargingCharacteristics  aChBillingChargingCharacteristics
        Byte array
    inap.aESACalledParty  aESACalledParty
        Byte array
    inap.aESACallingParty  aESACallingParty
        Byte array
    inap.aTMCellRate  aTMCellRate
        Byte array
    inap.abandonCause  abandonCause
        Byte array
        Cause
    inap.absent  absent
        No value
    inap.access  access
        Byte array
        CalledPartyNumber
    inap.accessCode  accessCode
        Byte array
    inap.action  action
        Unsigned 32-bit integer
    inap.actionIndicator  actionIndicator
        Unsigned 32-bit integer
    inap.actionOnProfile  actionOnProfile
        Unsigned 32-bit integer
    inap.actionPerformed  actionPerformed
        Unsigned 32-bit integer
    inap.additionalATMCellRate  additionalATMCellRate
        Byte array
    inap.additionalCallingPartyNumber  additionalCallingPartyNumber
        Byte array
    inap.addressAndService  addressAndService
        No value
    inap.agreements  agreements
        Object Identifier
        OBJECT_IDENTIFIER
    inap.alertingPattern  alertingPattern
        Byte array
    inap.allCallSegments  allCallSegments
        No value
    inap.allRequests  allRequests
        No value
    inap.allRequestsForCallSegment  allRequestsForCallSegment
        Unsigned 32-bit integer
        CallSegmentID
    inap.allowCdINNoPresentationInd  allowCdINNoPresentationInd
        Boolean
        BOOLEAN
    inap.alternativeATMTrafficDescriptor  alternativeATMTrafficDescriptor
        Byte array
    inap.alternativeCalledPartyIds  alternativeCalledPartyIds
        Unsigned 32-bit integer
        AlternativeIdentities
    inap.alternativeOriginalCalledPartyIds  alternativeOriginalCalledPartyIds
        Unsigned 32-bit integer
        AlternativeIdentities
    inap.alternativeOriginatingPartyIds  alternativeOriginatingPartyIds
        Unsigned 32-bit integer
        AlternativeIdentities
    inap.alternativeRedirectingPartyIds  alternativeRedirectingPartyIds
        Unsigned 32-bit integer
        AlternativeIdentities
    inap.analysedInfoSpecificInfo  analysedInfoSpecificInfo
        No value
    inap.applicationTimer  applicationTimer
        Unsigned 32-bit integer
    inap.argument  argument
        No value
    inap.assistingSSPIPRoutingAddress  assistingSSPIPRoutingAddress
        Byte array
    inap.attributes  attributes
        Byte array
        OCTET_STRING_SIZE_b3__minAttributesLength_b3__maxAttributesLength
    inap.authoriseRouteFailureCause  authoriseRouteFailureCause
        Byte array
        Cause
    inap.authorizeRouteFailure  authorizeRouteFailure
        No value
    inap.bCSMFailure  bCSMFailure
        No value
    inap.bISDNParameters  bISDNParameters
        No value
    inap.backwardGVNS  backwardGVNS
        Byte array
    inap.backwardServiceInteractionInd  backwardServiceInteractionInd
        No value
    inap.basicGapCriteria  basicGapCriteria
        Unsigned 32-bit integer
    inap.bcsmEventCorrelationID  bcsmEventCorrelationID
        Byte array
        CorrelationID
    inap.bcsmEvents  bcsmEvents
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_numOfBCSMEvents_OF_BCSMEvent
    inap.bearerCap  bearerCap
        Byte array
    inap.bearerCapability  bearerCapability
        Unsigned 32-bit integer
    inap.both  both
        No value
    inap.bothwayThroughConnectionInd  bothwayThroughConnectionInd
        Unsigned 32-bit integer
    inap.broadbandBearerCap  broadbandBearerCap
        Byte array
        OCTET_STRING_SIZE_minBroadbandBearerCapabilityLength_maxBroadbandBearerCapabilityLength
    inap.busyCause  busyCause
        Byte array
        Cause
    inap.cCSS  cCSS
        Boolean
    inap.cDVTDescriptor  cDVTDescriptor
        Byte array
    inap.cGEncountered  cGEncountered
        Unsigned 32-bit integer
    inap.cNInfo  cNInfo
        Byte array
    inap.cSFailure  cSFailure
        No value
    inap.callAccepted  callAccepted
        No value
    inap.callAttemptElapsedTimeValue  callAttemptElapsedTimeValue
        Unsigned 32-bit integer
        INTEGER_0_255
    inap.callCompletionTreatmentIndicator  callCompletionTreatmentIndicator
        Byte array
        OCTET_STRING_SIZE_1
    inap.callConnectedElapsedTimeValue  callConnectedElapsedTimeValue
        Unsigned 32-bit integer
        Integer4
    inap.callDiversionTreatmentIndicator  callDiversionTreatmentIndicator
        Byte array
        OCTET_STRING_SIZE_1
    inap.callOfferingTreatmentIndicator  callOfferingTreatmentIndicator
        Byte array
        OCTET_STRING_SIZE_1
    inap.callProcessingOperation  callProcessingOperation
        Unsigned 32-bit integer
    inap.callReference  callReference
        Byte array
    inap.callSegment  callSegment
        Unsigned 32-bit integer
        INTEGER_1_numOfCSs
    inap.callSegmentID  callSegmentID
        Unsigned 32-bit integer
    inap.callSegmentToCancel  callSegmentToCancel
        No value
    inap.callSegmentToRelease  callSegmentToRelease
        No value
    inap.callSegments  callSegments
        Unsigned 32-bit integer
    inap.callSegments_item  callSegments item
        No value
    inap.callStopTimeValue  callStopTimeValue
        Byte array
        DateAndTime
    inap.callWaitingTreatmentIndicator  callWaitingTreatmentIndicator
        Byte array
        OCTET_STRING_SIZE_1
    inap.calledAddressAndService  calledAddressAndService
        No value
    inap.calledAddressValue  calledAddressValue
        Byte array
        Digits
    inap.calledDirectoryNumber  calledDirectoryNumber
        Byte array
    inap.calledFacilityGroup  calledFacilityGroup
        Unsigned 32-bit integer
        FacilityGroup
    inap.calledFacilityGroupMember  calledFacilityGroupMember
        Signed 32-bit integer
        FacilityGroupMember
    inap.calledINNumberOverriding  calledINNumberOverriding
        Boolean
        BOOLEAN
    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
    inap.callingAddressValue  callingAddressValue
        Byte array
        Digits
    inap.callingFacilityGroup  callingFacilityGroup
        Unsigned 32-bit integer
        FacilityGroup
    inap.callingFacilityGroupMember  callingFacilityGroupMember
        Signed 32-bit integer
        FacilityGroupMember
    inap.callingGeodeticLocation  callingGeodeticLocation
        Byte array
    inap.callingLineID  callingLineID
        Byte array
        Digits
    inap.callingPartyBusinessGroupID  callingPartyBusinessGroupID
        Byte array
    inap.callingPartyNumber  callingPartyNumber
        Byte array
    inap.callingPartySubaddress  callingPartySubaddress
        Byte array
    inap.callingPartysCategory  callingPartysCategory
        Unsigned 16-bit integer
    inap.cancelDigit  cancelDigit
        Byte array
        OCTET_STRING_SIZE_1_2
    inap.carrier  carrier
        Byte array
    inap.cause  cause
        Byte array
    inap.chargeNumber  chargeNumber
        Byte array
    inap.collectedDigits  collectedDigits
        No value
    inap.collectedInfo  collectedInfo
        Unsigned 32-bit integer
    inap.collectedInfoSpecificInfo  collectedInfoSpecificInfo
        No value
    inap.component  component
        Unsigned 32-bit integer
    inap.componentCorrelationID  componentCorrelationID
        Signed 32-bit integer
    inap.componentInfo  componentInfo
        Byte array
        OCTET_STRING_SIZE_1_118
    inap.componentType  componentType
        Unsigned 32-bit integer
    inap.componentTypes  componentTypes
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_3_OF_ComponentType
    inap.componenttCorrelationID  componenttCorrelationID
        Signed 32-bit integer
        ComponentCorrelationID
    inap.compoundCapCriteria  compoundCapCriteria
        No value
        CompoundCriteria
    inap.conferenceTreatmentIndicator  conferenceTreatmentIndicator
        Byte array
        OCTET_STRING_SIZE_1
    inap.connectTime  connectTime
        Unsigned 32-bit integer
        Integer4
    inap.connectedNumberTreatmentInd  connectedNumberTreatmentInd
        Unsigned 32-bit integer
    inap.connectedParty  connectedParty
        Unsigned 32-bit integer
    inap.connectionIdentifier  connectionIdentifier
        Byte array
    inap.controlDigits  controlDigits
        No value
    inap.controlType  controlType
        Unsigned 32-bit integer
    inap.correlationID  correlationID
        Byte array
    inap.counterID  counterID
        Unsigned 32-bit integer
    inap.counterValue  counterValue
        Unsigned 32-bit integer
        Integer4
    inap.countersValue  countersValue
        Unsigned 32-bit integer
    inap.createOrRemove  createOrRemove
        Unsigned 32-bit integer
        CreateOrRemoveIndicator
    inap.createdCallSegmentAssociation  createdCallSegmentAssociation
        Unsigned 32-bit integer
        CSAID
    inap.criticality  criticality
        Unsigned 32-bit integer
        CriticalityType
    inap.csID  csID
        Unsigned 32-bit integer
        CallSegmentID
    inap.cug_Index  cug-Index
        String
    inap.cug_Interlock  cug-Interlock
        Byte array
    inap.cug_OutgoingAccess  cug-OutgoingAccess
        No value
    inap.cumulativeTransitDelay  cumulativeTransitDelay
        Byte array
    inap.cutAndPaste  cutAndPaste
        Unsigned 32-bit integer
    inap.dPName  dPName
        Unsigned 32-bit integer
        EventTypeBCSM
    inap.date  date
        Byte array
        OCTET_STRING_SIZE_3
    inap.defaultFaultHandling  defaultFaultHandling
        No value
    inap.destinationIndex  destinationIndex
        Byte array
    inap.destinationNumberRoutingAddress  destinationNumberRoutingAddress
        Byte array
        CalledPartyNumber
    inap.destinationRoutingAddress  destinationRoutingAddress
        Unsigned 32-bit integer
    inap.detachSignallingPath  detachSignallingPath
        No value
    inap.detectModem  detectModem
        Boolean
        BOOLEAN
    inap.dialledDigits  dialledDigits
        Byte array
        CalledPartyNumber
    inap.dialledNumber  dialledNumber
        Byte array
        Digits
    inap.digitsResponse  digitsResponse
        Byte array
        Digits
    inap.disconnectFromIPForbidden  disconnectFromIPForbidden
        Boolean
        BOOLEAN
    inap.displayInformation  displayInformation
        String
    inap.dpAssignment  dpAssignment
        Unsigned 32-bit integer
    inap.dpCriteria  dpCriteria
        Unsigned 32-bit integer
        EventTypeBCSM
    inap.dpName  dpName
        Unsigned 32-bit integer
        EventTypeBCSM
    inap.dpSpecificCommonParameters  dpSpecificCommonParameters
        No value
    inap.dpSpecificCriteria  dpSpecificCriteria
        Unsigned 32-bit integer
    inap.duration  duration
        Signed 32-bit integer
    inap.ectTreatmentIndicator  ectTreatmentIndicator
        Byte array
        OCTET_STRING_SIZE_1
    inap.elementaryMessageID  elementaryMessageID
        Unsigned 32-bit integer
        Integer4
    inap.elementaryMessageIDs  elementaryMessageIDs
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_b3__numOfMessageIDs_OF_Integer4
    inap.empty  empty
        No value
    inap.endOfRecordingDigit  endOfRecordingDigit
        Byte array
        OCTET_STRING_SIZE_1_2
    inap.endOfReplyDigit  endOfReplyDigit
        Byte array
        OCTET_STRING_SIZE_1_2
    inap.endToEndTransitDelay  endToEndTransitDelay
        Byte array
    inap.errcode  errcode
        Unsigned 32-bit integer
        Code
    inap.errorTreatment  errorTreatment
        Unsigned 32-bit integer
    inap.eventSpecificInformationBCSM  eventSpecificInformationBCSM
        Unsigned 32-bit integer
    inap.eventSpecificInformationCharging  eventSpecificInformationCharging
        Byte array
    inap.eventTypeBCSM  eventTypeBCSM
        Unsigned 32-bit integer
    inap.eventTypeCharging  eventTypeCharging
        Byte array
    inap.exportSignallingPath  exportSignallingPath
        No value
    inap.extensions  extensions
        Unsigned 32-bit integer
    inap.facilityGroupID  facilityGroupID
        Unsigned 32-bit integer
        FacilityGroup
    inap.facilityGroupMemberID  facilityGroupMemberID
        Signed 32-bit integer
        INTEGER
    inap.facilitySelectedAndAvailable  facilitySelectedAndAvailable
        No value
    inap.failureCause  failureCause
        Byte array
        Cause
    inap.featureCode  featureCode
        Byte array
    inap.featureRequestIndicator  featureRequestIndicator
        Unsigned 32-bit integer
    inap.filteredCallTreatment  filteredCallTreatment
        No value
    inap.filteringCharacteristics  filteringCharacteristics
        Unsigned 32-bit integer
    inap.filteringCriteria  filteringCriteria
        Unsigned 32-bit integer
    inap.filteringTimeOut  filteringTimeOut
        Unsigned 32-bit integer
    inap.firstDigitTimeOut  firstDigitTimeOut
        Unsigned 32-bit integer
        INTEGER_1_127
    inap.forcedRelease  forcedRelease
        Boolean
        BOOLEAN
    inap.forwardCallIndicators  forwardCallIndicators
        Byte array
    inap.forwardGVNS  forwardGVNS
        Byte array
    inap.forwardServiceInteractionInd  forwardServiceInteractionInd
        No value
    inap.forwardingCondition  forwardingCondition
        Unsigned 32-bit integer
    inap.gapAllInTraffic  gapAllInTraffic
        No value
    inap.gapCriteria  gapCriteria
        Unsigned 32-bit integer
    inap.gapIndicators  gapIndicators
        No value
    inap.gapInterval  gapInterval
        Signed 32-bit integer
        Interval
    inap.gapOnResource  gapOnResource
        Unsigned 32-bit integer
    inap.gapOnService  gapOnService
        No value
    inap.gapTreatment  gapTreatment
        Unsigned 32-bit integer
    inap.general  general
        Signed 32-bit integer
        GeneralProblem
    inap.genericIdentifier  genericIdentifier
        Byte array
    inap.genericName  genericName
        Byte array
    inap.genericNumbers  genericNumbers
        Unsigned 32-bit integer
    inap.global  global
        Object Identifier
        OBJECT_IDENTIFIER
    inap.globalCallReference  globalCallReference
        Byte array
    inap.group  group
        Unsigned 32-bit integer
        FacilityGroup
    inap.highLayerCompatibility  highLayerCompatibility
        Byte array
    inap.holdTreatmentIndicator  holdTreatmentIndicator
        Byte array
        OCTET_STRING_SIZE_1
    inap.holdcause  holdcause
        Byte array
    inap.huntGroup  huntGroup
        Byte array
        OCTET_STRING
    inap.iA5Information  iA5Information
        Boolean
        BOOLEAN
    inap.iA5Response  iA5Response
        String
        IA5String
    inap.iNServiceCompatibilityIndication  iNServiceCompatibilityIndication
        Unsigned 32-bit integer
    inap.iNServiceCompatibilityResponse  iNServiceCompatibilityResponse
        Unsigned 32-bit integer
    inap.iNServiceControlCode  iNServiceControlCode
        Byte array
        Digits
    inap.iNServiceControlCodeHigh  iNServiceControlCodeHigh
        Byte array
        Digits
    inap.iNServiceControlCodeLow  iNServiceControlCodeLow
        Byte array
        Digits
    inap.iNprofiles  iNprofiles
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_numOfINProfile_OF_INprofile
    inap.iPAddressAndresource  iPAddressAndresource
        No value
    inap.iPAddressValue  iPAddressValue
        Byte array
        Digits
    inap.iPAvailable  iPAvailable
        Byte array
    inap.iPSSPCapabilities  iPSSPCapabilities
        Byte array
    inap.iSDNAccessRelatedInformation  iSDNAccessRelatedInformation
        Byte array
    inap.inbandInfo  inbandInfo
        No value
    inap.incomingSignallingBufferCopy  incomingSignallingBufferCopy
        Boolean
        BOOLEAN
    inap.informationToRecord  informationToRecord
        No value
    inap.informationToSend  informationToSend
        Unsigned 32-bit integer
    inap.initialCallSegment  initialCallSegment
        Byte array
        Cause
    inap.integer  integer
        Unsigned 32-bit integer
        Integer4
    inap.interDigitTimeOut  interDigitTimeOut
        Unsigned 32-bit integer
        INTEGER_1_127
    inap.interruptableAnnInd  interruptableAnnInd
        Boolean
        BOOLEAN
    inap.interval  interval
        Signed 32-bit integer
        INTEGER_M1_32000
    inap.invoke  invoke
        No value
    inap.invokeID  invokeID
        Signed 32-bit integer
    inap.invokeId  invokeId
        Unsigned 32-bit integer
    inap.ipAddressAndCallSegment  ipAddressAndCallSegment
        No value
    inap.ipAddressAndLegID  ipAddressAndLegID
        No value
    inap.ipRelatedInformation  ipRelatedInformation
        No value
    inap.ipRelationInformation  ipRelationInformation
        No value
        IPRelatedInformation
    inap.ipRoutingAddress  ipRoutingAddress
        Byte array
    inap.lastEventIndicator  lastEventIndicator
        Boolean
        BOOLEAN
    inap.legID  legID
        Unsigned 32-bit integer
    inap.legIDToMove  legIDToMove
        Unsigned 32-bit integer
        LegID
    inap.legToBeCreated  legToBeCreated
        Unsigned 32-bit integer
        LegID
    inap.legToBeReleased  legToBeReleased
        Unsigned 32-bit integer
        LegID
    inap.legToBeSplit  legToBeSplit
        Unsigned 32-bit integer
        LegID
    inap.legorCSID  legorCSID
        Unsigned 32-bit integer
    inap.legs  legs
        Unsigned 32-bit integer
    inap.legs_item  legs item
        No value
    inap.lineID  lineID
        Byte array
        Digits
    inap.linkedId  linkedId
        Unsigned 32-bit integer
    inap.local  local
        Byte array
        OCTET_STRING_SIZE_minUSIServiceIndicatorLength_maxUSIServiceIndicatorLength
    inap.locationNumber  locationNumber
        Byte array
    inap.mailBoxID  mailBoxID
        Byte array
    inap.maximumNbOfDigits  maximumNbOfDigits
        Unsigned 32-bit integer
        INTEGER_1_127
    inap.maximumNumberOfCounters  maximumNumberOfCounters
        Unsigned 32-bit integer
    inap.media  media
        Unsigned 32-bit integer
    inap.mergeSignallingPaths  mergeSignallingPaths
        No value
    inap.messageContent  messageContent
        String
        IA5String_SIZE_b3__minMessageContentLength_b3__maxMessageContentLength
    inap.messageDeletionTimeOut  messageDeletionTimeOut
        Unsigned 32-bit integer
        INTEGER_1_3600
    inap.messageID  messageID
        Unsigned 32-bit integer
    inap.messageType  messageType
        Unsigned 32-bit integer
    inap.midCallControlInfo  midCallControlInfo
        Unsigned 32-bit integer
    inap.midCallInfoType  midCallInfoType
        No value
    inap.midCallReportType  midCallReportType
        Unsigned 32-bit integer
    inap.minAcceptableATMTrafficDescriptor  minAcceptableATMTrafficDescriptor
        Byte array
    inap.minNumberOfDigits  minNumberOfDigits
        Unsigned 32-bit integer
        NumberOfDigits
    inap.minimumNbOfDigits  minimumNbOfDigits
        Unsigned 32-bit integer
        INTEGER_1_127
    inap.miscCallInfo  miscCallInfo
        No value
    inap.modemdetected  modemdetected
        Boolean
        BOOLEAN
    inap.modifyResultType  modifyResultType
        Unsigned 32-bit integer
    inap.monitorDuration  monitorDuration
        Signed 32-bit integer
        Duration
    inap.monitorMode  monitorMode
        Unsigned 32-bit integer
    inap.monitoringCriteria  monitoringCriteria
        Unsigned 32-bit integer
    inap.monitoringTimeout  monitoringTimeout
        Unsigned 32-bit integer
    inap.networkSpecific  networkSpecific
        Unsigned 32-bit integer
        Integer4
    inap.newCallSegment  newCallSegment
        Unsigned 32-bit integer
        CallSegmentID
    inap.newCallSegmentAssociation  newCallSegmentAssociation
        Unsigned 32-bit integer
        CSAID
    inap.newLeg  newLeg
        Unsigned 32-bit integer
        LegID
    inap.nocharge  nocharge
        Boolean
        BOOLEAN
    inap.nonCUGCall  nonCUGCall
        No value
    inap.none  none
        No value
    inap.notificationDuration  notificationDuration
        Unsigned 32-bit integer
        ApplicationTimer
    inap.number  number
        Byte array
        Digits
    inap.numberOfCalls  numberOfCalls
        Unsigned 32-bit integer
        Integer4
    inap.numberOfDigits  numberOfDigits
        Unsigned 32-bit integer
    inap.numberOfDigitsTwo  numberOfDigitsTwo
        No value
    inap.numberOfRepetitions  numberOfRepetitions
        Unsigned 32-bit integer
        INTEGER_1_127
    inap.numberingPlan  numberingPlan
        Byte array
    inap.oAbandon  oAbandon
        No value
    inap.oAnswerSpecificInfo  oAnswerSpecificInfo
        No value
    inap.oCalledPartyBusySpecificInfo  oCalledPartyBusySpecificInfo
        No value
    inap.oDisconnectSpecificInfo  oDisconnectSpecificInfo
        No value
    inap.oMidCallInfo  oMidCallInfo
        No value
        MidCallInfo
    inap.oMidCallSpecificInfo  oMidCallSpecificInfo
        No value
    inap.oModifyRequestSpecificInfo  oModifyRequestSpecificInfo
        No value
    inap.oModifyResultSpecificInfo  oModifyResultSpecificInfo
        No value
    inap.oNoAnswerSpecificInfo  oNoAnswerSpecificInfo
        No value
    inap.oReAnswer  oReAnswer
        No value
    inap.oSuspend  oSuspend
        No value
    inap.oTermSeizedSpecificInfo  oTermSeizedSpecificInfo
        No value
    inap.oneTrigger  oneTrigger
        Signed 32-bit integer
        INTEGER
    inap.oneTriggerResult  oneTriggerResult
        No value
    inap.opcode  opcode
        Unsigned 32-bit integer
        Code
    inap.operation  operation
        Signed 32-bit integer
        InvokeID
    inap.origAttemptAuthorized  origAttemptAuthorized
        No value
    inap.originalCalledPartyID  originalCalledPartyID
        Byte array
    inap.originationAttemptDenied  originationAttemptDenied
        No value
    inap.originationDeniedCause  originationDeniedCause
        Byte array
        Cause
    inap.overrideLineRestrictions  overrideLineRestrictions
        Boolean
        BOOLEAN
    inap.parameter  parameter
        No value
    inap.partyToCharge  partyToCharge
        Unsigned 32-bit integer
        LegID
    inap.partyToConnect  partyToConnect
        Unsigned 32-bit integer
    inap.partyToDisconnect  partyToDisconnect
        Unsigned 32-bit integer
    inap.preferredLanguage  preferredLanguage
        String
        Language
    inap.prefix  prefix
        Byte array
        Digits
    inap.present  present
        Signed 32-bit integer
        T_linkedIdPresent
    inap.price  price
        Byte array
        OCTET_STRING_SIZE_4
    inap.privateFacilityID  privateFacilityID
        Signed 32-bit integer
        INTEGER
    inap.problem  problem
        Unsigned 32-bit integer
    inap.profile  profile
        Unsigned 32-bit integer
        ProfileIdentifier
    inap.profileAndDP  profileAndDP
        No value
        TriggerDataIdentifier
    inap.qOSParameter  qOSParameter
        Byte array
    inap.reason  reason
        Byte array
    inap.receivedStatus  receivedStatus
        Unsigned 32-bit integer
    inap.receivingSideID  receivingSideID
        Byte array
        LegType
    inap.recordedMessageID  recordedMessageID
        Unsigned 32-bit integer
    inap.recordedMessageUnits  recordedMessageUnits
        Unsigned 32-bit integer
        INTEGER_1_b3__maxRecordedMessageUnits
    inap.redirectReason  redirectReason
        Byte array
    inap.redirectServiceTreatmentInd  redirectServiceTreatmentInd
        No value
    inap.redirectingPartyID  redirectingPartyID
        Byte array
    inap.redirectionInformation  redirectionInformation
        Byte array
    inap.registratorIdentifier  registratorIdentifier
        Byte array
    inap.reject  reject
        No value
    inap.relayedComponent  relayedComponent
        No value
        EMBEDDED_PDV
    inap.releaseCause  releaseCause
        Byte array
        Cause
    inap.releaseCauseValue  releaseCauseValue
        Byte array
        Cause
    inap.releaseIndication  releaseIndication
        Boolean
        BOOLEAN
    inap.replayAllowed  replayAllowed
        Boolean
        BOOLEAN
    inap.replayDigit  replayDigit
        Byte array
        OCTET_STRING_SIZE_1_2
    inap.reportCondition  reportCondition
        Unsigned 32-bit integer
    inap.requestAnnouncementComplete  requestAnnouncementComplete
        Boolean
        BOOLEAN
    inap.requestedInformationList  requestedInformationList
        Unsigned 32-bit integer
    inap.requestedInformationType  requestedInformationType
        Unsigned 32-bit integer
    inap.requestedInformationTypeList  requestedInformationTypeList
        Unsigned 32-bit integer
    inap.requestedInformationValue  requestedInformationValue
        Unsigned 32-bit integer
    inap.requestedNumberOfDigits  requestedNumberOfDigits
        Unsigned 32-bit integer
        NumberOfDigits
    inap.requestedUTSIList  requestedUTSIList
        Unsigned 32-bit integer
    inap.resourceAddress  resourceAddress
        Unsigned 32-bit integer
    inap.resourceID  resourceID
        Unsigned 32-bit integer
    inap.resourceStatus  resourceStatus
        Unsigned 32-bit integer
    inap.responseCondition  responseCondition
        Unsigned 32-bit integer
    inap.restartAllowed  restartAllowed
        Boolean
        BOOLEAN
    inap.restartRecordingDigit  restartRecordingDigit
        Byte array
        OCTET_STRING_SIZE_1_2
    inap.result  result
        No value
    inap.results  results
        Unsigned 32-bit integer
        TriggerResults
    inap.returnError  returnError
        No value
    inap.returnResult  returnResult
        No value
    inap.route  route
        Byte array
    inap.routeCounters  routeCounters
        Unsigned 32-bit integer
        RouteCountersValue
    inap.routeIndex  routeIndex
        Byte array
        OCTET_STRING
    inap.routeList  routeList
        Unsigned 32-bit integer
    inap.routeSelectFailureSpecificInfo  routeSelectFailureSpecificInfo
        No value
    inap.routeingNumber  routeingNumber
        Byte array
    inap.sCIBillingChargingCharacteristics  sCIBillingChargingCharacteristics
        Byte array
    inap.sDSSinformation  sDSSinformation
        Byte array
    inap.sFBillingChargingCharacteristics  sFBillingChargingCharacteristics
        Byte array
    inap.sRFgapCriteria  sRFgapCriteria
        Unsigned 32-bit integer
    inap.scfID  scfID
        Byte array
    inap.securityParameters  securityParameters
        No value
    inap.sendingSideID  sendingSideID
        Byte array
        LegType
    inap.serviceAddressInformation  serviceAddressInformation
        No value
    inap.serviceInteractionIndicators  serviceInteractionIndicators
        Byte array
    inap.serviceInteractionIndicatorsTwo  serviceInteractionIndicatorsTwo
        No value
    inap.serviceKey  serviceKey
        Unsigned 32-bit integer
    inap.serviceProfileIdentifier  serviceProfileIdentifier
        Byte array
    inap.servingAreaID  servingAreaID
        Byte array
    inap.severalTriggerResult  severalTriggerResult
        No value
    inap.sourceCallSegment  sourceCallSegment
        Unsigned 32-bit integer
        CallSegmentID
    inap.sourceLeg  sourceLeg
        Unsigned 32-bit integer
        LegID
    inap.startDigit  startDigit
        Byte array
        OCTET_STRING_SIZE_1_2
    inap.startTime  startTime
        Byte array
        DateAndTime
    inap.stopTime  stopTime
        Byte array
        DateAndTime
    inap.subscriberID  subscriberID
        Byte array
        GenericNumber
    inap.suppressCallDiversionNotification  suppressCallDiversionNotification
        Boolean
        BOOLEAN
    inap.suppressCallTransferNotification  suppressCallTransferNotification
        Boolean
        BOOLEAN
    inap.suppressVPNAPP  suppressVPNAPP
        Boolean
        BOOLEAN
    inap.suspendTimer  suspendTimer
        Unsigned 32-bit integer
    inap.tAbandon  tAbandon
        No value
    inap.tAnswerSpecificInfo  tAnswerSpecificInfo
        No value
    inap.tBusySpecificInfo  tBusySpecificInfo
        No value
    inap.tDPIdentifer  tDPIdentifer
        Signed 32-bit integer
        INTEGER
    inap.tDPIdentifier  tDPIdentifier
        Unsigned 32-bit integer
    inap.tDisconnectSpecificInfo  tDisconnectSpecificInfo
        No value
    inap.tMidCallInfo  tMidCallInfo
        No value
        MidCallInfo
    inap.tMidCallSpecificInfo  tMidCallSpecificInfo
        No value
    inap.tModifyRequestSpecificInfo  tModifyRequestSpecificInfo
        No value
    inap.tModifyResultSpecificInfo  tModifyResultSpecificInfo
        No value
    inap.tNoAnswerSpecificInfo  tNoAnswerSpecificInfo
        No value
    inap.tReAnswer  tReAnswer
        No value
    inap.tSuspend  tSuspend
        No value
    inap.targetCallSegment  targetCallSegment
        Unsigned 32-bit integer
        CallSegmentID
    inap.targetCallSegmentAssociation  targetCallSegmentAssociation
        Unsigned 32-bit integer
        CSAID
    inap.terminalType  terminalType
        Unsigned 32-bit integer
    inap.terminationAttemptAuthorized  terminationAttemptAuthorized
        No value
    inap.terminationAttemptDenied  terminationAttemptDenied
        No value
    inap.terminationDeniedCause  terminationDeniedCause
        Byte array
        Cause
    inap.text  text
        No value
    inap.threshold  threshold
        Unsigned 32-bit integer
        Integer4
    inap.time  time
        Byte array
        OCTET_STRING_SIZE_2
    inap.timeToRecord  timeToRecord
        Unsigned 32-bit integer
        INTEGER_0_b3__maxRecordingTime
    inap.timeToRelease  timeToRelease
        Unsigned 32-bit integer
        TimerValue
    inap.timerID  timerID
        Unsigned 32-bit integer
    inap.timervalue  timervalue
        Unsigned 32-bit integer
    inap.tmr  tmr
        Byte array
        OCTET_STRING_SIZE_1
    inap.tone  tone
        No value
    inap.toneID  toneID
        Unsigned 32-bit integer
        Integer4
    inap.travellingClassMark  travellingClassMark
        Byte array
    inap.treatment  treatment
        Unsigned 32-bit integer
        GapTreatment
    inap.triggerDPType  triggerDPType
        Unsigned 32-bit integer
    inap.triggerData  triggerData
        No value
    inap.triggerDataIdentifier  triggerDataIdentifier
        Unsigned 32-bit integer
    inap.triggerID  triggerID
        Unsigned 32-bit integer
        EventTypeBCSM
    inap.triggerId  triggerId
        Unsigned 32-bit integer
    inap.triggerPar  triggerPar
        No value
    inap.triggerStatus  triggerStatus
        Unsigned 32-bit integer
    inap.triggerType  triggerType
        Unsigned 32-bit integer
    inap.triggers  triggers
        Unsigned 32-bit integer
    inap.trunkGroupID  trunkGroupID
        Signed 32-bit integer
        INTEGER
    inap.tryhere  tryhere
        No value
        AccessPointInformation
    inap.type  type
        Unsigned 32-bit integer
        Code
    inap.uIScriptId  uIScriptId
        Unsigned 32-bit integer
        Code
    inap.uIScriptResult  uIScriptResult
        No value
    inap.uIScriptSpecificInfo  uIScriptSpecificInfo
        No value
    inap.uSIInformation  uSIInformation
        Byte array
    inap.uSIServiceIndicator  uSIServiceIndicator
        Unsigned 32-bit integer
    inap.uSImonitorMode  uSImonitorMode
        Unsigned 32-bit integer
    inap.url  url
        String
        IA5String_SIZE_1_512
    inap.userDialogueDurationInd  userDialogueDurationInd
        Boolean
        BOOLEAN
    inap.vPNIndicator  vPNIndicator
        Boolean
    inap.value  value
        No value
    inap.variableMessage  variableMessage
        No value
    inap.variableParts  variableParts
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_b3__maxVariableParts_OF_VariablePart
    inap.voiceBack  voiceBack
        Boolean
        BOOLEAN
    inap.voiceInformation  voiceInformation
        Boolean
        BOOLEAN

Intelligent Platform Management Interface (ipmi)

    impi.bootopt06.bootinfo_timestamp  Boot Info Timestamp
        Unsigned 32-bit integer
    ipmi.app00.dev.id  Device ID
        Unsigned 8-bit integer
    ipmi.app00.dev.provides_dev_sdr  Device provides Device SDRs
        Boolean
    ipmi.app00.dev.rev  Device Revision (binary encoded)
        Unsigned 8-bit integer
    ipmi.app01.ads.bridge  Bridge
        Boolean
    ipmi.app01.ads.chassis  Chassis
        Boolean
    ipmi.app01.ads.fru  FRU Inventory
        Boolean
    ipmi.app01.ads.ipmb_ev_gen  Event Generator
        Boolean
    ipmi.app01.ads.ipmb_ev_recv  Event Receiver
        Boolean
    ipmi.app01.ads.sdr  SDR Repository
        Boolean
    ipmi.app01.ads.sel  SEL
        Boolean
    ipmi.app01.ads.sensor  Sensor
        Boolean
    ipmi.app01.dev.avail  Device availability
        Boolean
    ipmi.app01.fw.aux  Auxiliary Firmware Revision Information
        Byte array
    ipmi.app01.fw.major  Major Firmware Revision (binary encoded)
        Unsigned 8-bit integer
    ipmi.app01.fw.minor  Minor Firmware Revision (BCD encoded)
        Unsigned 8-bit integer
    ipmi.app01.ipmi.version  IPMI version
        Unsigned 8-bit integer
    ipmi.app01.manufacturer  Manufacturer ID
        Unsigned 24-bit integer
    ipmi.app01.product  Product ID
        Unsigned 16-bit integer
    ipmi.app04.fail  Self-test error bitfield
        Unsigned 8-bit integer
    ipmi.app04.fail.bb_fw  Controller update boot block firmware corrupted
        Boolean
    ipmi.app04.fail.bmc_fru  Cannot access BMC FRU device
        Boolean
    ipmi.app04.fail.ipmb_sig  IPMB signal lines do not respond
        Boolean
    ipmi.app04.fail.iua  Internal Use Area of BMC FRU corrupted
        Boolean
    ipmi.app04.fail.oper_fw  Controller operational firmware corrupted
        Boolean
    ipmi.app04.fail.sdr  Cannot access SDR Repository
        Boolean
    ipmi.app04.fail.sdr_empty  SDR Repository is empty
        Boolean
    ipmi.app04.fail.sel  Cannot access SEL device
        Boolean
    ipmi.app04.self_test_result  Self test result
        Unsigned 8-bit integer
    ipmi.app05.devspec  Device-specific parameters
        Byte array
    ipmi.app06.devpwr.enum  Device Power State enumeration
        Unsigned 8-bit integer
    ipmi.app06.devpwr.set  Device Power State
        Boolean
    ipmi.app06.syspwr.enum  System Power State enumeration
        Unsigned 8-bit integer
    ipmi.app06.syspwr.set  System Power State
        Boolean
    ipmi.app07.devpwr  ACPI Device Power State
        Unsigned 8-bit integer
    ipmi.app07.syspwr  ACPI System Power State
        Unsigned 8-bit integer
    ipmi.app08.guid  GUID
        Globally Unique Identifier
    ipmi.app24.exp_flags.biosfrb2  BIOS FRB2
        Boolean
    ipmi.app24.exp_flags.biospost  BIOS/POST
        Boolean
    ipmi.app24.exp_flags.oem  OEM
        Boolean
    ipmi.app24.exp_flags.osload  OS Load
        Boolean
    ipmi.app24.exp_flags.sms_os  SMS/OS
        Boolean
    ipmi.app24.initial_countdown  Initial countdown value (100ms/count)
        Unsigned 16-bit integer
    ipmi.app24.pretimeout  Pre-timeout interval
        Unsigned 8-bit integer
    ipmi.app24.timer_action.interrupt  Pre-timeout interrupt
        Unsigned 8-bit integer
    ipmi.app24.timer_action.timeout  Timeout action
        Unsigned 8-bit integer
    ipmi.app24.timer_use.dont_log  Don't log
        Boolean
    ipmi.app24.timer_use.dont_stop  Don't stop timer on Set Watchdog command
        Boolean
    ipmi.app24.timer_use.timer_use  Timer use
        Unsigned 8-bit integer
    ipmi.app25.exp_flags.biosfrb2  BIOS FRB2
        Boolean
    ipmi.app25.exp_flags.biospost  BIOS/POST
        Boolean
    ipmi.app25.exp_flags.oem  OEM
        Boolean
    ipmi.app25.exp_flags.osload  OS Load
        Boolean
    ipmi.app25.exp_flags.sms_os  SMS/OS
        Boolean
    ipmi.app25.initial_countdown  Initial countdown value (100ms/count)
        Unsigned 16-bit integer
    ipmi.app25.pretimeout  Pre-timeout interval
        Unsigned 8-bit integer
    ipmi.app25.timer_action.interrupt  Pre-timeout interrupt
        Unsigned 8-bit integer
    ipmi.app25.timer_action.timeout  Timeout action
        Unsigned 8-bit integer
    ipmi.app25.timer_use.dont_log  Don't log
        Boolean
    ipmi.app25.timer_use.started  Started
        Boolean
    ipmi.app25.timer_use.timer_use  Timer user
        Unsigned 8-bit integer
    ipmi.app2e.bmc_global_enables.emb  Event Message Buffer
        Boolean
    ipmi.app2e.bmc_global_enables.emb_full_intr  Event Message Buffer Full Interrupt
        Boolean
    ipmi.app2e.bmc_global_enables.oem0  OEM 0
        Boolean
    ipmi.app2e.bmc_global_enables.oem1  OEM 1
        Boolean
    ipmi.app2e.bmc_global_enables.oem2  OEM 2
        Boolean
    ipmi.app2e.bmc_global_enables.rmq_intr  Receive Message Queue Interrupt
        Boolean
    ipmi.app2e.bmc_global_enables.sel  System Event Logging
        Boolean
    ipmi.app2f.bmc_global_enables.emb  Event Message Buffer
        Boolean
    ipmi.app2f.bmc_global_enables.emb_full_intr  Event Message Buffer Full Interrupt
        Boolean
    ipmi.app2f.bmc_global_enables.oem0  OEM 0
        Boolean
    ipmi.app2f.bmc_global_enables.oem1  OEM 1
        Boolean
    ipmi.app2f.bmc_global_enables.oem2  OEM 2
        Boolean
    ipmi.app2f.bmc_global_enables.rmq_intr  Receive Message Queue Interrupt
        Boolean
    ipmi.app2f.bmc_global_enables.sel  System Event Logging
        Boolean
    ipmi.app30.byte1.emb  Event Message Buffer
        Boolean
    ipmi.app30.byte1.oem0  OEM 0
        Boolean
    ipmi.app30.byte1.oem1  OEM 1
        Boolean
    ipmi.app30.byte1.oem2  OEM 2
        Boolean
    ipmi.app30.byte1.rmq  Receive Message Queue
        Boolean
    ipmi.app30.byte1.wd_pretimeout  Watchdog pre-timeout interrupt flag
        Boolean
    ipmi.app31.byte1.emb  Event Message Buffer Full
        Boolean
    ipmi.app31.byte1.oem0  OEM 0 data available
        Boolean
    ipmi.app31.byte1.oem1  OEM 1 data available
        Boolean
    ipmi.app31.byte1.oem2  OEM 2 data available
        Boolean
    ipmi.app31.byte1.rmq  Receive Message Available
        Boolean
    ipmi.app31.byte1.wd_pretimeout  Watchdog pre-timeout interrupt occurred
        Boolean
    ipmi.app32.rq_chno  Channel
        Unsigned 8-bit integer
    ipmi.app32.rq_state  Channel State
        Unsigned 8-bit integer
    ipmi.app32.rs_chno  Channel
        Unsigned 8-bit integer
    ipmi.app32.rs_state  Channel State
        Boolean
    ipmi.app34.auth  Authentication required
        Boolean
    ipmi.app34.chan  Channel
        Unsigned 8-bit integer
    ipmi.app34.encrypt  Encryption required
        Boolean
    ipmi.app34.track  Tracking
        Unsigned 8-bit integer
    ipmi.app38.rq_chan  Channel
        Unsigned 8-bit integer
    ipmi.app38.rq_ipmi20  Version compatibility
        Unsigned 8-bit integer
    ipmi.app38.rq_priv  Requested privilege level
        Unsigned 8-bit integer
    ipmi.app38.rs_auth_md2  MD2
        Boolean
    ipmi.app38.rs_auth_md5  MD5
        Boolean
    ipmi.app38.rs_auth_none  No auth
        Boolean
    ipmi.app38.rs_auth_oem  OEM Proprietary authentication
        Boolean
    ipmi.app38.rs_auth_straight  Straight password/key
        Boolean
    ipmi.app38.rs_chan  Channel
        Unsigned 8-bit integer
    ipmi.app38.rs_ipmi15_conn  IPMI v1.5
        Boolean
    ipmi.app38.rs_ipmi20  Version compatibility
        Unsigned 8-bit integer
    ipmi.app38.rs_ipmi20_conn  IPMI v2.0
        Boolean
    ipmi.app38.rs_kg_status  KG
        Boolean
    ipmi.app38.rs_oem_aux  OEM Auxiliary data
        Unsigned 8-bit integer
    ipmi.app38.rs_oem_iana  OEM ID
        Unsigned 24-bit integer
    ipmi.app38.rs_permsg  Per-message Authentication disabled
        Boolean
    ipmi.app38.rs_user_anon  Anonymous login enabled
        Boolean
    ipmi.app38.rs_user_nonnull  Non-null usernames enabled
        Boolean
    ipmi.app38.rs_user_null  Null usernames enabled
        Boolean
    ipmi.app38.rs_userauth  User-level Authentication disabled
        Boolean
    ipmi.app39.authtype  Authentication Type
        Unsigned 8-bit integer
    ipmi.app39.challenge  Challenge
        Byte array
    ipmi.app39.temp_session  Temporary Session ID
        Unsigned 32-bit integer
    ipmi.app39.user  User Name
        String
    ipmi.app3a.authcode  Challenge string/Auth Code
        Byte array
    ipmi.app3a.authtype  Authentication Type
        Unsigned 8-bit integer
    ipmi.app3a.authtype_session  Authentication Type for session
        Unsigned 8-bit integer
    ipmi.app3a.inbound_seq  Initial Inbound Sequence Number
        Unsigned 32-bit integer
    ipmi.app3a.maxpriv_session  Maximum Privilege Level for session
        Unsigned 8-bit integer
    ipmi.app3a.outbound_seq  Initial Outbound Sequence Number
        Unsigned 32-bit integer
    ipmi.app3a.privlevel  Requested Maximum Privilege Level
        Unsigned 8-bit integer
    ipmi.app3a.session_id  Session ID
        Unsigned 32-bit integer
    ipmi.app3b.new_priv  New Privilege Level
        Unsigned 8-bit integer
    ipmi.app3b.req_priv  Requested Privilege Level
        Unsigned 8-bit integer
    ipmi.app3c.session_handle  Session handle
        Unsigned 8-bit integer
    ipmi.app3c.session_id  Session ID
        Unsigned 32-bit integer
    ipmi.bad_checksum  Bad checksum
        Boolean
    ipmi.bootopt00.sip  Set In Progress
        Unsigned 8-bit integer
    ipmi.bootopt01.spsel  Service Partition Selector
        Unsigned 8-bit integer
    ipmi.bootopt02.spscan.discovered  Service Partition discovered
        Boolean
    ipmi.bootopt02.spscan.request  Request BIOS to scan for specified service partition
        Boolean
    ipmi.bootopt03.bmcboot.cctrl_timeout  Chassis Control command not received within 60s timeout
        Boolean
    ipmi.bootopt03.bmcboot.pef  Reset/power cycle caused by PEF
        Boolean
    ipmi.bootopt03.bmcboot.powerup  Power up via pushbutton or wake event
        Boolean
    ipmi.bootopt03.bmcboot.softreset  Pushbutton reset / soft reset
        Boolean
    ipmi.bootopt03.bmcboot.wd_timeout  Reset/power cycle caused by watchdog timeout
        Boolean
    ipmi.bootopt04.bootinit_ack.bios  BIOS/POST
        Boolean
    ipmi.bootopt04.bootinit_ack.oem  OEM
        Boolean
    ipmi.bootopt04.bootinit_ack.os  OS / Service Partition
        Boolean
    ipmi.bootopt04.bootinit_ack.osloader  OS Loader
        Boolean
    ipmi.bootopt04.bootinit_ack.sms  SMS
        Boolean
    ipmi.bootopt04.write_mask  Write mask
        Unsigned 8-bit integer
    ipmi.bootopt05.bios_muxctl_override  BIOS Mux Control Override
        Unsigned 8-bit integer
    ipmi.bootopt05.bios_shared_override  BIOS Shared Mode Override
        Boolean
    ipmi.bootopt05.bios_verbosity  BIOS verbosity
        Unsigned 8-bit integer
    ipmi.bootopt05.boot_flags_valid  Boot flags valid
        Boolean
    ipmi.bootopt05.bootdev  Boot Device Selector
        Unsigned 8-bit integer
    ipmi.bootopt05.boottype  Boot type
        Boolean
    ipmi.bootopt05.byte5  Data 5 (reserved)
        Unsigned 8-bit integer
    ipmi.bootopt05.cmos_clear  CMOS Clear
        Boolean
    ipmi.bootopt05.console_redirection  Console redirection
        Unsigned 8-bit integer
    ipmi.bootopt05.lock_kbd  Lock Keyboard
        Boolean
    ipmi.bootopt05.lock_sleep  Lock Out Sleep Button
        Boolean
    ipmi.bootopt05.lockout_poweroff  Lock out (power off / sleep request) via Power Button
        Boolean
    ipmi.bootopt05.lockout_reset  Lock out Reset buttons
        Boolean
    ipmi.bootopt05.permanent  Permanency
        Boolean
    ipmi.bootopt05.progress_traps  Force Progress Event Traps
        Boolean
    ipmi.bootopt05.pwd_bypass  User password bypass
        Boolean
    ipmi.bootopt05.screen_blank  Screen Blank
        Boolean
    ipmi.bootopt06.chan_num  Channel
        Unsigned 8-bit integer
    ipmi.bootopt06.session_id  Session ID
        Unsigned 32-bit integer
    ipmi.bootopt07.block_data  Block data
        Byte array
    ipmi.bootopt07.block_selector  Block selector
        Unsigned 8-bit integer
    ipmi.ch00.bridge  Chassis Bridge Device Address
        Unsigned 8-bit integer
    ipmi.ch00.cap.diag_int  Diagnostic Interrupt
        Boolean
    ipmi.ch00.cap.fpl  Front Panel Lockout
        Boolean
    ipmi.ch00.cap.intrusion  Intrusion sensor
        Boolean
    ipmi.ch00.cap.power_interlock  Power interlock
        Boolean
    ipmi.ch00.fru_info  Chassis FRU Info Device Address
        Unsigned 8-bit integer
    ipmi.ch00.sdr  Chassis SDR Device Address
        Unsigned 8-bit integer
    ipmi.ch00.sel  Chassis SEL Device Address
        Unsigned 8-bit integer
    ipmi.ch00.sm  Chassis System Management Device Address
        Unsigned 8-bit integer
    ipmi.ch01.cur_pwr.ctl_fault  Power Control Fault
        Boolean
    ipmi.ch01.cur_pwr.fault  Power Fault
        Boolean
    ipmi.ch01.cur_pwr.interlock  Interlock
        Boolean
    ipmi.ch01.cur_pwr.overload  Overload
        Boolean
    ipmi.ch01.cur_pwr.policy  Power Restore Policy
        Unsigned 8-bit integer
    ipmi.ch01.cur_pwr.powered  Power is on
        Boolean
    ipmi.ch01.fpb.diagintr_allowed  Diagnostic interrupt disable allowed
        Boolean
    ipmi.ch01.fpb.diagintr_disabled  Diagnostic interrupt disabled
        Boolean
    ipmi.ch01.fpb.poweroff_allowed  Poweroff disable allowed
        Boolean
    ipmi.ch01.fpb.poweroff_disabled  Poweroff disabled
        Boolean
    ipmi.ch01.fpb.reset_allowed  Reset disable allowed
        Boolean
    ipmi.ch01.fpb.reset_disabled  Reset disabled
        Boolean
    ipmi.ch01.fpb.standby_allowed  Standby disable allowed
        Boolean
    ipmi.ch01.fpb.standby_disabled  Standby disabled
        Boolean
    ipmi.ch01.identstate  Chassis Identify state (if supported)
        Unsigned 8-bit integer
    ipmi.ch01.identsupp  Chassis Identify command and state info supported
        Boolean
    ipmi.ch01.last.ac_failed  AC failed
        Boolean
    ipmi.ch01.last.down_by_fault  Last power down caused by power fault
        Boolean
    ipmi.ch01.last.interlock  Last power down caused by a power interlock being activated
        Boolean
    ipmi.ch01.last.on_via_ipmi  Last `Power is on' state was entered via IPMI command
        Boolean
    ipmi.ch01.last.overload  Last power down caused by a power overload
        Boolean
    ipmi.ch01.misc.drive  Drive Fault
        Boolean
    ipmi.ch01.misc.fan  Cooling/fan fault detected
        Boolean
    ipmi.ch01.misc.fpl_active  Front Panel Lockout active
        Boolean
    ipmi.ch01.misc.intrusion  Chassis intrusion active
        Boolean
    ipmi.ch02.chassis_control  Chassis Control
        Unsigned 8-bit integer
    ipmi.ch04.interval  Identify Interval in seconds
        Unsigned 8-bit integer
    ipmi.ch04.perm_on  Turn on Identify indefinitely
        Boolean
    ipmi.ch05.bridge  Chassis Bridge Device Address
        Unsigned 8-bit integer
    ipmi.ch05.flags.fpl  Provides Front Panel Lockout
        Boolean
    ipmi.ch05.flags.intrusion  Provides intrusion sensor
        Boolean
    ipmi.ch05.fru_info  Chassis FRU Info Device Address
        Unsigned 8-bit integer
    ipmi.ch05.sdr  Chassis SDR Device Address
        Unsigned 8-bit integer
    ipmi.ch05.sel  Chassis SEL Device Address
        Unsigned 8-bit integer
    ipmi.ch05.sm  Chassis System Management Device Address
        Unsigned 8-bit integer
    ipmi.ch06.rq_policy  Power Restore Policy
        Unsigned 8-bit integer
    ipmi.ch06.rs_support.poweroff  Staying powered off
        Boolean
    ipmi.ch06.rs_support.powerup  Always powering up
        Boolean
    ipmi.ch06.rs_support.restore  Restoring previous state
        Boolean
    ipmi.ch07.cause  Restart Cause
        Unsigned 8-bit integer
    ipmi.ch07.chan  Channel
        Unsigned 8-bit integer
    ipmi.ch08.data  Boot option parameter data
        No value
    ipmi.ch08.selector  Boot option parameter selector
        Unsigned 8-bit integer
    ipmi.ch08.valid  Validity
        Boolean
    ipmi.ch09.rq_block_select  Block Selector
        Unsigned 8-bit integer
    ipmi.ch09.rq_param_select  Parameter selector
        Unsigned 8-bit integer
    ipmi.ch09.rq_set_select  Set Selector
        Unsigned 8-bit integer
    ipmi.ch09.rs_param_data  Configuration parameter data
        Byte array
    ipmi.ch09.rs_param_select  Parameter Selector
        Unsigned 8-bit integer
    ipmi.ch09.rs_param_version  Parameter Version
        Unsigned 8-bit integer
    ipmi.ch09.rs_valid  Parameter Valid
        Boolean
    ipmi.ch0f.counter  Counter reading
        Unsigned 32-bit integer
    ipmi.ch0f.minpercnt  Minutes per count
        Unsigned 8-bit integer
    ipmi.cp00.sip  Set In Progress
        Unsigned 8-bit integer
    ipmi.cp01.alert_startup  PEF Alert Startup Delay disable
        Boolean
    ipmi.cp01.event_msg  Enable Event Messages for PEF actions
        Boolean
    ipmi.cp01.pef  Enable PEF
        Boolean
    ipmi.cp01.startup  PEF Startup Delay disable
        Boolean
    ipmi.cp02.alert  Enable Alert action
        Boolean
    ipmi.cp02.diag_intr  Enable Diagnostic Interrupt
        Boolean
    ipmi.cp02.oem_action  Enable OEM action
        Boolean
    ipmi.cp02.pwr_cycle  Enable Power Cycle action
        Boolean
    ipmi.cp02.pwr_down  Enable Power Down action
        Boolean
    ipmi.cp02.reset  Enable Reset action
        Boolean
    ipmi.cp03.startup  PEF Startup delay
        Unsigned 8-bit integer
    ipmi.cp04.alert_startup  PEF Alert Startup delay
        Unsigned 8-bit integer
    ipmi.cp05.num_evfilters  Number of Event Filters
        Unsigned 8-bit integer
    ipmi.cp06.data  Filter data
        Byte array
    ipmi.cp06.filter  Filter number (set selector)
        Unsigned 8-bit integer
    ipmi.cp07.data  Filter data (byte 1)
        Unsigned 8-bit integer
    ipmi.cp07.filter  Filter number (set selector)
        Unsigned 8-bit integer
    ipmi.cp08.policies  Number of Alert Policy Entries
        Unsigned 8-bit integer
    ipmi.cp09.data  Entry data
        Byte array
    ipmi.cp09.entry  Entry number (set selector)
        Unsigned 8-bit integer
    ipmi.cp10.guid  GUID
        Globally Unique Identifier
    ipmi.cp10.useval  Used to fill the GUID field in PET Trap
        Boolean
    ipmi.cp11.num_alertstr  Number of Alert Strings
        Unsigned 8-bit integer
    ipmi.cp12.alert_stringsel  Alert String Selector (set selector)
        Unsigned 8-bit integer
    ipmi.cp12.alert_stringset  Set number for string
        Unsigned 8-bit integer
    ipmi.cp12.byte1  Alert String Selector
        Unsigned 8-bit integer
    ipmi.cp12.evfilter  Filter Number
        Unsigned 8-bit integer
    ipmi.cp13.blocksel  Block selector
        Unsigned 8-bit integer
    ipmi.cp13.string  String data
        String
    ipmi.cp13.stringsel  String selector (set selector)
        Unsigned 8-bit integer
    ipmi.cp14.num_gct  Number of Group Control Table entries
        Unsigned 8-bit integer
    ipmi.cp15.channel  Channel
        Unsigned 8-bit integer
    ipmi.cp15.delayed  Immediate/Delayed
        Boolean
    ipmi.cp15.force  Request/Force
        Boolean
    ipmi.cp15.gctsel  Group control table entry selector (set selector)
        Unsigned 8-bit integer
    ipmi.cp15.group_id  Group ID
        Unsigned 8-bit integer
    ipmi.cp15.member_check  Member ID check disabled
        Boolean
    ipmi.cp15.operation  Operation
        Unsigned 8-bit integer
    ipmi.cp15.retries  Retries
        Unsigned 8-bit integer
    ipmi.cp15_member_id  Member ID
        Unsigned 8-bit integer
    ipmi.data.crc  Data checksum
        Unsigned 8-bit integer
    ipmi.evt.byte3  Event Dir/Type
        Unsigned 8-bit integer
    ipmi.evt.data1  Event Data 1
        Unsigned 8-bit integer
    ipmi.evt.data1.b2  Byte 2
        Unsigned 8-bit integer
    ipmi.evt.data1.b3  Byte 3
        Unsigned 8-bit integer
    ipmi.evt.data1.offs  Offset
        Unsigned 8-bit integer
    ipmi.evt.data2  Event Data 2
        Unsigned 8-bit integer
    ipmi.evt.data3  Event Data 3
        Unsigned 8-bit integer
    ipmi.evt.evdir  Event Direction
        Boolean
    ipmi.evt.evmrev  Event Message Revision
        Unsigned 8-bit integer
    ipmi.evt.evtype  Event Type
        Unsigned 8-bit integer
    ipmi.evt.sensor_num  Sensor #
        Unsigned 8-bit integer
    ipmi.evt.sensor_type  Sensor Type
        Unsigned 8-bit integer
    ipmi.header.broadcast  Broadcast message
        Unsigned 8-bit integer
    ipmi.header.command  Command
        Unsigned 8-bit integer
    ipmi.header.completion  Completion Code
        Unsigned 8-bit integer
    ipmi.header.crc  Header Checksum
        Unsigned 8-bit integer
    ipmi.header.netfn  NetFN
        Unsigned 8-bit integer
    ipmi.header.sequence  Sequence Number
        Unsigned 8-bit integer
    ipmi.header.signature  Signature
        Byte array
    ipmi.header.source  Source Address
        Unsigned 8-bit integer
    ipmi.header.src_lun  Source LUN
        Unsigned 8-bit integer
    ipmi.header.target  Target Address
        Unsigned 8-bit integer
    ipmi.header.trg_lun  Target LUN
        Unsigned 8-bit integer
    ipmi.hpm1.comp0  Component 0
        Boolean
    ipmi.hpm1.comp1  Component 1
        Boolean
    ipmi.hpm1.comp2  Component 2
        Boolean
    ipmi.hpm1.comp3  Component 3
        Boolean
    ipmi.hpm1.comp4  Component 4
        Boolean
    ipmi.hpm1.comp5  Component 5
        Boolean
    ipmi.hpm1.comp6  Component 6
        Boolean
    ipmi.hpm1.comp7  Component 7
        Boolean
    ipmi.lan00.sip  Set In Progress
        Unsigned 8-bit integer
    ipmi.lan03.ip  IP Address
        IPv4 address
    ipmi.lan04.ipsrc  IP Address Source
        Unsigned 8-bit integer
    ipmi.lan05.mac  MAC Address
        6-byte Hardware (MAC) Address
    ipmi.lan06.subnet  Subnet Mask
        IPv4 address
    ipmi.lan07.flags  Flags
        Unsigned 8-bit integer
    ipmi.lan07.precedence  Precedence
        Unsigned 8-bit integer
    ipmi.lan07.tos  Type of service
        Unsigned 8-bit integer
    ipmi.lan07.ttl  Time-to-live
        Unsigned 8-bit integer
    ipmi.lan08.rmcp_port  Primary RMCP Port Number
        Unsigned 16-bit integer
    ipmi.lan09.rmcp_port  Secondary RMCP Port Number
        Unsigned 16-bit integer
    ipmi.lan10.arp_interval  Gratuitous ARP interval
        Unsigned 8-bit integer
    ipmi.lan10.gratuitous  Gratuitous ARPs
        Boolean
    ipmi.lan10.responses  ARP responses
        Boolean
    ipmi.lan12.def_gw_ip  Default Gateway Address
        IPv4 address
    ipmi.lan13.def_gw_mac  Default Gateway MAC Address
        6-byte Hardware (MAC) Address
    ipmi.lan14.bkp_gw_ip  Backup Gateway Address
        IPv4 address
    ipmi.lan15.bkp_gw_mac  Backup Gateway MAC Address
        6-byte Hardware (MAC) Address
    ipmi.lan16.comm_string  Community String
        String
    ipmi.lan17.num_dst  Number of Destinations
        Unsigned 8-bit integer
    ipmi.lan18.ack  Alert Acknowledged
        Boolean
    ipmi.lan18.dst_selector  Destination Selector
        Unsigned 8-bit integer
    ipmi.lan18.dst_type  Destination Type
        Unsigned 8-bit integer
    ipmi.lan18.retries  Retries
        Unsigned 8-bit integer
    ipmi.lan18.tout  Timeout/Retry Interval
        Unsigned 8-bit integer
    ipmi.lan19.addr_format  Address Format
        Unsigned 8-bit integer
    ipmi.lan19.address  Address (format unknown)
        Byte array
    ipmi.lan19.dst_selector  Destination Selector
        Unsigned 8-bit integer
    ipmi.lan19.gw_sel  Gateway selector
        Boolean
    ipmi.lan19.ip  Alerting IP Address
        IPv4 address
    ipmi.lan19.mac  Alerting MAC Address
        6-byte Hardware (MAC) Address
    ipmi.lan20.vlan_id  VLAN ID
        Unsigned 16-bit integer
    ipmi.lan20.vlan_id_enable  VLAN ID Enable
        Boolean
    ipmi.lan21.vlan_prio  VLAN Priority
        Unsigned 8-bit integer
    ipmi.lan22.num_cs_entries  Number of Cipher Suite Entries
        Unsigned 8-bit integer
    ipmi.lan23.cs_entry  Cipher Suite ID
        Unsigned 8-bit integer
    ipmi.lan24.priv  Maximum Privilege Level
        Unsigned 8-bit integer
    ipmi.lan25.addr_format  Address Format
        Unsigned 8-bit integer
    ipmi.lan25.address  Address (format unknown)
        Unsigned 8-bit integer
    ipmi.lan25.cfi  CFI
        Boolean
    ipmi.lan25.dst_selector  Destination Selector
        Unsigned 8-bit integer
    ipmi.lan25.uprio  User priority
        Unsigned 16-bit integer
    ipmi.lan25.vlan_id  VLAN ID
        Unsigned 16-bit integer
    ipmi.lanXX.md2  MD2
        Boolean
    ipmi.lanXX.md5  MD5
        Boolean
    ipmi.lanXX.none  None
        Boolean
    ipmi.lanXX.oem  OEM Proprietary
        Boolean
    ipmi.lanXX.passwd  Straight password/key
        Boolean
    ipmi.led.color  Color
        Unsigned 8-bit integer
    ipmi.led.function  LED Function
        Unsigned 8-bit integer
    ipmi.led.on_duration  On-duration
        Unsigned 8-bit integer
    ipmi.linkinfo.chan  Channel
        Unsigned 32-bit integer
    ipmi.linkinfo.grpid  Grouping ID
        Unsigned 32-bit integer
    ipmi.linkinfo.iface  Interface
        Unsigned 32-bit integer
    ipmi.linkinfo.ports  Ports
        Unsigned 32-bit integer
    ipmi.linkinfo.type  Type
        Unsigned 32-bit integer
    ipmi.linkinfo.type_ext  Type extension
        Unsigned 32-bit integer
    ipmi.message  Message
        Byte array
    ipmi.picmg00.ipmc_fruid  FRU Device ID for IPMC
        Unsigned 8-bit integer
    ipmi.picmg00.max_fruid  Max FRU Device ID
        Unsigned 8-bit integer
    ipmi.picmg00.version  PICMG Extension Version
        Unsigned 8-bit integer
    ipmi.picmg01.rq_addr_key  Address Key
        Unsigned 8-bit integer
    ipmi.picmg01.rq_addr_key_type  Address Key Type
        Unsigned 8-bit integer
    ipmi.picmg01.rq_fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg01.rq_site_type  Site Type
        Unsigned 8-bit integer
    ipmi.picmg01.rs_fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg01.rs_hwaddr  Hardware Address
        Unsigned 8-bit integer
    ipmi.picmg01.rs_ipmbaddr  IPMB-0 Address
        Unsigned 8-bit integer
    ipmi.picmg01.rs_rsrv  Reserved (shall be 0xFF)
        Unsigned 8-bit integer
    ipmi.picmg01.rs_site_num  Site Number
        Unsigned 8-bit integer
    ipmi.picmg01.rs_site_type  Site Type
        Unsigned 8-bit integer
    ipmi.picmg04.cmd  Command
        Unsigned 8-bit integer
    ipmi.picmg04.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg05.app_leds  Application-specific LED Count
        Unsigned 8-bit integer
    ipmi.picmg05.blue_led  BLUE LED
        Boolean
    ipmi.picmg05.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg05.led1  LED 1
        Boolean
    ipmi.picmg05.led2  LED 2
        Boolean
    ipmi.picmg05.led3  LED 3
        Boolean
    ipmi.picmg06.cap_amber  Amber
        Boolean
    ipmi.picmg06.cap_blue  Blue
        Boolean
    ipmi.picmg06.cap_green  Green
        Boolean
    ipmi.picmg06.cap_orange  Orange
        Boolean
    ipmi.picmg06.cap_red  Red
        Boolean
    ipmi.picmg06.cap_white  White
        Boolean
    ipmi.picmg06.def_local  Default LED Color in Local Control state
        Unsigned 8-bit integer
    ipmi.picmg06.def_override  Default LED Color in Override state
        Unsigned 8-bit integer
    ipmi.picmg06.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg06.ledid  LED ID
        Unsigned 8-bit integer
    ipmi.picmg07.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg07.ledid  LED ID
        Unsigned 8-bit integer
    ipmi.picmg08.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg08.lamptest_duration  Lamp test duration
        Unsigned 8-bit integer
    ipmi.picmg08.ledid  LED ID
        Unsigned 8-bit integer
    ipmi.picmg08.state_lamptest  Lamp Test
        Boolean
    ipmi.picmg08.state_local  Local Control
        Boolean
    ipmi.picmg08.state_override  Override
        Boolean
    ipmi.picmg09.ipmba  IPMB-A State
        Unsigned 8-bit integer
    ipmi.picmg09.ipmbb  IPMB-B State
        Unsigned 8-bit integer
    ipmi.picmg0a.deactivation  Deactivation-Locked bit
        Boolean
    ipmi.picmg0a.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg0a.locked  Locked bit
        Boolean
    ipmi.picmg0a.msk_deactivation  Deactivation-Locked bit
        Boolean
    ipmi.picmg0a.msk_locked  Locked bit
        Boolean
    ipmi.picmg0b.deactivation  Deactivation-Locked bit
        Boolean
    ipmi.picmg0b.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg0b.locked  Locked bit
        Boolean
    ipmi.picmg0c.cmd  Command
        Unsigned 8-bit integer
    ipmi.picmg0c.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg0d.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg0d.recordid  Record ID
        Unsigned 16-bit integer
    ipmi.picmg0d.start  Search after record ID
        Unsigned 16-bit integer
    ipmi.picmg0e.state  State
        Unsigned 8-bit integer
    ipmi.picmg10.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg10.ipmc_loc  IPMC Location
        Unsigned 8-bit integer
    ipmi.picmg10.nslots  Number of spanned slots
        Unsigned 8-bit integer
    ipmi.picmg11.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg11.power_level  Power Level
        Unsigned 8-bit integer
    ipmi.picmg11.set_to_desired  Set Present Levels to Desired
        Unsigned 8-bit integer
    ipmi.picmg12.delay  Delay to stable power
        Unsigned 8-bit integer
    ipmi.picmg12.dynamic  Dynamic Power Configuration
        Boolean
    ipmi.picmg12.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg12.pwd_lvl  Power Level
        Unsigned 8-bit integer
    ipmi.picmg12.pwr_draw  Power draw
        Unsigned 8-bit integer
    ipmi.picmg12.pwr_mult  Power multiplier
        Unsigned 8-bit integer
    ipmi.picmg12.pwr_type  Power Type
        Unsigned 8-bit integer
    ipmi.picmg13.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg14.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg14.local_control  Local Control Mode Supported
        Boolean
    ipmi.picmg14.speed_max  Maximum Speed Level
        Unsigned 8-bit integer
    ipmi.picmg14.speed_min  Minimum Speed Level
        Unsigned 8-bit integer
    ipmi.picmg14.speed_norm  Normal Operating Level
        Unsigned 8-bit integer
    ipmi.picmg15.fan_level  Fan Level
        Unsigned 8-bit integer
    ipmi.picmg15.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg15.local_enable  Local Control Enable State
        Unsigned 8-bit integer
    ipmi.picmg16.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg16.local_enable  Local Control Enable State
        Unsigned 8-bit integer
    ipmi.picmg16.local_level  Local Control Fan Level
        Unsigned 8-bit integer
    ipmi.picmg16.override_level  Override Fan Level
        Unsigned 8-bit integer
    ipmi.picmg17.cmd  Command
        Unsigned 8-bit integer
    ipmi.picmg17.resid  Bused Resource ID
        Unsigned 8-bit integer
    ipmi.picmg17.status  Status
        Unsigned 8-bit integer
    ipmi.picmg18.li_key  Link Info Key
        Unsigned 8-bit integer
    ipmi.picmg18.li_key_type  Link Info Key Type
        Unsigned 8-bit integer
    ipmi.picmg18.link_num  Link Number
        Unsigned 8-bit integer
    ipmi.picmg18.sensor_num  Sensor Number
        Unsigned 8-bit integer
    ipmi.picmg1b.addr_active  Active Shelf Manager IPMB Address
        Unsigned 8-bit integer
    ipmi.picmg1b.addr_backup  Backup Shelf Manager IPMB Address
        Unsigned 8-bit integer
    ipmi.picmg1c.fan_enable_state  Fan Enable state
        Unsigned 8-bit integer
    ipmi.picmg1c.fan_policy_timeout  Fan Policy Timeout
        Unsigned 8-bit integer
    ipmi.picmg1c.fan_site_number  Fan Tray Site Number
        Unsigned 8-bit integer
    ipmi.picmg1c.site_number  Site Number
        Unsigned 8-bit integer
    ipmi.picmg1c.site_type  Site Type
        Unsigned 8-bit integer
    ipmi.picmg1d.coverage  Coverage
        Unsigned 8-bit integer
    ipmi.picmg1d.fan_enable_state  Policy
        Unsigned 8-bit integer
    ipmi.picmg1d.fan_site_number  Fan Tray Site Number
        Unsigned 8-bit integer
    ipmi.picmg1d.site_number  Site Number
        Unsigned 8-bit integer
    ipmi.picmg1d.site_type  Site Type
        Unsigned 8-bit integer
    ipmi.picmg1e.cap_diagintr  Diagnostic interrupt
        Boolean
    ipmi.picmg1e.cap_reboot  Graceful reboot
        Boolean
    ipmi.picmg1e.cap_warmreset  Warm Reset
        Boolean
    ipmi.picmg1e.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg1f.rq_fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg1f.rq_lockid  Lock ID
        Unsigned 16-bit integer
    ipmi.picmg1f.rq_op  Operation
        Unsigned 8-bit integer
    ipmi.picmg1f.rs_lockid  Lock ID
        Unsigned 16-bit integer
    ipmi.picmg1f.rs_tstamp  Last Commit Timestamp
        Unsigned 32-bit integer
    ipmi.picmg20.count  Count written
        Byte array
    ipmi.picmg20.data  Data to write
        Byte array
    ipmi.picmg20.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.picmg20.lockid  Lock ID
        Unsigned 16-bit integer
    ipmi.picmg20.offset  Offset to write
        Unsigned 16-bit integer
    ipmi.picmg21.addr_count  Address Count
        Unsigned 8-bit integer
    ipmi.picmg21.addr_num  Address Number
        Unsigned 8-bit integer
    ipmi.picmg21.addr_type  Address Type
        Unsigned 8-bit integer
    ipmi.picmg21.ip_addr  IP Address
        IPv4 address
    ipmi.picmg21.is_shm  Shelf Manager IP Address
        Boolean
    ipmi.picmg21.max_unavail  Maximum Unavailable Time
        Unsigned 8-bit integer
    ipmi.picmg21.rmcp_port  RMCP Port
        Unsigned 16-bit integer
    ipmi.picmg21.site_num  Site Number
        Unsigned 8-bit integer
    ipmi.picmg21.site_type  Site Type
        Unsigned 8-bit integer
    ipmi.picmg21.tstamp  Shelf IP Address Last Change Timestamp
        Unsigned 32-bit integer
    ipmi.picmg22.feed_idx  Power Feed Index
        Unsigned 8-bit integer
    ipmi.picmg22.pwr_alloc  Power Feed Allocation
        Unsigned 16-bit integer
    ipmi.picmg22.update_cnt  Update Counter
        Unsigned 16-bit integer
    ipmi.picmg2e.auto_rollback  Automatic Rollback supported
        Boolean
    ipmi.picmg2e.auto_rollback_override  Automatic Rollback Overridden
        Boolean
    ipmi.picmg2e.deferred_activate  Deferred Activation supported
        Boolean
    ipmi.picmg2e.hpm1_version  HPM.1 version
        Unsigned 8-bit integer
    ipmi.picmg2e.inaccessibility_tout  Inaccessibility timeout
        Unsigned 8-bit integer
    ipmi.picmg2e.ipmc_degraded  IPMC degraded during upgrade
        Boolean
    ipmi.picmg2e.manual_rollback  Manual Rollback supported
        Boolean
    ipmi.picmg2e.rollback_tout  Rollback timeout
        Unsigned 8-bit integer
    ipmi.picmg2e.self_test  Self-Test supported
        Boolean
    ipmi.picmg2e.selftest_tout  Self-test timeout
        Unsigned 8-bit integer
    ipmi.picmg2e.services_affected  Services affected by upgrade
        Boolean
    ipmi.picmg2e.upgrade_tout  Upgrade timeout
        Unsigned 8-bit integer
    ipmi.picmg2e.upgrade_undesirable  Firmware Upgrade Undesirable
        Boolean
    ipmi.picmg2f.comp_id  Component ID
        Unsigned 8-bit integer
    ipmi.picmg2f.comp_prop  Component property selector
        Unsigned 8-bit integer
    ipmi.picmg2f.prop_data  Unknown property data
        Byte array
    ipmi.picmg31.action  Upgrade action
        Unsigned 8-bit integer
    ipmi.picmg32.block  Block Number
        Unsigned 8-bit integer
    ipmi.picmg32.data  Data
        Byte array
    ipmi.picmg32.sec_len  Section Length
        Unsigned 32-bit integer
    ipmi.picmg32.sec_offs  Section Offset
        Unsigned 32-bit integer
    ipmi.picmg33.comp_id  Component ID
        Unsigned 8-bit integer
    ipmi.picmg33.img_len  Image Length
        Unsigned 32-bit integer
    ipmi.picmg34.ccode  Last command completion code
        Unsigned 8-bit integer
    ipmi.picmg34.cmd  Command in progress
        Unsigned 8-bit integer
    ipmi.picmg34.percent  Completion estimate
        Unsigned 8-bit integer
    ipmi.picmg35.rollback_override  Rollback Override Policy
        Unsigned 8-bit integer
    ipmi.picmg36.fail  Self-test error bitfield
        Unsigned 8-bit integer
    ipmi.picmg36.fail.bb_fw  Controller update boot block firmware corrupted
        Boolean
    ipmi.picmg36.fail.bmc_fru  Cannot access BMC FRU device
        Boolean
    ipmi.picmg36.fail.ipmb_sig  IPMB signal lines do not respond
        Boolean
    ipmi.picmg36.fail.iua  Internal Use Area of BMC FRU corrupted
        Boolean
    ipmi.picmg36.fail.oper_fw  Controller operational firmware corrupted
        Boolean
    ipmi.picmg36.fail.sdr  Cannot access SDR Repository
        Boolean
    ipmi.picmg36.fail.sdr_empty  SDR Repository is empty
        Boolean
    ipmi.picmg36.fail.sel  Cannot access SEL device
        Boolean
    ipmi.picmg36.self_test_result  Self test result
        Unsigned 8-bit integer
    ipmi.picmg37.percent  Estimated percentage complete
        Unsigned 8-bit integer
    ipmi.prop00.cold_reset  Payload cold reset required
        Boolean
    ipmi.prop00.deferred_activation  Deferred firmware activation supported
        Boolean
    ipmi.prop00.firmware_comparison  Firmware comparison supported
        Boolean
    ipmi.prop00.preparation  Prepare Components action required
        Boolean
    ipmi.prop00.rollback  Rollback/Backup support
        Unsigned 8-bit integer
    ipmi.prop01.fw_aux  Auxiliary Firmware Revision Information
        Byte array
    ipmi.prop01.fw_major  Major Firmware Revision (binary encoded)
        Unsigned 8-bit integer
    ipmi.prop01.fw_minor  Minor Firmware Revision (BCD encoded)
        Unsigned 8-bit integer
    ipmi.prop02.desc  Description string
        String
    ipmi.response_in  Response in
        Frame number
    ipmi.response_time  Responded in
        Time duration
    ipmi.response_to  Response to
        Frame number
    ipmi.se00.addr  Event Receiver slave address
        Unsigned 8-bit integer
    ipmi.se00.lun  Event Receiver LUN
        Unsigned 8-bit integer
    ipmi.se01.addr  Event Receiver slave address
        Unsigned 8-bit integer
    ipmi.se01.lun  Event Receiver LUN
        Unsigned 8-bit integer
    ipmi.se10.action.alert  Alert
        Boolean
    ipmi.se10.action.diag_intr  Diagnostic Interrupt
        Boolean
    ipmi.se10.action.oem_action  OEM Action
        Boolean
    ipmi.se10.action.oem_filter  OEM Event Record Filtering supported
        Boolean
    ipmi.se10.action.pwr_cycle  Power Cycle
        Boolean
    ipmi.se10.action.pwr_down  Power Down
        Boolean
    ipmi.se10.action.reset  Reset
        Boolean
    ipmi.se10.entries  Number of event filter table entries
        Unsigned 8-bit integer
    ipmi.se10.pef_version  PEF Version
        Unsigned 8-bit integer
    ipmi.se11.rq_timeout  Timeout value
        Unsigned 8-bit integer
    ipmi.se11.rs_timeout  Timeout value
        Unsigned 8-bit integer
    ipmi.se12.byte1  Parameter selector
        Unsigned 8-bit integer
    ipmi.se12.data  Parameter data
        No value
    ipmi.se12.param  Parameter selector
        Unsigned 8-bit integer
    ipmi.se13.block  Block Selector
        Unsigned 8-bit integer
    ipmi.se13.byte1  Parameter selector
        Unsigned 8-bit integer
    ipmi.se13.data  Parameter data
        Byte array
    ipmi.se13.getrev  Get Parameter Revision only
        Boolean
    ipmi.se13.param  Parameter selector
        Unsigned 8-bit integer
    ipmi.se13.rev.compat  Oldest forward-compatible
        Unsigned 8-bit integer
    ipmi.se13.rev.present  Present
        Unsigned 8-bit integer
    ipmi.se13.set  Set Selector
        Unsigned 8-bit integer
    ipmi.se14.processed_by  Set Record ID for last record processed by
        Boolean
    ipmi.se14.rid  Record ID
        Unsigned 16-bit integer
    ipmi.se15.lastrec  Record ID for last record in SEL
        Unsigned 16-bit integer
    ipmi.se15.proc_bmc  Last BMC Processed Event Record ID
        Unsigned 16-bit integer
    ipmi.se15.proc_sw  Last SW Processed Event Record ID
        Unsigned 16-bit integer
    ipmi.se15.tstamp  Most recent addition timestamp
        Unsigned 32-bit integer
    ipmi.se16.chan  Channel
        Unsigned 8-bit integer
    ipmi.se16.dst  Destination
        Unsigned 8-bit integer
    ipmi.se16.gen  Generator ID
        Unsigned 8-bit integer
    ipmi.se16.op  Operation
        Unsigned 8-bit integer
    ipmi.se16.send_string  Send Alert String
        Boolean
    ipmi.se16.status  Alert Immediate Status
        Unsigned 8-bit integer
    ipmi.se16.string_sel  String selector
        Unsigned 8-bit integer
    ipmi.se17.evdata1  Event Data 1
        Unsigned 8-bit integer
    ipmi.se17.evdata2  Event Data 2
        Unsigned 8-bit integer
    ipmi.se17.evdata3  Event Data 3
        Unsigned 8-bit integer
    ipmi.se17.evsrc  Event Source Type
        Unsigned 8-bit integer
    ipmi.se17.sensor_dev  Sensor Device
        Unsigned 8-bit integer
    ipmi.se17.sensor_num  Sensor Number
        Unsigned 8-bit integer
    ipmi.se17.seq  Sequence Number
        Unsigned 16-bit integer
    ipmi.se17.tstamp  Local Timestamp
        Unsigned 32-bit integer
    ipmi.se20.rq_op  Operation
        Boolean
    ipmi.se20.rs_change  Sensor Population Change Indicator
        Unsigned 32-bit integer
    ipmi.se20.rs_lun0  LUN0 has sensors
        Boolean
    ipmi.se20.rs_lun1  LUN1 has sensors
        Boolean
    ipmi.se20.rs_lun2  LUN2 has sensors
        Boolean
    ipmi.se20.rs_lun3  LUN3 has sensors
        Boolean
    ipmi.se20.rs_num  Number of sensors in device for LUN
        Unsigned 8-bit integer
    ipmi.se20.rs_population  Sensor population
        Boolean
    ipmi.se20.rs_sdr  Total Number of SDRs in the device
        Unsigned 8-bit integer
    ipmi.se21.len  Bytes to read
        Unsigned 8-bit integer
    ipmi.se21.next  Next record ID
        Unsigned 16-bit integer
    ipmi.se21.offset  Offset into data
        Unsigned 8-bit integer
    ipmi.se21.recdata  Record data
        Byte array
    ipmi.se21.record  Record ID
        Unsigned 16-bit integer
    ipmi.se21.rid  Reservation ID
        Unsigned 16-bit integer
    ipmi.se22.resid  Reservation ID
        Unsigned 16-bit integer
    ipmi.se23.rq_reading  Reading
        Unsigned 8-bit integer
    ipmi.se23.rq_sensor  Sensor Number
        Unsigned 8-bit integer
    ipmi.se23.rs_next_reading  Next reading
        Unsigned 8-bit integer
    ipmi.se24.hyst_neg  Negative-going hysteresis
        Unsigned 8-bit integer
    ipmi.se24.hyst_pos  Positive-going hysteresis
        Unsigned 8-bit integer
    ipmi.se24.mask  Reserved for future 'hysteresis mask'
        Unsigned 8-bit integer
    ipmi.se24.sensor  Sensor Number
        Unsigned 8-bit integer
    ipmi.se25.hyst_neg  Negative-going hysteresis
        Unsigned 8-bit integer
    ipmi.se25.hyst_pos  Positive-going hysteresis
        Unsigned 8-bit integer
    ipmi.se25.mask  Reserved for future 'hysteresis mask'
        Unsigned 8-bit integer
    ipmi.se25.sensor  Sensor Number
        Unsigned 8-bit integer
    ipmi.se27.sensor  Sensor Number
        Unsigned 8-bit integer
    ipmi.se28.fl_action  Action
        Unsigned 8-bit integer
    ipmi.se28.fl_evm  Event Messages
        Boolean
    ipmi.se28.fl_scan  Scanning
        Boolean
    ipmi.se28.sensor  Sensor Number
        Unsigned 8-bit integer
    ipmi.se29.fl_evm  Event Messages
        Boolean
    ipmi.se29.fl_scan  Scanning
        Boolean
    ipmi.se29.sensor  Sensor Number
        Unsigned 8-bit integer
    ipmi.se2a.fl_sel  Re-arm Events
        Boolean
    ipmi.se2a.sensor  Sensor Number
        Unsigned 8-bit integer
    ipmi.se2b.fl_evm  Event Messages
        Boolean
    ipmi.se2b.fl_scan  Sensor scanning
        Boolean
    ipmi.se2b.fl_unavail  Reading/status unavailable
        Boolean
    ipmi.se2b.sensor  Sensor Number
        Unsigned 8-bit integer
    ipmi.se2d.b1_0  At or below LNC threshold / State 0 asserted
        Boolean
    ipmi.se2d.b1_1  At or below LC threshold / State 1 asserted
        Boolean
    ipmi.se2d.b1_2  At or below LNR threshold / State 2 asserted
        Boolean
    ipmi.se2d.b1_3  At or above UNC threshold / State 3 asserted
        Boolean
    ipmi.se2d.b1_4  At or above UC threshold / State 4 asserted
        Boolean
    ipmi.se2d.b1_5  At or above UNR threshold / State 5 asserted
        Boolean
    ipmi.se2d.b1_6  Reserved / State 6 asserted
        Boolean
    ipmi.se2d.b1_7  Reserved / State 7 asserted
        Boolean
    ipmi.se2d.reading  Sensor Reading
        Unsigned 8-bit integer
    ipmi.se2d.sensor  Sensor Number
        Unsigned 8-bit integer
    ipmi.se2e.evtype  Event/Reading type
        Unsigned 8-bit integer
    ipmi.se2e.sensor  Sensor number
        Unsigned 8-bit integer
    ipmi.se2e.stype  Sensor type
        Unsigned 8-bit integer
    ipmi.se2f.evtype  Event/Reading type
        Unsigned 8-bit integer
    ipmi.se2f.sensor  Sensor number
        Unsigned 8-bit integer
    ipmi.se2f.stype  Sensor type
        Unsigned 8-bit integer
    ipmi.seXX.a_0  Assertion for LNC (going low) / state bit 0
        Boolean
    ipmi.seXX.a_1  Assertion for LNC (going high) / state bit 1
        Boolean
    ipmi.seXX.a_10  Assertion for UNR (going low) / state bit 10
        Boolean
    ipmi.seXX.a_11  Assertion for UNR (going high) / state bit 11
        Boolean
    ipmi.seXX.a_12  Reserved / Assertion for state bit 12
        Boolean
    ipmi.seXX.a_13  Reserved / Assertion for state bit 13
        Boolean
    ipmi.seXX.a_14  Reserved / Assertion for state bit 14
        Boolean
    ipmi.seXX.a_2  Assertion for LC (going low) / state bit 2
        Boolean
    ipmi.seXX.a_3  Assertion for LC (going high) / state bit 3
        Boolean
    ipmi.seXX.a_4  Assertion for LNR (going low) / state bit 4
        Boolean
    ipmi.seXX.a_5  Assertion for LNR (going high) / state bit 5
        Boolean
    ipmi.seXX.a_6  Assertion for UNC (going low) / state bit 6
        Boolean
    ipmi.seXX.a_7  Assertion for UNC (going high) / state bit 7
        Boolean
    ipmi.seXX.a_8  Assertion for UC (going low) / state bit 8
        Boolean
    ipmi.seXX.a_9  Assertion for UC (going high) / state bit 9
        Boolean
    ipmi.seXX.d_0  Deassertion for LNC (going low) / state bit 0
        Boolean
    ipmi.seXX.d_1  Deassertion for LNC (going high) / state bit 1
        Boolean
    ipmi.seXX.d_10  Deassertion for UNR (going low) / state bit 10
        Boolean
    ipmi.seXX.d_11  Deassertion for UNR (going high) / state bit 11
        Boolean
    ipmi.seXX.d_12  Reserved / Deassertion for state bit 12
        Boolean
    ipmi.seXX.d_13  Reserved / Deassertion for state bit 13
        Boolean
    ipmi.seXX.d_14  Reserved / Deassertion for state bit 14
        Boolean
    ipmi.seXX.d_2  Deassertion for LC (going low) / state bit 2
        Boolean
    ipmi.seXX.d_3  Deassertion for LC (going high) / state bit 3
        Boolean
    ipmi.seXX.d_4  Deassertion for LNR (going low) / state bit 4
        Boolean
    ipmi.seXX.d_5  Deassertion for LNR (going high) / state bit 5
        Boolean
    ipmi.seXX.d_6  Deassertion for UNC (going low) / state bit 6
        Boolean
    ipmi.seXX.d_7  Deassertion for UNC (going high) / state bit 7
        Boolean
    ipmi.seXX.d_8  Deassertion for UC (going low) / state bit 8
        Boolean
    ipmi.seXX.d_9  Deassertion for UC (going high) / state bit 9
        Boolean
    ipmi.seXX.lc  Lower Critical Threshold
        Unsigned 8-bit integer
    ipmi.seXX.lnc  Lower Non-Critical Threshold
        Unsigned 8-bit integer
    ipmi.seXX.lnr  Lower Non-Recoverable Threshold
        Unsigned 8-bit integer
    ipmi.seXX.mask.lc  Lower Critical
        Boolean
    ipmi.seXX.mask.lnc  Lower Non-Critical
        Boolean
    ipmi.seXX.mask.lnr  Lower Non-Recoverable
        Boolean
    ipmi.seXX.mask.uc  Upper Critical
        Boolean
    ipmi.seXX.mask.unc  Upper Non-Critical
        Boolean
    ipmi.seXX.mask.unr  Upper Non-Recoverable
        Boolean
    ipmi.seXX.sensor  Sensor Number
        Unsigned 8-bit integer
    ipmi.seXX.uc  Upper Critical Threshold
        Unsigned 8-bit integer
    ipmi.seXX.unc  Upper Non-Critical Threshold
        Unsigned 8-bit integer
    ipmi.seXX.unr  Upper Non-Recoverable Threshold
        Unsigned 8-bit integer
    ipmi.serial03.basic  Basic Mode
        Boolean
    ipmi.serial03.connmode  Connection Mode
        Boolean
    ipmi.serial03.ppp  PPP Mode
        Boolean
    ipmi.serial03.terminal  Terminal Mode
        Boolean
    ipmi.serial04.timeout  Session Inactivity Timeout
        Unsigned 8-bit integer
    ipmi.serial05.cb_dest1  Callback destination 1
        Unsigned 8-bit integer
    ipmi.serial05.cb_dest2  Callback destination 2
        Unsigned 8-bit integer
    ipmi.serial05.cb_dest3  Callback destination 3
        Unsigned 8-bit integer
    ipmi.serial05.cb_list  Callback to list of possible numbers
        Boolean
    ipmi.serial05.cb_prespec  Callback to pre-specified number
        Boolean
    ipmi.serial05.cb_user  Callback to user-specifiable number
        Boolean
    ipmi.serial05.cbcp  CBCP Callback
        Boolean
    ipmi.serial05.ipmi  IPMI Callback
        Boolean
    ipmi.serial05.no_cb  No callback
        Boolean
    ipmi.serial06.dcd  Close on DCD Loss
        Boolean
    ipmi.serial06.inactivity  Session Inactivity Timeout
        Boolean
    ipmi.serial07.bitrate  Bit rate
        Unsigned 8-bit integer
    ipmi.serial07.dtrhangup  DTR Hang-up
        Boolean
    ipmi.serial07.flowctl  Flow Control
        Unsigned 8-bit integer
    ipmi.serial08.esc_powerup  Power-up/wakeup via ESC-^
        Boolean
    ipmi.serial08.esc_reset  Hard reset via ESC-R-ESC-r-ESC-R
        Boolean
    ipmi.serial08.esc_switch1  BMC-to-Baseboard switch via ESC-Q
        Boolean
    ipmi.serial08.esc_switch2  Baseboard-to-BMC switch via ESC-(
        Boolean
    ipmi.serial08.ping_callback  Serial/Modem Connection Active during callback
        Boolean
    ipmi.serial08.ping_direct  Serial/Modem Connection Active during direct call
        Boolean
    ipmi.serial08.ping_retry  Retry Serial/Modem Connection Active
        Boolean
    ipmi.serial08.sharing  Serial Port Sharing
        Boolean
    ipmi.serial08.switch_authcap  Baseboard-to-BMC switch on Get Channel Auth Capabilities
        Boolean
    ipmi.serial08.switch_dcdloss  Switch to BMC on DCD loss
        Boolean
    ipmi.serial08.switch_rmcp  Switch to BMC on IPMI-RMCP pattern
        Boolean
    ipmi.serial09.ring_dead  Ring Dead Time
        Unsigned 8-bit integer
    ipmi.serial09.ring_duration  Ring Duration
        Unsigned 8-bit integer
    ipmi.serial10.init_str  Modem Init String
        String
    ipmi.serial10.set_sel  Set selector (16-byte block #)
        Unsigned 8-bit integer
    ipmi.serial11.esc_seq  Modem Escape Sequence
        String
    ipmi.serial12.hangup_seq  Modem Hang-up Sequence
        String
    ipmi.serial13.dial_cmd  Modem Dial Command
        String
    ipmi.serial14.page_blackout  Page Blackout Interval (minutes)
        Unsigned 8-bit integer
    ipmi.serial15.comm_string  Community String
        String
    ipmi.serial16.ndest  Number of non-volatile Alert Destinations
        Unsigned 8-bit integer
    ipmi.serial17.ack  Alert Acknowledge
        Boolean
    ipmi.serial17.ack_timeout  Alert Acknowledge Timeout
        Unsigned 8-bit integer
    ipmi.serial17.alert_ack_timeout  Alert Acknowledge Timeout
        Unsigned 8-bit integer
    ipmi.serial17.alert_retries  Alert retries
        Unsigned 8-bit integer
    ipmi.serial17.call_retries  Call retries
        Unsigned 8-bit integer
    ipmi.serial17.dest_sel  Destination Selector
        Unsigned 8-bit integer
    ipmi.serial17.dest_type  Destination Type
        Unsigned 8-bit integer
    ipmi.serial17.dialstr_sel  Dial String Selector
        Unsigned 8-bit integer
    ipmi.serial17.ipaddr_sel  Destination IP Address Selector
        Unsigned 8-bit integer
    ipmi.serial17.ppp_sel  PPP Account Set Selector
        Unsigned 8-bit integer
    ipmi.serial17.tap_sel  TAP Account Selector
        Unsigned 8-bit integer
    ipmi.serial17.unknown  Destination-specific (format unknown)
        Unsigned 8-bit integer
    ipmi.serial18.call_retry  Call Retry Interval
        Unsigned 8-bit integer
    ipmi.serial19.bitrate  Bit rate
        Unsigned 8-bit integer
    ipmi.serial19.charsize  Character size
        Boolean
    ipmi.serial19.destsel  Destination selector
        Unsigned 8-bit integer
    ipmi.serial19.dtrhangup  DTR Hang-up
        Boolean
    ipmi.serial19.flowctl  Flow Control
        Unsigned 8-bit integer
    ipmi.serial19.parity  Parity
        Unsigned 8-bit integer
    ipmi.serial19.stopbits  Stop bits
        Boolean
    ipmi.serial20.num_dial_strings  Number of Dial Strings
        Unsigned 8-bit integer
    ipmi.serial21.blockno  Block number
        Unsigned 8-bit integer
    ipmi.serial21.dialsel  Dial String Selector
        Unsigned 8-bit integer
    ipmi.serial21.dialstr  Dial string
        String
    ipmi.serial22.num_ipaddrs  Number of Alert Destination IP Addresses
        Unsigned 8-bit integer
    ipmi.serial23.destsel  Destination IP Address selector
        Unsigned 8-bit integer
    ipmi.serial23.ipaddr  Destination IP Address
        IPv4 address
    ipmi.serial24.num_tap_accounts  Number of TAP Accounts
        Unsigned 8-bit integer
    ipmi.serial25.dialstr_sel  Dial String Selector
        Unsigned 8-bit integer
    ipmi.serial25.tap_acct  TAP Account Selector
        Unsigned 8-bit integer
    ipmi.serial25.tapsrv_sel  TAP Service Settings Selector
        Unsigned 8-bit integer
    ipmi.serial26.tap_acct  TAP Account Selector
        Unsigned 8-bit integer
    ipmi.serial26.tap_passwd  TAP Password
        String
    ipmi.serial27.tap_acct  TAP Account Selector
        Unsigned 8-bit integer
    ipmi.serial27.tap_pager_id  TAP Pager ID String
        String
    ipmi.serial28.confirm  TAP Confirmation
        Unsigned 8-bit integer
    ipmi.serial28.ctrl_esc  TAP Control-character escaping mask
        Unsigned 32-bit integer
    ipmi.serial28.ipmi_n4  IPMI N4
        Unsigned 8-bit integer
    ipmi.serial28.ipmi_t6  IPMI T6
        Unsigned 8-bit integer
    ipmi.serial28.srvtype  TAP 'SST' Service Type
        String
    ipmi.serial28.tap_n1  TAP N1
        Unsigned 8-bit integer
    ipmi.serial28.tap_n2  TAP N2
        Unsigned 8-bit integer
    ipmi.serial28.tap_n3  TAP N3
        Unsigned 8-bit integer
    ipmi.serial28.tap_t1  TAP T1
        Unsigned 8-bit integer
    ipmi.serial28.tap_t2  TAP T2
        Unsigned 8-bit integer
    ipmi.serial28.tap_t3  TAP T3
        Unsigned 8-bit integer
    ipmi.serial28.tap_t4  TAP T4
        Unsigned 8-bit integer
    ipmi.serial28.tap_t5  TAP T5
        Unsigned 8-bit integer
    ipmi.serial28.tapsrv_sel  TAP Service Settings Selector
        Unsigned 8-bit integer
    ipmi.serial29.deletectl  Delete control
        Unsigned 8-bit integer
    ipmi.serial29.echo  Echo
        Boolean
    ipmi.serial29.handshake  Handshake
        Boolean
    ipmi.serial29.i_newline  Input newline sequence
        Unsigned 8-bit integer
    ipmi.serial29.lineedit  Line Editing
        Boolean
    ipmi.serial29.o_newline  Output newline sequence
        Unsigned 8-bit integer
    ipmi.serial29.op  Parameter Operation
        Unsigned 8-bit integer
    ipmi.serial30.accm  ACCM Negotiation
        Boolean
    ipmi.serial30.addr_comp  Address and Ctl Field Compression
        Boolean
    ipmi.serial30.filter  Filtering incoming chars
        Boolean
    ipmi.serial30.ipaddr  IP Address negotiation
        Unsigned 8-bit integer
    ipmi.serial30.negot_ctl  BMC negotiates link parameters
        Unsigned 8-bit integer
    ipmi.serial30.proto_comp  Protocol Field Compression
        Boolean
    ipmi.serial30.snoopctl  Snoop ACCM Control
        Unsigned 8-bit integer
    ipmi.serial30.snooping  System Negotiation Snooping
        Boolean
    ipmi.serial30.xmit_addr_comp  Transmit with Address and Ctl Field Compression
        Boolean
    ipmi.serial30.xmit_proto_comp  Transmit with Protocol Field Compression
        Boolean
    ipmi.serial31.port  Primary RMCP Port Number
        Unsigned 16-bit integer
    ipmi.serial32.port  Secondary RMCP Port Number
        Unsigned 16-bit integer
    ipmi.serial33.auth_proto  PPP Link Authentication Protocol
        Unsigned 8-bit integer
    ipmi.serial34.chap_name  CHAP Name
        String
    ipmi.serial35.recv_accm  Receive ACCM
        Unsigned 32-bit integer
    ipmi.serial35.xmit_accm  Transmit ACCM
        Unsigned 32-bit integer
    ipmi.serial36.snoop_accm  Snoop Receive ACCM
        Unsigned 32-bit integer
    ipmi.serial37.num_ppp  Number of PPP Accounts
        Unsigned 8-bit integer
    ipmi.serial38.acct_sel  PPP Account Selector
        Unsigned 8-bit integer
    ipmi.serial38.dialstr_sel  Dial String Selector
        Unsigned 8-bit integer
    ipmi.serial39.acct_sel  PPP Account Selector
        Unsigned 8-bit integer
    ipmi.serial39.ipaddr  IP Address
        IPv4 address
    ipmi.serial40.acct_sel  PPP Account Selector
        Unsigned 8-bit integer
    ipmi.serial40.username  User Name
        String
    ipmi.serial41.acct_sel  PPP Account Selector
        Unsigned 8-bit integer
    ipmi.serial41.userdomain  User Domain
        String
    ipmi.serial42.acct_sel  PPP Account Selector
        Unsigned 8-bit integer
    ipmi.serial42.userpass  User Password
        String
    ipmi.serial43.acct_sel  PPP Account Selector
        Unsigned 8-bit integer
    ipmi.serial43.auth_proto  Link Auth Type
        Unsigned 8-bit integer
    ipmi.serial44.acct_sel  PPP Account Selector
        Unsigned 8-bit integer
    ipmi.serial44.hold_time  Connection Hold Time
        Unsigned 8-bit integer
    ipmi.serial45.dst_ipaddr  Destination IP Address
        IPv4 address
    ipmi.serial45.src_ipaddr  Source IP Address
        IPv4 address
    ipmi.serial46.tx_size  Transmit Buffer Size
        Unsigned 16-bit integer
    ipmi.serial47.rx_size  Receive Buffer Size
        Unsigned 16-bit integer
    ipmi.serial48.ipaddr  Remote Console IP Address
        IPv4 address
    ipmi.serial49.blockno  Block number
        Unsigned 8-bit integer
    ipmi.serial49.dialstr  Dial string
        String
    ipmi.serial50.115200  115200
        Boolean
    ipmi.serial50.19200  19200
        Boolean
    ipmi.serial50.38400  38400
        Boolean
    ipmi.serial50.57600  57600
        Boolean
    ipmi.serial50.9600  9600
        Boolean
    ipmi.serial51.chan_num  Serial controller channel number
        Unsigned 8-bit integer
    ipmi.serial51.conn_num  Connector number
        Unsigned 8-bit integer
    ipmi.serial51.ipmi_channel  IPMI Channel
        Unsigned 8-bit integer
    ipmi.serial51.ipmi_sharing  Used with IPMI Serial Port Sharing
        Boolean
    ipmi.serial51.ipmi_sol  Used with IPMI Serial-over-LAN
        Boolean
    ipmi.serial51.port_assoc_sel  Serial Port Association Entry
        Unsigned 8-bit integer
    ipmi.serial52.port_assoc_sel  Serial Port Association Entry
        Unsigned 8-bit integer
    ipmi.serial52_chan_name  Channel Name
        Byte array
    ipmi.serial52_conn_name  Connector Name
        Byte array
    ipmi.serial53.port_assoc_sel  Serial Port Association Entry
        Unsigned 8-bit integer
    ipmi.session_handle  Session handle
        Unsigned 8-bit integer
    ipmi.st10.access  Device is accessed
        Boolean
    ipmi.st10.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.st10.size  FRU Inventory area size
        Unsigned 16-bit integer
    ipmi.st11.count  Count to read
        Unsigned 8-bit integer
    ipmi.st11.data  Requested data
        Byte array
    ipmi.st11.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.st11.offset  Offset to read
        Unsigned 16-bit integer
    ipmi.st11.ret_count  Returned count
        Unsigned 8-bit integer
    ipmi.st12.data  Requested data
        Byte array
    ipmi.st12.fruid  FRU ID
        Unsigned 8-bit integer
    ipmi.st12.offset  Offset to read
        Unsigned 16-bit integer
    ipmi.st12.ret_count  Returned count
        Unsigned 8-bit integer
    ipmi.st20.free_space  Free Space
        Unsigned 16-bit integer
    ipmi.st20.op_allocinfo  Get SDR Repository Allocation Info
        Boolean
    ipmi.st20.op_delete  Delete SDR
        Boolean
    ipmi.st20.op_overflow  Overflow
        Boolean
    ipmi.st20.op_partial_add  Partial Add SDR
        Boolean
    ipmi.st20.op_reserve  Reserve SDR Repository
        Boolean
    ipmi.st20.op_update  SDR Repository Update
        Unsigned 8-bit integer
    ipmi.st20.rec_count  Record Count
        Unsigned 16-bit integer
    ipmi.st20.sdr_version  SDR Version
        Unsigned 8-bit integer
    ipmi.st20.ts_add  Most recent addition timestamp
        Unsigned 32-bit integer
    ipmi.st20.ts_erase  Most recent erase timestamp
        Unsigned 32-bit integer
    ipmi.st21.free  Number of free units
        Unsigned 16-bit integer
    ipmi.st21.largest  Largest free block (in units)
        Unsigned 16-bit integer
    ipmi.st21.maxrec  Maximum record size (in units)
        Unsigned 8-bit integer
    ipmi.st21.size  Allocation unit size
        Unsigned 16-bit integer
    ipmi.st21.units  Number of allocation units
        Unsigned 16-bit integer
    ipmi.st22.rsrv_id  Reservation ID
        Unsigned 16-bit integer
    ipmi.st23.added_rec_id  Record ID for added record
        Unsigned 16-bit integer
    ipmi.st23.count  Bytes to read
        Unsigned 8-bit integer
    ipmi.st23.data  Record Data
        Byte array
    ipmi.st23.next  Next Record ID
        Unsigned 16-bit integer
    ipmi.st23.offset  Offset into record
        Unsigned 8-bit integer
    ipmi.st23.rec_id  Record ID
        Unsigned 16-bit integer
    ipmi.st23.rsrv_id  Reservation ID
        Unsigned 16-bit integer
    ipmi.st24.data  SDR Data
        Byte array
    ipmi.st25.added_rec_id  Record ID for added record
        Unsigned 16-bit integer
    ipmi.st25.data  SDR Data
        Byte array
    ipmi.st25.inprogress  In progress
        Unsigned 8-bit integer
    ipmi.st25.offset  Offset into record
        Unsigned 8-bit integer
    ipmi.st25.rec_id  Record ID
        Unsigned 16-bit integer
    ipmi.st25.rsrv_id  Reservation ID
        Unsigned 16-bit integer
    ipmi.st26.del_rec_id  Deleted Record ID
        Unsigned 16-bit integer
    ipmi.st26.rec_id  Record ID
        Unsigned 16-bit integer
    ipmi.st26.rsrv_id  Reservation ID
        Unsigned 16-bit integer
    ipmi.st27.action  Action
        Unsigned 8-bit integer
    ipmi.st27.clr  Confirmation (should be CLR)
        String
    ipmi.st27.rsrv_id  Reservation ID
        Unsigned 16-bit integer
    ipmi.st27.status  Erasure Status
        Unsigned 8-bit integer
    ipmi.st28.time  Time
        Unsigned 32-bit integer
    ipmi.st29.time  Time
        Unsigned 32-bit integer
    ipmi.st2c.init_agent  Initialization agent
        Boolean
    ipmi.st2c.init_state  Initialization
        Boolean
    ipmi.st40.free_space  Free Space
        Unsigned 16-bit integer
    ipmi.st40.op_allocinfo  Get SEL Allocation Info
        Boolean
    ipmi.st40.op_delete  Delete SEL
        Boolean
    ipmi.st40.op_overflow  Overflow
        Boolean
    ipmi.st40.op_partial_add  Partial Add SEL Entry
        Boolean
    ipmi.st40.op_reserve  Reserve SEL
        Boolean
    ipmi.st40.rec_count  Entries
        Unsigned 16-bit integer
    ipmi.st40.sel_version  SEL Version
        Unsigned 8-bit integer
    ipmi.st40.ts_add  Most recent addition timestamp
        Unsigned 32-bit integer
    ipmi.st40.ts_erase  Most recent erase timestamp
        Unsigned 32-bit integer
    ipmi.st41.free  Number of free units
        Unsigned 16-bit integer
    ipmi.st41.largest  Largest free block (in units)
        Unsigned 16-bit integer
    ipmi.st41.maxrec  Maximum record size (in units)
        Unsigned 8-bit integer
    ipmi.st41.size  Allocation unit size
        Unsigned 16-bit integer
    ipmi.st41.units  Number of allocation units
        Unsigned 16-bit integer
    ipmi.st42.rsrv_id  Reservation ID
        Unsigned 16-bit integer
    ipmi.st43.added_rec_id  Record ID for added record
        Unsigned 16-bit integer
    ipmi.st43.count  Bytes to read
        Unsigned 8-bit integer
    ipmi.st43.data  Record Data
        Byte array
    ipmi.st43.next  Next Record ID
        Unsigned 16-bit integer
    ipmi.st43.offset  Offset into record
        Unsigned 8-bit integer
    ipmi.st43.rec_id  Record ID
        Unsigned 16-bit integer
    ipmi.st43.rsrv_id  Reservation ID
        Unsigned 16-bit integer
    ipmi.st44.data  SDR Data
        Byte array
    ipmi.st45.added_rec_id  Record ID for added record
        Unsigned 16-bit integer
    ipmi.st45.data  Record Data
        Byte array
    ipmi.st45.inprogress  In progress
        Unsigned 8-bit integer
    ipmi.st45.offset  Offset into record
        Unsigned 8-bit integer
    ipmi.st45.rec_id  Record ID
        Unsigned 16-bit integer
    ipmi.st45.rsrv_id  Reservation ID
        Unsigned 16-bit integer
    ipmi.st46.del_rec_id  Deleted Record ID
        Unsigned 16-bit integer
    ipmi.st46.rec_id  Record ID
        Unsigned 16-bit integer
    ipmi.st46.rsrv_id  Reservation ID
        Unsigned 16-bit integer
    ipmi.st47.action  Action
        Unsigned 8-bit integer
    ipmi.st47.clr  Confirmation (should be CLR)
        String
    ipmi.st47.rsrv_id  Reservation ID
        Unsigned 16-bit integer
    ipmi.st47.status  Erasure Status
        Unsigned 8-bit integer
    ipmi.st48.time  Time
        Unsigned 32-bit integer
    ipmi.st49.time  Time
        Unsigned 32-bit integer
    ipmi.st5a.bytes  Log status bytes
        Byte array
    ipmi.st5a.iana  OEM IANA
        Unsigned 24-bit integer
    ipmi.st5a.log_type  Log type
        Unsigned 8-bit integer
    ipmi.st5a.num_entries  Number of entries in MCA Log
        Unsigned 32-bit integer
    ipmi.st5a.ts_add  Last addition timestamp
        Unsigned 32-bit integer
    ipmi.st5a.unknown  Unknown log format (cannot parse data)
        Byte array
    ipmi.st5b.bytes  Log status bytes
        Byte array
    ipmi.st5b.iana  OEM IANA
        Unsigned 24-bit integer
    ipmi.st5b.log_type  Log type
        Unsigned 8-bit integer
    ipmi.st5b.num_entries  Number of entries in MCA Log
        Unsigned 32-bit integer
    ipmi.st5b.ts_add  Last addition timestamp
        Unsigned 32-bit integer
    ipmi.st5b.unknown  Unknown log format (cannot parse data)
        Byte array
    ipmi.tr01.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr01.param  Parameter Selector
        Unsigned 8-bit integer
    ipmi.tr01.param_data  Parameter data
        Byte array
    ipmi.tr02.block  Block selector
        Unsigned 8-bit integer
    ipmi.tr02.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr02.getrev  Get parameter revision only
        Boolean
    ipmi.tr02.param  Parameter selector
        Unsigned 8-bit integer
    ipmi.tr02.param_data  Parameter data
        Byte array
    ipmi.tr02.rev.compat  Oldest forward-compatible
        Unsigned 8-bit integer
    ipmi.tr02.rev.present  Present parameter revision
        Unsigned 8-bit integer
    ipmi.tr02.set  Set selector
        Unsigned 8-bit integer
    ipmi.tr03.arp_resp  BMC-generated ARP responses
        Boolean
    ipmi.tr03.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr03.gratuitous_arp  Gratuitous ARPs
        Boolean
    ipmi.tr03.status_arp_resp  ARP Response status
        Boolean
    ipmi.tr03.status_gratuitous_arp  Gratuitous ARP status
        Boolean
    ipmi.tr04.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr04.clear  Statistics
        Boolean
    ipmi.tr04.dr_udpproxy  Dropped UDP Proxy Packets
        Unsigned 16-bit integer
    ipmi.tr04.rx_ipaddr_err  Received IP Address Errors
        Unsigned 16-bit integer
    ipmi.tr04.rx_iphdr_err  Received IP Header Errors
        Unsigned 16-bit integer
    ipmi.tr04.rx_ippkts  Received IP Packets
        Unsigned 16-bit integer
    ipmi.tr04.rx_ippkts_frag  Received Fragmented IP Packets
        Unsigned 16-bit integer
    ipmi.tr04.rx_udppkts  Received UDP Packets
        Unsigned 16-bit integer
    ipmi.tr04.rx_udpproxy  Received UDP Proxy Packets
        Unsigned 16-bit integer
    ipmi.tr04.rx_validrmcp  Received Valid RMCP Packets
        Unsigned 16-bit integer
    ipmi.tr04.tx_ippkts  Transmitted IP Packets
        Unsigned 16-bit integer
    ipmi.tr10.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr10.param  Parameter Selector
        Unsigned 8-bit integer
    ipmi.tr10.param_data  Parameter data
        Byte array
    ipmi.tr11.block  Block selector
        Unsigned 8-bit integer
    ipmi.tr11.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr11.getrev  Get parameter revision only
        Boolean
    ipmi.tr11.param  Parameter selector
        Unsigned 8-bit integer
    ipmi.tr11.param_data  Parameter data
        Byte array
    ipmi.tr11.rev.compat  Oldest forward-compatible
        Unsigned 8-bit integer
    ipmi.tr11.rev.present  Present parameter revision
        Unsigned 8-bit integer
    ipmi.tr11.set  Set selector
        Unsigned 8-bit integer
    ipmi.tr12.alert  Alert in progress
        Boolean
    ipmi.tr12.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr12.msg  IPMI/OEM messaging active
        Boolean
    ipmi.tr12.mux_setting  Mux Setting
        Unsigned 8-bit integer
    ipmi.tr12.mux_state  Mux set to
        Boolean
    ipmi.tr12.req  Request
        Boolean
    ipmi.tr12.sw_to_bmc  Requests to switch to BMC
        Boolean
    ipmi.tr12.sw_to_sys  Requests to switch to system
        Boolean
    ipmi.tr13.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr13.code1  Last code
        String
    ipmi.tr13.code2  2nd code
        String
    ipmi.tr13.code3  3rd code
        String
    ipmi.tr13.code4  4th code
        String
    ipmi.tr13.code5  5th code
        String
    ipmi.tr14.block  Block number
        Unsigned 8-bit integer
    ipmi.tr14.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr14.data  Block data
        Byte array
    ipmi.tr15.block  Block number
        Unsigned 8-bit integer
    ipmi.tr15.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr15.data  Block data
        Byte array
    ipmi.tr16.bytes  Bytes to send
        Unsigned 16-bit integer
    ipmi.tr16.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr16.dst_addr  Destination IP Address
        IPv4 address
    ipmi.tr16.dst_port  Destination Port
        Unsigned 16-bit integer
    ipmi.tr16.src_addr  Source IP Address
        IPv4 address
    ipmi.tr16.src_port  Source Port
        Unsigned 16-bit integer
    ipmi.tr17.block_num  Block number
        Unsigned 8-bit integer
    ipmi.tr17.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr17.clear  Clear buffer
        Boolean
    ipmi.tr17.data  Block Data
        Byte array
    ipmi.tr17.size  Number of received bytes
        Unsigned 16-bit integer
    ipmi.tr18.ipmi_ver  IPMI Version
        Unsigned 8-bit integer
    ipmi.tr18.state  Session state
        Unsigned 8-bit integer
    ipmi.tr19.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr19.dest_sel  Destination selector
        Unsigned 8-bit integer
    ipmi.tr1a.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr1a.user  User ID
        Unsigned 8-bit integer
    ipmi.tr1b.chan  Channel
        Unsigned 8-bit integer
    ipmi.tr1b.user  User ID
        Unsigned 8-bit integer
    ipmi.trXX.cap_cbcp  CBCP callback
        Boolean
    ipmi.trXX.cap_ipmi  IPMI callback
        Boolean
    ipmi.trXX.cbcp_from_list  Callback to one from list of numbers
        Boolean
    ipmi.trXX.cbcp_nocb  No callback
        Boolean
    ipmi.trXX.cbcp_prespec  Callback to pre-specified number
        Boolean
    ipmi.trXX.cbcp_user  Callback to user-specified number
        Boolean
    ipmi.trXX.dst1  Callback destination 1
        Unsigned 8-bit integer
    ipmi.trXX.dst2  Callback destination 2
        Unsigned 8-bit integer
    ipmi.trXX.dst3  Callback destination 3
        Unsigned 8-bit integer

Intelligent Platform Management Interface (Session Wrapper) (ipmi-session)

    ipmi.msg.len  Message Length
        Unsigned 8-bit integer
    ipmi.sess.trailer  IPMI Session Wrapper (trailer)
        Byte array
    ipmi.session.authcode  Authentication Code
        Byte array
    ipmi.session.authtype  Authentication Type
        Unsigned 8-bit integer
    ipmi.session.id  Session ID
        Unsigned 32-bit integer
    ipmi.session.oem.iana  OEM IANA
        Byte array
    ipmi.session.oem.payloadid  OEM Payload ID
        Byte array
    ipmi.session.payloadtype  Payload Type
        Unsigned 8-bit integer
    ipmi.session.payloadtype.auth  Authenticated
        Boolean
    ipmi.session.payloadtype.enc  Encryption
        Boolean
    ipmi.session.sequence  Session Sequence Number
        Unsigned 32-bit integer

Inter-Access-Point Protocol (iapp)

    iapp.type  type
        Unsigned 8-bit integer
    iapp.version  Version
        Unsigned 8-bit integer

Inter-Asterisk eXchange v2 (iax2)

    iax2.abstime  Absolute Time
        Date/Time stamp
        The absoulte time of this packet (calculated by adding the IAX timestamp to  the start time of this call)
    iax2.call  Call identifier
        Unsigned 32-bit integer
        This is the identifier Wireshark assigns to identify this call. It does not correspond to any real field in the protocol
    iax2.cap.adpcm  ADPCM
        Boolean
    iax2.cap.alaw  Raw A-law data (G.711)
        Boolean
    iax2.cap.g723_1  G.723.1 compression
        Boolean
    iax2.cap.g726  G.726 compression
        Boolean
    iax2.cap.g729a  G.729a Audio
        Boolean
    iax2.cap.gsm  GSM compression
        Boolean
    iax2.cap.h261  H.261 video
        Boolean
    iax2.cap.h263  H.263 video
        Boolean
    iax2.cap.ilbc  iLBC Free compressed Audio
        Boolean
    iax2.cap.jpeg  JPEG images
        Boolean
    iax2.cap.lpc10  LPC10, 180 samples/frame
        Boolean
    iax2.cap.png  PNG images
        Boolean
    iax2.cap.slinear  Raw 16-bit Signed Linear (8000 Hz) PCM
        Boolean
    iax2.cap.speex  SPEEX Audio
        Boolean
    iax2.cap.ulaw  Raw mu-law data (G.711)
        Boolean
    iax2.control.subclass  Control subclass
        Unsigned 8-bit integer
        This gives the command number for a Control packet.
    iax2.dst_call  Destination call
        Unsigned 16-bit integer
        dst_call holds the number of this call at the packet destination
    iax2.dtmf.subclass  DTMF subclass (digit)
        NULL terminated string
        DTMF subclass gives the DTMF digit
    iax2.fragment  IAX2 Fragment data
        Frame number
    iax2.fragment.error  Defragmentation error
        Frame number
        Defragmentation error due to illegal fragments
    iax2.fragment.multipletails  Multiple tail fragments found
        Boolean
        Several tails were found when defragmenting the packet
    iax2.fragment.overlap  Fragment overlap
        Boolean
        Fragment overlaps with other fragments
    iax2.fragment.overlap.conflict  Conflicting data in fragment overlap
        Boolean
        Overlapping fragments contained conflicting data
    iax2.fragment.toolongfragment  Fragment too long
        Boolean
        Fragment contained data past end of packet
    iax2.fragments  IAX2 Fragments
        No value
    iax2.iax.aesprovisioning  AES Provisioning info
        String
    iax2.iax.app_addr.sinaddr  Address
        IPv4 address
    iax2.iax.app_addr.sinfamily  Family
        Unsigned 16-bit integer
    iax2.iax.app_addr.sinport  Port
        Unsigned 16-bit integer
    iax2.iax.auth.challenge  Challenge data for MD5/RSA
        String
    iax2.iax.auth.md5  MD5 challenge result
        String
    iax2.iax.auth.methods  Authentication method(s)
        Unsigned 16-bit integer
    iax2.iax.auth.rsa  RSA challenge result
        String
    iax2.iax.autoanswer  Request auto-answering
        No value
    iax2.iax.call_no  Call number of peer
        Unsigned 16-bit integer
    iax2.iax.called_context  Context for number
        String
    iax2.iax.called_number  Number/extension being called
        String
    iax2.iax.calling_ani  Calling number ANI for billing
        String
    iax2.iax.calling_name  Name of caller
        String
    iax2.iax.calling_number  Calling number
        String
    iax2.iax.callingpres  Calling presentation
        Unsigned 8-bit integer
    iax2.iax.callingtns  Calling transit network select
        Unsigned 16-bit integer
    iax2.iax.callington  Calling type of number
        Unsigned 8-bit integer
    iax2.iax.capability  Actual codec capability
        Unsigned 32-bit integer
    iax2.iax.cause  Cause
        String
    iax2.iax.causecode  Hangup cause
        Unsigned 8-bit integer
    iax2.iax.codecprefs  Codec negotiation
        String
    iax2.iax.cpe_adsi  CPE ADSI capability
        Unsigned 16-bit integer
    iax2.iax.dataformat  Data call format
        Unsigned 32-bit integer
    iax2.iax.datetime  Date/Time
        Date/Time stamp
    iax2.iax.datetime.raw  Date/Time
        Unsigned 32-bit integer
    iax2.iax.devicetype  Device type
        String
    iax2.iax.dialplan_status  Dialplan status
        Unsigned 16-bit integer
    iax2.iax.dnid  Originally dialed DNID
        String
    iax2.iax.enckey  Encryption key
        String
    iax2.iax.encryption  Encryption format
        Unsigned 16-bit integer
    iax2.iax.firmwarever  Firmware version
        Unsigned 16-bit integer
    iax2.iax.format  Desired codec format
        Unsigned 32-bit integer
    iax2.iax.fwblockdata  Firmware block of data
        String
    iax2.iax.fwblockdesc  Firmware block description
        Unsigned 32-bit integer
    iax2.iax.iax_unknown  Unknown IAX command
        Byte array
    iax2.iax.language  Desired language
        String
    iax2.iax.moh  Request musiconhold with QUELCH
        No value
    iax2.iax.msg_count  How many messages waiting
        Signed 16-bit integer
    iax2.iax.password  Password for authentication
        String
    iax2.iax.provisioning  Provisioning info
        String
    iax2.iax.provver  Provisioning version
        Unsigned 32-bit integer
    iax2.iax.rdnis  Referring DNIS
        String
    iax2.iax.refresh  When to refresh registration
        Signed 16-bit integer
    iax2.iax.rrdelay  Max playout delay in ms for received frames
        Unsigned 16-bit integer
    iax2.iax.rrdropped  Dropped frames (presumably by jitterbuffer)
        Unsigned 32-bit integer
    iax2.iax.rrjitter  Received jitter (as in RFC1889)
        Unsigned 32-bit integer
    iax2.iax.rrloss  Received loss (high byte loss pct, low 24 bits loss count, as in rfc1889)
        Unsigned 32-bit integer
    iax2.iax.rrooo  Frame received out of order
        Unsigned 32-bit integer
    iax2.iax.rrpkts  Total frames received
        Unsigned 32-bit integer
    iax2.iax.samplingrate  Supported sampling rates
        Unsigned 16-bit integer
    iax2.iax.serviceident  Service identifier
        String
    iax2.iax.subclass  IAX subclass
        Unsigned 8-bit integer
        IAX subclass gives the command number for IAX signalling packets
    iax2.iax.transferid  Transfer Request Identifier
        Unsigned 32-bit integer
    iax2.iax.unknownbyte  Unknown
        Unsigned 8-bit integer
        Raw data for unknown IEs
    iax2.iax.unknownlong  Unknown
        Unsigned 32-bit integer
        Raw data for unknown IEs
    iax2.iax.unknownshort  Unknown
        Unsigned 16-bit integer
        Raw data for unknown IEs
    iax2.iax.unknownstring  Unknown
        String
        Raw data for unknown IEs
    iax2.iax.username  Username (peer or user) for authentication
        String
    iax2.iax.version  Protocol version
        Unsigned 16-bit integer
    iax2.iseqno  Inbound seq.no.
        Unsigned 16-bit integer
        iseqno is the sequence no of the last successfully received packet
    iax2.lateness  Lateness
        Time duration
        The lateness of this packet compared to its timestamp
    iax2.modem.subclass  Modem subclass
        Unsigned 8-bit integer
        Modem subclass gives the type of modem
    iax2.oseqno  Outbound seq.no.
        Unsigned 16-bit integer
        oseqno is the sequence no of this packet. The first packet has oseqno==0, and subsequent packets increment the oseqno by 1
    iax2.packet_type  Packet type
        Unsigned 8-bit integer
        Full/minivoice/minivideo/trunk packet
    iax2.reassembled.length  Reassembled IAX2 length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    iax2.reassembled_in  IAX2 fragment, reassembled in frame
        Frame number
        This IAX2 packet is reassembled in this frame
    iax2.retransmission  Retransmission
        Boolean
        retransmission is set if this packet is a retransmission of an earlier failed packet
    iax2.src_call  Source call
        Unsigned 16-bit integer
        src_call holds the number of this call at the packet source pbx
    iax2.subclass  Unknown subclass
        Unsigned 8-bit integer
        Subclass of unknown type of full IAX2 frame
    iax2.timestamp  Timestamp
        Unsigned 32-bit integer
        timestamp is the time, in ms after the start of this call, at which this packet was transmitted
    iax2.trunk.call.len  Data length
        Unsigned 16-bit integer
        Trunk call data length in octets
    iax2.trunk.call.scallno  Source call number
        Unsigned 16-bit integer
        Trunk call source call number
    iax2.trunk.call.ts  Timestamp
        Unsigned 16-bit integer
        timestamp is the time, in ms after the start of this call, at which this packet was transmitted
    iax2.trunk.cmddata  Command data
        Unsigned 8-bit integer
        Flags for options that apply to a trunked call
    iax2.trunk.cmddata.ts  Trunk timestamps
        Boolean
        True: calls do each include their own timestamp
    iax2.trunk.metacmd  Meta command
        Unsigned 8-bit integer
        Meta command indicates whether or not the Meta Frame is a trunk.
    iax2.trunk.ncalls  Number of calls
        Unsigned 16-bit integer
        Number of calls in this trunk packet
    iax2.type  Type
        Unsigned 8-bit integer
        For full IAX2 frames, type is the type of frame
    iax2.video.codec  CODEC
        Unsigned 32-bit integer
        The codec used to encode video data
    iax2.video.marker  Marker
        Unsigned 16-bit integer
        RTP end-of-frame marker
    iax2.video.subclass  Video Subclass (compressed codec no)
        Unsigned 8-bit integer
    iax2.voice.codec  CODEC
        Unsigned 32-bit integer
        CODEC gives the codec used to encode audio data
    iax2.voice.subclass  Voice Subclass (compressed codec no)
        Unsigned 8-bit integer

Inter-Integrated Circuit (i2c)

    i2c.addr  Target address
        Unsigned 8-bit integer
    i2c.bus  Bus ID
        Unsigned 8-bit integer
    i2c.event  Event
        Unsigned 32-bit integer
    i2c.flags  Flags
        Unsigned 32-bit integer

InterSwitch Message Protocol (ismp)

    ismp.authdata  Auth Data
        Byte array
    ismp.codelen  Auth Code Length
        Unsigned 8-bit integer
    ismp.edp  EDP
        Protocol
        Enterasys Discovery Protocol
    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

Interlink Protocol (interlink)

    interlink.block_version  Version
        Unsigned 8-bit integer
    interlink.cmd  Command
        Unsigned 16-bit integer
    interlink.flags  Flags
        Unsigned 16-bit integer
    interlink.flags.inc_ack_port  INC_ACK_PORT
        Boolean
    interlink.flags.req_ack  REQ_ACK
        Boolean
    interlink.id  Magic ID
        String
    interlink.length  Length
        Unsigned 16-bit integer
    interlink.seq  Sequence
        Unsigned 16-bit integer
    interlink.type  Type
        Unsigned 8-bit integer
    interlink.version  Version
        Unsigned 16-bit integer

Internal TDM (itdm)

    itdm.ack  ACK
        Boolean
    itdm.act  Activate
        Boolean
    itdm.chcmd  Channel Command
        Unsigned 8-bit integer
    itdm.chid  Channel ID
        Unsigned 24-bit integer
    itdm.chksum  Checksum
        Unsigned 16-bit integer
    itdm.chloc1  Channel Location 1
        Unsigned 16-bit integer
    itdm.chloc2  Channel Location 2
        Unsigned 16-bit integer
    itdm.ctl_cksum  ITDM Control Message Checksum
        Unsigned 16-bit integer
    itdm.ctl_cmd  Control Command
        Unsigned 8-bit integer
    itdm.ctl_dm  I-TDM Data Mode
        Unsigned 8-bit integer
    itdm.ctl_flowid  Allocated Flow ID
        Unsigned 24-bit integer
    itdm.ctl_pktrate  I-TDM Packet Rate
        Unsigned 32-bit integer
    itdm.ctl_ptid  Paired Transaction ID
        Unsigned 32-bit integer
    itdm.ctl_transid  Transaction ID
        Unsigned 32-bit integer
    itdm.ctlemts  I-TDM Explicit Multi-timeslot Size
        Unsigned 16-bit integer
    itdm.cxnsize  Connection Size
        Unsigned 16-bit integer
    itdm.last_pack  Last Packet
        Boolean
    itdm.pktlen  Packet Length
        Unsigned 16-bit integer
    itdm.pktrate  IEEE 754 Packet Rate
        Unsigned 32-bit integer
    itdm.seqnum  Sequence Number
        Unsigned 8-bit integer
    itdm.sop_eop  Start/End of Packet
        Unsigned 8-bit integer
    itdm.timestamp  Timestamp
        Unsigned 16-bit integer
    itdm.uid  Flow ID
        Unsigned 24-bit integer

International Passenger Airline Reservation System (ipars)

Internet Cache Protocol (icp)

    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

Internet Communications Engine Protocol (icep)

    icep.compression_status  Compression Status
        Signed 8-bit integer
        The compression status of the message
    icep.context  Invocation Context
        NULL terminated 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
        NULL terminated string
        The facet name
    icep.id.content  Object Identity Content
        NULL terminated string
        The object identity content
    icep.id.name  Object Identity Name
        NULL terminated 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
        NULL terminated 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

Internet Content Adaptation Protocol (icap)

    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

Internet Control Message Protocol (icmp)

    icmp.checksum  Checksum
        Unsigned 16-bit integer
    icmp.checksum_bad  Bad Checksum
        Boolean
    icmp.code  Code
        Unsigned 8-bit integer
    icmp.ident  Identifier
        Unsigned 16-bit integer
    icmp.mip.b  Busy
        Boolean
        This FA will not accept requests at this time
    icmp.mip.challenge  Challenge
        Byte array
    icmp.mip.coa  Care-Of-Address
        IPv4 address
    icmp.mip.f  Foreign Agent
        Boolean
        Foreign Agent Services Offered
    icmp.mip.flags  Flags
        Unsigned 16-bit integer
    icmp.mip.g  GRE
        Boolean
        GRE encapsulated tunneled datagram support
    icmp.mip.h  Home Agent
        Boolean
        Home Agent Services Offered
    icmp.mip.length  Length
        Unsigned 8-bit integer
    icmp.mip.life  Registration Lifetime
        Unsigned 16-bit integer
    icmp.mip.m  Minimal Encapsulation
        Boolean
        Minimal encapsulation tunneled datagram support
    icmp.mip.prefixlength  Prefix Length
        Unsigned 8-bit integer
    icmp.mip.r  Registration Required
        Boolean
        Registration with this FA is required
    icmp.mip.reserved  Reserved
        Unsigned 16-bit integer
    icmp.mip.rt  Reverse tunneling
        Boolean
        Reverse tunneling support
    icmp.mip.seq  Sequence Number
        Unsigned 16-bit integer
    icmp.mip.type  Extension Type
        Unsigned 8-bit integer
    icmp.mip.u  UDP tunneling
        Boolean
        UDP tunneling support
    icmp.mip.v  VJ Comp
        Boolean
        Van Jacobson Header Compression Support
    icmp.mip.x  Revocation support
        Boolean
        Registration revocation support
    icmp.mpls  ICMP Extensions for MPLS
        No value
    icmp.mpls.checksum  Checksum
        Unsigned 16-bit integer
    icmp.mpls.checksum_bad  Bad Checksum
        Boolean
    icmp.mpls.class  Class
        Unsigned 8-bit integer
    icmp.mpls.ctype  C-Type
        Unsigned 8-bit integer
    icmp.mpls.exp  Experimental
        Unsigned 24-bit integer
    icmp.mpls.label  Label
        Unsigned 24-bit integer
    icmp.mpls.length  Length
        Unsigned 16-bit integer
    icmp.mpls.res  Reserved
        Unsigned 16-bit integer
    icmp.mpls.s  Stack bit
        Boolean
    icmp.mpls.ttl  Time to live
        Unsigned 8-bit integer
    icmp.mpls.version  Version
        Unsigned 8-bit integer
    icmp.mtu  MTU of next hop
        Unsigned 16-bit integer
    icmp.redir_gw  Gateway address
        IPv4 address
    icmp.seq  Sequence number
        Unsigned 16-bit integer
    icmp.seq_le  Sequence number (LE)
        Unsigned 16-bit integer
        ""
    icmp.type  Type
        Unsigned 8-bit integer

Internet Control Message Protocol v6 (icmpv6)

    icmpv6.all_comp  All Components
        Unsigned 16-bit integer
    icmpv6.checksum  Checksum
        Unsigned 16-bit integer
    icmpv6.checksum_bad  Bad Checksum
        Boolean
    icmpv6.code  Code
        Unsigned 8-bit integer
    icmpv6.comp  Component
        Unsigned 16-bit integer
    icmpv6.haad.ha_addrs  Home Agent Addresses
        IPv6 address
    icmpv6.identifier  Identifier
        Unsigned 16-bit integer
    icmpv6.nor  Number of records
        Unsigned 16-bit integer
    icmpv6.opt_prefix.flag.a  Autonomous address-configuration flag(A)
        Boolean
    icmpv6.opt_prefix.flag.l  On-link flag(L)
        Boolean
    icmpv6.opt_prefix.flag.reserved  Reserved
        Unsigned 8-bit integer
    icmpv6.opt_prefix.length  Prefix Length
        Unsigned 8-bit integer
    icmpv6.option  ICMPv6 Option
        No value
        Option
    icmpv6.option.cga  CGA
        Byte array
    icmpv6.option.cga.count  Count
        Byte array
    icmpv6.option.cga.ext_length  Ext Length
        Byte array
    icmpv6.option.cga.ext_type  Ext Type
        Byte array
    icmpv6.option.cga.modifier  Modifier
        Byte array
    icmpv6.option.cga.pad_length  Pad Length
        Unsigned 8-bit integer
        Pad Length (in bytes)
    icmpv6.option.cga.subnet_prefix  Subnet Prefix
        Byte array
    icmpv6.option.length  Length
        Unsigned 8-bit integer
        Options length (in bytes)
    icmpv6.option.name_type  Name Type
        Unsigned 8-bit integer
    icmpv6.option.name_type.fqdn  FQDN
        String
    icmpv6.option.name_x501  DER Encoded X.501 Name
        Byte array
    icmpv6.option.rsa.key_hash  Key Hash
        Byte array
    icmpv6.option.type  Type
        Unsigned 8-bit integer
        Options type
    icmpv6.ra.cur_hop_limit  Cur hop limit
        Unsigned 8-bit integer
        Current hop limit
    icmpv6.ra.reachable_time  Reachable time
        Unsigned 32-bit integer
        Reachable time (ms)
    icmpv6.ra.retrans_timer  Retrans timer
        Unsigned 32-bit integer
        Retrans timer (ms)
    icmpv6.ra.router_lifetime  Router lifetime
        Unsigned 16-bit integer
        Router lifetime (s)
    icmpv6.recursive_dns_serv  Recursive DNS Servers
        IPv6 address
    icmpv6.type  Type
        Unsigned 8-bit integer
    icmpv6.x509_Certificate  Certificate
        No value
    icmpv6.x509_Name  Name
        Unsigned 32-bit integer

Internet Group Management Protocol (igmp)

    igmp.access_key  Access Key
        Byte array
        IGMP V0 Access Key
    igmp.aux_data  Aux Data
        Byte array
        IGMP V3 Auxiliary Data
    igmp.aux_data_len  Aux Data Len
        Unsigned 8-bit integer
        Aux Data Len, In units of 32bit words
    igmp.checksum  Checksum
        Unsigned 16-bit integer
        IGMP Checksum
    igmp.checksum_bad  Bad Checksum
        Boolean
        Bad IGMP Checksum
    igmp.group_type  Type Of Group
        Unsigned 8-bit integer
        IGMP V0 Type Of Group
    igmp.identifier  Identifier
        Unsigned 32-bit integer
        IGMP V0 Identifier
    igmp.maddr  Multicast Address
        IPv4 address
    igmp.max_resp  Max Resp Time
        Unsigned 8-bit integer
        Max Response Time
    igmp.max_resp.exp  Exponent
        Unsigned 8-bit integer
        Maximum Response Time, Exponent
    igmp.max_resp.mant  Mantissa
        Unsigned 8-bit integer
        Maximum Response Time, Mantissa
    igmp.mtrace.max_hops  # hops
        Unsigned 8-bit integer
        Maximum 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
    igmp.reply  Reply
        Unsigned 8-bit integer
        IGMP V0 Reply
    igmp.reply.pending  Reply Pending
        Unsigned 8-bit integer
        IGMP V0 Reply Pending, Retry in this many seconds
    igmp.s  S
        Boolean
        Suppress Router Side Processing
    igmp.saddr  Source Address
        IPv4 address
    igmp.type  Type
        Unsigned 8-bit integer
        IGMP Packet Type
    igmp.version  IGMP Version
        Unsigned 8-bit integer

Internet Group membership Authentication Protocol (igap)

    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
    igap.checksum  Checksum
        Unsigned 16-bit integer
    igap.checksum_bad  Bad Checksum
        Boolean
    igap.maddr  Multicast group address
        IPv4 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
    igap.type  Type
        Unsigned 8-bit integer
        IGAP Packet Type
    igap.version  Version
        Unsigned 8-bit integer
        IGAP protocol version

Internet Message Access Protocol (imap)

    imap.request  Request
        Boolean
        TRUE if IMAP request
    imap.response  Response
        Boolean
        TRUE if IMAP response

Internet Message Format (imf)

    imf.address  Address
        String
    imf.address_list  Address List
        Unsigned 32-bit integer
    imf.address_list.item  Item
        String
    imf.autoforwarded  Autoforwarded
        String
    imf.autosubmitted  Autosubmitted
        String
    imf.bcc  Bcc
        String
    imf.cc  Cc
        String
    imf.comments  Comments
        String
    imf.content.description  Content-Description
        String
    imf.content.id  Content-ID
        String
    imf.content.transfer_encoding  Content-Transfer-Encoding
        String
    imf.content.type  Content-Type
        String
    imf.content.type.parameters  Parameters
        String
    imf.content.type.type  Type
        String
    imf.content_language  Content-Language
        String
    imf.conversion  Conversion
        String
    imf.conversion_with_loss  Conversion-With-Loss
        String
    imf.date  Date
        String
        imf.DateTime
    imf.deferred_delivery  Deferred-Delivery
        String
    imf.delivered_to  Delivered-To
        String
    imf.delivery_date  Delivery-Date
        String
    imf.discarded_x400_ipms_extensions  Discarded-X400-IPMS-Extensions
        String
    imf.discarded_x400_mts_extensions  Discarded-X400-MTS-Extensions
        String
    imf.display_name  Display-Name
        String
    imf.dl_expansion_history  DL-Expansion-History
        String
    imf.expires  Expires
        String
    imf.ext.authentication_warning  X-Authentication-Warning
        String
    imf.ext.expiry-date  Expiry-Date
        String
    imf.ext.mailer  X-Mailer
        String
    imf.ext.mimeole  X-MimeOLE
        String
    imf.ext.tnef-correlator  X-MS-TNEF-Correlator
        String
    imf.ext.uidl  X-UIDL
        String
    imf.ext.virus_scanned  X-Virus-Scanned
        String
    imf.extension  Unknown-Extension
        String
    imf.extension.type  Type
        String
    imf.extension.value  Value
        String
    imf.from  From
        String
        imf.MailboxList
    imf.importance  Importance
        String
    imf.in_reply_to  In-Reply-To
        String
    imf.incomplete_copy  Incomplete-Copy
        String
    imf.keywords  Keywords
        String
    imf.latest_delivery_time  Latest-Delivery-Time
        String
    imf.mailbox_list  Mailbox List
        Unsigned 32-bit integer
    imf.mailbox_list.item  Item
        String
    imf.message_id  Message-ID
        String
    imf.message_text  Message-Text
        No value
    imf.message_type  Message-Type
        String
    imf.mime_version  MIME-Version
        String
    imf.original_encoded_information_types  Original-Encoded-Information-Types
        String
    imf.originator_return_address  Originator-Return-Address
        String
    imf.priority  Priority
        String
    imf.received  Received
        String
    imf.references  References
        String
    imf.reply_by  Reply-By
        String
    imf.reply_to  Reply-To
        String
    imf.resent.bcc  Resent-Bcc
        String
    imf.resent.cc  Resent-Cc
        String
    imf.resent.date  Resent-Date
        String
    imf.resent.from  Resent-From
        String
    imf.resent.message_id  Resent-Message-ID
        String
    imf.resent.sender  Resent-Sender
        String
    imf.resent.to  Resent-To
        String
    imf.return_path  Return-Path
        String
    imf.sender  Sender
        String
    imf.sensitivity  Sensitivity
        String
    imf.subject  Subject
        String
    imf.supersedes  Supersedes
        String
    imf.thread-index  Thread-Index
        String
    imf.to  To
        String
    imf.x400_content_identifier  X400-Content-Identifier
        String
    imf.x400_content_type  X400-Content-Type
        String
    imf.x400_mts_identifier  X400-MTS-Identifier
        String
    imf.x400_originator  X400-Originator
        String
    imf.x400_received  X400-Received
        String
    imf.x400_recipients  X400-Recipients
        String

Internet Printing Protocol (ipp)

    ipp.timestamp  Time
        Date/Time stamp

Internet Protocol (ip)

    ip.addr  Source or Destination Address
        IPv4 address
    ip.checksum  Header checksum
        Unsigned 16-bit integer
    ip.checksum_bad  Bad
        Boolean
        True: checksum doesn't match packet content; False: matches content or not checked
    ip.checksum_good  Good
        Boolean
        True: checksum matches packet content; False: doesn't match content or not checked
    ip.dsfield  Differentiated Services field
        Unsigned 8-bit integer
    ip.dsfield.ce  ECN-CE
        Unsigned 8-bit integer
    ip.dsfield.dscp  Differentiated Services Codepoint
        Unsigned 8-bit integer
    ip.dsfield.ect  ECN-Capable Transport (ECT)
        Unsigned 8-bit integer
    ip.dst  Destination
        IPv4 address
    ip.dst_host  Destination Host
        String
    ip.flags  Flags
        Unsigned 8-bit integer
        Flags (3 bits)
    ip.flags.df  Don't fragment
        Boolean
    ip.flags.mf  More fragments
        Boolean
    ip.flags.rb  Reserved bit
        Boolean
    ip.flags.sf  Security flag
        Boolean
        Security flag (RFC 3514)
    ip.frag_offset  Fragment offset
        Unsigned 16-bit integer
        Fragment offset (13 bits)
    ip.fragment  IP Fragment
        Frame number
    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.geoip.asnum  Source or Destination GeoIP AS Number
        String
    ip.geoip.city  Source or Destination GeoIP City
        String
    ip.geoip.country  Source or Destination GeoIP Country
        String
    ip.geoip.dst_asnum  Destination GeoIP AS Number
        String
    ip.geoip.dst_city  Destination GeoIP City
        String
    ip.geoip.dst_country  Destination GeoIP Country
        String
    ip.geoip.dst_isp  Destination GeoIP ISP
        String
    ip.geoip.dst_lat  Destination GeoIP Latitude
        String
    ip.geoip.dst_lon  Destination GeoIP Longitude
        String
    ip.geoip.dst_org  Destination GeoIP Organization
        String
    ip.geoip.isp  Source or Destination GeoIP ISP
        String
    ip.geoip.lat  Source or Destination GeoIP Latitude
        String
    ip.geoip.lon  Source or Destination GeoIP Longitude
        String
    ip.geoip.org  Source or Destination GeoIP Organization
        String
    ip.geoip.src_asnum  Source GeoIP AS Number
        String
    ip.geoip.src_city  Source GeoIP City
        String
    ip.geoip.src_country  Source GeoIP Country
        String
    ip.geoip.src_isp  Source GeoIP ISP
        String
    ip.geoip.src_lat  Source GeoIP Latitude
        String
    ip.geoip.src_lon  Source GeoIP Longitude
        String
    ip.geoip.src_org  Source GeoIP Organization
        String
    ip.hdr_len  Header Length
        Unsigned 8-bit integer
    ip.host  Source or Destination Host
        String
    ip.id  Identification
        Unsigned 16-bit integer
    ip.len  Total Length
        Unsigned 16-bit integer
    ip.proto  Protocol
        Unsigned 8-bit integer
    ip.reassembled.length  Reassembled IP length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    ip.reassembled_in  Reassembled IP in frame
        Frame number
        This IP packet is reassembled in this frame
    ip.src  Source
        IPv4 address
    ip.src_host  Source Host
        String
    ip.tos  Type of Service
        Unsigned 8-bit integer
    ip.tos.cost  Cost
        Boolean
    ip.tos.delay  Delay
        Boolean
    ip.tos.precedence  Precedence
        Unsigned 8-bit integer
    ip.tos.reliability  Reliability
        Boolean
    ip.tos.throughput  Throughput
        Boolean
    ip.ttl  Time to live
        Unsigned 8-bit integer
    ip.version  Version
        Unsigned 8-bit integer

Internet Protocol Version 6 (ipv6)

    ipv6.6to4_gw_ipv4  6to4 Gateway IPv4
        IPv4 address
        IPv6 6to4 Gateway IPv4 Address
    ipv6.6to4_sla_id  6to4 SLA ID
        Unsigned 16-bit integer
        IPv6 6to4 SLA ID
    ipv6.addr  Address
        IPv6 address
        Source or Destination IPv6 Address
    ipv6.class  Traffic class
        Unsigned 32-bit integer
    ipv6.dst  Destination
        IPv6 address
        Destination IPv6 Address
    ipv6.dst_6to4_gw_ipv4  Destination 6to4 Gateway IPv4
        IPv4 address
        Destination IPv6 6to4 Gateway IPv4 Address
    ipv6.dst_6to4_sla_id  Destination 6to4 SLA ID
        Unsigned 16-bit integer
        Destination IPv6 6to4 SLA ID
    ipv6.dst_host  Destination Host
        String
        Destination IPv6 Host
    ipv6.dst_isatap_ipv4  Destination ISATAP IPv4
        IPv4 address
        Destination IPv6 ISATAP Encapsulated IPv4 Address
    ipv6.dst_opt  Destination Option
        No value
    ipv6.dst_sa_mac  Destination SA MAC
        6-byte Hardware (MAC) Address
        Destination IPv6 Stateless Autoconfiguration MAC Address
    ipv6.dst_tc_ipv4  Destination Teredo Client IPv4
        IPv4 address
        Destination IPv6 Teredo Client Encapsulated IPv4 Address
    ipv6.dst_tc_port  Destination Teredo Port
        Unsigned 16-bit integer
        Destination IPv6 Teredo Client Mapped Port
    ipv6.dst_ts_ipv4  Destination Teredo Server IPv4
        IPv4 address
        Destination IPv6 Teredo Server Encapsulated IPv4 Address
    ipv6.flow  Flowlabel
        Unsigned 32-bit integer
    ipv6.fragment  IPv6 Fragment
        Frame number
    ipv6.fragment.error  Defragmentation error
        Frame number
        Defragmentation error due to illegal fragments
    ipv6.fragment.more  More Fragment
        Boolean
        More Fragments
    ipv6.fragment.multipletails  Multiple tail fragments found
        Boolean
        Several tails were found when defragmenting the packet
    ipv6.fragment.offset  Offset
        Unsigned 16-bit integer
        Fragment Offset
    ipv6.fragment.overlap  Fragment overlap
        Boolean
        Fragment overlaps with other fragments
    ipv6.fragment.overlap.conflict  Conflicting data in fragment overlap
        Boolean
        Overlapping fragments contained conflicting data
    ipv6.fragment.toolongfragment  Fragment too long
        Boolean
        Fragment contained data past end of packet
    ipv6.fragments  IPv6 Fragments
        No value
    ipv6.framgent.id  Identification
        Unsigned 32-bit integer
        Fragment Identification
    ipv6.hlim  Hop limit
        Unsigned 8-bit integer
    ipv6.hop_opt  Hop-by-Hop Option
        No value
    ipv6.host  Host
        String
        IPv6 Host
    ipv6.isatap_ipv4  ISATAP IPv4
        IPv4 address
        IPv6 ISATAP Encapsulated IPv4 Address
    ipv6.mipv6_home_address  Home Address
        IPv6 address
    ipv6.mipv6_length  Option Length
        Unsigned 8-bit integer
    ipv6.mipv6_type  Option Type
        Unsigned 8-bit integer
    ipv6.nxt  Next header
        Unsigned 8-bit integer
    ipv6.opt.pad1  Pad1
        No value
        Pad1 Option
    ipv6.opt.padn  PadN
        Unsigned 8-bit integer
        PadN Option
    ipv6.plen  Payload length
        Unsigned 16-bit integer
    ipv6.reassembled.length  Reassembled IPv6 length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    ipv6.reassembled_in  Reassembled IPv6 in frame
        Frame number
        This IPv6 packet is reassembled in this frame
    ipv6.routing_hdr  Routing Header, Type
        Unsigned 8-bit integer
        Routing Header Option
    ipv6.routing_hdr.addr  Address
        IPv6 address
        Routing Header Address
    ipv6.routing_hdr.left  Left Segments
        Unsigned 8-bit integer
        Routing Header Left Segments
    ipv6.routing_hdr.type  Type
        Unsigned 8-bit integer
        Routeing Header Type
    ipv6.sa_mac  SA MAC
        6-byte Hardware (MAC) Address
        IPv6 Stateless Autoconfiguration MAC Address
    ipv6.shim6  SHIM6
        No value
    ipv6.shim6.checksum  Checksum
        Unsigned 16-bit integer
        Shim6 Checksum
    ipv6.shim6.checksum_bad  Bad Checksum
        Boolean
        Shim6 Bad Checksum
    ipv6.shim6.checksum_good  Good Checksum
        Boolean
    ipv6.shim6.ct  Context Tag
        No value
    ipv6.shim6.inonce  Initiator Nonce
        Unsigned 32-bit integer
    ipv6.shim6.len  Header Ext Length
        Unsigned 8-bit integer
    ipv6.shim6.loc.flags  Flags
        Unsigned 8-bit integer
        Locator Preferences Flags
    ipv6.shim6.loc.prio  Priority
        Unsigned 8-bit integer
        Locator Preferences Priority
    ipv6.shim6.loc.weight  Weight
        Unsigned 8-bit integer
        Locator Preferences Weight
    ipv6.shim6.locator  Locator
        IPv6 address
        Shim6 Locator
    ipv6.shim6.nxt  Next Header
        Unsigned 8-bit integer
    ipv6.shim6.opt.critical  Option Critical Bit
        Boolean
        TRUE : option is critical, FALSE: option is not critical
    ipv6.shim6.opt.elemlen  Element Length
        Unsigned 8-bit integer
        Length of Elements in Locator Preferences Option
    ipv6.shim6.opt.fii  Forked Instance Identifier
        Unsigned 32-bit integer
    ipv6.shim6.opt.len  Content Length
        Unsigned 16-bit integer
        Content Length Option
    ipv6.shim6.opt.loclist  Locator List Generation
        Unsigned 32-bit integer
    ipv6.shim6.opt.locnum  Num Locators
        Unsigned 8-bit integer
        Number of Locators in Locator List
    ipv6.shim6.opt.total_len  Total Length
        Unsigned 16-bit integer
        Total Option Length
    ipv6.shim6.opt.type  Option Type
        Unsigned 16-bit integer
        Shim6 Option Type
    ipv6.shim6.opt.verif_method  Verification Method
        Unsigned 8-bit integer
        Locator Verification Method
    ipv6.shim6.p  P Bit
        Boolean
    ipv6.shim6.pdata  Data
        Unsigned 32-bit integer
        Shim6 Probe Data
    ipv6.shim6.pdst  Destination Address
        IPv6 address
        Shim6 Probe Destination Address
    ipv6.shim6.pnonce  Nonce
        Unsigned 32-bit integer
        Shim6 Probe Nonce
    ipv6.shim6.precvd  Probes Received
        Unsigned 8-bit integer
    ipv6.shim6.proto  Protocol
        Unsigned 8-bit integer
    ipv6.shim6.psent  Probes Sent
        Unsigned 8-bit integer
    ipv6.shim6.psrc  Source Address
        IPv6 address
        Shim6 Probe Source Address
    ipv6.shim6.reap  REAP State
        Unsigned 8-bit integer
    ipv6.shim6.rnonce  Responder Nonce
        Unsigned 32-bit integer
    ipv6.shim6.rulid  Receiver ULID
        IPv6 address
        Shim6 Receiver ULID
    ipv6.shim6.sulid  Sender ULID
        IPv6 address
        Shim6 Sender ULID
    ipv6.shim6.type  Message Type
        Unsigned 8-bit integer
    ipv6.src  Source
        IPv6 address
        Source IPv6 Address
    ipv6.src_6to4_gw_ipv4  Source 6to4 Gateway IPv4
        IPv4 address
        Source IPv6 6to4 Gateway IPv4 Address
    ipv6.src_6to4_sla_id  Source 6to4 SLA ID
        Unsigned 16-bit integer
        Source IPv6 6to4 SLA ID
    ipv6.src_host  Source Host
        String
        Source IPv6 Host
    ipv6.src_isatap_ipv4  Source ISATAP IPv4
        IPv4 address
        Source IPv6 ISATAP Encapsulated IPv4 Address
    ipv6.src_sa_mac  Source SA MAC
        6-byte Hardware (MAC) Address
        Source IPv6 Stateless Autoconfiguration MAC Address
    ipv6.src_tc_ipv4  Source Teredo Client IPv4
        IPv4 address
        Source IPv6 Teredo Client Encapsulated IPv4 Address
    ipv6.src_tc_port  Source Teredo Port
        Unsigned 16-bit integer
        Source IPv6 Teredo Client Mapped Port
    ipv6.src_ts_ipv4  Source Teredo Server IPv4
        IPv4 address
        Source IPv6 Teredo Server Encapsulated IPv4 Address
    ipv6.tc_ipv4  Teredo Client IPv4
        IPv4 address
        IPv6 Teredo Client Encapsulated IPv4 Address
    ipv6.tc_port  Teredo Port
        Unsigned 16-bit integer
        IPv6 Teredo Client Mapped Port
    ipv6.traffic_class.ce  ECN-CE
        Boolean
    ipv6.traffic_class.dscp  Differentiated Services Field
        Unsigned 32-bit integer
    ipv6.traffic_class.ect  ECN-Capable Transport (ECT)
        Boolean
    ipv6.ts_ipv4  Teredo Server IPv4
        IPv4 address
        IPv6 Teredo Server Encapsulated IPv4 Address
    ipv6.unknown_hdr  Unknown Extension Header
        No value
    ipv6.version  Version
        Unsigned 8-bit integer

Internet Relay Chat (irc)

    irc.request  Request
        String
        Line of request message
    irc.response  Response
        String
        Line of response message

Internet Security Association and Key Management Protocol (isakmp)

    ike.certreq.authority  Certificate Authority Data
        Byte array
    ike.certreq.authority.sig  Certificate Authority Signature
        Unsigned 32-bit integer
    ike.nat_hash  HASH of the address and port
        Byte array
    ike.nat_keepalive  NAT Keepalive
        No value
        NAT Keepalive packet
    ike.nat_original_address_ipv4  NAT Original IPv4 Address
        IPv4 address
    ike.nat_original_address_ipv6  NAT Original IPv6 Address
        IPv6 address
    isakmp.auth.data  Authentication Data
        Byte array
        IKEv2 Authentication Data
    isakmp.auth.method  Authentication Method
        Unsigned 8-bit integer
        IKEv2 Authentication Method
    isakmp.cert.data  Certificate Data
        No value
        ISAKMP Certificate Data
    isakmp.cert.encoding  Certificate Encoding
        Unsigned 8-bit integer
        ISAKMP Certificate Encoding
    isakmp.certreq.type  Certificate Type
        Unsigned 8-bit integer
        ISAKMP Certificate Type
    isakmp.cfg.attr  Config Attribute Type
        No value
        ISAKMP Config Attribute
    isakmp.cfg.attr.application_version  APPLICATION VERSION
        String
        The version or application information of the IPsec host
    isakmp.cfg.attr.format  Config Attribute Format
        Boolean
        ISAKMP Config Attribute Format
    isakmp.cfg.attr.internal_address_expiry  INTERNAL ADDRESS EXPIRY (Secs)
        Unsigned 32-bit integer
        Specifies the number of seconds that the host can use the internal IP address
    isakmp.cfg.attr.internal_ip4_address  INTERNAL IP4 ADDRESS
        IPv4 address
         An IPv4 address on the internal network
    isakmp.cfg.attr.internal_ip4_dhcp  INTERNAL IP4 DHCP
        IPv4 address
        the host to send any internal DHCP requests to the address
    isakmp.cfg.attr.internal_ip4_dns  INTERNAL IP4 DNS
        IPv4 address
        An IPv4 address of a DNS server within the network
    isakmp.cfg.attr.internal_ip4_nbns  INTERNAL IP4 NBNS
        IPv4 address
        An IPv4 address of a NetBios Name Server (WINS) within the network
    isakmp.cfg.attr.internal_ip4_netmask  INTERNAL IP4 NETMASK
        IPv4 address
        The internal network's netmask
    isakmp.cfg.attr.internal_ip4_subnet_ip  INTERNAL IP4 SUBNET (IP)
        IPv4 address
        The protected sub-networks that this edge-device protects (IP)
    isakmp.cfg.attr.internal_ip4_subnet_netmask  INTERNAL IP4 SUBNET (NETMASK)
        IPv4 address
        The protected sub-networks that this edge-device protects (IP)
    isakmp.cfg.attr.internal_ip6_address  INTERNAL IP6 ADDRESS
        IPv4 address
         An IPv6 address on the internal network
    isakmp.cfg.attr.internal_ip6_dhcp  INTERNAL IP6 DHCP
        IPv6 address
        The host to send any internal DHCP requests to the address
    isakmp.cfg.attr.internal_ip6_dns  INTERNAL IP6 DNS
        IPv6 address
        An IPv6 address of a DNS server within the network
    isakmp.cfg.attr.internal_ip6_link_id  INTERNAL_IP6_LINK (IKEv2 Link ID)
        Byte array
        The Link ID is selected by the VPN gateway and is treated as an opaque octet string by the client.
    isakmp.cfg.attr.internal_ip6_link_interface  INTERNAL_IP6_LINK (Link-Local Interface ID)
        Unsigned 64-bit integer
        The Interface ID used for link-local address (by the party that sent this attribute)
    isakmp.cfg.attr.internal_ip6_nbns  INTERNAL IP6 NBNS
        IPv6 address
        An IPv6 address of a NetBios Name Server (WINS) within the network
    isakmp.cfg.attr.internal_ip6_netmask  INTERNAL IP4 NETMASK
        IPv6 address
        The internal network's netmask
    isakmp.cfg.attr.internal_ip6_prefix_ip  INTERNAL_IP6_PREFIX (IP)
        IPv6 address
        An IPv6 prefix assigned to the virtual link
    isakmp.cfg.attr.internal_ip6_prefix_length  INTERNAL_IP6_PREFIX (Length)
        Unsigned 8-bit integer
        The length of the prefix in bits (usually 64)
    isakmp.cfg.attr.internal_ip6_subnet_ip  INTERNAL_IP6_SUBNET (IP)
        IPv6 address
    isakmp.cfg.attr.internal_ip6_subnet_prefix  INTERNAL_IP6_SUBNET (PREFIX)
        Unsigned 8-bit integer
    isakmp.cfg.attr.length  Length
        Unsigned 16-bit integer
        ISAKMP Config Attribute length
    isakmp.cfg.attr.supported_attributes  SUPPORTED ATTRIBUTES
        Unsigned 16-bit integer
    isakmp.cfg.attr.type  Type
        Unsigned 16-bit integer
        ISAKMP (v1) Config Attribute type
    isakmp.cfg.attr.unity.banner  UNITY BANNER
        String
        Banner
    isakmp.cfg.attr.unity.def_domain  UNITY DEF DOMAIN
        String
    isakmp.cfg.attr.value  Value
        Byte array
        ISAKMP Config Attribute value
    isakmp.cfg.attr.xauth.answer  XAUTH ANSWER
        String
        A variable length ASCII string used to send input to the edge device
    isakmp.cfg.attr.xauth.challenge  XAUTH CHALLENGE
        String
        A challenge string sent from the edge device to the IPSec host for it to include in its calculation of a password
    isakmp.cfg.attr.xauth.domain  XAUTH DOMAIN
        String
        The domain to be authenticated in
    isakmp.cfg.attr.xauth.message  XAUTH MESSAGE
        String
        A textual message from an edge device to an IPSec host
    isakmp.cfg.attr.xauth.next_pin  XAUTH TYPE
        String
        A variable which is used when the edge device is requesting that the user choose a new pin number
    isakmp.cfg.attr.xauth.passcode  XAUTH PASSCODE
        String
        A token card's passcode
    isakmp.cfg.attr.xauth.status  XAUTH STATUS
        Unsigned 16-bit integer
        A variable that is used to denote authentication success or failure
    isakmp.cfg.attr.xauth.type  XAUTH TYPE
        Unsigned 16-bit integer
        The type of extended authentication requested
    isakmp.cfg.attr.xauth.user_name  XAUTH USER NAME
        String
        The user name
    isakmp.cfg.attr.xauth.user_password  XAUTH USER PASSWORD
        String
        The user's password
    isakmp.cfg.identifier  Identifier
        Unsigned 16-bit integer
        ISAKMP (v1) Config Identifier
    isakmp.cfg.type  Type
        Unsigned 8-bit integer
        ISAKMP (v1) Config Type
    isakmp.criticalpayload  Critical Bit
        Boolean
        ISAKMP (v2) Critical Payload
    isakmp.datapayload  Data Payload
        Byte array
        Data Payload (not dissect)
    isakmp.delete.doi  Domain of interpretation
        Unsigned 32-bit integer
        ISAKMP Delete Domain of Interpretation
    isakmp.delete.protoid  Protocol ID
        Unsigned 32-bit integer
        ISAKMP Delete Protocol ID
    isakmp.delete.spi  Delete SPI
        Byte array
        Identifies the specific security association(s) to delete
    isakmp.eap.data  EAP Message
        Byte array
    isakmp.enc.contained  Contained Data
        No value
    isakmp.enc.data  Encrypted Data
        No value
    isakmp.enc.decrypted  Decrypted Data
        No value
    isakmp.enc.icd  Integrity Checksum Data
        Byte array
    isakmp.enc.iv  Initialization Vector
        Byte array
    isakmp.enc.pad_length  Pad Length
        Unsigned 16-bit integer
    isakmp.enc.padding  Padding
        No value
    isakmp.exchangetype  Exchange type
        Unsigned 8-bit integer
        ISAKMP Exchange Type
    isakmp.extradata  Extra data
        Byte array
        Extra data ??????
    isakmp.flag_a  Authentication
        Boolean
        Authentication Bit
    isakmp.flag_c  Commit
        Boolean
        Commit Bit
    isakmp.flag_e  Encryption
        Boolean
        Encryption Bit
    isakmp.flag_i  Initiator
        Boolean
        Initiator Bit
    isakmp.flag_r  Response
        Boolean
        Response Bit
    isakmp.flag_v  Version
        Boolean
        Version Bit
    isakmp.flags  Flags
        Unsigned 8-bit integer
        ISAKMP Flags
    isakmp.frag.last  Frag last
        Unsigned 8-bit integer
        ISAKMP last fragment
    isakmp.frag.packetid  Frag ID
        Unsigned 16-bit integer
        ISAKMP fragment packet-id
    isakmp.fragment  Message fragment
        Frame number
    isakmp.fragment.error  Message defragmentation error
        Frame number
    isakmp.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    isakmp.fragment.overlap  Message fragment overlap
        Boolean
    isakmp.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    isakmp.fragment.too_long_fragment  Message fragment too long
        Boolean
    isakmp.fragments  Message fragments
        No value
    isakmp.hash  Hash DATA
        Byte array
    isakmp.icookie  Initiator cookie
        Byte array
        ISAKMP Initiator Cookie
    isakmp.id.data  Identification Data: 
        No value
        ISAKMP ID Data
    isakmp.id.data.der_asn1_dn  ID_DER_ASN1_DN
        Unsigned 32-bit integer
    isakmp.id.data.fqdn  ID_FQDN
        String
        The type specifies a fully-qualified domain name string
    isakmp.id.data.ipv4_addr  ID_IPV4_ADDR
        IPv4 address
        The type specifies a single four (4) octet IPv4 address
    isakmp.id.data.ipv4_range_end  ID_IPV4_RANGE (End)
        IPv4 address
        The second value is the ending IPv4 address (inclusive)
    isakmp.id.data.ipv4_range_start  ID_IPV4_SUBNET
        IPv4 address
        The first value is the beginning IPv4 address (inclusive)
    isakmp.id.data.ipv4_subnet  ID_IPV4_SUBNET
        IPv4 address
        The second is an IPv4 network mask
    isakmp.id.data.ipv6_addr  ID_IPV6_ADDR
        IPv6 address
        The type specifies a single sixteen (16) octet IPv6 address
    isakmp.id.data.ipv6_range_end  ID_IPV6_ADDR_RANGE (End)
        IPv6 address
        the second value is the ending IPv6 address (inclusive)
    isakmp.id.data.ipv6_range_start  ID_IPV6_ADDR_RANGE (Start)
        IPv6 address
        The first value is the beginning IPv6 address (inclusive)
    isakmp.id.data.ipv6_subnet  ID_IPV6A_ADDR_SUBNET
        IPv6 address
        The type specifies a range of IPv6 addresses represented by two sixteen (16) octet values
    isakmp.id.data.key_id  ID_KEY_ID
        Byte array
        The type specifies an opaque byte stream which may be used to pass vendor-specific information necessary to identify which pre-hared key should be used to authenticate Aggressive mode negotiations
    isakmp.id.data.user_fqdn  ID_FQDN
        String
        The type specifies a fully-qualified username string
    isakmp.id.port  Port
        Unsigned 16-bit integer
        ISAKMP ID Port
    isakmp.id.protoid  Protocol ID
        Unsigned 8-bit integer
        ISAKMP ID Protocol ID
    isakmp.id.type  ID type
        Unsigned 8-bit integer
        ISAKMP (v1) ID Type
    isakmp.ike.attr  Transform IKE Attribute Type
        No value
        IKE Transform Attribute
    isakmp.ike.attr.authentication_method  Authentication Method
        Unsigned 16-bit integer
    isakmp.ike.attr.encryption_algorithm  Encryption Algorithm
        Unsigned 16-bit integer
    isakmp.ike.attr.field_size  Field Size
        Byte array
    isakmp.ike.attr.format  Transform IKE Format
        Boolean
        IKE Transform Attribute Format
    isakmp.ike.attr.group_curve_a  Groupe Curve A
        Byte array
    isakmp.ike.attr.group_curve_b  Groupe Curve B
        Byte array
    isakmp.ike.attr.group_description  Group Description
        Unsigned 16-bit integer
    isakmp.ike.attr.group_generator_one  Groupe Generator One
        Byte array
    isakmp.ike.attr.group_generator_two  Groupe Generator Two
        Byte array
    isakmp.ike.attr.group_order  Key Length
        Byte array
    isakmp.ike.attr.group_prime  Groupe Prime
        Byte array
    isakmp.ike.attr.group_type  Groupe Type
        Unsigned 16-bit integer
    isakmp.ike.attr.hash_algorithm  HASH Algorithm
        Unsigned 16-bit integer
    isakmp.ike.attr.key_length  Key Length
        Unsigned 16-bit integer
    isakmp.ike.attr.length  Length
        Unsigned 16-bit integer
        IKE Tranform Attribute length
    isakmp.ike.attr.life_duration  Life Duration
        Unsigned 32-bit integer
    isakmp.ike.attr.life_type  Life Type
        Unsigned 16-bit integer
    isakmp.ike.attr.prf  PRF
        Byte array
    isakmp.ike.attr.type  Transform IKE Attribute Type
        Unsigned 16-bit integer
        IKE Transform Attribute type
    isakmp.ike.attr.value  Value
        Byte array
        IKE Transform Attribute value
    isakmp.ike2.attr  Transform IKE2 Attribute Type
        No value
        IKE2 Transform Attribute
    isakmp.ike2.attr.format  Transform IKE2 Format
        Boolean
        IKE2 Transform Attribute Format
    isakmp.ike2.attr.key_length  Key Length
        Unsigned 16-bit integer
    isakmp.ike2.attr.length  Length
        Unsigned 16-bit integer
        IKE2 Tranform Attribute length
    isakmp.ike2.attr.type  Transform IKE2 Attribute Type
        Unsigned 16-bit integer
        IKE2 Transform Attribute type
    isakmp.ike2.attr.value  Value
        Byte array
        IKE2 Transform Attribute value
    isakmp.key_exchange.data  Key Exchange Data
        Byte array
    isakmp.key_exchange.dh_group  DH Group #
        Unsigned 16-bit integer
    isakmp.length  Length
        Unsigned 32-bit integer
        ISAKMP Length
    isakmp.messageid  Message ID
        Unsigned 32-bit integer
        ISAKMP Message ID
    isakmp.nextpayload  Next payload
        Unsigned 8-bit integer
        ISAKMP Next Payload
    isakmp.nonce  Nonce DATA
        Byte array
    isakmp.notify.data  Notification DATA
        Byte array
    isakmp.notify.data.dpd.are_you_there  DPD ARE-YOU-THERE sequence
        Unsigned 32-bit integer
    isakmp.notify.data.dpd.are_you_there_ack  DPD ARE-YOU-THERE-ACK sequence
        Unsigned 32-bit integer
    isakmp.notify.data.ipcomp.cpi  IPCOMP CPI
        Unsigned 16-bit integer
    isakmp.notify.data.redirect.gw_ident.len  Gateway Identity Length
        Unsigned 8-bit integer
    isakmp.notify.data.redirect.gw_ident.type  Gateway Identity Type
        Unsigned 8-bit integer
    isakmp.notify.data.redirect.new_resp_gw_ident.data  New Responder Gateway Identity (DATA)
        Byte array
    isakmp.notify.data.redirect.new_resp_gw_ident.fqdn  New Responder Gateway Identity (FQDN)
        String
    isakmp.notify.data.redirect.new_resp_gw_ident.ipv4  New Responder Gateway Identity (IPv4)
        IPv4 address
    isakmp.notify.data.redirect.new_resp_gw_ident.ipv6  New Responder Gateway Identity (IPv6)
        IPv6 address
    isakmp.notify.data.redirect.nonce_data  Redirect Nonce Data
        Byte array
    isakmp.notify.data.redirect.org_resp_gw_ident.data  Original Responder Gateway Identity (DATA)
        Byte array
    isakmp.notify.data.redirect.org_resp_gw_ident.ipv4  Original Responder Gateway Identity (IPv4)
        IPv4 address
    isakmp.notify.data.redirect.org_resp_gw_ident.ipv6  Original Responder Gateway Identity (IPv6)
        IPv6 address
    isakmp.notify.data.ticket_opaque.data  TICKET OPAQUE Data
        Byte array
    isakmp.notify.data.ticket_opaque.lifetime  TICKET OPAQUE Lifetime
        Unsigned 32-bit integer
        The Lifetime field contains a relative time value, the number of seconds until the ticket expires (encoded as an unsigned integer).
    isakmp.notify.data.unity.load_balance  UNITY LOAD BALANCE
        IPv4 address
    isakmp.notify.doi  Domain of interpretation
        Unsigned 32-bit integer
        ISAKMP Notify Domain of Interpretation
    isakmp.notify.msgtype  Notify Message Type
        Unsigned 16-bit integer
        ISAKMP Notify Message Type
    isakmp.notify.protoid  Protocol ID
        Unsigned 32-bit integer
        ISAKMP Notify Protocol ID
    isakmp.payloadlength  Payload length
        Unsigned 16-bit integer
        ISAKMP Payload Length
    isakmp.prop.number  Proposal number
        Unsigned 8-bit integer
        ISAKMP Proposal Number
    isakmp.prop.protoid  Protocol ID
        Unsigned 32-bit integer
        ISAKMP Proposal Protocol ID
    isakmp.prop.transforms  Proposal transforms
        Unsigned 8-bit integer
        ISAKMP Proposal Transforms
    isakmp.rcookie  Responder cookie
        Byte array
        ISAKMP Responder Cookie
    isakmp.reassembled.in  Reassembled in
        Frame number
    isakmp.reassembled.length  Reassembled ISAKMP length
        Unsigned 32-bit integer
    isakmp.sa.doi  Domain of interpretation
        Unsigned 32-bit integer
        ISAKMP Domain of Interpretation
    isakmp.sa.situation  Situation
        Byte array
        ISAKMP SA Situation
    isakmp.sa.situation.identity_only  Identity Only
        Boolean
        The type specifies that the SA will be identified by source identity information present in an associated Identification Payload
    isakmp.sa.situation.integrity  Integrity
        Boolean
        The type specifies that the SA is being negotiated in an environment that requires labeled integrity
    isakmp.sa.situation.secrecy  Secrecy
        Boolean
        The type specifies that the SA is being negotiated in an environment that requires labeled secrecy.
    isakmp.sig  Signature DATA
        Byte array
    isakmp.spi  SPI Size
        Byte array
        ISAKMP SPI
    isakmp.spinum  Port
        Unsigned 16-bit integer
        ISAKMP Number of SPIs
    isakmp.spisize  SPI Size
        Unsigned 8-bit integer
        ISAKMP SPI Size
    isakmp.tf.attr  Transform Attribute Type
        No value
        ISAKMP Transform Attribute
    isakmp.tf.attr.auth_algorithm  Authentication Algorithm
        Unsigned 16-bit integer
    isakmp.tf.attr.auth_key_length  Authentication Key Length
        Unsigned 16-bit integer
    isakmp.tf.attr.cmpr_algorithm  Compress Private Algorithm 
        Byte array
    isakmp.tf.attr.cmpr_dict_size  Compress Dictionary Size
        Unsigned 16-bit integer
    isakmp.tf.attr.ecn_tunnel  ECN Tunnel
        Unsigned 16-bit integer
    isakmp.tf.attr.encap_mode  Encapsulation Mode
        Unsigned 16-bit integer
    isakmp.tf.attr.ext_seq_nbr  Extended (64-bit) Sequence Number
        Unsigned 16-bit integer
    isakmp.tf.attr.format  Transform Format
        Boolean
        ISAKMP Transform Attribute Format
    isakmp.tf.attr.group_description  Group Description
        Unsigned 16-bit integer
    isakmp.tf.attr.key_length  Key Length
        Unsigned 16-bit integer
    isakmp.tf.attr.key_rounds  Key Rounds
        Unsigned 16-bit integer
    isakmp.tf.attr.length  Length
        Unsigned 16-bit integer
        ISAKMP Tranform Attribute length
    isakmp.tf.attr.life_duration  Life Duration
        Unsigned 32-bit integer
    isakmp.tf.attr.life_type  Life Type
        Unsigned 16-bit integer
    isakmp.tf.attr.sig_enco_algorithm  Signature Encoding Algorithm
        Byte array
    isakmp.tf.attr.type_v1  Transform Attribute Type
        Unsigned 16-bit integer
        ISAKMP (v1) Transform Attribute type
    isakmp.tf.attr.value  Value
        Byte array
        ISAKMP Transform Attribute value
    isakmp.tf.id  Transform ID
        Unsigned 16-bit integer
    isakmp.tf.id.dh  Transform ID (D-H)
        Unsigned 16-bit integer
    isakmp.tf.id.encr  Transform ID (ENCR)
        Unsigned 16-bit integer
    isakmp.tf.id.esn  Transform ID (ESN)
        Unsigned 16-bit integer
    isakmp.tf.id.integ  Transform ID (INTEG)
        Unsigned 16-bit integer
    isakmp.tf.id.prf  Transform ID (PRF)
        Unsigned 16-bit integer
    isakmp.tf.type  Transform Type
        Unsigned 8-bit integer
    isakmp.trans.id  Transform ID
        Unsigned 8-bit integer
        ISAKMP Transform ID
    isakmp.trans.number  Transform number
        Unsigned 8-bit integer
        ISAKMP Transform Number
    isakmp.ts.data  Traffic Selector Data
        Byte array
    isakmp.ts.end_fc  Ending Addr
        Unsigned 32-bit integer
    isakmp.ts.end_ipv4  Ending Addr
        IPv4 address
    isakmp.ts.end_ipv6  Ending Addr
        IPv6 address
    isakmp.ts.end_port  End Port
        Unsigned 16-bit integer
    isakmp.ts.end_r_ctl  Ending R_CTL
        Unsigned 8-bit integer
    isakmp.ts.end_type  Ending Type
        Unsigned 8-bit integer
    isakmp.ts.number  Number of Traffic Selector
        Unsigned 8-bit integer
    isakmp.ts.protoid  Protocol ID
        Unsigned 8-bit integer
        IKEv2 Traffic Selector Protocol ID
    isakmp.ts.selector_length  Selector Length
        Unsigned 16-bit integer
    isakmp.ts.start_fc  Starting Addr
        Unsigned 32-bit integer
    isakmp.ts.start_ipv4  Starting Addr
        IPv4 address
    isakmp.ts.start_ipv6  Starting Addr
        IPv6 address
    isakmp.ts.start_port  Start Port
        Unsigned 16-bit integer
    isakmp.ts.start_r_ctl  Starting R_CTL
        Unsigned 8-bit integer
    isakmp.ts.start_type  Starting Type
        Unsigned 8-bit integer
    isakmp.ts.type  Traffic Selector Type
        Unsigned 8-bit integer
    isakmp.typepayload  Type Payload
        Unsigned 8-bit integer
        ISAKMP Type Payload
    isakmp.version  Version
        Unsigned 8-bit integer
        ISAKMP Version (major + minor)
    isakmp.vid  Vendor ID
        Byte array
    isakmp.vid.cisco_unity.major  CISCO-UNITY Major version
        Unsigned 8-bit integer
    isakmp.vid.cisco_unity.minor  CISCO-UNITY Minor version
        Unsigned 8-bit integer
    isakmp.vid.cp.features  Checkpoint Features
        Unsigned 32-bit integer
    isakmp.vid.cp.product  Checkpoint Product
        Unsigned 32-bit integer
    isakmp.vid.cp.reserved  Checkpoint Reserved
        Unsigned 32-bit integer
    isakmp.vid.cp.timestamp  Checkpoint Timestamp
        Unsigned 32-bit integer
        Timestamp (NGX only; always zero in 4.1 or NG)
    isakmp.vid.cp.version  Checkpoint Cersion
        Unsigned 32-bit integer
        Encoded Version number
    isakmp.vid.ms_nt5_isakmpoakley  MS NT5 ISAKMPOAKLEY
        Unsigned 32-bit integer

Internetwork Datagram Protocol (idp)

    idp.checksum  Checksum
        Unsigned 16-bit integer
    idp.dst  Destination Address
        String
    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
    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

Internetwork Packet eXchange (ipx)

    ipx.addr  Src/Dst Address
        String
        Source or Destination IPX Address  "network.node"
    ipx.checksum  Checksum
        Unsigned 16-bit integer
    ipx.dst  Destination Address
        String
        Destination IPX Address  "network.node"
    ipx.dst.net  Destination Network
        IPX network or server name
    ipx.dst.node  Destination Node
        6-byte Hardware (MAC) Address
    ipx.dst.socket  Destination Socket
        Unsigned 16-bit integer
    ipx.hops  Transport Control (Hops)
        Unsigned 8-bit integer
    ipx.len  Length
        Unsigned 16-bit integer
    ipx.net  Source or Destination Network
        IPX network or server name
    ipx.node  Source or Destination Node
        6-byte Hardware (MAC) Address
    ipx.packet_type  Packet Type
        Unsigned 8-bit integer
    ipx.socket  Source or Destination Socket
        Unsigned 16-bit integer
    ipx.src  Source Address
        String
        Source IPX Address  "network.node"
    ipx.src.net  Source Network
        IPX network or server name
    ipx.src.node  Source Node
        6-byte Hardware (MAC) Address
    ipx.src.socket  Source Socket
        Unsigned 16-bit integer

IrCOMM Protocol (ircomm)

    ircomm.control  Control Channel
        No value
    ircomm.control.len  Clen
        Unsigned 8-bit integer
    ircomm.parameter  IrCOMM Parameter
        No value
    ircomm.pi  Parameter Identifier
        Unsigned 8-bit integer
    ircomm.pl  Parameter Length
        Unsigned 8-bit integer
    ircomm.pv  Parameter Value
        Byte array

IrDA Link Access Protocol (irlap)

    irlap.a  Address Field
        Unsigned 8-bit integer
    irlap.a.address  Address
        Unsigned 8-bit integer
    irlap.a.cr  C/R
        Boolean
    irlap.c  Control Field
        Unsigned 8-bit integer
    irlap.c.f  Final
        Boolean
    irlap.c.ftype  Frame Type
        Unsigned 8-bit integer
    irlap.c.n_r  N(R)
        Unsigned 8-bit integer
    irlap.c.n_s  N(S)
        Unsigned 8-bit integer
    irlap.c.p  Poll
        Boolean
    irlap.c.s_ftype  Supervisory frame type
        Unsigned 8-bit integer
    irlap.c.u_modifier_cmd  Command
        Unsigned 8-bit integer
    irlap.c.u_modifier_resp  Response
        Unsigned 8-bit integer
    irlap.i  Information Field
        No value
    irlap.negotiation  Negotiation Parameter
        No value
    irlap.pi  Parameter Identifier
        Unsigned 8-bit integer
    irlap.pl  Parameter Length
        Unsigned 8-bit integer
    irlap.pv  Parameter Value
        Byte array
    irlap.snrm.ca  Connection Address
        Unsigned 8-bit integer
    irlap.snrm.daddr  Destination Device Address
        Unsigned 32-bit integer
    irlap.snrm.saddr  Source Device Address
        Unsigned 32-bit integer
    irlap.ua.daddr  Destination Device Address
        Unsigned 32-bit integer
    irlap.ua.saddr  Source Device Address
        Unsigned 32-bit integer
    irlap.xid.conflict  Conflict
        Boolean
    irlap.xid.daddr  Destination Device Address
        Unsigned 32-bit integer
    irlap.xid.fi  Format Identifier
        Unsigned 8-bit integer
    irlap.xid.flags  Discovery Flags
        Unsigned 8-bit integer
    irlap.xid.s  Number of Slots
        Unsigned 8-bit integer
    irlap.xid.saddr  Source Device Address
        Unsigned 32-bit integer
    irlap.xid.slotnr  Slot Number
        Unsigned 8-bit integer
    irlap.xid.version  Version Number
        Unsigned 8-bit integer

IrDA Link Management Protocol (irlmp)

    irlmp.dst  Destination
        Unsigned 8-bit integer
    irlmp.dst.c  Control Bit
        Boolean
    irlmp.dst.lsap  Destination LSAP
        Unsigned 8-bit integer
    irlmp.mode  Mode
        Unsigned 8-bit integer
    irlmp.opcode  Opcode
        Unsigned 8-bit integer
    irlmp.reason  Reason
        Unsigned 8-bit integer
    irlmp.rsvd  Reserved
        Unsigned 8-bit integer
    irlmp.src  Source
        Unsigned 8-bit integer
    irlmp.src.lsap  Source LSAP
        Unsigned 8-bit integer
    irlmp.src.r  reserved
        Unsigned 8-bit integer
    irlmp.status  Status
        Unsigned 8-bit integer
    irlmp.xid.charset  Character Set
        Unsigned 8-bit integer
    irlmp.xid.hints  Service Hints
        Byte array
    irlmp.xid.name  Device Nickname
        String

IuUP (iuup)

    iuup.ack  Ack/Nack
        Unsigned 8-bit integer
    iuup.advance  Advance
        Unsigned 32-bit integer
    iuup.chain_ind  Chain Indicator
        Unsigned 8-bit integer
    iuup.circuit_id  Circuit ID
        Unsigned 16-bit integer
    iuup.data_pdu_type  RFCI Data Pdu Type
        Unsigned 8-bit integer
    iuup.delay  Delay
        Unsigned 32-bit integer
    iuup.delta  Delta Time
        Single-precision floating point
    iuup.direction  Frame Direction
        Unsigned 16-bit integer
    iuup.error_cause  Error Cause
        Unsigned 8-bit integer
    iuup.error_distance  Error DISTANCE
        Unsigned 8-bit integer
    iuup.fqc  FQC
        Unsigned 8-bit integer
        Frame Quality Classification
    iuup.framenum  Frame Number
        Unsigned 8-bit integer
    iuup.header_crc  Header CRC
        Unsigned 8-bit integer
    iuup.mode  Mode Version
        Unsigned 8-bit integer
    iuup.p  Number of RFCI Indicators
        Unsigned 8-bit integer
    iuup.payload_crc  Payload CRC
        Unsigned 16-bit integer
    iuup.payload_data  Payload Data
        Byte array
    iuup.pdu_type  PDU Type
        Unsigned 8-bit integer
    iuup.procedure  Procedure
        Unsigned 8-bit integer
    iuup.rfci  RFCI
        Unsigned 8-bit integer
        RAB sub-Flow Combination Indicator
    iuup.rfci.0  RFCI 0
        Unsigned 8-bit integer
    iuup.rfci.0.flow.0  RFCI 0 Flow 0
        Byte array
    iuup.rfci.0.flow.0.len  RFCI 0 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.0.flow.1  RFCI 0 Flow 1
        Byte array
    iuup.rfci.0.flow.1.len  RFCI 0 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.0.flow.2  RFCI 0 Flow 2
        Byte array
    iuup.rfci.0.flow.2.len  RFCI 0 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.0.flow.3  RFCI 0 Flow 3
        Byte array
    iuup.rfci.0.flow.3.len  RFCI 0 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.0.flow.4  RFCI 0 Flow 4
        Byte array
    iuup.rfci.0.flow.4.len  RFCI 0 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.0.flow.5  RFCI 0 Flow 5
        Byte array
    iuup.rfci.0.flow.5.len  RFCI 0 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.0.flow.6  RFCI 0 Flow 6
        Byte array
    iuup.rfci.0.flow.6.len  RFCI 0 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.0.flow.7  RFCI 0 Flow 7
        Byte array
    iuup.rfci.0.flow.7.len  RFCI 0 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.0.ipti  RFCI 0 IPTI
        Unsigned 8-bit integer
    iuup.rfci.0.li  RFCI 0 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.0.lri  RFCI 0 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.1  RFCI 1
        Unsigned 8-bit integer
    iuup.rfci.1.flow.0  RFCI 1 Flow 0
        Byte array
    iuup.rfci.1.flow.0.len  RFCI 1 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.1.flow.1  RFCI 1 Flow 1
        Byte array
    iuup.rfci.1.flow.1.len  RFCI 1 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.1.flow.2  RFCI 1 Flow 2
        Byte array
    iuup.rfci.1.flow.2.len  RFCI 1 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.1.flow.3  RFCI 1 Flow 3
        Byte array
    iuup.rfci.1.flow.3.len  RFCI 1 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.1.flow.4  RFCI 1 Flow 4
        Byte array
    iuup.rfci.1.flow.4.len  RFCI 1 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.1.flow.5  RFCI 1 Flow 5
        Byte array
    iuup.rfci.1.flow.5.len  RFCI 1 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.1.flow.6  RFCI 1 Flow 6
        Byte array
    iuup.rfci.1.flow.6.len  RFCI 1 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.1.flow.7  RFCI 1 Flow 7
        Byte array
    iuup.rfci.1.flow.7.len  RFCI 1 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.1.ipti  RFCI 1 IPTI
        Unsigned 8-bit integer
    iuup.rfci.1.li  RFCI 1 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.1.lri  RFCI 1 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.10  RFCI 10
        Unsigned 8-bit integer
    iuup.rfci.10.flow.0  RFCI 10 Flow 0
        Byte array
    iuup.rfci.10.flow.0.len  RFCI 10 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.10.flow.1  RFCI 10 Flow 1
        Byte array
    iuup.rfci.10.flow.1.len  RFCI 10 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.10.flow.2  RFCI 10 Flow 2
        Byte array
    iuup.rfci.10.flow.2.len  RFCI 10 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.10.flow.3  RFCI 10 Flow 3
        Byte array
    iuup.rfci.10.flow.3.len  RFCI 10 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.10.flow.4  RFCI 10 Flow 4
        Byte array
    iuup.rfci.10.flow.4.len  RFCI 10 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.10.flow.5  RFCI 10 Flow 5
        Byte array
    iuup.rfci.10.flow.5.len  RFCI 10 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.10.flow.6  RFCI 10 Flow 6
        Byte array
    iuup.rfci.10.flow.6.len  RFCI 10 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.10.flow.7  RFCI 10 Flow 7
        Byte array
    iuup.rfci.10.flow.7.len  RFCI 10 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.10.ipti  RFCI 10 IPTI
        Unsigned 8-bit integer
    iuup.rfci.10.li  RFCI 10 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.10.lri  RFCI 10 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.11  RFCI 11
        Unsigned 8-bit integer
    iuup.rfci.11.flow.0  RFCI 11 Flow 0
        Byte array
    iuup.rfci.11.flow.0.len  RFCI 11 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.11.flow.1  RFCI 11 Flow 1
        Byte array
    iuup.rfci.11.flow.1.len  RFCI 11 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.11.flow.2  RFCI 11 Flow 2
        Byte array
    iuup.rfci.11.flow.2.len  RFCI 11 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.11.flow.3  RFCI 11 Flow 3
        Byte array
    iuup.rfci.11.flow.3.len  RFCI 11 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.11.flow.4  RFCI 11 Flow 4
        Byte array
    iuup.rfci.11.flow.4.len  RFCI 11 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.11.flow.5  RFCI 11 Flow 5
        Byte array
    iuup.rfci.11.flow.5.len  RFCI 11 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.11.flow.6  RFCI 11 Flow 6
        Byte array
    iuup.rfci.11.flow.6.len  RFCI 11 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.11.flow.7  RFCI 11 Flow 7
        Byte array
    iuup.rfci.11.flow.7.len  RFCI 11 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.11.ipti  RFCI 11 IPTI
        Unsigned 8-bit integer
    iuup.rfci.11.li  RFCI 11 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.11.lri  RFCI 11 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.12  RFCI 12
        Unsigned 8-bit integer
    iuup.rfci.12.flow.0  RFCI 12 Flow 0
        Byte array
    iuup.rfci.12.flow.0.len  RFCI 12 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.12.flow.1  RFCI 12 Flow 1
        Byte array
    iuup.rfci.12.flow.1.len  RFCI 12 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.12.flow.2  RFCI 12 Flow 2
        Byte array
    iuup.rfci.12.flow.2.len  RFCI 12 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.12.flow.3  RFCI 12 Flow 3
        Byte array
    iuup.rfci.12.flow.3.len  RFCI 12 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.12.flow.4  RFCI 12 Flow 4
        Byte array
    iuup.rfci.12.flow.4.len  RFCI 12 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.12.flow.5  RFCI 12 Flow 5
        Byte array
    iuup.rfci.12.flow.5.len  RFCI 12 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.12.flow.6  RFCI 12 Flow 6
        Byte array
    iuup.rfci.12.flow.6.len  RFCI 12 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.12.flow.7  RFCI 12 Flow 7
        Byte array
    iuup.rfci.12.flow.7.len  RFCI 12 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.12.ipti  RFCI 12 IPTI
        Unsigned 8-bit integer
    iuup.rfci.12.li  RFCI 12 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.12.lri  RFCI 12 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.13  RFCI 13
        Unsigned 8-bit integer
    iuup.rfci.13.flow.0  RFCI 13 Flow 0
        Byte array
    iuup.rfci.13.flow.0.len  RFCI 13 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.13.flow.1  RFCI 13 Flow 1
        Byte array
    iuup.rfci.13.flow.1.len  RFCI 13 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.13.flow.2  RFCI 13 Flow 2
        Byte array
    iuup.rfci.13.flow.2.len  RFCI 13 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.13.flow.3  RFCI 13 Flow 3
        Byte array
    iuup.rfci.13.flow.3.len  RFCI 13 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.13.flow.4  RFCI 13 Flow 4
        Byte array
    iuup.rfci.13.flow.4.len  RFCI 13 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.13.flow.5  RFCI 13 Flow 5
        Byte array
    iuup.rfci.13.flow.5.len  RFCI 13 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.13.flow.6  RFCI 13 Flow 6
        Byte array
    iuup.rfci.13.flow.6.len  RFCI 13 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.13.flow.7  RFCI 13 Flow 7
        Byte array
    iuup.rfci.13.flow.7.len  RFCI 13 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.13.ipti  RFCI 13 IPTI
        Unsigned 8-bit integer
    iuup.rfci.13.li  RFCI 13 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.13.lri  RFCI 13 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.14  RFCI 14
        Unsigned 8-bit integer
    iuup.rfci.14.flow.0  RFCI 14 Flow 0
        Byte array
    iuup.rfci.14.flow.0.len  RFCI 14 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.14.flow.1  RFCI 14 Flow 1
        Byte array
    iuup.rfci.14.flow.1.len  RFCI 14 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.14.flow.2  RFCI 14 Flow 2
        Byte array
    iuup.rfci.14.flow.2.len  RFCI 14 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.14.flow.3  RFCI 14 Flow 3
        Byte array
    iuup.rfci.14.flow.3.len  RFCI 14 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.14.flow.4  RFCI 14 Flow 4
        Byte array
    iuup.rfci.14.flow.4.len  RFCI 14 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.14.flow.5  RFCI 14 Flow 5
        Byte array
    iuup.rfci.14.flow.5.len  RFCI 14 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.14.flow.6  RFCI 14 Flow 6
        Byte array
    iuup.rfci.14.flow.6.len  RFCI 14 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.14.flow.7  RFCI 14 Flow 7
        Byte array
    iuup.rfci.14.flow.7.len  RFCI 14 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.14.ipti  RFCI 14 IPTI
        Unsigned 8-bit integer
    iuup.rfci.14.li  RFCI 14 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.14.lri  RFCI 14 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.15  RFCI 15
        Unsigned 8-bit integer
    iuup.rfci.15.flow.0  RFCI 15 Flow 0
        Byte array
    iuup.rfci.15.flow.0.len  RFCI 15 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.15.flow.1  RFCI 15 Flow 1
        Byte array
    iuup.rfci.15.flow.1.len  RFCI 15 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.15.flow.2  RFCI 15 Flow 2
        Byte array
    iuup.rfci.15.flow.2.len  RFCI 15 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.15.flow.3  RFCI 15 Flow 3
        Byte array
    iuup.rfci.15.flow.3.len  RFCI 15 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.15.flow.4  RFCI 15 Flow 4
        Byte array
    iuup.rfci.15.flow.4.len  RFCI 15 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.15.flow.5  RFCI 15 Flow 5
        Byte array
    iuup.rfci.15.flow.5.len  RFCI 15 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.15.flow.6  RFCI 15 Flow 6
        Byte array
    iuup.rfci.15.flow.6.len  RFCI 15 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.15.flow.7  RFCI 15 Flow 7
        Byte array
    iuup.rfci.15.flow.7.len  RFCI 15 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.15.ipti  RFCI 15 IPTI
        Unsigned 8-bit integer
    iuup.rfci.15.li  RFCI 15 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.15.lri  RFCI 15 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.16  RFCI 16
        Unsigned 8-bit integer
    iuup.rfci.16.flow.0  RFCI 16 Flow 0
        Byte array
    iuup.rfci.16.flow.0.len  RFCI 16 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.16.flow.1  RFCI 16 Flow 1
        Byte array
    iuup.rfci.16.flow.1.len  RFCI 16 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.16.flow.2  RFCI 16 Flow 2
        Byte array
    iuup.rfci.16.flow.2.len  RFCI 16 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.16.flow.3  RFCI 16 Flow 3
        Byte array
    iuup.rfci.16.flow.3.len  RFCI 16 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.16.flow.4  RFCI 16 Flow 4
        Byte array
    iuup.rfci.16.flow.4.len  RFCI 16 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.16.flow.5  RFCI 16 Flow 5
        Byte array
    iuup.rfci.16.flow.5.len  RFCI 16 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.16.flow.6  RFCI 16 Flow 6
        Byte array
    iuup.rfci.16.flow.6.len  RFCI 16 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.16.flow.7  RFCI 16 Flow 7
        Byte array
    iuup.rfci.16.flow.7.len  RFCI 16 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.16.ipti  RFCI 16 IPTI
        Unsigned 8-bit integer
    iuup.rfci.16.li  RFCI 16 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.16.lri  RFCI 16 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.17  RFCI 17
        Unsigned 8-bit integer
    iuup.rfci.17.flow.0  RFCI 17 Flow 0
        Byte array
    iuup.rfci.17.flow.0.len  RFCI 17 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.17.flow.1  RFCI 17 Flow 1
        Byte array
    iuup.rfci.17.flow.1.len  RFCI 17 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.17.flow.2  RFCI 17 Flow 2
        Byte array
    iuup.rfci.17.flow.2.len  RFCI 17 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.17.flow.3  RFCI 17 Flow 3
        Byte array
    iuup.rfci.17.flow.3.len  RFCI 17 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.17.flow.4  RFCI 17 Flow 4
        Byte array
    iuup.rfci.17.flow.4.len  RFCI 17 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.17.flow.5  RFCI 17 Flow 5
        Byte array
    iuup.rfci.17.flow.5.len  RFCI 17 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.17.flow.6  RFCI 17 Flow 6
        Byte array
    iuup.rfci.17.flow.6.len  RFCI 17 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.17.flow.7  RFCI 17 Flow 7
        Byte array
    iuup.rfci.17.flow.7.len  RFCI 17 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.17.ipti  RFCI 17 IPTI
        Unsigned 8-bit integer
    iuup.rfci.17.li  RFCI 17 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.17.lri  RFCI 17 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.18  RFCI 18
        Unsigned 8-bit integer
    iuup.rfci.18.flow.0  RFCI 18 Flow 0
        Byte array
    iuup.rfci.18.flow.0.len  RFCI 18 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.18.flow.1  RFCI 18 Flow 1
        Byte array
    iuup.rfci.18.flow.1.len  RFCI 18 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.18.flow.2  RFCI 18 Flow 2
        Byte array
    iuup.rfci.18.flow.2.len  RFCI 18 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.18.flow.3  RFCI 18 Flow 3
        Byte array
    iuup.rfci.18.flow.3.len  RFCI 18 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.18.flow.4  RFCI 18 Flow 4
        Byte array
    iuup.rfci.18.flow.4.len  RFCI 18 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.18.flow.5  RFCI 18 Flow 5
        Byte array
    iuup.rfci.18.flow.5.len  RFCI 18 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.18.flow.6  RFCI 18 Flow 6
        Byte array
    iuup.rfci.18.flow.6.len  RFCI 18 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.18.flow.7  RFCI 18 Flow 7
        Byte array
    iuup.rfci.18.flow.7.len  RFCI 18 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.18.ipti  RFCI 18 IPTI
        Unsigned 8-bit integer
    iuup.rfci.18.li  RFCI 18 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.18.lri  RFCI 18 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.19  RFCI 19
        Unsigned 8-bit integer
    iuup.rfci.19.flow.0  RFCI 19 Flow 0
        Byte array
    iuup.rfci.19.flow.0.len  RFCI 19 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.19.flow.1  RFCI 19 Flow 1
        Byte array
    iuup.rfci.19.flow.1.len  RFCI 19 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.19.flow.2  RFCI 19 Flow 2
        Byte array
    iuup.rfci.19.flow.2.len  RFCI 19 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.19.flow.3  RFCI 19 Flow 3
        Byte array
    iuup.rfci.19.flow.3.len  RFCI 19 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.19.flow.4  RFCI 19 Flow 4
        Byte array
    iuup.rfci.19.flow.4.len  RFCI 19 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.19.flow.5  RFCI 19 Flow 5
        Byte array
    iuup.rfci.19.flow.5.len  RFCI 19 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.19.flow.6  RFCI 19 Flow 6
        Byte array
    iuup.rfci.19.flow.6.len  RFCI 19 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.19.flow.7  RFCI 19 Flow 7
        Byte array
    iuup.rfci.19.flow.7.len  RFCI 19 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.19.ipti  RFCI 19 IPTI
        Unsigned 8-bit integer
    iuup.rfci.19.li  RFCI 19 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.19.lri  RFCI 19 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.2  RFCI 2
        Unsigned 8-bit integer
    iuup.rfci.2.flow.0  RFCI 2 Flow 0
        Byte array
    iuup.rfci.2.flow.0.len  RFCI 2 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.2.flow.1  RFCI 2 Flow 1
        Byte array
    iuup.rfci.2.flow.1.len  RFCI 2 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.2.flow.2  RFCI 2 Flow 2
        Byte array
    iuup.rfci.2.flow.2.len  RFCI 2 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.2.flow.3  RFCI 2 Flow 3
        Byte array
    iuup.rfci.2.flow.3.len  RFCI 2 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.2.flow.4  RFCI 2 Flow 4
        Byte array
    iuup.rfci.2.flow.4.len  RFCI 2 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.2.flow.5  RFCI 2 Flow 5
        Byte array
    iuup.rfci.2.flow.5.len  RFCI 2 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.2.flow.6  RFCI 2 Flow 6
        Byte array
    iuup.rfci.2.flow.6.len  RFCI 2 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.2.flow.7  RFCI 2 Flow 7
        Byte array
    iuup.rfci.2.flow.7.len  RFCI 2 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.2.ipti  RFCI 2 IPTI
        Unsigned 8-bit integer
    iuup.rfci.2.li  RFCI 2 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.2.lri  RFCI 2 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.20  RFCI 20
        Unsigned 8-bit integer
    iuup.rfci.20.flow.0  RFCI 20 Flow 0
        Byte array
    iuup.rfci.20.flow.0.len  RFCI 20 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.20.flow.1  RFCI 20 Flow 1
        Byte array
    iuup.rfci.20.flow.1.len  RFCI 20 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.20.flow.2  RFCI 20 Flow 2
        Byte array
    iuup.rfci.20.flow.2.len  RFCI 20 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.20.flow.3  RFCI 20 Flow 3
        Byte array
    iuup.rfci.20.flow.3.len  RFCI 20 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.20.flow.4  RFCI 20 Flow 4
        Byte array
    iuup.rfci.20.flow.4.len  RFCI 20 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.20.flow.5  RFCI 20 Flow 5
        Byte array
    iuup.rfci.20.flow.5.len  RFCI 20 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.20.flow.6  RFCI 20 Flow 6
        Byte array
    iuup.rfci.20.flow.6.len  RFCI 20 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.20.flow.7  RFCI 20 Flow 7
        Byte array
    iuup.rfci.20.flow.7.len  RFCI 20 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.20.ipti  RFCI 20 IPTI
        Unsigned 8-bit integer
    iuup.rfci.20.li  RFCI 20 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.20.lri  RFCI 20 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.21  RFCI 21
        Unsigned 8-bit integer
    iuup.rfci.21.flow.0  RFCI 21 Flow 0
        Byte array
    iuup.rfci.21.flow.0.len  RFCI 21 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.21.flow.1  RFCI 21 Flow 1
        Byte array
    iuup.rfci.21.flow.1.len  RFCI 21 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.21.flow.2  RFCI 21 Flow 2
        Byte array
    iuup.rfci.21.flow.2.len  RFCI 21 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.21.flow.3  RFCI 21 Flow 3
        Byte array
    iuup.rfci.21.flow.3.len  RFCI 21 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.21.flow.4  RFCI 21 Flow 4
        Byte array
    iuup.rfci.21.flow.4.len  RFCI 21 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.21.flow.5  RFCI 21 Flow 5
        Byte array
    iuup.rfci.21.flow.5.len  RFCI 21 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.21.flow.6  RFCI 21 Flow 6
        Byte array
    iuup.rfci.21.flow.6.len  RFCI 21 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.21.flow.7  RFCI 21 Flow 7
        Byte array
    iuup.rfci.21.flow.7.len  RFCI 21 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.21.ipti  RFCI 21 IPTI
        Unsigned 8-bit integer
    iuup.rfci.21.li  RFCI 21 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.21.lri  RFCI 21 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.22  RFCI 22
        Unsigned 8-bit integer
    iuup.rfci.22.flow.0  RFCI 22 Flow 0
        Byte array
    iuup.rfci.22.flow.0.len  RFCI 22 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.22.flow.1  RFCI 22 Flow 1
        Byte array
    iuup.rfci.22.flow.1.len  RFCI 22 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.22.flow.2  RFCI 22 Flow 2
        Byte array
    iuup.rfci.22.flow.2.len  RFCI 22 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.22.flow.3  RFCI 22 Flow 3
        Byte array
    iuup.rfci.22.flow.3.len  RFCI 22 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.22.flow.4  RFCI 22 Flow 4
        Byte array
    iuup.rfci.22.flow.4.len  RFCI 22 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.22.flow.5  RFCI 22 Flow 5
        Byte array
    iuup.rfci.22.flow.5.len  RFCI 22 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.22.flow.6  RFCI 22 Flow 6
        Byte array
    iuup.rfci.22.flow.6.len  RFCI 22 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.22.flow.7  RFCI 22 Flow 7
        Byte array
    iuup.rfci.22.flow.7.len  RFCI 22 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.22.ipti  RFCI 22 IPTI
        Unsigned 8-bit integer
    iuup.rfci.22.li  RFCI 22 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.22.lri  RFCI 22 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.23  RFCI 23
        Unsigned 8-bit integer
    iuup.rfci.23.flow.0  RFCI 23 Flow 0
        Byte array
    iuup.rfci.23.flow.0.len  RFCI 23 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.23.flow.1  RFCI 23 Flow 1
        Byte array
    iuup.rfci.23.flow.1.len  RFCI 23 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.23.flow.2  RFCI 23 Flow 2
        Byte array
    iuup.rfci.23.flow.2.len  RFCI 23 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.23.flow.3  RFCI 23 Flow 3
        Byte array
    iuup.rfci.23.flow.3.len  RFCI 23 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.23.flow.4  RFCI 23 Flow 4
        Byte array
    iuup.rfci.23.flow.4.len  RFCI 23 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.23.flow.5  RFCI 23 Flow 5
        Byte array
    iuup.rfci.23.flow.5.len  RFCI 23 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.23.flow.6  RFCI 23 Flow 6
        Byte array
    iuup.rfci.23.flow.6.len  RFCI 23 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.23.flow.7  RFCI 23 Flow 7
        Byte array
    iuup.rfci.23.flow.7.len  RFCI 23 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.23.ipti  RFCI 23 IPTI
        Unsigned 8-bit integer
    iuup.rfci.23.li  RFCI 23 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.23.lri  RFCI 23 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.24  RFCI 24
        Unsigned 8-bit integer
    iuup.rfci.24.flow.0  RFCI 24 Flow 0
        Byte array
    iuup.rfci.24.flow.0.len  RFCI 24 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.24.flow.1  RFCI 24 Flow 1
        Byte array
    iuup.rfci.24.flow.1.len  RFCI 24 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.24.flow.2  RFCI 24 Flow 2
        Byte array
    iuup.rfci.24.flow.2.len  RFCI 24 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.24.flow.3  RFCI 24 Flow 3
        Byte array
    iuup.rfci.24.flow.3.len  RFCI 24 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.24.flow.4  RFCI 24 Flow 4
        Byte array
    iuup.rfci.24.flow.4.len  RFCI 24 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.24.flow.5  RFCI 24 Flow 5
        Byte array
    iuup.rfci.24.flow.5.len  RFCI 24 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.24.flow.6  RFCI 24 Flow 6
        Byte array
    iuup.rfci.24.flow.6.len  RFCI 24 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.24.flow.7  RFCI 24 Flow 7
        Byte array
    iuup.rfci.24.flow.7.len  RFCI 24 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.24.ipti  RFCI 24 IPTI
        Unsigned 8-bit integer
    iuup.rfci.24.li  RFCI 24 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.24.lri  RFCI 24 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.25  RFCI 25
        Unsigned 8-bit integer
    iuup.rfci.25.flow.0  RFCI 25 Flow 0
        Byte array
    iuup.rfci.25.flow.0.len  RFCI 25 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.25.flow.1  RFCI 25 Flow 1
        Byte array
    iuup.rfci.25.flow.1.len  RFCI 25 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.25.flow.2  RFCI 25 Flow 2
        Byte array
    iuup.rfci.25.flow.2.len  RFCI 25 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.25.flow.3  RFCI 25 Flow 3
        Byte array
    iuup.rfci.25.flow.3.len  RFCI 25 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.25.flow.4  RFCI 25 Flow 4
        Byte array
    iuup.rfci.25.flow.4.len  RFCI 25 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.25.flow.5  RFCI 25 Flow 5
        Byte array
    iuup.rfci.25.flow.5.len  RFCI 25 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.25.flow.6  RFCI 25 Flow 6
        Byte array
    iuup.rfci.25.flow.6.len  RFCI 25 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.25.flow.7  RFCI 25 Flow 7
        Byte array
    iuup.rfci.25.flow.7.len  RFCI 25 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.25.ipti  RFCI 25 IPTI
        Unsigned 8-bit integer
    iuup.rfci.25.li  RFCI 25 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.25.lri  RFCI 25 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.26  RFCI 26
        Unsigned 8-bit integer
    iuup.rfci.26.flow.0  RFCI 26 Flow 0
        Byte array
    iuup.rfci.26.flow.0.len  RFCI 26 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.26.flow.1  RFCI 26 Flow 1
        Byte array
    iuup.rfci.26.flow.1.len  RFCI 26 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.26.flow.2  RFCI 26 Flow 2
        Byte array
    iuup.rfci.26.flow.2.len  RFCI 26 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.26.flow.3  RFCI 26 Flow 3
        Byte array
    iuup.rfci.26.flow.3.len  RFCI 26 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.26.flow.4  RFCI 26 Flow 4
        Byte array
    iuup.rfci.26.flow.4.len  RFCI 26 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.26.flow.5  RFCI 26 Flow 5
        Byte array
    iuup.rfci.26.flow.5.len  RFCI 26 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.26.flow.6  RFCI 26 Flow 6
        Byte array
    iuup.rfci.26.flow.6.len  RFCI 26 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.26.flow.7  RFCI 26 Flow 7
        Byte array
    iuup.rfci.26.flow.7.len  RFCI 26 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.26.ipti  RFCI 26 IPTI
        Unsigned 8-bit integer
    iuup.rfci.26.li  RFCI 26 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.26.lri  RFCI 26 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.27  RFCI 27
        Unsigned 8-bit integer
    iuup.rfci.27.flow.0  RFCI 27 Flow 0
        Byte array
    iuup.rfci.27.flow.0.len  RFCI 27 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.27.flow.1  RFCI 27 Flow 1
        Byte array
    iuup.rfci.27.flow.1.len  RFCI 27 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.27.flow.2  RFCI 27 Flow 2
        Byte array
    iuup.rfci.27.flow.2.len  RFCI 27 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.27.flow.3  RFCI 27 Flow 3
        Byte array
    iuup.rfci.27.flow.3.len  RFCI 27 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.27.flow.4  RFCI 27 Flow 4
        Byte array
    iuup.rfci.27.flow.4.len  RFCI 27 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.27.flow.5  RFCI 27 Flow 5
        Byte array
    iuup.rfci.27.flow.5.len  RFCI 27 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.27.flow.6  RFCI 27 Flow 6
        Byte array
    iuup.rfci.27.flow.6.len  RFCI 27 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.27.flow.7  RFCI 27 Flow 7
        Byte array
    iuup.rfci.27.flow.7.len  RFCI 27 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.27.ipti  RFCI 27 IPTI
        Unsigned 8-bit integer
    iuup.rfci.27.li  RFCI 27 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.27.lri  RFCI 27 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.28  RFCI 28
        Unsigned 8-bit integer
    iuup.rfci.28.flow.0  RFCI 28 Flow 0
        Byte array
    iuup.rfci.28.flow.0.len  RFCI 28 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.28.flow.1  RFCI 28 Flow 1
        Byte array
    iuup.rfci.28.flow.1.len  RFCI 28 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.28.flow.2  RFCI 28 Flow 2
        Byte array
    iuup.rfci.28.flow.2.len  RFCI 28 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.28.flow.3  RFCI 28 Flow 3
        Byte array
    iuup.rfci.28.flow.3.len  RFCI 28 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.28.flow.4  RFCI 28 Flow 4
        Byte array
    iuup.rfci.28.flow.4.len  RFCI 28 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.28.flow.5  RFCI 28 Flow 5
        Byte array
    iuup.rfci.28.flow.5.len  RFCI 28 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.28.flow.6  RFCI 28 Flow 6
        Byte array
    iuup.rfci.28.flow.6.len  RFCI 28 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.28.flow.7  RFCI 28 Flow 7
        Byte array
    iuup.rfci.28.flow.7.len  RFCI 28 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.28.ipti  RFCI 28 IPTI
        Unsigned 8-bit integer
    iuup.rfci.28.li  RFCI 28 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.28.lri  RFCI 28 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.29  RFCI 29
        Unsigned 8-bit integer
    iuup.rfci.29.flow.0  RFCI 29 Flow 0
        Byte array
    iuup.rfci.29.flow.0.len  RFCI 29 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.29.flow.1  RFCI 29 Flow 1
        Byte array
    iuup.rfci.29.flow.1.len  RFCI 29 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.29.flow.2  RFCI 29 Flow 2
        Byte array
    iuup.rfci.29.flow.2.len  RFCI 29 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.29.flow.3  RFCI 29 Flow 3
        Byte array
    iuup.rfci.29.flow.3.len  RFCI 29 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.29.flow.4  RFCI 29 Flow 4
        Byte array
    iuup.rfci.29.flow.4.len  RFCI 29 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.29.flow.5  RFCI 29 Flow 5
        Byte array
    iuup.rfci.29.flow.5.len  RFCI 29 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.29.flow.6  RFCI 29 Flow 6
        Byte array
    iuup.rfci.29.flow.6.len  RFCI 29 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.29.flow.7  RFCI 29 Flow 7
        Byte array
    iuup.rfci.29.flow.7.len  RFCI 29 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.29.ipti  RFCI 29 IPTI
        Unsigned 8-bit integer
    iuup.rfci.29.li  RFCI 29 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.29.lri  RFCI 29 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.3  RFCI 3
        Unsigned 8-bit integer
    iuup.rfci.3.flow.0  RFCI 3 Flow 0
        Byte array
    iuup.rfci.3.flow.0.len  RFCI 3 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.3.flow.1  RFCI 3 Flow 1
        Byte array
    iuup.rfci.3.flow.1.len  RFCI 3 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.3.flow.2  RFCI 3 Flow 2
        Byte array
    iuup.rfci.3.flow.2.len  RFCI 3 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.3.flow.3  RFCI 3 Flow 3
        Byte array
    iuup.rfci.3.flow.3.len  RFCI 3 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.3.flow.4  RFCI 3 Flow 4
        Byte array
    iuup.rfci.3.flow.4.len  RFCI 3 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.3.flow.5  RFCI 3 Flow 5
        Byte array
    iuup.rfci.3.flow.5.len  RFCI 3 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.3.flow.6  RFCI 3 Flow 6
        Byte array
    iuup.rfci.3.flow.6.len  RFCI 3 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.3.flow.7  RFCI 3 Flow 7
        Byte array
    iuup.rfci.3.flow.7.len  RFCI 3 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.3.ipti  RFCI 3 IPTI
        Unsigned 8-bit integer
    iuup.rfci.3.li  RFCI 3 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.3.lri  RFCI 3 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.30  RFCI 30
        Unsigned 8-bit integer
    iuup.rfci.30.flow.0  RFCI 30 Flow 0
        Byte array
    iuup.rfci.30.flow.0.len  RFCI 30 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.30.flow.1  RFCI 30 Flow 1
        Byte array
    iuup.rfci.30.flow.1.len  RFCI 30 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.30.flow.2  RFCI 30 Flow 2
        Byte array
    iuup.rfci.30.flow.2.len  RFCI 30 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.30.flow.3  RFCI 30 Flow 3
        Byte array
    iuup.rfci.30.flow.3.len  RFCI 30 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.30.flow.4  RFCI 30 Flow 4
        Byte array
    iuup.rfci.30.flow.4.len  RFCI 30 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.30.flow.5  RFCI 30 Flow 5
        Byte array
    iuup.rfci.30.flow.5.len  RFCI 30 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.30.flow.6  RFCI 30 Flow 6
        Byte array
    iuup.rfci.30.flow.6.len  RFCI 30 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.30.flow.7  RFCI 30 Flow 7
        Byte array
    iuup.rfci.30.flow.7.len  RFCI 30 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.30.ipti  RFCI 30 IPTI
        Unsigned 8-bit integer
    iuup.rfci.30.li  RFCI 30 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.30.lri  RFCI 30 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.31  RFCI 31
        Unsigned 8-bit integer
    iuup.rfci.31.flow.0  RFCI 31 Flow 0
        Byte array
    iuup.rfci.31.flow.0.len  RFCI 31 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.31.flow.1  RFCI 31 Flow 1
        Byte array
    iuup.rfci.31.flow.1.len  RFCI 31 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.31.flow.2  RFCI 31 Flow 2
        Byte array
    iuup.rfci.31.flow.2.len  RFCI 31 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.31.flow.3  RFCI 31 Flow 3
        Byte array
    iuup.rfci.31.flow.3.len  RFCI 31 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.31.flow.4  RFCI 31 Flow 4
        Byte array
    iuup.rfci.31.flow.4.len  RFCI 31 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.31.flow.5  RFCI 31 Flow 5
        Byte array
    iuup.rfci.31.flow.5.len  RFCI 31 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.31.flow.6  RFCI 31 Flow 6
        Byte array
    iuup.rfci.31.flow.6.len  RFCI 31 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.31.flow.7  RFCI 31 Flow 7
        Byte array
    iuup.rfci.31.flow.7.len  RFCI 31 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.31.ipti  RFCI 31 IPTI
        Unsigned 8-bit integer
    iuup.rfci.31.li  RFCI 31 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.31.lri  RFCI 31 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.32  RFCI 32
        Unsigned 8-bit integer
    iuup.rfci.32.flow.0  RFCI 32 Flow 0
        Byte array
    iuup.rfci.32.flow.0.len  RFCI 32 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.32.flow.1  RFCI 32 Flow 1
        Byte array
    iuup.rfci.32.flow.1.len  RFCI 32 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.32.flow.2  RFCI 32 Flow 2
        Byte array
    iuup.rfci.32.flow.2.len  RFCI 32 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.32.flow.3  RFCI 32 Flow 3
        Byte array
    iuup.rfci.32.flow.3.len  RFCI 32 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.32.flow.4  RFCI 32 Flow 4
        Byte array
    iuup.rfci.32.flow.4.len  RFCI 32 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.32.flow.5  RFCI 32 Flow 5
        Byte array
    iuup.rfci.32.flow.5.len  RFCI 32 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.32.flow.6  RFCI 32 Flow 6
        Byte array
    iuup.rfci.32.flow.6.len  RFCI 32 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.32.flow.7  RFCI 32 Flow 7
        Byte array
    iuup.rfci.32.flow.7.len  RFCI 32 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.32.ipti  RFCI 32 IPTI
        Unsigned 8-bit integer
    iuup.rfci.32.li  RFCI 32 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.32.lri  RFCI 32 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.33  RFCI 33
        Unsigned 8-bit integer
    iuup.rfci.33.flow.0  RFCI 33 Flow 0
        Byte array
    iuup.rfci.33.flow.0.len  RFCI 33 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.33.flow.1  RFCI 33 Flow 1
        Byte array
    iuup.rfci.33.flow.1.len  RFCI 33 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.33.flow.2  RFCI 33 Flow 2
        Byte array
    iuup.rfci.33.flow.2.len  RFCI 33 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.33.flow.3  RFCI 33 Flow 3
        Byte array
    iuup.rfci.33.flow.3.len  RFCI 33 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.33.flow.4  RFCI 33 Flow 4
        Byte array
    iuup.rfci.33.flow.4.len  RFCI 33 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.33.flow.5  RFCI 33 Flow 5
        Byte array
    iuup.rfci.33.flow.5.len  RFCI 33 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.33.flow.6  RFCI 33 Flow 6
        Byte array
    iuup.rfci.33.flow.6.len  RFCI 33 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.33.flow.7  RFCI 33 Flow 7
        Byte array
    iuup.rfci.33.flow.7.len  RFCI 33 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.33.ipti  RFCI 33 IPTI
        Unsigned 8-bit integer
    iuup.rfci.33.li  RFCI 33 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.33.lri  RFCI 33 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.34  RFCI 34
        Unsigned 8-bit integer
    iuup.rfci.34.flow.0  RFCI 34 Flow 0
        Byte array
    iuup.rfci.34.flow.0.len  RFCI 34 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.34.flow.1  RFCI 34 Flow 1
        Byte array
    iuup.rfci.34.flow.1.len  RFCI 34 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.34.flow.2  RFCI 34 Flow 2
        Byte array
    iuup.rfci.34.flow.2.len  RFCI 34 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.34.flow.3  RFCI 34 Flow 3
        Byte array
    iuup.rfci.34.flow.3.len  RFCI 34 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.34.flow.4  RFCI 34 Flow 4
        Byte array
    iuup.rfci.34.flow.4.len  RFCI 34 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.34.flow.5  RFCI 34 Flow 5
        Byte array
    iuup.rfci.34.flow.5.len  RFCI 34 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.34.flow.6  RFCI 34 Flow 6
        Byte array
    iuup.rfci.34.flow.6.len  RFCI 34 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.34.flow.7  RFCI 34 Flow 7
        Byte array
    iuup.rfci.34.flow.7.len  RFCI 34 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.34.ipti  RFCI 34 IPTI
        Unsigned 8-bit integer
    iuup.rfci.34.li  RFCI 34 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.34.lri  RFCI 34 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.35  RFCI 35
        Unsigned 8-bit integer
    iuup.rfci.35.flow.0  RFCI 35 Flow 0
        Byte array
    iuup.rfci.35.flow.0.len  RFCI 35 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.35.flow.1  RFCI 35 Flow 1
        Byte array
    iuup.rfci.35.flow.1.len  RFCI 35 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.35.flow.2  RFCI 35 Flow 2
        Byte array
    iuup.rfci.35.flow.2.len  RFCI 35 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.35.flow.3  RFCI 35 Flow 3
        Byte array
    iuup.rfci.35.flow.3.len  RFCI 35 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.35.flow.4  RFCI 35 Flow 4
        Byte array
    iuup.rfci.35.flow.4.len  RFCI 35 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.35.flow.5  RFCI 35 Flow 5
        Byte array
    iuup.rfci.35.flow.5.len  RFCI 35 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.35.flow.6  RFCI 35 Flow 6
        Byte array
    iuup.rfci.35.flow.6.len  RFCI 35 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.35.flow.7  RFCI 35 Flow 7
        Byte array
    iuup.rfci.35.flow.7.len  RFCI 35 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.35.ipti  RFCI 35 IPTI
        Unsigned 8-bit integer
    iuup.rfci.35.li  RFCI 35 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.35.lri  RFCI 35 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.36  RFCI 36
        Unsigned 8-bit integer
    iuup.rfci.36.flow.0  RFCI 36 Flow 0
        Byte array
    iuup.rfci.36.flow.0.len  RFCI 36 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.36.flow.1  RFCI 36 Flow 1
        Byte array
    iuup.rfci.36.flow.1.len  RFCI 36 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.36.flow.2  RFCI 36 Flow 2
        Byte array
    iuup.rfci.36.flow.2.len  RFCI 36 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.36.flow.3  RFCI 36 Flow 3
        Byte array
    iuup.rfci.36.flow.3.len  RFCI 36 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.36.flow.4  RFCI 36 Flow 4
        Byte array
    iuup.rfci.36.flow.4.len  RFCI 36 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.36.flow.5  RFCI 36 Flow 5
        Byte array
    iuup.rfci.36.flow.5.len  RFCI 36 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.36.flow.6  RFCI 36 Flow 6
        Byte array
    iuup.rfci.36.flow.6.len  RFCI 36 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.36.flow.7  RFCI 36 Flow 7
        Byte array
    iuup.rfci.36.flow.7.len  RFCI 36 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.36.ipti  RFCI 36 IPTI
        Unsigned 8-bit integer
    iuup.rfci.36.li  RFCI 36 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.36.lri  RFCI 36 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.37  RFCI 37
        Unsigned 8-bit integer
    iuup.rfci.37.flow.0  RFCI 37 Flow 0
        Byte array
    iuup.rfci.37.flow.0.len  RFCI 37 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.37.flow.1  RFCI 37 Flow 1
        Byte array
    iuup.rfci.37.flow.1.len  RFCI 37 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.37.flow.2  RFCI 37 Flow 2
        Byte array
    iuup.rfci.37.flow.2.len  RFCI 37 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.37.flow.3  RFCI 37 Flow 3
        Byte array
    iuup.rfci.37.flow.3.len  RFCI 37 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.37.flow.4  RFCI 37 Flow 4
        Byte array
    iuup.rfci.37.flow.4.len  RFCI 37 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.37.flow.5  RFCI 37 Flow 5
        Byte array
    iuup.rfci.37.flow.5.len  RFCI 37 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.37.flow.6  RFCI 37 Flow 6
        Byte array
    iuup.rfci.37.flow.6.len  RFCI 37 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.37.flow.7  RFCI 37 Flow 7
        Byte array
    iuup.rfci.37.flow.7.len  RFCI 37 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.37.ipti  RFCI 37 IPTI
        Unsigned 8-bit integer
    iuup.rfci.37.li  RFCI 37 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.37.lri  RFCI 37 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.38  RFCI 38
        Unsigned 8-bit integer
    iuup.rfci.38.flow.0  RFCI 38 Flow 0
        Byte array
    iuup.rfci.38.flow.0.len  RFCI 38 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.38.flow.1  RFCI 38 Flow 1
        Byte array
    iuup.rfci.38.flow.1.len  RFCI 38 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.38.flow.2  RFCI 38 Flow 2
        Byte array
    iuup.rfci.38.flow.2.len  RFCI 38 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.38.flow.3  RFCI 38 Flow 3
        Byte array
    iuup.rfci.38.flow.3.len  RFCI 38 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.38.flow.4  RFCI 38 Flow 4
        Byte array
    iuup.rfci.38.flow.4.len  RFCI 38 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.38.flow.5  RFCI 38 Flow 5
        Byte array
    iuup.rfci.38.flow.5.len  RFCI 38 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.38.flow.6  RFCI 38 Flow 6
        Byte array
    iuup.rfci.38.flow.6.len  RFCI 38 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.38.flow.7  RFCI 38 Flow 7
        Byte array
    iuup.rfci.38.flow.7.len  RFCI 38 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.38.ipti  RFCI 38 IPTI
        Unsigned 8-bit integer
    iuup.rfci.38.li  RFCI 38 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.38.lri  RFCI 38 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.39  RFCI 39
        Unsigned 8-bit integer
    iuup.rfci.39.flow.0  RFCI 39 Flow 0
        Byte array
    iuup.rfci.39.flow.0.len  RFCI 39 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.39.flow.1  RFCI 39 Flow 1
        Byte array
    iuup.rfci.39.flow.1.len  RFCI 39 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.39.flow.2  RFCI 39 Flow 2
        Byte array
    iuup.rfci.39.flow.2.len  RFCI 39 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.39.flow.3  RFCI 39 Flow 3
        Byte array
    iuup.rfci.39.flow.3.len  RFCI 39 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.39.flow.4  RFCI 39 Flow 4
        Byte array
    iuup.rfci.39.flow.4.len  RFCI 39 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.39.flow.5  RFCI 39 Flow 5
        Byte array
    iuup.rfci.39.flow.5.len  RFCI 39 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.39.flow.6  RFCI 39 Flow 6
        Byte array
    iuup.rfci.39.flow.6.len  RFCI 39 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.39.flow.7  RFCI 39 Flow 7
        Byte array
    iuup.rfci.39.flow.7.len  RFCI 39 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.39.ipti  RFCI 39 IPTI
        Unsigned 8-bit integer
    iuup.rfci.39.li  RFCI 39 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.39.lri  RFCI 39 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.4  RFCI 4
        Unsigned 8-bit integer
    iuup.rfci.4.flow.0  RFCI 4 Flow 0
        Byte array
    iuup.rfci.4.flow.0.len  RFCI 4 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.4.flow.1  RFCI 4 Flow 1
        Byte array
    iuup.rfci.4.flow.1.len  RFCI 4 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.4.flow.2  RFCI 4 Flow 2
        Byte array
    iuup.rfci.4.flow.2.len  RFCI 4 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.4.flow.3  RFCI 4 Flow 3
        Byte array
    iuup.rfci.4.flow.3.len  RFCI 4 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.4.flow.4  RFCI 4 Flow 4
        Byte array
    iuup.rfci.4.flow.4.len  RFCI 4 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.4.flow.5  RFCI 4 Flow 5
        Byte array
    iuup.rfci.4.flow.5.len  RFCI 4 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.4.flow.6  RFCI 4 Flow 6
        Byte array
    iuup.rfci.4.flow.6.len  RFCI 4 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.4.flow.7  RFCI 4 Flow 7
        Byte array
    iuup.rfci.4.flow.7.len  RFCI 4 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.4.ipti  RFCI 4 IPTI
        Unsigned 8-bit integer
    iuup.rfci.4.li  RFCI 4 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.4.lri  RFCI 4 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.40  RFCI 40
        Unsigned 8-bit integer
    iuup.rfci.40.flow.0  RFCI 40 Flow 0
        Byte array
    iuup.rfci.40.flow.0.len  RFCI 40 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.40.flow.1  RFCI 40 Flow 1
        Byte array
    iuup.rfci.40.flow.1.len  RFCI 40 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.40.flow.2  RFCI 40 Flow 2
        Byte array
    iuup.rfci.40.flow.2.len  RFCI 40 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.40.flow.3  RFCI 40 Flow 3
        Byte array
    iuup.rfci.40.flow.3.len  RFCI 40 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.40.flow.4  RFCI 40 Flow 4
        Byte array
    iuup.rfci.40.flow.4.len  RFCI 40 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.40.flow.5  RFCI 40 Flow 5
        Byte array
    iuup.rfci.40.flow.5.len  RFCI 40 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.40.flow.6  RFCI 40 Flow 6
        Byte array
    iuup.rfci.40.flow.6.len  RFCI 40 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.40.flow.7  RFCI 40 Flow 7
        Byte array
    iuup.rfci.40.flow.7.len  RFCI 40 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.40.ipti  RFCI 40 IPTI
        Unsigned 8-bit integer
    iuup.rfci.40.li  RFCI 40 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.40.lri  RFCI 40 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.41  RFCI 41
        Unsigned 8-bit integer
    iuup.rfci.41.flow.0  RFCI 41 Flow 0
        Byte array
    iuup.rfci.41.flow.0.len  RFCI 41 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.41.flow.1  RFCI 41 Flow 1
        Byte array
    iuup.rfci.41.flow.1.len  RFCI 41 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.41.flow.2  RFCI 41 Flow 2
        Byte array
    iuup.rfci.41.flow.2.len  RFCI 41 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.41.flow.3  RFCI 41 Flow 3
        Byte array
    iuup.rfci.41.flow.3.len  RFCI 41 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.41.flow.4  RFCI 41 Flow 4
        Byte array
    iuup.rfci.41.flow.4.len  RFCI 41 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.41.flow.5  RFCI 41 Flow 5
        Byte array
    iuup.rfci.41.flow.5.len  RFCI 41 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.41.flow.6  RFCI 41 Flow 6
        Byte array
    iuup.rfci.41.flow.6.len  RFCI 41 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.41.flow.7  RFCI 41 Flow 7
        Byte array
    iuup.rfci.41.flow.7.len  RFCI 41 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.41.ipti  RFCI 41 IPTI
        Unsigned 8-bit integer
    iuup.rfci.41.li  RFCI 41 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.41.lri  RFCI 41 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.42  RFCI 42
        Unsigned 8-bit integer
    iuup.rfci.42.flow.0  RFCI 42 Flow 0
        Byte array
    iuup.rfci.42.flow.0.len  RFCI 42 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.42.flow.1  RFCI 42 Flow 1
        Byte array
    iuup.rfci.42.flow.1.len  RFCI 42 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.42.flow.2  RFCI 42 Flow 2
        Byte array
    iuup.rfci.42.flow.2.len  RFCI 42 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.42.flow.3  RFCI 42 Flow 3
        Byte array
    iuup.rfci.42.flow.3.len  RFCI 42 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.42.flow.4  RFCI 42 Flow 4
        Byte array
    iuup.rfci.42.flow.4.len  RFCI 42 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.42.flow.5  RFCI 42 Flow 5
        Byte array
    iuup.rfci.42.flow.5.len  RFCI 42 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.42.flow.6  RFCI 42 Flow 6
        Byte array
    iuup.rfci.42.flow.6.len  RFCI 42 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.42.flow.7  RFCI 42 Flow 7
        Byte array
    iuup.rfci.42.flow.7.len  RFCI 42 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.42.ipti  RFCI 42 IPTI
        Unsigned 8-bit integer
    iuup.rfci.42.li  RFCI 42 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.42.lri  RFCI 42 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.43  RFCI 43
        Unsigned 8-bit integer
    iuup.rfci.43.flow.0  RFCI 43 Flow 0
        Byte array
    iuup.rfci.43.flow.0.len  RFCI 43 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.43.flow.1  RFCI 43 Flow 1
        Byte array
    iuup.rfci.43.flow.1.len  RFCI 43 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.43.flow.2  RFCI 43 Flow 2
        Byte array
    iuup.rfci.43.flow.2.len  RFCI 43 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.43.flow.3  RFCI 43 Flow 3
        Byte array
    iuup.rfci.43.flow.3.len  RFCI 43 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.43.flow.4  RFCI 43 Flow 4
        Byte array
    iuup.rfci.43.flow.4.len  RFCI 43 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.43.flow.5  RFCI 43 Flow 5
        Byte array
    iuup.rfci.43.flow.5.len  RFCI 43 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.43.flow.6  RFCI 43 Flow 6
        Byte array
    iuup.rfci.43.flow.6.len  RFCI 43 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.43.flow.7  RFCI 43 Flow 7
        Byte array
    iuup.rfci.43.flow.7.len  RFCI 43 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.43.ipti  RFCI 43 IPTI
        Unsigned 8-bit integer
    iuup.rfci.43.li  RFCI 43 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.43.lri  RFCI 43 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.44  RFCI 44
        Unsigned 8-bit integer
    iuup.rfci.44.flow.0  RFCI 44 Flow 0
        Byte array
    iuup.rfci.44.flow.0.len  RFCI 44 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.44.flow.1  RFCI 44 Flow 1
        Byte array
    iuup.rfci.44.flow.1.len  RFCI 44 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.44.flow.2  RFCI 44 Flow 2
        Byte array
    iuup.rfci.44.flow.2.len  RFCI 44 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.44.flow.3  RFCI 44 Flow 3
        Byte array
    iuup.rfci.44.flow.3.len  RFCI 44 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.44.flow.4  RFCI 44 Flow 4
        Byte array
    iuup.rfci.44.flow.4.len  RFCI 44 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.44.flow.5  RFCI 44 Flow 5
        Byte array
    iuup.rfci.44.flow.5.len  RFCI 44 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.44.flow.6  RFCI 44 Flow 6
        Byte array
    iuup.rfci.44.flow.6.len  RFCI 44 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.44.flow.7  RFCI 44 Flow 7
        Byte array
    iuup.rfci.44.flow.7.len  RFCI 44 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.44.ipti  RFCI 44 IPTI
        Unsigned 8-bit integer
    iuup.rfci.44.li  RFCI 44 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.44.lri  RFCI 44 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.45  RFCI 45
        Unsigned 8-bit integer
    iuup.rfci.45.flow.0  RFCI 45 Flow 0
        Byte array
    iuup.rfci.45.flow.0.len  RFCI 45 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.45.flow.1  RFCI 45 Flow 1
        Byte array
    iuup.rfci.45.flow.1.len  RFCI 45 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.45.flow.2  RFCI 45 Flow 2
        Byte array
    iuup.rfci.45.flow.2.len  RFCI 45 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.45.flow.3  RFCI 45 Flow 3
        Byte array
    iuup.rfci.45.flow.3.len  RFCI 45 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.45.flow.4  RFCI 45 Flow 4
        Byte array
    iuup.rfci.45.flow.4.len  RFCI 45 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.45.flow.5  RFCI 45 Flow 5
        Byte array
    iuup.rfci.45.flow.5.len  RFCI 45 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.45.flow.6  RFCI 45 Flow 6
        Byte array
    iuup.rfci.45.flow.6.len  RFCI 45 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.45.flow.7  RFCI 45 Flow 7
        Byte array
    iuup.rfci.45.flow.7.len  RFCI 45 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.45.ipti  RFCI 45 IPTI
        Unsigned 8-bit integer
    iuup.rfci.45.li  RFCI 45 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.45.lri  RFCI 45 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.46  RFCI 46
        Unsigned 8-bit integer
    iuup.rfci.46.flow.0  RFCI 46 Flow 0
        Byte array
    iuup.rfci.46.flow.0.len  RFCI 46 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.46.flow.1  RFCI 46 Flow 1
        Byte array
    iuup.rfci.46.flow.1.len  RFCI 46 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.46.flow.2  RFCI 46 Flow 2
        Byte array
    iuup.rfci.46.flow.2.len  RFCI 46 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.46.flow.3  RFCI 46 Flow 3
        Byte array
    iuup.rfci.46.flow.3.len  RFCI 46 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.46.flow.4  RFCI 46 Flow 4
        Byte array
    iuup.rfci.46.flow.4.len  RFCI 46 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.46.flow.5  RFCI 46 Flow 5
        Byte array
    iuup.rfci.46.flow.5.len  RFCI 46 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.46.flow.6  RFCI 46 Flow 6
        Byte array
    iuup.rfci.46.flow.6.len  RFCI 46 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.46.flow.7  RFCI 46 Flow 7
        Byte array
    iuup.rfci.46.flow.7.len  RFCI 46 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.46.ipti  RFCI 46 IPTI
        Unsigned 8-bit integer
    iuup.rfci.46.li  RFCI 46 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.46.lri  RFCI 46 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.47  RFCI 47
        Unsigned 8-bit integer
    iuup.rfci.47.flow.0  RFCI 47 Flow 0
        Byte array
    iuup.rfci.47.flow.0.len  RFCI 47 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.47.flow.1  RFCI 47 Flow 1
        Byte array
    iuup.rfci.47.flow.1.len  RFCI 47 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.47.flow.2  RFCI 47 Flow 2
        Byte array
    iuup.rfci.47.flow.2.len  RFCI 47 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.47.flow.3  RFCI 47 Flow 3
        Byte array
    iuup.rfci.47.flow.3.len  RFCI 47 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.47.flow.4  RFCI 47 Flow 4
        Byte array
    iuup.rfci.47.flow.4.len  RFCI 47 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.47.flow.5  RFCI 47 Flow 5
        Byte array
    iuup.rfci.47.flow.5.len  RFCI 47 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.47.flow.6  RFCI 47 Flow 6
        Byte array
    iuup.rfci.47.flow.6.len  RFCI 47 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.47.flow.7  RFCI 47 Flow 7
        Byte array
    iuup.rfci.47.flow.7.len  RFCI 47 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.47.ipti  RFCI 47 IPTI
        Unsigned 8-bit integer
    iuup.rfci.47.li  RFCI 47 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.47.lri  RFCI 47 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.48  RFCI 48
        Unsigned 8-bit integer
    iuup.rfci.48.flow.0  RFCI 48 Flow 0
        Byte array
    iuup.rfci.48.flow.0.len  RFCI 48 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.48.flow.1  RFCI 48 Flow 1
        Byte array
    iuup.rfci.48.flow.1.len  RFCI 48 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.48.flow.2  RFCI 48 Flow 2
        Byte array
    iuup.rfci.48.flow.2.len  RFCI 48 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.48.flow.3  RFCI 48 Flow 3
        Byte array
    iuup.rfci.48.flow.3.len  RFCI 48 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.48.flow.4  RFCI 48 Flow 4
        Byte array
    iuup.rfci.48.flow.4.len  RFCI 48 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.48.flow.5  RFCI 48 Flow 5
        Byte array
    iuup.rfci.48.flow.5.len  RFCI 48 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.48.flow.6  RFCI 48 Flow 6
        Byte array
    iuup.rfci.48.flow.6.len  RFCI 48 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.48.flow.7  RFCI 48 Flow 7
        Byte array
    iuup.rfci.48.flow.7.len  RFCI 48 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.48.ipti  RFCI 48 IPTI
        Unsigned 8-bit integer
    iuup.rfci.48.li  RFCI 48 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.48.lri  RFCI 48 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.49  RFCI 49
        Unsigned 8-bit integer
    iuup.rfci.49.flow.0  RFCI 49 Flow 0
        Byte array
    iuup.rfci.49.flow.0.len  RFCI 49 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.49.flow.1  RFCI 49 Flow 1
        Byte array
    iuup.rfci.49.flow.1.len  RFCI 49 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.49.flow.2  RFCI 49 Flow 2
        Byte array
    iuup.rfci.49.flow.2.len  RFCI 49 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.49.flow.3  RFCI 49 Flow 3
        Byte array
    iuup.rfci.49.flow.3.len  RFCI 49 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.49.flow.4  RFCI 49 Flow 4
        Byte array
    iuup.rfci.49.flow.4.len  RFCI 49 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.49.flow.5  RFCI 49 Flow 5
        Byte array
    iuup.rfci.49.flow.5.len  RFCI 49 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.49.flow.6  RFCI 49 Flow 6
        Byte array
    iuup.rfci.49.flow.6.len  RFCI 49 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.49.flow.7  RFCI 49 Flow 7
        Byte array
    iuup.rfci.49.flow.7.len  RFCI 49 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.49.ipti  RFCI 49 IPTI
        Unsigned 8-bit integer
    iuup.rfci.49.li  RFCI 49 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.49.lri  RFCI 49 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.5  RFCI 5
        Unsigned 8-bit integer
    iuup.rfci.5.flow.0  RFCI 5 Flow 0
        Byte array
    iuup.rfci.5.flow.0.len  RFCI 5 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.5.flow.1  RFCI 5 Flow 1
        Byte array
    iuup.rfci.5.flow.1.len  RFCI 5 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.5.flow.2  RFCI 5 Flow 2
        Byte array
    iuup.rfci.5.flow.2.len  RFCI 5 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.5.flow.3  RFCI 5 Flow 3
        Byte array
    iuup.rfci.5.flow.3.len  RFCI 5 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.5.flow.4  RFCI 5 Flow 4
        Byte array
    iuup.rfci.5.flow.4.len  RFCI 5 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.5.flow.5  RFCI 5 Flow 5
        Byte array
    iuup.rfci.5.flow.5.len  RFCI 5 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.5.flow.6  RFCI 5 Flow 6
        Byte array
    iuup.rfci.5.flow.6.len  RFCI 5 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.5.flow.7  RFCI 5 Flow 7
        Byte array
    iuup.rfci.5.flow.7.len  RFCI 5 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.5.ipti  RFCI 5 IPTI
        Unsigned 8-bit integer
    iuup.rfci.5.li  RFCI 5 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.5.lri  RFCI 5 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.50  RFCI 50
        Unsigned 8-bit integer
    iuup.rfci.50.flow.0  RFCI 50 Flow 0
        Byte array
    iuup.rfci.50.flow.0.len  RFCI 50 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.50.flow.1  RFCI 50 Flow 1
        Byte array
    iuup.rfci.50.flow.1.len  RFCI 50 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.50.flow.2  RFCI 50 Flow 2
        Byte array
    iuup.rfci.50.flow.2.len  RFCI 50 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.50.flow.3  RFCI 50 Flow 3
        Byte array
    iuup.rfci.50.flow.3.len  RFCI 50 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.50.flow.4  RFCI 50 Flow 4
        Byte array
    iuup.rfci.50.flow.4.len  RFCI 50 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.50.flow.5  RFCI 50 Flow 5
        Byte array
    iuup.rfci.50.flow.5.len  RFCI 50 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.50.flow.6  RFCI 50 Flow 6
        Byte array
    iuup.rfci.50.flow.6.len  RFCI 50 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.50.flow.7  RFCI 50 Flow 7
        Byte array
    iuup.rfci.50.flow.7.len  RFCI 50 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.50.ipti  RFCI 50 IPTI
        Unsigned 8-bit integer
    iuup.rfci.50.li  RFCI 50 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.50.lri  RFCI 50 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.51  RFCI 51
        Unsigned 8-bit integer
    iuup.rfci.51.flow.0  RFCI 51 Flow 0
        Byte array
    iuup.rfci.51.flow.0.len  RFCI 51 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.51.flow.1  RFCI 51 Flow 1
        Byte array
    iuup.rfci.51.flow.1.len  RFCI 51 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.51.flow.2  RFCI 51 Flow 2
        Byte array
    iuup.rfci.51.flow.2.len  RFCI 51 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.51.flow.3  RFCI 51 Flow 3
        Byte array
    iuup.rfci.51.flow.3.len  RFCI 51 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.51.flow.4  RFCI 51 Flow 4
        Byte array
    iuup.rfci.51.flow.4.len  RFCI 51 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.51.flow.5  RFCI 51 Flow 5
        Byte array
    iuup.rfci.51.flow.5.len  RFCI 51 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.51.flow.6  RFCI 51 Flow 6
        Byte array
    iuup.rfci.51.flow.6.len  RFCI 51 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.51.flow.7  RFCI 51 Flow 7
        Byte array
    iuup.rfci.51.flow.7.len  RFCI 51 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.51.ipti  RFCI 51 IPTI
        Unsigned 8-bit integer
    iuup.rfci.51.li  RFCI 51 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.51.lri  RFCI 51 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.52  RFCI 52
        Unsigned 8-bit integer
    iuup.rfci.52.flow.0  RFCI 52 Flow 0
        Byte array
    iuup.rfci.52.flow.0.len  RFCI 52 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.52.flow.1  RFCI 52 Flow 1
        Byte array
    iuup.rfci.52.flow.1.len  RFCI 52 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.52.flow.2  RFCI 52 Flow 2
        Byte array
    iuup.rfci.52.flow.2.len  RFCI 52 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.52.flow.3  RFCI 52 Flow 3
        Byte array
    iuup.rfci.52.flow.3.len  RFCI 52 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.52.flow.4  RFCI 52 Flow 4
        Byte array
    iuup.rfci.52.flow.4.len  RFCI 52 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.52.flow.5  RFCI 52 Flow 5
        Byte array
    iuup.rfci.52.flow.5.len  RFCI 52 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.52.flow.6  RFCI 52 Flow 6
        Byte array
    iuup.rfci.52.flow.6.len  RFCI 52 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.52.flow.7  RFCI 52 Flow 7
        Byte array
    iuup.rfci.52.flow.7.len  RFCI 52 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.52.ipti  RFCI 52 IPTI
        Unsigned 8-bit integer
    iuup.rfci.52.li  RFCI 52 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.52.lri  RFCI 52 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.53  RFCI 53
        Unsigned 8-bit integer
    iuup.rfci.53.flow.0  RFCI 53 Flow 0
        Byte array
    iuup.rfci.53.flow.0.len  RFCI 53 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.53.flow.1  RFCI 53 Flow 1
        Byte array
    iuup.rfci.53.flow.1.len  RFCI 53 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.53.flow.2  RFCI 53 Flow 2
        Byte array
    iuup.rfci.53.flow.2.len  RFCI 53 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.53.flow.3  RFCI 53 Flow 3
        Byte array
    iuup.rfci.53.flow.3.len  RFCI 53 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.53.flow.4  RFCI 53 Flow 4
        Byte array
    iuup.rfci.53.flow.4.len  RFCI 53 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.53.flow.5  RFCI 53 Flow 5
        Byte array
    iuup.rfci.53.flow.5.len  RFCI 53 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.53.flow.6  RFCI 53 Flow 6
        Byte array
    iuup.rfci.53.flow.6.len  RFCI 53 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.53.flow.7  RFCI 53 Flow 7
        Byte array
    iuup.rfci.53.flow.7.len  RFCI 53 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.53.ipti  RFCI 53 IPTI
        Unsigned 8-bit integer
    iuup.rfci.53.li  RFCI 53 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.53.lri  RFCI 53 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.54  RFCI 54
        Unsigned 8-bit integer
    iuup.rfci.54.flow.0  RFCI 54 Flow 0
        Byte array
    iuup.rfci.54.flow.0.len  RFCI 54 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.54.flow.1  RFCI 54 Flow 1
        Byte array
    iuup.rfci.54.flow.1.len  RFCI 54 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.54.flow.2  RFCI 54 Flow 2
        Byte array
    iuup.rfci.54.flow.2.len  RFCI 54 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.54.flow.3  RFCI 54 Flow 3
        Byte array
    iuup.rfci.54.flow.3.len  RFCI 54 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.54.flow.4  RFCI 54 Flow 4
        Byte array
    iuup.rfci.54.flow.4.len  RFCI 54 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.54.flow.5  RFCI 54 Flow 5
        Byte array
    iuup.rfci.54.flow.5.len  RFCI 54 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.54.flow.6  RFCI 54 Flow 6
        Byte array
    iuup.rfci.54.flow.6.len  RFCI 54 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.54.flow.7  RFCI 54 Flow 7
        Byte array
    iuup.rfci.54.flow.7.len  RFCI 54 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.54.ipti  RFCI 54 IPTI
        Unsigned 8-bit integer
    iuup.rfci.54.li  RFCI 54 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.54.lri  RFCI 54 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.55  RFCI 55
        Unsigned 8-bit integer
    iuup.rfci.55.flow.0  RFCI 55 Flow 0
        Byte array
    iuup.rfci.55.flow.0.len  RFCI 55 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.55.flow.1  RFCI 55 Flow 1
        Byte array
    iuup.rfci.55.flow.1.len  RFCI 55 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.55.flow.2  RFCI 55 Flow 2
        Byte array
    iuup.rfci.55.flow.2.len  RFCI 55 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.55.flow.3  RFCI 55 Flow 3
        Byte array
    iuup.rfci.55.flow.3.len  RFCI 55 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.55.flow.4  RFCI 55 Flow 4
        Byte array
    iuup.rfci.55.flow.4.len  RFCI 55 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.55.flow.5  RFCI 55 Flow 5
        Byte array
    iuup.rfci.55.flow.5.len  RFCI 55 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.55.flow.6  RFCI 55 Flow 6
        Byte array
    iuup.rfci.55.flow.6.len  RFCI 55 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.55.flow.7  RFCI 55 Flow 7
        Byte array
    iuup.rfci.55.flow.7.len  RFCI 55 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.55.ipti  RFCI 55 IPTI
        Unsigned 8-bit integer
    iuup.rfci.55.li  RFCI 55 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.55.lri  RFCI 55 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.56  RFCI 56
        Unsigned 8-bit integer
    iuup.rfci.56.flow.0  RFCI 56 Flow 0
        Byte array
    iuup.rfci.56.flow.0.len  RFCI 56 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.56.flow.1  RFCI 56 Flow 1
        Byte array
    iuup.rfci.56.flow.1.len  RFCI 56 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.56.flow.2  RFCI 56 Flow 2
        Byte array
    iuup.rfci.56.flow.2.len  RFCI 56 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.56.flow.3  RFCI 56 Flow 3
        Byte array
    iuup.rfci.56.flow.3.len  RFCI 56 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.56.flow.4  RFCI 56 Flow 4
        Byte array
    iuup.rfci.56.flow.4.len  RFCI 56 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.56.flow.5  RFCI 56 Flow 5
        Byte array
    iuup.rfci.56.flow.5.len  RFCI 56 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.56.flow.6  RFCI 56 Flow 6
        Byte array
    iuup.rfci.56.flow.6.len  RFCI 56 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.56.flow.7  RFCI 56 Flow 7
        Byte array
    iuup.rfci.56.flow.7.len  RFCI 56 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.56.ipti  RFCI 56 IPTI
        Unsigned 8-bit integer
    iuup.rfci.56.li  RFCI 56 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.56.lri  RFCI 56 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.57  RFCI 57
        Unsigned 8-bit integer
    iuup.rfci.57.flow.0  RFCI 57 Flow 0
        Byte array
    iuup.rfci.57.flow.0.len  RFCI 57 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.57.flow.1  RFCI 57 Flow 1
        Byte array
    iuup.rfci.57.flow.1.len  RFCI 57 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.57.flow.2  RFCI 57 Flow 2
        Byte array
    iuup.rfci.57.flow.2.len  RFCI 57 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.57.flow.3  RFCI 57 Flow 3
        Byte array
    iuup.rfci.57.flow.3.len  RFCI 57 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.57.flow.4  RFCI 57 Flow 4
        Byte array
    iuup.rfci.57.flow.4.len  RFCI 57 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.57.flow.5  RFCI 57 Flow 5
        Byte array
    iuup.rfci.57.flow.5.len  RFCI 57 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.57.flow.6  RFCI 57 Flow 6
        Byte array
    iuup.rfci.57.flow.6.len  RFCI 57 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.57.flow.7  RFCI 57 Flow 7
        Byte array
    iuup.rfci.57.flow.7.len  RFCI 57 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.57.ipti  RFCI 57 IPTI
        Unsigned 8-bit integer
    iuup.rfci.57.li  RFCI 57 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.57.lri  RFCI 57 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.58  RFCI 58
        Unsigned 8-bit integer
    iuup.rfci.58.flow.0  RFCI 58 Flow 0
        Byte array
    iuup.rfci.58.flow.0.len  RFCI 58 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.58.flow.1  RFCI 58 Flow 1
        Byte array
    iuup.rfci.58.flow.1.len  RFCI 58 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.58.flow.2  RFCI 58 Flow 2
        Byte array
    iuup.rfci.58.flow.2.len  RFCI 58 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.58.flow.3  RFCI 58 Flow 3
        Byte array
    iuup.rfci.58.flow.3.len  RFCI 58 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.58.flow.4  RFCI 58 Flow 4
        Byte array
    iuup.rfci.58.flow.4.len  RFCI 58 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.58.flow.5  RFCI 58 Flow 5
        Byte array
    iuup.rfci.58.flow.5.len  RFCI 58 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.58.flow.6  RFCI 58 Flow 6
        Byte array
    iuup.rfci.58.flow.6.len  RFCI 58 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.58.flow.7  RFCI 58 Flow 7
        Byte array
    iuup.rfci.58.flow.7.len  RFCI 58 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.58.ipti  RFCI 58 IPTI
        Unsigned 8-bit integer
    iuup.rfci.58.li  RFCI 58 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.58.lri  RFCI 58 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.59  RFCI 59
        Unsigned 8-bit integer
    iuup.rfci.59.flow.0  RFCI 59 Flow 0
        Byte array
    iuup.rfci.59.flow.0.len  RFCI 59 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.59.flow.1  RFCI 59 Flow 1
        Byte array
    iuup.rfci.59.flow.1.len  RFCI 59 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.59.flow.2  RFCI 59 Flow 2
        Byte array
    iuup.rfci.59.flow.2.len  RFCI 59 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.59.flow.3  RFCI 59 Flow 3
        Byte array
    iuup.rfci.59.flow.3.len  RFCI 59 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.59.flow.4  RFCI 59 Flow 4
        Byte array
    iuup.rfci.59.flow.4.len  RFCI 59 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.59.flow.5  RFCI 59 Flow 5
        Byte array
    iuup.rfci.59.flow.5.len  RFCI 59 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.59.flow.6  RFCI 59 Flow 6
        Byte array
    iuup.rfci.59.flow.6.len  RFCI 59 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.59.flow.7  RFCI 59 Flow 7
        Byte array
    iuup.rfci.59.flow.7.len  RFCI 59 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.59.ipti  RFCI 59 IPTI
        Unsigned 8-bit integer
    iuup.rfci.59.li  RFCI 59 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.59.lri  RFCI 59 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.6  RFCI 6
        Unsigned 8-bit integer
    iuup.rfci.6.flow.0  RFCI 6 Flow 0
        Byte array
    iuup.rfci.6.flow.0.len  RFCI 6 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.6.flow.1  RFCI 6 Flow 1
        Byte array
    iuup.rfci.6.flow.1.len  RFCI 6 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.6.flow.2  RFCI 6 Flow 2
        Byte array
    iuup.rfci.6.flow.2.len  RFCI 6 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.6.flow.3  RFCI 6 Flow 3
        Byte array
    iuup.rfci.6.flow.3.len  RFCI 6 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.6.flow.4  RFCI 6 Flow 4
        Byte array
    iuup.rfci.6.flow.4.len  RFCI 6 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.6.flow.5  RFCI 6 Flow 5
        Byte array
    iuup.rfci.6.flow.5.len  RFCI 6 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.6.flow.6  RFCI 6 Flow 6
        Byte array
    iuup.rfci.6.flow.6.len  RFCI 6 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.6.flow.7  RFCI 6 Flow 7
        Byte array
    iuup.rfci.6.flow.7.len  RFCI 6 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.6.ipti  RFCI 6 IPTI
        Unsigned 8-bit integer
    iuup.rfci.6.li  RFCI 6 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.6.lri  RFCI 6 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.60  RFCI 60
        Unsigned 8-bit integer
    iuup.rfci.60.flow.0  RFCI 60 Flow 0
        Byte array
    iuup.rfci.60.flow.0.len  RFCI 60 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.60.flow.1  RFCI 60 Flow 1
        Byte array
    iuup.rfci.60.flow.1.len  RFCI 60 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.60.flow.2  RFCI 60 Flow 2
        Byte array
    iuup.rfci.60.flow.2.len  RFCI 60 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.60.flow.3  RFCI 60 Flow 3
        Byte array
    iuup.rfci.60.flow.3.len  RFCI 60 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.60.flow.4  RFCI 60 Flow 4
        Byte array
    iuup.rfci.60.flow.4.len  RFCI 60 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.60.flow.5  RFCI 60 Flow 5
        Byte array
    iuup.rfci.60.flow.5.len  RFCI 60 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.60.flow.6  RFCI 60 Flow 6
        Byte array
    iuup.rfci.60.flow.6.len  RFCI 60 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.60.flow.7  RFCI 60 Flow 7
        Byte array
    iuup.rfci.60.flow.7.len  RFCI 60 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.60.ipti  RFCI 60 IPTI
        Unsigned 8-bit integer
    iuup.rfci.60.li  RFCI 60 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.60.lri  RFCI 60 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.61  RFCI 61
        Unsigned 8-bit integer
    iuup.rfci.61.flow.0  RFCI 61 Flow 0
        Byte array
    iuup.rfci.61.flow.0.len  RFCI 61 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.61.flow.1  RFCI 61 Flow 1
        Byte array
    iuup.rfci.61.flow.1.len  RFCI 61 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.61.flow.2  RFCI 61 Flow 2
        Byte array
    iuup.rfci.61.flow.2.len  RFCI 61 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.61.flow.3  RFCI 61 Flow 3
        Byte array
    iuup.rfci.61.flow.3.len  RFCI 61 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.61.flow.4  RFCI 61 Flow 4
        Byte array
    iuup.rfci.61.flow.4.len  RFCI 61 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.61.flow.5  RFCI 61 Flow 5
        Byte array
    iuup.rfci.61.flow.5.len  RFCI 61 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.61.flow.6  RFCI 61 Flow 6
        Byte array
    iuup.rfci.61.flow.6.len  RFCI 61 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.61.flow.7  RFCI 61 Flow 7
        Byte array
    iuup.rfci.61.flow.7.len  RFCI 61 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.61.ipti  RFCI 61 IPTI
        Unsigned 8-bit integer
    iuup.rfci.61.li  RFCI 61 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.61.lri  RFCI 61 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.62  RFCI 62
        Unsigned 8-bit integer
    iuup.rfci.62.flow.0  RFCI 62 Flow 0
        Byte array
    iuup.rfci.62.flow.0.len  RFCI 62 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.62.flow.1  RFCI 62 Flow 1
        Byte array
    iuup.rfci.62.flow.1.len  RFCI 62 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.62.flow.2  RFCI 62 Flow 2
        Byte array
    iuup.rfci.62.flow.2.len  RFCI 62 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.62.flow.3  RFCI 62 Flow 3
        Byte array
    iuup.rfci.62.flow.3.len  RFCI 62 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.62.flow.4  RFCI 62 Flow 4
        Byte array
    iuup.rfci.62.flow.4.len  RFCI 62 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.62.flow.5  RFCI 62 Flow 5
        Byte array
    iuup.rfci.62.flow.5.len  RFCI 62 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.62.flow.6  RFCI 62 Flow 6
        Byte array
    iuup.rfci.62.flow.6.len  RFCI 62 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.62.flow.7  RFCI 62 Flow 7
        Byte array
    iuup.rfci.62.flow.7.len  RFCI 62 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.62.ipti  RFCI 62 IPTI
        Unsigned 8-bit integer
    iuup.rfci.62.li  RFCI 62 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.62.lri  RFCI 62 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.63  RFCI 63
        Unsigned 8-bit integer
    iuup.rfci.63.flow.0  RFCI 63 Flow 0
        Byte array
    iuup.rfci.63.flow.0.len  RFCI 63 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.63.flow.1  RFCI 63 Flow 1
        Byte array
    iuup.rfci.63.flow.1.len  RFCI 63 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.63.flow.2  RFCI 63 Flow 2
        Byte array
    iuup.rfci.63.flow.2.len  RFCI 63 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.63.flow.3  RFCI 63 Flow 3
        Byte array
    iuup.rfci.63.flow.3.len  RFCI 63 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.63.flow.4  RFCI 63 Flow 4
        Byte array
    iuup.rfci.63.flow.4.len  RFCI 63 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.63.flow.5  RFCI 63 Flow 5
        Byte array
    iuup.rfci.63.flow.5.len  RFCI 63 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.63.flow.6  RFCI 63 Flow 6
        Byte array
    iuup.rfci.63.flow.6.len  RFCI 63 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.63.flow.7  RFCI 63 Flow 7
        Byte array
    iuup.rfci.63.flow.7.len  RFCI 63 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.63.ipti  RFCI 63 IPTI
        Unsigned 8-bit integer
    iuup.rfci.63.li  RFCI 63 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.63.lri  RFCI 63 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.7  RFCI 7
        Unsigned 8-bit integer
    iuup.rfci.7.flow.0  RFCI 7 Flow 0
        Byte array
    iuup.rfci.7.flow.0.len  RFCI 7 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.7.flow.1  RFCI 7 Flow 1
        Byte array
    iuup.rfci.7.flow.1.len  RFCI 7 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.7.flow.2  RFCI 7 Flow 2
        Byte array
    iuup.rfci.7.flow.2.len  RFCI 7 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.7.flow.3  RFCI 7 Flow 3
        Byte array
    iuup.rfci.7.flow.3.len  RFCI 7 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.7.flow.4  RFCI 7 Flow 4
        Byte array
    iuup.rfci.7.flow.4.len  RFCI 7 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.7.flow.5  RFCI 7 Flow 5
        Byte array
    iuup.rfci.7.flow.5.len  RFCI 7 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.7.flow.6  RFCI 7 Flow 6
        Byte array
    iuup.rfci.7.flow.6.len  RFCI 7 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.7.flow.7  RFCI 7 Flow 7
        Byte array
    iuup.rfci.7.flow.7.len  RFCI 7 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.7.ipti  RFCI 7 IPTI
        Unsigned 8-bit integer
    iuup.rfci.7.li  RFCI 7 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.7.lri  RFCI 7 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.8  RFCI 8
        Unsigned 8-bit integer
    iuup.rfci.8.flow.0  RFCI 8 Flow 0
        Byte array
    iuup.rfci.8.flow.0.len  RFCI 8 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.8.flow.1  RFCI 8 Flow 1
        Byte array
    iuup.rfci.8.flow.1.len  RFCI 8 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.8.flow.2  RFCI 8 Flow 2
        Byte array
    iuup.rfci.8.flow.2.len  RFCI 8 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.8.flow.3  RFCI 8 Flow 3
        Byte array
    iuup.rfci.8.flow.3.len  RFCI 8 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.8.flow.4  RFCI 8 Flow 4
        Byte array
    iuup.rfci.8.flow.4.len  RFCI 8 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.8.flow.5  RFCI 8 Flow 5
        Byte array
    iuup.rfci.8.flow.5.len  RFCI 8 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.8.flow.6  RFCI 8 Flow 6
        Byte array
    iuup.rfci.8.flow.6.len  RFCI 8 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.8.flow.7  RFCI 8 Flow 7
        Byte array
    iuup.rfci.8.flow.7.len  RFCI 8 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.8.ipti  RFCI 8 IPTI
        Unsigned 8-bit integer
    iuup.rfci.8.li  RFCI 8 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.8.lri  RFCI 8 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.9  RFCI 9
        Unsigned 8-bit integer
    iuup.rfci.9.flow.0  RFCI 9 Flow 0
        Byte array
    iuup.rfci.9.flow.0.len  RFCI 9 Flow 0 Len
        Unsigned 16-bit integer
    iuup.rfci.9.flow.1  RFCI 9 Flow 1
        Byte array
    iuup.rfci.9.flow.1.len  RFCI 9 Flow 1 Len
        Unsigned 16-bit integer
    iuup.rfci.9.flow.2  RFCI 9 Flow 2
        Byte array
    iuup.rfci.9.flow.2.len  RFCI 9 Flow 2 Len
        Unsigned 16-bit integer
    iuup.rfci.9.flow.3  RFCI 9 Flow 3
        Byte array
    iuup.rfci.9.flow.3.len  RFCI 9 Flow 3 Len
        Unsigned 16-bit integer
    iuup.rfci.9.flow.4  RFCI 9 Flow 4
        Byte array
    iuup.rfci.9.flow.4.len  RFCI 9 Flow 4 Len
        Unsigned 16-bit integer
    iuup.rfci.9.flow.5  RFCI 9 Flow 5
        Byte array
    iuup.rfci.9.flow.5.len  RFCI 9 Flow 5 Len
        Unsigned 16-bit integer
    iuup.rfci.9.flow.6  RFCI 9 Flow 6
        Byte array
    iuup.rfci.9.flow.6.len  RFCI 9 Flow 6 Len
        Unsigned 16-bit integer
    iuup.rfci.9.flow.7  RFCI 9 Flow 7
        Byte array
    iuup.rfci.9.flow.7.len  RFCI 9 Flow 7 Len
        Unsigned 16-bit integer
    iuup.rfci.9.ipti  RFCI 9 IPTI
        Unsigned 8-bit integer
    iuup.rfci.9.li  RFCI 9 LI
        Unsigned 8-bit integer
        Length Indicator
    iuup.rfci.9.lri  RFCI 9 LRI
        Unsigned 8-bit integer
        Last Record Indicator
    iuup.rfci.init  RFCI Initialization
        Byte array
    iuup.spare  Spare
        Unsigned 8-bit integer
    iuup.spare_bytes  Spare
        Byte array
    iuup.subflows  Subflows
        Unsigned 8-bit integer
        Number of Subflows
    iuup.support_mode  Iu UP Mode Versions Supported
        Unsigned 16-bit integer
    iuup.support_mode.version1  Version  1
        Unsigned 16-bit integer
    iuup.support_mode.version10  Version 10
        Unsigned 16-bit integer
    iuup.support_mode.version11  Version 11
        Unsigned 16-bit integer
    iuup.support_mode.version12  Version 12
        Unsigned 16-bit integer
    iuup.support_mode.version13  Version 13
        Unsigned 16-bit integer
    iuup.support_mode.version14  Version 14
        Unsigned 16-bit integer
    iuup.support_mode.version15  Version 15
        Unsigned 16-bit integer
    iuup.support_mode.version16  Version 16
        Unsigned 16-bit integer
    iuup.support_mode.version2  Version  2
        Unsigned 16-bit integer
    iuup.support_mode.version3  Version  3
        Unsigned 16-bit integer
    iuup.support_mode.version4  Version  4
        Unsigned 16-bit integer
    iuup.support_mode.version5  Version  5
        Unsigned 16-bit integer
    iuup.support_mode.version6  Version  6
        Unsigned 16-bit integer
    iuup.support_mode.version7  Version  7
        Unsigned 16-bit integer
    iuup.support_mode.version8  Version  8
        Unsigned 16-bit integer
    iuup.support_mode.version9  Version  9
        Unsigned 16-bit integer
    iuup.ti  TI
        Unsigned 8-bit integer
        Timing Information
    iuup.time_align  Time Align
        Unsigned 8-bit integer

JPEG File Interchange Format (image-jfif)

    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
    image-jfif.identifier  Identifier
        NULL terminated 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
    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

JXTA Message (jxta.message)

JXTA P2P (jxta)

    jxta.framing  Framing
        No value
        JXTA Message Framing
    jxta.framing.header  Header
        No value
        JXTA Message Framing Header
    jxta.framing.header.name  Name
        Length string pair
        JXTA Message Framing Header Name
    jxta.framing.header.value  Value
        Byte array
        JXTA Message Framing Header Value
    jxta.framing.header.valuelen  Value Length
        Unsigned 16-bit integer
        JXTA Message Framing Header Value Length
    jxta.message.address  Address
        String
        JXTA Message Address (source or destination)
    jxta.message.destination  Destination
        String
        JXTA Message Destination
    jxta.message.element  JXTA Message Element
        No value
    jxta.message.element.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
        Length string pair
        JXTA Message Element Encoding
    jxta.message.element.encodingid  Encoding ID
        Unsigned 16-bit integer
        JXTA Message Element Encoding ID
    jxta.message.element.flags  Flags
        Unsigned 8-bit integer
        JXTA Message Element Flags
    jxta.message.element.flags.hasEncoding  hasEncoding
        Boolean
        JXTA Message Element Flag -- hasEncoding
    jxta.message.element.flags.hasSignature  hasSignature
        Boolean
        JXTA Message Element Flag -- hasSignature
    jxta.message.element.flags.hasType  hasType
        Boolean
        JXTA Message Element Flag -- hasType
    jxta.message.element.flags.nameLiteral  nameLiteral
        Boolean
        JXTA Message Element Flag -- nameLiteral
    jxta.message.element.flags.sigOfEncoded  sigOfEncoded
        Boolean
        JXTA Message Element Flag -- sigOfEncoded
    jxta.message.element.flags.uint64Lens  uint64Lens
        Boolean
        JXTA Message Element Flag -- uint64Lens
    jxta.message.element.mimeid  MIME ID
        Unsigned 16-bit integer
        JXTA Message Element MIME ID
    jxta.message.element.name  Element Name
        Length string pair
        JXTA Message Element Name
    jxta.message.element.nameid  Name ID
        Unsigned 16-bit integer
        JXTA Message Element Name ID
    jxta.message.element.namespaceid  Namespace ID
        Unsigned 8-bit integer
        JXTA Message Element Namespace ID
    jxta.message.element.signature  Signature
        String
        JXTA Message Element Signature
    jxta.message.element.type  Element Type
        Length string pair
        JXTA Message Element Name
    jxta.message.elements  Element Count
        Unsigned 16-bit integer
        JXTA Message Element Count
    jxta.message.flags  Flags
        Unsigned 8-bit integer
        JXTA Message Flags
    jxta.message.flags.UCS32BE  UCS32BE
        Boolean
        JXTA Message Flag -- UCS32-BE Strings
    jxta.message.flags.UTF-16BE  UTF16BE
        Boolean
        JXTA Message Element Flag -- UTF16-BE Strings
    jxta.message.names  Names Count
        Unsigned 16-bit integer
        JXTA Message Names Table
    jxta.message.names.name  Names Table Name
        Length string pair
        JXTA Message Names Table Name
    jxta.message.signature  Signature
        String
        JXTA Message Signature
    jxta.message.source  Source
        String
        JXTA Message Source
    jxta.message.version  Version
        Unsigned 8-bit integer
        JXTA Message Version
    jxta.udp  JXTA UDP
        No value
    jxta.udpsig  Signature
        String
        JXTA UDP Signature
    jxta.welcome  Welcome
        No value
        JXTA Connection Welcome Message
    jxta.welcome.destAddr  Destination Address
        String
        JXTA Connection Welcome Message Destination Address
    jxta.welcome.initiator  Initiator
        Boolean
        JXTA Connection Welcome Message Initiator
    jxta.welcome.msgVersion  Preferred Message Version
        String
        JXTA Connection Welcome Message Preferred Message Version
    jxta.welcome.noPropFlag  No Propagate Flag
        String
        JXTA Connection Welcome Message No Propagate Flag
    jxta.welcome.peerid  PeerID
        String
        JXTA Connection Welcome Message PeerID
    jxta.welcome.pubAddr  Public Address
        String
        JXTA Connection Welcome Message Public Address
    jxta.welcome.signature  Signature
        String
        JXTA Connection Welcome Message Signature
    jxta.welcome.variable  Variable Parameter
        String
        JXTA Connection Welcome Message Variable Parameter
    jxta.welcome.version  Version
        String
        JXTA Connection Welcome Message Version
    uri.addr  Address
        String
        URI Address (source or destination)
    uri.dst  Destination
        String
        URI Destination
    uri.src  Source
        String
        URI Source

Jabber XML Messaging (jabber)

    jabber.request  Request
        Boolean
        TRUE if Jabber request
    jabber.response  Response
        Boolean
        TRUE if Jabber response

Java RMI (rmi)

    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

Java Serialization (serialization)

Juniper (juniper)

    juniper.aspic.cookie  Cookie
        Unsigned 64-bit integer
    juniper.atm1.cookie  Cookie
        Unsigned 32-bit integer
    juniper.atm2.cookie  Cookie
        Unsigned 64-bit integer
    juniper.direction  Direction
        Unsigned 8-bit integer
    juniper.ext.ifd  Device Interface Index
        Unsigned 32-bit integer
    juniper.ext.ifl  Logical Interface Index
        Unsigned 32-bit integer
    juniper.ext.ifle  Logical Interface Encapsulation
        Unsigned 16-bit integer
    juniper.ext.ifmt  Device Media Type
        Unsigned 16-bit integer
    juniper.ext.ttp_ifle  TTP derived Logical Interface Encapsulation
        Unsigned 16-bit integer
    juniper.ext.ttp_ifmt  TTP derived Device Media Type
        Unsigned 16-bit integer
    juniper.ext.unit  Logical Unit Number
        Unsigned 32-bit integer
    juniper.ext_total_len  Extension(s) Total length
        Unsigned 16-bit integer
    juniper.l2hdr  L2 header presence
        Unsigned 8-bit integer
    juniper.lspic.cookie  Cookie
        Unsigned 32-bit integer
    juniper.magic-number  Magic Number
        Unsigned 24-bit integer
    juniper.mlpic.cookie  Cookie
        Unsigned 16-bit integer
    juniper.proto  Protocol
        Unsigned 16-bit integer
    juniper.vlan  VLan ID
        Unsigned 16-bit integer

Juniper Netscreen Redundant Protocol (nsrp)

    nsrp.authchecksum  Checksum
        Unsigned 16-bit integer
        NSRP AUTH CHECKSUM
    nsrp.authflag  AuthFlag
        Unsigned 8-bit integer
        NSRP Auth Flag
    nsrp.checksum  Checksum
        Unsigned 16-bit integer
        NSRP PACKET CHECKSUM
    nsrp.clustid  Clust ID
        Unsigned 8-bit integer
        NSRP CLUST ID
    nsrp.data  Data
        String
        PADDING
    nsrp.dst  Destination
        Unsigned 32-bit integer
        DESTINATION UNIT INFORMATION
    nsrp.dummy  Dummy
        Unsigned 8-bit integer
        NSRP Dummy
    nsrp.encflag  Enc Flag
        Unsigned 8-bit integer
        NSRP ENCRYPT FLAG
    nsrp.flag  Flag
        Unsigned 8-bit integer
        NSRP FLAG
    nsrp.haport  Port
        Unsigned 8-bit integer
        NSRP HA Port
    nsrp.hst  Hst group
        Unsigned 8-bit integer
        NSRP HST GROUP
    nsrp.ifnum  Ifnum
        Unsigned 16-bit integer
        NSRP IfNum
    nsrp.length  Length
        Unsigned 16-bit integer
        NSRP Length
    nsrp.msgflag  Msgflag
        Unsigned 8-bit integer
        NSRP MSG FLAG
    nsrp.msglen  Msg Length
        Unsigned 16-bit integer
        NSRP MESSAGE LENGTH
    nsrp.msgtype  MsgType
        Unsigned 8-bit integer
        Message Type
    nsrp.notused  Not used
        Unsigned 8-bit integer
        NOT USED
    nsrp.nr  Nr
        Unsigned 16-bit integer
    nsrp.ns  Ns
        Unsigned 16-bit integer
    nsrp.priority  Priority
        Unsigned 8-bit integer
        NSRP Priority
    nsrp.reserved  Reserved
        Unsigned 16-bit integer
        RESERVED
    nsrp.src  Source
        Unsigned 32-bit integer
        SOURCE UNIT INFORMATION
    nsrp.totalsize  Total Size
        Unsigned 32-bit integer
        NSRP MSG TOTAL MESSAGE
    nsrp.type  Type
        Unsigned 8-bit integer
        NSRP Message Type
    nsrp.version  Version
        Unsigned 8-bit integer
        NSRP Version
    nsrp.wst  Wst group
        Unsigned 8-bit integer
        NSRP WST GROUP

Juniper Packet Mirror (jmirror)

    jmirror.mid  Jmirror Identifier
        Unsigned 32-bit integer
        Unique identifier of the mirrored session
    jmirror.sid  Session Identifier
        Unsigned 32-bit integer
        Unique identifier of the user session

K12xx (k12)

    aal2.cid  AAL2 CID
        Unsigned 16-bit integer
    k12.ds0.ts  Timeslot mask
        Unsigned 32-bit integer
    k12.input_type  Port type
        Unsigned 32-bit integer
    k12.port_id  Port Id
        Unsigned 32-bit integer
    k12.port_name  Port Name
        String
    k12.stack_file  Stack file used
        String

Kerberized Internet Negotiation of Key (kink)

    kink.A  A
        Unsigned 8-bit integer
        the A of kink
    kink.checkSum  Checksum
        Byte array
        the checkSum of kink
    kink.checkSumLength  Checksum Length
        Unsigned 8-bit integer
        the check sum length of kink
    kink.length  Length
        Unsigned 16-bit integer
        the length of the kink length
    kink.nextPayload  Next Payload
        Unsigned 8-bit integer
        the next payload of kink
    kink.reserved  Reserved
        Unsigned 16-bit integer
        the reserved of kink
    kink.transactionId  Transaction ID
        Unsigned 32-bit integer
        the transactionID of kink
    kink.type  Type
        Unsigned 8-bit integer
        the type of the kink

Kerberos (kerberos)

    kerberos.Authenticator  Authenticator
        No value
        This is a decrypted Kerberos Authenticator sequence
    kerberos.AuthorizationData  AuthorizationData
        No value
        This is a Kerberos AuthorizationData sequence
    kerberos.Checksum  Checksum
        No value
        This is a Kerberos Checksum sequence
    kerberos.ENC_PRIV  enc PRIV
        Byte array
        Encrypted PRIV blob
    kerberos.EncAPRepPart  EncAPRepPart
        No value
        This is a decrypted Kerberos EncAPRepPart sequence
    kerberos.EncKDCRepPart  EncKDCRepPart
        No value
        This is a decrypted Kerberos EncKDCRepPart sequence
    kerberos.EncKrbCredPart  EncKrbCredPart
        No value
        This is a decrypted Kerberos EncKrbCredPart sequence
    kerberos.EncKrbCredPart.encrypted  enc EncKrbCredPart
        Byte array
        Encrypted EncKrbCredPart blob
    kerberos.EncKrbPrivPart  EncKrbPrivPart
        No value
        This is a decrypted Kerberos EncKrbPrivPart sequence
    kerberos.EncTicketPart  EncTicketPart
        No value
        This is a decrypted Kerberos EncTicketPart sequence
    kerberos.IF_RELEVANT.type  Type
        Unsigned 32-bit integer
        IF-RELEVANT Data Type
    kerberos.IF_RELEVANT.value  Data
        Byte array
        IF_RELEVANT Data
    kerberos.KrbCredInfo  KrbCredInfo
        No value
        This is a Kerberos KrbCredInfo
    kerberos.KrbCredInfos  Sequence of KrbCredInfo
        No value
        This is a list of KrbCredInfo
    kerberos.LastReq  LastReq
        No value
        This is a LastReq sequence
    kerberos.LastReqs  LastReqs
        No value
        This is a list of LastReq structures
    kerberos.PAC_CLIENT_INFO_TYPE  PAC_CLIENT_INFO_TYPE
        Byte array
        PAC_CLIENT_INFO_TYPE structure
    kerberos.PAC_CONSTRAINED_DELEGATION  PAC_CONSTRAINED_DELEGATION
        Byte array
        PAC_CONSTRAINED_DELEGATION structure
    kerberos.PAC_CREDENTIAL_TYPE  PAC_CREDENTIAL_TYPE
        Byte array
        PAC_CREDENTIAL_TYPE structure
    kerberos.PAC_LOGON_INFO  PAC_LOGON_INFO
        Byte array
        PAC_LOGON_INFO structure
    kerberos.PAC_PRIVSVR_CHECKSUM  PAC_PRIVSVR_CHECKSUM
        Byte array
        PAC_PRIVSVR_CHECKSUM structure
    kerberos.PAC_SERVER_CHECKSUM  PAC_SERVER_CHECKSUM
        Byte array
        PAC_SERVER_CHECKSUM structure
    kerberos.PAC_UPN_DNS_INFO  UPN_DNS_INFO
        Byte array
        UPN_DNS_INFO 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
    kerberos.addr_ipv6  IPv6 Address
        IPv6 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.reserved  reserved
        Boolean
    kerberos.apoptions.use_session_key  Use Session Key
        Boolean
    kerberos.aprep.data  enc-part
        Byte array
        The encrypted part of AP-REP
    kerberos.aprep.enc_part  enc-part
        No value
        The structure holding the encrypted part of AP-REP
    kerberos.authenticator  Authenticator
        No value
        Encrypted authenticator blob
    kerberos.authenticator.data  Authenticator data
        Byte array
        Data content of an encrypted authenticator
    kerberos.authenticator_vno  Authenticator vno
        Unsigned 32-bit integer
        Version Number for the Authenticator
    kerberos.authtime  Authtime
        String
        Time of initial authentication
    kerberos.checksum.checksum  checksum
        Byte array
        Kerberos Checksum
    kerberos.checksum.type  Type
        Unsigned 32-bit integer
        Type of checksum
    kerberos.cname  Client Name
        No value
        The name part of the client principal identifier
    kerberos.crealm  Client Realm
        String
        Name of the Clients Kerberos Realm
    kerberos.cred_body  CRED_BODY
        No value
        Kerberos CREDential BODY
    kerberos.ctime  ctime
        String
        Current Time on the client host
    kerberos.cusec  cusec
        Unsigned 32-bit integer
        micro second component of client time
    kerberos.e_checksum  e-checksum
        No value
        This is a Kerberos e-checksum
    kerberos.e_data  e-data
        No value
        The e-data blob
    kerberos.e_text  e-text
        String
        Additional (human readable) error description
    kerberos.enc_authorization_data.encrypted  enc-authorization-data
        Byte array
    kerberos.enc_priv  Encrypted PRIV
        No value
        Kerberos Encrypted PRIVate blob data
    kerberos.encrypted_cred  EncKrbCredPart
        No value
        Encrypted Cred blob
    kerberos.endtime  End time
        String
        The time after which the ticket has expired
    kerberos.error_code  error_code
        Unsigned 32-bit integer
        Kerberos error code
    kerberos.etype  Encryption type
        Signed 32-bit integer
        Encryption Type
    kerberos.etype_info.s2kparams  Salt
        Byte array
        S2kparams
    kerberos.etype_info.salt  Salt
        Byte array
    kerberos.etype_info2.salt  Salt
        Byte array
    kerberos.etypes  Encryption Types
        No value
        This is a list of Kerberos encryption types
    kerberos.from  from
        String
        From when the ticket is to be valid (postdating)
    kerberos.gssapi.bdn  Bnd
        Byte array
        GSSAPI Bnd field
    kerberos.gssapi.checksum.flags.conf  Conf
        Boolean
    kerberos.gssapi.checksum.flags.dce-style  DCE-style
        Boolean
    kerberos.gssapi.checksum.flags.deleg  Deleg
        Boolean
    kerberos.gssapi.checksum.flags.integ  Integ
        Boolean
    kerberos.gssapi.checksum.flags.mutual  Mutual
        Boolean
    kerberos.gssapi.checksum.flags.replay  Replay
        Boolean
    kerberos.gssapi.checksum.flags.sequence  Sequence
        Boolean
    kerberos.gssapi.dlglen  DlgLen
        Unsigned 16-bit integer
        GSSAPI DlgLen
    kerberos.gssapi.dlgopt  DlgOpt
        Unsigned 16-bit integer
        GSSAPI DlgOpt
    kerberos.gssapi.len  Length
        Unsigned 32-bit integer
        Length of GSSAPI Bnd field
    kerberos.hostaddress  HostAddress
        No value
        This is a Kerberos HostAddress sequence
    kerberos.hostaddresses  HostAddresses
        No value
        This is a list of Kerberos HostAddress sequences
    kerberos.if_relevant  IF_RELEVANT
        No value
        This is a list of IF-RELEVANT sequences
    kerberos.kdc_req_body  KDC_REQ_BODY
        No value
        Kerberos KDC REQuest BODY
    kerberos.kdcoptions  KDCOptions
        Byte array
        Kerberos KDCOptions bitstring
    kerberos.kdcoptions.allow_postdate  Allow Postdate
        Boolean
        Flag controlling whether we allow postdated tickets or not
    kerberos.kdcoptions.canonicalize  Canonicalize
        Boolean
        Do we want the KDC to canonicalize the principal or not
    kerberos.kdcoptions.constrained_delegation  Constrained Delegation
        Boolean
        Do we want a PAC containing constrained delegation info or not
    kerberos.kdcoptions.disable_transited_check  Disable Transited Check
        Boolean
        Whether we should do transited checking or not
    kerberos.kdcoptions.enc_tkt_in_skey  Enc-Tkt-in-Skey
        Boolean
        Whether the ticket is encrypted in the skey or not
    kerberos.kdcoptions.forwardable  Forwardable
        Boolean
        Flag controlling whether the tickets 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.proxiable  Proxiable
        Boolean
        Flag controlling whether the tickets are proxiable or not
    kerberos.kdcoptions.proxy  Proxy
        Boolean
        Has this ticket been proxied?
    kerberos.kdcoptions.renew  Renew
        Boolean
        Is this a request to renew a ticket?
    kerberos.kdcoptions.renewable  Renewable
        Boolean
        Whether this ticket is renewable or not
    kerberos.kdcoptions.renewable_ok  Renewable OK
        Boolean
        Whether we accept renewed tickets or not
    kerberos.kdcoptions.validate  Validate
        Boolean
        Is this a request to validate a postdated ticket?
    kerberos.kdcrep.data  enc-part
        Byte array
        The encrypted part of KDC-REP
    kerberos.kdcrep.enc_part  enc-part
        No value
        The structure holding the encrypted part of KDC-REP
    kerberos.key  key
        No value
        This is a Kerberos EncryptionKey sequence
    kerberos.key_expiration  Key Expiration
        String
        The time after which the key will expire
    kerberos.keytype  Key type
        Unsigned 32-bit integer
        Key Type
    kerberos.keyvalue  Key value
        Byte array
        Key value (encryption key)
    kerberos.kvno  Kvno
        Unsigned 32-bit integer
        Version Number for the encryption Key
    kerberos.lr_time  Lr-time
        String
        Time of LR-entry
    kerberos.lr_type  Lr-type
        Unsigned 32-bit integer
        Type of lastreq value
    kerberos.midl.fill_bytes  Fill bytes
        Unsigned 32-bit integer
        Just some fill bytes
    kerberos.midl.hdr_len  HDR Length
        Unsigned 16-bit integer
        Length of header
    kerberos.midl.version  Version
        Unsigned 8-bit integer
        Version of pickling
    kerberos.midl_blob_len  Blob Length
        Unsigned 64-bit integer
        Length of NDR encoded data that follows
    kerberos.msg.type  MSG Type
        Unsigned 32-bit integer
        Kerberos Message Type
    kerberos.name_string  Name
        String
        String component that is part of a PrincipalName
    kerberos.name_type  Name-type
        Signed 32-bit integer
        Type of principal name
    kerberos.nonce  Nonce
        Unsigned 32-bit integer
        Kerberos Nonce random number
    kerberos.pac.clientid  ClientID
        Date/Time stamp
        ClientID Timestamp
    kerberos.pac.entries  Num Entries
        Unsigned 32-bit integer
        Number of W2k PAC entries
    kerberos.pac.name  Name
        String
        Name of the Client in the PAC structure
    kerberos.pac.namelen  Name Length
        Unsigned 16-bit integer
        Length of client name
    kerberos.pac.offset  Offset
        Unsigned 32-bit integer
        Offset to W2k PAC entry
    kerberos.pac.signature.signature  Signature
        Byte array
        A PAC signature blob
    kerberos.pac.signature.type  Type
        Signed 32-bit integer
        PAC Signature Type
    kerberos.pac.size  Size
        Unsigned 32-bit integer
        Size of W2k PAC entry
    kerberos.pac.type  Type
        Unsigned 32-bit integer
        Type of W2k PAC entry
    kerberos.pac.upn.dns_len  DNS Len
        Unsigned 16-bit integer
    kerberos.pac.upn.dns_name  DNS Name
        String
    kerberos.pac.upn.dns_offset  DNS Offset
        Unsigned 16-bit integer
    kerberos.pac.upn.flags  Flags
        Unsigned 32-bit integer
        UPN flags
    kerberos.pac.upn.upn_len  UPN Len
        Unsigned 16-bit integer
    kerberos.pac.upn.upn_name  UPN Name
        String
    kerberos.pac.upn.upn_offset  UPN Offset
        Unsigned 16-bit integer
    kerberos.pac.version  Version
        Unsigned 32-bit integer
        Version of PAC structures
    kerberos.pac_request.flag  PAC Request
        Boolean
        This is a MS PAC Request Flag
    kerberos.padata  padata
        No value
        Sequence of preauthentication data
    kerberos.padata.type  Type
        Signed 32-bit integer
        Type of preauthentication data
    kerberos.padata.value  Value
        Byte array
        Content of the PADATA blob
    kerberos.patimestamp  patimestamp
        String
        Time of client
    kerberos.pausec  pausec
        Unsigned 32-bit integer
        Microsecond component of client time
    kerberos.pname  Delegated Principal Name
        No value
        Identity of the delegated principal
    kerberos.prealm  Delegated Principal Realm
        String
        Name of the Kerberos PRealm
    kerberos.priv_body  PRIV_BODY
        No value
        Kerberos PRIVate BODY
    kerberos.provsrv_location  PROVSRV Location
        String
        PacketCable PROV SRV Location
    kerberos.pvno  Pvno
        Unsigned 32-bit integer
        Kerberos Protocol Version Number
    kerberos.r_address  R-Address
        No value
        This is the Recipient address
    kerberos.realm  Realm
        String
        Name of the Kerberos Realm
    kerberos.renenw_till  Renew-till
        String
        The maximum time we can renew the ticket until
    kerberos.rm.length  Record Length
        Unsigned 32-bit integer
        Record length
    kerberos.rm.reserved  Reserved
        Boolean
        Record mark reserved bit
    kerberos.rtime  rtime
        String
        Renew Until timestamp
    kerberos.s4u2self.auth  S4U2Self Auth
        String
        S4U2Self authentication string
    kerberos.s_address  S-Address
        No value
        This is the Senders address
    kerberos.seq_number  Seq Number
        Unsigned 32-bit integer
        This is a Kerberos sequence number
    kerberos.smb.nt_status  NT Status
        Unsigned 32-bit integer
        NT Status code
    kerberos.smb.unknown  Unknown
        Unsigned 32-bit integer
        unknown
    kerberos.sname  Server Name
        No value
        This is the name part server's identity
    kerberos.sq.tickets  Tickets
        No value
        This is a list of Kerberos Tickets
    kerberos.srealm  SRealm
        String
        Name of the Kerberos SRealm
    kerberos.starttime  Start time
        String
        The time after which the ticket is valid
    kerberos.stime  stime
        String
        Current Time on the server host
    kerberos.subkey  Subkey
        No value
        This is a Kerberos subkey
    kerberos.susec  susec
        Unsigned 32-bit integer
        micro second component of server time
    kerberos.ticket  Ticket
        No value
        This is a Kerberos Ticket
    kerberos.ticket.data  enc-part
        Byte array
        The encrypted part of a ticket
    kerberos.ticket.enc_part  enc-part
        No value
        The structure holding the encrypted part of a ticket
    kerberos.ticketflags  Ticket Flags
        No value
        Kerberos Ticket Flags
    kerberos.ticketflags.allow_postdate  Allow Postdate
        Boolean
        Flag controlling whether we allow postdated tickets or not
    kerberos.ticketflags.forwardable  Forwardable
        Boolean
        Flag controlling whether the tickets 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.proxiable  Proxiable
        Boolean
        Flag controlling whether the tickets are proxiable or not
    kerberos.ticketflags.proxy  Proxy
        Boolean
        Has this ticket been proxied?
    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
        Transited Contents string
    kerberos.transited.type  Type
        Unsigned 32-bit integer
        Transited Type

Kerberos Administration (kadm5)

    kadm5.procedure_v2  V2 Procedure
        Unsigned 32-bit integer

Kerberos v4 (krb4)

    krb4.auth_msg_type  Msg Type
        Unsigned 8-bit integer
        Message Type/Byte Order
    krb4.byte_order  Byte Order
        Unsigned 8-bit integer
    krb4.encrypted_blob  Encrypted Blob
        Byte array
        Encrypted blob
    krb4.exp_date  Exp Date
        Date/Time stamp
    krb4.instance  Instance
        NULL terminated string
    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
        NULL terminated string
    krb4.realm  Realm
        NULL terminated string
    krb4.req_date  Req Date
        Date/Time stamp
    krb4.request.blob  Request Blob
        Byte array
    krb4.request.length  Request Length
        Unsigned 8-bit integer
        Length of request
    krb4.s_instance  Service Instance
        NULL terminated string
    krb4.s_name  Service Name
        NULL terminated string
    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
    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

Kernel Lock Manager (klm)

    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
    klm.servername  server name
        String
        Server name
    klm.stats  stats
        Unsigned 32-bit integer

Kingfisher (kf)

    kingfisher.checksum  Checksum
        Unsigned 16-bit integer
    kingfisher.from  From RTU
        Unsigned 16-bit integer
    kingfisher.function  Function Code
        Unsigned 8-bit integer
    kingfisher.length  Length
        Unsigned 8-bit integer
    kingfisher.message  Message Number
        Unsigned 8-bit integer
    kingfisher.system  System Identifier
        Unsigned 8-bit integer
    kingfisher.target  Target RTU
        Unsigned 16-bit integer
    kingfisher.version  Version
        Unsigned 8-bit integer
    kingfisher.via  Via RTU
        Unsigned 16-bit integer

Kismet Client/Server Protocol (kismet)

    kismet.request  Request
        Boolean
        TRUE if kismet request
    kismet.response  Response
        Boolean
        TRUE if kismet response

Kontiki Delivery Protocol (kdp)

    kdp.ack  Ack
        Unsigned 32-bit integer
    kdp.body  Encrypted Body
        Byte array
    kdp.destflowid  DestFlowID
        Unsigned 32-bit integer
    kdp.errors  KDP errors
        Unsigned 8-bit integer
    kdp.flags  KDP flags
        Unsigned 8-bit integer
    kdp.flags.ack  KDP ACK Flag
        Boolean
    kdp.flags.bcst  KDP BCST Flag
        Boolean
    kdp.flags.drop  KDP DROP Flag
        Boolean
    kdp.flags.dup  KDP DUP Flag
        Boolean
    kdp.flags.rst  KDP RST Flag
        Boolean
    kdp.flags.syn  KDP SYN Flag
        Boolean
    kdp.fragment  Fragment
        Unsigned 16-bit integer
    kdp.fragtotal  FragTotal
        Unsigned 16-bit integer
    kdp.headerlen  KDP header len
        Unsigned 8-bit integer
    kdp.maxsegmentsize  MaxSegmentSize
        Unsigned 32-bit integer
    kdp.option  Option Len
        Unsigned 8-bit integer
    kdp.option1  Option1 - Max Window
        Unsigned 16-bit integer
    kdp.option2  Option2 - TCP Fraction
        Unsigned 16-bit integer
    kdp.optionnumber  Option Number
        Unsigned 8-bit integer
    kdp.sequence  Sequence
        Unsigned 32-bit integer
    kdp.srcflowid  SrcFlowID
        Unsigned 32-bit integer
    kdp.version  KDP version
        Unsigned 8-bit integer
    kdp.xml_body  XML Body
        String

LANforge Traffic Generator (lanforge)

    LANforge.CRC  CRC
        Unsigned 32-bit integer
        The LANforge CRC number
    LANforge.dest-session-id  Dest session ID
        Unsigned 16-bit integer
        The LANforge dest session ID
    LANforge.magic  Magic number
        Unsigned 32-bit integer
        The LANforge magic number
    LANforge.pld-len-H  Payload Length(H)
        Unsigned 8-bit integer
        The LANforge payload length (high byte)
    LANforge.pld-len-L  Payload Length(L)
        Unsigned 16-bit integer
        The LANforge payload length (low bytes)
    LANforge.pld-length  Payload Length
        Unsigned 32-bit integer
        The LANforge payload length
    LANforge.pld-pattern  Payload Pattern
        Unsigned 16-bit integer
        The LANforge payload pattern
    LANforge.seqno  Sequence Number
        Unsigned 32-bit integer
        The LANforge Sequence Number
    LANforge.source-session-id  Source session ID
        Unsigned 16-bit integer
        The LANforge source session ID
    LANforge.timestamp  Timestamp
        Date/Time stamp
    LANforge.ts-nsecs  Timestamp nsecs
        Unsigned 32-bit integer
    LANforge.ts-secs  Timestamp Secs
        Unsigned 32-bit integer
        Timestamp secs

LGE Monitor (lge_monitor)

    lge_monitor.dir  Direction
        Unsigned 32-bit integer
    lge_monitor.length  Payload Length
        Unsigned 32-bit integer
    lge_monitor.prot  Protocol Identifier
        Unsigned 32-bit integer

LTE Radio Resource Control (RRC) protocol (lte_rrc)

    lte-rrc.ARFCN_ValueGERAN  ARFCN-ValueGERAN
        Unsigned 32-bit integer
    lte-rrc.AdditionalReestabInfo  AdditionalReestabInfo
        No value
    lte-rrc.BCCH_BCH_Message  BCCH-BCH-Message
        No value
    lte-rrc.BCCH_DL_SCH_Message  BCCH-DL-SCH-Message
        No value
    lte-rrc.BandClassInfoCDMA2000  BandClassInfoCDMA2000
        No value
    lte-rrc.BandClassPriority1XRTT  BandClassPriority1XRTT
        No value
    lte-rrc.BandClassPriorityHRPD  BandClassPriorityHRPD
        No value
    lte-rrc.BandInfoEUTRA  BandInfoEUTRA
        No value
    lte-rrc.BandclassCDMA2000  BandclassCDMA2000
        Unsigned 32-bit integer
    lte-rrc.BlackCellsToAddMod  BlackCellsToAddMod
        No value
    lte-rrc.CarrierFreqUTRA_FDD  CarrierFreqUTRA-FDD
        No value
    lte-rrc.CarrierFreqUTRA_TDD  CarrierFreqUTRA-TDD
        No value
    lte-rrc.CarrierFreqsInfoGERAN  CarrierFreqsInfoGERAN
        No value
    lte-rrc.CellIndex  CellIndex
        Unsigned 32-bit integer
    lte-rrc.CellInfoGERAN_r9  CellInfoGERAN-r9
        No value
    lte-rrc.CellInfoUTRA_FDD_r9  CellInfoUTRA-FDD-r9
        No value
    lte-rrc.CellInfoUTRA_TDD_r9  CellInfoUTRA-TDD-r9
        No value
    lte-rrc.CellsToAddMod  CellsToAddMod
        No value
    lte-rrc.CellsToAddModCDMA2000  CellsToAddModCDMA2000
        No value
    lte-rrc.CellsToAddModUTRA_FDD  CellsToAddModUTRA-FDD
        No value
    lte-rrc.CellsToAddModUTRA_TDD  CellsToAddModUTRA-TDD
        No value
    lte-rrc.CellsTriggeredList_item  CellsTriggeredList item
        Unsigned 32-bit integer
    lte-rrc.DL_CCCH_Message  DL-CCCH-Message
        No value
    lte-rrc.DL_DCCH_Message  DL-DCCH-Message
        No value
    lte-rrc.DRB_CountInfo  DRB-CountInfo
        No value
    lte-rrc.DRB_CountMSB_Info  DRB-CountMSB-Info
        No value
    lte-rrc.DRB_Identity  DRB-Identity
        Unsigned 32-bit integer
    lte-rrc.DRB_ToAddMod  DRB-ToAddMod
        No value
    lte-rrc.DedicatedInfoNAS  DedicatedInfoNAS
        Byte array
    lte-rrc.FreqPriorityEUTRA  FreqPriorityEUTRA
        No value
    lte-rrc.FreqPriorityUTRA_FDD  FreqPriorityUTRA-FDD
        No value
    lte-rrc.FreqPriorityUTRA_TDD  FreqPriorityUTRA-TDD
        No value
    lte-rrc.FreqsPriorityGERAN  FreqsPriorityGERAN
        No value
    lte-rrc.HandoverCommand  HandoverCommand
        No value
    lte-rrc.HandoverPreparationInformation  HandoverPreparationInformation
        No value
    lte-rrc.IMSI_Digit  IMSI-Digit
        Unsigned 32-bit integer
    lte-rrc.InterFreqBandInfo  InterFreqBandInfo
        No value
    lte-rrc.InterFreqCarrierFreqInfo  InterFreqCarrierFreqInfo
        No value
    lte-rrc.InterFreqNeighCellInfo  InterFreqNeighCellInfo
        No value
    lte-rrc.InterRAT_BandInfo  InterRAT-BandInfo
        No value
    lte-rrc.IntraFreqNeighCellInfo  IntraFreqNeighCellInfo
        No value
    lte-rrc.MBMS_SessionInfo_r9  MBMS-SessionInfo-r9
        No value
    lte-rrc.MBSFN_AreaInfo_r9  MBSFN-AreaInfo-r9
        No value
    lte-rrc.MBSFN_SubframeConfig  MBSFN-SubframeConfig
        No value
    lte-rrc.MCCH_Message  MCCH-Message
        No value
    lte-rrc.MCC_MNC_Digit  MCC-MNC-Digit
        Unsigned 32-bit integer
    lte-rrc.MeasId  MeasId
        Unsigned 32-bit integer
    lte-rrc.MeasIdToAddMod  MeasIdToAddMod
        No value
    lte-rrc.MeasObjectId  MeasObjectId
        Unsigned 32-bit integer
    lte-rrc.MeasObjectToAddMod  MeasObjectToAddMod
        No value
    lte-rrc.MeasResultCDMA2000  MeasResultCDMA2000
        No value
    lte-rrc.MeasResultEUTRA  MeasResultEUTRA
        No value
    lte-rrc.MeasResultGERAN  MeasResultGERAN
        No value
    lte-rrc.MeasResultList2CDMA2000_item  MeasResultList2CDMA2000 item
        No value
    lte-rrc.MeasResultList2EUTRA_item  MeasResultList2EUTRA item
        No value
    lte-rrc.MeasResultList2UTRA_item  MeasResultList2UTRA item
        No value
    lte-rrc.MeasResultUTRA  MeasResultUTRA
        No value
    lte-rrc.N1_PUCCH_AN_PersistentList_item  N1-PUCCH-AN-PersistentList item
        Unsigned 32-bit integer
        INTEGER_0_2047
    lte-rrc.NeighCellCDMA2000  NeighCellCDMA2000
        No value
    lte-rrc.NeighCellCDMA2000_v920  NeighCellCDMA2000-v920
        No value
    lte-rrc.NeighCellsPerBandclassCDMA2000  NeighCellsPerBandclassCDMA2000
        No value
    lte-rrc.NeighCellsPerBandclassCDMA2000_v920  NeighCellsPerBandclassCDMA2000-v920
        No value
    lte-rrc.PCCH_Message  PCCH-Message
        No value
    lte-rrc.PLMN_Identity  PLMN-Identity
        No value
    lte-rrc.PLMN_IdentityInfo  PLMN-IdentityInfo
        No value
    lte-rrc.PMCH_Info_r9  PMCH-Info-r9
        No value
    lte-rrc.PagingRecord  PagingRecord
        No value
    lte-rrc.PhysCellIdCDMA2000  PhysCellIdCDMA2000
        Unsigned 32-bit integer
    lte-rrc.PhysCellIdRange  PhysCellIdRange
        No value
    lte-rrc.PreRegistrationZoneIdHRPD  PreRegistrationZoneIdHRPD
        Unsigned 32-bit integer
    lte-rrc.RAT_Type  RAT-Type
        Unsigned 32-bit integer
    lte-rrc.ReportConfigId  ReportConfigId
        Unsigned 32-bit integer
    lte-rrc.ReportConfigToAddMod  ReportConfigToAddMod
        No value
    lte-rrc.SIB_Type  SIB-Type
        Unsigned 32-bit integer
    lte-rrc.SRB_ToAddMod  SRB-ToAddMod
        No value
    lte-rrc.SchedulingInfo  SchedulingInfo
        No value
    lte-rrc.SupportedBandEUTRA  SupportedBandEUTRA
        No value
    lte-rrc.SupportedBandGERAN  SupportedBandGERAN
        Unsigned 32-bit integer
    lte-rrc.SupportedBandUTRA_FDD  SupportedBandUTRA-FDD
        Unsigned 32-bit integer
    lte-rrc.SupportedBandUTRA_TDD128  SupportedBandUTRA-TDD128
        Unsigned 32-bit integer
    lte-rrc.SupportedBandUTRA_TDD384  SupportedBandUTRA-TDD384
        Unsigned 32-bit integer
    lte-rrc.SupportedBandUTRA_TDD768  SupportedBandUTRA-TDD768
        Unsigned 32-bit integer
    lte-rrc.SystemInfoListGERAN_item  SystemInfoListGERAN item
        Byte array
        OCTET_STRING_SIZE_1_23
    lte-rrc.SystemInformationBlockType1_v890_IEs  SystemInformationBlockType1-v890-IEs
        No value
    lte-rrc.UECapabilityInformation  UECapabilityInformation
        No value
    lte-rrc.UERadioAccessCapabilityInformation  UERadioAccessCapabilityInformation
        No value
    lte-rrc.UE_CapabilityRAT_Container  UE-CapabilityRAT-Container
        No value
    lte-rrc.UE_EUTRA_Capability  UE-EUTRA-Capability
        No value
    lte-rrc.UL_CCCH_Message  UL-CCCH-Message
        No value
    lte-rrc.UL_DCCH_Message  UL-DCCH-Message
        No value
    lte-rrc.a1_Threshold  a1-Threshold
        Unsigned 32-bit integer
        ThresholdEUTRA
    lte-rrc.a2_Threshold  a2-Threshold
        Unsigned 32-bit integer
        ThresholdEUTRA
    lte-rrc.a3_Offset  a3-Offset
        Signed 32-bit integer
        INTEGER_M30_30
    lte-rrc.a4_Threshold  a4-Threshold
        Unsigned 32-bit integer
        ThresholdEUTRA
    lte-rrc.a5_Threshold1  a5-Threshold1
        Unsigned 32-bit integer
        ThresholdEUTRA
    lte-rrc.a5_Threshold2  a5-Threshold2
        Unsigned 32-bit integer
        ThresholdEUTRA
    lte-rrc.ac_Barring0to9_r9  ac-Barring0to9-r9
        Unsigned 32-bit integer
        INTEGER_0_63
    lte-rrc.ac_Barring10_r9  ac-Barring10-r9
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.ac_Barring11_r9  ac-Barring11-r9
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.ac_Barring12_r9  ac-Barring12-r9
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.ac_Barring13_r9  ac-Barring13-r9
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.ac_Barring14_r9  ac-Barring14-r9
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.ac_Barring15_r9  ac-Barring15-r9
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.ac_BarringConfig1XRTT_r9  ac-BarringConfig1XRTT-r9
        No value
    lte-rrc.ac_BarringEmg_r9  ac-BarringEmg-r9
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.ac_BarringFactor  ac-BarringFactor
        Unsigned 32-bit integer
    lte-rrc.ac_BarringForEmergency  ac-BarringForEmergency
        Boolean
        BOOLEAN
    lte-rrc.ac_BarringForMO_Data  ac-BarringForMO-Data
        No value
        AC_BarringConfig
    lte-rrc.ac_BarringForMO_Signalling  ac-BarringForMO-Signalling
        No value
        AC_BarringConfig
    lte-rrc.ac_BarringForSpecialAC  ac-BarringForSpecialAC
        Byte array
        BIT_STRING_SIZE_5
    lte-rrc.ac_BarringInfo  ac-BarringInfo
        No value
    lte-rrc.ac_BarringMsg_r9  ac-BarringMsg-r9
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.ac_BarringReg_r9  ac-BarringReg-r9
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.ac_BarringTime  ac-BarringTime
        Unsigned 32-bit integer
    lte-rrc.accessStratumRelease  accessStratumRelease
        Unsigned 32-bit integer
    lte-rrc.accumulationEnabled  accumulationEnabled
        Boolean
        BOOLEAN
    lte-rrc.ackNackRepetition  ackNackRepetition
        Unsigned 32-bit integer
    lte-rrc.ackNackSRS_SimultaneousTransmission  ackNackSRS-SimultaneousTransmission
        Boolean
        BOOLEAN
    lte-rrc.additionalReestabInfoList  additionalReestabInfoList
        Unsigned 32-bit integer
    lte-rrc.additionalSI_Info_r9  additionalSI-Info-r9
        No value
    lte-rrc.additionalSpectrumEmission  additionalSpectrumEmission
        Unsigned 32-bit integer
    lte-rrc.allowedMeasBandwidth  allowedMeasBandwidth
        Unsigned 32-bit integer
    lte-rrc.alpha  alpha
        Unsigned 32-bit integer
    lte-rrc.am  am
        No value
    lte-rrc.antennaInfo  antennaInfo
        Unsigned 32-bit integer
    lte-rrc.antennaInfoCommon  antennaInfoCommon
        No value
    lte-rrc.antennaInfo_v920  antennaInfo-v920
        No value
        AntennaInfoDedicated_v920
    lte-rrc.antennaPortsCount  antennaPortsCount
        Unsigned 32-bit integer
    lte-rrc.arfcn  arfcn
        Unsigned 32-bit integer
        ARFCN_ValueCDMA2000
    lte-rrc.arfcn_Spacing  arfcn-Spacing
        Unsigned 32-bit integer
        INTEGER_1_8
    lte-rrc.as_Config  as-Config
        No value
    lte-rrc.as_Context  as-Context
        No value
    lte-rrc.asynchronousSystemTime  asynchronousSystemTime
        Byte array
        BIT_STRING_SIZE_49
    lte-rrc.b1_Threshold  b1-Threshold
        Unsigned 32-bit integer
    lte-rrc.b1_ThresholdCDMA2000  b1-ThresholdCDMA2000
        Unsigned 32-bit integer
        ThresholdCDMA2000
    lte-rrc.b1_ThresholdGERAN  b1-ThresholdGERAN
        Unsigned 32-bit integer
        ThresholdGERAN
    lte-rrc.b1_ThresholdUTRA  b1-ThresholdUTRA
        Unsigned 32-bit integer
        ThresholdUTRA
    lte-rrc.b2_Threshold1  b2-Threshold1
        Unsigned 32-bit integer
        ThresholdEUTRA
    lte-rrc.b2_Threshold2  b2-Threshold2
        Unsigned 32-bit integer
    lte-rrc.b2_Threshold2CDMA2000  b2-Threshold2CDMA2000
        Unsigned 32-bit integer
        ThresholdCDMA2000
    lte-rrc.b2_Threshold2GERAN  b2-Threshold2GERAN
        Unsigned 32-bit integer
        ThresholdGERAN
    lte-rrc.b2_Threshold2UTRA  b2-Threshold2UTRA
        Unsigned 32-bit integer
        ThresholdUTRA
    lte-rrc.bandClass  bandClass
        Unsigned 32-bit integer
        BandclassCDMA2000
    lte-rrc.bandClassList  bandClassList
        Unsigned 32-bit integer
        BandClassListCDMA2000
    lte-rrc.bandClassPriorityList1XRTT  bandClassPriorityList1XRTT
        Unsigned 32-bit integer
    lte-rrc.bandClassPriorityListHRPD  bandClassPriorityListHRPD
        Unsigned 32-bit integer
    lte-rrc.bandEUTRA  bandEUTRA
        Unsigned 32-bit integer
        INTEGER_1_64
    lte-rrc.bandIndicator  bandIndicator
        Unsigned 32-bit integer
        BandIndicatorGERAN
    lte-rrc.bandListEUTRA  bandListEUTRA
        Unsigned 32-bit integer
    lte-rrc.baseStationColourCode  baseStationColourCode
        Byte array
        BIT_STRING_SIZE_3
    lte-rrc.bcch_Config  bcch-Config
        No value
    lte-rrc.betaOffset_ACK_Index  betaOffset-ACK-Index
        Unsigned 32-bit integer
        INTEGER_0_15
    lte-rrc.betaOffset_CQI_Index  betaOffset-CQI-Index
        Unsigned 32-bit integer
        INTEGER_0_15
    lte-rrc.betaOffset_RI_Index  betaOffset-RI-Index
        Unsigned 32-bit integer
        INTEGER_0_15
    lte-rrc.blackCellsToAddModList  blackCellsToAddModList
        Unsigned 32-bit integer
    lte-rrc.blackCellsToRemoveList  blackCellsToRemoveList
        Unsigned 32-bit integer
        CellIndexList
    lte-rrc.bucketSizeDuration  bucketSizeDuration
        Unsigned 32-bit integer
    lte-rrc.c1  c1
        Unsigned 32-bit integer
    lte-rrc.c_RNTI  c-RNTI
        Byte array
    lte-rrc.carrierBandwidth  carrierBandwidth
        No value
        CarrierBandwidthEUTRA
    lte-rrc.carrierFreq  carrierFreq
        No value
        CarrierFreqGERAN
    lte-rrc.carrierFreqListUTRA_FDD  carrierFreqListUTRA-FDD
        Unsigned 32-bit integer
    lte-rrc.carrierFreqListUTRA_TDD  carrierFreqListUTRA-TDD
        Unsigned 32-bit integer
    lte-rrc.carrierFreq_r9  carrierFreq-r9
        Unsigned 32-bit integer
    lte-rrc.carrierFreqs  carrierFreqs
        No value
        CarrierFreqsGERAN
    lte-rrc.carrierFreqsInfoList  carrierFreqsInfoList
        Unsigned 32-bit integer
        CarrierFreqsInfoListGERAN
    lte-rrc.cdma2000_1xRTT  cdma2000-1xRTT
        No value
        CarrierFreqCDMA2000
    lte-rrc.cdma2000_HRPD  cdma2000-HRPD
        No value
        CarrierFreqCDMA2000
    lte-rrc.cdma2000_Type  cdma2000-Type
        Unsigned 32-bit integer
    lte-rrc.cdma_EUTRA_Synchronisation  cdma-EUTRA-Synchronisation
        Boolean
        BOOLEAN
    lte-rrc.cdma_SystemTime  cdma-SystemTime
        Unsigned 32-bit integer
    lte-rrc.cellAccessRelatedInfo  cellAccessRelatedInfo
        No value
    lte-rrc.cellBarred  cellBarred
        Unsigned 32-bit integer
    lte-rrc.cellChangeOrder  cellChangeOrder
        No value
    lte-rrc.cellForWhichToReportCGI  cellForWhichToReportCGI
        Unsigned 32-bit integer
        PhysCellIdCDMA2000
    lte-rrc.cellGlobalId  cellGlobalId
        No value
        CellGlobalIdEUTRA
    lte-rrc.cellGlobalId1XRTT  cellGlobalId1XRTT
        Byte array
        BIT_STRING_SIZE_47
    lte-rrc.cellGlobalIdHRPD  cellGlobalIdHRPD
        Byte array
        BIT_STRING_SIZE_128
    lte-rrc.cellIdentity  cellIdentity
        Byte array
    lte-rrc.cellIndex  cellIndex
        Unsigned 32-bit integer
        INTEGER_1_maxCellMeas
    lte-rrc.cellIndividualOffset  cellIndividualOffset
        Unsigned 32-bit integer
        Q_OffsetRange
    lte-rrc.cellInfoList_r9  cellInfoList-r9
        Unsigned 32-bit integer
        T_cellInfoList_r9
    lte-rrc.cellReselectionInfoCommon  cellReselectionInfoCommon
        No value
    lte-rrc.cellReselectionParameters1XRTT  cellReselectionParameters1XRTT
        No value
        CellReselectionParametersCDMA2000
    lte-rrc.cellReselectionParameters1XRTT_v920  cellReselectionParameters1XRTT-v920
        No value
        CellReselectionParametersCDMA2000_v920
    lte-rrc.cellReselectionParametersHRPD  cellReselectionParametersHRPD
        No value
        CellReselectionParametersCDMA2000
    lte-rrc.cellReselectionParametersHRPD_v920  cellReselectionParametersHRPD-v920
        No value
        CellReselectionParametersCDMA2000_v920
    lte-rrc.cellReselectionPriority  cellReselectionPriority
        Unsigned 32-bit integer
    lte-rrc.cellReselectionServingFreqInfo  cellReselectionServingFreqInfo
        No value
    lte-rrc.cellReservedForOperatorUse  cellReservedForOperatorUse
        Unsigned 32-bit integer
    lte-rrc.cellSelectionInfo  cellSelectionInfo
        No value
    lte-rrc.cellSelectionInfo_v920  cellSelectionInfo-v920
        No value
    lte-rrc.cellsToAddModList  cellsToAddModList
        Unsigned 32-bit integer
        CellsToAddModListCDMA2000
    lte-rrc.cellsToAddModListUTRA_FDD  cellsToAddModListUTRA-FDD
        Unsigned 32-bit integer
    lte-rrc.cellsToAddModListUTRA_TDD  cellsToAddModListUTRA-TDD
        Unsigned 32-bit integer
    lte-rrc.cellsToRemoveList  cellsToRemoveList
        Unsigned 32-bit integer
        CellIndexList
    lte-rrc.cgi_Info  cgi-Info
        No value
    lte-rrc.cipheringAlgorithm  cipheringAlgorithm
        Unsigned 32-bit integer
    lte-rrc.cmas_Indication_r9  cmas-Indication-r9
        Unsigned 32-bit integer
    lte-rrc.cn_Domain  cn-Domain
        Unsigned 32-bit integer
    lte-rrc.codebookSubsetRestriction  codebookSubsetRestriction
        Unsigned 32-bit integer
    lte-rrc.codebookSubsetRestriction_v920  codebookSubsetRestriction-v920
        Unsigned 32-bit integer
    lte-rrc.commonInfo  commonInfo
        No value
    lte-rrc.commonSF_AllocPeriod_r9  commonSF-AllocPeriod-r9
        Unsigned 32-bit integer
    lte-rrc.commonSF_Alloc_r9  commonSF-Alloc-r9
        Unsigned 32-bit integer
        CommonSF_AllocPatternList_r9
    lte-rrc.concurrPrepCDMA2000_HRPD_r9  concurrPrepCDMA2000-HRPD-r9
        Boolean
        BOOLEAN
    lte-rrc.contentionDetected_r9  contentionDetected-r9
        Boolean
        BOOLEAN
    lte-rrc.countMSB_Downlink  countMSB-Downlink
        Unsigned 32-bit integer
        INTEGER_0_33554431
    lte-rrc.countMSB_Uplink  countMSB-Uplink
        Unsigned 32-bit integer
        INTEGER_0_33554431
    lte-rrc.count_Downlink  count-Downlink
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    lte-rrc.count_Uplink  count-Uplink
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    lte-rrc.counterCheck  counterCheck
        No value
    lte-rrc.counterCheckResponse  counterCheckResponse
        No value
    lte-rrc.counterCheckResponse_r8  counterCheckResponse-r8
        No value
        CounterCheckResponse_r8_IEs
    lte-rrc.counterCheck_r8  counterCheck-r8
        No value
        CounterCheck_r8_IEs
    lte-rrc.cqi_FormatIndicatorPeriodic  cqi-FormatIndicatorPeriodic
        Unsigned 32-bit integer
    lte-rrc.cqi_Mask_r9  cqi-Mask-r9
        Unsigned 32-bit integer
    lte-rrc.cqi_PUCCH_ResourceIndex  cqi-PUCCH-ResourceIndex
        Unsigned 32-bit integer
        INTEGER_0_1185
    lte-rrc.cqi_ReportConfig  cqi-ReportConfig
        No value
    lte-rrc.cqi_ReportConfig_v920  cqi-ReportConfig-v920
        No value
    lte-rrc.cqi_ReportModeAperiodic  cqi-ReportModeAperiodic
        Unsigned 32-bit integer
    lte-rrc.cqi_ReportPeriodic  cqi-ReportPeriodic
        Unsigned 32-bit integer
    lte-rrc.cqi_pmi_ConfigIndex  cqi-pmi-ConfigIndex
        Unsigned 32-bit integer
        INTEGER_0_1023
    lte-rrc.criticalExtensions  criticalExtensions
        Unsigned 32-bit integer
    lte-rrc.criticalExtensionsFuture  criticalExtensionsFuture
        No value
    lte-rrc.cs_FallbackIndicator  cs-FallbackIndicator
        Boolean
        BOOLEAN
    lte-rrc.csfbParametersRequestCDMA2000  csfbParametersRequestCDMA2000
        No value
    lte-rrc.csfbParametersRequestCDMA2000_r8  csfbParametersRequestCDMA2000-r8
        No value
        CSFBParametersRequestCDMA2000_r8_IEs
    lte-rrc.csfbParametersResponseCDMA2000  csfbParametersResponseCDMA2000
        No value
    lte-rrc.csfbParametersResponseCDMA2000_r8  csfbParametersResponseCDMA2000-r8
        No value
        CSFBParametersResponseCDMA2000_r8_IEs
    lte-rrc.csfb_RegistrationParam1XRTT  csfb-RegistrationParam1XRTT
        No value
    lte-rrc.csfb_RegistrationParam1XRTT_v920  csfb-RegistrationParam1XRTT-v920
        No value
    lte-rrc.csfb_SupportForDualRxUEs_r9  csfb-SupportForDualRxUEs-r9
        Boolean
        BOOLEAN
    lte-rrc.csg_Identity  csg-Identity
        Byte array
    lte-rrc.csg_Identity_r9  csg-Identity-r9
        Byte array
        CSG_Identity
    lte-rrc.csg_Indication  csg-Indication
        Boolean
        BOOLEAN
    lte-rrc.csg_MemberStatus_r9  csg-MemberStatus-r9
        Unsigned 32-bit integer
    lte-rrc.csg_PhysCellIdRange  csg-PhysCellIdRange
        No value
        PhysCellIdRange
    lte-rrc.csg_ProximityIndicationParameters_r9  csg-ProximityIndicationParameters-r9
        No value
    lte-rrc.currentSFN_r9  currentSFN-r9
        Byte array
        BIT_STRING_SIZE_10
    lte-rrc.cyclicShift  cyclicShift
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.dataCodingScheme  dataCodingScheme
        Byte array
        OCTET_STRING_SIZE_1
    lte-rrc.dataCodingScheme_r9  dataCodingScheme-r9
        Byte array
        OCTET_STRING_SIZE_1
    lte-rrc.dataMCS_r9  dataMCS-r9
        Unsigned 32-bit integer
        INTEGER_0_28
    lte-rrc.dedicatedInfo  dedicatedInfo
        Byte array
        DedicatedInfoCDMA2000
    lte-rrc.dedicatedInfoCDMA2000_1XRTT  dedicatedInfoCDMA2000-1XRTT
        Byte array
        DedicatedInfoCDMA2000
    lte-rrc.dedicatedInfoCDMA2000_HRPD  dedicatedInfoCDMA2000-HRPD
        Byte array
        DedicatedInfoCDMA2000
    lte-rrc.dedicatedInfoNAS  dedicatedInfoNAS
        Byte array
    lte-rrc.dedicatedInfoNASList  dedicatedInfoNASList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxDRB_OF_DedicatedInfoNAS
    lte-rrc.dedicatedInfoType  dedicatedInfoType
        Unsigned 32-bit integer
    lte-rrc.defaultPagingCycle  defaultPagingCycle
        Unsigned 32-bit integer
    lte-rrc.defaultValue  defaultValue
        No value
    lte-rrc.deltaFList_PUCCH  deltaFList-PUCCH
        No value
    lte-rrc.deltaF_PUCCH_Format1  deltaF-PUCCH-Format1
        Unsigned 32-bit integer
    lte-rrc.deltaF_PUCCH_Format1b  deltaF-PUCCH-Format1b
        Unsigned 32-bit integer
    lte-rrc.deltaF_PUCCH_Format2  deltaF-PUCCH-Format2
        Unsigned 32-bit integer
    lte-rrc.deltaF_PUCCH_Format2a  deltaF-PUCCH-Format2a
        Unsigned 32-bit integer
    lte-rrc.deltaF_PUCCH_Format2b  deltaF-PUCCH-Format2b
        Unsigned 32-bit integer
    lte-rrc.deltaMCS_Enabled  deltaMCS-Enabled
        Unsigned 32-bit integer
    lte-rrc.deltaPUCCH_Shift  deltaPUCCH-Shift
        Unsigned 32-bit integer
    lte-rrc.deltaPreambleMsg3  deltaPreambleMsg3
        Signed 32-bit integer
        INTEGER_M1_6
    lte-rrc.deviceType_r9  deviceType-r9
        Unsigned 32-bit integer
    lte-rrc.discardTimer  discardTimer
        Unsigned 32-bit integer
    lte-rrc.dlInformationTransfer  dlInformationTransfer
        No value
    lte-rrc.dlInformationTransfer_r8  dlInformationTransfer-r8
        No value
        DLInformationTransfer_r8_IEs
    lte-rrc.dl_AM_RLC  dl-AM-RLC
        No value
    lte-rrc.dl_Bandwidth  dl-Bandwidth
        Unsigned 32-bit integer
    lte-rrc.dl_CarrierFreq  dl-CarrierFreq
        Unsigned 32-bit integer
        ARFCN_ValueEUTRA
    lte-rrc.dl_PathlossChange  dl-PathlossChange
        Unsigned 32-bit integer
    lte-rrc.dl_UM_RLC  dl-UM-RLC
        No value
    lte-rrc.drb_CountInfoList  drb-CountInfoList
        Unsigned 32-bit integer
    lte-rrc.drb_CountMSB_InfoList  drb-CountMSB-InfoList
        Unsigned 32-bit integer
    lte-rrc.drb_Identity  drb-Identity
        Unsigned 32-bit integer
    lte-rrc.drb_ToAddModList  drb-ToAddModList
        Unsigned 32-bit integer
    lte-rrc.drb_ToReleaseList  drb-ToReleaseList
        Unsigned 32-bit integer
    lte-rrc.drxShortCycleTimer  drxShortCycleTimer
        Unsigned 32-bit integer
        INTEGER_1_16
    lte-rrc.drx_Config  drx-Config
        Unsigned 32-bit integer
    lte-rrc.drx_InactivityTimer  drx-InactivityTimer
        Unsigned 32-bit integer
    lte-rrc.drx_RetransmissionTimer  drx-RetransmissionTimer
        Unsigned 32-bit integer
    lte-rrc.dsr_TransMax  dsr-TransMax
        Unsigned 32-bit integer
    lte-rrc.dtm_r9  dtm-r9
        Unsigned 32-bit integer
    lte-rrc.duration  duration
        Boolean
        BOOLEAN
    lte-rrc.e_CSFB_ConcPS_Mob_r9  e-CSFB-ConcPS-Mob-r9
        Unsigned 32-bit integer
    lte-rrc.e_CSFB_r9  e-CSFB-r9
        No value
    lte-rrc.e_RedirectionGERAN_r9  e-RedirectionGERAN-r9
        Unsigned 32-bit integer
    lte-rrc.e_Redirection_r9  e-Redirection-r9
        Unsigned 32-bit integer
    lte-rrc.enable64QAM  enable64QAM
        Boolean
        BOOLEAN
    lte-rrc.enhancedDualLayerFDD_Supported_r9  enhancedDualLayerFDD-Supported-r9
        Boolean
        BOOLEAN
    lte-rrc.enhancedDualLayerTDD_Supported_r9  enhancedDualLayerTDD-Supported-r9
        Boolean
        BOOLEAN
    lte-rrc.eps_BearerIdentity  eps-BearerIdentity
        Unsigned 32-bit integer
        INTEGER_0_15
    lte-rrc.equallySpacedARFCNs  equallySpacedARFCNs
        No value
    lte-rrc.establishmentCause  establishmentCause
        Unsigned 32-bit integer
    lte-rrc.etws_Indication  etws-Indication
        Unsigned 32-bit integer
    lte-rrc.eutra  eutra
        Unsigned 32-bit integer
        ARFCN_ValueEUTRA
    lte-rrc.eutra_r9  eutra-r9
        Unsigned 32-bit integer
        ARFCN_ValueEUTRA
    lte-rrc.event  event
        No value
    lte-rrc.eventA1  eventA1
        No value
    lte-rrc.eventA2  eventA2
        No value
    lte-rrc.eventA3  eventA3
        No value
    lte-rrc.eventA4  eventA4
        No value
    lte-rrc.eventA5  eventA5
        No value
    lte-rrc.eventB1  eventB1
        No value
    lte-rrc.eventB2  eventB2
        No value
    lte-rrc.eventId  eventId
        Unsigned 32-bit integer
    lte-rrc.explicitListOfARFCNs  explicitListOfARFCNs
        Unsigned 32-bit integer
    lte-rrc.explicitValue  explicitValue
        No value
        AntennaInfoDedicated
    lte-rrc.explicitValue_r9  explicitValue-r9
        No value
        PLMN_Identity
    lte-rrc.fdd  fdd
        Unsigned 32-bit integer
        PhysCellIdUTRA_FDD
    lte-rrc.featureGroupIndicators  featureGroupIndicators
        Byte array
        BIT_STRING_SIZE_32
    lte-rrc.filterCoefficient  filterCoefficient
        Unsigned 32-bit integer
    lte-rrc.filterCoefficientRSRP  filterCoefficientRSRP
        Unsigned 32-bit integer
        FilterCoefficient
    lte-rrc.filterCoefficientRSRQ  filterCoefficientRSRQ
        Unsigned 32-bit integer
        FilterCoefficient
    lte-rrc.followingARFCNs  followingARFCNs
        Unsigned 32-bit integer
    lte-rrc.foreignNIDReg  foreignNIDReg
        Boolean
        BOOLEAN
    lte-rrc.foreignSIDReg  foreignSIDReg
        Boolean
        BOOLEAN
    lte-rrc.fourFrames  fourFrames
        Byte array
        BIT_STRING_SIZE_24
    lte-rrc.freqBandIndicator  freqBandIndicator
        Unsigned 32-bit integer
        INTEGER_1_64
    lte-rrc.freqDomainPosition  freqDomainPosition
        Unsigned 32-bit integer
        INTEGER_0_23
    lte-rrc.freqInfo  freqInfo
        No value
    lte-rrc.freqPriorityListEUTRA  freqPriorityListEUTRA
        Unsigned 32-bit integer
    lte-rrc.freqPriorityListGERAN  freqPriorityListGERAN
        Unsigned 32-bit integer
        FreqsPriorityListGERAN
    lte-rrc.freqPriorityListUTRA_FDD  freqPriorityListUTRA-FDD
        Unsigned 32-bit integer
    lte-rrc.freqPriorityListUTRA_TDD  freqPriorityListUTRA-TDD
        Unsigned 32-bit integer
    lte-rrc.fullConfig_r9  fullConfig-r9
        Unsigned 32-bit integer
    lte-rrc.gapOffset  gapOffset
        Unsigned 32-bit integer
    lte-rrc.geran  geran
        No value
    lte-rrc.geran_r9  geran-r9
        Unsigned 32-bit integer
        CellInfoListGERAN_r9
    lte-rrc.gp0  gp0
        Unsigned 32-bit integer
        INTEGER_0_39
    lte-rrc.gp1  gp1
        Unsigned 32-bit integer
        INTEGER_0_79
    lte-rrc.groupAssignmentPUSCH  groupAssignmentPUSCH
        Unsigned 32-bit integer
        INTEGER_0_29
    lte-rrc.groupHoppingEnabled  groupHoppingEnabled
        Boolean
        BOOLEAN
    lte-rrc.halfDuplex  halfDuplex
        Boolean
        BOOLEAN
    lte-rrc.handover  handover
        No value
    lte-rrc.handoverCommandMessage  handoverCommandMessage
        Byte array
    lte-rrc.handoverCommand_r8  handoverCommand-r8
        No value
        HandoverCommand_r8_IEs
    lte-rrc.handoverFromEUTRAPreparationRequest  handoverFromEUTRAPreparationRequest
        No value
    lte-rrc.handoverFromEUTRAPreparationRequest_r8  handoverFromEUTRAPreparationRequest-r8
        No value
        HandoverFromEUTRAPreparationRequest_r8_IEs
    lte-rrc.handoverPreparationInformation_r8  handoverPreparationInformation-r8
        No value
        HandoverPreparationInformation_r8_IEs
    lte-rrc.handoverType  handoverType
        Unsigned 32-bit integer
    lte-rrc.headerCompression  headerCompression
        Unsigned 32-bit integer
    lte-rrc.highSpeedFlag  highSpeedFlag
        Boolean
        BOOLEAN
    lte-rrc.hnb_Name  hnb-Name
        Byte array
        OCTET_STRING_SIZE_1_48
    lte-rrc.homeReg  homeReg
        Boolean
        BOOLEAN
    lte-rrc.hoppingMode  hoppingMode
        Unsigned 32-bit integer
    lte-rrc.hysteresis  hysteresis
        Unsigned 32-bit integer
    lte-rrc.idleModeMobilityControlInfo  idleModeMobilityControlInfo
        No value
    lte-rrc.implicitReleaseAfter  implicitReleaseAfter
        Unsigned 32-bit integer
    lte-rrc.ims_EmergencySupport_r9  ims-EmergencySupport-r9
        Unsigned 32-bit integer
        T_ims_EmergencySupport_r9
    lte-rrc.imsi  imsi
        Unsigned 32-bit integer
    lte-rrc.indexOfFormat3  indexOfFormat3
        Unsigned 32-bit integer
        INTEGER_1_15
    lte-rrc.indexOfFormat3A  indexOfFormat3A
        Unsigned 32-bit integer
        INTEGER_1_31
    lte-rrc.integrityProtAlgorithm  integrityProtAlgorithm
        Unsigned 32-bit integer
    lte-rrc.interFreqBandList  interFreqBandList
        Unsigned 32-bit integer
    lte-rrc.interFreqBlackCellList  interFreqBlackCellList
        Unsigned 32-bit integer
    lte-rrc.interFreqCarrierFreqList  interFreqCarrierFreqList
        Unsigned 32-bit integer
    lte-rrc.interFreqNeedForGaps  interFreqNeedForGaps
        Boolean
        BOOLEAN
    lte-rrc.interFreqNeighCellList  interFreqNeighCellList
        Unsigned 32-bit integer
    lte-rrc.interFreqProximityIndicationSupported_r9  interFreqProximityIndicationSupported-r9
        Boolean
        BOOLEAN
    lte-rrc.interFreqSI_AcquisitionForHO_Supported_r9  interFreqSI-AcquisitionForHO-Supported-r9
        Boolean
        BOOLEAN
    lte-rrc.interRAT  interRAT
        No value
    lte-rrc.interRAT_BandList  interRAT-BandList
        Unsigned 32-bit integer
    lte-rrc.interRAT_NeedForGaps  interRAT-NeedForGaps
        Boolean
        BOOLEAN
    lte-rrc.interRAT_PS_HO_ToGERAN  interRAT-PS-HO-ToGERAN
        Boolean
        BOOLEAN
    lte-rrc.interRAT_Parameters  interRAT-Parameters
        No value
        T_interRAT_Parameters
    lte-rrc.interRAT_ParametersGERAN_v920  interRAT-ParametersGERAN-v920
        No value
        IRAT_ParametersGERAN_v920
    lte-rrc.interRAT_ParametersUTRA_v920  interRAT-ParametersUTRA-v920
        No value
        IRAT_ParametersUTRA_v920
    lte-rrc.interRAT_Parameters_v920  interRAT-Parameters-v920
        No value
        IRAT_ParametersCDMA2000_1XRTT_v920
    lte-rrc.intraFreqBlackCellList  intraFreqBlackCellList
        Unsigned 32-bit integer
    lte-rrc.intraFreqCellReselectionInfo  intraFreqCellReselectionInfo
        No value
    lte-rrc.intraFreqNeighCellList  intraFreqNeighCellList
        Unsigned 32-bit integer
    lte-rrc.intraFreqProximityIndicationSupported_r9  intraFreqProximityIndicationSupported-r9
        Boolean
        BOOLEAN
    lte-rrc.intraFreqReselection  intraFreqReselection
        Unsigned 32-bit integer
    lte-rrc.intraFreqSI_AcquisitionForHO_Supported_r9  intraFreqSI-AcquisitionForHO-Supported-r9
        Boolean
        BOOLEAN
    lte-rrc.intraLTE  intraLTE
        No value
    lte-rrc.k  k
        Unsigned 32-bit integer
        INTEGER_1_4
    lte-rrc.keyChangeIndicator  keyChangeIndicator
        Boolean
        BOOLEAN
    lte-rrc.key_eNodeB_Star  key-eNodeB-Star
        Byte array
    lte-rrc.lateR8NonCriticalExtension  lateR8NonCriticalExtension
        Byte array
        OCTET_STRING
    lte-rrc.lateR9NonCriticalExtension  lateR9NonCriticalExtension
        Byte array
        OCTET_STRING
    lte-rrc.locationAreaCode  locationAreaCode
        Byte array
        BIT_STRING_SIZE_16
    lte-rrc.logicalChannelConfig  logicalChannelConfig
        Unsigned 32-bit integer
    lte-rrc.logicalChannelGroup  logicalChannelGroup
        Unsigned 32-bit integer
        INTEGER_0_3
    lte-rrc.logicalChannelIdentity  logicalChannelIdentity
        Unsigned 32-bit integer
        INTEGER_3_10
    lte-rrc.logicalChannelIdentity_r9  logicalChannelIdentity-r9
        Unsigned 32-bit integer
        INTEGER_0_maxSessionPerPMCH_1
    lte-rrc.logicalChannelSR_Mask_r9  logicalChannelSR-Mask-r9
        Unsigned 32-bit integer
    lte-rrc.longCodeState1XRTT  longCodeState1XRTT
        Byte array
        BIT_STRING_SIZE_42
    lte-rrc.longDRX_CycleStartOffset  longDRX-CycleStartOffset
        Unsigned 32-bit integer
    lte-rrc.m_TMSI  m-TMSI
        Byte array
        BIT_STRING_SIZE_32
    lte-rrc.mac_ContentionResolutionTimer  mac-ContentionResolutionTimer
        Unsigned 32-bit integer
    lte-rrc.mac_MainConfig  mac-MainConfig
        Unsigned 32-bit integer
    lte-rrc.maxCID  maxCID
        Unsigned 32-bit integer
        INTEGER_1_16383
    lte-rrc.maxHARQ_Msg3Tx  maxHARQ-Msg3Tx
        Unsigned 32-bit integer
        INTEGER_1_8
    lte-rrc.maxHARQ_Tx  maxHARQ-Tx
        Unsigned 32-bit integer
    lte-rrc.maxNumberROHC_ContextSessions  maxNumberROHC-ContextSessions
        Unsigned 32-bit integer
    lte-rrc.maxReportCells  maxReportCells
        Unsigned 32-bit integer
        INTEGER_1_maxCellReport
    lte-rrc.maxRetxThreshold  maxRetxThreshold
        Unsigned 32-bit integer
    lte-rrc.mbms_SessionInfoList_r9  mbms-SessionInfoList-r9
        Unsigned 32-bit integer
    lte-rrc.mbsfnAreaConfiguration_r9  mbsfnAreaConfiguration-r9
        No value
    lte-rrc.mbsfn_AreaId_r9  mbsfn-AreaId-r9
        Unsigned 32-bit integer
        INTEGER_0_255
    lte-rrc.mbsfn_AreaInfoList_r9  mbsfn-AreaInfoList-r9
        Unsigned 32-bit integer
    lte-rrc.mbsfn_SubframeConfigList  mbsfn-SubframeConfigList
        Unsigned 32-bit integer
    lte-rrc.mcc  mcc
        Unsigned 32-bit integer
    lte-rrc.mcch_Config_r9  mcch-Config-r9
        No value
    lte-rrc.mcch_ModificationPeriod_r9  mcch-ModificationPeriod-r9
        Unsigned 32-bit integer
    lte-rrc.mcch_Offset_r9  mcch-Offset-r9
        Unsigned 32-bit integer
        INTEGER_0_10
    lte-rrc.mcch_RepetitionPeriod_r9  mcch-RepetitionPeriod-r9
        Unsigned 32-bit integer
    lte-rrc.mch_SchedulingPeriod_r9  mch-SchedulingPeriod-r9
        Unsigned 32-bit integer
    lte-rrc.measConfig  measConfig
        No value
    lte-rrc.measGapConfig  measGapConfig
        Unsigned 32-bit integer
    lte-rrc.measId  measId
        Unsigned 32-bit integer
    lte-rrc.measIdToAddModList  measIdToAddModList
        Unsigned 32-bit integer
    lte-rrc.measIdToRemoveList  measIdToRemoveList
        Unsigned 32-bit integer
    lte-rrc.measObject  measObject
        Unsigned 32-bit integer
    lte-rrc.measObjectCDMA2000  measObjectCDMA2000
        No value
    lte-rrc.measObjectEUTRA  measObjectEUTRA
        No value
    lte-rrc.measObjectGERAN  measObjectGERAN
        No value
    lte-rrc.measObjectId  measObjectId
        Unsigned 32-bit integer
    lte-rrc.measObjectToAddModList  measObjectToAddModList
        Unsigned 32-bit integer
    lte-rrc.measObjectToRemoveList  measObjectToRemoveList
        Unsigned 32-bit integer
    lte-rrc.measObjectUTRA  measObjectUTRA
        No value
    lte-rrc.measParameters  measParameters
        No value
    lte-rrc.measQuantityCDMA2000  measQuantityCDMA2000
        Unsigned 32-bit integer
    lte-rrc.measQuantityGERAN  measQuantityGERAN
        Unsigned 32-bit integer
    lte-rrc.measQuantityUTRA_FDD  measQuantityUTRA-FDD
        Unsigned 32-bit integer
    lte-rrc.measQuantityUTRA_TDD  measQuantityUTRA-TDD
        Unsigned 32-bit integer
    lte-rrc.measResult  measResult
        No value
    lte-rrc.measResultForECID_r9  measResultForECID-r9
        No value
    lte-rrc.measResultLastServCell  measResultLastServCell
        No value
    lte-rrc.measResultList  measResultList
        Unsigned 32-bit integer
        MeasResultListEUTRA
    lte-rrc.measResultListCDMA2000  measResultListCDMA2000
        Unsigned 32-bit integer
    lte-rrc.measResultListEUTRA  measResultListEUTRA
        Unsigned 32-bit integer
        MeasResultList2EUTRA
    lte-rrc.measResultListGERAN  measResultListGERAN
        Unsigned 32-bit integer
    lte-rrc.measResultListUTRA  measResultListUTRA
        Unsigned 32-bit integer
        MeasResultList2UTRA
    lte-rrc.measResultNeighCells  measResultNeighCells
        No value
    lte-rrc.measResultServCell  measResultServCell
        No value
    lte-rrc.measResults  measResults
        No value
    lte-rrc.measResultsCDMA2000  measResultsCDMA2000
        Unsigned 32-bit integer
        MeasResultList2CDMA2000
    lte-rrc.measurementReport  measurementReport
        No value
    lte-rrc.measurementReport_r8  measurementReport-r8
        No value
        MeasurementReport_r8_IEs
    lte-rrc.meid  meid
        Byte array
        BIT_STRING_SIZE_56
    lte-rrc.message  message
        No value
        BCCH_BCH_MessageType
    lte-rrc.messageClassExtension  messageClassExtension
        No value
    lte-rrc.messageContCDMA2000_1XRTT_r9  messageContCDMA2000-1XRTT-r9
        Byte array
        OCTET_STRING
    lte-rrc.messageContCDMA2000_HRPD_r9  messageContCDMA2000-HRPD-r9
        Byte array
        OCTET_STRING
    lte-rrc.messageIdentifier  messageIdentifier
        Byte array
        BIT_STRING_SIZE_16
    lte-rrc.messageIdentifier_r9  messageIdentifier-r9
        Byte array
        BIT_STRING_SIZE_16
    lte-rrc.messagePowerOffsetGroupB  messagePowerOffsetGroupB
        Unsigned 32-bit integer
    lte-rrc.messageSizeGroupA  messageSizeGroupA
        Unsigned 32-bit integer
    lte-rrc.mmec  mmec
        Byte array
    lte-rrc.mmegi  mmegi
        Byte array
        BIT_STRING_SIZE_16
    lte-rrc.mnc  mnc
        Unsigned 32-bit integer
    lte-rrc.mobilityCDMA2000_HRPD_r9  mobilityCDMA2000-HRPD-r9
        Unsigned 32-bit integer
    lte-rrc.mobilityControlInfo  mobilityControlInfo
        No value
    lte-rrc.mobilityFromEUTRACommand  mobilityFromEUTRACommand
        No value
    lte-rrc.mobilityFromEUTRACommand_r8  mobilityFromEUTRACommand-r8
        No value
        MobilityFromEUTRACommand_r8_IEs
    lte-rrc.mobilityFromEUTRACommand_r9  mobilityFromEUTRACommand-r9
        No value
        MobilityFromEUTRACommand_r9_IEs
    lte-rrc.mobilityParameters  mobilityParameters
        Byte array
        MobilityParametersCDMA2000
    lte-rrc.mobilityStateParameters  mobilityStateParameters
        No value
    lte-rrc.modificationPeriodCoeff  modificationPeriodCoeff
        Unsigned 32-bit integer
    lte-rrc.multipleNID  multipleNID
        Boolean
        BOOLEAN
    lte-rrc.multipleSID  multipleSID
        Boolean
        BOOLEAN
    lte-rrc.n1PUCCH_AN  n1PUCCH-AN
        Unsigned 32-bit integer
        INTEGER_0_2047
    lte-rrc.n1PUCCH_AN_Rep  n1PUCCH-AN-Rep
        Unsigned 32-bit integer
        INTEGER_0_2047
    lte-rrc.n1_PUCCH_AN_PersistentList  n1-PUCCH-AN-PersistentList
        Unsigned 32-bit integer
    lte-rrc.n2TxAntenna_tm3  n2TxAntenna-tm3
        Byte array
        BIT_STRING_SIZE_2
    lte-rrc.n2TxAntenna_tm4  n2TxAntenna-tm4
        Byte array
        BIT_STRING_SIZE_6
    lte-rrc.n2TxAntenna_tm5  n2TxAntenna-tm5
        Byte array
        BIT_STRING_SIZE_4
    lte-rrc.n2TxAntenna_tm6  n2TxAntenna-tm6
        Byte array
        BIT_STRING_SIZE_4
    lte-rrc.n2TxAntenna_tm8_r9  n2TxAntenna-tm8-r9
        Byte array
        BIT_STRING_SIZE_6
    lte-rrc.n310  n310
        Unsigned 32-bit integer
    lte-rrc.n310_r9  n310-r9
        Unsigned 32-bit integer
    lte-rrc.n311  n311
        Unsigned 32-bit integer
    lte-rrc.n311_r9  n311-r9
        Unsigned 32-bit integer
    lte-rrc.n4TxAntenna_tm3  n4TxAntenna-tm3
        Byte array
        BIT_STRING_SIZE_4
    lte-rrc.n4TxAntenna_tm4  n4TxAntenna-tm4
        Byte array
        BIT_STRING_SIZE_64
    lte-rrc.n4TxAntenna_tm5  n4TxAntenna-tm5
        Byte array
        BIT_STRING_SIZE_16
    lte-rrc.n4TxAntenna_tm6  n4TxAntenna-tm6
        Byte array
        BIT_STRING_SIZE_16
    lte-rrc.n4TxAntenna_tm8_r9  n4TxAntenna-tm8-r9
        Byte array
        BIT_STRING_SIZE_32
    lte-rrc.nB  nB
        Unsigned 32-bit integer
    lte-rrc.nCS_AN  nCS-AN
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.nRB_CQI  nRB-CQI
        Unsigned 32-bit integer
        INTEGER_0_98
    lte-rrc.n_CellChangeHigh  n-CellChangeHigh
        Unsigned 32-bit integer
        INTEGER_1_16
    lte-rrc.n_CellChangeMedium  n-CellChangeMedium
        Unsigned 32-bit integer
        INTEGER_1_16
    lte-rrc.n_SB  n-SB
        Unsigned 32-bit integer
        INTEGER_1_4
    lte-rrc.nas_SecurityParamFromEUTRA  nas-SecurityParamFromEUTRA
        Byte array
        OCTET_STRING_SIZE_1
    lte-rrc.nas_SecurityParamToEUTRA  nas-SecurityParamToEUTRA
        Byte array
        OCTET_STRING_SIZE_6
    lte-rrc.ncc_Permitted  ncc-Permitted
        Byte array
        BIT_STRING_SIZE_8
    lte-rrc.neighCellConfig  neighCellConfig
        Byte array
    lte-rrc.neighCellList  neighCellList
        Unsigned 32-bit integer
        NeighCellListCDMA2000
    lte-rrc.neighCellList_v920  neighCellList-v920
        Unsigned 32-bit integer
        NeighCellListCDMA2000_v920
    lte-rrc.neighCellSI_AcquisitionParameters_r9  neighCellSI-AcquisitionParameters-r9
        No value
    lte-rrc.neighCellsPerFreqList  neighCellsPerFreqList
        Unsigned 32-bit integer
        NeighCellsPerBandclassListCDMA2000
    lte-rrc.neighCellsPerFreqList_v920  neighCellsPerFreqList-v920
        Unsigned 32-bit integer
        NeighCellsPerBandclassListCDMA2000_v920
    lte-rrc.networkColourCode  networkColourCode
        Byte array
        BIT_STRING_SIZE_3
    lte-rrc.networkControlOrder  networkControlOrder
        Byte array
        BIT_STRING_SIZE_2
    lte-rrc.newUE_Identity  newUE-Identity
        Byte array
        C_RNTI
    lte-rrc.nextHopChainingCount  nextHopChainingCount
        Unsigned 32-bit integer
    lte-rrc.nid  nid
        Byte array
        BIT_STRING_SIZE_16
    lte-rrc.nomPDSCH_RS_EPRE_Offset  nomPDSCH-RS-EPRE-Offset
        Signed 32-bit integer
        INTEGER_M1_6
    lte-rrc.nonCriticalExtension  nonCriticalExtension
        No value
    lte-rrc.non_MBSFNregionLength  non-MBSFNregionLength
        Unsigned 32-bit integer
    lte-rrc.notUsed  notUsed
        No value
    lte-rrc.notificationConfig_r9  notificationConfig-r9
        No value
        MBMS_NotificationConfig_r9
    lte-rrc.notificationIndicator_r9  notificationIndicator-r9
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.notificationOffset_r9  notificationOffset-r9
        Unsigned 32-bit integer
        INTEGER_0_10
    lte-rrc.notificationRepetitionCoeff_r9  notificationRepetitionCoeff-r9
        Unsigned 32-bit integer
    lte-rrc.notificationSF_Index_r9  notificationSF-Index-r9
        Unsigned 32-bit integer
        INTEGER_1_6
    lte-rrc.numberOfConfSPS_Processes  numberOfConfSPS-Processes
        Unsigned 32-bit integer
        INTEGER_1_8
    lte-rrc.numberOfFollowingARFCNs  numberOfFollowingARFCNs
        Unsigned 32-bit integer
        INTEGER_0_31
    lte-rrc.numberOfPreamblesSent_r9  numberOfPreamblesSent-r9
        Unsigned 32-bit integer
        INTEGER_1_200
    lte-rrc.numberOfRA_Preambles  numberOfRA-Preambles
        Unsigned 32-bit integer
    lte-rrc.offsetFreq  offsetFreq
        Signed 32-bit integer
        Q_OffsetRangeInterRAT
    lte-rrc.onDurationTimer  onDurationTimer
        Unsigned 32-bit integer
    lte-rrc.oneFrame  oneFrame
        Byte array
        BIT_STRING_SIZE_6
    lte-rrc.otherConfig_r9  otherConfig-r9
        No value
    lte-rrc.p0_NominalPUCCH  p0-NominalPUCCH
        Signed 32-bit integer
        INTEGER_M127_M96
    lte-rrc.p0_NominalPUSCH  p0-NominalPUSCH
        Signed 32-bit integer
        INTEGER_M126_24
    lte-rrc.p0_NominalPUSCH_Persistent  p0-NominalPUSCH-Persistent
        Signed 32-bit integer
        INTEGER_M126_24
    lte-rrc.p0_Persistent  p0-Persistent
        No value
    lte-rrc.p0_UE_PUCCH  p0-UE-PUCCH
        Signed 32-bit integer
        INTEGER_M8_7
    lte-rrc.p0_UE_PUSCH  p0-UE-PUSCH
        Signed 32-bit integer
        INTEGER_M8_7
    lte-rrc.p0_UE_PUSCH_Persistent  p0-UE-PUSCH-Persistent
        Signed 32-bit integer
        INTEGER_M8_7
    lte-rrc.pSRS_Offset  pSRS-Offset
        Unsigned 32-bit integer
        INTEGER_0_15
    lte-rrc.p_Max  p-Max
        Signed 32-bit integer
    lte-rrc.p_MaxGERAN  p-MaxGERAN
        Unsigned 32-bit integer
        INTEGER_0_39
    lte-rrc.p_MaxUTRA  p-MaxUTRA
        Signed 32-bit integer
        INTEGER_M50_33
    lte-rrc.p_a  p-a
        Unsigned 32-bit integer
    lte-rrc.p_b  p-b
        Unsigned 32-bit integer
        INTEGER_0_3
    lte-rrc.paging  paging
        No value
    lte-rrc.pagingRecordList  pagingRecordList
        Unsigned 32-bit integer
    lte-rrc.parameterReg  parameterReg
        Boolean
        BOOLEAN
    lte-rrc.parameters1XRTT  parameters1XRTT
        No value
    lte-rrc.parametersHRPD  parametersHRPD
        No value
    lte-rrc.pcch_Config  pcch-Config
        No value
    lte-rrc.pdcp_Config  pdcp-Config
        No value
    lte-rrc.pdcp_Parameters  pdcp-Parameters
        No value
    lte-rrc.pdcp_SN_Size  pdcp-SN-Size
        Unsigned 32-bit integer
    lte-rrc.pdsch_ConfigCommon  pdsch-ConfigCommon
        No value
    lte-rrc.pdsch_ConfigDedicated  pdsch-ConfigDedicated
        No value
    lte-rrc.periodicBSR_Timer  periodicBSR-Timer
        Unsigned 32-bit integer
    lte-rrc.periodicPHR_Timer  periodicPHR-Timer
        Unsigned 32-bit integer
    lte-rrc.periodical  periodical
        No value
    lte-rrc.phich_Config  phich-Config
        No value
    lte-rrc.phich_Duration  phich-Duration
        Unsigned 32-bit integer
    lte-rrc.phich_Resource  phich-Resource
        Unsigned 32-bit integer
    lte-rrc.phr_Config  phr-Config
        Unsigned 32-bit integer
    lte-rrc.phyLayerParameters  phyLayerParameters
        No value
    lte-rrc.phyLayerParameters_v920  phyLayerParameters-v920
        No value
    lte-rrc.physCellId  physCellId
        No value
        PhysCellIdGERAN
    lte-rrc.physCellIdCDMA2000  physCellIdCDMA2000
        Unsigned 32-bit integer
    lte-rrc.physCellIdEUTRA  physCellIdEUTRA
        Unsigned 32-bit integer
        PhysCellId
    lte-rrc.physCellIdGERAN  physCellIdGERAN
        No value
    lte-rrc.physCellIdList  physCellIdList
        Unsigned 32-bit integer
        PhysCellIdListCDMA2000
    lte-rrc.physCellIdList_v920  physCellIdList-v920
        Unsigned 32-bit integer
        PhysCellIdListCDMA2000_v920
    lte-rrc.physCellIdRange  physCellIdRange
        No value
    lte-rrc.physCellIdUTRA  physCellIdUTRA
        Unsigned 32-bit integer
    lte-rrc.physCellId_r9  physCellId-r9
        No value
        PhysCellIdGERAN
    lte-rrc.physicalConfigDedicated  physicalConfigDedicated
        No value
    lte-rrc.pilotPnPhase  pilotPnPhase
        Unsigned 32-bit integer
        INTEGER_0_32767
    lte-rrc.pilotStrength  pilotStrength
        Unsigned 32-bit integer
        INTEGER_0_63
    lte-rrc.plmn_Id_r9  plmn-Id-r9
        Unsigned 32-bit integer
    lte-rrc.plmn_Identity  plmn-Identity
        No value
    lte-rrc.plmn_IdentityList  plmn-IdentityList
        Unsigned 32-bit integer
    lte-rrc.plmn_Index_r9  plmn-Index-r9
        Unsigned 32-bit integer
        INTEGER_1_6
    lte-rrc.pmch_Config_r9  pmch-Config-r9
        No value
    lte-rrc.pmch_InfoList_r9  pmch-InfoList-r9
        Unsigned 32-bit integer
    lte-rrc.pmi_RI_Report_r9  pmi-RI-Report-r9
        Unsigned 32-bit integer
        T_pmi_RI_Report_r9
    lte-rrc.pollByte  pollByte
        Unsigned 32-bit integer
    lte-rrc.pollPDU  pollPDU
        Unsigned 32-bit integer
    lte-rrc.powerDownReg_r9  powerDownReg-r9
        Unsigned 32-bit integer
    lte-rrc.powerRampingParameters  powerRampingParameters
        No value
    lte-rrc.powerRampingStep  powerRampingStep
        Unsigned 32-bit integer
    lte-rrc.powerUpReg  powerUpReg
        Boolean
        BOOLEAN
    lte-rrc.prach_Config  prach-Config
        No value
        PRACH_ConfigSIB
    lte-rrc.prach_ConfigIndex  prach-ConfigIndex
        Unsigned 32-bit integer
        INTEGER_0_63
    lte-rrc.prach_ConfigInfo  prach-ConfigInfo
        No value
    lte-rrc.prach_FreqOffset  prach-FreqOffset
        Unsigned 32-bit integer
        INTEGER_0_94
    lte-rrc.preRegistrationAllowed  preRegistrationAllowed
        Boolean
        BOOLEAN
    lte-rrc.preRegistrationInfoHRPD  preRegistrationInfoHRPD
        No value
    lte-rrc.preRegistrationStatusHRPD  preRegistrationStatusHRPD
        Boolean
        BOOLEAN
    lte-rrc.preRegistrationZoneId  preRegistrationZoneId
        Unsigned 32-bit integer
        PreRegistrationZoneIdHRPD
    lte-rrc.preambleInfo  preambleInfo
        No value
    lte-rrc.preambleInitialReceivedTargetPower  preambleInitialReceivedTargetPower
        Unsigned 32-bit integer
    lte-rrc.preambleTransMax  preambleTransMax
        Unsigned 32-bit integer
    lte-rrc.preamblesGroupAConfig  preamblesGroupAConfig
        No value
    lte-rrc.presenceAntennaPort1  presenceAntennaPort1
        Boolean
    lte-rrc.prioritisedBitRate  prioritisedBitRate
        Unsigned 32-bit integer
    lte-rrc.priority  priority
        Unsigned 32-bit integer
        INTEGER_1_16
    lte-rrc.profile0x0001  profile0x0001
        Boolean
        BOOLEAN
    lte-rrc.profile0x0002  profile0x0002
        Boolean
        BOOLEAN
    lte-rrc.profile0x0003  profile0x0003
        Boolean
        BOOLEAN
    lte-rrc.profile0x0004  profile0x0004
        Boolean
        BOOLEAN
    lte-rrc.profile0x0006  profile0x0006
        Boolean
        BOOLEAN
    lte-rrc.profile0x0101  profile0x0101
        Boolean
        BOOLEAN
    lte-rrc.profile0x0102  profile0x0102
        Boolean
        BOOLEAN
    lte-rrc.profile0x0103  profile0x0103
        Boolean
        BOOLEAN
    lte-rrc.profile0x0104  profile0x0104
        Boolean
        BOOLEAN
    lte-rrc.profiles  profiles
        No value
    lte-rrc.prohibitPHR_Timer  prohibitPHR-Timer
        Unsigned 32-bit integer
    lte-rrc.proximityIndicationEUTRA_r9  proximityIndicationEUTRA-r9
        Unsigned 32-bit integer
    lte-rrc.proximityIndicationUTRA_r9  proximityIndicationUTRA-r9
        Unsigned 32-bit integer
    lte-rrc.proximityIndication_r9  proximityIndication-r9
        No value
    lte-rrc.psi  psi
        Unsigned 32-bit integer
        SystemInfoListGERAN
    lte-rrc.pucch_ConfigCommon  pucch-ConfigCommon
        No value
    lte-rrc.pucch_ConfigDedicated  pucch-ConfigDedicated
        No value
    lte-rrc.purpose  purpose
        Unsigned 32-bit integer
    lte-rrc.pusch_ConfigBasic  pusch-ConfigBasic
        No value
    lte-rrc.pusch_ConfigCommon  pusch-ConfigCommon
        No value
    lte-rrc.pusch_ConfigDedicated  pusch-ConfigDedicated
        No value
    lte-rrc.pusch_HoppingOffset  pusch-HoppingOffset
        Unsigned 32-bit integer
        INTEGER_0_98
    lte-rrc.q_Hyst  q-Hyst
        Unsigned 32-bit integer
    lte-rrc.q_HystSF  q-HystSF
        No value
    lte-rrc.q_OffsetCell  q-OffsetCell
        Unsigned 32-bit integer
        Q_OffsetRange
    lte-rrc.q_OffsetFreq  q-OffsetFreq
        Unsigned 32-bit integer
        Q_OffsetRange
    lte-rrc.q_QualMin  q-QualMin
        Signed 32-bit integer
        INTEGER_M24_0
    lte-rrc.q_QualMinOffset_r9  q-QualMinOffset-r9
        Unsigned 32-bit integer
        INTEGER_1_8
    lte-rrc.q_QualMin_r9  q-QualMin-r9
        Signed 32-bit integer
    lte-rrc.q_RxLevMin  q-RxLevMin
        Signed 32-bit integer
    lte-rrc.q_RxLevMinOffset  q-RxLevMinOffset
        Unsigned 32-bit integer
        INTEGER_1_8
    lte-rrc.quantityConfig  quantityConfig
        No value
    lte-rrc.quantityConfigCDMA2000  quantityConfigCDMA2000
        No value
    lte-rrc.quantityConfigEUTRA  quantityConfigEUTRA
        No value
    lte-rrc.quantityConfigGERAN  quantityConfigGERAN
        No value
    lte-rrc.quantityConfigUTRA  quantityConfigUTRA
        No value
    lte-rrc.ra_PRACH_MaskIndex  ra-PRACH-MaskIndex
        Unsigned 32-bit integer
        INTEGER_0_15
    lte-rrc.ra_PreambleIndex  ra-PreambleIndex
        Unsigned 32-bit integer
        INTEGER_0_63
    lte-rrc.ra_ResponseWindowSize  ra-ResponseWindowSize
        Unsigned 32-bit integer
    lte-rrc.ra_SupervisionInfo  ra-SupervisionInfo
        No value
    lte-rrc.rach_ConfigCommon  rach-ConfigCommon
        No value
    lte-rrc.rach_ConfigDedicated  rach-ConfigDedicated
        No value
    lte-rrc.rach_ReportReq_r9  rach-ReportReq-r9
        Boolean
        BOOLEAN
    lte-rrc.rach_ReportSupported_r9  rach-ReportSupported-r9
        Boolean
        BOOLEAN
    lte-rrc.rach_Report_r9  rach-Report-r9
        No value
        T_rach_Report_r9
    lte-rrc.radioResourceConfigCommon  radioResourceConfigCommon
        No value
        RadioResourceConfigCommonSIB
    lte-rrc.radioResourceConfigDedicated  radioResourceConfigDedicated
        No value
    lte-rrc.radioframeAllocationOffset  radioframeAllocationOffset
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.radioframeAllocationPeriod  radioframeAllocationPeriod
        Unsigned 32-bit integer
    lte-rrc.rand  rand
        Byte array
        RAND_CDMA2000
    lte-rrc.randomValue  randomValue
        Byte array
        BIT_STRING_SIZE_40
    lte-rrc.range  range
        Unsigned 32-bit integer
    lte-rrc.rat_Type  rat-Type
        Unsigned 32-bit integer
    lte-rrc.redirectCarrierCDMA2000_HRPD_r9  redirectCarrierCDMA2000-HRPD-r9
        No value
        CarrierFreqCDMA2000
    lte-rrc.redirectedCarrierInfo  redirectedCarrierInfo
        Unsigned 32-bit integer
    lte-rrc.reestablishmentCause  reestablishmentCause
        Unsigned 32-bit integer
    lte-rrc.reestablishmentInfo  reestablishmentInfo
        No value
    lte-rrc.referenceSignalPower  referenceSignalPower
        Signed 32-bit integer
        INTEGER_M60_50
    lte-rrc.registeredMME  registeredMME
        No value
    lte-rrc.registrationPeriod  registrationPeriod
        Byte array
        BIT_STRING_SIZE_7
    lte-rrc.registrationZone  registrationZone
        Byte array
        BIT_STRING_SIZE_12
    lte-rrc.release  release
        No value
    lte-rrc.releaseCause  releaseCause
        Unsigned 32-bit integer
    lte-rrc.repetitionFactor  repetitionFactor
        Unsigned 32-bit integer
    lte-rrc.reportAmount  reportAmount
        Unsigned 32-bit integer
    lte-rrc.reportConfig  reportConfig
        Unsigned 32-bit integer
    lte-rrc.reportConfigEUTRA  reportConfigEUTRA
        No value
    lte-rrc.reportConfigId  reportConfigId
        Unsigned 32-bit integer
    lte-rrc.reportConfigInterRAT  reportConfigInterRAT
        No value
    lte-rrc.reportConfigToAddModList  reportConfigToAddModList
        Unsigned 32-bit integer
    lte-rrc.reportConfigToRemoveList  reportConfigToRemoveList
        Unsigned 32-bit integer
    lte-rrc.reportInterval  reportInterval
        Unsigned 32-bit integer
    lte-rrc.reportOnLeave  reportOnLeave
        Boolean
        BOOLEAN
    lte-rrc.reportProximityConfig_r9  reportProximityConfig-r9
        No value
    lte-rrc.reportQuantity  reportQuantity
        Unsigned 32-bit integer
    lte-rrc.retxBSR_Timer  retxBSR-Timer
        Unsigned 32-bit integer
    lte-rrc.rf_Parameters  rf-Parameters
        No value
    lte-rrc.ri_ConfigIndex  ri-ConfigIndex
        Unsigned 32-bit integer
        INTEGER_0_1023
    lte-rrc.rlc_AM  rlc-AM
        No value
    lte-rrc.rlc_Config  rlc-Config
        Unsigned 32-bit integer
    lte-rrc.rlc_UM  rlc-UM
        No value
    lte-rrc.rlfReport_r9  rlfReport-r9
        No value
        RLF_Report_r9
    lte-rrc.rlf_InfoAvailable_r9  rlf-InfoAvailable-r9
        Unsigned 32-bit integer
    lte-rrc.rlf_ReportReq_r9  rlf-ReportReq-r9
        Boolean
        BOOLEAN
    lte-rrc.rlf_TimersAndConstants_r9  rlf-TimersAndConstants-r9
        Unsigned 32-bit integer
    lte-rrc.rohc  rohc
        No value
    lte-rrc.rootSequenceIndex  rootSequenceIndex
        Unsigned 32-bit integer
        INTEGER_0_837
    lte-rrc.routingAreaCode  routingAreaCode
        Byte array
        BIT_STRING_SIZE_8
    lte-rrc.rrcConnectionReconfiguration  rrcConnectionReconfiguration
        No value
    lte-rrc.rrcConnectionReconfigurationComplete  rrcConnectionReconfigurationComplete
        No value
    lte-rrc.rrcConnectionReconfigurationComplete_r8  rrcConnectionReconfigurationComplete-r8
        No value
        RRCConnectionReconfigurationComplete_r8_IEs
    lte-rrc.rrcConnectionReconfiguration_r8  rrcConnectionReconfiguration-r8
        No value
        RRCConnectionReconfiguration_r8_IEs
    lte-rrc.rrcConnectionReestablishment  rrcConnectionReestablishment
        No value
    lte-rrc.rrcConnectionReestablishmentComplete  rrcConnectionReestablishmentComplete
        No value
    lte-rrc.rrcConnectionReestablishmentComplete_r8  rrcConnectionReestablishmentComplete-r8
        No value
        RRCConnectionReestablishmentComplete_r8_IEs
    lte-rrc.rrcConnectionReestablishmentReject  rrcConnectionReestablishmentReject
        No value
    lte-rrc.rrcConnectionReestablishmentReject_r8  rrcConnectionReestablishmentReject-r8
        No value
        RRCConnectionReestablishmentReject_r8_IEs
    lte-rrc.rrcConnectionReestablishmentRequest  rrcConnectionReestablishmentRequest
        No value
    lte-rrc.rrcConnectionReestablishmentRequest_r8  rrcConnectionReestablishmentRequest-r8
        No value
        RRCConnectionReestablishmentRequest_r8_IEs
    lte-rrc.rrcConnectionReestablishment_r8  rrcConnectionReestablishment-r8
        No value
        RRCConnectionReestablishment_r8_IEs
    lte-rrc.rrcConnectionReject  rrcConnectionReject
        No value
    lte-rrc.rrcConnectionReject_r8  rrcConnectionReject-r8
        No value
        RRCConnectionReject_r8_IEs
    lte-rrc.rrcConnectionRelease  rrcConnectionRelease
        No value
    lte-rrc.rrcConnectionRelease_r8  rrcConnectionRelease-r8
        No value
        RRCConnectionRelease_r8_IEs
    lte-rrc.rrcConnectionRequest  rrcConnectionRequest
        No value
    lte-rrc.rrcConnectionRequest_r8  rrcConnectionRequest-r8
        No value
        RRCConnectionRequest_r8_IEs
    lte-rrc.rrcConnectionSetup  rrcConnectionSetup
        No value
    lte-rrc.rrcConnectionSetupComplete  rrcConnectionSetupComplete
        No value
    lte-rrc.rrcConnectionSetupComplete_r8  rrcConnectionSetupComplete-r8
        No value
        RRCConnectionSetupComplete_r8_IEs
    lte-rrc.rrcConnectionSetup_r8  rrcConnectionSetup-r8
        No value
        RRCConnectionSetup_r8_IEs
    lte-rrc.rrc_TransactionIdentifier  rrc-TransactionIdentifier
        Unsigned 32-bit integer
    lte-rrc.rrm_Config  rrm-Config
        No value
    lte-rrc.rsrpResult  rsrpResult
        Unsigned 32-bit integer
        RSRP_Range
    lte-rrc.rsrqResult  rsrqResult
        Unsigned 32-bit integer
        RSRQ_Range
    lte-rrc.rssi  rssi
        Unsigned 32-bit integer
        INTEGER_0_63
    lte-rrc.rx_Config1XRTT  rx-Config1XRTT
        Unsigned 32-bit integer
    lte-rrc.rx_ConfigHRPD  rx-ConfigHRPD
        Unsigned 32-bit integer
    lte-rrc.s_IntraSearch  s-IntraSearch
        Unsigned 32-bit integer
        ReselectionThreshold
    lte-rrc.s_IntraSearchP_r9  s-IntraSearchP-r9
        Unsigned 32-bit integer
        ReselectionThreshold
    lte-rrc.s_IntraSearchQ_r9  s-IntraSearchQ-r9
        Unsigned 32-bit integer
        ReselectionThresholdQ_r9
    lte-rrc.s_IntraSearch_v920  s-IntraSearch-v920
        No value
    lte-rrc.s_Measure  s-Measure
        Unsigned 32-bit integer
        RSRP_Range
    lte-rrc.s_NonIntraSearch  s-NonIntraSearch
        Unsigned 32-bit integer
        ReselectionThreshold
    lte-rrc.s_NonIntraSearchP_r9  s-NonIntraSearchP-r9
        Unsigned 32-bit integer
        ReselectionThreshold
    lte-rrc.s_NonIntraSearchQ_r9  s-NonIntraSearchQ-r9
        Unsigned 32-bit integer
        ReselectionThresholdQ_r9
    lte-rrc.s_NonIntraSearch_v920  s-NonIntraSearch-v920
        No value
    lte-rrc.s_TMSI  s-TMSI
        No value
    lte-rrc.schedulingInfoList  schedulingInfoList
        Unsigned 32-bit integer
    lte-rrc.schedulingRequestConfig  schedulingRequestConfig
        Unsigned 32-bit integer
    lte-rrc.searchWindowSize  searchWindowSize
        Unsigned 32-bit integer
        INTEGER_0_15
    lte-rrc.secondaryPreRegistrationZoneIdList  secondaryPreRegistrationZoneIdList
        Unsigned 32-bit integer
        SecondaryPreRegistrationZoneIdListHRPD
    lte-rrc.securityAlgorithmConfig  securityAlgorithmConfig
        No value
    lte-rrc.securityConfigHO  securityConfigHO
        No value
    lte-rrc.securityConfigSMC  securityConfigSMC
        No value
    lte-rrc.securityModeCommand  securityModeCommand
        No value
    lte-rrc.securityModeCommand_r8  securityModeCommand-r8
        No value
        SecurityModeCommand_r8_IEs
    lte-rrc.securityModeComplete  securityModeComplete
        No value
    lte-rrc.securityModeComplete_r8  securityModeComplete-r8
        No value
        SecurityModeComplete_r8_IEs
    lte-rrc.securityModeFailure  securityModeFailure
        No value
    lte-rrc.securityModeFailure_r8  securityModeFailure-r8
        No value
        SecurityModeFailure_r8_IEs
    lte-rrc.selectedPLMN_Identity  selectedPLMN-Identity
        Unsigned 32-bit integer
        INTEGER_1_6
    lte-rrc.semiPersistSchedC_RNTI  semiPersistSchedC-RNTI
        Byte array
        C_RNTI
    lte-rrc.semiPersistSchedIntervalDL  semiPersistSchedIntervalDL
        Unsigned 32-bit integer
    lte-rrc.semiPersistSchedIntervalUL  semiPersistSchedIntervalUL
        Unsigned 32-bit integer
    lte-rrc.sequenceHoppingEnabled  sequenceHoppingEnabled
        Boolean
        BOOLEAN
    lte-rrc.serialNumber  serialNumber
        Byte array
        BIT_STRING_SIZE_16
    lte-rrc.serialNumber_r9  serialNumber-r9
        Byte array
        BIT_STRING_SIZE_16
    lte-rrc.serviceId_r9  serviceId-r9
        Byte array
        OCTET_STRING_SIZE_3
    lte-rrc.sessionId_r9  sessionId-r9
        Byte array
        OCTET_STRING_SIZE_1
    lte-rrc.setup  setup
        Unsigned 32-bit integer
    lte-rrc.sf10  sf10
        Unsigned 32-bit integer
        INTEGER_0_9
    lte-rrc.sf1024  sf1024
        Unsigned 32-bit integer
        INTEGER_0_1023
    lte-rrc.sf128  sf128
        Unsigned 32-bit integer
        INTEGER_0_127
    lte-rrc.sf1280  sf1280
        Unsigned 32-bit integer
        INTEGER_0_1279
    lte-rrc.sf160  sf160
        Unsigned 32-bit integer
        INTEGER_0_159
    lte-rrc.sf20  sf20
        Unsigned 32-bit integer
        INTEGER_0_19
    lte-rrc.sf2048  sf2048
        Unsigned 32-bit integer
        INTEGER_0_2047
    lte-rrc.sf256  sf256
        Unsigned 32-bit integer
        INTEGER_0_255
    lte-rrc.sf2560  sf2560
        Unsigned 32-bit integer
        INTEGER_0_2559
    lte-rrc.sf32  sf32
        Unsigned 32-bit integer
        INTEGER_0_31
    lte-rrc.sf320  sf320
        Unsigned 32-bit integer
        INTEGER_0_319
    lte-rrc.sf40  sf40
        Unsigned 32-bit integer
        INTEGER_0_39
    lte-rrc.sf512  sf512
        Unsigned 32-bit integer
        INTEGER_0_511
    lte-rrc.sf64  sf64
        Unsigned 32-bit integer
        INTEGER_0_63
    lte-rrc.sf640  sf640
        Unsigned 32-bit integer
        INTEGER_0_639
    lte-rrc.sf80  sf80
        Unsigned 32-bit integer
        INTEGER_0_79
    lte-rrc.sf_AllocEnd_r9  sf-AllocEnd-r9
        Unsigned 32-bit integer
        INTEGER_0_1535
    lte-rrc.sf_AllocInfo_r9  sf-AllocInfo-r9
        Byte array
        BIT_STRING_SIZE_6
    lte-rrc.sf_High  sf-High
        Unsigned 32-bit integer
    lte-rrc.sf_Medium  sf-Medium
        Unsigned 32-bit integer
    lte-rrc.shortDRX  shortDRX
        No value
    lte-rrc.shortDRX_Cycle  shortDRX-Cycle
        Unsigned 32-bit integer
    lte-rrc.shortMAC_I  shortMAC-I
        Byte array
    lte-rrc.si  si
        Unsigned 32-bit integer
        SystemInfoListGERAN
    lte-rrc.si_Periodicity  si-Periodicity
        Unsigned 32-bit integer
    lte-rrc.si_RequestForHO_r9  si-RequestForHO-r9
        Unsigned 32-bit integer
    lte-rrc.si_WindowLength  si-WindowLength
        Unsigned 32-bit integer
    lte-rrc.sib10  sib10
        No value
        SystemInformationBlockType10
    lte-rrc.sib11  sib11
        No value
        SystemInformationBlockType11
    lte-rrc.sib12_v920  sib12-v920
        No value
        SystemInformationBlockType12_r9
    lte-rrc.sib13_v920  sib13-v920
        No value
        SystemInformationBlockType13_r9
    lte-rrc.sib2  sib2
        No value
        SystemInformationBlockType2
    lte-rrc.sib3  sib3
        No value
        SystemInformationBlockType3
    lte-rrc.sib4  sib4
        No value
        SystemInformationBlockType4
    lte-rrc.sib5  sib5
        No value
        SystemInformationBlockType5
    lte-rrc.sib6  sib6
        No value
        SystemInformationBlockType6
    lte-rrc.sib7  sib7
        No value
        SystemInformationBlockType7
    lte-rrc.sib8  sib8
        No value
        SystemInformationBlockType8
    lte-rrc.sib9  sib9
        No value
        SystemInformationBlockType9
    lte-rrc.sib_MappingInfo  sib-MappingInfo
        Unsigned 32-bit integer
    lte-rrc.sib_TypeAndInfo  sib-TypeAndInfo
        Unsigned 32-bit integer
    lte-rrc.sib_TypeAndInfo_item  sib-TypeAndInfo item
        Unsigned 32-bit integer
    lte-rrc.sid  sid
        Byte array
        BIT_STRING_SIZE_15
    lte-rrc.signallingMCS_r9  signallingMCS-r9
        Unsigned 32-bit integer
    lte-rrc.simultaneousAckNackAndCQI  simultaneousAckNackAndCQI
        Boolean
        BOOLEAN
    lte-rrc.sizeOfRA_PreamblesGroupA  sizeOfRA-PreamblesGroupA
        Unsigned 32-bit integer
    lte-rrc.sn_FieldLength  sn-FieldLength
        Unsigned 32-bit integer
    lte-rrc.son_Parameters_r9  son-Parameters-r9
        No value
    lte-rrc.soundingRS_UL_ConfigCommon  soundingRS-UL-ConfigCommon
        Unsigned 32-bit integer
    lte-rrc.soundingRS_UL_ConfigDedicated  soundingRS-UL-ConfigDedicated
        Unsigned 32-bit integer
    lte-rrc.sourceDl_CarrierFreq  sourceDl-CarrierFreq
        Unsigned 32-bit integer
        ARFCN_ValueEUTRA
    lte-rrc.sourceMasterInformationBlock  sourceMasterInformationBlock
        No value
        MasterInformationBlock
    lte-rrc.sourceMeasConfig  sourceMeasConfig
        No value
        MeasConfig
    lte-rrc.sourceOtherConfig_r9  sourceOtherConfig-r9
        No value
        OtherConfig_r9
    lte-rrc.sourcePhysCellId  sourcePhysCellId
        Unsigned 32-bit integer
        PhysCellId
    lte-rrc.sourceRadioResourceConfig  sourceRadioResourceConfig
        No value
        RadioResourceConfigDedicated
    lte-rrc.sourceSecurityAlgorithmConfig  sourceSecurityAlgorithmConfig
        No value
        SecurityAlgorithmConfig
    lte-rrc.sourceSystemInformationBlockType1  sourceSystemInformationBlockType1
        No value
        SystemInformationBlockType1
    lte-rrc.sourceSystemInformationBlockType1Ext  sourceSystemInformationBlockType1Ext
        Byte array
    lte-rrc.sourceSystemInformationBlockType2  sourceSystemInformationBlockType2
        No value
        SystemInformationBlockType2
    lte-rrc.sourceUE_Identity  sourceUE-Identity
        Byte array
        C_RNTI
    lte-rrc.spare  spare
        Byte array
        BIT_STRING_SIZE_10
    lte-rrc.spare1  spare1
        No value
    lte-rrc.spare2  spare2
        No value
    lte-rrc.spare3  spare3
        No value
    lte-rrc.spare4  spare4
        No value
    lte-rrc.spare5  spare5
        No value
    lte-rrc.spare6  spare6
        No value
    lte-rrc.spare7  spare7
        No value
    lte-rrc.specialSubframePatterns  specialSubframePatterns
        Unsigned 32-bit integer
    lte-rrc.speedStatePars  speedStatePars
        Unsigned 32-bit integer
    lte-rrc.speedStateReselectionPars  speedStateReselectionPars
        No value
    lte-rrc.sps_Config  sps-Config
        No value
    lte-rrc.sps_ConfigDL  sps-ConfigDL
        Unsigned 32-bit integer
    lte-rrc.sps_ConfigUL  sps-ConfigUL
        Unsigned 32-bit integer
    lte-rrc.sr_ConfigIndex  sr-ConfigIndex
        Unsigned 32-bit integer
        INTEGER_0_157
    lte-rrc.sr_PUCCH_ResourceIndex  sr-PUCCH-ResourceIndex
        Unsigned 32-bit integer
        INTEGER_0_2047
    lte-rrc.sr_ProhibitTimer_r9  sr-ProhibitTimer-r9
        Unsigned 32-bit integer
        INTEGER_0_7
    lte-rrc.srb_Identity  srb-Identity
        Unsigned 32-bit integer
        INTEGER_1_2
    lte-rrc.srb_ToAddModList  srb-ToAddModList
        Unsigned 32-bit integer
    lte-rrc.srs_Bandwidth  srs-Bandwidth
        Unsigned 32-bit integer
    lte-rrc.srs_BandwidthConfig  srs-BandwidthConfig
        Unsigned 32-bit integer
    lte-rrc.srs_ConfigIndex  srs-ConfigIndex
        Unsigned 32-bit integer
        INTEGER_0_1023
    lte-rrc.srs_HoppingBandwidth  srs-HoppingBandwidth
        Unsigned 32-bit integer
    lte-rrc.srs_MaxUpPts  srs-MaxUpPts
        Unsigned 32-bit integer
    lte-rrc.srs_SubframeConfig  srs-SubframeConfig
        Unsigned 32-bit integer
    lte-rrc.ssac_BarringForMMTEL_Video_r9  ssac-BarringForMMTEL-Video-r9
        No value
        AC_BarringConfig
    lte-rrc.ssac_BarringForMMTEL_Voice_r9  ssac-BarringForMMTEL-Voice-r9
        No value
        AC_BarringConfig
    lte-rrc.start  start
        Unsigned 32-bit integer
        PhysCellId
    lte-rrc.startingARFCN  startingARFCN
        Unsigned 32-bit integer
        ARFCN_ValueGERAN
    lte-rrc.statusReportRequired  statusReportRequired
        Boolean
        BOOLEAN
    lte-rrc.subbandCQI  subbandCQI
        No value
    lte-rrc.subframeAllocation  subframeAllocation
        Unsigned 32-bit integer
    lte-rrc.subframeAssignment  subframeAssignment
        Unsigned 32-bit integer
    lte-rrc.supportedBandList1XRTT  supportedBandList1XRTT
        Unsigned 32-bit integer
    lte-rrc.supportedBandListEUTRA  supportedBandListEUTRA
        Unsigned 32-bit integer
    lte-rrc.supportedBandListGERAN  supportedBandListGERAN
        Unsigned 32-bit integer
    lte-rrc.supportedBandListHRPD  supportedBandListHRPD
        Unsigned 32-bit integer
    lte-rrc.supportedBandListUTRA_FDD  supportedBandListUTRA-FDD
        Unsigned 32-bit integer
    lte-rrc.supportedBandListUTRA_TDD128  supportedBandListUTRA-TDD128
        Unsigned 32-bit integer
    lte-rrc.supportedBandListUTRA_TDD384  supportedBandListUTRA-TDD384
        Unsigned 32-bit integer
    lte-rrc.supportedBandListUTRA_TDD768  supportedBandListUTRA-TDD768
        Unsigned 32-bit integer
    lte-rrc.supportedROHC_Profiles  supportedROHC-Profiles
        No value
    lte-rrc.synchronousSystemTime  synchronousSystemTime
        Byte array
        BIT_STRING_SIZE_39
    lte-rrc.systemFrameNumber  systemFrameNumber
        Byte array
        BIT_STRING_SIZE_8
    lte-rrc.systemInfoModification  systemInfoModification
        Unsigned 32-bit integer
    lte-rrc.systemInfoValueTag  systemInfoValueTag
        Unsigned 32-bit integer
        INTEGER_0_31
    lte-rrc.systemInformation  systemInformation
        No value
    lte-rrc.systemInformationBlockType1  systemInformationBlockType1
        No value
    lte-rrc.systemInformation_r8  systemInformation-r8
        No value
        SystemInformation_r8_IEs
    lte-rrc.systemInformation_r9  systemInformation-r9
        Unsigned 32-bit integer
        SystemInfoListGERAN
    lte-rrc.systemTimeInfo  systemTimeInfo
        No value
        SystemTimeInfoCDMA2000
    lte-rrc.t300  t300
        Unsigned 32-bit integer
    lte-rrc.t301  t301
        Unsigned 32-bit integer
    lte-rrc.t301_r9  t301-r9
        Unsigned 32-bit integer
    lte-rrc.t304  t304
        Unsigned 32-bit integer
    lte-rrc.t310  t310
        Unsigned 32-bit integer
    lte-rrc.t310_r9  t310-r9
        Unsigned 32-bit integer
    lte-rrc.t311  t311
        Unsigned 32-bit integer
    lte-rrc.t311_r9  t311-r9
        Unsigned 32-bit integer
    lte-rrc.t320  t320
        Unsigned 32-bit integer
    lte-rrc.t_Evaluation  t-Evaluation
        Unsigned 32-bit integer
        T_t_Evaluation
    lte-rrc.t_HystNormal  t-HystNormal
        Unsigned 32-bit integer
        T_t_HystNormal
    lte-rrc.t_PollRetransmit  t-PollRetransmit
        Unsigned 32-bit integer
    lte-rrc.t_Reordering  t-Reordering
        Unsigned 32-bit integer
    lte-rrc.t_ReselectionCDMA2000  t-ReselectionCDMA2000
        Unsigned 32-bit integer
        T_Reselection
    lte-rrc.t_ReselectionCDMA2000_SF  t-ReselectionCDMA2000-SF
        No value
        SpeedStateScaleFactors
    lte-rrc.t_ReselectionEUTRA  t-ReselectionEUTRA
        Unsigned 32-bit integer
        T_Reselection
    lte-rrc.t_ReselectionEUTRA_SF  t-ReselectionEUTRA-SF
        No value
        SpeedStateScaleFactors
    lte-rrc.t_ReselectionGERAN  t-ReselectionGERAN
        Unsigned 32-bit integer
        T_Reselection
    lte-rrc.t_ReselectionGERAN_SF  t-ReselectionGERAN-SF
        No value
        SpeedStateScaleFactors
    lte-rrc.t_ReselectionUTRA  t-ReselectionUTRA
        Unsigned 32-bit integer
        T_Reselection
    lte-rrc.t_ReselectionUTRA_SF  t-ReselectionUTRA-SF
        No value
        SpeedStateScaleFactors
    lte-rrc.t_StatusProhibit  t-StatusProhibit
        Unsigned 32-bit integer
    lte-rrc.targetCellShortMAC_I  targetCellShortMAC-I
        Byte array
        ShortMAC_I
    lte-rrc.targetPhysCellId  targetPhysCellId
        Unsigned 32-bit integer
        PhysCellId
    lte-rrc.targetRAT_MessageContainer  targetRAT-MessageContainer
        Byte array
        OCTET_STRING
    lte-rrc.targetRAT_Type  targetRAT-Type
        Unsigned 32-bit integer
        T_targetRAT_Type
    lte-rrc.tdd  tdd
        Unsigned 32-bit integer
        PhysCellIdUTRA_TDD
    lte-rrc.tdd_AckNackFeedbackMode  tdd-AckNackFeedbackMode
        Unsigned 32-bit integer
    lte-rrc.tdd_Config  tdd-Config
        No value
    lte-rrc.threshServingLow  threshServingLow
        Unsigned 32-bit integer
        ReselectionThreshold
    lte-rrc.threshServingLowQ_r9  threshServingLowQ-r9
        Unsigned 32-bit integer
        ReselectionThresholdQ_r9
    lte-rrc.threshX_High  threshX-High
        Unsigned 32-bit integer
        ReselectionThreshold
    lte-rrc.threshX_HighQ_r9  threshX-HighQ-r9
        Unsigned 32-bit integer
        ReselectionThresholdQ_r9
    lte-rrc.threshX_Low  threshX-Low
        Unsigned 32-bit integer
        ReselectionThreshold
    lte-rrc.threshX_LowQ_r9  threshX-LowQ-r9
        Unsigned 32-bit integer
        ReselectionThresholdQ_r9
    lte-rrc.threshX_Q_r9  threshX-Q-r9
        No value
    lte-rrc.threshold_RSRP  threshold-RSRP
        Unsigned 32-bit integer
        RSRP_Range
    lte-rrc.threshold_RSRQ  threshold-RSRQ
        Unsigned 32-bit integer
        RSRQ_Range
    lte-rrc.timeAlignmentTimerCommon  timeAlignmentTimerCommon
        Unsigned 32-bit integer
        TimeAlignmentTimer
    lte-rrc.timeAlignmentTimerDedicated  timeAlignmentTimerDedicated
        Unsigned 32-bit integer
        TimeAlignmentTimer
    lte-rrc.timeToTrigger  timeToTrigger
        Unsigned 32-bit integer
    lte-rrc.timeToTrigger_SF  timeToTrigger-SF
        No value
        SpeedStateScaleFactors
    lte-rrc.tmgi_r9  tmgi-r9
        No value
    lte-rrc.totalZone  totalZone
        Byte array
        BIT_STRING_SIZE_3
    lte-rrc.tpc_Index  tpc-Index
        Unsigned 32-bit integer
    lte-rrc.tpc_PDCCH_ConfigPUCCH  tpc-PDCCH-ConfigPUCCH
        Unsigned 32-bit integer
        TPC_PDCCH_Config
    lte-rrc.tpc_PDCCH_ConfigPUSCH  tpc-PDCCH-ConfigPUSCH
        Unsigned 32-bit integer
        TPC_PDCCH_Config
    lte-rrc.tpc_RNTI  tpc-RNTI
        Byte array
        BIT_STRING_SIZE_16
    lte-rrc.trackingAreaCode  trackingAreaCode
        Byte array
    lte-rrc.transmissionComb  transmissionComb
        Unsigned 32-bit integer
        INTEGER_0_1
    lte-rrc.transmissionMode  transmissionMode
        Unsigned 32-bit integer
    lte-rrc.triggerQuantity  triggerQuantity
        Unsigned 32-bit integer
    lte-rrc.triggerType  triggerType
        Unsigned 32-bit integer
    lte-rrc.ttiBundling  ttiBundling
        Boolean
        BOOLEAN
    lte-rrc.twoIntervalsConfig  twoIntervalsConfig
        Unsigned 32-bit integer
    lte-rrc.tx_Config1XRTT  tx-Config1XRTT
        Unsigned 32-bit integer
    lte-rrc.tx_ConfigHRPD  tx-ConfigHRPD
        Unsigned 32-bit integer
    lte-rrc.type_r9  type-r9
        Unsigned 32-bit integer
    lte-rrc.ueCapabilityEnquiry  ueCapabilityEnquiry
        No value
    lte-rrc.ueCapabilityEnquiry_r8  ueCapabilityEnquiry-r8
        No value
        UECapabilityEnquiry_r8_IEs
    lte-rrc.ueCapabilityInformation  ueCapabilityInformation
        No value
    lte-rrc.ueCapabilityInformation_r8  ueCapabilityInformation-r8
        No value
        UECapabilityInformation_r8_IEs
    lte-rrc.ueCapabilityRAT_Container  ueCapabilityRAT-Container
        Byte array
        T_ueCapabilityRAT_Container
    lte-rrc.ueInformationRequest_r9  ueInformationRequest-r9
        No value
    lte-rrc.ueInformationResponse_r9  ueInformationResponse-r9
        No value
    lte-rrc.ueRadioAccessCapabilityInformation_r8  ueRadioAccessCapabilityInformation-r8
        No value
        UERadioAccessCapabilityInformation_r8_IEs
    lte-rrc.ue_CapabilityRAT_ContainerList  ue-CapabilityRAT-ContainerList
        Unsigned 32-bit integer
    lte-rrc.ue_CapabilityRequest  ue-CapabilityRequest
        Unsigned 32-bit integer
    lte-rrc.ue_Category  ue-Category
        Unsigned 32-bit integer
        INTEGER_1_5
    lte-rrc.ue_ConfigRelease_r9  ue-ConfigRelease-r9
        Unsigned 32-bit integer
    lte-rrc.ue_Identity  ue-Identity
        Unsigned 32-bit integer
        PagingUE_Identity
    lte-rrc.ue_InactiveTime  ue-InactiveTime
        Unsigned 32-bit integer
    lte-rrc.ue_RadioAccessCapabilityInfo  ue-RadioAccessCapabilityInfo
        Unsigned 32-bit integer
        UE_CapabilityRAT_ContainerList
    lte-rrc.ue_RxTxTimeDiffPeriodical_r9  ue-RxTxTimeDiffPeriodical-r9
        Unsigned 32-bit integer
    lte-rrc.ue_RxTxTimeDiffResult_r9  ue-RxTxTimeDiffResult-r9
        Unsigned 32-bit integer
        INTEGER_0_4095
    lte-rrc.ue_SpecificRefSigsSupported  ue-SpecificRefSigsSupported
        Boolean
        BOOLEAN
    lte-rrc.ue_TimersAndConstants  ue-TimersAndConstants
        No value
    lte-rrc.ue_TransmitAntennaSelection  ue-TransmitAntennaSelection
        Unsigned 32-bit integer
    lte-rrc.ue_TxAntennaSelectionSupported  ue-TxAntennaSelectionSupported
        Boolean
        BOOLEAN
    lte-rrc.ulHandoverPreparationTransfer  ulHandoverPreparationTransfer
        No value
    lte-rrc.ulHandoverPreparationTransfer_r8  ulHandoverPreparationTransfer-r8
        No value
        ULHandoverPreparationTransfer_r8_IEs
    lte-rrc.ulInformationTransfer  ulInformationTransfer
        No value
    lte-rrc.ulInformationTransfer_r8  ulInformationTransfer-r8
        No value
        ULInformationTransfer_r8_IEs
    lte-rrc.ul_AM_RLC  ul-AM-RLC
        No value
    lte-rrc.ul_Bandwidth  ul-Bandwidth
        Unsigned 32-bit integer
    lte-rrc.ul_CarrierFreq  ul-CarrierFreq
        Unsigned 32-bit integer
        ARFCN_ValueEUTRA
    lte-rrc.ul_CyclicPrefixLength  ul-CyclicPrefixLength
        Unsigned 32-bit integer
    lte-rrc.ul_ReferenceSignalsPUSCH  ul-ReferenceSignalsPUSCH
        No value
    lte-rrc.ul_SCH_Config  ul-SCH-Config
        No value
    lte-rrc.ul_SpecificParameters  ul-SpecificParameters
        No value
    lte-rrc.ul_UM_RLC  ul-UM-RLC
        No value
    lte-rrc.um_Bi_Directional  um-Bi-Directional
        No value
    lte-rrc.um_Uni_Directional_DL  um-Uni-Directional-DL
        No value
    lte-rrc.um_Uni_Directional_UL  um-Uni-Directional-UL
        No value
    lte-rrc.uplinkPowerControlCommon  uplinkPowerControlCommon
        No value
    lte-rrc.uplinkPowerControlDedicated  uplinkPowerControlDedicated
        No value
    lte-rrc.utraFDD  utraFDD
        No value
        IRAT_ParametersUTRA_FDD
    lte-rrc.utraTDD128  utraTDD128
        No value
        IRAT_ParametersUTRA_TDD128
    lte-rrc.utraTDD384  utraTDD384
        No value
        IRAT_ParametersUTRA_TDD384
    lte-rrc.utraTDD768  utraTDD768
        No value
        IRAT_ParametersUTRA_TDD768
    lte-rrc.utra_BCCH_Container_r9  utra-BCCH-Container-r9
        Byte array
        OCTET_STRING
    lte-rrc.utra_EcN0  utra-EcN0
        Unsigned 32-bit integer
        INTEGER_0_49
    lte-rrc.utra_FDD  utra-FDD
        Unsigned 32-bit integer
        ARFCN_ValueUTRA
    lte-rrc.utra_FDD_r9  utra-FDD-r9
        Unsigned 32-bit integer
        CellInfoListUTRA_FDD_r9
    lte-rrc.utra_RSCP  utra-RSCP
        Signed 32-bit integer
        INTEGER_M5_91
    lte-rrc.utra_TDD  utra-TDD
        Unsigned 32-bit integer
        ARFCN_ValueUTRA
    lte-rrc.utra_TDD_r9  utra-TDD-r9
        Unsigned 32-bit integer
        CellInfoListUTRA_TDD_r9
    lte-rrc.utra_r9  utra-r9
        Unsigned 32-bit integer
        ARFCN_ValueUTRA
    lte-rrc.utran_ProximityIndicationSupported_r9  utran-ProximityIndicationSupported-r9
        Boolean
        BOOLEAN
    lte-rrc.utran_SI_AcquisitionForHO_Supported_r9  utran-SI-AcquisitionForHO-Supported-r9
        Boolean
        BOOLEAN
    lte-rrc.variableBitMapOfARFCNs  variableBitMapOfARFCNs
        Byte array
        OCTET_STRING_SIZE_1_16
    lte-rrc.waitTime  waitTime
        Unsigned 32-bit integer
        INTEGER_1_16
    lte-rrc.warningMessageSegment  warningMessageSegment
        Byte array
        OCTET_STRING
    lte-rrc.warningMessageSegmentNumber  warningMessageSegmentNumber
        Unsigned 32-bit integer
        INTEGER_0_63
    lte-rrc.warningMessageSegmentNumber_r9  warningMessageSegmentNumber-r9
        Unsigned 32-bit integer
        INTEGER_0_63
    lte-rrc.warningMessageSegmentType  warningMessageSegmentType
        Unsigned 32-bit integer
    lte-rrc.warningMessageSegmentType_r9  warningMessageSegmentType-r9
        Unsigned 32-bit integer
    lte-rrc.warningMessageSegment_r9  warningMessageSegment-r9
        Byte array
        OCTET_STRING
    lte-rrc.warningSecurityInfo  warningSecurityInfo
        Byte array
        OCTET_STRING_SIZE_50
    lte-rrc.warningType  warningType
        Byte array
        OCTET_STRING_SIZE_2
    lte-rrc.widebandCQI  widebandCQI
        No value
    lte-rrc.zeroCorrelationZoneConfig  zeroCorrelationZoneConfig
        Unsigned 32-bit integer
        INTEGER_0_15
    lte-rrc.zoneTimer  zoneTimer
        Byte array
        BIT_STRING_SIZE_3

LWAPP Control Message (lwapp-cntl)

LWAPP Encapsulated Packet (lwapp)

    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

LWAPP Layer 3 Packet (lwapp-l3)

Label Distribution Protocol (ldp)

    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
    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
    ldp.msg.tlv.diffserv.phbid.bit14  Bit 14
        Unsigned 16-bit integer
    ldp.msg.tlv.diffserv.phbid.bit15  Bit 15
        Unsigned 16-bit integer
    ldp.msg.tlv.diffserv.phbid.code  PHB id code
        Unsigned 16-bit integer
    ldp.msg.tlv.diffserv.phbid.dscp  DSCP
        Unsigned 16-bit integer
    ldp.msg.tlv.diffserv.type  LSP Type
        Unsigned 8-bit integer
    ldp.msg.tlv.ebs  EBS
        Double-precision floating point
        Excess Burst Size
    ldp.msg.tlv.er_hop.as  AS Number
        Unsigned 16-bit integer
    ldp.msg.tlv.er_hop.locallspid  Local CR-LSP ID
        Unsigned 16-bit integer
    ldp.msg.tlv.er_hop.loose  Loose route bit
        Unsigned 24-bit integer
    ldp.msg.tlv.er_hop.lsrid  Local CR-LSP ID
        IPv4 address
    ldp.msg.tlv.er_hop.prefix4  IPv4 Address
        IPv4 address
    ldp.msg.tlv.er_hop.prefix6  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
    ldp.msg.tlv.extstatus.data  Extended Status Data
        Unsigned 32-bit integer
    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
    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
    ldp.msg.tlv.ft_ack.sequence_num  FT ACK Sequence Number
        Unsigned 32-bit integer
    ldp.msg.tlv.ft_protect.sequence_num  FT Sequence Number
        Unsigned 32-bit integer
    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
    ldp.msg.tlv.ft_sess.res  Reserved
        Unsigned 16-bit integer
    ldp.msg.tlv.generic.label  Generic Label
        Unsigned 32-bit integer
    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
    ldp.msg.tlv.ipv6.taddr  IPv6 Transport Address
        IPv6 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
    ldp.msg.tlv.lspid.locallspid  Local CR-LSP ID
        Unsigned 16-bit integer
    ldp.msg.tlv.lspid.lsrid  Ingress LSR Router ID
        IPv4 address
    ldp.msg.tlv.mac  MAC address
        6-byte Hardware (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
    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
    ldp.msg.tlv.sess.atm.maxvpi  Maximum VPI
        Unsigned 16-bit integer
    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
    ldp.msg.tlv.sess.atm.minvpi  Minimum VPI
        Unsigned 16-bit integer
    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
    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
    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.rxls  Session Receiver Label Space Identifier
        Unsigned 16-bit integer
        Common Session Parameters Receiver Label Space Identifier
    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
    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 (laplink)

    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
        NULL terminated string
        Machine name

Layer 1 Event Messages (data-l1-events)

Layer 2 Tunneling Protocol (l2tp)

    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
    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
    l2tp.priority  Priority
        Boolean
        Priority bit
    l2tp.res  Reserved
        Unsigned 16-bit integer
    l2tp.seq_bit  Sequence Bit
        Boolean
        Sequence bit
    l2tp.session  Session ID
        Unsigned 16-bit integer
    l2tp.sid  Session ID
        Unsigned 32-bit integer
    l2tp.tie_breaker  Tie Breaker
        Unsigned 64-bit integer
    l2tp.tunnel  Tunnel ID
        Unsigned 16-bit integer
    l2tp.type  Type
        Unsigned 16-bit integer
        Type bit
    l2tp.version  Version
        Unsigned 16-bit integer
    lt2p.cookie  Cookie
        Byte array
    lt2p.l2_spec_atm  ATM-Specific Sublayer
        No value
    lt2p.l2_spec_c  C-bit
        Boolean
        CLP Bit
    lt2p.l2_spec_def  Default L2-Specific Sublayer
        No value
    lt2p.l2_spec_docsis_dmpt  DOCSIS DMPT - Specific Sublayer
        No value
    lt2p.l2_spec_flow_id  Flow ID
        Unsigned 8-bit integer
    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
    lt2p.l2_spec_t  T-bit
        Boolean
        Transport Type Bit
    lt2p.l2_spec_u  U-bit
        Boolean
        C/R Bit
    lt2p.l2_spec_v  V-bit
        Boolean
        VCCV Bit

Lb-I/F BSSMAP LE (gsm_bssmap_le)

    bssmap_le.apdu_protocol_id  Protocol ID
        Unsigned 8-bit integer
        APDU embedded protocol id
    bssmap_le.elem_id  Element ID
        Unsigned 8-bit integer
    bssmap_le.msgtype  BSSMAP LE Message Type
        Unsigned 8-bit integer
    gsm_bssmap_le.decipheringKeys.current  Current Deciphering Key Value
        Unsigned 8-bit integer
    gsm_bssmap_le.decipheringKeys.flag  Ciphering Key Flag
        Unsigned 8-bit integer
    gsm_bssmap_le.decipheringKeys.next  Next Deciphering Key Value
        Unsigned 8-bit integer
    gsm_bssmap_le.diagnosticValue  Diagnostic Value
        Unsigned 8-bit integer
    gsm_bssmap_le.lcsCauseValue  Cause Value
        Unsigned 8-bit integer
    gsm_bssmap_le.lcsClientType.clientCategory  Client Category
        Unsigned 8-bit integer
    gsm_bssmap_le.lcsClientType.clientSubtype  Client Subtype
        Unsigned 8-bit integer
    gsm_bssmap_le.lcsQos.horizontalAccuracy  Horizontal Accuracy
        Unsigned 8-bit integer
    gsm_bssmap_le.lcsQos.horizontalAccuracyIndicator  Horizontal Accuracy Indicator
        Unsigned 8-bit integer
    gsm_bssmap_le.lcsQos.responseTimeCategory  Response Time Category
        Unsigned 8-bit integer
    gsm_bssmap_le.lcsQos.velocityRequested  Velocity Requested
        Unsigned 8-bit integer
    gsm_bssmap_le.lcsQos.verticalAccuracy  Vertical Accuracy
        Unsigned 8-bit integer
    gsm_bssmap_le.lcsQos.verticalAccuracyIndicator  Vertical Accuracy Indicator
        Unsigned 8-bit integer
    gsm_bssmap_le.lcsQos.verticalCoordinateIndicator  Vertical Coordinate Indicator
        Unsigned 8-bit integer
    gsm_bssmap_le.spare  Spare
        Unsigned 8-bit integer

LeCroy VICP (vicp)

    vicp.data  Data
        Byte array
    vicp.length  Data length
        Unsigned 32-bit integer
    vicp.operation  Operation
        Unsigned 8-bit integer
    vicp.sequence  Sequence number
        Unsigned 8-bit integer
    vicp.unused  Unused
        Unsigned 8-bit integer
    vicp.version  Protocol version
        Unsigned 8-bit integer

Licklider Transmission Protocol (ltp)

    ltp.cancel.code  Cancel code
        Unsigned 8-bit integer
    ltp.data.chkp  Checkpoint serial number
        Unsigned 64-bit integer
    ltp.data.client.id  Client service ID
        Unsigned 64-bit integer
    ltp.data.data  Client service data
        Byte array
    ltp.data.length  Length
        Unsigned 64-bit integer
    ltp.data.offset  Offset
        Unsigned 64-bit integer
    ltp.data.rpt  Report serial number
        Unsigned 64-bit integer
    ltp.fragment  LTP Fragment
        Frame number
    ltp.fragment.error  LTP defragmentation error
        Frame number
    ltp.fragment.multiple_tails  LTP has multiple tails
        Boolean
    ltp.fragment.overlap  LTP fragment overlap
        Boolean
    ltp.fragment.overlap.conflicts  LTP fragment overlapping with conflicting data
        Boolean
    ltp.fragment.too_long_fragment  LTP fragment too long
        Boolean
    ltp.fragments  LTP Fragments
        No value
    ltp.hdr.extn.cnt  Header Extension Count
        Unsigned 8-bit integer
    ltp.hdr.extn.len  Length
        Unsigned 64-bit integer
    ltp.hdr.extn.tag  Extension tag
        Unsigned 8-bit integer
    ltp.hdr.extn.val  Value
        Unsigned 64-bit integer
    ltp.reassembled.in  LTP reassembled in
        Frame number
    ltp.reassembled.length  LTP reassembled length
        Unsigned 32-bit integer
    ltp.rpt.ack.sno  Report serial number
        Unsigned 64-bit integer
    ltp.rpt.chkp  Checkpoint serial number
        Unsigned 64-bit integer
    ltp.rpt.clm.cnt  Reception claim count
        Unsigned 8-bit integer
    ltp.rpt.clm.len  Length
        Unsigned 64-bit integer
    ltp.rpt.clm.off  Offset
        Unsigned 64-bit integer
    ltp.rpt.lb  Lower bound
        Unsigned 64-bit integer
    ltp.rpt.sno  Report serial number
        Unsigned 64-bit integer
    ltp.rpt.ub  Upper bound
        Unsigned 64-bit integer
    ltp.session  Session ID
        No value
    ltp.session.number  Session number
        Unsigned 64-bit integer
    ltp.session.orig  Session originator
        Unsigned 64-bit integer
    ltp.trl.extn.cnt  Trailer Extension Count
        Unsigned 8-bit integer
    ltp.type  LTP Type
        Unsigned 8-bit integer
    ltp.version  LTP Version
        Unsigned 8-bit integer

Light Weight DNS RESolver (BIND9) (lwres)

    lwres.adn.addr.addr  IP Address
        String
        lwres adn addr addr
    lwres.adn.addr.family  Address family
        Unsigned 32-bit integer
        lwres adn addr family
    lwres.adn.addr.length  Address length
        Unsigned 16-bit integer
        lwres adn addr length
    lwres.adn.addrtype  Address type
        Unsigned 32-bit integer
        lwres adn addrtype
    lwres.adn.aliasname  Alias name
        String
        lwres adn aliasname
    lwres.adn.flags  Flags
        Unsigned 32-bit integer
        lwres adn flags
    lwres.adn.naddrs  Number of addresses
        Unsigned 16-bit integer
        lwres adn naddrs
    lwres.adn.naliases  Number of aliases
        Unsigned 16-bit integer
        lwres adn naliases
    lwres.adn.name  Name
        String
        lwres adn name
    lwres.adn.namelen  Name length
        Unsigned 16-bit integer
        lwres adn namelen
    lwres.adn.realname  Real name
        String
        lwres adn realname
    lwres.areclen  Length
        Unsigned 16-bit integer
        lwres areclen
    lwres.arecord  IPv4 Address
        Unsigned 32-bit integer
        lwres arecord
    lwres.authlen  Auth. length
        Unsigned 16-bit integer
        lwres authlen
    lwres.authtype  Auth. type
        Unsigned 16-bit integer
        lwres authtype
    lwres.class  Class
        Unsigned 16-bit integer
        lwres class
    lwres.flags  Packet Flags
        Unsigned 16-bit integer
        lwres flags
    lwres.length  Length
        Unsigned 32-bit integer
        lwres length
    lwres.namelen  Name length
        Unsigned 16-bit integer
        lwres namelen
    lwres.nrdatas  Number of rdata records
        Unsigned 16-bit integer
        lwres nrdatas
    lwres.nsigs  Number of signature records
        Unsigned 16-bit integer
        lwres nsigs
    lwres.opcode  Operation code
        Unsigned 32-bit integer
        lwres opcode
    lwres.realname  Real doname name
        String
        lwres realname
    lwres.realnamelen  Real name length
        Unsigned 16-bit integer
        lwres realnamelen
    lwres.recvlen  Received length
        Unsigned 32-bit integer
        lwres recvlen
    lwres.reqdname  Domain name
        String
        lwres reqdname
    lwres.result  Result
        Unsigned 32-bit integer
        lwres result
    lwres.rflags  Flags
        Unsigned 32-bit integer
        lwres rflags
    lwres.serial  Serial
        Unsigned 32-bit integer
        lwres serial
    lwres.srv.port  Port
        Unsigned 16-bit integer
        lwres srv port
    lwres.srv.priority  Priority
        Unsigned 16-bit integer
        lwres srv prio
    lwres.srv.weight  Weight
        Unsigned 16-bit integer
        lwres srv weight
    lwres.ttl  Time To Live
        Unsigned 32-bit integer
        lwres ttl
    lwres.type  Type
        Unsigned 16-bit integer
        lwres type
    lwres.version  Version
        Unsigned 16-bit integer
        lwres version

Lightweight Directory Access Protocol (ldap)

    ldap.AccessMask.ADS_CONTROL_ACCESS  Control Access
        Boolean
    ldap.AccessMask.ADS_CREATE_CHILD  Create Child
        Boolean
    ldap.AccessMask.ADS_DELETE_CHILD  Delete Child
        Boolean
    ldap.AccessMask.ADS_DELETE_TREE  Delete Tree
        Boolean
    ldap.AccessMask.ADS_LIST  List
        Boolean
    ldap.AccessMask.ADS_LIST_OBJECT  List Object
        Boolean
    ldap.AccessMask.ADS_READ_PROP  Read Prop
        Boolean
    ldap.AccessMask.ADS_SELF_WRITE  Self Write
        Boolean
    ldap.AccessMask.ADS_WRITE_PROP  Write Prop
        Boolean
    ldap.AttributeDescription  AttributeDescription
        String
    ldap.AttributeList_item  AttributeList item
        No value
    ldap.AttributeValue  AttributeValue
        Byte array
    ldap.CancelRequestValue  CancelRequestValue
        No value
    ldap.Control  Control
        No value
    ldap.LDAPMessage  LDAPMessage
        No value
    ldap.LDAPURL  LDAPURL
        String
    ldap.PartialAttributeList_item  PartialAttributeList item
        No value
    ldap.PasswdModifyRequestValue  PasswdModifyRequestValue
        No value
    ldap.PasswordPolicyResponseValue  PasswordPolicyResponseValue
        No value
    ldap.ReplControlValue  ReplControlValue
        No value
    ldap.SearchControlValue  SearchControlValue
        No value
    ldap.SortKeyList  SortKeyList
        Unsigned 32-bit integer
    ldap.SortKeyList_item  SortKeyList item
        No value
    ldap.SortResult  SortResult
        No value
    ldap.SyncDoneValue  SyncDoneValue
        No value
    ldap.SyncInfoValue  SyncInfoValue
        Unsigned 32-bit integer
    ldap.SyncRequestValue  SyncRequestValue
        No value
    ldap.SyncStateValue  SyncStateValue
        No value
    ldap.SyncUUID  SyncUUID
        Byte array
    ldap.abandonRequest  abandonRequest
        Unsigned 32-bit integer
    ldap.addRequest  addRequest
        No value
    ldap.addResponse  addResponse
        No value
    ldap.and  and
        Unsigned 32-bit integer
    ldap.and_item  and item
        Unsigned 32-bit integer
    ldap.any  any
        String
        LDAPString
    ldap.approxMatch  approxMatch
        No value
    ldap.assertionValue  assertionValue
        String
    ldap.attributeDesc  attributeDesc
        String
        AttributeDescription
    ldap.attributeType  attributeType
        String
        AttributeDescription
    ldap.attributes  attributes
        Unsigned 32-bit integer
        AttributeDescriptionList
    ldap.authentication  authentication
        Unsigned 32-bit integer
        AuthenticationChoice
    ldap.ava  ava
        No value
        AttributeValueAssertion
    ldap.baseObject  baseObject
        String
        LDAPDN
    ldap.bindRequest  bindRequest
        No value
    ldap.bindResponse  bindResponse
        No value
    ldap.cancelID  cancelID
        Unsigned 32-bit integer
        MessageID
    ldap.compareRequest  compareRequest
        No value
    ldap.compareResponse  compareResponse
        No value
    ldap.controlType  controlType
        String
    ldap.controlValue  controlValue
        Byte array
    ldap.controls  controls
        Unsigned 32-bit integer
    ldap.cookie  cookie
        Byte array
        OCTET_STRING
    ldap.credentials  credentials
        Byte array
    ldap.criticality  criticality
        Boolean
        BOOLEAN
    ldap.delRequest  delRequest
        String
    ldap.delResponse  delResponse
        No value
    ldap.deleteoldrdn  deleteoldrdn
        Boolean
        BOOLEAN
    ldap.derefAliases  derefAliases
        Unsigned 32-bit integer
    ldap.dnAttributes  dnAttributes
        Boolean
    ldap.entry  entry
        String
        LDAPDN
    ldap.entryUUID  entryUUID
        Byte array
        SyncUUID
    ldap.equalityMatch  equalityMatch
        No value
    ldap.error  error
        Unsigned 32-bit integer
    ldap.errorMessage  errorMessage
        String
    ldap.extendedReq  extendedReq
        No value
        ExtendedRequest
    ldap.extendedResp  extendedResp
        No value
        ExtendedResponse
    ldap.extensibleMatch  extensibleMatch
        No value
    ldap.filter  filter
        Unsigned 32-bit integer
    ldap.final  final
        String
        LDAPString
    ldap.genPasswd  genPasswd
        Byte array
        OCTET_STRING
    ldap.graceAuthNsRemaining  graceAuthNsRemaining
        Unsigned 32-bit integer
        INTEGER_0_maxInt
    ldap.greaterOrEqual  greaterOrEqual
        No value
    ldap.guid  GUID
        Globally Unique Identifier
    ldap.initial  initial
        String
        LDAPString
    ldap.intermediateResponse  intermediateResponse
        No value
    ldap.lessOrEqual  lessOrEqual
        No value
    ldap.matchValue  matchValue
        String
        AssertionValue
    ldap.matchedDN  matchedDN
        String
        LDAPDN
    ldap.matchingRule  matchingRule
        String
        MatchingRuleId
    ldap.maxReturnLength  maxReturnLength
        Signed 32-bit integer
        INTEGER
    ldap.mechanism  mechanism
        String
    ldap.messageID  messageID
        Unsigned 32-bit integer
    ldap.modDNRequest  modDNRequest
        No value
        ModifyDNRequest
    ldap.modDNResponse  modDNResponse
        No value
        ModifyDNResponse
    ldap.mode  mode
        Unsigned 32-bit integer
    ldap.modification  modification
        Unsigned 32-bit integer
        ModifyRequest_modification
    ldap.modification_item  modification item
        No value
        T_modifyRequest_modification_item
    ldap.modifyRequest  modifyRequest
        No value
    ldap.modifyResponse  modifyResponse
        No value
    ldap.name  name
        String
        LDAPDN
    ldap.newPasswd  newPasswd
        Byte array
        OCTET_STRING
    ldap.newSuperior  newSuperior
        String
        LDAPDN
    ldap.newcookie  newcookie
        Byte array
        OCTET_STRING
    ldap.newrdn  newrdn
        String
        RelativeLDAPDN
    ldap.not  not
        Unsigned 32-bit integer
    ldap.ntlmsspAuth  ntlmsspAuth
        Byte array
    ldap.ntlmsspNegotiate  ntlmsspNegotiate
        Byte array
    ldap.object  object
        String
        LDAPDN
    ldap.objectName  objectName
        String
        LDAPDN
    ldap.oldPasswd  oldPasswd
        Byte array
        OCTET_STRING
    ldap.operation  operation
        Unsigned 32-bit integer
    ldap.or  or
        Unsigned 32-bit integer
    ldap.or_item  or item
        Unsigned 32-bit integer
    ldap.orderingRule  orderingRule
        String
        MatchingRuleId
    ldap.parentsFirst  parentsFirst
        Signed 32-bit integer
        INTEGER
    ldap.present  present
        String
    ldap.protocolOp  protocolOp
        Unsigned 32-bit integer
    ldap.referral  referral
        Unsigned 32-bit integer
    ldap.refreshDelete  refreshDelete
        No value
    ldap.refreshDeletes  refreshDeletes
        Boolean
        BOOLEAN
    ldap.refreshDone  refreshDone
        Boolean
        BOOLEAN
    ldap.refreshPresent  refreshPresent
        No value
    ldap.reloadHint  reloadHint
        Boolean
        BOOLEAN
    ldap.requestName  requestName
        String
        LDAPOID
    ldap.requestValue  requestValue
        Byte array
    ldap.response  response
        Byte array
        OCTET_STRING
    ldap.responseName  responseName
        String
    ldap.responseValue  responseValue
        Byte array
        T_intermediateResponse_responseValue
    ldap.response_in  Response In
        Frame number
        The response to this LDAP request is in this frame
    ldap.response_to  Response To
        Frame number
        This is a response to the LDAP request in this frame
    ldap.resultCode  resultCode
        Unsigned 32-bit integer
    ldap.reverseOrder  reverseOrder
        Boolean
        BOOLEAN
    ldap.sasl  sasl
        No value
        SaslCredentials
    ldap.sasl_buffer_length  SASL Buffer Length
        Unsigned 32-bit integer
    ldap.scope  scope
        Unsigned 32-bit integer
    ldap.searchRequest  searchRequest
        No value
    ldap.searchResDone  searchResDone
        No value
        SearchResultDone
    ldap.searchResEntry  searchResEntry
        No value
        SearchResultEntry
    ldap.searchResRef  searchResRef
        Unsigned 32-bit integer
        SearchResultReference
    ldap.serverSaslCreds  serverSaslCreds
        Byte array
    ldap.sid  Sid
        String
    ldap.simple  simple
        Byte array
    ldap.size  size
        Signed 32-bit integer
        INTEGER
    ldap.sizeLimit  sizeLimit
        Unsigned 32-bit integer
        INTEGER_0_maxInt
    ldap.sortResult  sortResult
        Unsigned 32-bit integer
    ldap.state  state
        Unsigned 32-bit integer
    ldap.substrings  substrings
        No value
        SubstringFilter
    ldap.substrings_item  substrings item
        Unsigned 32-bit integer
        T_substringFilter_substrings_item
    ldap.syncIdSet  syncIdSet
        No value
    ldap.syncUUIDs  syncUUIDs
        Unsigned 32-bit integer
        SET_OF_SyncUUID
    ldap.time  Time
        Time duration
        The time between the Call and the Reply
    ldap.timeBeforeExpiration  timeBeforeExpiration
        Unsigned 32-bit integer
        INTEGER_0_maxInt
    ldap.timeLimit  timeLimit
        Unsigned 32-bit integer
        INTEGER_0_maxInt
    ldap.type  type
        String
        AttributeDescription
    ldap.typesOnly  typesOnly
        Boolean
        BOOLEAN
    ldap.unbindRequest  unbindRequest
        No value
    ldap.userIdentity  userIdentity
        Byte array
        OCTET_STRING
    ldap.vals  vals
        Unsigned 32-bit integer
        SET_OF_AttributeValue
    ldap.version  version
        Unsigned 32-bit integer
        INTEGER_1_127
    ldap.warning  warning
        Unsigned 32-bit integer
    mscldap.clientsitename  Client Site
        String
        Client Site name
    mscldap.domain  Domain
        String
        Domainname
    mscldap.domain.guid  Domain GUID
        Byte array
    mscldap.forest  Forest
        String
    mscldap.hostname  Hostname
        String
    mscldap.nb_domain  NetBios Domain
        String
        NetBios Domainname
    mscldap.nb_hostname  NetBios Hostname
        String
    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?
    mscldap.netlogon.flags.defaultnc  DNC
        Boolean
        Is this the default NC (Windows 2008)?
    mscldap.netlogon.flags.dnsname  DNS
        Boolean
        Does the server have a dns name (Windows 2008)?
    mscldap.netlogon.flags.ds  DS
        Boolean
        Does this dc provide DS services?
    mscldap.netlogon.flags.forestnc  FDC
        Boolean
        Is the the NC the default forest root(Windows 2008)?
    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.rodc  RODC
        Boolean
        Is this an read only dc?
    mscldap.netlogon.flags.timeserv  Time Serv
        Boolean
        Does this dc provide time services (ntp) ?
    mscldap.netlogon.flags.writable  Writable
        Boolean
        Is this dc writable?
    mscldap.netlogon.flags.writabledc.  WDC
        Boolean
        Is this an writable dc (Windows 2008)?
    mscldap.netlogon.ipaddress  IP Address
        IPv4 address
        Domain Controller IP Address
    mscldap.netlogon.ipaddress.family  Family
        Unsigned 16-bit integer
    mscldap.netlogon.ipaddress.ipv4  IPv4
        IPv4 address
        IP Address
    mscldap.netlogon.ipaddress.port  Port
        Unsigned 16-bit integer
    mscldap.netlogon.lm_token  LM Token
        Unsigned 16-bit integer
    mscldap.netlogon.nt_token  NT Token
        Unsigned 16-bit integer
    mscldap.netlogon.type  Type
        Unsigned 16-bit integer
        NetLogon Response type
    mscldap.netlogon.version  Version
        Unsigned 32-bit integer
    mscldap.ntver.searchflags  Search Flags
        Unsigned 32-bit integer
        cldap Netlogon request flags
    mscldap.ntver.searchflags.gc  GC
        Boolean
    mscldap.ntver.searchflags.ip  IP
        Boolean
    mscldap.ntver.searchflags.local  Local
        Boolean
    mscldap.ntver.searchflags.nt4  NT4
        Boolean
    mscldap.ntver.searchflags.pdc  PDC
        Boolean
    mscldap.ntver.searchflags.v1  V1
        Boolean
    mscldap.ntver.searchflags.v5  V5
        Boolean
    mscldap.ntver.searchflags.v5cs  V5CS
        Boolean
    mscldap.ntver.searchflags.v5ex  V5EX
        Boolean
    mscldap.ntver.searchflags.v5ip  V5IP
        Boolean
    mscldap.sitename  Site
        String
        Site name
    mscldap.username  Username
        String
        User name

Lightweight User Datagram Protocol (udplite)

    udp.checksum_coverage  Checksum coverage
        Unsigned 16-bit integer
    udp.checksum_coverage_bad  Bad Checksum coverage
        Boolean

Line Printer Daemon Protocol (lpd)

    lpd.request  Request
        Boolean
        TRUE if LPD request
    lpd.response  Response
        Boolean
        TRUE if LPD response

Line-based text data (data-text-lines)

Link Access Procedure Balanced (LAPB) (lapb)

    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

Link Access Procedure Balanced Ethernet (LAPBETHER) (lapbether)

    lapbether.length  Length Field
        Unsigned 16-bit integer
        LAPBEther Length Field

Link Access Procedure, Channel D (LAPD) (lapd)

    lapd.address  Address Field
        Unsigned 16-bit integer
        Address
    lapd.checksum  Checksum
        Unsigned 16-bit integer
        Details at: http://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html
    lapd.checksum_bad  Bad Checksum
        Boolean
        True: checksum doesn't match packet content; False: matches content or not checked
    lapd.checksum_good  Good Checksum
        Boolean
        True: checksum matches packet content; False: doesn't match content or not checked
    lapd.control  Control Field
        Unsigned 16-bit integer
        Control field
    lapd.control.f  Final
        Boolean
    lapd.control.ftype  Frame type
        Unsigned 16-bit integer
    lapd.control.n_r  N(R)
        Unsigned 16-bit integer
    lapd.control.n_s  N(S)
        Unsigned 16-bit integer
    lapd.control.p  Poll
        Boolean
    lapd.control.s_ftype  Supervisory frame type
        Unsigned 16-bit integer
    lapd.control.u_modifier_cmd  Command
        Unsigned 8-bit integer
    lapd.control.u_modifier_resp  Response
        Unsigned 8-bit integer
    lapd.cr  C/R
        Unsigned 16-bit integer
        Command/Response bit
    lapd.direction  Direction
        Unsigned 8-bit integer
    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

Link Access Procedure, Channel Dm (LAPDm) (lapdm)

    lapdm.address_field  Address Field
        Unsigned 8-bit integer
        Address
    lapdm.control.f  Final
        Boolean
    lapdm.control.ftype  Frame type
        Unsigned 8-bit integer
    lapdm.control.n_r  N(R)
        Unsigned 8-bit integer
    lapdm.control.n_s  N(S)
        Unsigned 8-bit integer
    lapdm.control.p  Poll
        Boolean
    lapdm.control.s_ftype  Supervisory frame type
        Unsigned 8-bit integer
    lapdm.control.u_modifier_cmd  Command
        Unsigned 8-bit integer
    lapdm.control.u_modifier_resp  Response
        Unsigned 8-bit integer
    lapdm.control_field  Control Field
        Unsigned 8-bit integer
        Control field
    lapdm.cr  C/R
        Unsigned 8-bit integer
        Command/response field bit
    lapdm.ea  EA
        Unsigned 8-bit integer
        Address field extension bit
    lapdm.el  EL
        Unsigned 8-bit integer
        Length indicator field extension bit
    lapdm.fragment  Message fragment
        Frame number
        LAPDm Message fragment
    lapdm.fragment.error  Message defragmentation error
        Frame number
        LAPDm Message defragmentation error due to illegal fragments
    lapdm.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
        LAPDm Message fragment has multiple tail fragments
    lapdm.fragment.overlap  Message fragment overlap
        Boolean
        LAPDm Message fragment overlaps with other fragment(s)
    lapdm.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
        LAPDm Message fragment overlaps with conflicting data
    lapdm.fragment.too_long_fragment  Message fragment too long
        Boolean
        LAPDm Message fragment data goes beyond the packet end
    lapdm.fragments  Message fragments
        No value
        LAPDm Message fragments
    lapdm.length  Length
        Unsigned 8-bit integer
        Length indicator
    lapdm.length_field  Length Field
        Unsigned 8-bit integer
        Length field
    lapdm.lpd  LPD
        Unsigned 8-bit integer
        Link Protocol Discriminator
    lapdm.m  M
        Unsigned 8-bit integer
        More data bit
    lapdm.reassembled.in  Reassembled in
        Frame number
        LAPDm Message has been reassembled in this packet.
    lapdm.reassembled.length  Reassembled LAPDm length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    lapdm.sapi  SAPI
        Unsigned 8-bit integer
        Service access point identifier

Link Layer Discovery Protocol (lldp)

    lldp.chassis.id  Chassis Id
        Byte array
    lldp.chassis.id.ip4  Chassis Id
        IPv4 address
    lldp.chassis.id.ip6  Chassis Id
        IPv6 address
    lldp.chassis.id.mac  Chassis Id
        6-byte Hardware (MAC) Address
    lldp.chassis.subtype  Chassis Id Subtype
        Unsigned 8-bit integer
    lldp.ieee.802_1.subtype  IEEE 802.1 Subtype
        Unsigned 8-bit integer
    lldp.ieee.802_3.subtype  IEEE 802.3 Subtype
        Unsigned 8-bit integer
    lldp.media.subtype  Media Subtype
        Unsigned 8-bit integer
    lldp.mgn.addr.hex  Management Address
        Byte array
    lldp.mgn.addr.ip4  Management Address
        IPv4 address
    lldp.mgn.addr.ip6  Management Address
        IPv6 address
    lldp.mgn.obj.id  Object Identifier
        Byte array
    lldp.network_address.subtype  Network Address family
        Unsigned 8-bit integer
    lldp.orgtlv.oui  Organization Unique Code
        Unsigned 24-bit integer
    lldp.port.id.ip4  Port Id
        IPv4 address
    lldp.port.id.ip6  Port Id
        IPv6 address
    lldp.port.id.mac  Port Id
        6-byte Hardware (MAC) Address
    lldp.port.subtype  Port Id Subtype
        Unsigned 8-bit integer
    lldp.profinet.cable_delay_local  Port Cable Delay Local
        Unsigned 32-bit integer
    lldp.profinet.cm_mac_add  CMMacAdd
        6-byte Hardware (MAC) Address
        CMResponderMacAdd or CMInitiatorMacAdd
    lldp.profinet.green_period_begin_offset  GreenPeriodBegin.Offset
        Unsigned 32-bit integer
        Unrestricted period, offset to cycle begin in nanoseconds
    lldp.profinet.green_period_begin_valid  GreenPeriodBegin.Valid
        Unsigned 32-bit integer
        Offset field is valid/invalid
    lldp.profinet.ir_data_uuid  IRDataUUID
        Globally Unique Identifier
    lldp.profinet.length_of_period_length  LengthOfPeriod.Length
        Unsigned 32-bit integer
        Duration of a cycle in nanoseconds
    lldp.profinet.length_of_period_valid  LengthOfPeriod.Valid
        Unsigned 32-bit integer
        Length field is valid/invalid
    lldp.profinet.master_source_address  MasterSourceAddress
        6-byte Hardware (MAC) Address
    lldp.profinet.mrp_domain_uuid  MRP DomainUUID
        Globally Unique Identifier
    lldp.profinet.mrrt_port_status  MRRT PortStatus
        Unsigned 16-bit integer
    lldp.profinet.orange_period_begin_offset  OrangePeriodBegin.Offset
        Unsigned 32-bit integer
        RT_CLASS_2 period, offset to cycle begin in nanoseconds
    lldp.profinet.orange_period_begin_valid  OrangePeriodBegin.Valid
        Unsigned 32-bit integer
        Offset field is valid/invalid
    lldp.profinet.port_rx_delay_local  Port RX Delay Local
        Unsigned 32-bit integer
    lldp.profinet.port_rx_delay_remote  Port RX Delay Remote
        Unsigned 32-bit integer
    lldp.profinet.port_tx_delay_local  Port TX Delay Local
        Unsigned 32-bit integer
    lldp.profinet.port_tx_delay_remote  Port TX Delay Remote
        Unsigned 32-bit integer
    lldp.profinet.red_period_begin_offset  RedPeriodBegin.Offset
        Unsigned 32-bit integer
        RT_CLASS_3 period, offset to cycle begin in nanoseconds
    lldp.profinet.red_period_begin_valid  RedPeriodBegin.Valid
        Unsigned 32-bit integer
        Offset field is valid/invalid
    lldp.profinet.rtc2_port_status  RTClass2 Port Status
        Unsigned 16-bit integer
    lldp.profinet.rtc3_port_status  RTClass3 Port Status
        Unsigned 16-bit integer
    lldp.profinet.subdomain_uuid  SubdomainUUID
        Globally Unique Identifier
    lldp.profinet.subtype  Subtype
        Unsigned 8-bit integer
        PROFINET Subtype
    lldp.time_to_live  Seconds
        Unsigned 16-bit integer
    lldp.tlv.len  TLV Length
        Unsigned 16-bit integer
    lldp.tlv.type  TLV Type
        Unsigned 16-bit integer
    lldp.unknown_subtype  Unknown Subtype Content
        Byte array

Link Management Protocol (LMP) (lmp)

    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 Parameter
        Boolean
    lmp.error.lad_area_id_mismatch  LAD - Domain Routing Area ID Mismatch detected
        Boolean
    lmp.error.lad_capability_mismatch  LAD - Capability Mismatch detected
        Boolean
    lmp.error.lad_da_dcn_mismatch  LAD - DA DCN Mismatch detected
        Boolean
    lmp.error.lad_tcp_id_mismatch  LAD - TCP ID Mismatch detected
        Boolean
    lmp.error.lad_unknown_ctype  LAD - Unknown Object C-Type
        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.trace_invalid_msg  Trace - Invalid Trace Message
        Boolean
    lmp.error.trace_unknown_ctype  Trace - Unknown Object C-Type
        Boolean
    lmp.error.trace_unsupported_type  Trace - Unsupported trace 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.lad_encoding  LSP Encoding Type
        Unsigned 8-bit integer
    lmp.lad_info_subobj  Subobject
        No value
    lmp.lad_pri_area_id  SC PC Address
        IPv4 address
    lmp.lad_pri_rc_pc_addr  SC PC Address
        IPv4 address
    lmp.lad_pri_rc_pc_id  SC PC Address
        IPv4 address
    lmp.lad_sec_area_id  SC PC Address
        IPv4 address
    lmp.lad_sec_rc_pc_addr  SC PC Address
        IPv4 address
    lmp.lad_sec_rc_pc_id  SC PC Address
        IPv4 address
    lmp.lad_switching  Interface Switching Capability
        Unsigned 8-bit integer
    lmp.local_ccid  Local CCID Value
        Unsigned 32-bit integer
    lmp.local_da_dcn_addr  Local DA DCN Address
        IPv4 address
    lmp.local_interfaceid_ipv4  Local Interface ID - IPv4
        IPv4 address
    lmp.local_interfaceid_unnum  Local Interface ID - Unnumbered
        Unsigned 32-bit integer
    lmp.local_lad_area_id  Area ID
        IPv4 address
    lmp.local_lad_comp_id  Component Link ID
        Unsigned 32-bit integer
    lmp.local_lad_node_id  Node ID
        IPv4 address
    lmp.local_lad_sc_pc_addr  SC PC Address
        IPv4 address
    lmp.local_lad_sc_pc_id  SC PC ID
        IPv4 address
    lmp.local_lad_telink_id  TE Link ID
        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.discoveryresp  DiscoveryResponse Message
        Boolean
    lmp.msg.discoveryrespack  DiscoveryResponseAck Message
        Boolean
    lmp.msg.discoveryrespnack  DiscoveryResponseNack Message
        Boolean
    lmp.msg.endverify  EndVerify Message
        Boolean
    lmp.msg.endverifyack  EndVerifyAck Message
        Boolean
    lmp.msg.hello  HELLO Message
        Boolean
    lmp.msg.inserttrace  InsertTrace Message
        Boolean
    lmp.msg.inserttraceack  InsertTraceAck Message
        Boolean
    lmp.msg.inserttracenack  InsertTraceNack Message
        Boolean
    lmp.msg.linksummary  LinkSummary Message
        Boolean
    lmp.msg.linksummaryack  LinkSummaryAck Message
        Boolean
    lmp.msg.linksummarynack  LinkSummaryNack Message
        Boolean
    lmp.msg.serviceconfig  ServiceConfig Message
        Boolean
    lmp.msg.serviceconfigack  ServiceConfigAck Message
        Boolean
    lmp.msg.serviceconfignack  ServiceConfigNack Message
        Boolean
    lmp.msg.test  Test Message
        Boolean
    lmp.msg.teststatusack  TestStatusAck Message
        Boolean
    lmp.msg.teststatusfailure  TestStatusFailure Message
        Boolean
    lmp.msg.teststatussuccess  TestStatusSuccess Message
        Boolean
    lmp.msg.tracemismatch  TraceMismatch Message
        Boolean
    lmp.msg.tracemismatchack  TraceMismatchAck Message
        Boolean
    lmp.msg.tracemonitor  TraceMonitor Message
        Boolean
    lmp.msg.tracemonitorack  TraceMonitorAck Message
        Boolean
    lmp.msg.tracemonitornack  TraceMonitorNack Message
        Boolean
    lmp.msg.tracereport  TraceReport Message
        Boolean
    lmp.msg.tracerequest  TraceRequest Message
        Boolean
    lmp.msg.tracerequestnack  TraceRequestNack Message
        Boolean
    lmp.obj.Nodeid  NODE_ID
        No value
    lmp.obj.begin_verify  BEGIN_VERIFY
        No value
    lmp.obj.begin_verify_ack  BEGIN_VERIFY_ACK
        No value
    lmp.obj.ccid  CCID
        No value
    lmp.obj.channel_status  CHANNEL_STATUS
        No value
    lmp.obj.channel_status_request  CHANNEL_STATUS_REQUEST
        No value
    lmp.obj.config  CONFIG
        No value
    lmp.obj.ctype  Object C-Type
        Unsigned 8-bit integer
    lmp.obj.dadcnaddr  DA_DCN_ADDRESS
        No value
    lmp.obj.data_link  DATA_LINK
        No value
    lmp.obj.error  ERROR
        No value
    lmp.obj.hello  HELLO
        No value
    lmp.obj.interfaceid  INTERFACE_ID
        No value
    lmp.obj.linkid  LINK_ID
        No value
    lmp.obj.localladinfo  LOCAL_LAD_INFO
        No value
    lmp.obj.messageid  MESSAGE_ID
        No value
    lmp.obj.serviceconfig  SERVICE_CONFIG
        No value
    lmp.obj.te_link  TE_LINK
        No value
    lmp.obj.trace  TRACE
        No value
    lmp.obj.trace_req  TRACE REQ
        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_da_dcn_addr  Remote DA DCN Address
        IPv4 address
    lmp.remote_interfaceid_ipv4  Remote Interface ID - IPv4
        IPv4 address
    lmp.remote_interfaceid_unnum  Remote Interface ID - Unnumbered
        Unsigned 32-bit integer
    lmp.remote_linkid_ipv4  Remote Link ID - IPv4
        Unsigned 32-bit integer
    lmp.remote_linkid_unnum  Remote Link ID - Unnumbered
        Unsigned 32-bit integer
    lmp.remote_nodeid  Remote Node ID Value
        IPv4 address
    lmp.rxseqnum  RxSeqNum
        Unsigned 32-bit integer
    lmp.service_config.cct  Contiguous Concatenation Types
        Unsigned 8-bit integer
    lmp.service_config.cpsa  Client Port Service Attributes
        Unsigned 8-bit integer
    lmp.service_config.cpsa.line_overhead  Line/MS Overhead Transparency Supported
        Boolean
    lmp.service_config.cpsa.local_ifid  Local interface id of the client interface referred to
        IPv4 address
    lmp.service_config.cpsa.max_ncc  Maximum Number of Contiguously Concatenated Components
        Unsigned 8-bit integer
    lmp.service_config.cpsa.max_nvc  Minimum Number of Virtually Concatenated Components
        Unsigned 8-bit integer
    lmp.service_config.cpsa.min_ncc  Minimum Number of Contiguously Concatenated Components
        Unsigned 8-bit integer
    lmp.service_config.cpsa.min_nvc  Maximum Number of Contiguously Concatenated Components
        Unsigned 8-bit integer
    lmp.service_config.cpsa.path_overhead  Path/VC Overhead Transparency Supported
        Boolean
    lmp.service_config.cpsa.section_overhead  Section/RS Overhead Transparency Supported
        Boolean
    lmp.service_config.nsa.diversity  Network Diversity Flags
        Unsigned 8-bit integer
    lmp.service_config.nsa.diversity.link  Link diversity supported
        Boolean
    lmp.service_config.nsa.diversity.node  Node diversity supported
        Boolean
    lmp.service_config.nsa.diversity.srlg  SRLG diversity supported
        Boolean
    lmp.service_config.nsa.tcm  TCM Monitoring
        Unsigned 8-bit integer
    lmp.service_config.nsa.transparency  Network Transparency Flags
        Unsigned 32-bit integer
    lmp.service_config.nsa.transparency.loh  Standard LOH/MSOH transparency supported
        Boolean
    lmp.service_config.nsa.transparency.soh  Standard SOH/RSOH transparency supported
        Boolean
    lmp.service_config.nsa.transparency.tcm  TCM Monitoring Supported
        Boolean
    lmp.service_config.sp  Service Config - Supported Signalling Protocols
        Unsigned 8-bit integer
    lmp.service_config.sp.ldp  LDP is supported
        Boolean
    lmp.service_config.sp.rsvp  RSVP is supported
        Boolean
    lmp.te_link.fault_mgmt  Fault Management Supported
        Boolean
    lmp.te_link.link_verify  Link Verification Supported
        Boolean
    lmp.te_link.local_ipv4  TE-Link Local ID - IPv4
        IPv4 address
    lmp.te_link.local_unnum  TE-Link Local ID - Unnumbered
        Unsigned 32-bit integer
    lmp.te_link.remote_ipv4  TE-Link Remote ID - IPv4
        IPv4 address
    lmp.te_link.remote_unnum  TE-Link Remote ID - Unnumbered
        Unsigned 32-bit integer
    lmp.te_link_flags  TE-Link Flags
        Unsigned 8-bit integer
    lmp.trace.local_length  Local Trace Length
        Unsigned 16-bit integer
    lmp.trace.local_msg  Local Trace Message
        String
    lmp.trace.local_type  Local Trace Type
        Unsigned 16-bit integer
    lmp.trace.remote_length  Remote Trace Length
        Unsigned 16-bit integer
    lmp.trace.remote_msg  Remote Trace Message
        String
    lmp.trace.remote_type  Remote Trace Type
        Unsigned 16-bit integer
    lmp.trace_req.type  Trace Type
        Unsigned 16-bit integer
    lmp.txseqnum  TxSeqNum
        Unsigned 32-bit integer
    lmp.verifyid  Verify-ID
        Unsigned 32-bit integer

Linux Kernel Packet Generator (pktgen)

    pktgen.magic  Magic number
        Unsigned 32-bit integer
        The pktgen magic number
    pktgen.seqnum  Sequence number
        Unsigned 32-bit integer
    pktgen.timestamp  Timestamp
        Date/Time stamp
    pktgen.tvsec  Timestamp tvsec
        Unsigned 32-bit integer
        Timestamp tvsec part
    pktgen.tvusec  Timestamp tvusec
        Unsigned 32-bit integer
        Timestamp tvusec part

Linux cooked-mode capture (sll)

    sll.etype  Protocol
        Unsigned 16-bit integer
        Ethernet protocol type
    sll.gretype  Protocol
        Unsigned 16-bit integer
        GRE protocol type
    sll.halen  Link-layer address length
        Unsigned 16-bit integer
    sll.hatype  Link-layer address type
        Unsigned 16-bit integer
    sll.ltype  Protocol
        Unsigned 16-bit integer
        Linux protocol type
    sll.pkttype  Packet type
        Unsigned 16-bit integer
    sll.src.eth  Source
        6-byte Hardware (MAC) Address
        Source link-layer address
    sll.src.ipv4  Source
        IPv4 address
        Source link-layer address
    sll.src.other  Source
        Byte array
        Source link-layer address
    sll.trailer  Trailer
        Byte array

Local Download Sharing Service (ldss)

    ldss.compression  Compressed Format
        Unsigned 8-bit integer
    ldss.cookie  Cookie
        Unsigned 32-bit integer
        Random value used for duplicate rejection
    ldss.digest  Digest
        Byte array
        Digest of file padded with 0x00
    ldss.digest_type  Digest Type
        Unsigned 8-bit integer
    ldss.file_data  File data
        Byte array
    ldss.inferred_meaning  Inferred meaning
        Unsigned 16-bit integer
        Inferred meaning of the packet
    ldss.initiated_by  Initiated by
        Frame number
        The broadcast that initiated this file transfer
    ldss.ldss_message_id  LDSS Message ID
        Unsigned 16-bit integer
    ldss.offset  Offset
        Unsigned 64-bit integer
        Size of currently available portion of file
    ldss.port  Port
        Unsigned 16-bit integer
        TCP port for push (Need file) or pull (Will send)
    ldss.priority  Priority
        Unsigned 16-bit integer
    ldss.properties  Properties
        Byte array
    ldss.property_count  Property Count
        Unsigned 16-bit integer
    ldss.rate  Rate (B/s)
        Unsigned 16-bit integer
        Estimated current download rate
    ldss.reserved_1  Reserved
        Unsigned 32-bit integer
        Unused field - should be 0x00000000
    ldss.response_in  Response In
        Frame number
        The response to this file pull request is in this frame
    ldss.response_to  Request In
        Frame number
        This is a response to the file pull request in this frame
    ldss.size  Size
        Unsigned 64-bit integer
        Size of complete file
    ldss.target_time  Target time (relative)
        Unsigned 32-bit integer
        Time until file will be needed/available
    ldss.transfer_completed_in  Transfer completed in
        Time duration
        The time between requesting the file and completion of the file transfer
    ldss.transfer_response_time  Transfer response time
        Time duration
        The time between the request and the response for a pull transfer

Local Management Interface (lmi)

    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
    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
    lmi.recv_seq  Recv Seq
        Unsigned 8-bit integer
        Receive Sequence
    lmi.send_seq  Send Seq
        Unsigned 8-bit integer
        Send Sequence

Local Security Authority (lsarpc)

    lsarpc.efs.blob_size  EFS blob size
        Unsigned 32-bit integer
    lsarpc.lookup.names  Names
        No value
    lsarpc.lsa.string  String
        String
    lsarpc.lsa_AccountAccessMask.LSA_ACCOUNT_ADJUST_PRIVILEGES  Lsa Account Adjust Privileges
        Boolean
    lsarpc.lsa_AccountAccessMask.LSA_ACCOUNT_ADJUST_QUOTAS  Lsa Account Adjust Quotas
        Boolean
    lsarpc.lsa_AccountAccessMask.LSA_ACCOUNT_ADJUST_SYSTEM_ACCESS  Lsa Account Adjust System Access
        Boolean
    lsarpc.lsa_AccountAccessMask.LSA_ACCOUNT_VIEW  Lsa Account View
        Boolean
    lsarpc.lsa_AddAccountRights.handle  Handle
        Byte array
    lsarpc.lsa_AddAccountRights.rights  Rights
        No value
    lsarpc.lsa_AddAccountRights.sid  Sid
        No value
    lsarpc.lsa_AddPrivilegesToAccount.handle  Handle
        Byte array
    lsarpc.lsa_AddPrivilegesToAccount.privs  Privs
        No value
    lsarpc.lsa_AsciiString.length  Length
        Unsigned 16-bit integer
    lsarpc.lsa_AsciiString.size  Size
        Unsigned 16-bit integer
    lsarpc.lsa_AsciiString.string  String
        Unsigned 8-bit integer
    lsarpc.lsa_AsciiStringLarge.length  Length
        Unsigned 16-bit integer
    lsarpc.lsa_AsciiStringLarge.size  Size
        Unsigned 16-bit integer
    lsarpc.lsa_AsciiStringLarge.string  String
        Unsigned 8-bit integer
    lsarpc.lsa_AuditEventsInfo.auditing_mode  Auditing Mode
        Unsigned 32-bit integer
    lsarpc.lsa_AuditEventsInfo.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_AuditEventsInfo.settings  Settings
        Unsigned 32-bit integer
    lsarpc.lsa_AuditFullQueryInfo.log_is_full  Log Is Full
        Unsigned 8-bit integer
    lsarpc.lsa_AuditFullQueryInfo.shutdown_on_full  Shutdown On Full
        Unsigned 8-bit integer
    lsarpc.lsa_AuditFullQueryInfo.unknown  Unknown
        Unsigned 16-bit integer
    lsarpc.lsa_AuditFullSetInfo.shutdown_on_full  Shutdown On Full
        Unsigned 8-bit integer
    lsarpc.lsa_AuditLogInfo.log_size  Log Size
        Unsigned 32-bit integer
    lsarpc.lsa_AuditLogInfo.next_audit_record  Next Audit Record
        Unsigned 32-bit integer
    lsarpc.lsa_AuditLogInfo.percent_full  Percent Full
        Unsigned 32-bit integer
    lsarpc.lsa_AuditLogInfo.retention_time  Retention Time
        Date/Time stamp
    lsarpc.lsa_AuditLogInfo.shutdown_in_progress  Shutdown In Progress
        Unsigned 8-bit integer
    lsarpc.lsa_AuditLogInfo.time_to_shutdown  Time To Shutdown
        Date/Time stamp
    lsarpc.lsa_AuditLogInfo.unknown  Unknown
        Unsigned 32-bit integer
    lsarpc.lsa_Close.handle  Handle
        Byte array
    lsarpc.lsa_CloseTrustedDomainEx.handle  Handle
        Byte array
    lsarpc.lsa_CreateAccount.access_mask  Access Mask
        Unsigned 32-bit integer
    lsarpc.lsa_CreateAccount.acct_handle  Acct Handle
        Byte array
    lsarpc.lsa_CreateAccount.handle  Handle
        Byte array
    lsarpc.lsa_CreateAccount.sid  Sid
        No value
    lsarpc.lsa_CreateSecret.access_mask  Access Mask
        Unsigned 32-bit integer
    lsarpc.lsa_CreateSecret.handle  Handle
        Byte array
    lsarpc.lsa_CreateSecret.name  Name
        No value
    lsarpc.lsa_CreateSecret.sec_handle  Sec Handle
        Byte array
    lsarpc.lsa_CreateTrustedDomain.access_mask  Access Mask
        Unsigned 32-bit integer
    lsarpc.lsa_CreateTrustedDomain.handle  Handle
        Byte array
    lsarpc.lsa_CreateTrustedDomain.info  Info
        No value
    lsarpc.lsa_CreateTrustedDomain.trustdom_handle  Trustdom Handle
        Byte array
    lsarpc.lsa_DATA_BUF.data  Data
        Unsigned 8-bit integer
    lsarpc.lsa_DATA_BUF.length  Length
        Unsigned 32-bit integer
    lsarpc.lsa_DATA_BUF.size  Size
        Unsigned 32-bit integer
    lsarpc.lsa_DATA_BUF2.data  Data
        Unsigned 8-bit integer
    lsarpc.lsa_DATA_BUF2.size  Size
        Unsigned 32-bit integer
    lsarpc.lsa_DATA_BUF_PTR.buf  Buf
        No value
    lsarpc.lsa_DefaultQuotaInfo.max_wss  Max Wss
        Unsigned 32-bit integer
    lsarpc.lsa_DefaultQuotaInfo.min_wss  Min Wss
        Unsigned 32-bit integer
    lsarpc.lsa_DefaultQuotaInfo.non_paged_pool  Non Paged Pool
        Unsigned 32-bit integer
    lsarpc.lsa_DefaultQuotaInfo.paged_pool  Paged Pool
        Unsigned 32-bit integer
    lsarpc.lsa_DefaultQuotaInfo.pagefile  Pagefile
        Unsigned 32-bit integer
    lsarpc.lsa_DefaultQuotaInfo.unknown  Unknown
        Unsigned 64-bit integer
    lsarpc.lsa_Delete.handle  Handle
        Byte array
    lsarpc.lsa_DeleteTrustedDomain.dom_sid  Dom Sid
        No value
    lsarpc.lsa_DeleteTrustedDomain.handle  Handle
        Byte array
    lsarpc.lsa_DnsDomainInfo.dns_domain  Dns Domain
        No value
    lsarpc.lsa_DnsDomainInfo.dns_forest  Dns Forest
        No value
    lsarpc.lsa_DnsDomainInfo.domain_guid  Domain Guid
        Globally Unique Identifier
    lsarpc.lsa_DnsDomainInfo.name  Name
        No value
    lsarpc.lsa_DnsDomainInfo.sid  Sid
        No value
    lsarpc.lsa_DomainAccessMask.LSA_DOMAIN_QUERY_AUTH  Lsa Domain Query Auth
        Boolean
    lsarpc.lsa_DomainAccessMask.LSA_DOMAIN_QUERY_CONTROLLERS  Lsa Domain Query Controllers
        Boolean
    lsarpc.lsa_DomainAccessMask.LSA_DOMAIN_QUERY_DOMAIN_NAME  Lsa Domain Query Domain Name
        Boolean
    lsarpc.lsa_DomainAccessMask.LSA_DOMAIN_QUERY_POSIX  Lsa Domain Query Posix
        Boolean
    lsarpc.lsa_DomainAccessMask.LSA_DOMAIN_SET_AUTH  Lsa Domain Set Auth
        Boolean
    lsarpc.lsa_DomainAccessMask.LSA_DOMAIN_SET_CONTROLLERS  Lsa Domain Set Controllers
        Boolean
    lsarpc.lsa_DomainAccessMask.LSA_DOMAIN_SET_POSIX  Lsa Domain Set Posix
        Boolean
    lsarpc.lsa_DomainInfo.name  Name
        No value
    lsarpc.lsa_DomainInfo.sid  Sid
        No value
    lsarpc.lsa_DomainInfoEfs.blob_size  Blob Size
        Unsigned 32-bit integer
    lsarpc.lsa_DomainInfoEfs.efs_blob  Efs Blob
        Unsigned 8-bit integer
    lsarpc.lsa_DomainInfoKerberos.clock_skew  Clock Skew
        Unsigned 64-bit integer
    lsarpc.lsa_DomainInfoKerberos.enforce_restrictions  Enforce Restrictions
        Unsigned 32-bit integer
    lsarpc.lsa_DomainInfoKerberos.service_tkt_lifetime  Service Tkt Lifetime
        Unsigned 64-bit integer
    lsarpc.lsa_DomainInfoKerberos.unknown6  Unknown6
        Unsigned 64-bit integer
    lsarpc.lsa_DomainInfoKerberos.user_tkt_lifetime  User Tkt Lifetime
        Unsigned 64-bit integer
    lsarpc.lsa_DomainInfoKerberos.user_tkt_renewaltime  User Tkt Renewaltime
        Unsigned 64-bit integer
    lsarpc.lsa_DomainInformationPolicy.efs_info  Efs Info
        No value
    lsarpc.lsa_DomainInformationPolicy.kerberos_info  Kerberos Info
        No value
    lsarpc.lsa_DomainList.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_DomainList.domains  Domains
        No value
    lsarpc.lsa_DomainListEx.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_DomainListEx.domains  Domains
        No value
    lsarpc.lsa_EnumAccountRights.handle  Handle
        Byte array
    lsarpc.lsa_EnumAccountRights.rights  Rights
        No value
    lsarpc.lsa_EnumAccountRights.sid  Sid
        No value
    lsarpc.lsa_EnumAccounts.handle  Handle
        Byte array
    lsarpc.lsa_EnumAccounts.num_entries  Num Entries
        Unsigned 32-bit integer
    lsarpc.lsa_EnumAccounts.resume_handle  Resume Handle
        Unsigned 32-bit integer
    lsarpc.lsa_EnumAccounts.sids  Sids
        No value
    lsarpc.lsa_EnumAccountsWithUserRight.handle  Handle
        Byte array
    lsarpc.lsa_EnumAccountsWithUserRight.name  Name
        No value
    lsarpc.lsa_EnumAccountsWithUserRight.sids  Sids
        No value
    lsarpc.lsa_EnumPrivs.handle  Handle
        Byte array
    lsarpc.lsa_EnumPrivs.max_count  Max Count
        Unsigned 32-bit integer
    lsarpc.lsa_EnumPrivs.privs  Privs
        No value
    lsarpc.lsa_EnumPrivs.resume_handle  Resume Handle
        Unsigned 32-bit integer
    lsarpc.lsa_EnumPrivsAccount.handle  Handle
        Byte array
    lsarpc.lsa_EnumPrivsAccount.privs  Privs
        No value
    lsarpc.lsa_EnumTrustDom.domains  Domains
        No value
    lsarpc.lsa_EnumTrustDom.handle  Handle
        Byte array
    lsarpc.lsa_EnumTrustDom.max_size  Max Size
        Unsigned 32-bit integer
    lsarpc.lsa_EnumTrustDom.resume_handle  Resume Handle
        Unsigned 32-bit integer
    lsarpc.lsa_EnumTrustedDomainsEx.domains  Domains
        No value
    lsarpc.lsa_EnumTrustedDomainsEx.handle  Handle
        Byte array
    lsarpc.lsa_EnumTrustedDomainsEx.max_size  Max Size
        Unsigned 32-bit integer
    lsarpc.lsa_EnumTrustedDomainsEx.resume_handle  Resume Handle
        Unsigned 32-bit integer
    lsarpc.lsa_ForestTrustBinaryData.data  Data
        Unsigned 8-bit integer
    lsarpc.lsa_ForestTrustBinaryData.length  Length
        Unsigned 32-bit integer
    lsarpc.lsa_ForestTrustData.data  Data
        No value
    lsarpc.lsa_ForestTrustData.domain_info  Domain Info
        No value
    lsarpc.lsa_ForestTrustData.top_level_name  Top Level Name
        No value
    lsarpc.lsa_ForestTrustData.top_level_name_ex  Top Level Name Ex
        No value
    lsarpc.lsa_ForestTrustDomainInfo.dns_domain_name  Dns Domain Name
        No value
    lsarpc.lsa_ForestTrustDomainInfo.domain_sid  Domain Sid
        No value
    lsarpc.lsa_ForestTrustDomainInfo.netbios_domain_name  Netbios Domain Name
        No value
    lsarpc.lsa_ForestTrustInformation.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_ForestTrustInformation.entries  Entries
        No value
    lsarpc.lsa_ForestTrustRecord.flags  Flags
        Unsigned 32-bit integer
    lsarpc.lsa_ForestTrustRecord.forest_trust_data  Forest Trust Data
        No value
    lsarpc.lsa_ForestTrustRecord.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_ForestTrustRecord.unknown  Unknown
        Unsigned 64-bit integer
    lsarpc.lsa_GetUserName.account_name  Account Name
        No value
    lsarpc.lsa_GetUserName.authority_name  Authority Name
        No value
    lsarpc.lsa_GetUserName.system_name  System Name
        String
    lsarpc.lsa_LUID.high  High
        Unsigned 32-bit integer
    lsarpc.lsa_LUID.low  Low
        Unsigned 32-bit integer
    lsarpc.lsa_LUIDAttribute.attribute  Attribute
        Unsigned 32-bit integer
    lsarpc.lsa_LUIDAttribute.luid  Luid
        No value
    lsarpc.lsa_LookupNames.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames.domains  Domains
        No value
    lsarpc.lsa_LookupNames.handle  Handle
        Byte array
    lsarpc.lsa_LookupNames.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames.names  Names
        No value
    lsarpc.lsa_LookupNames.num_names  Num Names
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames.sids  Sids
        No value
    lsarpc.lsa_LookupNames2.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames2.domains  Domains
        No value
    lsarpc.lsa_LookupNames2.handle  Handle
        Byte array
    lsarpc.lsa_LookupNames2.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames2.names  Names
        No value
    lsarpc.lsa_LookupNames2.num_names  Num Names
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames2.sids  Sids
        No value
    lsarpc.lsa_LookupNames2.unknown1  Unknown1
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames2.unknown2  Unknown2
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames3.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames3.domains  Domains
        No value
    lsarpc.lsa_LookupNames3.handle  Handle
        Byte array
    lsarpc.lsa_LookupNames3.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames3.names  Names
        No value
    lsarpc.lsa_LookupNames3.num_names  Num Names
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames3.sids  Sids
        No value
    lsarpc.lsa_LookupNames3.unknown1  Unknown1
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames3.unknown2  Unknown2
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames4.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames4.domains  Domains
        No value
    lsarpc.lsa_LookupNames4.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames4.names  Names
        No value
    lsarpc.lsa_LookupNames4.num_names  Num Names
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames4.sids  Sids
        No value
    lsarpc.lsa_LookupNames4.unknown1  Unknown1
        Unsigned 32-bit integer
    lsarpc.lsa_LookupNames4.unknown2  Unknown2
        Unsigned 32-bit integer
    lsarpc.lsa_LookupPrivDisplayName.disp_name  Disp Name
        No value
    lsarpc.lsa_LookupPrivDisplayName.handle  Handle
        Byte array
    lsarpc.lsa_LookupPrivDisplayName.language_id  Language Id
        Unsigned 16-bit integer
    lsarpc.lsa_LookupPrivDisplayName.name  Name
        No value
    lsarpc.lsa_LookupPrivDisplayName.unknown  Unknown
        Unsigned 16-bit integer
    lsarpc.lsa_LookupPrivName.handle  Handle
        Byte array
    lsarpc.lsa_LookupPrivName.luid  Luid
        No value
    lsarpc.lsa_LookupPrivName.name  Name
        No value
    lsarpc.lsa_LookupPrivValue.handle  Handle
        Byte array
    lsarpc.lsa_LookupPrivValue.luid  Luid
        No value
    lsarpc.lsa_LookupPrivValue.name  Name
        No value
    lsarpc.lsa_LookupSids.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_LookupSids.domains  Domains
        No value
    lsarpc.lsa_LookupSids.handle  Handle
        Byte array
    lsarpc.lsa_LookupSids.level  Level
        Unsigned 16-bit integer
    lsarpc.lsa_LookupSids.names  Names
        No value
    lsarpc.lsa_LookupSids.sids  Sids
        No value
    lsarpc.lsa_LookupSids2.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_LookupSids2.domains  Domains
        No value
    lsarpc.lsa_LookupSids2.handle  Handle
        Byte array
    lsarpc.lsa_LookupSids2.level  Level
        Unsigned 16-bit integer
    lsarpc.lsa_LookupSids2.names  Names
        No value
    lsarpc.lsa_LookupSids2.sids  Sids
        No value
    lsarpc.lsa_LookupSids2.unknown1  Unknown1
        Unsigned 32-bit integer
    lsarpc.lsa_LookupSids2.unknown2  Unknown2
        Unsigned 32-bit integer
    lsarpc.lsa_LookupSids3.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_LookupSids3.domains  Domains
        No value
    lsarpc.lsa_LookupSids3.level  Level
        Unsigned 16-bit integer
    lsarpc.lsa_LookupSids3.names  Names
        No value
    lsarpc.lsa_LookupSids3.sids  Sids
        No value
    lsarpc.lsa_LookupSids3.unknown1  Unknown1
        Unsigned 32-bit integer
    lsarpc.lsa_LookupSids3.unknown2  Unknown2
        Unsigned 32-bit integer
    lsarpc.lsa_ModificationInfo.db_create_time  Db Create Time
        Date/Time stamp
    lsarpc.lsa_ModificationInfo.modified_id  Modified Id
        Unsigned 64-bit integer
    lsarpc.lsa_ObjectAttribute.attributes  Attributes
        Unsigned 32-bit integer
    lsarpc.lsa_ObjectAttribute.len  Len
        Unsigned 32-bit integer
    lsarpc.lsa_ObjectAttribute.object_name  Object Name
        String
    lsarpc.lsa_ObjectAttribute.root_dir  Root Dir
        Unsigned 8-bit integer
    lsarpc.lsa_ObjectAttribute.sec_desc  Sec Desc
        No value
    lsarpc.lsa_ObjectAttribute.sec_qos  Sec Qos
        No value
    lsarpc.lsa_OpenAccount.access_mask  Access Mask
        Unsigned 32-bit integer
    lsarpc.lsa_OpenAccount.acct_handle  Acct Handle
        Byte array
    lsarpc.lsa_OpenAccount.handle  Handle
        Byte array
    lsarpc.lsa_OpenAccount.sid  Sid
        No value
    lsarpc.lsa_OpenPolicy.access_mask  Access Mask
        Unsigned 32-bit integer
    lsarpc.lsa_OpenPolicy.attr  Attr
        No value
    lsarpc.lsa_OpenPolicy.handle  Handle
        Byte array
    lsarpc.lsa_OpenPolicy.system_name  System Name
        Unsigned 16-bit integer
    lsarpc.lsa_OpenPolicy2.access_mask  Access Mask
        Unsigned 32-bit integer
    lsarpc.lsa_OpenPolicy2.attr  Attr
        No value
    lsarpc.lsa_OpenPolicy2.handle  Handle
        Byte array
    lsarpc.lsa_OpenPolicy2.system_name  System Name
        String
    lsarpc.lsa_OpenSecret.access_mask  Access Mask
        Unsigned 32-bit integer
    lsarpc.lsa_OpenSecret.handle  Handle
        Byte array
    lsarpc.lsa_OpenSecret.name  Name
        No value
    lsarpc.lsa_OpenSecret.sec_handle  Sec Handle
        Byte array
    lsarpc.lsa_OpenTrustedDomain.access_mask  Access Mask
        Unsigned 32-bit integer
    lsarpc.lsa_OpenTrustedDomain.handle  Handle
        Byte array
    lsarpc.lsa_OpenTrustedDomain.sid  Sid
        No value
    lsarpc.lsa_OpenTrustedDomain.trustdom_handle  Trustdom Handle
        Byte array
    lsarpc.lsa_OpenTrustedDomainByName.access_mask  Access Mask
        Unsigned 32-bit integer
    lsarpc.lsa_OpenTrustedDomainByName.handle  Handle
        Byte array
    lsarpc.lsa_OpenTrustedDomainByName.name  Name
        No value
    lsarpc.lsa_OpenTrustedDomainByName.trustdom_handle  Trustdom Handle
        Byte array
    lsarpc.lsa_PDAccountInfo.name  Name
        No value
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_AUDIT_LOG_ADMIN  Lsa Policy Audit Log Admin
        Boolean
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_CREATE_ACCOUNT  Lsa Policy Create Account
        Boolean
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_CREATE_PRIVILEGE  Lsa Policy Create Privilege
        Boolean
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_CREATE_SECRET  Lsa Policy Create Secret
        Boolean
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_GET_PRIVATE_INFORMATION  Lsa Policy Get Private Information
        Boolean
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_LOOKUP_NAMES  Lsa Policy Lookup Names
        Boolean
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_NOTIFICATION  Lsa Policy Notification
        Boolean
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_SERVER_ADMIN  Lsa Policy Server Admin
        Boolean
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_SET_AUDIT_REQUIREMENTS  Lsa Policy Set Audit Requirements
        Boolean
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_SET_DEFAULT_QUOTA_LIMITS  Lsa Policy Set Default Quota Limits
        Boolean
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_TRUST_ADMIN  Lsa Policy Trust Admin
        Boolean
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_VIEW_AUDIT_INFORMATION  Lsa Policy View Audit Information
        Boolean
    lsarpc.lsa_PolicyAccessMask.LSA_POLICY_VIEW_LOCAL_INFORMATION  Lsa Policy View Local Information
        Boolean
    lsarpc.lsa_PolicyInformation.account_domain  Account Domain
        No value
    lsarpc.lsa_PolicyInformation.audit_events  Audit Events
        No value
    lsarpc.lsa_PolicyInformation.audit_log  Audit Log
        No value
    lsarpc.lsa_PolicyInformation.auditfullquery  Auditfullquery
        No value
    lsarpc.lsa_PolicyInformation.auditfullset  Auditfullset
        No value
    lsarpc.lsa_PolicyInformation.db  Db
        No value
    lsarpc.lsa_PolicyInformation.dns  Dns
        No value
    lsarpc.lsa_PolicyInformation.domain  Domain
        No value
    lsarpc.lsa_PolicyInformation.pd  Pd
        No value
    lsarpc.lsa_PolicyInformation.quota  Quota
        No value
    lsarpc.lsa_PolicyInformation.replica  Replica
        No value
    lsarpc.lsa_PolicyInformation.role  Role
        No value
    lsarpc.lsa_PrivArray.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_PrivArray.privs  Privs
        No value
    lsarpc.lsa_PrivEntry.luid  Luid
        No value
    lsarpc.lsa_PrivEntry.name  Name
        No value
    lsarpc.lsa_PrivilegeSet.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_PrivilegeSet.set  Set
        No value
    lsarpc.lsa_PrivilegeSet.unknown  Unknown
        Unsigned 32-bit integer
    lsarpc.lsa_QosInfo.context_mode  Context Mode
        Unsigned 8-bit integer
    lsarpc.lsa_QosInfo.effective_only  Effective Only
        Unsigned 8-bit integer
    lsarpc.lsa_QosInfo.impersonation_level  Impersonation Level
        Unsigned 32-bit integer
    lsarpc.lsa_QosInfo.len  Len
        Unsigned 32-bit integer
    lsarpc.lsa_QueryDomainInformationPolicy.handle  Handle
        Byte array
    lsarpc.lsa_QueryDomainInformationPolicy.info  Info
        No value
    lsarpc.lsa_QueryDomainInformationPolicy.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_QueryInfoPolicy.handle  Handle
        Byte array
    lsarpc.lsa_QueryInfoPolicy.info  Info
        No value
    lsarpc.lsa_QueryInfoPolicy.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_QueryInfoPolicy2.handle  Handle
        Byte array
    lsarpc.lsa_QueryInfoPolicy2.info  Info
        No value
    lsarpc.lsa_QueryInfoPolicy2.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_QuerySecret.new_mtime  New Mtime
        Date/Time stamp
    lsarpc.lsa_QuerySecret.new_val  New Val
        No value
    lsarpc.lsa_QuerySecret.old_mtime  Old Mtime
        Date/Time stamp
    lsarpc.lsa_QuerySecret.old_val  Old Val
        No value
    lsarpc.lsa_QuerySecret.sec_handle  Sec Handle
        Byte array
    lsarpc.lsa_QuerySecurity.handle  Handle
        Byte array
    lsarpc.lsa_QuerySecurity.sdbuf  Sdbuf
        No value
    lsarpc.lsa_QuerySecurity.sec_info  Sec Info
        Unsigned 32-bit integer
    lsarpc.lsa_QueryTrustedDomainInfo.info  Info
        No value
    lsarpc.lsa_QueryTrustedDomainInfo.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_QueryTrustedDomainInfo.trustdom_handle  Trustdom Handle
        Byte array
    lsarpc.lsa_QueryTrustedDomainInfoByName.handle  Handle
        Byte array
    lsarpc.lsa_QueryTrustedDomainInfoByName.info  Info
        No value
    lsarpc.lsa_QueryTrustedDomainInfoByName.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_QueryTrustedDomainInfoByName.trusted_domain  Trusted Domain
        No value
    lsarpc.lsa_QueryTrustedDomainInfoBySid.dom_sid  Dom Sid
        No value
    lsarpc.lsa_QueryTrustedDomainInfoBySid.handle  Handle
        Byte array
    lsarpc.lsa_QueryTrustedDomainInfoBySid.info  Info
        No value
    lsarpc.lsa_QueryTrustedDomainInfoBySid.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_RefDomainList.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_RefDomainList.domains  Domains
        No value
    lsarpc.lsa_RefDomainList.max_size  Max Size
        Unsigned 32-bit integer
    lsarpc.lsa_RemoveAccountRights.handle  Handle
        Byte array
    lsarpc.lsa_RemoveAccountRights.rights  Rights
        No value
    lsarpc.lsa_RemoveAccountRights.sid  Sid
        No value
    lsarpc.lsa_RemoveAccountRights.unknown  Unknown
        Unsigned 32-bit integer
    lsarpc.lsa_RemovePrivilegesFromAccount.handle  Handle
        Byte array
    lsarpc.lsa_RemovePrivilegesFromAccount.privs  Privs
        No value
    lsarpc.lsa_RemovePrivilegesFromAccount.remove_all  Remove All
        Unsigned 8-bit integer
    lsarpc.lsa_ReplicaSourceInfo.account  Account
        No value
    lsarpc.lsa_ReplicaSourceInfo.source  Source
        No value
    lsarpc.lsa_RightAttribute.name  Name
        String
    lsarpc.lsa_RightSet.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_RightSet.names  Names
        No value
    lsarpc.lsa_SecretAccessMask.LSA_SECRET_QUERY_VALUE  Lsa Secret Query Value
        Boolean
    lsarpc.lsa_SecretAccessMask.LSA_SECRET_SET_VALUE  Lsa Secret Set Value
        Boolean
    lsarpc.lsa_ServerRole.role  Role
        Unsigned 32-bit integer
    lsarpc.lsa_SetDomainInformationPolicy.handle  Handle
        Byte array
    lsarpc.lsa_SetDomainInformationPolicy.info  Info
        No value
    lsarpc.lsa_SetDomainInformationPolicy.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_SetInfoPolicy.handle  Handle
        Byte array
    lsarpc.lsa_SetInfoPolicy.info  Info
        No value
    lsarpc.lsa_SetInfoPolicy.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_SetInfoPolicy2.handle  Handle
        Byte array
    lsarpc.lsa_SetInfoPolicy2.info  Info
        No value
    lsarpc.lsa_SetInfoPolicy2.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_SetSecret.new_val  New Val
        No value
    lsarpc.lsa_SetSecret.old_val  Old Val
        No value
    lsarpc.lsa_SetSecret.sec_handle  Sec Handle
        Byte array
    lsarpc.lsa_SetTrustedDomainInfoByName.handle  Handle
        Byte array
    lsarpc.lsa_SetTrustedDomainInfoByName.info  Info
        No value
    lsarpc.lsa_SetTrustedDomainInfoByName.level  Level
        Unsigned 32-bit integer
    lsarpc.lsa_SetTrustedDomainInfoByName.trusted_domain  Trusted Domain
        No value
    lsarpc.lsa_SidArray.num_sids  Num Sids
        Unsigned 32-bit integer
    lsarpc.lsa_SidArray.sids  Sids
        No value
    lsarpc.lsa_SidPtr.sid  Sid
        No value
    lsarpc.lsa_String.length  Length
        Unsigned 16-bit integer
    lsarpc.lsa_String.size  Size
        Unsigned 16-bit integer
    lsarpc.lsa_String.string  String
        Unsigned 16-bit integer
    lsarpc.lsa_StringLarge.length  Length
        Unsigned 16-bit integer
    lsarpc.lsa_StringLarge.size  Size
        Unsigned 16-bit integer
    lsarpc.lsa_StringLarge.string  String
        Unsigned 16-bit integer
    lsarpc.lsa_StringPointer.string  String
        No value
    lsarpc.lsa_Strings.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_Strings.names  Names
        No value
    lsarpc.lsa_TransNameArray.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_TransNameArray.names  Names
        No value
    lsarpc.lsa_TransNameArray2.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_TransNameArray2.names  Names
        No value
    lsarpc.lsa_TransSidArray.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_TransSidArray.sids  Sids
        No value
    lsarpc.lsa_TransSidArray2.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_TransSidArray2.sids  Sids
        No value
    lsarpc.lsa_TransSidArray3.count  Count
        Unsigned 32-bit integer
    lsarpc.lsa_TransSidArray3.sids  Sids
        No value
    lsarpc.lsa_TranslatedName.name  Name
        No value
    lsarpc.lsa_TranslatedName.sid_index  Sid Index
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedName.sid_type  Sid Type
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedName2.name  Name
        No value
    lsarpc.lsa_TranslatedName2.sid_index  Sid Index
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedName2.sid_type  Sid Type
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedName2.unknown  Unknown
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedSid.rid  Rid
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedSid.sid_index  Sid Index
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedSid.sid_type  Sid Type
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedSid2.rid  Rid
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedSid2.sid_index  Sid Index
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedSid2.sid_type  Sid Type
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedSid2.unknown  Unknown
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedSid3.sid  Sid
        No value
    lsarpc.lsa_TranslatedSid3.sid_index  Sid Index
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedSid3.sid_type  Sid Type
        Unsigned 32-bit integer
    lsarpc.lsa_TranslatedSid3.unknown  Unknown
        Unsigned 32-bit integer
    lsarpc.lsa_TrustDomainInfo11.data1  Data1
        No value
    lsarpc.lsa_TrustDomainInfo11.info_ex  Info Ex
        No value
    lsarpc.lsa_TrustDomainInfoAuthInfo.incoming_count  Incoming Count
        Unsigned 32-bit integer
    lsarpc.lsa_TrustDomainInfoAuthInfo.incoming_current_auth_info  Incoming Current Auth Info
        No value
    lsarpc.lsa_TrustDomainInfoAuthInfo.incoming_previous_auth_info  Incoming Previous Auth Info
        No value
    lsarpc.lsa_TrustDomainInfoAuthInfo.outgoing_count  Outgoing Count
        Unsigned 32-bit integer
    lsarpc.lsa_TrustDomainInfoAuthInfo.outgoing_current_auth_info  Outgoing Current Auth Info
        No value
    lsarpc.lsa_TrustDomainInfoAuthInfo.outgoing_previous_auth_info  Outgoing Previous Auth Info
        No value
    lsarpc.lsa_TrustDomainInfoBasic.netbios_name  Netbios Name
        No value
    lsarpc.lsa_TrustDomainInfoBasic.sid  Sid
        No value
    lsarpc.lsa_TrustDomainInfoBuffer.data  Data
        No value
    lsarpc.lsa_TrustDomainInfoBuffer.last_update_time  Last Update Time
        Date/Time stamp
    lsarpc.lsa_TrustDomainInfoBuffer.secret_type  Secret Type
        Unsigned 32-bit integer
    lsarpc.lsa_TrustDomainInfoFullInfo.auth_info  Auth Info
        No value
    lsarpc.lsa_TrustDomainInfoFullInfo.info_ex  Info Ex
        No value
    lsarpc.lsa_TrustDomainInfoFullInfo.posix_offset  Posix Offset
        No value
    lsarpc.lsa_TrustDomainInfoInfoAll.auth_info  Auth Info
        No value
    lsarpc.lsa_TrustDomainInfoInfoAll.data1  Data1
        No value
    lsarpc.lsa_TrustDomainInfoInfoAll.info_ex  Info Ex
        No value
    lsarpc.lsa_TrustDomainInfoInfoAll.posix_offset  Posix Offset
        No value
    lsarpc.lsa_TrustDomainInfoInfoEx.domain_name  Domain Name
        No value
    lsarpc.lsa_TrustDomainInfoInfoEx.netbios_name  Netbios Name
        No value
    lsarpc.lsa_TrustDomainInfoInfoEx.sid  Sid
        No value
    lsarpc.lsa_TrustDomainInfoInfoEx.trust_attributes  Trust Attributes
        Unsigned 32-bit integer
    lsarpc.lsa_TrustDomainInfoInfoEx.trust_direction  Trust Direction
        Unsigned 32-bit integer
    lsarpc.lsa_TrustDomainInfoInfoEx.trust_type  Trust Type
        Unsigned 32-bit integer
    lsarpc.lsa_TrustDomainInfoName.netbios_name  Netbios Name
        No value
    lsarpc.lsa_TrustDomainInfoPassword.old_password  Old Password
        No value
    lsarpc.lsa_TrustDomainInfoPassword.password  Password
        No value
    lsarpc.lsa_TrustDomainInfoPosixOffset.posix_offset  Posix Offset
        Unsigned 32-bit integer
    lsarpc.lsa_TrustedDomainInfo.auth_info  Auth Info
        No value
    lsarpc.lsa_TrustedDomainInfo.full_info  Full Info
        No value
    lsarpc.lsa_TrustedDomainInfo.info11  Info11
        No value
    lsarpc.lsa_TrustedDomainInfo.info_all  Info All
        No value
    lsarpc.lsa_TrustedDomainInfo.info_basic  Info Basic
        No value
    lsarpc.lsa_TrustedDomainInfo.info_ex  Info Ex
        No value
    lsarpc.lsa_TrustedDomainInfo.name  Name
        No value
    lsarpc.lsa_TrustedDomainInfo.password  Password
        No value
    lsarpc.lsa_TrustedDomainInfo.posix_offset  Posix Offset
        No value
    lsarpc.lsa_lsaRQueryForestTrustInformation.forest_trust_info  Forest Trust Info
        No value
    lsarpc.lsa_lsaRQueryForestTrustInformation.handle  Handle
        Byte array
    lsarpc.lsa_lsaRQueryForestTrustInformation.trusted_domain_name  Trusted Domain Name
        No value
    lsarpc.lsa_lsaRQueryForestTrustInformation.unknown  Unknown
        Unsigned 16-bit integer
    lsarpc.opnum  Operation
        Unsigned 16-bit integer
    lsarpc.policy.access_mask  Access Mask
        Unsigned 32-bit integer
    lsarpc.sec_desc_buf_len  Sec Desc Buf Len
        Unsigned 32-bit integer
    lsarpc.status  NT Error
        Unsigned 32-bit integer

LocalTalk Link Access Protocol (llap)

    llap.dst  Destination Node
        Unsigned 8-bit integer
    llap.src  Source Node
        Unsigned 8-bit integer
    llap.type  Type
        Unsigned 8-bit integer

Log Message (log)

    log.missed  WARNING: Missed one or more messages while capturing!
        No value
    log.msg  Message
        String

Logical Link Control GPRS (llcgprs)

    llcgprs.as  Ackn request bit
        Boolean
        Acknowledgement request bit A
    llcgprs.cr  Command/Response bit
        Boolean
    llcgprs.e  E bit
        Boolean
        Encryption mode bit
    llcgprs.frmrcr  C/R
        Unsigned 32-bit integer
        Rejected command response
    llcgprs.frmrrfcf  Control Field Octet
        Unsigned 16-bit integer
        Rejected Frame CF
    llcgprs.frmrspare  X
        Unsigned 32-bit integer
        Filler
    llcgprs.frmrvr  V(R)
        Unsigned 32-bit integer
        Current receive state variable
    llcgprs.frmrvs  V(S)
        Unsigned 32-bit integer
        Current send state variable
    llcgprs.frmrw1  W1
        Unsigned 32-bit integer
        Invalid - info not permitted
    llcgprs.frmrw2  W2
        Unsigned 32-bit integer
        Info exceeded N201
    llcgprs.frmrw3  W3
        Unsigned 32-bit integer
        Undefined control field
    llcgprs.frmrw4  W4
        Unsigned 32-bit integer
        LLE was in ABM when rejecting
    llcgprs.ia  Ack Bit
        Unsigned 24-bit integer
        I A Bit
    llcgprs.ifmt  I Format
        Unsigned 24-bit integer
        I Fmt Bit
    llcgprs.iignore  Spare
        Unsigned 24-bit integer
        Ignore Bit
    llcgprs.k  k
        Unsigned 8-bit integer
        k counter
    llcgprs.kmask  ignored
        Unsigned 8-bit integer
    llcgprs.nr  Receive sequence number
        Unsigned 16-bit integer
        Receive sequence number N(R)
    llcgprs.nu  N(U)
        Unsigned 16-bit integer
        Transmitted unconfirmed sequence number
    llcgprs.pd  Protocol Discriminator_bit
        Boolean
        Protocol Discriminator bit (should be 0)
    llcgprs.pf  P/F bit
        Boolean
        Poll/Final bit
    llcgprs.pm  PM bit
        Boolean
        Protected mode bit
    llcgprs.romrl  Remaining Length of TOM Protocol Header
        Unsigned 8-bit integer
        RL
    llcgprs.s  S format
        Unsigned 16-bit integer
        Supervisory format S
    llcgprs.s1s2  Supervisory function bits
        Unsigned 16-bit integer
        Supervisory functions bits
    llcgprs.sacknr  N(R)
        Unsigned 24-bit integer
    llcgprs.sackns  N(S)
        Unsigned 24-bit integer
    llcgprs.sackrbits  R Bitmap Bits
        Unsigned 8-bit integer
        R Bitmap
    llcgprs.sacksfb  Supervisory function bits
        Unsigned 24-bit integer
        Supervisory functions bits
    llcgprs.sapi  SAPI
        Unsigned 8-bit integer
        Service Access Point Identifier
    llcgprs.sapib  SAPI
        Unsigned 8-bit integer
        Service Access Point Identifier
    llcgprs.sspare  Spare
        Unsigned 16-bit integer
        Ignore Bit
    llcgprs.tomdata  TOM Message Capsule Byte
        Unsigned 8-bit integer
        tdb
    llcgprs.tomhead  TOM Header Byte
        Unsigned 8-bit integer
        thb
    llcgprs.tompd  TOM Protocol Discriminator
        Unsigned 8-bit integer
        TPD
    llcgprs.u  U format
        Unsigned 8-bit integer
        U frame format
    llcgprs.ucom  Command/Response
        Unsigned 8-bit integer
        Commands and Responses
    llcgprs.ui  UI format
        Unsigned 16-bit integer
        UI frame format
    llcgprs.ui_sp_bit  Spare bits
        Unsigned 16-bit integer
    llcgprs.xidbyte  Parameter Byte
        Unsigned 8-bit integer
        Data
    llcgprs.xidlen1  Length
        Unsigned 8-bit integer
        Len
    llcgprs.xidlen2  Length continued
        Unsigned 8-bit integer
        Len
    llcgprs.xidspare  Spare
        Unsigned 8-bit integer
        Ignore
    llcgprs.xidtype  Type
        Unsigned 8-bit integer
    llcgprs.xidxl  XL Bit
        Unsigned 8-bit integer
        XL

Logical-Link Control (llc)

    llc.cimetrics_pid  PID
        Unsigned 16-bit integer
    llc.cisco_pid  PID
        Unsigned 16-bit integer
        Protocol ID
    llc.control  Control
        Unsigned 16-bit integer
    llc.control.f  Final
        Boolean
    llc.control.ftype  Frame type
        Unsigned 16-bit integer
    llc.control.n_r  N(R)
        Unsigned 16-bit integer
    llc.control.n_s  N(S)
        Unsigned 16-bit integer
    llc.control.p  Poll
        Boolean
    llc.control.s_ftype  Supervisory frame type
        Unsigned 16-bit integer
    llc.control.u_modifier_cmd  Command
        Unsigned 8-bit integer
    llc.control.u_modifier_resp  Response
        Unsigned 8-bit integer
    llc.dsap  DSAP
        Unsigned 8-bit integer
        DSAP - 7 Most Significant Bits only
    llc.dsap.ig  IG Bit
        Boolean
        Individual/Group - Least Significant Bit only
    llc.extreme_pid  PID
        Unsigned 16-bit integer
    llc.force10_pid  PID
        Unsigned 16-bit integer
    llc.hpteam_pid  PID
        Unsigned 16-bit integer
    llc.iana_pid  PID
        Unsigned 16-bit integer
    llc.nortel_pid  PID
        Unsigned 16-bit integer
    llc.oui  Organization Code
        Unsigned 24-bit integer
    llc.pid  Protocol ID
        Unsigned 16-bit integer
    llc.ssap  SSAP
        Unsigned 8-bit integer
        SSAP - 7 Most Significant Bits only
    llc.ssap.cr  CR Bit
        Boolean
        Command/Response - Least Significant Bit only
    llc.type  Type
        Unsigned 16-bit integer
    llc.wlccp_pid  PID
        Unsigned 16-bit integer

Logical-Link Control Basic Format XID (basicxid)

    basicxid.llc.xid.format  XID Format
        Unsigned 8-bit integer
    basicxid.llc.xid.types  LLC Types/Classes
        Unsigned 8-bit integer
    basicxid.llc.xid.wsize  Receive Window Size
        Unsigned 8-bit integer

Logotype Certificate Extensions (logotypecertextn)

    logotypecertextn.HashAlgAndValue  HashAlgAndValue
        No value
    logotypecertextn.LogotypeAudio  LogotypeAudio
        No value
    logotypecertextn.LogotypeExtn  LogotypeExtn
        No value
    logotypecertextn.LogotypeImage  LogotypeImage
        No value
    logotypecertextn.LogotypeInfo  LogotypeInfo
        Unsigned 32-bit integer
    logotypecertextn.OtherLogotypeInfo  OtherLogotypeInfo
        No value
    logotypecertextn.audio  audio
        Unsigned 32-bit integer
        SEQUENCE_OF_LogotypeAudio
    logotypecertextn.audioDetails  audioDetails
        No value
        LogotypeDetails
    logotypecertextn.audioInfo  audioInfo
        No value
        LogotypeAudioInfo
    logotypecertextn.channels  channels
        Signed 32-bit integer
        INTEGER
    logotypecertextn.communityLogos  communityLogos
        Unsigned 32-bit integer
        SEQUENCE_OF_LogotypeInfo
    logotypecertextn.direct  direct
        No value
        LogotypeData
    logotypecertextn.fileSize  fileSize
        Signed 32-bit integer
        INTEGER
    logotypecertextn.hashAlg  hashAlg
        No value
        AlgorithmIdentifier
    logotypecertextn.hashValue  hashValue
        Byte array
        OCTET_STRING
    logotypecertextn.image  image
        Unsigned 32-bit integer
        SEQUENCE_OF_LogotypeImage
    logotypecertextn.imageDetails  imageDetails
        No value
        LogotypeDetails
    logotypecertextn.imageInfo  imageInfo
        No value
        LogotypeImageInfo
    logotypecertextn.indirect  indirect
        No value
        LogotypeReference
    logotypecertextn.info  info
        Unsigned 32-bit integer
        LogotypeInfo
    logotypecertextn.issuerLogo  issuerLogo
        Unsigned 32-bit integer
        LogotypeInfo
    logotypecertextn.language  language
        String
        IA5String
    logotypecertextn.logotypeHash  logotypeHash
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_HashAlgAndValue
    logotypecertextn.logotypeType  logotypeType
        Object Identifier
        OBJECT_IDENTIFIER
    logotypecertextn.logotypeURI  logotypeURI
        Unsigned 32-bit integer
    logotypecertextn.logotypeURI_item  logotypeURI item
        String
    logotypecertextn.mediaType  mediaType
        String
        IA5String
    logotypecertextn.numBits  numBits
        Signed 32-bit integer
        INTEGER
    logotypecertextn.otherLogos  otherLogos
        Unsigned 32-bit integer
        SEQUENCE_OF_OtherLogotypeInfo
    logotypecertextn.playTime  playTime
        Signed 32-bit integer
        INTEGER
    logotypecertextn.refStructHash  refStructHash
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_HashAlgAndValue
    logotypecertextn.refStructURI  refStructURI
        Unsigned 32-bit integer
    logotypecertextn.refStructURI_item  refStructURI item
        String
    logotypecertextn.resolution  resolution
        Unsigned 32-bit integer
        LogotypeImageResolution
    logotypecertextn.sampleRate  sampleRate
        Signed 32-bit integer
        INTEGER
    logotypecertextn.subjectLogo  subjectLogo
        Unsigned 32-bit integer
        LogotypeInfo
    logotypecertextn.tableSize  tableSize
        Signed 32-bit integer
        INTEGER
    logotypecertextn.type  type
        Signed 32-bit integer
        LogotypeImageType
    logotypecertextn.xSize  xSize
        Signed 32-bit integer
        INTEGER
    logotypecertextn.ySize  ySize
        Signed 32-bit integer
        INTEGER

Lucent/Ascend debug output (ascend)

    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

MAC (mac)

    mac.ct  C/T
        Unsigned 8-bit integer
    mac.logical_channel  Logical Channel
        Unsigned 16-bit integer
    mac.tctf  Target Channel Type Field
        Unsigned 8-bit integer
    mac.ueid  C-RNTI (UEID)
        Unsigned 16-bit integer
    mac.ueid_type  UEID Type
        Unsigned 8-bit integer

MAC Control (macc)

    macctrl.cbfc.enbv  CBFC Class Enable Vector
        Unsigned 16-bit integer
    macctrl.cbfc.enbv.c0  C0
        Boolean
    macctrl.cbfc.enbv.c1  C1
        Boolean
    macctrl.cbfc.enbv.c2  C2
        Boolean
    macctrl.cbfc.enbv.c3  C3
        Boolean
    macctrl.cbfc.enbv.c4  C4
        Boolean
    macctrl.cbfc.enbv.c5  C5
        Boolean
    macctrl.cbfc.enbv.c6  C6
        Boolean
    macctrl.cbfc.enbv.c7  C7
        Boolean
    macctrl.cbfc.pause_time.c0  C0
        Unsigned 16-bit integer
    macctrl.cbfc.pause_time.c1  C1
        Unsigned 16-bit integer
    macctrl.cbfc.pause_time.c2  C2
        Unsigned 16-bit integer
    macctrl.cbfc.pause_time.c3  C3
        Unsigned 16-bit integer
    macctrl.cbfc.pause_time.c4  C4
        Unsigned 16-bit integer
    macctrl.cbfc.pause_time.c5  C5
        Unsigned 16-bit integer
    macctrl.cbfc.pause_time.c6  C6
        Unsigned 16-bit integer
    macctrl.cbfc.pause_time.c7  C7
        Unsigned 16-bit integer
    macctrl.opcode  Opcode
        Unsigned 16-bit integer
        MAC Control opcode
    macctrl.pause_time  pause_time
        Unsigned 16-bit integer
        MAC control PAUSE frame pause_time

MAC-LTE (mac-lte)

    mac-lte.bch-transport-channel  Transport channel
        Unsigned 8-bit integer
        Transport channel BCH data was carried on
    mac-lte.bch.pdu  BCH PDU
        Byte array
    mac-lte.context  Context
        String
    mac-lte.control.bsr  BSR
        String
        Buffer Status Report
    mac-lte.control.bsr.buffer-size  Buffer Size
        Unsigned 8-bit integer
        Buffer Size available in all channels in group
    mac-lte.control.bsr.buffer-size-0  Buffer Size 0
        Unsigned 8-bit integer
        Buffer Size available in logical channel group 0
    mac-lte.control.bsr.buffer-size-1  Buffer Size 1
        Unsigned 16-bit integer
        Buffer Size available in logical channel group 1
    mac-lte.control.bsr.buffer-size-2  Buffer Size 2
        Unsigned 16-bit integer
        Buffer Size available in logical channel group 2
    mac-lte.control.bsr.buffer-size-3  Buffer Size 3
        Unsigned 8-bit integer
        Buffer Size available in logical channel group 3
    mac-lte.control.bsr.lcg-id  Logical Channel Group ID
        Unsigned 8-bit integer
    mac-lte.control.crnti  C-RNTI
        Unsigned 16-bit integer
        C-RNTI for the UE
    mac-lte.control.padding  Padding
        No value
    mac-lte.control.power-headroom  Power Headroom
        String
    mac-lte.control.power-headroom.level  Power Headroom Level
        Unsigned 8-bit integer
        Power Headroom Level in dB
    mac-lte.control.power-headroom.reserved  Reserved
        Unsigned 8-bit integer
        Reserved bits, should be 0
    mac-lte.control.timing-advance  Timing Advance
        Unsigned 8-bit integer
        Timing Advance (0-1282 - see 36.213, 4.2.3)
    mac-lte.control.timing-advance.reserved  Reserved
        Unsigned 8-bit integer
        Reserved bits
    mac-lte.control.ue-contention-resolution  UE Contention Resolution
        String
    mac-lte.control.ue-contention-resolution.identity  UE Contention Resolution Identity
        Byte array
    mac-lte.control.ue-contention-resolution.matches-msg3  UE Contention Resolution Matches Msg3
        Boolean
    mac-lte.control.ue-contention-resolution.msg3  Msg3
        Frame number
    mac-lte.control.ue-contention-resolution.time-since-msg3  Time since Msg3
        Unsigned 32-bit integer
        Time in ms since corresponding Msg3
    mac-lte.crc-status  CRC Status
        Unsigned 8-bit integer
        CRC Status as reported by PHY
    mac-lte.direction  Direction
        Unsigned 8-bit integer
        Direction of message
    mac-lte.dl-phy  DL PHY attributes
        String
    mac-lte.dl-phy.aggregation-level  Aggregation Level
        Unsigned 8-bit integer
    mac-lte.dl-phy.crc-status  CRC Status
        Unsigned 8-bit integer
    mac-lte.dl-phy.dci-format  DCI format
        Unsigned 8-bit integer
    mac-lte.dl-phy.mcs-index  MCS Index
        Unsigned 8-bit integer
    mac-lte.dl-phy.rb-length  RB Length
        Unsigned 8-bit integer
    mac-lte.dl-phy.resource-allocation-type  Resource Allocation Type
        Unsigned 8-bit integer
    mac-lte.dl-phy.retx  DL Retx
        Boolean
    mac-lte.dl-phy.rv-index  RV Index
        Unsigned 8-bit integer
    mac-lte.dlsch  DL-SCH
        String
    mac-lte.dlsch.header  DL-SCH Header
        String
    mac-lte.dlsch.lcid  LCID
        Unsigned 8-bit integer
        DL-SCH Logical Channel Identifier
    mac-lte.dlsch.suspected-harq-resend  Suspected DL HARQ resend
        Boolean
    mac-lte.dlsch.suspected-harq-resend-original_frame  Frame with previous tx
        Frame number
    mac-lte.grant-subframe  Grant Subframe
        Unsigned 16-bit integer
        Subframe grant for this PDU was received
    mac-lte.is-predefined-frame  Predefined frame
        Unsigned 8-bit integer
        Predefined test frame (or real MAC PDU)
    mac-lte.length  Length of frame
        Unsigned 8-bit integer
        Original length of frame (including SDUs and padding)
    mac-lte.padding-data  Padding data
        Byte array
    mac-lte.padding-length  Padding length
        Signed 32-bit integer
        Length of padding data not included at end of frame
    mac-lte.pch.pdu  PCH PDU
        Byte array
    mac-lte.preamble-sent  PRACH: 
        String
    mac-lte.preamble-sent.attempt  RACH Attempt Number
        Unsigned 8-bit integer
        RACH attempt number
    mac-lte.preamble-sent.rapid  RAPID
        Unsigned 8-bit integer
        RAPID sent in RACH preamble
    mac-lte.predefined-data  Predefined data
        Byte array
        Predefined test data
    mac-lte.radio-type  Radio Type
        Unsigned 8-bit integer
    mac-lte.rar  RAR
        No value
    mac-lte.rar.bi  BI
        Unsigned 8-bit integer
        Backoff Indicator (ms)
    mac-lte.rar.body  RAR Body
        String
    mac-lte.rar.e  Extension
        Unsigned 8-bit integer
        Extension - i.e. further RAR headers after this one
    mac-lte.rar.header  RAR Header
        String
    mac-lte.rar.headers  RAR Headers
        String
    mac-lte.rar.rapid  RAPID
        Unsigned 8-bit integer
        Random Access Preamble IDentifier
    mac-lte.rar.reserved  Reserved
        Unsigned 8-bit integer
        Reserved bits in RAR header - should be 0
    mac-lte.rar.reserved2  Reserved
        Unsigned 8-bit integer
        Reserved bit in RAR body - should be 0
    mac-lte.rar.t  Type
        Unsigned 8-bit integer
        Type field indicating whether the payload is RAPID or BI
    mac-lte.rar.ta  Timing Advance
        Unsigned 16-bit integer
        Required adjustment to uplink transmission timing
    mac-lte.rar.temporary-crnti  Temporary C-RNTI
        Unsigned 16-bit integer
    mac-lte.rar.ul-grant  UL Grant
        Unsigned 24-bit integer
        Size of UL Grant
    mac-lte.rar.ul-grant.cqi-request  CQI Request
        Unsigned 8-bit integer
    mac-lte.rar.ul-grant.fsrba  Fixed sized resource block assignment
        Unsigned 16-bit integer
    mac-lte.rar.ul-grant.hopping  Hopping Flag
        Unsigned 8-bit integer
    mac-lte.rar.ul-grant.tcsp  TPC command for scheduled PUSCH
        Unsigned 8-bit integer
    mac-lte.rar.ul-grant.tmcs  Truncated Modulation and coding scheme
        Unsigned 16-bit integer
    mac-lte.rar.ul-grant.ul-delay  UL Delay
        Unsigned 8-bit integer
    mac-lte.raw-data  Raw data
        Byte array
        Raw bytes of PDU (e.g. if CRC failed)
    mac-lte.retx-count  ReTX count
        Unsigned 8-bit integer
        Number of times this PDU has been retransmitted
    mac-lte.rnti  RNTI
        Unsigned 16-bit integer
        RNTI associated with message
    mac-lte.rnti-type  RNTI Type
        Unsigned 8-bit integer
        Type of RNTI associated with message
    mac-lte.sch.extended  Extension
        Unsigned 8-bit integer
        Extension - i.e. further headers after this one
    mac-lte.sch.format  Format
        Unsigned 8-bit integer
    mac-lte.sch.header-only  MAC PDU Header only
        Unsigned 8-bit integer
    mac-lte.sch.length  Length
        Unsigned 16-bit integer
        Length of MAC SDU or MAC control element
    mac-lte.sch.reserved  SCH reserved bits
        Unsigned 8-bit integer
    mac-lte.sch.sdu  SDU
        Byte array
        Shared channel SDU
    mac-lte.sch.subheader  SCH sub-header
        String
    mac-lte.sr-failure  Scheduling Request failure
        No value
    mac-lte.sr-req  Scheduling Request sent
        No value
    mac-lte.subframe  Subframe
        Unsigned 16-bit integer
        Subframe number associated with message
    mac-lte.ueid  UEId
        Unsigned 16-bit integer
        User Equipment Identifier associated with message
    mac-lte.ul-grant-size  Uplink grant size
        Unsigned 8-bit integer
        Uplink grant size (in bytes)
    mac-lte.ul-phy  UL PHY attributes
        String
    mac-lte.ul-phy.modulation-type  Modulation type
        Unsigned 8-bit integer
    mac-lte.ul-phy.resource-block-length  Resource Block Length
        Unsigned 8-bit integer
    mac-lte.ul-phy.resource-block-start  Resource Block Start
        Unsigned 8-bit integer
    mac-lte.ul-phy.tbs-index  TBs Index
        Unsigned 8-bit integer
    mac-lte.ulsch  UL-SCH
        String
    mac-lte.ulsch.failure-answering-sr  SR which failed
        Frame number
    mac-lte.ulsch.failure-answering-sr-frame  This SR fails
        Frame number
    mac-lte.ulsch.grant-answering-sr  First Grant Following SR from
        Frame number
    mac-lte.ulsch.grant-answering-sr-frame  This SR results in a grant here
        Frame number
    mac-lte.ulsch.harq-resend-original_frame  Frame with previous tx
        Frame number
    mac-lte.ulsch.header  UL-SCH Header
        String
    mac-lte.ulsch.lcid  LCID
        Unsigned 8-bit integer
        UL-SCH Logical Channel Identifier
    mac-lte.ulsch.sr-invalid-event  Invalid event
        No value
    mac-lte.ulsch.time-since-sr  Time since SR (ms)
        Unsigned 32-bit integer
    mac-lte.ulsch.time-until-sr-answer  Time until answer (ms)
        Unsigned 32-bit integer

MDS Header (mdshdr)

    mdshdr.crc  CRC
        Unsigned 32-bit integer
    mdshdr.dstidx  Dst Index
        Unsigned 16-bit integer
    mdshdr.eof  EOF
        Unsigned 8-bit integer
    mdshdr.plen  Packet Len
        Unsigned 16-bit integer
    mdshdr.sof  SOF
        Unsigned 8-bit integer
    mdshdr.span  SPAN Frame
        Unsigned 8-bit integer
    mdshdr.srcidx  Src Index
        Unsigned 16-bit integer
    mdshdr.vsan  VSAN
        Unsigned 16-bit integer

MEGACO (megaco)

    megaco._h324_h223capr  h324/h223capr
        String
    megaco.audit  Audit Descriptor
        No value
        Audit Descriptor of the megaco Command
    megaco.audititem  Audit Item
        String
        Identity of item to be audited
    megaco.command  Command
        String
        Command of this message
    megaco.command_line  Command line
        String
        Commands of this message
    megaco.context  Context
        String
        Context ID of this massage
    megaco.ctx  Context
        Unsigned 32-bit integer
    megaco.ctx.cmd  Command in Frame
        Frame number
    megaco.ctx.term  Termination
        String
    megaco.ctx.term.bir  BIR
        String
    megaco.ctx.term.nsap  NSAP
        String
    megaco.ctx.term.type  Type
        Unsigned 32-bit integer
    megaco.digitmap  DigitMap Descriptor
        String
        DigitMap Descriptor of the megaco Command
    megaco.ds_dscp  ds/dscp
        String
        ds/dscp Differentiated Services Code Point
    megaco.error  ERROR Descriptor
        String
        Error Descriptor of the megaco Command
    megaco.error_frame  ERROR frame
        String
        Syntax error
    megaco.eventbuffercontrol  Event Buffer Control
        String
        Event Buffer Control in Termination State Descriptor
    megaco.events  Events Descriptor
        String
        Events Descriptor of the megaco Command
    megaco.h245  h245
        String
        Embedded H.245 message
    megaco.h245.h223Capability  h223Capability
        No value
        megaco.h245.H223Capability
    megaco.h324_muxtbl_in  h324/muxtbl_in
        String
    megaco.h324_muxtbl_out  h324/muxtbl_out
        String
    megaco.localcontroldescriptor  Local Control Descriptor
        String
        Local Control Descriptor in Media Descriptor
    megaco.localdescriptor  Local Descriptor
        String
        Local Descriptor in Media Descriptor
    megaco.mId  MediagatewayID
        String
        Mediagateway ID
    megaco.media  Media Descriptor
        String
        Media Descriptor of the megaco Command
    megaco.mode  Mode
        String
        Mode  sendonly/receiveonly/inactive/loopback
    megaco.modem  Modem Descriptor
        String
        Modem Descriptor of the megaco Command
    megaco.multiplex  Multiplex Descriptor
        String
        Multiplex Descriptor of the megaco Command
    megaco.observedevents  Observed Events Descriptor
        String
        Observed Events Descriptor of the megaco Command
    megaco.packagesdescriptor  Packages Descriptor
        String
    megaco.pkgdname  pkgdName
        String
        PackageName SLASH ItemID
    megaco.remotedescriptor  Remote Descriptor
        String
        Remote Descriptor in Media Descriptor
    megaco.requestid  RequestID
        String
        RequestID in Events or Observedevents Descriptor
    megaco.reservegroup  Reserve Group
        String
        Reserve Group on or off
    megaco.reservevalue  Reserve Value
        String
        Reserve Value on or off
    megaco.servicechange  Service Change Descriptor
        String
        Service Change Descriptor of the megaco Command
    megaco.servicestates  Service State
        String
        Service States in Termination State Descriptor
    megaco.signal  Signal Descriptor
        String
        Signal Descriptor of the megaco Command
    megaco.statistics  Statistics Descriptor
        String
        Statistics Descriptor of the megaco Command
    megaco.streamid  StreamID
        String
        StreamID in the Media Descriptor
    megaco.termid  Termination ID
        String
        Termination ID of this Command
    megaco.terminationstate  Termination State Descriptor
        String
        Termination State Descriptor in Media Descriptor
    megaco.topology  Topology Descriptor
        String
        Topology Descriptor of the megaco Command
    megaco.transaction  Transaction
        String
        Message Originator
    megaco.transid  Transaction ID
        String
        Transaction ID of this message
    megaco.version  Version
        String

MIME Multipart Media Encapsulation (mime_multipart)

    mime_multipart.header.content-disposition  Content-Disposition
        String
        RFC 2183: Content-Disposition Header
    mime_multipart.header.content-encoding  Content-Encoding
        String
        Content-Encoding Header
    mime_multipart.header.content-id  Content-Id
        String
        RFC 2045: Content-Id Header
    mime_multipart.header.content-language  Content-Language
        String
        Content-Language Header
    mime_multipart.header.content-length  Content-Length
        String
        Content-Length Header
    mime_multipart.header.content-transfer-encoding  Content-Transfer-Encoding
        String
        RFC 2045: Content-Transfer-Encoding Header
    mime_multipart.header.content-type  Content-Type
        String
        Content-Type Header
    mime_multipart.part  Encapsulated multipart part
        String
    mime_multipart.type  Type
        String
        MIME multipart encapsulation type

MMS (mms)

    mms.AccessResult  AccessResult
        Unsigned 32-bit integer
    mms.AlarmEnrollmentSummary  AlarmEnrollmentSummary
        No value
    mms.AlarmSummary  AlarmSummary
        No value
    mms.AlternateAccess_item  AlternateAccess item
        Unsigned 32-bit integer
    mms.Data  Data
        Unsigned 32-bit integer
    mms.DirectoryEntry  DirectoryEntry
        No value
    mms.EntryContent  EntryContent
        No value
    mms.EventEnrollment  EventEnrollment
        No value
    mms.FileName_item  FileName item
        String
        GraphicString
    mms.Identifier  Identifier
        String
    mms.JournalEntry  JournalEntry
        No value
    mms.Modifier  Modifier
        Unsigned 32-bit integer
    mms.ObjectName  ObjectName
        Unsigned 32-bit integer
    mms.ScatteredAccessDescription_item  ScatteredAccessDescription item
        No value
    mms.SemaphoreEntry  SemaphoreEntry
        No value
    mms.Write_Response_item  Write-Response item
        Unsigned 32-bit integer
    mms.aaSpecific  aaSpecific
        No value
    mms.aa_specific  aa-specific
        String
        Identifier
    mms.abortOnTimeOut  abortOnTimeOut
        Boolean
        BOOLEAN
    mms.acceptableDelay  acceptableDelay
        Signed 32-bit integer
        Unsigned32
    mms.access  access
        Signed 32-bit integer
    mms.accessSelection  accessSelection
        Unsigned 32-bit integer
    mms.accesst  accesst
        Unsigned 32-bit integer
        AlternateAccessSelection
    mms.acknowledgeEventNotification  acknowledgeEventNotification
        No value
        AcknowledgeEventNotification_Request
    mms.acknowledgedState  acknowledgedState
        Signed 32-bit integer
        EC_State
    mms.acknowledgmentFilter  acknowledgmentFilter
        Signed 32-bit integer
    mms.actionResult  actionResult
        No value
    mms.active-to-disabled  active-to-disabled
        Boolean
    mms.active-to-idle  active-to-idle
        Boolean
    mms.activeAlarmsOnly  activeAlarmsOnly
        Boolean
        BOOLEAN
    mms.additionalCode  additionalCode
        Signed 32-bit integer
        INTEGER
    mms.additionalDescription  additionalDescription
        String
        VisibleString
    mms.additionalDetail  additionalDetail
        No value
        JOU_Additional_Detail
    mms.address  address
        Unsigned 32-bit integer
    mms.ae_invocation_id  ae-invocation-id
        Signed 32-bit integer
    mms.ae_qualifier  ae-qualifier
        Unsigned 32-bit integer
    mms.alarmAcknowledgementRule  alarmAcknowledgementRule
        Signed 32-bit integer
        AlarmAckRule
    mms.alarmAcknowledgmentRule  alarmAcknowledgmentRule
        Signed 32-bit integer
        AlarmAckRule
    mms.alarmSummaryReports  alarmSummaryReports
        Boolean
        BOOLEAN
    mms.allElements  allElements
        No value
    mms.alterEventConditionMonitoring  alterEventConditionMonitoring
        No value
        AlterEventConditionMonitoring_Request
    mms.alterEventEnrollment  alterEventEnrollment
        No value
        AlterEventEnrollment_Request
    mms.alternateAccess  alternateAccess
        Unsigned 32-bit integer
    mms.annotation  annotation
        String
        VisibleString
    mms.any-to-deleted  any-to-deleted
        Boolean
    mms.ap_invocation_id  ap-invocation-id
        Signed 32-bit integer
    mms.ap_title  ap-title
        Unsigned 32-bit integer
    mms.applicationReference  applicationReference
        No value
    mms.applicationToPreempt  applicationToPreempt
        No value
        ApplicationReference
    mms.application_reference  application-reference
        Signed 32-bit integer
    mms.array  array
        No value
    mms.attachToEventCondition  attachToEventCondition
        Boolean
    mms.attachToSemaphore  attachToSemaphore
        Boolean
    mms.attach_To_Event_Condition  attach-To-Event-Condition
        No value
        AttachToEventCondition
    mms.attach_To_Semaphore  attach-To-Semaphore
        No value
        AttachToSemaphore
    mms.bcd  bcd
        Signed 32-bit integer
        Unsigned8
    mms.binary_time  binary-time
        Boolean
        BOOLEAN
    mms.bit_string  bit-string
        Signed 32-bit integer
        Integer32
    mms.boolean  boolean
        No value
    mms.booleanArray  booleanArray
        Byte array
        BIT_STRING
    mms.cancel  cancel
        Signed 32-bit integer
    mms.cancel_ErrorPDU  cancel-ErrorPDU
        No value
    mms.cancel_RequestPDU  cancel-RequestPDU
        Signed 32-bit integer
    mms.cancel_ResponsePDU  cancel-ResponsePDU
        Signed 32-bit integer
    mms.cancel_errorPDU  cancel-errorPDU
        Signed 32-bit integer
    mms.cancel_requestPDU  cancel-requestPDU
        Signed 32-bit integer
    mms.cancel_responsePDU  cancel-responsePDU
        Signed 32-bit integer
    mms.causingTransitions  causingTransitions
        Byte array
        Transitions
    mms.cei  cei
        Boolean
    mms.class  class
        Signed 32-bit integer
    mms.clientApplication  clientApplication
        No value
        ApplicationReference
    mms.coded  coded
        No value
        EXTERNALt
    mms.component  component
        String
        Identifier
    mms.componentName  componentName
        String
        Identifier
    mms.componentType  componentType
        Unsigned 32-bit integer
        TypeSpecification
    mms.components  components
        Unsigned 32-bit integer
    mms.components_item  components item
        No value
    mms.conclude  conclude
        Signed 32-bit integer
    mms.conclude_ErrorPDU  conclude-ErrorPDU
        No value
    mms.conclude_RequestPDU  conclude-RequestPDU
        No value
    mms.conclude_ResponsePDU  conclude-ResponsePDU
        No value
    mms.conclude_errorPDU  conclude-errorPDU
        Signed 32-bit integer
    mms.conclude_requestPDU  conclude-requestPDU
        Signed 32-bit integer
    mms.conclude_responsePDU  conclude-responsePDU
        Signed 32-bit integer
    mms.confirmedServiceRequest  confirmedServiceRequest
        Unsigned 32-bit integer
    mms.confirmedServiceResponse  confirmedServiceResponse
        Unsigned 32-bit integer
    mms.confirmed_ErrorPDU  confirmed-ErrorPDU
        No value
    mms.confirmed_RequestPDU  confirmed-RequestPDU
        No value
    mms.confirmed_ResponsePDU  confirmed-ResponsePDU
        No value
    mms.confirmed_errorPDU  confirmed-errorPDU
        Signed 32-bit integer
    mms.confirmed_requestPDU  confirmed-requestPDU
        Signed 32-bit integer
    mms.confirmed_responsePDU  confirmed-responsePDU
        Signed 32-bit integer
    mms.continueAfter  continueAfter
        String
        Identifier
    mms.controlTimeOut  controlTimeOut
        Signed 32-bit integer
        Unsigned32
    mms.createJournal  createJournal
        No value
        CreateJournal_Request
    mms.createProgramInvocation  createProgramInvocation
        No value
        CreateProgramInvocation_Request
    mms.cs_request_detail  cs-request-detail
        Unsigned 32-bit integer
    mms.currentEntries  currentEntries
        Signed 32-bit integer
        Unsigned32
    mms.currentFileName  currentFileName
        Unsigned 32-bit integer
        FileName
    mms.currentName  currentName
        Unsigned 32-bit integer
        ObjectName
    mms.currentState  currentState
        Signed 32-bit integer
        EC_State
    mms.data  data
        No value
    mms.defineEventAction  defineEventAction
        No value
        DefineEventAction_Request
    mms.defineEventCondition  defineEventCondition
        No value
        DefineEventCondition_Request
    mms.defineEventEnrollment  defineEventEnrollment
        No value
        DefineEventEnrollment_Request
    mms.defineEventEnrollment_Error  defineEventEnrollment-Error
        Unsigned 32-bit integer
    mms.defineNamedType  defineNamedType
        No value
        DefineNamedType_Request
    mms.defineNamedVariable  defineNamedVariable
        No value
        DefineNamedVariable_Request
    mms.defineNamedVariableList  defineNamedVariableList
        No value
        DefineNamedVariableList_Request
    mms.defineScatteredAccess  defineScatteredAccess
        No value
        DefineScatteredAccess_Request
    mms.defineSemaphore  defineSemaphore
        No value
        DefineSemaphore_Request
    mms.definition  definition
        Signed 32-bit integer
    mms.deleteDomain  deleteDomain
        String
        DeleteDomain_Request
    mms.deleteEventAction  deleteEventAction
        Unsigned 32-bit integer
        DeleteEventAction_Request
    mms.deleteEventCondition  deleteEventCondition
        Unsigned 32-bit integer
        DeleteEventCondition_Request
    mms.deleteEventEnrollment  deleteEventEnrollment
        Unsigned 32-bit integer
        DeleteEventEnrollment_Request
    mms.deleteJournal  deleteJournal
        No value
        DeleteJournal_Request
    mms.deleteNamedType  deleteNamedType
        No value
        DeleteNamedType_Request
    mms.deleteNamedVariableList  deleteNamedVariableList
        No value
        DeleteNamedVariableList_Request
    mms.deleteProgramInvocation  deleteProgramInvocation
        String
        DeleteProgramInvocation_Request
    mms.deleteSemaphore  deleteSemaphore
        Unsigned 32-bit integer
        DeleteSemaphore_Request
    mms.deleteVariableAccess  deleteVariableAccess
        No value
        DeleteVariableAccess_Request
    mms.destinationFile  destinationFile
        Unsigned 32-bit integer
        FileName
    mms.disabled-to-active  disabled-to-active
        Boolean
    mms.disabled-to-idle  disabled-to-idle
        Boolean
    mms.discard  discard
        No value
        ServiceError
    mms.domain  domain
        String
        Identifier
    mms.domainId  domainId
        String
        Identifier
    mms.domainName  domainName
        String
        Identifier
    mms.domainSpecific  domainSpecific
        String
        Identifier
    mms.domain_specific  domain-specific
        No value
    mms.downloadSegment  downloadSegment
        String
        DownloadSegment_Request
    mms.duration  duration
        Signed 32-bit integer
        EE_Duration
    mms.ea  ea
        Unsigned 32-bit integer
        ObjectName
    mms.ec  ec
        Unsigned 32-bit integer
        ObjectName
    mms.echo  echo
        Boolean
        BOOLEAN
    mms.elementType  elementType
        Unsigned 32-bit integer
        TypeSpecification
    mms.enabled  enabled
        Boolean
        BOOLEAN
    mms.encodedString  encodedString
        No value
        EXTERNALt
    mms.endingTime  endingTime
        String
        TimeOfDay
    mms.enrollementState  enrollementState
        Signed 32-bit integer
        EE_State
    mms.enrollmentClass  enrollmentClass
        Signed 32-bit integer
        EE_Class
    mms.enrollmentsOnly  enrollmentsOnly
        Boolean
        BOOLEAN
    mms.entryClass  entryClass
        Signed 32-bit integer
    mms.entryContent  entryContent
        No value
    mms.entryForm  entryForm
        Unsigned 32-bit integer
    mms.entryId  entryId
        Byte array
        OCTET_STRING
    mms.entryIdToStartAfter  entryIdToStartAfter
        Byte array
        OCTET_STRING
    mms.entryIdentifier  entryIdentifier
        Byte array
        OCTET_STRING
    mms.entrySpecification  entrySpecification
        Byte array
        OCTET_STRING
    mms.entryToStartAfter  entryToStartAfter
        No value
    mms.errorClass  errorClass
        Unsigned 32-bit integer
    mms.evaluationInterval  evaluationInterval
        Signed 32-bit integer
        Unsigned32
    mms.event  event
        No value
    mms.eventActioName  eventActioName
        Unsigned 32-bit integer
        ObjectName
    mms.eventAction  eventAction
        Unsigned 32-bit integer
        ObjectName
    mms.eventActionName  eventActionName
        Unsigned 32-bit integer
        ObjectName
    mms.eventActionResult  eventActionResult
        Unsigned 32-bit integer
    mms.eventCondition  eventCondition
        Unsigned 32-bit integer
        ObjectName
    mms.eventConditionName  eventConditionName
        Unsigned 32-bit integer
        ObjectName
    mms.eventConditionTransition  eventConditionTransition
        Byte array
        Transitions
    mms.eventConditionTransitions  eventConditionTransitions
        Byte array
        Transitions
    mms.eventEnrollmentName  eventEnrollmentName
        Unsigned 32-bit integer
        ObjectName
    mms.eventEnrollmentNames  eventEnrollmentNames
        Unsigned 32-bit integer
        SEQUENCE_OF_ObjectName
    mms.eventNotification  eventNotification
        No value
    mms.executionArgument  executionArgument
        Unsigned 32-bit integer
    mms.extendedObjectClass  extendedObjectClass
        Unsigned 32-bit integer
    mms.failure  failure
        Signed 32-bit integer
        DataAccessError
    mms.file  file
        Signed 32-bit integer
    mms.fileAttributes  fileAttributes
        No value
    mms.fileClose  fileClose
        Signed 32-bit integer
        FileClose_Request
    mms.fileData  fileData
        Byte array
        OCTET_STRING
    mms.fileDelete  fileDelete
        Unsigned 32-bit integer
        FileDelete_Request
    mms.fileDirectory  fileDirectory
        No value
        FileDirectory_Request
    mms.fileName  fileName
        Unsigned 32-bit integer
    mms.fileOpen  fileOpen
        No value
        FileOpen_Request
    mms.fileRead  fileRead
        Signed 32-bit integer
        FileRead_Request
    mms.fileRename  fileRename
        No value
        FileRename_Request
    mms.fileSpecification  fileSpecification
        Unsigned 32-bit integer
        FileName
    mms.filenName  filenName
        Unsigned 32-bit integer
        FileName
    mms.filename  filename
        Unsigned 32-bit integer
    mms.floating_point  floating-point
        Byte array
        FloatingPoint
    mms.foo  foo
        Signed 32-bit integer
        INTEGER
    mms.freeNamedToken  freeNamedToken
        String
        Identifier
    mms.frsmID  frsmID
        Signed 32-bit integer
        Integer32
    mms.generalized_time  generalized-time
        No value
    mms.getAlarmEnrollmentSummary  getAlarmEnrollmentSummary
        No value
        GetAlarmEnrollmentSummary_Request
    mms.getAlarmSummary  getAlarmSummary
        No value
        GetAlarmSummary_Request
    mms.getCapabilityList  getCapabilityList
        No value
        GetCapabilityList_Request
    mms.getDomainAttributes  getDomainAttributes
        String
        GetDomainAttributes_Request
    mms.getEventActionAttributes  getEventActionAttributes
        Unsigned 32-bit integer
        GetEventActionAttributes_Request
    mms.getEventConditionAttributes  getEventConditionAttributes
        Unsigned 32-bit integer
        GetEventConditionAttributes_Request
    mms.getEventEnrollmentAttributes  getEventEnrollmentAttributes
        No value
        GetEventEnrollmentAttributes_Request
    mms.getNameList  getNameList
        No value
        GetNameList_Request
    mms.getNamedTypeAttributes  getNamedTypeAttributes
        Unsigned 32-bit integer
        GetNamedTypeAttributes_Request
    mms.getNamedVariableListAttributes  getNamedVariableListAttributes
        Unsigned 32-bit integer
        GetNamedVariableListAttributes_Request
    mms.getProgramInvocationAttributes  getProgramInvocationAttributes
        String
        GetProgramInvocationAttributes_Request
    mms.getScatteredAccessAttributes  getScatteredAccessAttributes
        Unsigned 32-bit integer
        GetScatteredAccessAttributes_Request
    mms.getVariableAccessAttributes  getVariableAccessAttributes
        Unsigned 32-bit integer
        GetVariableAccessAttributes_Request
    mms.hungNamedToken  hungNamedToken
        String
        Identifier
    mms.identify  identify
        No value
        Identify_Request
    mms.idle-to-active  idle-to-active
        Boolean
    mms.idle-to-disabled  idle-to-disabled
        Boolean
    mms.index  index
        Signed 32-bit integer
        Unsigned32
    mms.indexRange  indexRange
        No value
    mms.informationReport  informationReport
        No value
    mms.initialPosition  initialPosition
        Signed 32-bit integer
        Unsigned32
    mms.initializeJournal  initializeJournal
        No value
        InitializeJournal_Request
    mms.initiate  initiate
        Signed 32-bit integer
    mms.initiateDownloadSequence  initiateDownloadSequence
        No value
        InitiateDownloadSequence_Request
    mms.initiateUploadSequence  initiateUploadSequence
        String
        InitiateUploadSequence_Request
    mms.initiate_ErrorPDU  initiate-ErrorPDU
        No value
    mms.initiate_RequestPDU  initiate-RequestPDU
        No value
    mms.initiate_ResponsePDU  initiate-ResponsePDU
        No value
    mms.input  input
        No value
        Input_Request
    mms.inputTimeOut  inputTimeOut
        Signed 32-bit integer
        Unsigned32
    mms.integer  integer
        Signed 32-bit integer
        Unsigned8
    mms.invalidated  invalidated
        No value
    mms.invokeID  invokeID
        Signed 32-bit integer
        Unsigned32
    mms.itemId  itemId
        String
        Identifier
    mms.journalName  journalName
        Unsigned 32-bit integer
        ObjectName
    mms.kill  kill
        No value
        Kill_Request
    mms.lastModified  lastModified
        String
        GeneralizedTime
    mms.leastSevere  leastSevere
        Signed 32-bit integer
        Unsigned8
    mms.limitSpecification  limitSpecification
        No value
    mms.limitingEntry  limitingEntry
        Byte array
        OCTET_STRING
    mms.limitingTime  limitingTime
        String
        TimeOfDay
    mms.listOfAbstractSyntaxes  listOfAbstractSyntaxes
        Unsigned 32-bit integer
    mms.listOfAbstractSyntaxes_item  listOfAbstractSyntaxes item
        Object Identifier
        OBJECT_IDENTIFIER
    mms.listOfAccessResult  listOfAccessResult
        Unsigned 32-bit integer
        SEQUENCE_OF_AccessResult
    mms.listOfAlarmEnrollmentSummary  listOfAlarmEnrollmentSummary
        Unsigned 32-bit integer
        SEQUENCE_OF_AlarmEnrollmentSummary
    mms.listOfAlarmSummary  listOfAlarmSummary
        Unsigned 32-bit integer
        SEQUENCE_OF_AlarmSummary
    mms.listOfCapabilities  listOfCapabilities
        Unsigned 32-bit integer
    mms.listOfCapabilities_item  listOfCapabilities item
        String
        VisibleString
    mms.listOfData  listOfData
        Unsigned 32-bit integer
        SEQUENCE_OF_Data
    mms.listOfDirectoryEntry  listOfDirectoryEntry
        Unsigned 32-bit integer
        SEQUENCE_OF_DirectoryEntry
    mms.listOfDomainName  listOfDomainName
        Unsigned 32-bit integer
        SEQUENCE_OF_Identifier
    mms.listOfDomainNames  listOfDomainNames
        Unsigned 32-bit integer
        SEQUENCE_OF_Identifier
    mms.listOfEventEnrollment  listOfEventEnrollment
        Unsigned 32-bit integer
        SEQUENCE_OF_EventEnrollment
    mms.listOfIdentifier  listOfIdentifier
        Unsigned 32-bit integer
        SEQUENCE_OF_Identifier
    mms.listOfJournalEntry  listOfJournalEntry
        Unsigned 32-bit integer
        SEQUENCE_OF_JournalEntry
    mms.listOfModifier  listOfModifier
        Unsigned 32-bit integer
        SEQUENCE_OF_Modifier
    mms.listOfName  listOfName
        Unsigned 32-bit integer
        SEQUENCE_OF_ObjectName
    mms.listOfNamedTokens  listOfNamedTokens
        Unsigned 32-bit integer
    mms.listOfNamedTokens_item  listOfNamedTokens item
        Unsigned 32-bit integer
    mms.listOfOutputData  listOfOutputData
        Unsigned 32-bit integer
    mms.listOfOutputData_item  listOfOutputData item
        String
        VisibleString
    mms.listOfProgramInvocations  listOfProgramInvocations
        Unsigned 32-bit integer
        SEQUENCE_OF_Identifier
    mms.listOfPromptData  listOfPromptData
        Unsigned 32-bit integer
    mms.listOfPromptData_item  listOfPromptData item
        String
        VisibleString
    mms.listOfSemaphoreEntry  listOfSemaphoreEntry
        Unsigned 32-bit integer
        SEQUENCE_OF_SemaphoreEntry
    mms.listOfTypeName  listOfTypeName
        Unsigned 32-bit integer
        SEQUENCE_OF_ObjectName
    mms.listOfVariable  listOfVariable
        Unsigned 32-bit integer
    mms.listOfVariableListName  listOfVariableListName
        Unsigned 32-bit integer
        SEQUENCE_OF_ObjectName
    mms.listOfVariable_item  listOfVariable item
        No value
    mms.listOfVariables  listOfVariables
        Unsigned 32-bit integer
    mms.listOfVariables_item  listOfVariables item
        String
        VisibleString
    mms.loadData  loadData
        Unsigned 32-bit integer
    mms.loadDomainContent  loadDomainContent
        No value
        LoadDomainContent_Request
    mms.localDetail  localDetail
        Byte array
        BIT_STRING_SIZE_0_128
    mms.localDetailCalled  localDetailCalled
        Signed 32-bit integer
        Integer32
    mms.localDetailCalling  localDetailCalling
        Signed 32-bit integer
        Integer32
    mms.lowIndex  lowIndex
        Signed 32-bit integer
        Unsigned32
    mms.mMSString  mMSString
        String
    mms.mmsDeletable  mmsDeletable
        Boolean
        BOOLEAN
    mms.mmsInitRequestDetail  mmsInitRequestDetail
        No value
        InitRequestDetail
    mms.mmsInitResponseDetail  mmsInitResponseDetail
        No value
        InitResponseDetail
    mms.modelName  modelName
        String
        VisibleString
    mms.modifierPosition  modifierPosition
        Signed 32-bit integer
        Unsigned32
    mms.monitor  monitor
        Boolean
        BOOLEAN
    mms.monitorType  monitorType
        Boolean
        BOOLEAN
    mms.monitoredVariable  monitoredVariable
        Unsigned 32-bit integer
        VariableSpecification
    mms.moreFollows  moreFollows
        Boolean
        BOOLEAN
    mms.mostSevere  mostSevere
        Signed 32-bit integer
        Unsigned8
    mms.name  name
        Unsigned 32-bit integer
        ObjectName
    mms.nameToStartAfter  nameToStartAfter
        String
        Identifier
    mms.named  named
        No value
    mms.namedToken  namedToken
        String
        Identifier
    mms.negociatedDataStructureNestingLevel  negociatedDataStructureNestingLevel
        Signed 32-bit integer
        Integer8
    mms.negociatedMaxServOutstandingCalled  negociatedMaxServOutstandingCalled
        Signed 32-bit integer
        Integer16
    mms.negociatedMaxServOutstandingCalling  negociatedMaxServOutstandingCalling
        Signed 32-bit integer
        Integer16
    mms.negociatedParameterCBB  negociatedParameterCBB
        Byte array
        ParameterSupportOptions
    mms.negociatedVersionNumber  negociatedVersionNumber
        Signed 32-bit integer
        Integer16
    mms.newFileName  newFileName
        Unsigned 32-bit integer
        FileName
    mms.newIdentifier  newIdentifier
        String
        Identifier
    mms.nmberOfElements  nmberOfElements
        Signed 32-bit integer
        Unsigned32
    mms.noResult  noResult
        No value
    mms.non_coded  non-coded
        Byte array
        OCTET_STRING
    mms.notificationLost  notificationLost
        Boolean
        BOOLEAN
    mms.numberDeleted  numberDeleted
        Signed 32-bit integer
        Unsigned32
    mms.numberMatched  numberMatched
        Signed 32-bit integer
        Unsigned32
    mms.numberOfElements  numberOfElements
        Signed 32-bit integer
        Unsigned32
    mms.numberOfEntries  numberOfEntries
        Signed 32-bit integer
        Integer32
    mms.numberOfEventEnrollments  numberOfEventEnrollments
        Signed 32-bit integer
        Unsigned32
    mms.numberOfHungTokens  numberOfHungTokens
        Signed 32-bit integer
        Unsigned16
    mms.numberOfOwnedTokens  numberOfOwnedTokens
        Signed 32-bit integer
        Unsigned16
    mms.numberOfTokens  numberOfTokens
        Signed 32-bit integer
        Unsigned16
    mms.numbersOfTokens  numbersOfTokens
        Signed 32-bit integer
        Unsigned16
    mms.numericAddress  numericAddress
        Signed 32-bit integer
        Unsigned32
    mms.objId  objId
        No value
    mms.objectClass  objectClass
        Signed 32-bit integer
    mms.objectScope  objectScope
        Unsigned 32-bit integer
    mms.obtainFile  obtainFile
        No value
        ObtainFile_Request
    mms.occurenceTime  occurenceTime
        String
        TimeOfDay
    mms.octet_string  octet-string
        Signed 32-bit integer
        Integer32
    mms.operatorStationName  operatorStationName
        String
        Identifier
    mms.originalInvokeID  originalInvokeID
        Signed 32-bit integer
        Unsigned32
    mms.originatingApplication  originatingApplication
        No value
        ApplicationReference
    mms.others  others
        Signed 32-bit integer
        INTEGER
    mms.output  output
        No value
        Output_Request
    mms.ownedNamedToken  ownedNamedToken
        String
        Identifier
    mms.packed  packed
        Boolean
        BOOLEAN
    mms.pdu_error  pdu-error
        Signed 32-bit integer
    mms.prio_rity  prio-rity
        Signed 32-bit integer
        Priority
    mms.priority  priority
        Signed 32-bit integer
    mms.programInvocationName  programInvocationName
        String
        Identifier
    mms.proposedDataStructureNestingLevel  proposedDataStructureNestingLevel
        Signed 32-bit integer
        Integer8
    mms.proposedMaxServOutstandingCalled  proposedMaxServOutstandingCalled
        Signed 32-bit integer
        Integer16
    mms.proposedMaxServOutstandingCalling  proposedMaxServOutstandingCalling
        Signed 32-bit integer
        Integer16
    mms.proposedParameterCBB  proposedParameterCBB
        Byte array
        ParameterSupportOptions
    mms.proposedVersionNumber  proposedVersionNumber
        Signed 32-bit integer
        Integer16
    mms.rangeStartSpecification  rangeStartSpecification
        Unsigned 32-bit integer
    mms.rangeStopSpecification  rangeStopSpecification
        Unsigned 32-bit integer
    mms.read  read
        No value
        Read_Request
    mms.readJournal  readJournal
        No value
        ReadJournal_Request
    mms.real  real
        Boolean
    mms.rejectPDU  rejectPDU
        No value
    mms.rejectReason  rejectReason
        Unsigned 32-bit integer
    mms.relinquishControl  relinquishControl
        No value
        RelinquishControl_Request
    mms.relinquishIfConnectionLost  relinquishIfConnectionLost
        Boolean
        BOOLEAN
    mms.remainingAcceptableDelay  remainingAcceptableDelay
        Signed 32-bit integer
        Unsigned32
    mms.remainingTimeOut  remainingTimeOut
        Signed 32-bit integer
        Unsigned32
    mms.rename  rename
        No value
        Rename_Request
    mms.reportActionStatus  reportActionStatus
        Signed 32-bit integer
        ReportEventActionStatus_Response
    mms.reportEventActionStatus  reportEventActionStatus
        Unsigned 32-bit integer
        ReportEventActionStatus_Request
    mms.reportEventConditionStatus  reportEventConditionStatus
        Unsigned 32-bit integer
        ReportEventConditionStatus_Request
    mms.reportEventEnrollmentStatus  reportEventEnrollmentStatus
        Unsigned 32-bit integer
        ReportEventEnrollmentStatus_Request
    mms.reportJournalStatus  reportJournalStatus
        Unsigned 32-bit integer
        ReportJournalStatus_Request
    mms.reportPoolSemaphoreStatus  reportPoolSemaphoreStatus
        No value
        ReportPoolSemaphoreStatus_Request
    mms.reportSemaphoreEntryStatus  reportSemaphoreEntryStatus
        No value
        ReportSemaphoreEntryStatus_Request
    mms.reportSemaphoreStatus  reportSemaphoreStatus
        Unsigned 32-bit integer
        ReportSemaphoreStatus_Request
    mms.requestDomainDownLoad  requestDomainDownLoad
        No value
        RequestDomainDownload_Response
    mms.requestDomainDownload  requestDomainDownload
        No value
        RequestDomainDownload_Request
    mms.requestDomainUpload  requestDomainUpload
        No value
        RequestDomainUpload_Request
    mms.reset  reset
        No value
        Reset_Request
    mms.resource  resource
        Signed 32-bit integer
    mms.resume  resume
        No value
        Resume_Request
    mms.reusable  reusable
        Boolean
        BOOLEAN
    mms.revision  revision
        String
        VisibleString
    mms.scatteredAccessDescription  scatteredAccessDescription
        Unsigned 32-bit integer
    mms.scatteredAccessName  scatteredAccessName
        Unsigned 32-bit integer
        ObjectName
    mms.scopeOfDelete  scopeOfDelete
        Signed 32-bit integer
    mms.scopeOfRequest  scopeOfRequest
        Signed 32-bit integer
    mms.selectAccess  selectAccess
        Unsigned 32-bit integer
    mms.selectAlternateAccess  selectAlternateAccess
        No value
    mms.semaphoreName  semaphoreName
        Unsigned 32-bit integer
        ObjectName
    mms.service  service
        Signed 32-bit integer
    mms.serviceError  serviceError
        No value
    mms.serviceSpecificInformation  serviceSpecificInformation
        Unsigned 32-bit integer
    mms.service_preempt  service-preempt
        Signed 32-bit integer
    mms.servicesSupportedCalled  servicesSupportedCalled
        Byte array
        ServiceSupportOptions
    mms.servicesSupportedCalling  servicesSupportedCalling
        Byte array
        ServiceSupportOptions
    mms.severity  severity
        Signed 32-bit integer
        Unsigned8
    mms.severityFilter  severityFilter
        No value
    mms.sharable  sharable
        Boolean
        BOOLEAN
    mms.simpleString  simpleString
        String
        VisibleString
    mms.sizeOfFile  sizeOfFile
        Signed 32-bit integer
        Unsigned32
    mms.sourceFile  sourceFile
        Unsigned 32-bit integer
        FileName
    mms.sourceFileServer  sourceFileServer
        No value
        ApplicationReference
    mms.specific  specific
        Unsigned 32-bit integer
        SEQUENCE_OF_ObjectName
    mms.specificationWithResult  specificationWithResult
        Boolean
        BOOLEAN
    mms.start  start
        No value
        Start_Request
    mms.startArgument  startArgument
        String
        VisibleString
    mms.startingEntry  startingEntry
        Byte array
        OCTET_STRING
    mms.startingTime  startingTime
        String
        TimeOfDay
    mms.state  state
        Signed 32-bit integer
        DomainState
    mms.status  status
        Boolean
        Status_Request
    mms.stop  stop
        No value
        Stop_Request
    mms.storeDomainContent  storeDomainContent
        No value
        StoreDomainContent_Request
    mms.str1  str1
        Boolean
    mms.str2  str2
        Boolean
    mms.structure  structure
        No value
    mms.success  success
        No value
    mms.symbolicAddress  symbolicAddress
        String
        VisibleString
    mms.takeControl  takeControl
        No value
        TakeControl_Request
    mms.terminateDownloadSequence  terminateDownloadSequence
        No value
        TerminateDownloadSequence_Request
    mms.terminateUploadSequence  terminateUploadSequence
        Signed 32-bit integer
        TerminateUploadSequence_Request
    mms.thirdParty  thirdParty
        No value
        ApplicationReference
    mms.timeActiveAcknowledged  timeActiveAcknowledged
        Unsigned 32-bit integer
        EventTime
    mms.timeIdleAcknowledged  timeIdleAcknowledged
        Unsigned 32-bit integer
        EventTime
    mms.timeOfAcknowledgedTransition  timeOfAcknowledgedTransition
        Unsigned 32-bit integer
        EventTime
    mms.timeOfDayT  timeOfDayT
        String
        TimeOfDay
    mms.timeOfLastTransitionToActive  timeOfLastTransitionToActive
        Unsigned 32-bit integer
        EventTime
    mms.timeOfLastTransitionToIdle  timeOfLastTransitionToIdle
        Unsigned 32-bit integer
        EventTime
    mms.timeSequenceIdentifier  timeSequenceIdentifier
        Signed 32-bit integer
        Unsigned32
    mms.timeSpecification  timeSpecification
        String
        TimeOfDay
    mms.time_resolution  time-resolution
        Signed 32-bit integer
    mms.tpy  tpy
        Boolean
    mms.transitionTime  transitionTime
        Unsigned 32-bit integer
        EventTime
    mms.triggerEvent  triggerEvent
        No value
        TriggerEvent_Request
    mms.typeName  typeName
        Unsigned 32-bit integer
        ObjectName
    mms.typeSpecification  typeSpecification
        Unsigned 32-bit integer
    mms.ulsmID  ulsmID
        Signed 32-bit integer
        Integer32
    mms.unacknowledgedState  unacknowledgedState
        Signed 32-bit integer
    mms.unconfirmedPDU  unconfirmedPDU
        Signed 32-bit integer
    mms.unconfirmedService  unconfirmedService
        Unsigned 32-bit integer
    mms.unconfirmed_PDU  unconfirmed-PDU
        No value
    mms.unconstrainedAddress  unconstrainedAddress
        Byte array
        OCTET_STRING
    mms.undefined  undefined
        No value
    mms.unnamed  unnamed
        Unsigned 32-bit integer
        AlternateAccessSelection
    mms.unsigned  unsigned
        Signed 32-bit integer
        Unsigned8
    mms.unsolicitedStatus  unsolicitedStatus
        No value
    mms.uploadInProgress  uploadInProgress
        Signed 32-bit integer
        Integer8
    mms.uploadSegment  uploadSegment
        Signed 32-bit integer
        UploadSegment_Request
    mms.utc_time  utc-time
        String
        UtcTime
    mms.vadr  vadr
        Boolean
    mms.valt  valt
        Boolean
    mms.valueSpecification  valueSpecification
        Unsigned 32-bit integer
        Data
    mms.variableAccessSpecification  variableAccessSpecification
        Unsigned 32-bit integer
    mms.variableAccessSpecificatn  variableAccessSpecificatn
        Unsigned 32-bit integer
        VariableAccessSpecification
    mms.variableDescription  variableDescription
        No value
    mms.variableListName  variableListName
        Unsigned 32-bit integer
        ObjectName
    mms.variableName  variableName
        Unsigned 32-bit integer
        ObjectName
    mms.variableReference  variableReference
        Unsigned 32-bit integer
        VariableSpecification
    mms.variableSpecification  variableSpecification
        Unsigned 32-bit integer
    mms.variableTag  variableTag
        String
        VisibleString
    mms.vendorName  vendorName
        String
        VisibleString
    mms.visible_string  visible-string
        Signed 32-bit integer
        Integer32
    mms.vlis  vlis
        Boolean
    mms.vmd  vmd
        No value
    mms.vmdLogicalStatus  vmdLogicalStatus
        Signed 32-bit integer
    mms.vmdPhysicalStatus  vmdPhysicalStatus
        Signed 32-bit integer
    mms.vmdSpecific  vmdSpecific
        No value
    mms.vmd_specific  vmd-specific
        String
        Identifier
    mms.vmd_state  vmd-state
        Signed 32-bit integer
    mms.vnam  vnam
        Boolean
    mms.vsca  vsca
        Boolean
    mms.write  write
        No value
        Write_Request
    mms.writeJournal  writeJournal
        No value
        WriteJournal_Request

MMS Message Encapsulation (mmse)

    mmse.bcc  Bcc
        String
        Blind carbon copy.
    mmse.cc  Cc
        String
        Carbon copy.
    mmse.content_location  X-Mms-Content-Location
        String
        Defines the location of the message.
    mmse.content_type  Data
        No value
        Media content of the message.
    mmse.date  Date
        Date/Time stamp
        Arrival timestamp of the message or sending timestamp.
    mmse.delivery_report  X-Mms-Delivery-Report
        Unsigned 8-bit integer
        Whether a report of message delivery is wanted or not.
    mmse.delivery_time.abs  X-Mms-Delivery-Time
        Date/Time stamp
        The time at which message delivery is desired.
    mmse.delivery_time.rel  X-Mms-Delivery-Time
        Time duration
        The desired message delivery delay.
    mmse.expiry.abs  X-Mms-Expiry
        Date/Time stamp
        Time when message expires and need not be delivered anymore.
    mmse.expiry.rel  X-Mms-Expiry
        Time duration
        Delay before message expires and need not be delivered anymore.
    mmse.ffheader  Free format (not encoded) header
        String
        Application header without corresponding encoding.
    mmse.from  From
        String
        Address of the message sender.
    mmse.message_class.id  X-Mms-Message-Class
        Unsigned 8-bit integer
        Of what category is the message.
    mmse.message_class.str  X-Mms-Message-Class
        String
        Of what category is the message.
    mmse.message_id  Message-Id
        String
        Unique identification of the message.
    mmse.message_size  X-Mms-Message-Size
        Unsigned 32-bit integer
        The size of the message in octets.
    mmse.message_type  X-Mms-Message-Type
        Unsigned 8-bit integer
        Specifies the transaction type. Effectively defines PDU.
    mmse.mms_version  X-Mms-MMS-Version
        String
        Version of the protocol used.
    mmse.previously_sent_by  X-Mms-Previously-Sent-By
        String
        Indicates that the MM has been previously sent by this user.
    mmse.previously_sent_by.address  Address
        String
        Indicates from whom the MM has been previously sent.
    mmse.previously_sent_by.forward_count  Forward Count
        Unsigned 32-bit integer
        Forward count of the previously sent MM.
    mmse.previously_sent_date  X-Mms-Previously-Sent-Date
        String
        Indicates the date that the MM has been previously sent.
    mmse.previously_sent_date.date  Date
        String
        Time when the MM has been previously sent.
    mmse.previously_sent_date.forward_count  Forward Count
        Unsigned 32-bit integer
        Forward count of the previously sent MM.
    mmse.priority  X-Mms-Priority
        Unsigned 8-bit integer
        Priority of the message.
    mmse.read_reply  X-Mms-Read-Reply
        Unsigned 8-bit integer
        Whether a read report from every recipient is wanted.
    mmse.read_report  X-Mms-Read-Report
        Unsigned 8-bit integer
        Whether a read report from every recipient is wanted.
    mmse.read_status  X-Mms-Read-Status
        Unsigned 8-bit integer
        MMS-specific message read status.
    mmse.reply_charging  X-Mms-Reply-Charging
        Unsigned 8-bit integer
        MMS-specific message reply charging method.
    mmse.reply_charging_deadline.abs  X-Mms-Reply-Charging-Deadline
        Date/Time stamp
        The latest time of the recipient(s) to submit the Reply MM.
    mmse.reply_charging_deadline.rel  X-Mms-Reply-Charging-Deadline
        Time duration
        The latest time of the recipient(s) to submit the Reply MM.
    mmse.reply_charging_id  X-Mms-Reply-Charging-Id
        String
        Unique reply charging identification of the message.
    mmse.reply_charging_size  X-Mms-Reply-Charging-Size
        Unsigned 32-bit integer
        The size of the reply charging in octets.
    mmse.report_allowed  X-Mms-Report-Allowed
        Unsigned 8-bit integer
        Sending of delivery report allowed or not.
    mmse.response_status  Response-Status
        Unsigned 8-bit integer
        MMS-specific result of a message submission or retrieval.
    mmse.response_text  Response-Text
        String
        Additional information on MMS-specific result.
    mmse.retrieve_status  X-Mms-Retrieve-Status
        Unsigned 8-bit integer
        MMS-specific result of a message retrieval.
    mmse.retrieve_text  X-Mms-Retrieve-Text
        String
        Status text of a MMS message retrieval.
    mmse.sender_visibility  Sender-Visibility
        Unsigned 8-bit integer
        Disclose sender identity to receiver or not.
    mmse.status  Status
        Unsigned 8-bit integer
        Current status of the message.
    mmse.subject  Subject
        String
        Subject of the message.
    mmse.to  To
        String
        Recipient(s) of the message.
    mmse.transaction_id  X-Mms-Transaction-ID
        String
        A unique identifier for this transaction. Identifies request and corresponding response only.

MP4V-ES (mp4v-es)

    mp4ves.aspect_ratio_info  aspect_ratio_info
        Unsigned 8-bit integer
    mp4ves.configuration  Configuration
        Byte array
    mp4ves.is_object_layer_identifier  is_object_layer_identifier
        Unsigned 8-bit integer
    mp4ves.profile_and_level_indication  profile_and_level_indication
        Unsigned 8-bit integer
    mp4ves.random_accessible_vol  random_accessible_vol
        Unsigned 8-bit integer
        video_object_type_indication
    mp4ves.start_code  Start code
        Unsigned 8-bit integer
    mp4ves.start_code_prefix  start code prefix
        Unsigned 32-bit integer
    mp4ves.stuffing  Stuffing
        Unsigned 8-bit integer
    mp4ves.video_object_layer_shape  video_object_layer_shape
        Unsigned 8-bit integer
    mp4ves.video_object_type_indication  video_object_type_indication
        Unsigned 8-bit integer
    mp4ves.video_signal_type  video_signal_type
        Unsigned 8-bit integer
    mp4ves.visual_object_identifier  visual_object_identifier
        Unsigned 8-bit integer
    mp4ves.visual_object_type  visual_object_type
        Unsigned 32-bit integer
    mp4ves.vol_control_parameters  vol_control_parameters
        Unsigned 8-bit integer
    mp4ves.vop_coding_type  vop_coding_type
        Unsigned 8-bit integer
        Start code

MPLS PW ATM AAL5 CPCS-SDU mode encapsulation (mplspwatmaal5sdu)

    pw.type.atm.aal5sdu  pw.type.atm.aal5sdu
        Boolean
        Identifies type of ATM PW. May be used for filtering.

MPLS PW ATM Cell Header (mplspwatmcellheader)

    atm.clp  Cell Loss Priority
        Unsigned 8-bit integer
        The Cell Loss Priority (CLP) field indicates CLP value of the encapsulated cell.
    atm.pti  Payload Type
        Unsigned 8-bit integer
        The 3-bit Payload Type Identifier (PTI) incorporates ATM Layer PTI coding of the cell.  These bits are set to the value of the PTI of the encapsulated ATM cell.
    atm.pw_control_byte.efci  EFCI
        Unsigned 8-bit integer
        EFCI is set to the EFCI state of the last cell of the AAL5 PDU or AAL5 fragment. Note: The EFCI state is indicated in the middle bit of each ATM cell's PTI.
    atm.pw_control_byte.m  Transport Mode
        Unsigned 8-bit integer
        Bit (M) of the control byte indicates  whether the packet contains an ATM cell or a frame payload. If set to 0, the packet contains an ATM cell. If set to 1, the PDU contains an AAL5 payload.
    atm.pw_control_byte.rsv  Reserved bits
        Unsigned 8-bit integer
        The reserved bits should be set to 0 at the transmitter and ignored upon reception.
    atm.pw_control_byte.u  U bit
        Unsigned 8-bit integer
        Indicates whether this frame contains the last cell of an AAL5 PDU and represents the value of the ATM User-to-User bit for the last ATM cell of the PSN frame. Note: The ATM User-to-User bit is the least significant bit of the PTI in the ATM header.
    atm.pw_control_byte.v  VCI Present
        Boolean
        Bit (V) of the control byte indicates whether the VCI field is present in the packet. If set to 1, the VCI field is present for the cell. If set to 0, no VCI field is present.

MPLS PW ATM Control Word (mplspwatmcontrolword)

    atm.efci  EFCI bit
        Unsigned 8-bit integer
        The ingress router sets this bit to 1 if the EFCI bit of the final cell of those that transported the AAL5 CPCS-SDU is set to 1, or if the EFCI bit of the single ATM cell to be transported in the packet is set to 1. Otherwise, this bit is set to 0.
    atm.pt  Payload type
        Unsigned 8-bit integer
        Bit (T) of the control word indicates whether the packet contains an ATM admin cell or an AAL5 payload. If T = 1, the packet contains an ATM admin cell, encapsulated according to the N:1 cell relay encapsulation. If not set, the PDU contains an AAL5 payload.
    pw.cw.3rd_byte  ATM-specific byte
        Unsigned 8-bit integer
    pw.cw.aal5sdu.u  U bit (Command/Response)
        Unsigned 8-bit integer
        When FRF.8.1 Frame Relay/ATM PVC Service Interworking [RFC3916] traffic is being transported, the Least-Significant Bit of CPCS-UU of the AAL5 CPCS-PDU may contain the Frame Relay C/R bit. The ingress router copies this bit here.
    pw.cw.bits03  Bits 0 to 3
        Unsigned 8-bit integer
    pw.cw.flags  Flags
        Unsigned 8-bit integer
    pw.cw.length  Length
        Unsigned 8-bit integer
    pw.cw.rsv  Reserved bits
        Unsigned 8-bit integer
    pw.cw.seqno  Sequence number
        Unsigned 16-bit integer

MPLS PW ATM N-to-One encapsulation, no CW (mplspwatmn1nocw)

    pw.atm.cells  Number of good encapsulated cells
        Signed 32-bit integer
    pw.type.atm.n1nocw  pw.type.atm.n1nocw
        Boolean
        Identifies type of ATM PW. May be used for filtering.

MPLS PW ATM N-to-One encapsulation, with CW (mplspwatmn1cw)

    pw.type.atm.n1cw  pw.type.atm.n1cw
        Boolean
        Identifies type of ATM PW. May be used for filtering.

MPLS PW ATM One-to-One or AAL5 PDU encapsulation (mplspwatm11_or_aal5pdu)

    pw.type.atm.11vcc  pw.type.atm.11vcc
        Boolean
        Identifies type of ATM PW. May be used for filtering.
    pw.type.atm.11vpc  pw.type.atm.11vpc
        Boolean
        Identifies type of ATM PW. May be used for filtering.
    pw.type.atm.aal5pdu  pw.type.atm.aal5pdu
        Boolean
        Identifies type of ATM PW. May be used for filtering.

MS Kpasswd (kpasswd)

    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
    kpasswd.new_password  New Password
        String
    kpasswd.result  Result
        Unsigned 16-bit integer
    kpasswd.result_string  Result String
        String
    kpasswd.version  Version
        Unsigned 16-bit integer

MS Network Load Balancing (msnlb)

    msnlb.cluster_virtual_ip  Cluster Virtual IP
        IPv4 address
        Cluster Virtual IP address
    msnlb.count  Count
        Unsigned 32-bit integer
    msnlb.host_ip  Host IP
        IPv4 address
        Host IP address
    msnlb.host_name  Host name
        String
    msnlb.hpn  Host Priority Number
        Unsigned 32-bit integer
    msnlb.unknown  Unknown
        Byte array

MS Proxy Protocol (msproxy)

    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

MSN Messenger Service (msnms)

MSNIP: Multicast Source Notification of Interest Protocol (msnip)

    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

MTP 2 Transparent Proxy (m2tp)

    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

MTP 2 User Adaptation Layer (m2ua)

    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

MTP 3 User Adaptation Layer (m3ua)

    m3ua.affected_point_code_mask  Mask
        Unsigned 8-bit integer
    m3ua.affected_point_code_pc  Affected point code
        Unsigned 24-bit integer
    m3ua.asp_identifier  ASP identifier
        Unsigned 32-bit integer
    m3ua.cic_range_lower  Lower CIC value
        Unsigned 16-bit integer
    m3ua.cic_range_mask  Mask
        Unsigned 8-bit integer
    m3ua.cic_range_pc  Originating point code
        Unsigned 24-bit integer
    m3ua.cic_range_upper  Upper CIC value
        Unsigned 16-bit integer
    m3ua.concerned_dpc  Concerned DPC
        Unsigned 24-bit integer
    m3ua.concerned_reserved  Reserved
        Byte array
    m3ua.congestion_level  Congestion level
        Unsigned 8-bit integer
    m3ua.congestion_reserved  Reserved
        Byte array
    m3ua.correlation_identifier  Correlation Identifier
        Unsigned 32-bit integer
    m3ua.deregistration_result_routing_context  Routing context
        Unsigned 32-bit integer
    m3ua.deregistration_results_status  De-Registration status
        Unsigned 32-bit integer
    m3ua.deregistration_status  Deregistration status
        Unsigned 32-bit integer
    m3ua.diagnostic_information  Diagnostic information
        Byte array
    m3ua.dpc_mask  Mask
        Unsigned 8-bit integer
    m3ua.dpc_pc  Destination point code
        Unsigned 24-bit integer
    m3ua.error_code  Error code
        Unsigned 32-bit integer
    m3ua.heartbeat_data  Heartbeat data
        Byte array
    m3ua.info_string  Info string
        String
    m3ua.local_rk_identifier  Local routing key identifier
        Unsigned 32-bit integer
    m3ua.message_class  Message class
        Unsigned 8-bit integer
    m3ua.message_length  Message length
        Unsigned 32-bit integer
    m3ua.message_type  Message Type
        Unsigned 8-bit integer
    m3ua.network_appearance  Network appearance
        Unsigned 32-bit integer
    m3ua.opc_list_mask  Mask
        Unsigned 8-bit integer
    m3ua.opc_list_pc  Originating point code
        Unsigned 24-bit integer
    m3ua.parameter_length  Parameter length
        Unsigned 16-bit integer
    m3ua.parameter_padding  Padding
        Byte array
    m3ua.parameter_tag  Parameter Tag
        Unsigned 16-bit integer
    m3ua.parameter_value  Parameter value
        Byte array
    m3ua.paramter_trailer  Trailer
        Byte array
    m3ua.protocol_data_2_li  Length indicator
        Unsigned 8-bit integer
    m3ua.protocol_data_dpc  DPC
        Unsigned 32-bit integer
    m3ua.protocol_data_mp  MP
        Unsigned 8-bit integer
    m3ua.protocol_data_ni  NI
        Unsigned 8-bit integer
    m3ua.protocol_data_opc  OPC
        Unsigned 32-bit integer
    m3ua.protocol_data_si  SI
        Unsigned 8-bit integer
    m3ua.protocol_data_sls  SLS
        Unsigned 8-bit integer
    m3ua.reason  Reason
        Unsigned 32-bit integer
    m3ua.registration_result_identifier  Local RK-identifier value
        Unsigned 32-bit integer
    m3ua.registration_result_routing_context  Routing context
        Unsigned 32-bit integer
    m3ua.registration_results_status  Registration status
        Unsigned 32-bit integer
    m3ua.registration_status  Registration status
        Unsigned 32-bit integer
    m3ua.reserved  Reserved
        Unsigned 8-bit integer
    m3ua.routing_context  Routing context
        Unsigned 32-bit integer
    m3ua.si  Service indicator
        Unsigned 8-bit integer
    m3ua.ssn  Subsystem number
        Unsigned 8-bit integer
    m3ua.status_info  Status info
        Unsigned 16-bit integer
    m3ua.status_type  Status type
        Unsigned 16-bit integer
    m3ua.traffic_mode_type  Traffic mode Type
        Unsigned 32-bit integer
    m3ua.unavailability_cause  Unavailability cause
        Unsigned 16-bit integer
    m3ua.user_identity  User Identity
        Unsigned 16-bit integer
    m3ua.version  Version
        Unsigned 8-bit integer
    mtp3.dpc  DPC
        Unsigned 32-bit integer
    mtp3.ni  NI
        Unsigned 8-bit integer
    mtp3.opc  OPC
        Unsigned 32-bit integer
    mtp3.pc  PC
        Unsigned 32-bit integer
    mtp3.sls  SLS
        Unsigned 8-bit integer

MTP2 Peer Adaptation Layer (m2pa)

    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.undecoded_data  Undecoded data
        Byte array
    m2pa.unknown_data  Unknown Data
        Byte array
    m2pa.unused  Unused
        Unsigned 8-bit integer
    m2pa.version  Version
        Unsigned 8-bit integer

MULTIMEDIA-SYSTEM-CONTROL (h245)

    h245.AlternativeCapabilitySet  AlternativeCapabilitySet
        Unsigned 32-bit integer
    h245.BEnhancementParameters  BEnhancementParameters
        No value
    h245.CapabilityDescriptor  CapabilityDescriptor
        No value
    h245.CapabilityDescriptorNumber  CapabilityDescriptorNumber
        Unsigned 32-bit integer
    h245.CapabilityTableEntry  CapabilityTableEntry
        No value
    h245.CapabilityTableEntryNumber  alternativeCapability
        Unsigned 32-bit integer
        CapabilityTableEntryNumber
    h245.CommunicationModeTableEntry  CommunicationModeTableEntry
        No value
    h245.Criteria  Criteria
        No value
    h245.CustomPictureClockFrequency  CustomPictureClockFrequency
        No value
    h245.CustomPictureFormat  CustomPictureFormat
        No value
    h245.DataApplicationCapability  DataApplicationCapability
        No value
    h245.DialingInformationNetworkType  DialingInformationNetworkType
        Unsigned 32-bit integer
    h245.DialingInformationNumber  DialingInformationNumber
        No value
    h245.EnhancementOptions  EnhancementOptions
        No value
    h245.EscrowData  EscrowData
        No value
    h245.GenericCapability  GenericCapability
        No value
    h245.GenericInformation  GenericInformation
        No value
    h245.GenericParameter  GenericParameter
        No value
    h245.H263ModeComboFlags  H263ModeComboFlags
        No value
    h245.H263VideoModeCombos  H263VideoModeCombos
        No value
    h245.Manufacturer  H.245 Manufacturer
        Unsigned 32-bit integer
        h245.H.221 Manufacturer
    h245.MediaChannelCapability  MediaChannelCapability
        No value
    h245.MediaDistributionCapability  MediaDistributionCapability
        No value
    h245.MediaEncryptionAlgorithm  MediaEncryptionAlgorithm
        Unsigned 32-bit integer
    h245.ModeDescription  ModeDescription
        Unsigned 32-bit integer
    h245.ModeElement  ModeElement
        No value
    h245.MultiplePayloadStreamElement  MultiplePayloadStreamElement
        No value
    h245.MultiplePayloadStreamElementMode  MultiplePayloadStreamElementMode
        No value
    h245.MultiplexElement  MultiplexElement
        No value
    h245.MultiplexEntryDescriptor  MultiplexEntryDescriptor
        No value
    h245.MultiplexEntryRejectionDescriptions  MultiplexEntryRejectionDescriptions
        No value
    h245.MultiplexTableEntryNumber  MultiplexTableEntryNumber
        Unsigned 32-bit integer
    h245.NonStandardParameter  NonStandardParameter
        No value
    h245.OpenLogicalChannel  OpenLogicalChannel
        No value
    h245.ParameterIdentifier  ParameterIdentifier
        Unsigned 32-bit integer
    h245.PictureReference  PictureReference
        Unsigned 32-bit integer
    h245.Q2931Address  Q2931Address
        No value
    h245.QOSCapability  QOSCapability
        No value
    h245.RTPH263VideoRedundancyFrameMapping  RTPH263VideoRedundancyFrameMapping
        No value
    h245.RTPPayloadType  RTPPayloadType
        No value
    h245.RedundancyEncodingCapability  RedundancyEncodingCapability
        No value
    h245.RedundancyEncodingDTModeElement  RedundancyEncodingDTModeElement
        No value
    h245.RedundancyEncodingElement  RedundancyEncodingElement
        No value
    h245.RequestMultiplexEntryRejectionDescriptions  RequestMultiplexEntryRejectionDescriptions
        No value
    h245.TerminalInformation  TerminalInformation
        No value
    h245.TerminalLabel  TerminalLabel
        No value
    h245.VCCapability  VCCapability
        No value
    h245.VideoCapability  VideoCapability
        Unsigned 32-bit integer
    h245.aal  aal
        Unsigned 32-bit integer
        Cmd_aal
    h245.aal1  aal1
        No value
    h245.aal1ViaGateway  aal1ViaGateway
        No value
    h245.aal5  aal5
        No value
    h245.accept  accept
        No value
    h245.accepted  accepted
        No value
    h245.ackAndNackMessage  ackAndNackMessage
        No value
    h245.ackMessageOnly  ackMessageOnly
        No value
    h245.ackOrNackMessageOnly  ackOrNackMessageOnly
        No value
    h245.adaptationLayerType  adaptationLayerType
        Unsigned 32-bit integer
    h245.adaptiveClockRecovery  adaptiveClockRecovery
        Boolean
        BOOLEAN
    h245.addConnection  addConnection
        No value
        AddConnectionReq
    h245.additionalDecoderBuffer  additionalDecoderBuffer
        Unsigned 32-bit integer
        INTEGER_0_262143
    h245.additionalPictureMemory  additionalPictureMemory
        No value
    h245.address  address
        Unsigned 32-bit integer
    h245.advancedIntraCodingMode  advancedIntraCodingMode
        Boolean
        BOOLEAN
    h245.advancedPrediction  advancedPrediction
        Boolean
        BOOLEAN
    h245.al1Framed  al1Framed
        No value
        T_h223_al_type_al1Framed
    h245.al1M  al1M
        No value
        T_h223_al_type_al1M
    h245.al1NotFramed  al1NotFramed
        No value
        T_h223_al_type_al1NotFramed
    h245.al2M  al2M
        No value
        T_h223_al_type_al2M
    h245.al2WithSequenceNumbers  al2WithSequenceNumbers
        No value
        T_h223_al_type_al2WithSequenceNumbers
    h245.al2WithoutSequenceNumbers  al2WithoutSequenceNumbers
        No value
        T_h223_al_type_al2WithoutSequenceNumbers
    h245.al3  al3
        No value
        T_h223_al_type_al3
    h245.al3M  al3M
        No value
        T_h223_al_type_al3M
    h245.algorithm  algorithm
        Object Identifier
        OBJECT_IDENTIFIER
    h245.algorithmOID  algorithmOID
        Object Identifier
        OBJECT_IDENTIFIER
    h245.alpduInterleaving  alpduInterleaving
        Boolean
        BOOLEAN
    h245.alphanumeric  alphanumeric
        String
        GeneralString
    h245.alsduSplitting  alsduSplitting
        Boolean
        BOOLEAN
    h245.alternateInterVLCMode  alternateInterVLCMode
        Boolean
        BOOLEAN
    h245.annexA  annexA
        Boolean
        BOOLEAN
    h245.annexB  annexB
        Boolean
        BOOLEAN
    h245.annexD  annexD
        Boolean
        BOOLEAN
    h245.annexE  annexE
        Boolean
        BOOLEAN
    h245.annexF  annexF
        Boolean
        BOOLEAN
    h245.annexG  annexG
        Boolean
        BOOLEAN
    h245.annexH  annexH
        Boolean
        BOOLEAN
    h245.antiSpamAlgorithm  antiSpamAlgorithm
        Object Identifier
        OBJECT_IDENTIFIER
    h245.anyPixelAspectRatio  anyPixelAspectRatio
        Boolean
        BOOLEAN
    h245.application  application
        Unsigned 32-bit integer
    h245.arithmeticCoding  arithmeticCoding
        Boolean
        BOOLEAN
    h245.arqType  arqType
        Unsigned 32-bit integer
    h245.associateConference  associateConference
        Boolean
        BOOLEAN
    h245.associatedAlgorithm  associatedAlgorithm
        No value
        NonStandardParameter
    h245.associatedSessionID  associatedSessionID
        Unsigned 32-bit integer
        INTEGER_1_255
    h245.atmABR  atmABR
        Boolean
        BOOLEAN
    h245.atmCBR  atmCBR
        Boolean
        BOOLEAN
    h245.atmParameters  atmParameters
        No value
    h245.atmUBR  atmUBR
        Boolean
        BOOLEAN
    h245.atm_AAL5_BIDIR  atm-AAL5-BIDIR
        No value
    h245.atm_AAL5_UNIDIR  atm-AAL5-UNIDIR
        No value
    h245.atm_AAL5_compressed  atm-AAL5-compressed
        No value
    h245.atmnrtVBR  atmnrtVBR
        Boolean
        BOOLEAN
    h245.atmrtVBR  atmrtVBR
        Boolean
        BOOLEAN
    h245.audioData  audioData
        Unsigned 32-bit integer
        AudioCapability
    h245.audioHeader  audioHeader
        Boolean
        BOOLEAN
    h245.audioHeaderPresent  audioHeaderPresent
        Boolean
        BOOLEAN
    h245.audioLayer  audioLayer
        Unsigned 32-bit integer
    h245.audioLayer1  audioLayer1
        Boolean
        BOOLEAN
    h245.audioLayer2  audioLayer2
        Boolean
        BOOLEAN
    h245.audioLayer3  audioLayer3
        Boolean
        BOOLEAN
    h245.audioMode  audioMode
        Unsigned 32-bit integer
    h245.audioSampling  audioSampling
        Unsigned 32-bit integer
    h245.audioSampling16k  audioSampling16k
        Boolean
        BOOLEAN
    h245.audioSampling22k05  audioSampling22k05
        Boolean
        BOOLEAN
    h245.audioSampling24k  audioSampling24k
        Boolean
        BOOLEAN
    h245.audioSampling32k  audioSampling32k
        Boolean
        BOOLEAN
    h245.audioSampling44k1  audioSampling44k1
        Boolean
        BOOLEAN
    h245.audioSampling48k  audioSampling48k
        Boolean
        BOOLEAN
    h245.audioTelephoneEvent  audioTelephoneEvent
        String
        GeneralString
    h245.audioTelephonyEvent  audioTelephonyEvent
        No value
        NoPTAudioTelephonyEventCapability
    h245.audioTone  audioTone
        No value
        NoPTAudioToneCapability
    h245.audioUnit  audioUnit
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.audioUnitSize  audioUnitSize
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.audioWithAL1  audioWithAL1
        Boolean
        BOOLEAN
    h245.audioWithAL1M  audioWithAL1M
        Boolean
        BOOLEAN
    h245.audioWithAL2  audioWithAL2
        Boolean
        BOOLEAN
    h245.audioWithAL2M  audioWithAL2M
        Boolean
        BOOLEAN
    h245.audioWithAL3  audioWithAL3
        Boolean
        BOOLEAN
    h245.audioWithAL3M  audioWithAL3M
        Boolean
        BOOLEAN
    h245.authenticationCapability  authenticationCapability
        No value
    h245.authorizationParameter  authorizationParameter
        No value
        AuthorizationParameters
    h245.availableBitRates  availableBitRates
        No value
    h245.averageRate  averageRate
        Unsigned 32-bit integer
        INTEGER_1_4294967295
    h245.bPictureEnhancement  bPictureEnhancement
        Unsigned 32-bit integer
        SET_SIZE_1_14_OF_BEnhancementParameters
    h245.backwardMaximumSDUSize  backwardMaximumSDUSize
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.baseBitRateConstrained  baseBitRateConstrained
        Boolean
        BOOLEAN
    h245.basic  basic
        No value
    h245.basicString  basicString
        No value
    h245.bigCpfAdditionalPictureMemory  bigCpfAdditionalPictureMemory
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.bitRate  bitRate
        Unsigned 32-bit integer
        INTEGER_1_19200
    h245.bitRateLockedToNetworkClock  bitRateLockedToNetworkClock
        Boolean
        BOOLEAN
    h245.bitRateLockedToPCRClock  bitRateLockedToPCRClock
        Boolean
        BOOLEAN
    h245.booleanArray  booleanArray
        Unsigned 32-bit integer
    h245.bppMaxKb  bppMaxKb
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.broadcastMyLogicalChannel  broadcastMyLogicalChannel
        Unsigned 32-bit integer
        LogicalChannelNumber
    h245.broadcastMyLogicalChannelResponse  broadcastMyLogicalChannelResponse
        Unsigned 32-bit integer
    h245.bucketSize  bucketSize
        Unsigned 32-bit integer
        INTEGER_1_4294967295
    h245.burst  burst
        Unsigned 32-bit integer
        INTEGER_1_4294967295
    h245.callAssociationNumber  callAssociationNumber
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h245.callInformation  callInformation
        No value
        CallInformationReq
    h245.canNotPerformLoop  canNotPerformLoop
        No value
    h245.cancelBroadcastMyLogicalChannel  cancelBroadcastMyLogicalChannel
        Unsigned 32-bit integer
        LogicalChannelNumber
    h245.cancelMakeMeChair  cancelMakeMeChair
        No value
    h245.cancelMakeTerminalBroadcaster  cancelMakeTerminalBroadcaster
        No value
    h245.cancelMasterMCU  cancelMasterMCU
        No value
    h245.cancelMultipointConference  cancelMultipointConference
        No value
    h245.cancelMultipointModeCommand  cancelMultipointModeCommand
        No value
    h245.cancelMultipointSecondaryStatus  cancelMultipointSecondaryStatus
        No value
    h245.cancelMultipointZeroComm  cancelMultipointZeroComm
        No value
    h245.cancelSeenByAll  cancelSeenByAll
        No value
    h245.cancelSeenByAtLeastOneOther  cancelSeenByAtLeastOneOther
        No value
    h245.cancelSendThisSource  cancelSendThisSource
        No value
    h245.capabilities  capabilities
        Unsigned 32-bit integer
        SET_SIZE_1_256_OF_AlternativeCapabilitySet
    h245.capability  capability
        Unsigned 32-bit integer
    h245.capabilityDescriptorNumber  capabilityDescriptorNumber
        Unsigned 32-bit integer
    h245.capabilityDescriptorNumbers  capabilityDescriptorNumbers
        Unsigned 32-bit integer
        SET_SIZE_1_256_OF_CapabilityDescriptorNumber
    h245.capabilityDescriptors  capabilityDescriptors
        Unsigned 32-bit integer
        SET_SIZE_1_256_OF_CapabilityDescriptor
    h245.capabilityIdentifier  capabilityIdentifier
        Unsigned 32-bit integer
    h245.capabilityOnMuxStream  capabilityOnMuxStream
        Unsigned 32-bit integer
        SET_SIZE_1_256_OF_AlternativeCapabilitySet
    h245.capabilityTable  capabilityTable
        Unsigned 32-bit integer
        SET_SIZE_1_256_OF_CapabilityTableEntry
    h245.capabilityTableEntryNumber  capabilityTableEntryNumber
        Unsigned 32-bit integer
    h245.capabilityTableEntryNumbers  capabilityTableEntryNumbers
        Unsigned 32-bit integer
        SET_SIZE_1_65535_OF_CapabilityTableEntryNumber
    h245.cause  cause
        Unsigned 32-bit integer
        MasterSlaveDeterminationRejectCause
    h245.ccir601Prog  ccir601Prog
        Boolean
        BOOLEAN
    h245.ccir601Seq  ccir601Seq
        Boolean
        BOOLEAN
    h245.centralizedAudio  centralizedAudio
        Boolean
        BOOLEAN
    h245.centralizedConferenceMC  centralizedConferenceMC
        Boolean
        BOOLEAN
    h245.centralizedControl  centralizedControl
        Boolean
        BOOLEAN
    h245.centralizedData  centralizedData
        Unsigned 32-bit integer
        SEQUENCE_OF_DataApplicationCapability
    h245.centralizedVideo  centralizedVideo
        Boolean
        BOOLEAN
    h245.certProtectedKey  certProtectedKey
        Boolean
        BOOLEAN
    h245.certSelectionCriteria  certSelectionCriteria
        Unsigned 32-bit integer
    h245.certificateResponse  certificateResponse
        Byte array
        OCTET_STRING_SIZE_1_65535
    h245.chairControlCapability  chairControlCapability
        Boolean
        BOOLEAN
    h245.chairTokenOwnerResponse  chairTokenOwnerResponse
        No value
    h245.channelTag  channelTag
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h245.cif  cif
        Boolean
        BOOLEAN
    h245.cif16  cif16
        No value
    h245.cif16AdditionalPictureMemory  cif16AdditionalPictureMemory
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.cif16MPI  cif16MPI
        Unsigned 32-bit integer
        INTEGER_1_32
    h245.cif4  cif4
        No value
    h245.cif4AdditionalPictureMemory  cif4AdditionalPictureMemory
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.cif4MPI  cif4MPI
        Unsigned 32-bit integer
        INTEGER_1_32
    h245.cifAdditionalPictureMemory  cifAdditionalPictureMemory
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.cifMPI  cifMPI
        Unsigned 32-bit integer
        INTEGER_1_4
    h245.class0  class0
        No value
    h245.class1  class1
        No value
    h245.class2  class2
        No value
    h245.class3  class3
        No value
    h245.class4  class4
        No value
    h245.class5  class5
        No value
    h245.clockConversionCode  clockConversionCode
        Unsigned 32-bit integer
        INTEGER_1000_1001
    h245.clockDivisor  clockDivisor
        Unsigned 32-bit integer
        INTEGER_1_127
    h245.clockRecovery  clockRecovery
        Unsigned 32-bit integer
        Cmd_clockRecovery
    h245.closeLogicalChannel  closeLogicalChannel
        No value
    h245.closeLogicalChannelAck  closeLogicalChannelAck
        No value
    h245.collapsing  collapsing
        Unsigned 32-bit integer
    h245.collapsing_item  collapsing item
        No value
    h245.comfortNoise  comfortNoise
        Boolean
        BOOLEAN
    h245.command  command
        Unsigned 32-bit integer
        CommandMessage
    h245.communicationModeCommand  communicationModeCommand
        No value
    h245.communicationModeRequest  communicationModeRequest
        No value
    h245.communicationModeResponse  communicationModeResponse
        Unsigned 32-bit integer
    h245.communicationModeTable  communicationModeTable
        Unsigned 32-bit integer
        SET_SIZE_1_256_OF_CommunicationModeTableEntry
    h245.compositionNumber  compositionNumber
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.conferenceCapability  conferenceCapability
        No value
    h245.conferenceCommand  conferenceCommand
        Unsigned 32-bit integer
    h245.conferenceID  conferenceID
        Byte array
    h245.conferenceIDResponse  conferenceIDResponse
        No value
    h245.conferenceIdentifier  conferenceIdentifier
        Byte array
        OCTET_STRING_SIZE_16
    h245.conferenceIndication  conferenceIndication
        Unsigned 32-bit integer
    h245.conferenceRequest  conferenceRequest
        Unsigned 32-bit integer
    h245.conferenceResponse  conferenceResponse
        Unsigned 32-bit integer
    h245.connectionIdentifier  connectionIdentifier
        No value
    h245.connectionsNotAvailable  connectionsNotAvailable
        No value
    h245.constrainedBitstream  constrainedBitstream
        Boolean
        BOOLEAN
    h245.containedThreads  containedThreads
        Unsigned 32-bit integer
    h245.containedThreads_item  containedThreads item
        Unsigned 32-bit integer
        INTEGER_0_15
    h245.controlFieldOctets  controlFieldOctets
        Unsigned 32-bit integer
    h245.controlOnMuxStream  controlOnMuxStream
        Boolean
        BOOLEAN
    h245.controlledLoad  controlledLoad
        No value
    h245.crc12bit  crc12bit
        No value
    h245.crc16bit  crc16bit
        No value
    h245.crc16bitCapability  crc16bitCapability
        Boolean
        BOOLEAN
    h245.crc20bit  crc20bit
        No value
    h245.crc28bit  crc28bit
        No value
    h245.crc32bit  crc32bit
        No value
    h245.crc32bitCapability  crc32bitCapability
        Boolean
        BOOLEAN
    h245.crc4bit  crc4bit
        No value
    h245.crc8bit  crc8bit
        No value
    h245.crc8bitCapability  crc8bitCapability
        Boolean
        BOOLEAN
    h245.crcDesired  crcDesired
        No value
    h245.crcLength  crcLength
        Unsigned 32-bit integer
        AL1CrcLength
    h245.crcNotUsed  crcNotUsed
        No value
    h245.currentInterval  currentInterval
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.currentIntervalInformation  currentIntervalInformation
        No value
    h245.currentMaximumBitRate  currentMaximumBitRate
        Unsigned 32-bit integer
        MaximumBitRate
    h245.currentPictureHeaderRepetition  currentPictureHeaderRepetition
        Boolean
        BOOLEAN
    h245.custom  custom
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_256_OF_RTPH263VideoRedundancyFrameMapping
    h245.customMPI  customMPI
        Unsigned 32-bit integer
        INTEGER_1_2048
    h245.customPCF  customPCF
        Unsigned 32-bit integer
    h245.customPCF_item  customPCF item
        No value
    h245.customPictureClockFrequency  customPictureClockFrequency
        Unsigned 32-bit integer
        SET_SIZE_1_16_OF_CustomPictureClockFrequency
    h245.customPictureFormat  customPictureFormat
        Unsigned 32-bit integer
        SET_SIZE_1_16_OF_CustomPictureFormat
    h245.data  data
        Byte array
        T_nsd_data
    h245.dataMode  dataMode
        No value
    h245.dataPartitionedSlices  dataPartitionedSlices
        Boolean
        BOOLEAN
    h245.dataType  dataType
        Unsigned 32-bit integer
    h245.dataTypeALCombinationNotSupported  dataTypeALCombinationNotSupported
        No value
    h245.dataTypeNotAvailable  dataTypeNotAvailable
        No value
    h245.dataTypeNotSupported  dataTypeNotSupported
        No value
    h245.dataWithAL1  dataWithAL1
        Boolean
        BOOLEAN
    h245.dataWithAL1M  dataWithAL1M
        Boolean
        BOOLEAN
    h245.dataWithAL2  dataWithAL2
        Boolean
        BOOLEAN
    h245.dataWithAL2M  dataWithAL2M
        Boolean
        BOOLEAN
    h245.dataWithAL3  dataWithAL3
        Boolean
        BOOLEAN
    h245.dataWithAL3M  dataWithAL3M
        Boolean
        BOOLEAN
    h245.deActivate  deActivate
        No value
    h245.deblockingFilterMode  deblockingFilterMode
        Boolean
        BOOLEAN
    h245.decentralizedConferenceMC  decentralizedConferenceMC
        Boolean
        BOOLEAN
    h245.decision  decision
        Unsigned 32-bit integer
    h245.deniedBroadcastMyLogicalChannel  deniedBroadcastMyLogicalChannel
        No value
    h245.deniedChairToken  deniedChairToken
        No value
    h245.deniedMakeTerminalBroadcaster  deniedMakeTerminalBroadcaster
        No value
    h245.deniedSendThisSource  deniedSendThisSource
        No value
    h245.depFec  depFec
        Unsigned 32-bit integer
        DepFECData
    h245.depFecCapability  depFecCapability
        Unsigned 32-bit integer
    h245.depFecMode  depFecMode
        Unsigned 32-bit integer
    h245.descriptorCapacityExceeded  descriptorCapacityExceeded
        No value
    h245.descriptorTooComplex  descriptorTooComplex
        No value
    h245.desired  desired
        No value
    h245.destination  destination
        No value
        TerminalLabel
    h245.dialingInformation  dialingInformation
        Unsigned 32-bit integer
    h245.differentPort  differentPort
        No value
    h245.differential  differential
        Unsigned 32-bit integer
        SET_SIZE_1_65535_OF_DialingInformationNumber
    h245.digPhotoHighProg  digPhotoHighProg
        Boolean
        BOOLEAN
    h245.digPhotoHighSeq  digPhotoHighSeq
        Boolean
        BOOLEAN
    h245.digPhotoLow  digPhotoLow
        Boolean
        BOOLEAN
    h245.digPhotoMedProg  digPhotoMedProg
        Boolean
        BOOLEAN
    h245.digPhotoMedSeq  digPhotoMedSeq
        Boolean
        BOOLEAN
    h245.direction  direction
        Unsigned 32-bit integer
        EncryptionUpdateDirection
    h245.disconnect  disconnect
        No value
    h245.distributedAudio  distributedAudio
        Boolean
        BOOLEAN
    h245.distributedControl  distributedControl
        Boolean
        BOOLEAN
    h245.distributedData  distributedData
        Unsigned 32-bit integer
        SEQUENCE_OF_DataApplicationCapability
    h245.distributedVideo  distributedVideo
        Boolean
        BOOLEAN
    h245.distribution  distribution
        Unsigned 32-bit integer
    h245.doContinuousIndependentProgressions  doContinuousIndependentProgressions
        No value
    h245.doContinuousProgressions  doContinuousProgressions
        No value
    h245.doOneIndependentProgression  doOneIndependentProgression
        No value
    h245.doOneProgression  doOneProgression
        No value
    h245.domainBased  domainBased
        String
        IA5String_SIZE_1_64
    h245.dropConference  dropConference
        No value
    h245.dropTerminal  dropTerminal
        No value
        TerminalLabel
    h245.dscpValue  dscpValue
        Unsigned 32-bit integer
        INTEGER_0_63
    h245.dsm_cc  dsm-cc
        Unsigned 32-bit integer
        DataProtocolCapability
    h245.dsvdControl  dsvdControl
        No value
    h245.dtmf  dtmf
        No value
    h245.duration  duration
        Unsigned 32-bit integer
        INTEGER_1_65535
    h245.dynamicPictureResizingByFour  dynamicPictureResizingByFour
        Boolean
        BOOLEAN
    h245.dynamicPictureResizingSixteenthPel  dynamicPictureResizingSixteenthPel
        Boolean
        BOOLEAN
    h245.dynamicRTPPayloadType  dynamicRTPPayloadType
        Unsigned 32-bit integer
        INTEGER_96_127
    h245.dynamicWarpingHalfPel  dynamicWarpingHalfPel
        Boolean
        BOOLEAN
    h245.dynamicWarpingSixteenthPel  dynamicWarpingSixteenthPel
        Boolean
        BOOLEAN
    h245.e164Address  e164Address
        String
    h245.eRM  eRM
        No value
    h245.elementList  elementList
        Unsigned 32-bit integer
    h245.elements  elements
        Unsigned 32-bit integer
        SEQUENCE_OF_MultiplePayloadStreamElement
    h245.encrypted  encrypted
        Byte array
        OCTET_STRING
    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
        OCTET_STRING_SIZE_1
    h245.encryptionAlgorithmID  encryptionAlgorithmID
        No value
    h245.encryptionAuthenticationAndIntegrity  encryptionAuthenticationAndIntegrity
        No value
    h245.encryptionCapability  encryptionCapability
        Unsigned 32-bit integer
    h245.encryptionCommand  encryptionCommand
        Unsigned 32-bit integer
    h245.encryptionData  encryptionData
        Unsigned 32-bit integer
        EncryptionMode
    h245.encryptionIVRequest  encryptionIVRequest
        No value
    h245.encryptionMode  encryptionMode
        Unsigned 32-bit integer
    h245.encryptionSE  encryptionSE
        Byte array
        OCTET_STRING
    h245.encryptionSync  encryptionSync
        No value
    h245.encryptionUpdate  encryptionUpdate
        No value
        EncryptionSync
    h245.encryptionUpdateAck  encryptionUpdateAck
        No value
    h245.encryptionUpdateCommand  encryptionUpdateCommand
        No value
    h245.encryptionUpdateRequest  encryptionUpdateRequest
        No value
    h245.endSessionCommand  endSessionCommand
        Unsigned 32-bit integer
    h245.enhanced  enhanced
        No value
    h245.enhancedReferencePicSelect  enhancedReferencePicSelect
        No value
    h245.enhancementLayerInfo  enhancementLayerInfo
        No value
    h245.enhancementOptions  enhancementOptions
        No value
    h245.enterExtensionAddress  enterExtensionAddress
        No value
    h245.enterH243ConferenceID  enterH243ConferenceID
        No value
    h245.enterH243Password  enterH243Password
        No value
    h245.enterH243TerminalID  enterH243TerminalID
        No value
    h245.entryNumbers  entryNumbers
        Unsigned 32-bit integer
        SET_SIZE_1_15_OF_MultiplexTableEntryNumber
    h245.equaliseDelay  equaliseDelay
        No value
    h245.errorCompensation  errorCompensation
        Boolean
        BOOLEAN
    h245.errorCorrection  errorCorrection
        Unsigned 32-bit integer
        Cmd_errorCorrection
    h245.errorCorrectionOnly  errorCorrectionOnly
        Boolean
        BOOLEAN
    h245.escrowID  escrowID
        Object Identifier
        OBJECT_IDENTIFIER
    h245.escrowValue  escrowValue
        Byte array
        BIT_STRING_SIZE_1_65535
    h245.escrowentry  escrowentry
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_256_OF_EscrowData
    h245.estimatedReceivedJitterExponent  estimatedReceivedJitterExponent
        Unsigned 32-bit integer
        INTEGER_0_7
    h245.estimatedReceivedJitterMantissa  estimatedReceivedJitterMantissa
        Unsigned 32-bit integer
        INTEGER_0_3
    h245.excessiveError  excessiveError
        No value
    h245.expirationTime  expirationTime
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h245.extendedAlphanumeric  extendedAlphanumeric
        No value
    h245.extendedPAR  extendedPAR
        Unsigned 32-bit integer
    h245.extendedPAR_item  extendedPAR item
        No value
    h245.extendedVideoCapability  extendedVideoCapability
        No value
    h245.extensionAddress  extensionAddress
        Byte array
        TerminalID
    h245.extensionAddressResponse  extensionAddressResponse
        No value
    h245.externalReference  externalReference
        Byte array
        OCTET_STRING_SIZE_1_255
    h245.fec  fec
        Unsigned 32-bit integer
        FECData
    h245.fecCapability  fecCapability
        No value
    h245.fecMode  fecMode
        No value
    h245.fecScheme  fecScheme
        Object Identifier
        OBJECT_IDENTIFIER
    h245.field  field
        Object Identifier
        OBJECT_IDENTIFIER
    h245.fillBitRemoval  fillBitRemoval
        Boolean
        BOOLEAN
    h245.finite  finite
        Unsigned 32-bit integer
        INTEGER_0_16
    h245.firstGOB  firstGOB
        Unsigned 32-bit integer
        INTEGER_0_17
    h245.firstMB  firstMB
        Unsigned 32-bit integer
        INTEGER_1_8192
    h245.fiveChannels3_0_2_0  fiveChannels3-0-2-0
        Boolean
        BOOLEAN
    h245.fiveChannels3_2  fiveChannels3-2
        Boolean
        BOOLEAN
    h245.fixedPointIDCT0  fixedPointIDCT0
        Boolean
        BOOLEAN
    h245.floorRequested  floorRequested
        No value
        TerminalLabel
    h245.flowControlCommand  flowControlCommand
        No value
    h245.flowControlIndication  flowControlIndication
        No value
    h245.flowControlToZero  flowControlToZero
        Boolean
        BOOLEAN
    h245.forwardLogicalChannelDependency  forwardLogicalChannelDependency
        Unsigned 32-bit integer
        LogicalChannelNumber
    h245.forwardLogicalChannelNumber  forwardLogicalChannelNumber
        Unsigned 32-bit integer
        OLC_fw_lcn
    h245.forwardLogicalChannelParameters  forwardLogicalChannelParameters
        No value
    h245.forwardMaximumSDUSize  forwardMaximumSDUSize
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.forwardMultiplexAckParameters  forwardMultiplexAckParameters
        Unsigned 32-bit integer
    h245.fourChannels2_0_2_0  fourChannels2-0-2-0
        Boolean
        BOOLEAN
    h245.fourChannels2_2  fourChannels2-2
        Boolean
        BOOLEAN
    h245.fourChannels3_1  fourChannels3-1
        Boolean
        BOOLEAN
    h245.frameSequence  frameSequence
        Unsigned 32-bit integer
    h245.frameSequence_item  frameSequence item
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.frameToThreadMapping  frameToThreadMapping
        Unsigned 32-bit integer
    h245.framed  framed
        No value
    h245.framesBetweenSyncPoints  framesBetweenSyncPoints
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.framesPerSecond  framesPerSecond
        Unsigned 32-bit integer
        INTEGER_0_15
    h245.fullPictureFreeze  fullPictureFreeze
        Boolean
        BOOLEAN
    h245.fullPictureSnapshot  fullPictureSnapshot
        Boolean
        BOOLEAN
    h245.functionNotSupported  functionNotSupported
        No value
    h245.functionNotUnderstood  functionNotUnderstood
        Unsigned 32-bit integer
    h245.g3FacsMH200x100  g3FacsMH200x100
        Boolean
        BOOLEAN
    h245.g3FacsMH200x200  g3FacsMH200x200
        Boolean
        BOOLEAN
    h245.g4FacsMMR200x100  g4FacsMMR200x100
        Boolean
        BOOLEAN
    h245.g4FacsMMR200x200  g4FacsMMR200x200
        Boolean
        BOOLEAN
    h245.g711Alaw56k  g711Alaw56k
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.g711Alaw64k  g711Alaw64k
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.g711Ulaw56k  g711Ulaw56k
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.g711Ulaw64k  g711Ulaw64k
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.g722_48k  g722-48k
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.g722_56k  g722-56k
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.g722_64k  g722-64k
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.g7231  g7231
        No value
    h245.g7231AnnexCCapability  g7231AnnexCCapability
        No value
    h245.g7231AnnexCMode  g7231AnnexCMode
        No value
    h245.g723AnnexCAudioMode  g723AnnexCAudioMode
        No value
    h245.g728  g728
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.g729  g729
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.g729AnnexA  g729AnnexA
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.g729AnnexAwAnnexB  g729AnnexAwAnnexB
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.g729Extensions  g729Extensions
        No value
    h245.g729wAnnexB  g729wAnnexB
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.gatewayAddress  gatewayAddress
        Unsigned 32-bit integer
        SET_SIZE_1_256_OF_Q2931Address
    h245.generalString  generalString
        No value
    h245.genericAudioCapability  genericAudioCapability
        No value
        GenericCapability
    h245.genericAudioMode  genericAudioMode
        No value
        GenericCapability
    h245.genericCommand  genericCommand
        No value
        GenericMessage
    h245.genericControlCapability  genericControlCapability
        No value
        GenericCapability
    h245.genericDataCapability  genericDataCapability
        No value
        GenericCapability
    h245.genericDataMode  genericDataMode
        No value
        GenericCapability
    h245.genericH235SecurityCapability  genericH235SecurityCapability
        No value
        GenericCapability
    h245.genericIndication  genericIndication
        No value
        GenericMessage
    h245.genericInformation  genericInformation
        Unsigned 32-bit integer
        SEQUENCE_OF_GenericInformation
    h245.genericModeParameters  genericModeParameters
        No value
        GenericCapability
    h245.genericMultiplexCapability  genericMultiplexCapability
        No value
        GenericCapability
    h245.genericParameter  genericParameter
        Unsigned 32-bit integer
        SEQUENCE_OF_GenericParameter
    h245.genericRequest  genericRequest
        No value
        GenericMessage
    h245.genericResponse  genericResponse
        No value
        GenericMessage
    h245.genericTransportParameters  genericTransportParameters
        No value
    h245.genericUserInputCapability  genericUserInputCapability
        No value
        GenericCapability
    h245.genericVideoCapability  genericVideoCapability
        No value
        GenericCapability
    h245.genericVideoMode  genericVideoMode
        No value
        GenericCapability
    h245.golay24_12  golay24-12
        No value
    h245.grantedBroadcastMyLogicalChannel  grantedBroadcastMyLogicalChannel
        No value
    h245.grantedChairToken  grantedChairToken
        No value
    h245.grantedMakeTerminalBroadcaster  grantedMakeTerminalBroadcaster
        No value
    h245.grantedSendThisSource  grantedSendThisSource
        No value
    h245.gsmEnhancedFullRate  gsmEnhancedFullRate
        No value
        GSMAudioCapability
    h245.gsmFullRate  gsmFullRate
        No value
        GSMAudioCapability
    h245.gsmHalfRate  gsmHalfRate
        No value
        GSMAudioCapability
    h245.gstn  gstn
        No value
    h245.gstnOptions  gstnOptions
        Unsigned 32-bit integer
    h245.guaranteedQOS  guaranteedQOS
        No value
    h245.h221NonStandard  h221NonStandard
        No value
        H221NonStandardID
    h245.h222Capability  h222Capability
        No value
    h245.h222DataPartitioning  h222DataPartitioning
        Unsigned 32-bit integer
        DataProtocolCapability
    h245.h222LogicalChannelParameters  h222LogicalChannelParameters
        No value
    h245.h223AnnexA  h223AnnexA
        Boolean
        BOOLEAN
    h245.h223AnnexADoubleFlag  h223AnnexADoubleFlag
        Boolean
        BOOLEAN
    h245.h223AnnexB  h223AnnexB
        Boolean
        BOOLEAN
    h245.h223AnnexBwithHeader  h223AnnexBwithHeader
        Boolean
        BOOLEAN
    h245.h223AnnexCCapability  h223AnnexCCapability
        No value
    h245.h223Capability  h223Capability
        No value
    h245.h223LogicalChannelParameters  h223LogicalChannelParameters
        No value
        OLC_fw_h223_params
    h245.h223ModeChange  h223ModeChange
        Unsigned 32-bit integer
    h245.h223ModeParameters  h223ModeParameters
        No value
    h245.h223MultiplexReconfiguration  h223MultiplexReconfiguration
        Unsigned 32-bit integer
    h245.h223MultiplexTableCapability  h223MultiplexTableCapability
        Unsigned 32-bit integer
    h245.h223SkewIndication  h223SkewIndication
        No value
    h245.h224  h224
        Unsigned 32-bit integer
        DataProtocolCapability
    h245.h2250Capability  h2250Capability
        No value
    h245.h2250LogicalChannelAckParameters  h2250LogicalChannelAckParameters
        No value
    h245.h2250LogicalChannelParameters  h2250LogicalChannelParameters
        No value
    h245.h2250MaximumSkewIndication  h2250MaximumSkewIndication
        No value
    h245.h2250ModeParameters  h2250ModeParameters
        No value
    h245.h233AlgorithmIdentifier  h233AlgorithmIdentifier
        Unsigned 32-bit integer
        SequenceNumber
    h245.h233Encryption  h233Encryption
        No value
    h245.h233EncryptionReceiveCapability  h233EncryptionReceiveCapability
        No value
    h245.h233EncryptionTransmitCapability  h233EncryptionTransmitCapability
        Boolean
        BOOLEAN
    h245.h233IVResponseTime  h233IVResponseTime
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.h235Control  h235Control
        No value
        NonStandardParameter
    h245.h235Key  h235Key
        Byte array
        OCTET_STRING_SIZE_1_65535
    h245.h235Media  h235Media
        No value
    h245.h235Mode  h235Mode
        No value
    h245.h235SecurityCapability  h235SecurityCapability
        No value
    h245.h261VideoCapability  h261VideoCapability
        No value
    h245.h261VideoMode  h261VideoMode
        No value
    h245.h261aVideoPacketization  h261aVideoPacketization
        Boolean
        BOOLEAN
    h245.h262VideoCapability  h262VideoCapability
        No value
    h245.h262VideoMode  h262VideoMode
        No value
    h245.h263Options  h263Options
        No value
    h245.h263Version3Options  h263Version3Options
        No value
    h245.h263VideoCapability  h263VideoCapability
        No value
    h245.h263VideoCoupledModes  h263VideoCoupledModes
        Unsigned 32-bit integer
        SET_SIZE_1_16_OF_H263ModeComboFlags
    h245.h263VideoMode  h263VideoMode
        No value
    h245.h263VideoUncoupledModes  h263VideoUncoupledModes
        No value
        H263ModeComboFlags
    h245.h310SeparateVCStack  h310SeparateVCStack
        No value
    h245.h310SingleVCStack  h310SingleVCStack
        No value
    h245.hdlcFrameTunnelingwSAR  hdlcFrameTunnelingwSAR
        No value
    h245.hdlcFrameTunnelling  hdlcFrameTunnelling
        No value
    h245.hdlcParameters  hdlcParameters
        No value
        V76HDLCParameters
    h245.hdtvProg  hdtvProg
        Boolean
        BOOLEAN
    h245.hdtvSeq  hdtvSeq
        Boolean
        BOOLEAN
    h245.headerFEC  headerFEC
        Unsigned 32-bit integer
        AL1HeaderFEC
    h245.headerFormat  headerFormat
        Unsigned 32-bit integer
    h245.height  height
        Unsigned 32-bit integer
        INTEGER_1_255
    h245.highRateMode0  highRateMode0
        Unsigned 32-bit integer
        INTEGER_27_78
    h245.highRateMode1  highRateMode1
        Unsigned 32-bit integer
        INTEGER_27_78
    h245.higherBitRate  higherBitRate
        Unsigned 32-bit integer
        INTEGER_1_65535
    h245.highestEntryNumberProcessed  highestEntryNumberProcessed
        Unsigned 32-bit integer
        CapabilityTableEntryNumber
    h245.hookflash  hookflash
        No value
    h245.hrd_B  hrd-B
        Unsigned 32-bit integer
        INTEGER_0_524287
    h245.iA5String  iA5String
        No value
    h245.iP6Address  iP6Address
        No value
    h245.iPAddress  iPAddress
        No value
    h245.iPSourceRouteAddress  iPSourceRouteAddress
        No value
    h245.iPXAddress  iPXAddress
        No value
    h245.identicalNumbers  identicalNumbers
        No value
    h245.improvedPBFramesMode  improvedPBFramesMode
        Boolean
        BOOLEAN
    h245.independentSegmentDecoding  independentSegmentDecoding
        Boolean
        BOOLEAN
    h245.indication  indication
        Unsigned 32-bit integer
        IndicationMessage
    h245.infinite  infinite
        No value
    h245.infoNotAvailable  infoNotAvailable
        Unsigned 32-bit integer
        INTEGER_1_65535
    h245.insufficientBandwidth  insufficientBandwidth
        No value
    h245.insufficientResources  insufficientResources
        No value
    h245.integrityCapability  integrityCapability
        No value
    h245.interlacedFields  interlacedFields
        Boolean
        BOOLEAN
    h245.internationalNumber  internationalNumber
        String
        NumericString_SIZE_1_16
    h245.invalidDependentChannel  invalidDependentChannel
        No value
    h245.invalidSessionID  invalidSessionID
        No value
    h245.ip_TCP  ip-TCP
        No value
    h245.ip_UDP  ip-UDP
        No value
    h245.is11172AudioCapability  is11172AudioCapability
        No value
    h245.is11172AudioMode  is11172AudioMode
        No value
    h245.is11172VideoCapability  is11172VideoCapability
        No value
    h245.is11172VideoMode  is11172VideoMode
        No value
    h245.is13818AudioCapability  is13818AudioCapability
        No value
    h245.is13818AudioMode  is13818AudioMode
        No value
    h245.isdnOptions  isdnOptions
        Unsigned 32-bit integer
    h245.issueQuery  issueQuery
        No value
    h245.iv  iv
        Byte array
        OCTET_STRING
    h245.iv16  iv16
        Byte array
    h245.iv8  iv8
        Byte array
    h245.jbig200x200Prog  jbig200x200Prog
        Boolean
        BOOLEAN
    h245.jbig200x200Seq  jbig200x200Seq
        Boolean
        BOOLEAN
    h245.jbig300x300Prog  jbig300x300Prog
        Boolean
        BOOLEAN
    h245.jbig300x300Seq  jbig300x300Seq
        Boolean
        BOOLEAN
    h245.jitterIndication  jitterIndication
        No value
    h245.keyProtectionMethod  keyProtectionMethod
        No value
    h245.lcse  lcse
        No value
    h245.linesPerFrame  linesPerFrame
        Unsigned 32-bit integer
        INTEGER_0_16383
    h245.localAreaAddress  localAreaAddress
        Unsigned 32-bit integer
        TransportAddress
    h245.localQoS  localQoS
        Boolean
        BOOLEAN
    h245.localTCF  localTCF
        No value
    h245.logical  logical
        No value
    h245.logicalChannelActive  logicalChannelActive
        No value
    h245.logicalChannelInactive  logicalChannelInactive
        No value
    h245.logicalChannelLoop  logicalChannelLoop
        Unsigned 32-bit integer
        LogicalChannelNumber
    h245.logicalChannelNumber  logicalChannelNumber
        Unsigned 32-bit integer
        T_logicalChannelNum
    h245.logicalChannelNumber1  logicalChannelNumber1
        Unsigned 32-bit integer
        LogicalChannelNumber
    h245.logicalChannelNumber2  logicalChannelNumber2
        Unsigned 32-bit integer
        LogicalChannelNumber
    h245.logicalChannelRateAcknowledge  logicalChannelRateAcknowledge
        No value
    h245.logicalChannelRateReject  logicalChannelRateReject
        No value
    h245.logicalChannelRateRelease  logicalChannelRateRelease
        No value
    h245.logicalChannelRateRequest  logicalChannelRateRequest
        No value
    h245.logicalChannelSwitchingCapability  logicalChannelSwitchingCapability
        Boolean
        BOOLEAN
    h245.longInterleaver  longInterleaver
        Boolean
        BOOLEAN
    h245.longTermPictureIndex  longTermPictureIndex
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.loopBackTestCapability  loopBackTestCapability
        Boolean
        BOOLEAN
    h245.loopbackTestProcedure  loopbackTestProcedure
        Boolean
        BOOLEAN
    h245.loose  loose
        No value
    h245.lostPartialPicture  lostPartialPicture
        No value
    h245.lostPicture  lostPicture
        Unsigned 32-bit integer
        SEQUENCE_OF_PictureReference
    h245.lowFrequencyEnhancement  lowFrequencyEnhancement
        Boolean
        BOOLEAN
    h245.lowRateMode0  lowRateMode0
        Unsigned 32-bit integer
        INTEGER_23_66
    h245.lowRateMode1  lowRateMode1
        Unsigned 32-bit integer
        INTEGER_23_66
    h245.lowerBitRate  lowerBitRate
        Unsigned 32-bit integer
        INTEGER_1_65535
    h245.luminanceSampleRate  luminanceSampleRate
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h245.mCTerminalIDResponse  mCTerminalIDResponse
        No value
    h245.mPI  mPI
        No value
    h245.mREJCapability  mREJCapability
        Boolean
        BOOLEAN
    h245.mSREJ  mSREJ
        No value
    h245.maintenanceLoopAck  maintenanceLoopAck
        No value
    h245.maintenanceLoopOffCommand  maintenanceLoopOffCommand
        No value
    h245.maintenanceLoopReject  maintenanceLoopReject
        No value
    h245.maintenanceLoopRequest  maintenanceLoopRequest
        No value
    h245.makeMeChair  makeMeChair
        No value
    h245.makeMeChairResponse  makeMeChairResponse
        Unsigned 32-bit integer
    h245.makeTerminalBroadcaster  makeTerminalBroadcaster
        No value
        TerminalLabel
    h245.makeTerminalBroadcasterResponse  makeTerminalBroadcasterResponse
        Unsigned 32-bit integer
    h245.manufacturerCode  manufacturerCode
        Unsigned 32-bit integer
    h245.master  master
        No value
    h245.masterActivate  masterActivate
        No value
    h245.masterMCU  masterMCU
        No value
    h245.masterSlaveConflict  masterSlaveConflict
        No value
    h245.masterSlaveDetermination  masterSlaveDetermination
        No value
    h245.masterSlaveDeterminationAck  masterSlaveDeterminationAck
        No value
    h245.masterSlaveDeterminationReject  masterSlaveDeterminationReject
        No value
    h245.masterSlaveDeterminationRelease  masterSlaveDeterminationRelease
        No value
    h245.masterToSlave  masterToSlave
        No value
    h245.maxAl_sduAudioFrames  maxAl-sduAudioFrames
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.maxBitRate  maxBitRate
        Unsigned 32-bit integer
        INTEGER_1_19200
    h245.maxCustomPictureHeight  maxCustomPictureHeight
        Unsigned 32-bit integer
        INTEGER_1_2048
    h245.maxCustomPictureWidth  maxCustomPictureWidth
        Unsigned 32-bit integer
        INTEGER_1_2048
    h245.maxH223MUXPDUsize  maxH223MUXPDUsize
        Unsigned 32-bit integer
        INTEGER_1_65535
    h245.maxMUXPDUSizeCapability  maxMUXPDUSizeCapability
        Boolean
        BOOLEAN
    h245.maxNTUSize  maxNTUSize
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.maxNumberOfAdditionalConnections  maxNumberOfAdditionalConnections
        Unsigned 32-bit integer
        INTEGER_1_65535
    h245.maxPendingReplacementFor  maxPendingReplacementFor
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.maxPktSize  maxPktSize
        Unsigned 32-bit integer
        INTEGER_1_4294967295
    h245.maxWindowSizeCapability  maxWindowSizeCapability
        Unsigned 32-bit integer
        INTEGER_1_127
    h245.maximumAL1MPDUSize  maximumAL1MPDUSize
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.maximumAL2MSDUSize  maximumAL2MSDUSize
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.maximumAL3MSDUSize  maximumAL3MSDUSize
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.maximumAl2SDUSize  maximumAl2SDUSize
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.maximumAl3SDUSize  maximumAl3SDUSize
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.maximumAudioDelayJitter  maximumAudioDelayJitter
        Unsigned 32-bit integer
        INTEGER_0_1023
    h245.maximumBitRate  maximumBitRate
        Unsigned 32-bit integer
    h245.maximumDelayJitter  maximumDelayJitter
        Unsigned 32-bit integer
        INTEGER_0_1023
    h245.maximumElementListSize  maximumElementListSize
        Unsigned 32-bit integer
        INTEGER_2_255
    h245.maximumHeaderInterval  maximumHeaderInterval
        No value
        MaximumHeaderIntervalReq
    h245.maximumNestingDepth  maximumNestingDepth
        Unsigned 32-bit integer
        INTEGER_1_15
    h245.maximumPayloadLength  maximumPayloadLength
        Unsigned 32-bit integer
        INTEGER_1_65025
    h245.maximumSampleSize  maximumSampleSize
        Unsigned 32-bit integer
        INTEGER_1_255
    h245.maximumSkew  maximumSkew
        Unsigned 32-bit integer
        INTEGER_0_4095
    h245.maximumStringLength  maximumStringLength
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.maximumSubElementListSize  maximumSubElementListSize
        Unsigned 32-bit integer
        INTEGER_2_255
    h245.mcCapability  mcCapability
        No value
    h245.mcLocationIndication  mcLocationIndication
        No value
    h245.mcuNumber  mcuNumber
        Unsigned 32-bit integer
    h245.mediaCapability  mediaCapability
        Unsigned 32-bit integer
        CapabilityTableEntryNumber
    h245.mediaChannel  mediaChannel
        Unsigned 32-bit integer
    h245.mediaChannelCapabilities  mediaChannelCapabilities
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_256_OF_MediaChannelCapability
    h245.mediaControlChannel  mediaControlChannel
        Unsigned 32-bit integer
    h245.mediaControlGuaranteedDelivery  mediaControlGuaranteedDelivery
        Boolean
        BOOLEAN
    h245.mediaDistributionCapability  mediaDistributionCapability
        Unsigned 32-bit integer
        SEQUENCE_OF_MediaDistributionCapability
    h245.mediaGuaranteedDelivery  mediaGuaranteedDelivery
        Boolean
        BOOLEAN
    h245.mediaLoop  mediaLoop
        Unsigned 32-bit integer
        LogicalChannelNumber
    h245.mediaMode  mediaMode
        Unsigned 32-bit integer
    h245.mediaPacketization  mediaPacketization
        Unsigned 32-bit integer
    h245.mediaPacketizationCapability  mediaPacketizationCapability
        No value
    h245.mediaTransport  mediaTransport
        Unsigned 32-bit integer
        MediaTransportType
    h245.mediaType  mediaType
        Unsigned 32-bit integer
    h245.messageContent  messageContent
        Unsigned 32-bit integer
    h245.messageContent_item  messageContent item
        No value
        T_messageContent_item
    h245.messageIdentifier  messageIdentifier
        Unsigned 32-bit integer
        CapabilityIdentifier
    h245.minCustomPictureHeight  minCustomPictureHeight
        Unsigned 32-bit integer
        INTEGER_1_2048
    h245.minCustomPictureWidth  minCustomPictureWidth
        Unsigned 32-bit integer
        INTEGER_1_2048
    h245.minPoliced  minPoliced
        Unsigned 32-bit integer
        INTEGER_1_4294967295
    h245.miscellaneousCommand  miscellaneousCommand
        No value
    h245.miscellaneousIndication  miscellaneousIndication
        No value
    h245.mobile  mobile
        No value
    h245.mobileMultilinkFrameCapability  mobileMultilinkFrameCapability
        No value
    h245.mobileMultilinkReconfigurationCommand  mobileMultilinkReconfigurationCommand
        No value
    h245.mobileMultilinkReconfigurationIndication  mobileMultilinkReconfigurationIndication
        No value
    h245.mobileOperationTransmitCapability  mobileOperationTransmitCapability
        No value
    h245.mode  mode
        Unsigned 32-bit integer
        V76LCP_mode
    h245.modeChangeCapability  modeChangeCapability
        Boolean
        BOOLEAN
    h245.modeCombos  modeCombos
        Unsigned 32-bit integer
        SET_SIZE_1_16_OF_H263VideoModeCombos
    h245.modeUnavailable  modeUnavailable
        No value
    h245.modifiedQuantizationMode  modifiedQuantizationMode
        Boolean
        BOOLEAN
    h245.mpuHorizMBs  mpuHorizMBs
        Unsigned 32-bit integer
        INTEGER_1_128
    h245.mpuTotalNumber  mpuTotalNumber
        Unsigned 32-bit integer
        INTEGER_1_65536
    h245.mpuVertMBs  mpuVertMBs
        Unsigned 32-bit integer
        INTEGER_1_72
    h245.multiUniCastConference  multiUniCastConference
        Boolean
        BOOLEAN
    h245.multicast  multicast
        No value
    h245.multicastAddress  multicastAddress
        Unsigned 32-bit integer
    h245.multicastCapability  multicastCapability
        Boolean
        BOOLEAN
    h245.multicastChannelNotAllowed  multicastChannelNotAllowed
        No value
    h245.multichannelType  multichannelType
        Unsigned 32-bit integer
        IS11172_multichannelType
    h245.multilingual  multilingual
        Boolean
        BOOLEAN
    h245.multilinkIndication  multilinkIndication
        Unsigned 32-bit integer
    h245.multilinkRequest  multilinkRequest
        Unsigned 32-bit integer
    h245.multilinkResponse  multilinkResponse
        Unsigned 32-bit integer
    h245.multiplePayloadStream  multiplePayloadStream
        No value
    h245.multiplePayloadStreamCapability  multiplePayloadStreamCapability
        No value
    h245.multiplePayloadStreamMode  multiplePayloadStreamMode
        No value
    h245.multiplex  multiplex
        Unsigned 32-bit integer
        Cmd_multiplex
    h245.multiplexCapability  multiplexCapability
        Unsigned 32-bit integer
    h245.multiplexEntryDescriptors  multiplexEntryDescriptors
        Unsigned 32-bit integer
        SET_SIZE_1_15_OF_MultiplexEntryDescriptor
    h245.multiplexEntrySend  multiplexEntrySend
        No value
    h245.multiplexEntrySendAck  multiplexEntrySendAck
        No value
    h245.multiplexEntrySendReject  multiplexEntrySendReject
        No value
    h245.multiplexEntrySendRelease  multiplexEntrySendRelease
        No value
    h245.multiplexFormat  multiplexFormat
        Unsigned 32-bit integer
    h245.multiplexParameters  multiplexParameters
        Unsigned 32-bit integer
        OLC_forw_multiplexParameters
    h245.multiplexTableEntryNumber  multiplexTableEntryNumber
        Unsigned 32-bit integer
    h245.multiplexedStream  multiplexedStream
        No value
        MultiplexedStreamParameter
    h245.multiplexedStreamMode  multiplexedStreamMode
        No value
        MultiplexedStreamParameter
    h245.multiplexedStreamModeParameters  multiplexedStreamModeParameters
        No value
    h245.multipointConference  multipointConference
        No value
    h245.multipointConstraint  multipointConstraint
        No value
    h245.multipointModeCommand  multipointModeCommand
        No value
    h245.multipointSecondaryStatus  multipointSecondaryStatus
        No value
    h245.multipointVisualizationCapability  multipointVisualizationCapability
        Boolean
        BOOLEAN
    h245.multipointZeroComm  multipointZeroComm
        No value
    h245.n401  n401
        Unsigned 32-bit integer
        INTEGER_1_4095
    h245.n401Capability  n401Capability
        Unsigned 32-bit integer
        INTEGER_1_4095
    h245.n_isdn  n-isdn
        No value
    h245.nackMessageOnly  nackMessageOnly
        No value
    h245.netBios  netBios
        Byte array
        OCTET_STRING_SIZE_16
    h245.netnum  netnum
        Byte array
        OCTET_STRING_SIZE_4
    h245.network  network
        IPv4 address
        Ipv4_network
    h245.networkAddress  networkAddress
        Unsigned 32-bit integer
    h245.networkErrorCode  networkErrorCode
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.networkType  networkType
        Unsigned 32-bit integer
        SET_SIZE_1_255_OF_DialingInformationNetworkType
    h245.newATMVCCommand  newATMVCCommand
        No value
    h245.newATMVCIndication  newATMVCIndication
        No value
    h245.nextPictureHeaderRepetition  nextPictureHeaderRepetition
        Boolean
        BOOLEAN
    h245.nlpid  nlpid
        No value
    h245.nlpidData  nlpidData
        Byte array
        OCTET_STRING
    h245.nlpidProtocol  nlpidProtocol
        Unsigned 32-bit integer
        DataProtocolCapability
    h245.noArq  noArq
        No value
    h245.noMultiplex  noMultiplex
        No value
    h245.noRestriction  noRestriction
        No value
    h245.noSilenceSuppressionHighRate  noSilenceSuppressionHighRate
        No value
    h245.noSilenceSuppressionLowRate  noSilenceSuppressionLowRate
        No value
    h245.noSuspendResume  noSuspendResume
        No value
    h245.node  node
        Byte array
        OCTET_STRING_SIZE_6
    h245.nonCollapsing  nonCollapsing
        Unsigned 32-bit integer
    h245.nonCollapsingRaw  nonCollapsingRaw
        Byte array
    h245.nonCollapsing_item  nonCollapsing item
        No value
    h245.nonStandard  nonStandard
        No value
        NonStandardMessage
    h245.nonStandardAddress  nonStandardAddress
        No value
        NonStandardParameter
    h245.nonStandardData  nonStandardData
        No value
        NonStandardParameter
    h245.nonStandardIdentifier  nonStandardIdentifier
        Unsigned 32-bit integer
    h245.nonStandardParameter  nonStandardParameter
        No value
    h245.none  none
        No value
    h245.noneProcessed  noneProcessed
        No value
    h245.normal  normal
        No value
    h245.nsap  nsap
        Byte array
        OCTET_STRING_SIZE_1_20
    h245.nsapAddress  nsapAddress
        Byte array
        OCTET_STRING_SIZE_1_20
    h245.nsrpSupport  nsrpSupport
        Boolean
        BOOLEAN
    h245.nullClockRecovery  nullClockRecovery
        Boolean
        BOOLEAN
    h245.nullData  nullData
        No value
    h245.nullErrorCorrection  nullErrorCorrection
        Boolean
        BOOLEAN
    h245.numOfDLCS  numOfDLCS
        Unsigned 32-bit integer
        INTEGER_2_8191
    h245.numberOfBPictures  numberOfBPictures
        Unsigned 32-bit integer
        INTEGER_1_64
    h245.numberOfCodewords  numberOfCodewords
        Unsigned 32-bit integer
        INTEGER_1_65536
    h245.numberOfGOBs  numberOfGOBs
        Unsigned 32-bit integer
        INTEGER_1_18
    h245.numberOfMBs  numberOfMBs
        Unsigned 32-bit integer
        INTEGER_1_8192
    h245.numberOfRetransmissions  numberOfRetransmissions
        Unsigned 32-bit integer
    h245.numberOfThreads  numberOfThreads
        Unsigned 32-bit integer
        INTEGER_1_16
    h245.numberOfVCs  numberOfVCs
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.object  object
        Object Identifier
    h245.octetString  octetString
        Unsigned 32-bit integer
    h245.offset_x  offset-x
        Signed 32-bit integer
        INTEGER_M262144_262143
    h245.offset_y  offset-y
        Signed 32-bit integer
        INTEGER_M262144_262143
    h245.oid  oid
        Object Identifier
        OBJECT_IDENTIFIER
    h245.oneOfCapabilities  oneOfCapabilities
        Unsigned 32-bit integer
        AlternativeCapabilitySet
    h245.openLogicalChannel  openLogicalChannel
        No value
    h245.openLogicalChannelAck  openLogicalChannelAck
        No value
    h245.openLogicalChannelConfirm  openLogicalChannelConfirm
        No value
    h245.openLogicalChannelReject  openLogicalChannelReject
        No value
    h245.originateCall  originateCall
        No value
    h245.paramS  paramS
        No value
    h245.parameterIdentifier  parameterIdentifier
        Unsigned 32-bit integer
    h245.parameterValue  parameterValue
        Unsigned 32-bit integer
    h245.partialPictureFreezeAndRelease  partialPictureFreezeAndRelease
        Boolean
        BOOLEAN
    h245.partialPictureSnapshot  partialPictureSnapshot
        Boolean
        BOOLEAN
    h245.partiallyFilledCells  partiallyFilledCells
        Boolean
        BOOLEAN
    h245.password  password
        Byte array
    h245.passwordResponse  passwordResponse
        No value
    h245.payloadDescriptor  payloadDescriptor
        Unsigned 32-bit integer
    h245.payloadType  payloadType
        Unsigned 32-bit integer
        T_rtpPayloadType
    h245.pbFrames  pbFrames
        Boolean
        BOOLEAN
    h245.pcr_pid  pcr-pid
        Unsigned 32-bit integer
        INTEGER_0_8191
    h245.pdu_type  PDU Type
        Unsigned 32-bit integer
        Type of H.245 PDU
    h245.peakRate  peakRate
        Unsigned 32-bit integer
        INTEGER_1_4294967295
    h245.pictureNumber  pictureNumber
        Boolean
        BOOLEAN
    h245.pictureRate  pictureRate
        Unsigned 32-bit integer
        INTEGER_0_15
    h245.pictureReference  pictureReference
        Unsigned 32-bit integer
    h245.pixelAspectCode  pixelAspectCode
        Unsigned 32-bit integer
    h245.pixelAspectCode_item  pixelAspectCode item
        Unsigned 32-bit integer
        INTEGER_1_14
    h245.pixelAspectInformation  pixelAspectInformation
        Unsigned 32-bit integer
    h245.pktMode  pktMode
        Unsigned 32-bit integer
    h245.portNumber  portNumber
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.presentationOrder  presentationOrder
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.previousPictureHeaderRepetition  previousPictureHeaderRepetition
        Boolean
        BOOLEAN
    h245.primary  primary
        No value
        RedundancyEncodingElement
    h245.primaryEncoding  primaryEncoding
        Unsigned 32-bit integer
        CapabilityTableEntryNumber
    h245.productNumber  productNumber
        String
        OCTET_STRING_SIZE_1_256
    h245.profileAndLevel  profileAndLevel
        Unsigned 32-bit integer
    h245.profileAndLevel_HPatHL  profileAndLevel-HPatHL
        Boolean
        BOOLEAN
    h245.profileAndLevel_HPatH_14  profileAndLevel-HPatH-14
        Boolean
        BOOLEAN
    h245.profileAndLevel_HPatML  profileAndLevel-HPatML
        Boolean
        BOOLEAN
    h245.profileAndLevel_MPatHL  profileAndLevel-MPatHL
        Boolean
        BOOLEAN
    h245.profileAndLevel_MPatH_14  profileAndLevel-MPatH-14
        Boolean
        BOOLEAN
    h245.profileAndLevel_MPatLL  profileAndLevel-MPatLL
        Boolean
        BOOLEAN
    h245.profileAndLevel_MPatML  profileAndLevel-MPatML
        Boolean
        BOOLEAN
    h245.profileAndLevel_SNRatLL  profileAndLevel-SNRatLL
        Boolean
        BOOLEAN
    h245.profileAndLevel_SNRatML  profileAndLevel-SNRatML
        Boolean
        BOOLEAN
    h245.profileAndLevel_SPatML  profileAndLevel-SPatML
        Boolean
        BOOLEAN
    h245.profileAndLevel_SpatialatH_14  profileAndLevel-SpatialatH-14
        Boolean
        BOOLEAN
    h245.programDescriptors  programDescriptors
        Byte array
        OCTET_STRING
    h245.programStream  programStream
        Boolean
        BOOLEAN
    h245.progressiveRefinement  progressiveRefinement
        Boolean
        BOOLEAN
    h245.progressiveRefinementAbortContinuous  progressiveRefinementAbortContinuous
        No value
    h245.progressiveRefinementAbortOne  progressiveRefinementAbortOne
        No value
    h245.progressiveRefinementStart  progressiveRefinementStart
        No value
    h245.protectedCapability  protectedCapability
        Unsigned 32-bit integer
        CapabilityTableEntryNumber
    h245.protectedChannel  protectedChannel
        Unsigned 32-bit integer
        LogicalChannelNumber
    h245.protectedElement  protectedElement
        Unsigned 32-bit integer
        ModeElementType
    h245.protectedPayloadType  protectedPayloadType
        Unsigned 32-bit integer
        INTEGER_0_127
    h245.protectedSessionID  protectedSessionID
        Unsigned 32-bit integer
        INTEGER_1_255
    h245.protocolIdentifier  protocolIdentifier
        Object Identifier
        OBJECT_IDENTIFIER
    h245.q2931Address  q2931Address
        No value
    h245.qOSCapabilities  qOSCapabilities
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_256_OF_QOSCapability
    h245.qcif  qcif
        Boolean
        BOOLEAN
    h245.qcifAdditionalPictureMemory  qcifAdditionalPictureMemory
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.qcifMPI  qcifMPI
        Unsigned 32-bit integer
        INTEGER_1_4
    h245.qoSControlNotSupported  qoSControlNotSupported
        No value
    h245.qosCapability  qosCapability
        No value
    h245.qosClass  qosClass
        Unsigned 32-bit integer
    h245.qosDescriptor  qosDescriptor
        No value
    h245.qosMode  qosMode
        Unsigned 32-bit integer
    h245.qosType  qosType
        Unsigned 32-bit integer
    h245.rangeOfBitRates  rangeOfBitRates
        No value
    h245.rcpcCodeRate  rcpcCodeRate
        Unsigned 32-bit integer
        INTEGER_8_32
    h245.reason  reason
        Unsigned 32-bit integer
        Clc_reason
    h245.receiveAndTransmitAudioCapability  receiveAndTransmitAudioCapability
        Unsigned 32-bit integer
        AudioCapability
    h245.receiveAndTransmitDataApplicationCapability  receiveAndTransmitDataApplicationCapability
        No value
        DataApplicationCapability
    h245.receiveAndTransmitMultiplexedStreamCapability  receiveAndTransmitMultiplexedStreamCapability
        No value
        MultiplexedStreamCapability
    h245.receiveAndTransmitMultipointCapability  receiveAndTransmitMultipointCapability
        No value
        MultipointCapability
    h245.receiveAndTransmitUserInputCapability  receiveAndTransmitUserInputCapability
        Unsigned 32-bit integer
        UserInputCapability
    h245.receiveAndTransmitVideoCapability  receiveAndTransmitVideoCapability
        Unsigned 32-bit integer
        VideoCapability
    h245.receiveAudioCapability  receiveAudioCapability
        Unsigned 32-bit integer
        AudioCapability
    h245.receiveCompression  receiveCompression
        Unsigned 32-bit integer
        CompressionType
    h245.receiveDataApplicationCapability  receiveDataApplicationCapability
        No value
        DataApplicationCapability
    h245.receiveMultiplexedStreamCapability  receiveMultiplexedStreamCapability
        No value
        MultiplexedStreamCapability
    h245.receiveMultipointCapability  receiveMultipointCapability
        No value
        MultipointCapability
    h245.receiveRTPAudioTelephonyEventCapability  receiveRTPAudioTelephonyEventCapability
        No value
        AudioTelephonyEventCapability
    h245.receiveRTPAudioToneCapability  receiveRTPAudioToneCapability
        No value
        AudioToneCapability
    h245.receiveUserInputCapability  receiveUserInputCapability
        Unsigned 32-bit integer
        UserInputCapability
    h245.receiveVideoCapability  receiveVideoCapability
        Unsigned 32-bit integer
        VideoCapability
    h245.reconfiguration  reconfiguration
        No value
    h245.recovery  recovery
        Unsigned 32-bit integer
    h245.recoveryReferencePicture  recoveryReferencePicture
        Unsigned 32-bit integer
        SEQUENCE_OF_PictureReference
    h245.reducedResolutionUpdate  reducedResolutionUpdate
        Boolean
        BOOLEAN
    h245.redundancyEncoding  redundancyEncoding
        Boolean
        BOOLEAN
    h245.redundancyEncodingCap  redundancyEncodingCap
        No value
        RedundancyEncodingCapability
    h245.redundancyEncodingCapability  redundancyEncodingCapability
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_256_OF_RedundancyEncodingCapability
    h245.redundancyEncodingDTMode  redundancyEncodingDTMode
        No value
    h245.redundancyEncodingMethod  redundancyEncodingMethod
        Unsigned 32-bit integer
    h245.redundancyEncodingMode  redundancyEncodingMode
        No value
    h245.refPictureSelection  refPictureSelection
        No value
    h245.referencePicSelect  referencePicSelect
        Boolean
        BOOLEAN
    h245.rej  rej
        No value
    h245.rejCapability  rejCapability
        Boolean
        BOOLEAN
    h245.reject  reject
        Unsigned 32-bit integer
    h245.rejectReason  rejectReason
        Unsigned 32-bit integer
        LogicalChannelRateRejectReason
    h245.rejected  rejected
        Unsigned 32-bit integer
    h245.rejectionDescriptions  rejectionDescriptions
        Unsigned 32-bit integer
        SET_SIZE_1_15_OF_MultiplexEntryRejectionDescriptions
    h245.remoteMCRequest  remoteMCRequest
        Unsigned 32-bit integer
    h245.remoteMCResponse  remoteMCResponse
        Unsigned 32-bit integer
    h245.removeConnection  removeConnection
        No value
        RemoveConnectionReq
    h245.reopen  reopen
        No value
    h245.repeatCount  repeatCount
        Unsigned 32-bit integer
        ME_repeatCount
    h245.replacementFor  replacementFor
        Unsigned 32-bit integer
        LogicalChannelNumber
    h245.replacementForRejected  replacementForRejected
        No value
    h245.request  request
        Unsigned 32-bit integer
        RequestMessage
    h245.requestAllTerminalIDs  requestAllTerminalIDs
        No value
    h245.requestAllTerminalIDsResponse  requestAllTerminalIDsResponse
        No value
    h245.requestChairTokenOwner  requestChairTokenOwner
        No value
    h245.requestChannelClose  requestChannelClose
        No value
    h245.requestChannelCloseAck  requestChannelCloseAck
        No value
    h245.requestChannelCloseReject  requestChannelCloseReject
        No value
    h245.requestChannelCloseRelease  requestChannelCloseRelease
        No value
    h245.requestDenied  requestDenied
        No value
    h245.requestForFloor  requestForFloor
        No value
    h245.requestMode  requestMode
        No value
    h245.requestModeAck  requestModeAck
        No value
    h245.requestModeReject  requestModeReject
        No value
    h245.requestModeRelease  requestModeRelease
        No value
    h245.requestMultiplexEntry  requestMultiplexEntry
        No value
    h245.requestMultiplexEntryAck  requestMultiplexEntryAck
        No value
    h245.requestMultiplexEntryReject  requestMultiplexEntryReject
        No value
    h245.requestMultiplexEntryRelease  requestMultiplexEntryRelease
        No value
    h245.requestTerminalCertificate  requestTerminalCertificate
        No value
    h245.requestTerminalID  requestTerminalID
        No value
        TerminalLabel
    h245.requestType  requestType
        Unsigned 32-bit integer
    h245.requestedInterval  requestedInterval
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.requestedModes  requestedModes
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_256_OF_ModeDescription
    h245.required  required
        No value
    h245.reservationFailure  reservationFailure
        No value
    h245.resizingPartPicFreezeAndRelease  resizingPartPicFreezeAndRelease
        Boolean
        BOOLEAN
    h245.resolution  resolution
        Unsigned 32-bit integer
        H261Resolution
    h245.resourceID  resourceID
        Unsigned 32-bit integer
        INTEGER_0_65535
    h245.response  response
        Unsigned 32-bit integer
        ResponseMessage
    h245.responseCode  responseCode
        Unsigned 32-bit integer
    h245.restriction  restriction
        Unsigned 32-bit integer
    h245.returnedFunction  returnedFunction
        Byte array
    h245.reverseLogicalChannelDependency  reverseLogicalChannelDependency
        Unsigned 32-bit integer
        LogicalChannelNumber
    h245.reverseLogicalChannelNumber  reverseLogicalChannelNumber
        Unsigned 32-bit integer
    h245.reverseLogicalChannelParameters  reverseLogicalChannelParameters
        No value
        OLC_reverseLogicalChannelParameters
    h245.reverseParameters  reverseParameters
        No value
        Cmd_reverseParameters
    h245.rfc2198coding  rfc2198coding
        No value
    h245.rfc2733  rfc2733
        No value
        FECC_rfc2733
    h245.rfc2733Format  rfc2733Format
        Unsigned 32-bit integer
    h245.rfc2733Mode  rfc2733Mode
        No value
    h245.rfc2733diffport  rfc2733diffport
        Unsigned 32-bit integer
        MaxRedundancy
    h245.rfc2733rfc2198  rfc2733rfc2198
        Unsigned 32-bit integer
        MaxRedundancy
    h245.rfc2733sameport  rfc2733sameport
        Unsigned 32-bit integer
        MaxRedundancy
    h245.rfc_number  rfc-number
        Unsigned 32-bit integer
    h245.roundTripDelayRequest  roundTripDelayRequest
        No value
    h245.roundTripDelayResponse  roundTripDelayResponse
        No value
    h245.roundrobin  roundrobin
        No value
    h245.route  route
        Unsigned 32-bit integer
    h245.route_item  route item
        Byte array
        OCTET_STRING_SIZE_4
    h245.routing  routing
        Unsigned 32-bit integer
    h245.rsCodeCapability  rsCodeCapability
        Boolean
        BOOLEAN
    h245.rsCodeCorrection  rsCodeCorrection
        Unsigned 32-bit integer
        INTEGER_0_127
    h245.rsvpParameters  rsvpParameters
        No value
    h245.rtcpVideoControlCapability  rtcpVideoControlCapability
        Boolean
        BOOLEAN
    h245.rtp  rtp
        No value
    h245.rtpAudioRedundancyEncoding  rtpAudioRedundancyEncoding
        No value
    h245.rtpH263VideoRedundancyEncoding  rtpH263VideoRedundancyEncoding
        No value
    h245.rtpPayloadIndication  rtpPayloadIndication
        No value
    h245.rtpPayloadType  rtpPayloadType
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_256_OF_RTPPayloadType
    h245.rtpRedundancyEncoding  rtpRedundancyEncoding
        No value
    h245.sREJ  sREJ
        No value
    h245.sREJCapability  sREJCapability
        Boolean
        BOOLEAN
    h245.sRandom  sRandom
        Unsigned 32-bit integer
        INTEGER_1_4294967295
    h245.samePort  samePort
        Boolean
        BOOLEAN
    h245.sampleSize  sampleSize
        Unsigned 32-bit integer
        INTEGER_1_255
    h245.samplesPerFrame  samplesPerFrame
        Unsigned 32-bit integer
        INTEGER_1_255
    h245.samplesPerLine  samplesPerLine
        Unsigned 32-bit integer
        INTEGER_0_16383
    h245.sbeNumber  sbeNumber
        Unsigned 32-bit integer
        INTEGER_0_9
    h245.scale_x  scale-x
        Unsigned 32-bit integer
        INTEGER_1_255
    h245.scale_y  scale-y
        Unsigned 32-bit integer
        INTEGER_1_255
    h245.scope  scope
        Unsigned 32-bit integer
    h245.scrambled  scrambled
        Boolean
        BOOLEAN
    h245.sebch16_5  sebch16-5
        No value
    h245.sebch16_7  sebch16-7
        No value
    h245.secondary  secondary
        Unsigned 32-bit integer
        SEQUENCE_OF_RedundancyEncodingElement
    h245.secondaryEncoding  secondaryEncoding
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_256_OF_CapabilityTableEntryNumber
    h245.secureChannel  secureChannel
        Boolean
        BOOLEAN
    h245.secureDTMF  secureDTMF
        No value
    h245.securityDenied  securityDenied
        No value
    h245.seenByAll  seenByAll
        No value
    h245.seenByAtLeastOneOther  seenByAtLeastOneOther
        No value
    h245.segmentableFlag  segmentableFlag
        Boolean
        T_h223_lc_segmentableFlag
    h245.segmentationAndReassembly  segmentationAndReassembly
        No value
    h245.semanticError  semanticError
        No value
    h245.sendBufferSize  sendBufferSize
        Unsigned 32-bit integer
        T_al3_sendBufferSize
    h245.sendTerminalCapabilitySet  sendTerminalCapabilitySet
        Unsigned 32-bit integer
    h245.sendThisSource  sendThisSource
        No value
        TerminalLabel
    h245.sendThisSourceResponse  sendThisSourceResponse
        Unsigned 32-bit integer
    h245.separateLANStack  separateLANStack
        No value
    h245.separatePort  separatePort
        Boolean
        BOOLEAN
    h245.separateStack  separateStack
        No value
        NetworkAccessParameters
    h245.separateStackEstablishmentFailed  separateStackEstablishmentFailed
        No value
    h245.separateStream  separateStream
        No value
        T_separateStreamBool
    h245.separateVideoBackChannel  separateVideoBackChannel
        Boolean
        BOOLEAN
    h245.sequenceNumber  sequenceNumber
        Unsigned 32-bit integer
    h245.serviceClass  serviceClass
        Unsigned 32-bit integer
        INTEGER_0_4095
    h245.servicePriority  servicePriority
        No value
    h245.servicePrioritySignalled  servicePrioritySignalled
        Boolean
        BOOLEAN
    h245.servicePriorityValue  servicePriorityValue
        No value
    h245.serviceSubclass  serviceSubclass
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.sessionDependency  sessionDependency
        Unsigned 32-bit integer
        INTEGER_1_255
    h245.sessionDescription  sessionDescription
        String
        BMPString_SIZE_1_128
    h245.sessionID  sessionID
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.sharedSecret  sharedSecret
        Boolean
        BOOLEAN
    h245.shortInterleaver  shortInterleaver
        Boolean
        BOOLEAN
    h245.sidMode0  sidMode0
        Unsigned 32-bit integer
        INTEGER_6_17
    h245.sidMode1  sidMode1
        Unsigned 32-bit integer
        INTEGER_6_17
    h245.signal  signal
        No value
    h245.signalAddress  signalAddress
        Unsigned 32-bit integer
        TransportAddress
    h245.signalType  signalType
        String
    h245.signalUpdate  signalUpdate
        No value
    h245.silenceSuppression  silenceSuppression
        Boolean
        BOOLEAN
    h245.silenceSuppressionHighRate  silenceSuppressionHighRate
        No value
    h245.silenceSuppressionLowRate  silenceSuppressionLowRate
        No value
    h245.simultaneousCapabilities  simultaneousCapabilities
        Unsigned 32-bit integer
        SET_SIZE_1_256_OF_AlternativeCapabilitySet
    h245.singleBitRate  singleBitRate
        Unsigned 32-bit integer
        INTEGER_1_65535
    h245.singleChannel  singleChannel
        Boolean
        BOOLEAN
    h245.skew  skew
        Unsigned 32-bit integer
        INTEGER_0_4095
    h245.skippedFrameCount  skippedFrameCount
        Unsigned 32-bit integer
        INTEGER_0_15
    h245.slave  slave
        No value
    h245.slaveActivate  slaveActivate
        No value
    h245.slaveToMaster  slaveToMaster
        No value
    h245.slicesInOrder_NonRect  slicesInOrder-NonRect
        Boolean
        BOOLEAN
    h245.slicesInOrder_Rect  slicesInOrder-Rect
        Boolean
        BOOLEAN
    h245.slicesNoOrder_NonRect  slicesNoOrder-NonRect
        Boolean
        BOOLEAN
    h245.slicesNoOrder_Rect  slicesNoOrder-Rect
        Boolean
        BOOLEAN
    h245.slowCif16MPI  slowCif16MPI
        Unsigned 32-bit integer
        INTEGER_1_3600
    h245.slowCif4MPI  slowCif4MPI
        Unsigned 32-bit integer
        INTEGER_1_3600
    h245.slowCifMPI  slowCifMPI
        Unsigned 32-bit integer
        INTEGER_1_3600
    h245.slowQcifMPI  slowQcifMPI
        Unsigned 32-bit integer
        INTEGER_1_3600
    h245.slowSqcifMPI  slowSqcifMPI
        Unsigned 32-bit integer
        INTEGER_1_3600
    h245.snrEnhancement  snrEnhancement
        Unsigned 32-bit integer
        SET_SIZE_1_14_OF_EnhancementOptions
    h245.source  source
        No value
        TerminalLabel
    h245.spareReferencePictures  spareReferencePictures
        Boolean
        BOOLEAN
    h245.spatialEnhancement  spatialEnhancement
        Unsigned 32-bit integer
        SET_SIZE_1_14_OF_EnhancementOptions
    h245.specificRequest  specificRequest
        No value
    h245.sqcif  sqcif
        No value
    h245.sqcifAdditionalPictureMemory  sqcifAdditionalPictureMemory
        Unsigned 32-bit integer
        INTEGER_1_256
    h245.sqcifMPI  sqcifMPI
        Unsigned 32-bit integer
        INTEGER_1_32
    h245.srtsClockRecovery  srtsClockRecovery
        Boolean
        BOOLEAN
    h245.standard  standard
        Object Identifier
        T_standardOid
    h245.standardMPI  standardMPI
        Unsigned 32-bit integer
        INTEGER_1_31
    h245.start  start
        No value
    h245.status  status
        Unsigned 32-bit integer
    h245.statusDeterminationNumber  statusDeterminationNumber
        Unsigned 32-bit integer
        INTEGER_0_16777215
    h245.stillImageTransmission  stillImageTransmission
        Boolean
        BOOLEAN
    h245.stop  stop
        No value
    h245.streamDescriptors  streamDescriptors
        Byte array
        OCTET_STRING
    h245.strict  strict
        No value
    h245.structuredDataTransfer  structuredDataTransfer
        Boolean
        BOOLEAN
    h245.subAddress  subAddress
        String
        IA5String_SIZE_1_40
    h245.subChannelID  subChannelID
        Unsigned 32-bit integer
        INTEGER_0_8191
    h245.subElementList  subElementList
        Unsigned 32-bit integer
    h245.subMessageIdentifier  subMessageIdentifier
        Unsigned 32-bit integer
    h245.subPictureNumber  subPictureNumber
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.subPictureRemovalParameters  subPictureRemovalParameters
        No value
    h245.subaddress  subaddress
        Byte array
        OCTET_STRING_SIZE_1_20
    h245.substituteConferenceIDCommand  substituteConferenceIDCommand
        No value
    h245.supersedes  supersedes
        Unsigned 32-bit integer
        SEQUENCE_OF_ParameterIdentifier
    h245.suspendResume  suspendResume
        Unsigned 32-bit integer
    h245.suspendResumeCapabilitywAddress  suspendResumeCapabilitywAddress
        Boolean
        BOOLEAN
    h245.suspendResumeCapabilitywoAddress  suspendResumeCapabilitywoAddress
        Boolean
        BOOLEAN
    h245.suspendResumewAddress  suspendResumewAddress
        No value
    h245.suspendResumewoAddress  suspendResumewoAddress
        No value
    h245.switchReceiveMediaOff  switchReceiveMediaOff
        No value
    h245.switchReceiveMediaOn  switchReceiveMediaOn
        No value
    h245.synchFlag  synchFlag
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.synchronized  synchronized
        No value
    h245.syntaxError  syntaxError
        No value
    h245.systemLoop  systemLoop
        No value
    h245.t120  t120
        Unsigned 32-bit integer
        DataProtocolCapability
    h245.t120DynamicPortCapability  t120DynamicPortCapability
        Boolean
        BOOLEAN
    h245.t120SetupProcedure  t120SetupProcedure
        Unsigned 32-bit integer
    h245.t140  t140
        Unsigned 32-bit integer
        DataProtocolCapability
    h245.t30fax  t30fax
        Unsigned 32-bit integer
        DataProtocolCapability
    h245.t35CountryCode  t35CountryCode
        Unsigned 32-bit integer
    h245.t35Extension  t35Extension
        Unsigned 32-bit integer
    h245.t38FaxMaxBuffer  t38FaxMaxBuffer
        Signed 32-bit integer
        INTEGER
    h245.t38FaxMaxDatagram  t38FaxMaxDatagram
        Signed 32-bit integer
        INTEGER
    h245.t38FaxProfile  t38FaxProfile
        No value
    h245.t38FaxProtocol  t38FaxProtocol
        Unsigned 32-bit integer
        DataProtocolCapability
    h245.t38FaxRateManagement  t38FaxRateManagement
        Unsigned 32-bit integer
    h245.t38FaxTcpOptions  t38FaxTcpOptions
        No value
    h245.t38FaxUdpEC  t38FaxUdpEC
        Unsigned 32-bit integer
    h245.t38FaxUdpOptions  t38FaxUdpOptions
        No value
    h245.t38TCPBidirectionalMode  t38TCPBidirectionalMode
        Boolean
        BOOLEAN
    h245.t38UDPFEC  t38UDPFEC
        No value
    h245.t38UDPRedundancy  t38UDPRedundancy
        No value
    h245.t38fax  t38fax
        No value
    h245.t434  t434
        Unsigned 32-bit integer
        DataProtocolCapability
    h245.t84  t84
        No value
    h245.t84Profile  t84Profile
        Unsigned 32-bit integer
    h245.t84Protocol  t84Protocol
        Unsigned 32-bit integer
        DataProtocolCapability
    h245.t84Restricted  t84Restricted
        No value
    h245.t84Unrestricted  t84Unrestricted
        No value
    h245.tableEntryCapacityExceeded  tableEntryCapacityExceeded
        Unsigned 32-bit integer
    h245.tcp  tcp
        No value
    h245.telephonyMode  telephonyMode
        No value
    h245.temporalReference  temporalReference
        Unsigned 32-bit integer
        INTEGER_0_1023
    h245.temporalSpatialTradeOffCapability  temporalSpatialTradeOffCapability
        Boolean
        BOOLEAN
    h245.terminalCapabilitySet  terminalCapabilitySet
        No value
    h245.terminalCapabilitySetAck  terminalCapabilitySetAck
        No value
    h245.terminalCapabilitySetReject  terminalCapabilitySetReject
        No value
    h245.terminalCapabilitySetRelease  terminalCapabilitySetRelease
        No value
    h245.terminalCertificateResponse  terminalCertificateResponse
        No value
    h245.terminalDropReject  terminalDropReject
        No value
    h245.terminalID  terminalID
        Byte array
    h245.terminalIDResponse  terminalIDResponse
        No value
    h245.terminalInformation  terminalInformation
        Unsigned 32-bit integer
        SEQUENCE_OF_TerminalInformation
    h245.terminalJoinedConference  terminalJoinedConference
        No value
        TerminalLabel
    h245.terminalLabel  terminalLabel
        No value
    h245.terminalLeftConference  terminalLeftConference
        No value
        TerminalLabel
    h245.terminalListRequest  terminalListRequest
        No value
    h245.terminalListResponse  terminalListResponse
        Unsigned 32-bit integer
        SET_SIZE_1_256_OF_TerminalLabel
    h245.terminalNumber  terminalNumber
        Unsigned 32-bit integer
    h245.terminalNumberAssign  terminalNumberAssign
        No value
        TerminalLabel
    h245.terminalOnHold  terminalOnHold
        No value
    h245.terminalType  terminalType
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.terminalYouAreSeeing  terminalYouAreSeeing
        No value
        TerminalLabel
    h245.terminalYouAreSeeingInSubPictureNumber  terminalYouAreSeeingInSubPictureNumber
        No value
    h245.threadNumber  threadNumber
        Unsigned 32-bit integer
        INTEGER_0_15
    h245.threeChannels2_1  threeChannels2-1
        Boolean
        BOOLEAN
    h245.threeChannels3_0  threeChannels3-0
        Boolean
        BOOLEAN
    h245.timestamp  timestamp
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    h245.toLevel0  toLevel0
        No value
    h245.toLevel1  toLevel1
        No value
    h245.toLevel2  toLevel2
        No value
    h245.toLevel2withOptionalHeader  toLevel2withOptionalHeader
        No value
    h245.tokenRate  tokenRate
        Unsigned 32-bit integer
        INTEGER_1_4294967295
    h245.transcodingJBIG  transcodingJBIG
        Boolean
        BOOLEAN
    h245.transcodingMMR  transcodingMMR
        Boolean
        BOOLEAN
    h245.transferMode  transferMode
        Unsigned 32-bit integer
    h245.transferredTCF  transferredTCF
        No value
    h245.transmitAndReceiveCompression  transmitAndReceiveCompression
        Unsigned 32-bit integer
        CompressionType
    h245.transmitAudioCapability  transmitAudioCapability
        Unsigned 32-bit integer
        AudioCapability
    h245.transmitCompression  transmitCompression
        Unsigned 32-bit integer
        CompressionType
    h245.transmitDataApplicationCapability  transmitDataApplicationCapability
        No value
        DataApplicationCapability
    h245.transmitMultiplexedStreamCapability  transmitMultiplexedStreamCapability
        No value
        MultiplexedStreamCapability
    h245.transmitMultipointCapability  transmitMultipointCapability
        No value
        MultipointCapability
    h245.transmitUserInputCapability  transmitUserInputCapability
        Unsigned 32-bit integer
        UserInputCapability
    h245.transmitVideoCapability  transmitVideoCapability
        Unsigned 32-bit integer
        VideoCapability
    h245.transparencyParameters  transparencyParameters
        No value
    h245.transparent  transparent
        No value
    h245.transport  transport
        Unsigned 32-bit integer
        DataProtocolCapability
    h245.transportCapability  transportCapability
        No value
    h245.transportStream  transportStream
        Boolean
        BOOLEAN
    h245.transportWithI_frames  transportWithI-frames
        Boolean
        BOOLEAN
    h245.tsapIdentifier  tsapIdentifier
        Unsigned 32-bit integer
    h245.twoChannelDual  twoChannelDual
        No value
    h245.twoChannelStereo  twoChannelStereo
        No value
    h245.twoChannels  twoChannels
        Boolean
        BOOLEAN
    h245.twoOctetAddressFieldCapability  twoOctetAddressFieldCapability
        Boolean
        BOOLEAN
    h245.type  type
        Unsigned 32-bit integer
        Avb_type
    h245.typeIArq  typeIArq
        No value
        H223AnnexCArqParameters
    h245.typeIIArq  typeIIArq
        No value
        H223AnnexCArqParameters
    h245.uIH  uIH
        Boolean
        BOOLEAN
    h245.uNERM  uNERM
        No value
    h245.udp  udp
        No value
    h245.uihCapability  uihCapability
        Boolean
        BOOLEAN
    h245.undefinedReason  undefinedReason
        No value
    h245.undefinedTableEntryUsed  undefinedTableEntryUsed
        No value
    h245.unframed  unframed
        No value
    h245.unicast  unicast
        No value
    h245.unicastAddress  unicastAddress
        Unsigned 32-bit integer
    h245.unknown  unknown
        No value
    h245.unknownDataType  unknownDataType
        No value
    h245.unknownFunction  unknownFunction
        No value
    h245.unlimitedMotionVectors  unlimitedMotionVectors
        Boolean
        BOOLEAN
    h245.unrestrictedVector  unrestrictedVector
        Boolean
        BOOLEAN
    h245.unsigned32Max  unsigned32Max
        Unsigned 32-bit integer
    h245.unsigned32Min  unsigned32Min
        Unsigned 32-bit integer
    h245.unsignedMax  unsignedMax
        Unsigned 32-bit integer
    h245.unsignedMin  unsignedMin
        Unsigned 32-bit integer
    h245.unspecified  unspecified
        No value
    h245.unspecifiedCause  unspecifiedCause
        No value
    h245.unsuitableReverseParameters  unsuitableReverseParameters
        No value
    h245.untilClosingFlag  untilClosingFlag
        No value
    h245.user  user
        No value
    h245.userData  userData
        Unsigned 32-bit integer
        DataProtocolCapability
    h245.userInput  userInput
        Unsigned 32-bit integer
        UserInputIndication
    h245.userInputSupportIndication  userInputSupportIndication
        Unsigned 32-bit integer
    h245.userRejected  userRejected
        No value
    h245.uuid  uuid
        Byte array
        OCTET_STRING_SIZE_16
    h245.v120  v120
        No value
    h245.v140  v140
        No value
    h245.v14buffered  v14buffered
        No value
    h245.v34DSVD  v34DSVD
        No value
    h245.v34DuplexFAX  v34DuplexFAX
        No value
    h245.v34H324  v34H324
        No value
    h245.v42bis  v42bis
        No value
    h245.v42lapm  v42lapm
        No value
    h245.v75Capability  v75Capability
        No value
    h245.v75Parameters  v75Parameters
        No value
    h245.v76Capability  v76Capability
        No value
    h245.v76LogicalChannelParameters  v76LogicalChannelParameters
        No value
    h245.v76ModeParameters  v76ModeParameters
        Unsigned 32-bit integer
    h245.v76wCompression  v76wCompression
        Unsigned 32-bit integer
    h245.v8bis  v8bis
        No value
    h245.value  value
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.variable_delta  variable-delta
        Boolean
        BOOLEAN
    h245.vbd  vbd
        No value
        VBDCapability
    h245.vbvBufferSize  vbvBufferSize
        Unsigned 32-bit integer
        INTEGER_0_262143
    h245.vcCapability  vcCapability
        Unsigned 32-bit integer
        SET_OF_VCCapability
    h245.vendor  vendor
        Unsigned 32-bit integer
        NonStandardIdentifier
    h245.vendorIdentification  vendorIdentification
        No value
    h245.version  version
        Unsigned 32-bit integer
        INTEGER_0_255
    h245.versionNumber  versionNumber
        String
        OCTET_STRING_SIZE_1_256
    h245.videoBackChannelSend  videoBackChannelSend
        Unsigned 32-bit integer
    h245.videoBadMBs  videoBadMBs
        No value
    h245.videoBadMBsCap  videoBadMBsCap
        Boolean
        BOOLEAN
    h245.videoBitRate  videoBitRate
        Unsigned 32-bit integer
        INTEGER_0_1073741823
    h245.videoCapability  videoCapability
        Unsigned 32-bit integer
        SEQUENCE_OF_VideoCapability
    h245.videoCapabilityExtension  videoCapabilityExtension
        Unsigned 32-bit integer
        SEQUENCE_OF_GenericCapability
    h245.videoCommandReject  videoCommandReject
        No value
    h245.videoData  videoData
        Unsigned 32-bit integer
        VideoCapability
    h245.videoFastUpdateGOB  videoFastUpdateGOB
        No value
    h245.videoFastUpdateMB  videoFastUpdateMB
        No value
    h245.videoFastUpdatePicture  videoFastUpdatePicture
        No value
    h245.videoFreezePicture  videoFreezePicture
        No value
    h245.videoIndicateCompose  videoIndicateCompose
        No value
    h245.videoIndicateMixingCapability  videoIndicateMixingCapability
        Boolean
        BOOLEAN
    h245.videoIndicateReadyToActivate  videoIndicateReadyToActivate
        No value
    h245.videoMode  videoMode
        Unsigned 32-bit integer
    h245.videoMux  videoMux
        Boolean
        BOOLEAN
    h245.videoNotDecodedMBs  videoNotDecodedMBs
        No value
    h245.videoSegmentTagging  videoSegmentTagging
        Boolean
        BOOLEAN
    h245.videoSendSyncEveryGOB  videoSendSyncEveryGOB
        No value
    h245.videoSendSyncEveryGOBCancel  videoSendSyncEveryGOBCancel
        No value
    h245.videoTemporalSpatialTradeOff  videoTemporalSpatialTradeOff
        Unsigned 32-bit integer
        INTEGER_0_31
    h245.videoWithAL1  videoWithAL1
        Boolean
        BOOLEAN
    h245.videoWithAL1M  videoWithAL1M
        Boolean
        BOOLEAN
    h245.videoWithAL2  videoWithAL2
        Boolean
        BOOLEAN
    h245.videoWithAL2M  videoWithAL2M
        Boolean
        BOOLEAN
    h245.videoWithAL3  videoWithAL3
        Boolean
        BOOLEAN
    h245.videoWithAL3M  videoWithAL3M
        Boolean
        BOOLEAN
    h245.waitForCall  waitForCall
        No value
    h245.waitForCommunicationMode  waitForCommunicationMode
        No value
    h245.wholeMultiplex  wholeMultiplex
        No value
    h245.width  width
        Unsigned 32-bit integer
        INTEGER_1_255
    h245.willTransmitLessPreferredMode  willTransmitLessPreferredMode
        No value
    h245.willTransmitMostPreferredMode  willTransmitMostPreferredMode
        No value
    h245.windowSize  windowSize
        Unsigned 32-bit integer
        INTEGER_1_127
    h245.withdrawChairToken  withdrawChairToken
        No value
    h245.zeroDelay  zeroDelay
        No value

MULTIPOINT-COMMUNICATION-SERVICE T.125 (t125)

    t125.ChannelAttributes  ChannelAttributes
        Unsigned 32-bit integer
    t125.ChannelId  ChannelId
        Unsigned 32-bit integer
    t125.ConnectMCSPDU  ConnectMCSPDU
        Unsigned 32-bit integer
    t125.TokenAttributes  TokenAttributes
        Unsigned 32-bit integer
    t125.TokenId  TokenId
        Unsigned 32-bit integer
    t125.UserId  UserId
        Unsigned 32-bit integer
    t125.admitted  admitted
        Unsigned 32-bit integer
        SET_OF_UserId
    t125.assigned  assigned
        No value
    t125.attachUserConfirm  attachUserConfirm
        No value
    t125.attachUserRequest  attachUserRequest
        No value
    t125.begin  begin
        Boolean
    t125.calledConnectId  calledConnectId
        Unsigned 32-bit integer
        INTEGER_0_MAX
    t125.calledDomainSelector  calledDomainSelector
        Byte array
        OCTET_STRING
    t125.callingDomainSelector  callingDomainSelector
        Byte array
        OCTET_STRING
    t125.channelAdmitIndication  channelAdmitIndication
        No value
    t125.channelAdmitRequest  channelAdmitRequest
        No value
    t125.channelConveneConfirm  channelConveneConfirm
        No value
    t125.channelConveneRequest  channelConveneRequest
        No value
    t125.channelDisbandIndication  channelDisbandIndication
        No value
    t125.channelDisbandRequest  channelDisbandRequest
        No value
    t125.channelExpelIndication  channelExpelIndication
        No value
    t125.channelExpelRequest  channelExpelRequest
        No value
    t125.channelId  channelId
        Unsigned 32-bit integer
        StaticChannelId
    t125.channelIds  channelIds
        Unsigned 32-bit integer
        SET_OF_ChannelId
    t125.channelJoinConfirm  channelJoinConfirm
        No value
    t125.channelJoinRequest  channelJoinRequest
        No value
    t125.channelLeaveRequest  channelLeaveRequest
        No value
    t125.connect_additional  connect-additional
        No value
    t125.connect_initial  connect-initial
        No value
    t125.connect_response  connect-response
        No value
    t125.connect_result  connect-result
        No value
    t125.dataPriority  dataPriority
        Unsigned 32-bit integer
    t125.detachUserIds  detachUserIds
        Unsigned 32-bit integer
        SET_OF_UserId
    t125.detachUserIndication  detachUserIndication
        No value
    t125.detachUserRequest  detachUserRequest
        No value
    t125.diagnostic  diagnostic
        Unsigned 32-bit integer
    t125.disconnectProviderUltimatum  disconnectProviderUltimatum
        No value
    t125.domainParameters  domainParameters
        No value
    t125.end  end
        Boolean
    t125.erectDomainRequest  erectDomainRequest
        No value
    t125.given  given
        No value
    t125.giving  giving
        No value
    t125.grabbed  grabbed
        No value
    t125.grabber  grabber
        Unsigned 32-bit integer
        UserId
    t125.heightLimit  heightLimit
        Unsigned 32-bit integer
        INTEGER_0_MAX
    t125.inhibited  inhibited
        No value
    t125.inhibitors  inhibitors
        Unsigned 32-bit integer
        SET_OF_UserId
    t125.initialOctets  initialOctets
        Byte array
        OCTET_STRING
    t125.initiator  initiator
        Unsigned 32-bit integer
        UserId
    t125.joined  joined
        Boolean
        BOOLEAN
    t125.manager  manager
        Unsigned 32-bit integer
        UserId
    t125.maxChannelIds  maxChannelIds
        Unsigned 32-bit integer
        INTEGER_0_MAX
    t125.maxHeight  maxHeight
        Unsigned 32-bit integer
        INTEGER_0_MAX
    t125.maxMCSPDUsize  maxMCSPDUsize
        Unsigned 32-bit integer
        INTEGER_0_MAX
    t125.maxTokenIds  maxTokenIds
        Unsigned 32-bit integer
        INTEGER_0_MAX
    t125.maxUserIds  maxUserIds
        Unsigned 32-bit integer
        INTEGER_0_MAX
    t125.maximumParameters  maximumParameters
        No value
        DomainParameters
    t125.mergeChannels  mergeChannels
        Unsigned 32-bit integer
        SET_OF_ChannelAttributes
    t125.mergeChannelsConfirm  mergeChannelsConfirm
        No value
    t125.mergeChannelsRequest  mergeChannelsRequest
        No value
    t125.mergeTokens  mergeTokens
        Unsigned 32-bit integer
        SET_OF_TokenAttributes
    t125.mergeTokensConfirm  mergeTokensConfirm
        No value
    t125.mergeTokensRequest  mergeTokensRequest
        No value
    t125.minThroughput  minThroughput
        Unsigned 32-bit integer
        INTEGER_0_MAX
    t125.minimumParameters  minimumParameters
        No value
        DomainParameters
    t125.numPriorities  numPriorities
        Unsigned 32-bit integer
        INTEGER_0_MAX
    t125.plumbDomainIndication  plumbDomainIndication
        No value
    t125.private  private
        No value
    t125.protocolVersion  protocolVersion
        Unsigned 32-bit integer
        INTEGER_0_MAX
    t125.purgeChannelIds  purgeChannelIds
        Unsigned 32-bit integer
        SET_OF_ChannelId
    t125.purgeChannelsIndication  purgeChannelsIndication
        No value
    t125.purgeTokenIds  purgeTokenIds
        Unsigned 32-bit integer
        SET_OF_TokenId
    t125.purgeTokensIndication  purgeTokensIndication
        No value
    t125.reason  reason
        Unsigned 32-bit integer
    t125.recipient  recipient
        Unsigned 32-bit integer
        UserId
    t125.rejectMCSPDUUltimatum  rejectMCSPDUUltimatum
        No value
    t125.requested  requested
        Unsigned 32-bit integer
        ChannelId
    t125.result  result
        Unsigned 32-bit integer
    t125.segmentation  segmentation
        Byte array
    t125.sendDataIndication  sendDataIndication
        No value
    t125.sendDataRequest  sendDataRequest
        No value
    t125.static  static
        No value
    t125.subHeight  subHeight
        Unsigned 32-bit integer
        INTEGER_0_MAX
    t125.subInterval  subInterval
        Unsigned 32-bit integer
        INTEGER_0_MAX
    t125.targetParameters  targetParameters
        No value
        DomainParameters
    t125.tokenGiveConfirm  tokenGiveConfirm
        No value
    t125.tokenGiveIndication  tokenGiveIndication
        No value
    t125.tokenGiveRequest  tokenGiveRequest
        No value
    t125.tokenGiveResponse  tokenGiveResponse
        No value
    t125.tokenGrabConfirm  tokenGrabConfirm
        No value
    t125.tokenGrabRequest  tokenGrabRequest
        No value
    t125.tokenId  tokenId
        Unsigned 32-bit integer
    t125.tokenInhibitConfirm  tokenInhibitConfirm
        No value
    t125.tokenInhibitRequest  tokenInhibitRequest
        No value
    t125.tokenPleaseIndication  tokenPleaseIndication
        No value
    t125.tokenPleaseRequest  tokenPleaseRequest
        No value
    t125.tokenReleaseConfirm  tokenReleaseConfirm
        No value
    t125.tokenReleaseRequest  tokenReleaseRequest
        No value
    t125.tokenStatus  tokenStatus
        Unsigned 32-bit integer
    t125.tokenTestConfirm  tokenTestConfirm
        No value
    t125.tokenTestRequest  tokenTestRequest
        No value
    t125.ungivable  ungivable
        No value
    t125.uniformSendDataIndication  uniformSendDataIndication
        No value
    t125.uniformSendDataRequest  uniformSendDataRequest
        No value
    t125.upwardFlag  upwardFlag
        Boolean
        BOOLEAN
    t125.userData  userData
        Byte array
        OCTET_STRING
    t125.userId  userId
        No value
    t125.userIds  userIds
        Unsigned 32-bit integer
        SET_OF_UserId

Malformed Packet (malformed)

Media Gateway Control Protocol (mgcp)

    mgcp.dup  Duplicate Message
        Unsigned 32-bit integer
    mgcp.messagecount  MGCP Message Count
        Unsigned 32-bit integer
        Number of MGCP message in a packet
    mgcp.param.bearerinfo  BearerInformation (B)
        String
        Bearer Information
    mgcp.param.callid  CallId (C)
        String
        Call Id
    mgcp.param.capabilities  Capabilities (A)
        String
        Capabilities
    mgcp.param.connectionid  ConnectionIdentifier (I)
        String
        Connection Identifier
    mgcp.param.connectionmode  ConnectionMode (M)
        String
        Connection Mode
    mgcp.param.connectionparam  ConnectionParameters (P)
        String
        Connection Parameters
    mgcp.param.connectionparam.ji  Jitter (JI)
        Unsigned 32-bit integer
        Average inter-packet arrival jitter in milliseconds (P:JI)
    mgcp.param.connectionparam.la  Latency (LA)
        Unsigned 32-bit integer
        Average latency in milliseconds (P:LA)
    mgcp.param.connectionparam.or  Octets received (OR)
        Unsigned 32-bit integer
        Octets received (P:OR)
    mgcp.param.connectionparam.os  Octets sent (OS)
        Unsigned 32-bit integer
        Octets sent (P:OS)
    mgcp.param.connectionparam.pcrji  Remote Jitter (PC/RJI)
        Unsigned 32-bit integer
        Remote Jitter (P:PC/RJI)
    mgcp.param.connectionparam.pcros  Remote Octets sent (PC/ROS)
        Unsigned 32-bit integer
        Remote Octets sent (P:PC/ROS)
    mgcp.param.connectionparam.pcrpl  Remote Packets lost (PC/RPL)
        Unsigned 32-bit integer
        Remote Packets lost (P:PC/RPL)
    mgcp.param.connectionparam.pcrps  Remote Packets sent (PC/RPS)
        Unsigned 32-bit integer
        Remote Packets sent (P:PC/RPS)
    mgcp.param.connectionparam.pl  Packets lost (PL)
        Unsigned 32-bit integer
        Packets lost (P:PL)
    mgcp.param.connectionparam.pr  Packets received (PR)
        Unsigned 32-bit integer
        Packets received (P:PR)
    mgcp.param.connectionparam.ps  Packets sent (PS)
        Unsigned 32-bit integer
        Packets sent (P:PS)
    mgcp.param.connectionparam.x  Vendor Extension
        String
        Vendor Extension (P:X-*)
    mgcp.param.detectedevents  DetectedEvents (T)
        String
        Detected Events
    mgcp.param.digitmap  DigitMap (D)
        String
        Digit Map
    mgcp.param.eventstates  EventStates (ES)
        String
        Event States
    mgcp.param.extension  Extension Parameter (non-critical)
        String
        Extension Parameter
    mgcp.param.extensioncritical  Extension Parameter (critical)
        String
        Critical Extension Parameter
    mgcp.param.invalid  Invalid Parameter
        String
    mgcp.param.localconnectionoptions  LocalConnectionOptions (L)
        String
        Local Connection Options
    mgcp.param.localconnectionoptions.a  Codecs (a)
        String
        Codecs
    mgcp.param.localconnectionoptions.b  Bandwidth (b)
        String
        Bandwidth
    mgcp.param.localconnectionoptions.dqgi  D-QoS GateID (dq-gi)
        String
        D-QoS GateID
    mgcp.param.localconnectionoptions.dqrd  D-QoS Reserve Destination (dq-rd)
        String
        D-QoS Reserve Destination
    mgcp.param.localconnectionoptions.dqri  D-QoS Resource ID (dq-ri)
        String
        D-QoS Resource ID
    mgcp.param.localconnectionoptions.dqrr  D-QoS Resource Reservation (dq-rr)
        String
        D-QoS Resource Reservation
    mgcp.param.localconnectionoptions.e  Echo Cancellation (e)
        String
        Echo Cancellation
    mgcp.param.localconnectionoptions.esccd  Content Destination (es-ccd)
        String
        Content Destination
    mgcp.param.localconnectionoptions.escci  Content Identifier (es-cci)
        String
        Content Identifier
    mgcp.param.localconnectionoptions.fmtp  Media Format (fmtp)
        String
        Media Format
    mgcp.param.localconnectionoptions.gc  Gain Control (gc)
        Unsigned 32-bit integer
        Gain Control
    mgcp.param.localconnectionoptions.k  Encryption Key (k)
        String
        Encryption Key
    mgcp.param.localconnectionoptions.nt  Network Type (nt)
        String
        Network Type
    mgcp.param.localconnectionoptions.ofmtp  Optional Media Format (o-fmtp)
        String
        Optional Media Format
    mgcp.param.localconnectionoptions.p  Packetization period (p)
        Unsigned 32-bit integer
        Packetization period
    mgcp.param.localconnectionoptions.r  Resource Reservation (r)
        String
        Resource Reservation
    mgcp.param.localconnectionoptions.rcnf  Reservation Confirmation (r-cnf)
        String
        Reservation Confirmation
    mgcp.param.localconnectionoptions.rdir  Reservation Direction (r-dir)
        String
        Reservation Direction
    mgcp.param.localconnectionoptions.rsh  Resource Sharing (r-sh)
        String
        Resource Sharing
    mgcp.param.localconnectionoptions.s  Silence Suppression (s)
        String
        Silence Suppression
    mgcp.param.localconnectionoptions.scrtcp  RTCP ciphersuite (sc-rtcp)
        String
        RTCP ciphersuite
    mgcp.param.localconnectionoptions.scrtp  RTP ciphersuite (sc-rtp)
        String
        RTP ciphersuite
    mgcp.param.localconnectionoptions.t  Type of Service (r)
        String
        Type of Service
    mgcp.param.maxmgcpdatagram  MaxMGCPDatagram (MD)
        String
        Maximum MGCP Datagram size
    mgcp.param.notifiedentity  NotifiedEntity (N)
        String
        Notified Entity
    mgcp.param.observedevents  ObservedEvents (O)
        String
        Observed Events
    mgcp.param.packagelist  PackageList (PL)
        String
        Package List
    mgcp.param.quarantinehandling  QuarantineHandling (Q)
        String
        Quarantine Handling
    mgcp.param.reasoncode  ReasonCode (E)
        String
        Reason Code
    mgcp.param.reqevents  RequestedEvents (R)
        String
        Requested Events
    mgcp.param.reqinfo  RequestedInfo (F)
        String
        Requested Info
    mgcp.param.requestid  RequestIdentifier (X)
        String
        Request Identifier
    mgcp.param.restartdelay  RestartDelay (RD)
        String
        Restart Delay
    mgcp.param.restartmethod  RestartMethod (RM)
        String
        Restart Method
    mgcp.param.rspack  ResponseAck (K)
        String
        Response Ack
    mgcp.param.secondconnectionid  SecondConnectionID (I2)
        String
        Second Connection Identifier
    mgcp.param.secondendpointid  SecondEndpointID (Z2)
        String
        Second Endpoint ID
    mgcp.param.signalreq  SignalRequests (S)
        String
        Signal Request
    mgcp.param.specificendpointid  SpecificEndpointID (Z)
        String
        Specific Endpoint ID
    mgcp.params  Parameters
        No value
        MGCP parameters
    mgcp.req  Request
        Boolean
        True if MGCP request
    mgcp.req.dup  Duplicate Request
        Unsigned 32-bit integer
    mgcp.req.dup.frame  Original Request Frame
        Frame number
        Frame containing original request
    mgcp.req.endpoint  Endpoint
        String
        Endpoint referenced by the message
    mgcp.req.verb  Verb
        String
        Name of the verb
    mgcp.reqframe  Request Frame
        Frame number
    mgcp.rsp  Response
        Boolean
        TRUE if MGCP response
    mgcp.rsp.dup  Duplicate Response
        Unsigned 32-bit integer
    mgcp.rsp.dup.frame  Original Response Frame
        Frame number
        Frame containing original response
    mgcp.rsp.rspcode  Response Code
        Unsigned 32-bit integer
    mgcp.rsp.rspstring  Response String
        String
    mgcp.rspframe  Response Frame
        Frame number
    mgcp.time  Time from request
        Time duration
        Timedelta between Request and Response
    mgcp.transid  Transaction ID
        String
        Transaction ID of this message
    mgcp.version  Version
        String
        MGCP Version

Media Server Control Markup Language - draft 07 (mscml)

    mscml.activetalkers  activetalkers
        String
    mscml.activetalkers.interval  interval
        String
    mscml.activetalkers.report  report
        String
    mscml.activetalkers.talker  talker
        String
    mscml.activetalkers.talker.callid  callid
        String
    mscml.audio  audio
        String
    mscml.audio.encoding  encoding
        String
    mscml.audio.gain  gain
        String
    mscml.audio.gaindelta  gaindelta
        String
    mscml.audio.rate  rate
        String
    mscml.audio.ratedelta  ratedelta
        String
    mscml.audio.url  url
        String
    mscml.auto  auto
        String
    mscml.auto.silencethreshold  silencethreshold
        String
    mscml.auto.startlevel  startlevel
        String
    mscml.auto.targetlevel  targetlevel
        String
    mscml.conference  conference
        String
    mscml.conference.activetalkers  activetalkers
        String
    mscml.conference.activetalkers.interval  interval
        String
    mscml.conference.activetalkers.report  report
        String
    mscml.conference.activetalkers.talker  talker
        String
    mscml.conference.activetalkers.talker.callid  callid
        String
    mscml.conference.numtalkers  numtalkers
        String
    mscml.conference.uniqueid  uniqueid
        String
    mscml.configure_conference  configure_conference
        String
    mscml.configure_conference.id  id
        String
    mscml.configure_conference.reserveconfmedia  reserveconfmedia
        String
    mscml.configure_conference.reservedtalkers  reservedtalkers
        String
    mscml.configure_conference.subscribe  subscribe
        String
    mscml.configure_conference.subscribe.events  events
        String
    mscml.configure_conference.subscribe.events.activetalkers  activetalkers
        String
    mscml.configure_conference.subscribe.events.activetalkers.interval  interval
        String
    mscml.configure_conference.subscribe.events.activetalkers.report  report
        String
    mscml.configure_conference.subscribe.events.activetalkers.talker  talker
        String
    mscml.configure_conference.subscribe.events.activetalkers.talker.callid  callid
        String
    mscml.configure_conference.subscribe.events.keypress  keypress
        String
    mscml.configure_conference.subscribe.events.keypress.digit  digit
        String
    mscml.configure_conference.subscribe.events.keypress.interdigittime  interdigittime
        String
    mscml.configure_conference.subscribe.events.keypress.length  length
        String
    mscml.configure_conference.subscribe.events.keypress.maskdigits  maskdigits
        String
    mscml.configure_conference.subscribe.events.keypress.method  method
        String
    mscml.configure_conference.subscribe.events.keypress.report  report
        String
    mscml.configure_conference.subscribe.events.keypress.status  status
        String
    mscml.configure_conference.subscribe.events.keypress.status.command  command
        String
    mscml.configure_conference.subscribe.events.keypress.status.duration  duration
        String
    mscml.configure_conference.subscribe.events.signal  signal
        String
    mscml.configure_conference.subscribe.events.signal.report  report
        String
    mscml.configure_conference.subscribe.events.signal.type  type
        String
    mscml.configure_leg  configure_leg
        String
    mscml.configure_leg.configure_team  configure_team
        String
    mscml.configure_leg.configure_team.action  action
        String
    mscml.configure_leg.configure_team.id  id
        String
    mscml.configure_leg.configure_team.teammate  teammate
        String
    mscml.configure_leg.configure_team.teammate.id  id
        String
    mscml.configure_leg.dtmfclamp  dtmfclamp
        String
    mscml.configure_leg.id  id
        String
    mscml.configure_leg.inputgain  inputgain
        String
    mscml.configure_leg.inputgain.auto  auto
        String
    mscml.configure_leg.inputgain.auto.silencethreshold  silencethreshold
        String
    mscml.configure_leg.inputgain.auto.startlevel  startlevel
        String
    mscml.configure_leg.inputgain.auto.targetlevel  targetlevel
        String
    mscml.configure_leg.inputgain.fixed  fixed
        String
    mscml.configure_leg.inputgain.fixed.level  level
        String
    mscml.configure_leg.mixmode  mixmode
        String
    mscml.configure_leg.outputgain  outputgain
        String
    mscml.configure_leg.outputgain.auto  auto
        String
    mscml.configure_leg.outputgain.auto.silencethreshold  silencethreshold
        String
    mscml.configure_leg.outputgain.auto.startlevel  startlevel
        String
    mscml.configure_leg.outputgain.auto.targetlevel  targetlevel
        String
    mscml.configure_leg.outputgain.fixed  fixed
        String
    mscml.configure_leg.outputgain.fixed.level  level
        String
    mscml.configure_leg.subscribe  subscribe
        String
    mscml.configure_leg.subscribe.events  events
        String
    mscml.configure_leg.subscribe.events.activetalkers  activetalkers
        String
    mscml.configure_leg.subscribe.events.activetalkers.interval  interval
        String
    mscml.configure_leg.subscribe.events.activetalkers.report  report
        String
    mscml.configure_leg.subscribe.events.activetalkers.talker  talker
        String
    mscml.configure_leg.subscribe.events.activetalkers.talker.callid  callid
        String
    mscml.configure_leg.subscribe.events.keypress  keypress
        String
    mscml.configure_leg.subscribe.events.keypress.digit  digit
        String
    mscml.configure_leg.subscribe.events.keypress.interdigittime  interdigittime
        String
    mscml.configure_leg.subscribe.events.keypress.length  length
        String
    mscml.configure_leg.subscribe.events.keypress.maskdigits  maskdigits
        String
    mscml.configure_leg.subscribe.events.keypress.method  method
        String
    mscml.configure_leg.subscribe.events.keypress.report  report
        String
    mscml.configure_leg.subscribe.events.keypress.status  status
        String
    mscml.configure_leg.subscribe.events.keypress.status.command  command
        String
    mscml.configure_leg.subscribe.events.keypress.status.duration  duration
        String
    mscml.configure_leg.subscribe.events.signal  signal
        String
    mscml.configure_leg.subscribe.events.signal.report  report
        String
    mscml.configure_leg.subscribe.events.signal.type  type
        String
    mscml.configure_leg.toneclamp  toneclamp
        String
    mscml.configure_leg.type  type
        String
    mscml.configure_team  configure_team
        String
    mscml.configure_team.action  action
        String
    mscml.configure_team.id  id
        String
    mscml.configure_team.teammate  teammate
        String
    mscml.configure_team.teammate.id  id
        String
    mscml.error_info  error_info
        String
    mscml.error_info.code  code
        String
    mscml.error_info.context  context
        String
    mscml.error_info.text  text
        String
    mscml.events  events
        String
    mscml.events.activetalkers  activetalkers
        String
    mscml.events.activetalkers.interval  interval
        String
    mscml.events.activetalkers.report  report
        String
    mscml.events.activetalkers.talker  talker
        String
    mscml.events.activetalkers.talker.callid  callid
        String
    mscml.events.keypress  keypress
        String
    mscml.events.keypress.digit  digit
        String
    mscml.events.keypress.interdigittime  interdigittime
        String
    mscml.events.keypress.length  length
        String
    mscml.events.keypress.maskdigits  maskdigits
        String
    mscml.events.keypress.method  method
        String
    mscml.events.keypress.report  report
        String
    mscml.events.keypress.status  status
        String
    mscml.events.keypress.status.command  command
        String
    mscml.events.keypress.status.duration  duration
        String
    mscml.events.signal  signal
        String
    mscml.events.signal.report  report
        String
    mscml.events.signal.type  type
        String
    mscml.faxplay  faxplay
        String
    mscml.faxplay.id  id
        String
    mscml.faxplay.lclid  lclid
        String
    mscml.faxplay.prompt  prompt
        String
    mscml.faxplay.prompt.audio  audio
        String
    mscml.faxplay.prompt.audio.encoding  encoding
        String
    mscml.faxplay.prompt.audio.gain  gain
        String
    mscml.faxplay.prompt.audio.gaindelta  gaindelta
        String
    mscml.faxplay.prompt.audio.rate  rate
        String
    mscml.faxplay.prompt.audio.ratedelta  ratedelta
        String
    mscml.faxplay.prompt.audio.url  url
        String
    mscml.faxplay.prompt.baseurl  baseurl
        String
    mscml.faxplay.prompt.delay  delay
        String
    mscml.faxplay.prompt.duration  duration
        String
    mscml.faxplay.prompt.gain  gain
        String
    mscml.faxplay.prompt.gaindelta  gaindelta
        String
    mscml.faxplay.prompt.locale  locale
        String
    mscml.faxplay.prompt.offset  offset
        String
    mscml.faxplay.prompt.rate  rate
        String
    mscml.faxplay.prompt.ratedelta  ratedelta
        String
    mscml.faxplay.prompt.repeat  repeat
        String
    mscml.faxplay.prompt.stoponerror  stoponerror
        String
    mscml.faxplay.prompt.variable  variable
        String
    mscml.faxplay.prompt.variable.subtype  subtype
        String
    mscml.faxplay.prompt.variable.type  type
        String
    mscml.faxplay.prompt.variable.value  value
        String
    mscml.faxplay.prompturl  prompturl
        String
    mscml.faxplay.recurl  recurl
        String
    mscml.faxplay.rmtid  rmtid
        String
    mscml.faxrecord  faxrecord
        String
    mscml.faxrecord.id  id
        String
    mscml.faxrecord.lclid  lclid
        String
    mscml.faxrecord.prompt  prompt
        String
    mscml.faxrecord.prompt.audio  audio
        String
    mscml.faxrecord.prompt.audio.encoding  encoding
        String
    mscml.faxrecord.prompt.audio.gain  gain
        String
    mscml.faxrecord.prompt.audio.gaindelta  gaindelta
        String
    mscml.faxrecord.prompt.audio.rate  rate
        String
    mscml.faxrecord.prompt.audio.ratedelta  ratedelta
        String
    mscml.faxrecord.prompt.audio.url  url
        String
    mscml.faxrecord.prompt.baseurl  baseurl
        String
    mscml.faxrecord.prompt.delay  delay
        String
    mscml.faxrecord.prompt.duration  duration
        String
    mscml.faxrecord.prompt.gain  gain
        String
    mscml.faxrecord.prompt.gaindelta  gaindelta
        String
    mscml.faxrecord.prompt.locale  locale
        String
    mscml.faxrecord.prompt.offset  offset
        String
    mscml.faxrecord.prompt.rate  rate
        String
    mscml.faxrecord.prompt.ratedelta  ratedelta
        String
    mscml.faxrecord.prompt.repeat  repeat
        String
    mscml.faxrecord.prompt.stoponerror  stoponerror
        String
    mscml.faxrecord.prompt.variable  variable
        String
    mscml.faxrecord.prompt.variable.subtype  subtype
        String
    mscml.faxrecord.prompt.variable.type  type
        String
    mscml.faxrecord.prompt.variable.value  value
        String
    mscml.faxrecord.prompturl  prompturl
        String
    mscml.faxrecord.recurl  recurl
        String
    mscml.faxrecord.rmtid  rmtid
        String
    mscml.fixed  fixed
        String
    mscml.fixed.level  level
        String
    mscml.inputgain  inputgain
        String
    mscml.inputgain.auto  auto
        String
    mscml.inputgain.auto.silencethreshold  silencethreshold
        String
    mscml.inputgain.auto.startlevel  startlevel
        String
    mscml.inputgain.auto.targetlevel  targetlevel
        String
    mscml.inputgain.fixed  fixed
        String
    mscml.inputgain.fixed.level  level
        String
    mscml.keypress  keypress
        String
    mscml.keypress.digit  digit
        String
    mscml.keypress.interdigittime  interdigittime
        String
    mscml.keypress.length  length
        String
    mscml.keypress.maskdigits  maskdigits
        String
    mscml.keypress.method  method
        String
    mscml.keypress.report  report
        String
    mscml.keypress.status  status
        String
    mscml.keypress.status.command  command
        String
    mscml.keypress.status.duration  duration
        String
    mscml.managecontent  managecontent
        String
    mscml.managecontent.action  action
        String
    mscml.managecontent.dest  dest
        String
    mscml.managecontent.fetchtimeout  fetchtimeout
        String
    mscml.managecontent.httpmethod  httpmethod
        String
    mscml.managecontent.id  id
        String
    mscml.managecontent.mimetype  mimetype
        String
    mscml.managecontent.name  name
        String
    mscml.managecontent.src  src
        String
    mscml.megacodigitmap  megacodigitmap
        String
    mscml.megacodigitmap.name  name
        String
    mscml.megacodigitmap.value  value
        String
    mscml.mgcpdigitmap  mgcpdigitmap
        String
    mscml.mgcpdigitmap.name  name
        String
    mscml.mgcpdigitmap.value  value
        String
    mscml.notification  notification
        String
    mscml.notification.conference  conference
        String
    mscml.notification.conference.activetalkers  activetalkers
        String
    mscml.notification.conference.activetalkers.interval  interval
        String
    mscml.notification.conference.activetalkers.report  report
        String
    mscml.notification.conference.activetalkers.talker  talker
        String
    mscml.notification.conference.activetalkers.talker.callid  callid
        String
    mscml.notification.conference.numtalkers  numtalkers
        String
    mscml.notification.conference.uniqueid  uniqueid
        String
    mscml.notification.keypress  keypress
        String
    mscml.notification.keypress.digit  digit
        String
    mscml.notification.keypress.interdigittime  interdigittime
        String
    mscml.notification.keypress.length  length
        String
    mscml.notification.keypress.maskdigits  maskdigits
        String
    mscml.notification.keypress.method  method
        String
    mscml.notification.keypress.report  report
        String
    mscml.notification.keypress.status  status
        String
    mscml.notification.keypress.status.command  command
        String
    mscml.notification.keypress.status.duration  duration
        String
    mscml.notification.signal  signal
        String
    mscml.notification.signal.report  report
        String
    mscml.notification.signal.type  type
        String
    mscml.outputgain  outputgain
        String
    mscml.outputgain.auto  auto
        String
    mscml.outputgain.auto.silencethreshold  silencethreshold
        String
    mscml.outputgain.auto.startlevel  startlevel
        String
    mscml.outputgain.auto.targetlevel  targetlevel
        String
    mscml.outputgain.fixed  fixed
        String
    mscml.outputgain.fixed.level  level
        String
    mscml.pattern  pattern
        String
    mscml.pattern.megacodigitmap  megacodigitmap
        String
    mscml.pattern.megacodigitmap.name  name
        String
    mscml.pattern.megacodigitmap.value  value
        String
    mscml.pattern.mgcpdigitmap  mgcpdigitmap
        String
    mscml.pattern.mgcpdigitmap.name  name
        String
    mscml.pattern.mgcpdigitmap.value  value
        String
    mscml.pattern.regex  regex
        String
    mscml.pattern.regex.name  name
        String
    mscml.pattern.regex.value  value
        String
    mscml.play  play
        String
    mscml.play.id  id
        String
    mscml.play.offset  offset
        String
    mscml.play.prompt  prompt
        String
    mscml.play.prompt.audio  audio
        String
    mscml.play.prompt.audio.encoding  encoding
        String
    mscml.play.prompt.audio.gain  gain
        String
    mscml.play.prompt.audio.gaindelta  gaindelta
        String
    mscml.play.prompt.audio.rate  rate
        String
    mscml.play.prompt.audio.ratedelta  ratedelta
        String
    mscml.play.prompt.audio.url  url
        String
    mscml.play.prompt.baseurl  baseurl
        String
    mscml.play.prompt.delay  delay
        String
    mscml.play.prompt.duration  duration
        String
    mscml.play.prompt.gain  gain
        String
    mscml.play.prompt.gaindelta  gaindelta
        String
    mscml.play.prompt.locale  locale
        String
    mscml.play.prompt.offset  offset
        String
    mscml.play.prompt.rate  rate
        String
    mscml.play.prompt.ratedelta  ratedelta
        String
    mscml.play.prompt.repeat  repeat
        String
    mscml.play.prompt.stoponerror  stoponerror
        String
    mscml.play.prompt.variable  variable
        String
    mscml.play.prompt.variable.subtype  subtype
        String
    mscml.play.prompt.variable.type  type
        String
    mscml.play.prompt.variable.value  value
        String
    mscml.play.promptencoding  promptencoding
        String
    mscml.play.prompturl  prompturl
        String
    mscml.playcollect  playcollect
        String
    mscml.playcollect.barge  barge
        String
    mscml.playcollect.cleardigits  cleardigits
        String
    mscml.playcollect.escapekey  escapekey
        String
    mscml.playcollect.extradigittimer  extradigittimer
        String
    mscml.playcollect.ffkey  ffkey
        String
    mscml.playcollect.firstdigittimer  firstdigittimer
        String
    mscml.playcollect.id  id
        String
    mscml.playcollect.interdigitcriticaltimer  interdigitcriticaltimer
        String
    mscml.playcollect.interdigittimer  interdigittimer
        String
    mscml.playcollect.maskdigits  maskdigits
        String
    mscml.playcollect.maxdigits  maxdigits
        String
    mscml.playcollect.offset  offset
        String
    mscml.playcollect.pattern  pattern
        String
    mscml.playcollect.pattern.megacodigitmap  megacodigitmap
        String
    mscml.playcollect.pattern.megacodigitmap.name  name
        String
    mscml.playcollect.pattern.megacodigitmap.value  value
        String
    mscml.playcollect.pattern.mgcpdigitmap  mgcpdigitmap
        String
    mscml.playcollect.pattern.mgcpdigitmap.name  name
        String
    mscml.playcollect.pattern.mgcpdigitmap.value  value
        String
    mscml.playcollect.pattern.regex  regex
        String
    mscml.playcollect.pattern.regex.name  name
        String
    mscml.playcollect.pattern.regex.value  value
        String
    mscml.playcollect.prompt  prompt
        String
    mscml.playcollect.prompt.audio  audio
        String
    mscml.playcollect.prompt.audio.encoding  encoding
        String
    mscml.playcollect.prompt.audio.gain  gain
        String
    mscml.playcollect.prompt.audio.gaindelta  gaindelta
        String
    mscml.playcollect.prompt.audio.rate  rate
        String
    mscml.playcollect.prompt.audio.ratedelta  ratedelta
        String
    mscml.playcollect.prompt.audio.url  url
        String
    mscml.playcollect.prompt.baseurl  baseurl
        String
    mscml.playcollect.prompt.delay  delay
        String
    mscml.playcollect.prompt.duration  duration
        String
    mscml.playcollect.prompt.gain  gain
        String
    mscml.playcollect.prompt.gaindelta  gaindelta
        String
    mscml.playcollect.prompt.locale  locale
        String
    mscml.playcollect.prompt.offset  offset
        String
    mscml.playcollect.prompt.rate  rate
        String
    mscml.playcollect.prompt.ratedelta  ratedelta
        String
    mscml.playcollect.prompt.repeat  repeat
        String
    mscml.playcollect.prompt.stoponerror  stoponerror
        String
    mscml.playcollect.prompt.variable  variable
        String
    mscml.playcollect.prompt.variable.subtype  subtype
        String
    mscml.playcollect.prompt.variable.type  type
        String
    mscml.playcollect.prompt.variable.value  value
        String
    mscml.playcollect.promptencoding  promptencoding
        String
    mscml.playcollect.prompturl  prompturl
        String
    mscml.playcollect.returnkey  returnkey
        String
    mscml.playcollect.rwkey  rwkey
        String
    mscml.playcollect.skipinterval  skipinterval
        String
    mscml.playrecord  playrecord
        String
    mscml.playrecord.barge  barge
        String
    mscml.playrecord.beep  beep
        String
    mscml.playrecord.cleardigits  cleardigits
        String
    mscml.playrecord.duration  duration
        String
    mscml.playrecord.endsilence  endsilence
        String
    mscml.playrecord.escapekey  escapekey
        String
    mscml.playrecord.id  id
        String
    mscml.playrecord.initsilence  initsilence
        String
    mscml.playrecord.mode  mode
        String
    mscml.playrecord.offset  offset
        String
    mscml.playrecord.prompt  prompt
        String
    mscml.playrecord.prompt.audio  audio
        String
    mscml.playrecord.prompt.audio.encoding  encoding
        String
    mscml.playrecord.prompt.audio.gain  gain
        String
    mscml.playrecord.prompt.audio.gaindelta  gaindelta
        String
    mscml.playrecord.prompt.audio.rate  rate
        String
    mscml.playrecord.prompt.audio.ratedelta  ratedelta
        String
    mscml.playrecord.prompt.audio.url  url
        String
    mscml.playrecord.prompt.baseurl  baseurl
        String
    mscml.playrecord.prompt.delay  delay
        String
    mscml.playrecord.prompt.duration  duration
        String
    mscml.playrecord.prompt.gain  gain
        String
    mscml.playrecord.prompt.gaindelta  gaindelta
        String
    mscml.playrecord.prompt.locale  locale
        String
    mscml.playrecord.prompt.offset  offset
        String
    mscml.playrecord.prompt.rate  rate
        String
    mscml.playrecord.prompt.ratedelta  ratedelta
        String
    mscml.playrecord.prompt.repeat  repeat
        String
    mscml.playrecord.prompt.stoponerror  stoponerror
        String
    mscml.playrecord.prompt.variable  variable
        String
    mscml.playrecord.prompt.variable.subtype  subtype
        String
    mscml.playrecord.prompt.variable.type  type
        String
    mscml.playrecord.prompt.variable.value  value
        String
    mscml.playrecord.promptencoding  promptencoding
        String
    mscml.playrecord.prompturl  prompturl
        String
    mscml.playrecord.recencoding  recencoding
        String
    mscml.playrecord.recstopmask  recstopmask
        String
    mscml.playrecord.recurl  recurl
        String
    mscml.prompt  prompt
        String
    mscml.prompt.audio  audio
        String
    mscml.prompt.audio.encoding  encoding
        String
    mscml.prompt.audio.gain  gain
        String
    mscml.prompt.audio.gaindelta  gaindelta
        String
    mscml.prompt.audio.rate  rate
        String
    mscml.prompt.audio.ratedelta  ratedelta
        String
    mscml.prompt.audio.url  url
        String
    mscml.prompt.baseurl  baseurl
        String
    mscml.prompt.delay  delay
        String
    mscml.prompt.duration  duration
        String
    mscml.prompt.gain  gain
        String
    mscml.prompt.gaindelta  gaindelta
        String
    mscml.prompt.locale  locale
        String
    mscml.prompt.offset  offset
        String
    mscml.prompt.rate  rate
        String
    mscml.prompt.ratedelta  ratedelta
        String
    mscml.prompt.repeat  repeat
        String
    mscml.prompt.stoponerror  stoponerror
        String
    mscml.prompt.variable  variable
        String
    mscml.prompt.variable.subtype  subtype
        String
    mscml.prompt.variable.type  type
        String
    mscml.prompt.variable.value  value
        String
    mscml.regex  regex
        String
    mscml.regex.name  name
        String
    mscml.regex.value  value
        String
    mscml.request  request
        String
    mscml.request.configure_conference  configure_conference
        String
    mscml.request.configure_conference.id  id
        String
    mscml.request.configure_conference.reserveconfmedia  reserveconfmedia
        String
    mscml.request.configure_conference.reservedtalkers  reservedtalkers
        String
    mscml.request.configure_conference.subscribe  subscribe
        String
    mscml.request.configure_conference.subscribe.events  events
        String
    mscml.request.configure_conference.subscribe.events.activetalkers  activetalkers
        String
    mscml.request.configure_conference.subscribe.events.activetalkers.interval  interval
        String
    mscml.request.configure_conference.subscribe.events.activetalkers.report  report
        String
    mscml.request.configure_conference.subscribe.events.activetalkers.talker  talker
        String
    mscml.request.configure_conference.subscribe.events.activetalkers.talker.callid  callid
        String
    mscml.request.configure_conference.subscribe.events.keypress  keypress
        String
    mscml.request.configure_conference.subscribe.events.keypress.digit  digit
        String
    mscml.request.configure_conference.subscribe.events.keypress.interdigittime  interdigittime
        String
    mscml.request.configure_conference.subscribe.events.keypress.length  length
        String
    mscml.request.configure_conference.subscribe.events.keypress.maskdigits  maskdigits
        String
    mscml.request.configure_conference.subscribe.events.keypress.method  method
        String
    mscml.request.configure_conference.subscribe.events.keypress.report  report
        String
    mscml.request.configure_conference.subscribe.events.keypress.status  status
        String
    mscml.request.configure_conference.subscribe.events.keypress.status.command  command
        String
    mscml.request.configure_conference.subscribe.events.keypress.status.duration  duration
        String
    mscml.request.configure_conference.subscribe.events.signal  signal
        String
    mscml.request.configure_conference.subscribe.events.signal.report  report
        String
    mscml.request.configure_conference.subscribe.events.signal.type  type
        String
    mscml.request.configure_leg  configure_leg
        String
    mscml.request.configure_leg.configure_team  configure_team
        String
    mscml.request.configure_leg.configure_team.action  action
        String
    mscml.request.configure_leg.configure_team.id  id
        String
    mscml.request.configure_leg.configure_team.teammate  teammate
        String
    mscml.request.configure_leg.configure_team.teammate.id  id
        String
    mscml.request.configure_leg.dtmfclamp  dtmfclamp
        String
    mscml.request.configure_leg.id  id
        String
    mscml.request.configure_leg.inputgain  inputgain
        String
    mscml.request.configure_leg.inputgain.auto  auto
        String
    mscml.request.configure_leg.inputgain.auto.silencethreshold  silencethreshold
        String
    mscml.request.configure_leg.inputgain.auto.startlevel  startlevel
        String
    mscml.request.configure_leg.inputgain.auto.targetlevel  targetlevel
        String
    mscml.request.configure_leg.inputgain.fixed  fixed
        String
    mscml.request.configure_leg.inputgain.fixed.level  level
        String
    mscml.request.configure_leg.mixmode  mixmode
        String
    mscml.request.configure_leg.outputgain  outputgain
        String
    mscml.request.configure_leg.outputgain.auto  auto
        String
    mscml.request.configure_leg.outputgain.auto.silencethreshold  silencethreshold
        String
    mscml.request.configure_leg.outputgain.auto.startlevel  startlevel
        String
    mscml.request.configure_leg.outputgain.auto.targetlevel  targetlevel
        String
    mscml.request.configure_leg.outputgain.fixed  fixed
        String
    mscml.request.configure_leg.outputgain.fixed.level  level
        String
    mscml.request.configure_leg.subscribe  subscribe
        String
    mscml.request.configure_leg.subscribe.events  events
        String
    mscml.request.configure_leg.subscribe.events.activetalkers  activetalkers
        String
    mscml.request.configure_leg.subscribe.events.activetalkers.interval  interval
        String
    mscml.request.configure_leg.subscribe.events.activetalkers.report  report
        String
    mscml.request.configure_leg.subscribe.events.activetalkers.talker  talker
        String
    mscml.request.configure_leg.subscribe.events.activetalkers.talker.callid  callid
        String
    mscml.request.configure_leg.subscribe.events.keypress  keypress
        String
    mscml.request.configure_leg.subscribe.events.keypress.digit  digit
        String
    mscml.request.configure_leg.subscribe.events.keypress.interdigittime  interdigittime
        String
    mscml.request.configure_leg.subscribe.events.keypress.length  length
        String
    mscml.request.configure_leg.subscribe.events.keypress.maskdigits  maskdigits
        String
    mscml.request.configure_leg.subscribe.events.keypress.method  method
        String
    mscml.request.configure_leg.subscribe.events.keypress.report  report
        String
    mscml.request.configure_leg.subscribe.events.keypress.status  status
        String
    mscml.request.configure_leg.subscribe.events.keypress.status.command  command
        String
    mscml.request.configure_leg.subscribe.events.keypress.status.duration  duration
        String
    mscml.request.configure_leg.subscribe.events.signal  signal
        String
    mscml.request.configure_leg.subscribe.events.signal.report  report
        String
    mscml.request.configure_leg.subscribe.events.signal.type  type
        String
    mscml.request.configure_leg.toneclamp  toneclamp
        String
    mscml.request.configure_leg.type  type
        String
    mscml.request.faxplay  faxplay
        String
    mscml.request.faxplay.id  id
        String
    mscml.request.faxplay.lclid  lclid
        String
    mscml.request.faxplay.prompt  prompt
        String
    mscml.request.faxplay.prompt.audio  audio
        String
    mscml.request.faxplay.prompt.audio.encoding  encoding
        String
    mscml.request.faxplay.prompt.audio.gain  gain
        String
    mscml.request.faxplay.prompt.audio.gaindelta  gaindelta
        String
    mscml.request.faxplay.prompt.audio.rate  rate
        String
    mscml.request.faxplay.prompt.audio.ratedelta  ratedelta
        String
    mscml.request.faxplay.prompt.audio.url  url
        String
    mscml.request.faxplay.prompt.baseurl  baseurl
        String
    mscml.request.faxplay.prompt.delay  delay
        String
    mscml.request.faxplay.prompt.duration  duration
        String
    mscml.request.faxplay.prompt.gain  gain
        String
    mscml.request.faxplay.prompt.gaindelta  gaindelta
        String
    mscml.request.faxplay.prompt.locale  locale
        String
    mscml.request.faxplay.prompt.offset  offset
        String
    mscml.request.faxplay.prompt.rate  rate
        String
    mscml.request.faxplay.prompt.ratedelta  ratedelta
        String
    mscml.request.faxplay.prompt.repeat  repeat
        String
    mscml.request.faxplay.prompt.stoponerror  stoponerror
        String
    mscml.request.faxplay.prompt.variable  variable
        String
    mscml.request.faxplay.prompt.variable.subtype  subtype
        String
    mscml.request.faxplay.prompt.variable.type  type
        String
    mscml.request.faxplay.prompt.variable.value  value
        String
    mscml.request.faxplay.prompturl  prompturl
        String
    mscml.request.faxplay.recurl  recurl
        String
    mscml.request.faxplay.rmtid  rmtid
        String
    mscml.request.faxrecord  faxrecord
        String
    mscml.request.faxrecord.id  id
        String
    mscml.request.faxrecord.lclid  lclid
        String
    mscml.request.faxrecord.prompt  prompt
        String
    mscml.request.faxrecord.prompt.audio  audio
        String
    mscml.request.faxrecord.prompt.audio.encoding  encoding
        String
    mscml.request.faxrecord.prompt.audio.gain  gain
        String
    mscml.request.faxrecord.prompt.audio.gaindelta  gaindelta
        String
    mscml.request.faxrecord.prompt.audio.rate  rate
        String
    mscml.request.faxrecord.prompt.audio.ratedelta  ratedelta
        String
    mscml.request.faxrecord.prompt.audio.url  url
        String
    mscml.request.faxrecord.prompt.baseurl  baseurl
        String
    mscml.request.faxrecord.prompt.delay  delay
        String
    mscml.request.faxrecord.prompt.duration  duration
        String
    mscml.request.faxrecord.prompt.gain  gain
        String
    mscml.request.faxrecord.prompt.gaindelta  gaindelta
        String
    mscml.request.faxrecord.prompt.locale  locale
        String
    mscml.request.faxrecord.prompt.offset  offset
        String
    mscml.request.faxrecord.prompt.rate  rate
        String
    mscml.request.faxrecord.prompt.ratedelta  ratedelta
        String
    mscml.request.faxrecord.prompt.repeat  repeat
        String
    mscml.request.faxrecord.prompt.stoponerror  stoponerror
        String
    mscml.request.faxrecord.prompt.variable  variable
        String
    mscml.request.faxrecord.prompt.variable.subtype  subtype
        String
    mscml.request.faxrecord.prompt.variable.type  type
        String
    mscml.request.faxrecord.prompt.variable.value  value
        String
    mscml.request.faxrecord.prompturl  prompturl
        String
    mscml.request.faxrecord.recurl  recurl
        String
    mscml.request.faxrecord.rmtid  rmtid
        String
    mscml.request.managecontent  managecontent
        String
    mscml.request.managecontent.action  action
        String
    mscml.request.managecontent.dest  dest
        String
    mscml.request.managecontent.fetchtimeout  fetchtimeout
        String
    mscml.request.managecontent.httpmethod  httpmethod
        String
    mscml.request.managecontent.id  id
        String
    mscml.request.managecontent.mimetype  mimetype
        String
    mscml.request.managecontent.name  name
        String
    mscml.request.managecontent.src  src
        String
    mscml.request.play  play
        String
    mscml.request.play.id  id
        String
    mscml.request.play.offset  offset
        String
    mscml.request.play.prompt  prompt
        String
    mscml.request.play.prompt.audio  audio
        String
    mscml.request.play.prompt.audio.encoding  encoding
        String
    mscml.request.play.prompt.audio.gain  gain
        String
    mscml.request.play.prompt.audio.gaindelta  gaindelta
        String
    mscml.request.play.prompt.audio.rate  rate
        String
    mscml.request.play.prompt.audio.ratedelta  ratedelta
        String
    mscml.request.play.prompt.audio.url  url
        String
    mscml.request.play.prompt.baseurl  baseurl
        String
    mscml.request.play.prompt.delay  delay
        String
    mscml.request.play.prompt.duration  duration
        String
    mscml.request.play.prompt.gain  gain
        String
    mscml.request.play.prompt.gaindelta  gaindelta
        String
    mscml.request.play.prompt.locale  locale
        String
    mscml.request.play.prompt.offset  offset
        String
    mscml.request.play.prompt.rate  rate
        String
    mscml.request.play.prompt.ratedelta  ratedelta
        String
    mscml.request.play.prompt.repeat  repeat
        String
    mscml.request.play.prompt.stoponerror  stoponerror
        String
    mscml.request.play.prompt.variable  variable
        String
    mscml.request.play.prompt.variable.subtype  subtype
        String
    mscml.request.play.prompt.variable.type  type
        String
    mscml.request.play.prompt.variable.value  value
        String
    mscml.request.play.promptencoding  promptencoding
        String
    mscml.request.play.prompturl  prompturl
        String
    mscml.request.playcollect  playcollect
        String
    mscml.request.playcollect.barge  barge
        String
    mscml.request.playcollect.cleardigits  cleardigits
        String
    mscml.request.playcollect.escapekey  escapekey
        String
    mscml.request.playcollect.extradigittimer  extradigittimer
        String
    mscml.request.playcollect.ffkey  ffkey
        String
    mscml.request.playcollect.firstdigittimer  firstdigittimer
        String
    mscml.request.playcollect.id  id
        String
    mscml.request.playcollect.interdigitcriticaltimer  interdigitcriticaltimer
        String
    mscml.request.playcollect.interdigittimer  interdigittimer
        String
    mscml.request.playcollect.maskdigits  maskdigits
        String
    mscml.request.playcollect.maxdigits  maxdigits
        String
    mscml.request.playcollect.offset  offset
        String
    mscml.request.playcollect.pattern  pattern
        String
    mscml.request.playcollect.pattern.megacodigitmap  megacodigitmap
        String
    mscml.request.playcollect.pattern.megacodigitmap.name  name
        String
    mscml.request.playcollect.pattern.megacodigitmap.value  value
        String
    mscml.request.playcollect.pattern.mgcpdigitmap  mgcpdigitmap
        String
    mscml.request.playcollect.pattern.mgcpdigitmap.name  name
        String
    mscml.request.playcollect.pattern.mgcpdigitmap.value  value
        String
    mscml.request.playcollect.pattern.regex  regex
        String
    mscml.request.playcollect.pattern.regex.name  name
        String
    mscml.request.playcollect.pattern.regex.value  value
        String
    mscml.request.playcollect.prompt  prompt
        String
    mscml.request.playcollect.prompt.audio  audio
        String
    mscml.request.playcollect.prompt.audio.encoding  encoding
        String
    mscml.request.playcollect.prompt.audio.gain  gain
        String
    mscml.request.playcollect.prompt.audio.gaindelta  gaindelta
        String
    mscml.request.playcollect.prompt.audio.rate  rate
        String
    mscml.request.playcollect.prompt.audio.ratedelta  ratedelta
        String
    mscml.request.playcollect.prompt.audio.url  url
        String
    mscml.request.playcollect.prompt.baseurl  baseurl
        String
    mscml.request.playcollect.prompt.delay  delay
        String
    mscml.request.playcollect.prompt.duration  duration
        String
    mscml.request.playcollect.prompt.gain  gain
        String
    mscml.request.playcollect.prompt.gaindelta  gaindelta
        String
    mscml.request.playcollect.prompt.locale  locale
        String
    mscml.request.playcollect.prompt.offset  offset
        String
    mscml.request.playcollect.prompt.rate  rate
        String
    mscml.request.playcollect.prompt.ratedelta  ratedelta
        String
    mscml.request.playcollect.prompt.repeat  repeat
        String
    mscml.request.playcollect.prompt.stoponerror  stoponerror
        String
    mscml.request.playcollect.prompt.variable  variable
        String
    mscml.request.playcollect.prompt.variable.subtype  subtype
        String
    mscml.request.playcollect.prompt.variable.type  type
        String
    mscml.request.playcollect.prompt.variable.value  value
        String
    mscml.request.playcollect.promptencoding  promptencoding
        String
    mscml.request.playcollect.prompturl  prompturl
        String
    mscml.request.playcollect.returnkey  returnkey
        String
    mscml.request.playcollect.rwkey  rwkey
        String
    mscml.request.playcollect.skipinterval  skipinterval
        String
    mscml.request.playrecord  playrecord
        String
    mscml.request.playrecord.barge  barge
        String
    mscml.request.playrecord.beep  beep
        String
    mscml.request.playrecord.cleardigits  cleardigits
        String
    mscml.request.playrecord.duration  duration
        String
    mscml.request.playrecord.endsilence  endsilence
        String
    mscml.request.playrecord.escapekey  escapekey
        String
    mscml.request.playrecord.id  id
        String
    mscml.request.playrecord.initsilence  initsilence
        String
    mscml.request.playrecord.mode  mode
        String
    mscml.request.playrecord.offset  offset
        String
    mscml.request.playrecord.prompt  prompt
        String
    mscml.request.playrecord.prompt.audio  audio
        String
    mscml.request.playrecord.prompt.audio.encoding  encoding
        String
    mscml.request.playrecord.prompt.audio.gain  gain
        String
    mscml.request.playrecord.prompt.audio.gaindelta  gaindelta
        String
    mscml.request.playrecord.prompt.audio.rate  rate
        String
    mscml.request.playrecord.prompt.audio.ratedelta  ratedelta
        String
    mscml.request.playrecord.prompt.audio.url  url
        String
    mscml.request.playrecord.prompt.baseurl  baseurl
        String
    mscml.request.playrecord.prompt.delay  delay
        String
    mscml.request.playrecord.prompt.duration  duration
        String
    mscml.request.playrecord.prompt.gain  gain
        String
    mscml.request.playrecord.prompt.gaindelta  gaindelta
        String
    mscml.request.playrecord.prompt.locale  locale
        String
    mscml.request.playrecord.prompt.offset  offset
        String
    mscml.request.playrecord.prompt.rate  rate
        String
    mscml.request.playrecord.prompt.ratedelta  ratedelta
        String
    mscml.request.playrecord.prompt.repeat  repeat
        String
    mscml.request.playrecord.prompt.stoponerror  stoponerror
        String
    mscml.request.playrecord.prompt.variable  variable
        String
    mscml.request.playrecord.prompt.variable.subtype  subtype
        String
    mscml.request.playrecord.prompt.variable.type  type
        String
    mscml.request.playrecord.prompt.variable.value  value
        String
    mscml.request.playrecord.promptencoding  promptencoding
        String
    mscml.request.playrecord.prompturl  prompturl
        String
    mscml.request.playrecord.recencoding  recencoding
        String
    mscml.request.playrecord.recstopmask  recstopmask
        String
    mscml.request.playrecord.recurl  recurl
        String
    mscml.request.stop  stop
        String
    mscml.request.stop.id  id
        String
    mscml.response  response
        String
    mscml.response.code  code
        String
    mscml.response.digits  digits
        String
    mscml.response.error_info  error_info
        String
    mscml.response.error_info.code  code
        String
    mscml.response.error_info.context  context
        String
    mscml.response.error_info.text  text
        String
    mscml.response.faxcode  faxcode
        String
    mscml.response.id  id
        String
    mscml.response.name  name
        String
    mscml.response.pages_recv  pages_recv
        String
    mscml.response.pages_sent  pages_sent
        String
    mscml.response.playduration  playduration
        String
    mscml.response.playoffset  playoffset
        String
    mscml.response.reason  reason
        String
    mscml.response.recduration  recduration
        String
    mscml.response.reclength  reclength
        String
    mscml.response.request  request
        String
    mscml.response.team  team
        String
    mscml.response.team.id  id
        String
    mscml.response.team.numteam  numteam
        String
    mscml.response.team.teammate  teammate
        String
    mscml.response.team.teammate.id  id
        String
    mscml.response.text  text
        String
    mscml.signal  signal
        String
    mscml.signal.report  report
        String
    mscml.signal.type  type
        String
    mscml.status  status
        String
    mscml.status.command  command
        String
    mscml.status.duration  duration
        String
    mscml.stop  stop
        String
    mscml.stop.id  id
        String
    mscml.subscribe  subscribe
        String
    mscml.subscribe.events  events
        String
    mscml.subscribe.events.activetalkers  activetalkers
        String
    mscml.subscribe.events.activetalkers.interval  interval
        String
    mscml.subscribe.events.activetalkers.report  report
        String
    mscml.subscribe.events.activetalkers.talker  talker
        String
    mscml.subscribe.events.activetalkers.talker.callid  callid
        String
    mscml.subscribe.events.keypress  keypress
        String
    mscml.subscribe.events.keypress.digit  digit
        String
    mscml.subscribe.events.keypress.interdigittime  interdigittime
        String
    mscml.subscribe.events.keypress.length  length
        String
    mscml.subscribe.events.keypress.maskdigits  maskdigits
        String
    mscml.subscribe.events.keypress.method  method
        String
    mscml.subscribe.events.keypress.report  report
        String
    mscml.subscribe.events.keypress.status  status
        String
    mscml.subscribe.events.keypress.status.command  command
        String
    mscml.subscribe.events.keypress.status.duration  duration
        String
    mscml.subscribe.events.signal  signal
        String
    mscml.subscribe.events.signal.report  report
        String
    mscml.subscribe.events.signal.type  type
        String
    mscml.talker  talker
        String
    mscml.talker.callid  callid
        String
    mscml.team  team
        String
    mscml.team.id  id
        String
    mscml.team.numteam  numteam
        String
    mscml.team.teammate  teammate
        String
    mscml.team.teammate.id  id
        String
    mscml.teammate  teammate
        String
    mscml.teammate.id  id
        String
    mscml.variable  variable
        String
    mscml.variable.subtype  subtype
        String
    mscml.variable.type  type
        String
    mscml.variable.value  value
        String
    mscml.version  version
        String

Media Type (media)

Media Type: message/http (message-http)

Memcache Protocol (memcache)

    memcache.cas  CAS
        Unsigned 64-bit integer
        Data version check
    memcache.command  Command
        String
    memcache.data_type  Data type
        Unsigned 8-bit integer
    memcache.expiration  Expiration
        Unsigned 32-bit integer
    memcache.extras  Extras
        No value
    memcache.extras.delta  Amount to add
        Unsigned 64-bit integer
    memcache.extras.expiration  Expiration
        Unsigned 32-bit integer
    memcache.extras.flags  Flags
        Unsigned 32-bit integer
    memcache.extras.initial  Initial value
        Unsigned 64-bit integer
    memcache.extras.length  Extras length
        Unsigned 8-bit integer
        Length in bytes of the command extras
    memcache.extras.missing  Extras missing
        No value
        Extras is mandatory for this command
    memcache.extras.response  Response
        Unsigned 64-bit integer
    memcache.extras.unknown  Unknown
        Byte array
        Unknown Extras
    memcache.flags  Flags
        Unsigned 16-bit integer
    memcache.key  Key
        String
    memcache.key.length  Key Length
        Unsigned 16-bit integer
        Length in bytes of the text key that follows the command extras
    memcache.key.missing  Key missing
        No value
        Key is mandatory for this command
    memcache.magic  Magic
        Unsigned 8-bit integer
        Magic number
    memcache.name  Stat name
        String
        Name of a stat
    memcache.name_value  Stat value
        String
        Value of a stat
    memcache.noreply  Noreply
        String
        Client does not expect a reply
    memcache.opaque  Opaque
        Unsigned 32-bit integer
    memcache.opcode  Opcode
        Unsigned 8-bit integer
        Command code
    memcache.reserved  Reserved
        Unsigned 16-bit integer
        Reserved for future use
    memcache.response  Response
        String
        Response command
    memcache.slabclass  Slab class
        Unsigned 32-bit integer
        Slab class of a stat
    memcache.status  Status
        Unsigned 16-bit integer
        Status of the response
    memcache.subcommand  Sub command
        String
        Sub command if any
    memcache.total_body_length  Total body length
        Unsigned 32-bit integer
        Length in bytes of extra + key + value
    memcache.value  Value
        String
    memcache.value.length  Value length
        Unsigned 32-bit integer
        Length in bytes of the value that follows the key
    memcache.value.missing  Value missing
        No value
        Value is mandatory for this command
    memcache.version  Version
        String
        Version of running memcache

Mesh Header (mesh)

    mesh.e2eseq  Mesh End-to-end Seq
        Unsigned 16-bit integer
    mesh.ttl  Mesh TTL
        Unsigned 8-bit integer

Message Session Relay Protocol (msrp)

    msrp.authentication.info  Authentication-Info
        String
    msrp.authorization  Authorization
        String
    msrp.byte.range  Byte Range
        String
    msrp.cnt.flg  Continuation-flag
        String
    msrp.content.description  Content-Description
        String
    msrp.content.disposition  Content-Disposition
        String
    msrp.content.id  Content-ID
        String
    msrp.content.type  Content-Type
        String
    msrp.data  Data
        String
    msrp.end.line  End Line
        String
    msrp.failure.report  Failure Report
        String
    msrp.from.path  From Path
        String
    msrp.messageid  Message ID
        String
    msrp.method  Method
        String
    msrp.msg.hdr  Message Header
        No value
    msrp.request.line  Request Line
        String
    msrp.response.line  Response Line
        String
    msrp.setup  Stream setup
        String
        Stream setup, method and frame number
    msrp.setup-frame  Setup frame
        Frame number
        Frame that set up this stream
    msrp.setup-method  Setup Method
        String
        Method used to set up this stream
    msrp.status  Status
        String
    msrp.status.code  Status code
        Unsigned 16-bit integer
    msrp.success.report  Success Report
        String
    msrp.to.path  To Path
        String
    msrp.transaction.id  Transaction Id
        String
    msrp.use.path  Use-Path
        String
    msrp.www.authenticate  WWW-Authenticate
        String

Message Transfer Part Level 2 (mtp2)

    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.sf_extra  Status field extra octet
        Unsigned 8-bit integer
    mtp2.spare  Spare
        Unsigned 8-bit integer

Message Transfer Part Level 3 (mtp3)

    mtp3.ansi_dpc  DPC
        String
    mtp3.ansi_opc  OPC
        String
    mtp3.chinese_dpc  DPC
        String
    mtp3.chinese_opc  OPC
        String
    mtp3.dpc.cluster  DPC Cluster
        Unsigned 24-bit integer
    mtp3.dpc.member  DPC Member
        Unsigned 24-bit integer
    mtp3.dpc.network  DPC Network
        Unsigned 24-bit integer
    mtp3.network_indicator  Network indicator
        Unsigned 8-bit integer
    mtp3.opc.cluster  OPC Cluster
        Unsigned 24-bit integer
    mtp3.opc.member  OPC Member
        Unsigned 24-bit integer
    mtp3.opc.network  OPC Network
        Unsigned 24-bit integer
    mtp3.priority  ITU priority
        Unsigned 8-bit integer
    mtp3.service_indicator  Service indicator
        Unsigned 8-bit integer
    mtp3.sls_spare  SLS Spare
        Unsigned 8-bit integer
    mtp3.spare  Spare
        Unsigned 8-bit integer

Message Transfer Part Level 3 Management (mtp3mg)

    mtp3mg.ansi_apc  Affected Point Code
        String
    mtp3mg.apc  Affected Point Code (ITU)
        Unsigned 16-bit integer
    mtp3mg.apc.cluster  Affected Point Code cluster
        Unsigned 24-bit integer
    mtp3mg.apc.member  Affected Point Code member
        Unsigned 24-bit integer
    mtp3mg.apc.network  Affected Point Code network
        Unsigned 24-bit integer
    mtp3mg.cause  Cause
        Unsigned 8-bit integer
        Cause of user unavailability
    mtp3mg.cbc  Change Back Code
        Unsigned 16-bit integer
    mtp3mg.chinese_apc  Affected Point Code
        String
    mtp3mg.fsn  Forward Sequence Number
        Unsigned 8-bit integer
        Forward Sequence Number of last accepted message
    mtp3mg.h0  H0 (Message Group)
        Unsigned 8-bit integer
        Message group identifier
    mtp3mg.h1  H1 (Message)
        Unsigned 8-bit integer
        Message type
    mtp3mg.japan_apc  Affected Point Code
        Unsigned 16-bit integer
    mtp3mg.japan_count  Count of Affected Point Codes (Japan)
        Unsigned 8-bit integer
    mtp3mg.japan_spare  TFC spare (Japan)
        Unsigned 8-bit integer
    mtp3mg.japan_status  Status
        Unsigned 8-bit integer
    mtp3mg.link  Link
        Unsigned 8-bit integer
        CIC of BIC used to carry data
    mtp3mg.slc  Signalling Link Code
        Unsigned 8-bit integer
        SLC of affected link
    mtp3mg.spare  Japan management spare
        Unsigned 8-bit integer
    mtp3mg.status  Status
        Unsigned 8-bit integer
        Congestion status
    mtp3mg.test  Japan test message
        Unsigned 8-bit integer
        Japan test message type
    mtp3mg.test.h0  H0 (Message Group)
        Unsigned 8-bit integer
        Message group identifier
    mtp3mg.test.h1  H1 (Message)
        Unsigned 8-bit integer
        SLT message type
    mtp3mg.test.length  Test length
        Unsigned 8-bit integer
        Signalling link test pattern length
    mtp3mg.test.pattern  Japan test message pattern
        Unsigned 16-bit integer
    mtp3mg.test.spare  Japan test message spare
        Unsigned 8-bit integer
    mtp3mg.user  User
        Unsigned 8-bit integer
        Unavailable user part

Meta Analysis Tracing Engine (mate)

Metadata (meta)

    meta.aal5proto  AAL5 Protocol Type
        Unsigned 8-bit integer
    meta.apn  APN
        NULL terminated string
    meta.cell  Cell
        Unsigned 64-bit integer
    meta.direction  Direction
        Unsigned 8-bit integer
    meta.hdrlen  Header Length
        Unsigned 16-bit integer
    meta.imei  IMEI
        Unsigned 64-bit integer
    meta.imsi  IMSI
        Unsigned 64-bit integer
    meta.incomplete  Incomplete
        Boolean
    meta.item  Unknown Item
        No value
    meta.item.data  Item Data
        Byte array
    meta.item.id  Item ID
        Unsigned 16-bit integer
    meta.item.len  Item Length
        Unsigned 8-bit integer
    meta.item.type  Item Type
        Unsigned 8-bit integer
    meta.nsapi  NSAPI
        Unsigned 8-bit integer
    meta.phylinkid  Physical Link ID
        Unsigned 16-bit integer
    meta.proto  Protocol
        Unsigned 16-bit integer
    meta.rat  RAT
        Unsigned 8-bit integer
    meta.reserved  Reserved
        Unsigned 16-bit integer
    meta.schema  Schema
        Unsigned 16-bit integer
    meta.signaling  Signaling
        Boolean
    meta.timestamp  Timestamp
        Unsigned 64-bit integer

Microsoft AT-Scheduler Service (atsvc)

    atcvs.job_info  JobInfo
        No value
        JobInfo structure
    atsvc.DaysOfMonth.Eight  Eight
        Boolean
    atsvc.DaysOfMonth.Eighteenth  Eighteenth
        Boolean
    atsvc.DaysOfMonth.Eleventh  Eleventh
        Boolean
    atsvc.DaysOfMonth.Fifteenth  Fifteenth
        Boolean
    atsvc.DaysOfMonth.Fifth  Fifth
        Boolean
    atsvc.DaysOfMonth.First  First
        Boolean
    atsvc.DaysOfMonth.Fourteenth  Fourteenth
        Boolean
    atsvc.DaysOfMonth.Fourth  Fourth
        Boolean
    atsvc.DaysOfMonth.Ninteenth  Ninteenth
        Boolean
    atsvc.DaysOfMonth.Ninth  Ninth
        Boolean
    atsvc.DaysOfMonth.Second  Second
        Boolean
    atsvc.DaysOfMonth.Seventeenth  Seventeenth
        Boolean
    atsvc.DaysOfMonth.Seventh  Seventh
        Boolean
    atsvc.DaysOfMonth.Sixteenth  Sixteenth
        Boolean
    atsvc.DaysOfMonth.Sixth  Sixth
        Boolean
    atsvc.DaysOfMonth.Tenth  Tenth
        Boolean
    atsvc.DaysOfMonth.Third  Third
        Boolean
    atsvc.DaysOfMonth.Thirtieth  Thirtieth
        Boolean
    atsvc.DaysOfMonth.Thirtyfirst  Thirtyfirst
        Boolean
    atsvc.DaysOfMonth.Thitteenth  Thitteenth
        Boolean
    atsvc.DaysOfMonth.Twelfth  Twelfth
        Boolean
    atsvc.DaysOfMonth.Twentyeighth  Twentyeighth
        Boolean
    atsvc.DaysOfMonth.Twentyfifth  Twentyfifth
        Boolean
    atsvc.DaysOfMonth.Twentyfirst  Twentyfirst
        Boolean
    atsvc.DaysOfMonth.Twentyfourth  Twentyfourth
        Boolean
    atsvc.DaysOfMonth.Twentyninth  Twentyninth
        Boolean
    atsvc.DaysOfMonth.Twentysecond  Twentysecond
        Boolean
    atsvc.DaysOfMonth.Twentyseventh  Twentyseventh
        Boolean
    atsvc.DaysOfMonth.Twentysixth  Twentysixth
        Boolean
    atsvc.DaysOfMonth.Twentyth  Twentyth
        Boolean
    atsvc.DaysOfMonth.Twentythird  Twentythird
        Boolean
    atsvc.DaysOfWeek.DAYSOFWEEK_FRIDAY  Daysofweek Friday
        Boolean
    atsvc.DaysOfWeek.DAYSOFWEEK_MONDAY  Daysofweek Monday
        Boolean
    atsvc.DaysOfWeek.DAYSOFWEEK_SATURDAY  Daysofweek Saturday
        Boolean
    atsvc.DaysOfWeek.DAYSOFWEEK_SUNDAY  Daysofweek Sunday
        Boolean
    atsvc.DaysOfWeek.DAYSOFWEEK_THURSDAY  Daysofweek Thursday
        Boolean
    atsvc.DaysOfWeek.DAYSOFWEEK_TUESDAY  Daysofweek Tuesday
        Boolean
    atsvc.DaysOfWeek.DAYSOFWEEK_WEDNESDAY  Daysofweek Wednesday
        Boolean
    atsvc.Flags.JOB_ADD_CURRENT_DATE  Job Add Current Date
        Boolean
    atsvc.Flags.JOB_EXEC_ERROR  Job Exec Error
        Boolean
    atsvc.Flags.JOB_NONINTERACTIVE  Job Noninteractive
        Boolean
    atsvc.Flags.JOB_RUNS_TODAY  Job Runs Today
        Boolean
    atsvc.Flags.JOB_RUN_PERIODICALLY  Job Run Periodically
        Boolean
    atsvc.JobDel.max_job_id  Max Job Id
        Unsigned 32-bit integer
    atsvc.JobDel.min_job_id  Min Job Id
        Unsigned 32-bit integer
    atsvc.JobEnum.ctr  Ctr
        No value
    atsvc.JobEnum.preferred_max_len  Preferred Max Len
        Unsigned 32-bit integer
    atsvc.JobEnum.resume_handle  Resume Handle
        Unsigned 32-bit integer
    atsvc.JobEnum.total_entries  Total Entries
        Unsigned 32-bit integer
    atsvc.JobEnumInfo.command  Command
        String
    atsvc.JobEnumInfo.days_of_month  Days Of Month
        Unsigned 32-bit integer
    atsvc.JobEnumInfo.days_of_week  Days Of Week
        Unsigned 8-bit integer
    atsvc.JobEnumInfo.flags  Flags
        Unsigned 8-bit integer
    atsvc.JobEnumInfo.job_time  Job Time
        Unsigned 32-bit integer
    atsvc.JobInfo.command  Command
        String
    atsvc.JobInfo.days_of_month  Days Of Month
        Unsigned 32-bit integer
    atsvc.JobInfo.days_of_week  Days Of Week
        Unsigned 8-bit integer
    atsvc.JobInfo.flags  Flags
        Unsigned 8-bit integer
    atsvc.JobInfo.job_time  Job Time
        Unsigned 32-bit integer
    atsvc.enum_ctr.entries_read  Entries Read
        Unsigned 32-bit integer
    atsvc.enum_ctr.first_entry  First Entry
        No value
    atsvc.job_id  Job Id
        Unsigned 32-bit integer
        Identifier of the scheduled job
    atsvc.opnum  Operation
        Unsigned 16-bit integer
    atsvc.server  Server
        String
        Name of the server
    atsvc.status  NT Error
        Unsigned 32-bit integer

Microsoft Distributed Link Tracking Server Service (trksvr)

    trksvr.opnum  Operation
        Unsigned 16-bit integer
    trksvr.rc  Return code
        Unsigned 32-bit integer
        TRKSVR return code

Microsoft Exchange New Mail Notification (newmail)

    newmail.notification_payload  Notification payload
        Byte array
        Payload requested by client in the MAPI register push notification packet

Microsoft File Replication Service (frsrpc)

    frsrpc.dsrv  DSRV
        String
    frsrpc.dsrv.guid  DSRV GUID
        Globally Unique Identifier
    frsrpc.guid.size  Guid Size
        Unsigned 32-bit integer
    frsrpc.opnum  Operation
        Unsigned 16-bit integer
    frsrpc.ssrv  SSRV
        String
    frsrpc.ssrv.guid  SSRV GUID
        Globally Unique Identifier
    frsrpc.str.size  String Size
        Unsigned 32-bit integer
    frsrpc.timestamp  Timestamp
        Date/Time stamp
    frsrpc.tlv  TLV
        No value
        A tlv blob
    frsrpc.tlv.data  TLV Data
        Byte array
    frsrpc.tlv.size  TLV Size
        Unsigned 32-bit integer
    frsrpc.tlv.tag  TLV Tag
        Unsigned 16-bit integer
    frsrpc.tlv_item  TLV
        No value
        A tlv item
    frsrpc.tlv_size  TLV Size
        Unsigned 32-bit integer
        Size of tlv blob in bytes
    frsrpc.unknown32  unknown32
        Unsigned 32-bit integer
        unknown int32
    frsrpc.unknownbytes  unknown
        Byte array
        unknown bytes

Microsoft File Replication Service API (frsapi)

    frsapi.opnum  Operation
        Unsigned 16-bit integer

Microsoft Media Server (msmms)

    msmms.command  Command
        String
        MSMMS command hidden filter
    msmms.command.broadcast-indexing  Broadcast indexing
        Unsigned 8-bit integer
    msmms.command.broadcast-liveness  Broadcast liveness
        Unsigned 8-bit integer
    msmms.command.client-transport-info  Client transport info
        String
    msmms.command.common-header  Command common header
        String
        MSMMS command common header
    msmms.command.direction  Command direction
        Unsigned 16-bit integer
    msmms.command.download-update-player-url  Download update player URL
        String
    msmms.command.download-update-player-url-length  Download update URL length
        Unsigned 32-bit integer
    msmms.command.length  Command length
        Unsigned 32-bit integer
    msmms.command.length-remaining  Length until end (8-byte blocks)
        Unsigned 32-bit integer
    msmms.command.length-remaining2  Length until end (8-byte blocks)
        Unsigned 32-bit integer
    msmms.command.password-encryption-type  Password encryption type
        String
    msmms.command.password-encryption-type-length  Password encryption type length
        Unsigned 32-bit integer
    msmms.command.player-info  Player info
        String
    msmms.command.prefix1  Prefix 1
        Unsigned 32-bit integer
    msmms.command.prefix1-command-level  Prefix 1 Command Level
        Unsigned 32-bit integer
    msmms.command.prefix1-error-code  Prefix 1 ErrorCode
        Unsigned 32-bit integer
    msmms.command.prefix2  Prefix 2
        Unsigned 32-bit integer
    msmms.command.protocol-type  Protocol type
        String
    msmms.command.result-flags  Result flags
        Unsigned 32-bit integer
    msmms.command.sequence-number  Sequence number
        Unsigned 32-bit integer
    msmms.command.server-file  Server file
        String
    msmms.command.server-version  Server version
        String
    msmms.command.server-version-length  Server Version Length
        Unsigned 32-bit integer
    msmms.command.signature  Command signature
        Unsigned 32-bit integer
    msmms.command.strange-string  Strange string
        String
    msmms.command.timestamp  Time stamp (s)
        Double-precision floating point
    msmms.command.to-client-id  Command
        Unsigned 16-bit integer
    msmms.command.to-server-id  Command
        Unsigned 16-bit integer
    msmms.command.tool-version  Tool version
        String
    msmms.command.tool-version-length  Tool Version Length
        Unsigned 32-bit integer
    msmms.command.version  Version
        Unsigned 32-bit integer
    msmms.data  Data
        No value
    msmms.data.client-id  Client ID
        Unsigned 32-bit integer
    msmms.data.command-id  Command ID
        Unsigned 16-bit integer
    msmms.data.header-id  Header ID
        Unsigned 32-bit integer
    msmms.data.header-packet-id-type  Header packet ID type
        Unsigned 32-bit integer
    msmms.data.media-packet-length  Media packet length (bytes)
        Unsigned 32-bit integer
    msmms.data.packet-id-type  Packet ID type
        Unsigned 8-bit integer
    msmms.data.packet-length  Packet length
        Unsigned 16-bit integer
    msmms.data.packet-to-resend  Packet to resend
        Unsigned 32-bit integer
    msmms.data.prerecorded-media-length  Pre-recorded media length (seconds)
        Unsigned 32-bit integer
    msmms.data.selection-stream-action  Action
        Unsigned 16-bit integer
    msmms.data.selection-stream-id  Stream id
        Unsigned 16-bit integer
    msmms.data.sequence  Sequence number
        Unsigned 32-bit integer
    msmms.data.stream-selection-flags  Stream selection flags
        Unsigned 16-bit integer
    msmms.data.stream-structure-count  Stream structure count
        Unsigned 32-bit integer
    msmms.data.tcp-flags  TCP flags
        Unsigned 8-bit integer
    msmms.data.timing-pair  Data timing pair
        No value
    msmms.data.timing-pair.flag  Flag
        Unsigned 8-bit integer
    msmms.data.timing-pair.flags  Flags
        Unsigned 24-bit integer
    msmms.data.timing-pair.id  ID
        Unsigned 8-bit integer
    msmms.data.timing-pair.packet-length  Packet length
        Unsigned 16-bit integer
    msmms.data.timing-pair.sequence-number  Sequence number
        Unsigned 8-bit integer
    msmms.data.udp-sequence  UDP Sequence
        Unsigned 8-bit integer
    msmms.data.unparsed  Unparsed data
        No value
    msmms.data.words-in-structure  Number of 4 byte fields in structure
        Unsigned 32-bit integer

Microsoft Messenger Service (messenger)

    messenger.client  Client
        String
        Client that sent the message
    messenger.message  Message
        String
        The message being sent
    messenger.opnum  Operation
        Unsigned 16-bit integer
    messenger.rc  Return code
        Unsigned 32-bit integer
    messenger.server  Server
        String
        Server to send the message to

Microsoft Network Logon (rpc_netlogon)

    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
    netlogon.alias_rid  Alias RID
        Unsigned 32-bit integer
    netlogon.attrs  Attributes
        Unsigned 32-bit integer
    netlogon.audit_retention_period  Audit Retention Period
        Time duration
        Audit retention period
    netlogon.auditing_mode  Auditing Mode
        Unsigned 8-bit integer
    netlogon.auth.data  Auth Data
        Byte array
    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
    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
    netlogon.client_dns_name  Client DNS Name
        String
        Client DNS Name
    netlogon.clientchallenge  Client Challenge
        Byte array
    netlogon.clientcred  Client Credential
        Byte array
    netlogon.code  Code
        Unsigned 32-bit integer
    netlogon.codepage  Codepage
        Unsigned 16-bit integer
        Codepage setting for this account
    netlogon.comment  Comment
        String
    netlogon.computer_name  Computer Name
        String
    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.data.length  Length of Data
        Unsigned 32-bit integer
    netlogon.data.package_name  SSP Package Name
        String
    netlogon.database_id  Database Id
        Unsigned 32-bit integer
    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
    netlogon.dc.address_type  DC Address Type
        Unsigned 32-bit integer
    netlogon.dc.flags  Domain Controller Flags
        Unsigned 32-bit integer
    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
    netlogon.dc.site_name  DC Site Name
        String
    netlogon.delta_type  Delta Type
        Unsigned 16-bit integer
    netlogon.dir_drive  Dir Drive
        String
        Drive letter for home directory
    netlogon.dns.forest_name  DNS Forest Name
        String
    netlogon.dns_domain  DNS Domain
        String
        DNS Domain Name
    netlogon.dns_host  DNS Host
        String
    netlogon.dnsdomaininfo  DnsDomainInfo
        No value
    netlogon.domain  Domain
        String
    netlogon.domain_create_time  Domain Create Time
        Date/Time stamp
        Time when this domain was created
    netlogon.domain_modify_time  Domain Modify Time
        Date/Time stamp
        Time when this domain was last modified
    netlogon.dos.rc  DOS error code
        Unsigned 32-bit integer
        DOS Error Code
    netlogon.downlevel_domain  Downlevel Domain
        String
        Downlevel Domain Name
    netlogon.dummy  Dummy
        String
        Dummy string
    netlogon.dummy.long1  Dummy1 Long
        Unsigned 32-bit integer
        Dummy long 1. Used is reserved for next evolutions.
    netlogon.dummy.long10  Dummy10 Long
        Unsigned 32-bit integer
        Dummy long 10. Used is reserved for next evolutions.
    netlogon.dummy.long2  Dummy2 Long
        Unsigned 32-bit integer
        Dummy long 2. Used is reserved for next evolutions.
    netlogon.dummy.long3  Dummy3 Long
        Unsigned 32-bit integer
        Dummy long 3. Used is reserved for next evolutions.
    netlogon.dummy.long4  Dummy4 Long
        Unsigned 32-bit integer
        Dummy long 4. Used is reserved for next evolutions.
    netlogon.dummy.long5  Dummy5 Long
        Unsigned 32-bit integer
        Dummy long 5. Used is reserved for next evolutions.
    netlogon.dummy.long6  Dummy6 Long
        Unsigned 32-bit integer
        Dummy long 6. Used is reserved for next evolutions.
    netlogon.dummy.long7  Dummy7 Long
        Unsigned 32-bit integer
        Dummy long 7. Used is reserved for next evolutions.
    netlogon.dummy.long8  Dummy8 Long
        Unsigned 32-bit integer
        Dummy long 8. Used is reserved for next evolutions.
    netlogon.dummy.long9  Dummy9 Long
        Unsigned 32-bit integer
        Dummy long 9. Used is reserved for next evolutions.
    netlogon.dummy_string  Dummy String
        String
        Dummy String. Used is reserved for next evolutions.
    netlogon.encryption.types  Supported Encryption Types
        Unsigned 32-bit integer
        Encryption types
    netlogon.entries  Entries
        Unsigned 32-bit integer
    netlogon.event_audit_option  Event Audit Option
        Unsigned 32-bit integer
        Event audit option
    netlogon.extra.flags.dc_firsthop   DC at the end of the first hop of cross forest
        Boolean
    netlogon.extra.flags.rodc_ntlm  Request is a NTLM auth passed by a RODC
        Boolean
    netlogon.extra.flags.rodc_to_dc  Request from a RODC to a DC from another domain
        Boolean
    netlogon.extra.flags.rootdc  Request passed to DC of root forest
        Boolean
    netlogon.extra_flags  Extra Flags
        Unsigned 32-bit integer
    netlogon.flags  Flags
        Unsigned 32-bit integer
    netlogon.full_name  Full Name
        String
    netlogon.get_dcname.request.flags  Flags
        Unsigned 32-bit integer
        Flags for DSGetDCName request
    netlogon.get_dcname.request.flags.avoid_self  Avoid Self
        Boolean
        Return another DC than the one we ask
    netlogon.get_dcname.request.flags.background_only  Background Only
        Boolean
        If we want cached data, even if it may have expired
    netlogon.get_dcname.request.flags.ds_preferred  DS Preferred
        Boolean
        Whether we prefer the call to return a w2k server (if available)
    netlogon.get_dcname.request.flags.ds_required  DS Required
        Boolean
        Whether we require that the returned DC supports w2k or not
    netlogon.get_dcname.request.flags.force_rediscovery  Force Rediscovery
        Boolean
        Whether to allow the server to returned cached information or not
    netlogon.get_dcname.request.flags.gc_server_required  GC Required
        Boolean
        Whether we require that the returned DC is a Global Catalog server
    netlogon.get_dcname.request.flags.good_timeserv_preferred  Timeserv Preferred
        Boolean
        If we prefer Windows Time Servers
    netlogon.get_dcname.request.flags.ip_required  IP Required
        Boolean
        If we requre the IP of the DC in the reply
    netlogon.get_dcname.request.flags.is_dns_name  Is DNS Name
        Boolean
        If the specified domain name is a DNS name
    netlogon.get_dcname.request.flags.is_flat_name  Is Flat Name
        Boolean
        If the specified domain name is a NetBIOS name
    netlogon.get_dcname.request.flags.kdc_required  KDC Required
        Boolean
        If we require that the returned server is a KDC
    netlogon.get_dcname.request.flags.only_ldap_needed  Only LDAP Needed
        Boolean
        We just want an LDAP server, it does not have to be a DC
    netlogon.get_dcname.request.flags.pdc_required  PDC Required
        Boolean
        Whether we require the returned DC to be the PDC
    netlogon.get_dcname.request.flags.return_dns_name  Return DNS Name
        Boolean
        Only return a DNS name (or an error)
    netlogon.get_dcname.request.flags.return_flat_name  Return Flat Name
        Boolean
        Only return a NetBIOS name (or an error)
    netlogon.get_dcname.request.flags.timeserv_required  Timeserv Required
        Boolean
        If we require the returned server to be a WindowsTimeServ server
    netlogon.get_dcname.request.flags.writable_required  Writable Required
        Boolean
        If we require that the returned server is writable
    netlogon.group_desc  Group Desc
        String
        Group Description
    netlogon.group_name  Group Name
        String
    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.dnslogondomainname  DNS Logon Domain name
        String
        DNS Name of the logon domain
    netlogon.logon.upn  UPN
        String
        User Principal Name
    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
    netlogon.logon_script  Logon Script
        String
    netlogon.logon_time  Logon Time
        Date/Time stamp
        Time for last time this user logged on
    netlogon.lsapolicy.length  Length
        Unsigned 32-bit integer
        Length of the policy buffer
    netlogon.lsapolicy.pointer  Pointer
        Byte array
        Pointer to LSA POLICY
    netlogon.lsapolicy.referentID  Referent ID
        Unsigned 32-bit integer
        Referent ID
    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  Negotiation options
        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_rids  Num RIDs
        Unsigned 32-bit integer
        Number of RIDs
    netlogon.num_sid  Num Extra SID
        Unsigned 32-bit integer
    netlogon.num_trusts  Num Trusts
        Unsigned 32-bit integer
    netlogon.oem_info  OEM Info
        String
    netlogon.opnum  Operation
        Unsigned 16-bit integer
    netlogon.os.version  OS version
        String
        OS Version
    netlogon.pac.data  Pac Data
        Byte array
    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
    netlogon.parent_index  Parent Index
        Unsigned 32-bit integer
    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
    netlogon.principal  Principal
        String
    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
    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
    netlogon.resourcegroupcount  ResourceGroup count
        Unsigned 32-bit integer
        Number of Resource Groups
    netlogon.restart_state  Restart State
        Unsigned 16-bit integer
    netlogon.rid  User RID
        Unsigned 32-bit integer
    netlogon.sec_chan_type  Sec Chan Type
        Unsigned 16-bit integer
        Secure Channel Type
    netlogon.secchan.digest  Packet Digest
        Byte array
    netlogon.secchan.flags  Flags
        Byte array
    netlogon.secchan.nl_auth_message.dns_domain  DNS Domain
        String
    netlogon.secchan.nl_auth_message.dns_host  DNS Host
        String
    netlogon.secchan.nl_auth_message.message_flags  Message Flags
        Unsigned 32-bit integer
    netlogon.secchan.nl_auth_message.message_flags.dns_domain  DNS Domain
        Boolean
    netlogon.secchan.nl_auth_message.message_flags.dns_host  DNS Host
        Boolean
    netlogon.secchan.nl_auth_message.message_flags.nb_domain  NetBios Domain
        Boolean
    netlogon.secchan.nl_auth_message.message_flags.nb_host  NetBios Host
        Boolean
    netlogon.secchan.nl_auth_message.message_flags.nb_host_utf8  NetBios Host(UTF8)
        Boolean
    netlogon.secchan.nl_auth_message.message_type  Message Type
        Unsigned 32-bit integer
    netlogon.secchan.nl_auth_message.nb_domain  NetBios Domain
        String
    netlogon.secchan.nl_auth_message.nb_host  NetBios Host
        String
    netlogon.secchan.nl_auth_message.nb_host_utf8  NetBios Host(UTF8)
        String
    netlogon.secchan.nonce  Nonce
        Byte array
    netlogon.secchan.sealalg  Seal algorithm
        Unsigned 16-bit integer
    netlogon.secchan.seq  Sequence No
        Byte array
    netlogon.secchan.signalg  Sign algorithm
        Unsigned 16-bit integer
    netlogon.secchan.verifier  Secure Channel Verifier
        No value
        Verifier
    netlogon.security_information  Security Information
        Unsigned 32-bit integer
    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
    netlogon.serverchallenge  Server Challenge
        Byte array
    netlogon.servercred  Server Credential
        Byte array
    netlogon.serverrid  Account RID
        Unsigned 32-bit integer
    netlogon.site_name  Site Name
        String
    netlogon.sync_context  Sync Context
        Unsigned 32-bit integer
    netlogon.system_flags  System Flags
        Unsigned 32-bit integer
    netlogon.tc_connection_status  TC Connection Status
        Unsigned 32-bit integer
    netlogon.time_limit  Time Limit
        Time duration
    netlogon.timestamp  Timestamp
        Date/Time stamp
    netlogon.trust.attribs.cross_organization  Cross Organization
        Boolean
    netlogon.trust.attribs.forest_transitive  Forest Transitive
        Boolean
    netlogon.trust.attribs.non_transitive  Non Transitive
        Boolean
    netlogon.trust.attribs.quarantined_domain  Quarantined Domain
        Boolean
    netlogon.trust.attribs.treat_as_external  Treat As External
        Boolean
    netlogon.trust.attribs.uplevel_only  Uplevel Only
        Boolean
    netlogon.trust.attribs.within_forest  Within Forest
        Boolean
    netlogon.trust.extention  Trust extension
        String
        Trusts extension.
    netlogon.trust.extention.maxcount  Max Count
        Unsigned 32-bit integer
        Max Count
    netlogon.trust.extention_length  Length
        Unsigned 32-bit integer
        Length
    netlogon.trust.extention_offset  Offset
        Unsigned 32-bit integer
        Trusts extension.
    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
    netlogon.trust_flags  Trust Flags
        Unsigned 32-bit integer
    netlogon.trust_type  Trust Type
        Unsigned 32-bit integer
    netlogon.trusted_dc  Trusted DC
        String
    netlogon.unknown.char  Unknown char
        Unsigned 8-bit integer
        Unknown char. If you know what this is, contact wireshark developers.
    netlogon.unknown.long  Unknown long
        Unsigned 32-bit integer
        Unknown long. If you know what this is, contact wireshark developers.
    netlogon.unknown.short  Unknown short
        Unsigned 16-bit integer
        Unknown short. If you know what this is, contact wireshark developers.
    netlogon.unknown_string  Unknown string
        String
        Unknown string. If you know what this is, contact wireshark developers.
    netlogon.user.account_control.account_auto_locked  Account Auto Locked
        Boolean
        The user account control account_auto_locked flag
    netlogon.user.account_control.account_disabled  Account Disabled
        Boolean
        The user account control account_disabled flag
    netlogon.user.account_control.dont_expire_password  Don't Expire Password
        Boolean
        The user account control dont_expire_password flag
    netlogon.user.account_control.dont_require_preauth  Don't 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
    netlogon.validation_level  Validation Level
        Unsigned 16-bit integer
        Requested level of validation
    netlogon.werr.rc  WERR error code
        Unsigned 32-bit integer
        WERR Error Code
    netlogon.wkst.fqdn  Wkst FQDN
        String
        Workstation FQDN
    netlogon.wkst.name  Wkst Name
        String
        Workstation Name
    netlogon.wkst.os  Wkst OS
        String
        Workstation OS
    netlogon.wkst.site_name  Wkst Site Name
        String
        Workstation Site Name
    netlogon.wksts  Workstations
        String
    netlogon.workstation.flags  Workstation Flags
        Unsigned 32-bit integer
        Flags
    ntlmssp.neg_flags.na1  Account lockout
        Boolean
        Account lockout
    ntlmssp.neg_flags.na10  BDC handling Changelogs
        Boolean
        BDC Changelog
    ntlmssp.neg_flags.na100  Refusal of password change
        Boolean
        PWD change refusal
    ntlmssp.neg_flags.na1000  Avoid replication account database
        Boolean
        Avoid replication account database
    ntlmssp.neg_flags.na10000  DNS trusts supported
        Boolean
        DNS Trusts
    ntlmssp.neg_flags.na100000  Not used 1000000
        Boolean
        Not used
    ntlmssp.neg_flags.na2  NT3.5 BDC continious update
        Boolean
        NT3.5
    ntlmssp.neg_flags.na20  Restarting full DC sync
        Boolean
        Restarting full DC sync
    ntlmssp.neg_flags.na200  SendToSam
        Boolean
        SendToSam
    ntlmssp.neg_flags.na2000  Avoid replication Auth database
        Boolean
        Avoid replication auth database
    ntlmssp.neg_flags.na20000  ServerPasswordSet2 supported
        Boolean
        PasswordSet2
    ntlmssp.neg_flags.na200000  Not used 2000000
        Boolean
        Not used
    ntlmssp.neg_flags.na4  RC4 encryption
        Boolean
        RC4
    ntlmssp.neg_flags.na40  Handle multiple SIDs
        Boolean
        Handle multiple SIDs
    ntlmssp.neg_flags.na400  Generic pass-through
        Boolean
        Generic pass-through
    ntlmssp.neg_flags.na4000  Strong key
        Boolean
        Strong key
    ntlmssp.neg_flags.na40000  GetDomainInfo supported
        Boolean
        GetDomainInfo
    ntlmssp.neg_flags.na400000  Not used 4000000
        Boolean
        Not used
    ntlmssp.neg_flags.na8  Promotion count(deprecated)
        Boolean
        Promotion count
    ntlmssp.neg_flags.na80  DatabaseRedo call
        Boolean
        DatabaseRedo call
    ntlmssp.neg_flags.na800  Concurent RPC
        Boolean
        Concurent RPC
    ntlmssp.neg_flags.na8000  Transitive trusts
        Boolean
        Transitive trust
    ntlmssp.neg_flags.na80000  Cross forest trust
        Boolean
        Cross forest trust
    ntlmssp.neg_flags.na800000  Not used 8000000
        Boolean
        Not used
    ntlmssp.neg_flags.na8000000  Not used 80000000
        Boolean
        Not used

Microsoft Plug and Play service (pnp)

    pnp.opnum  Operation
        Unsigned 16-bit integer

Microsoft Routing and Remote Access Service (rras)

    rras.opnum  Operation
        Unsigned 16-bit integer

Microsoft Service Control (svcctl)

    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
    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

Microsoft Spool Subsystem (spoolss)

    secdescbuf.len  Length
        Unsigned 32-bit integer
    secdescbuf.max_len  Max len
        Unsigned 32-bit integer
    secdescbuf.undoc  Undocumented
        Unsigned 32-bit integer
    setprinterdataex.data  Data
        Byte array
    setprinterdataex.max_len  Max len
        Unsigned 32-bit integer
    setprinterdataex.real_len  Real len
        Unsigned 32-bit integer
    spoolprinterinfo.devmode_ptr  Devmode pointer
        Unsigned 32-bit integer
    spoolprinterinfo.secdesc_ptr  Secdesc pointer
        Unsigned 32-bit integer
    spoolss.Datatype  Datatype
        String
    spoolss.access_mask.job_admin  Job admin
        Boolean
    spoolss.access_mask.printer_admin  Printer admin
        Boolean
    spoolss.access_mask.printer_use  Printer use
        Boolean
    spoolss.access_mask.server_admin  Server admin
        Boolean
    spoolss.access_mask.server_enum  Server enum
        Boolean
    spoolss.access_required  Access required
        Unsigned 32-bit integer
    spoolss.architecture  Architecture name
        String
    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
    spoolss.defaultdatatype  Default data type
        String
    spoolss.dependentfiles  Dependent files
        String
    spoolss.devicemodectr.size  Devicemode ctr size
        Unsigned 32-bit integer
    spoolss.devmode  Devicemode
        Unsigned 32-bit integer
    spoolss.devmode.bits_per_pel  Bits per pel
        Unsigned 32-bit integer
    spoolss.devmode.collate  Collate
        Unsigned 16-bit integer
    spoolss.devmode.color  Color
        Unsigned 16-bit integer
    spoolss.devmode.copies  Copies
        Unsigned 16-bit integer
    spoolss.devmode.default_source  Default source
        Unsigned 16-bit integer
    spoolss.devmode.display_flags  Display flags
        Unsigned 32-bit integer
    spoolss.devmode.display_freq  Display frequency
        Unsigned 32-bit integer
    spoolss.devmode.dither_type  Dither type
        Unsigned 32-bit integer
    spoolss.devmode.driver_extra  Driver extra
        Byte array
    spoolss.devmode.driver_extra_len  Driver extra length
        Unsigned 32-bit integer
    spoolss.devmode.driver_version  Driver version
        Unsigned 16-bit integer
    spoolss.devmode.duplex  Duplex
        Unsigned 16-bit integer
    spoolss.devmode.fields  Fields
        Unsigned 32-bit integer
    spoolss.devmode.fields.bits_per_pel  Bits per pel
        Boolean
    spoolss.devmode.fields.collate  Collate
        Boolean
    spoolss.devmode.fields.color  Color
        Boolean
    spoolss.devmode.fields.copies  Copies
        Boolean
    spoolss.devmode.fields.default_source  Default source
        Boolean
    spoolss.devmode.fields.display_flags  Display flags
        Boolean
    spoolss.devmode.fields.display_frequency  Display frequency
        Boolean
    spoolss.devmode.fields.dither_type  Dither type
        Boolean
    spoolss.devmode.fields.duplex  Duplex
        Boolean
    spoolss.devmode.fields.form_name  Form name
        Boolean
    spoolss.devmode.fields.icm_intent  ICM intent
        Boolean
    spoolss.devmode.fields.icm_method  ICM method
        Boolean
    spoolss.devmode.fields.log_pixels  Log pixels
        Boolean
    spoolss.devmode.fields.media_type  Media type
        Boolean
    spoolss.devmode.fields.nup  N-up
        Boolean
    spoolss.devmode.fields.orientation  Orientation
        Boolean
    spoolss.devmode.fields.panning_height  Panning height
        Boolean
    spoolss.devmode.fields.panning_width  Panning width
        Boolean
    spoolss.devmode.fields.paper_length  Paper length
        Boolean
    spoolss.devmode.fields.paper_size  Paper size
        Boolean
    spoolss.devmode.fields.paper_width  Paper width
        Boolean
    spoolss.devmode.fields.pels_height  Pels height
        Boolean
    spoolss.devmode.fields.pels_width  Pels width
        Boolean
    spoolss.devmode.fields.position  Position
        Boolean
    spoolss.devmode.fields.print_quality  Print quality
        Boolean
    spoolss.devmode.fields.scale  Scale
        Boolean
    spoolss.devmode.fields.tt_option  TT option
        Boolean
    spoolss.devmode.fields.y_resolution  Y resolution
        Boolean
    spoolss.devmode.icm_intent  ICM intent
        Unsigned 32-bit integer
    spoolss.devmode.icm_method  ICM method
        Unsigned 32-bit integer
    spoolss.devmode.log_pixels  Log pixels
        Unsigned 16-bit integer
    spoolss.devmode.media_type  Media type
        Unsigned 32-bit integer
    spoolss.devmode.orientation  Orientation
        Unsigned 16-bit integer
    spoolss.devmode.panning_height  Panning height
        Unsigned 32-bit integer
    spoolss.devmode.panning_width  Panning width
        Unsigned 32-bit integer
    spoolss.devmode.paper_length  Paper length
        Unsigned 16-bit integer
    spoolss.devmode.paper_size  Paper size
        Unsigned 16-bit integer
    spoolss.devmode.paper_width  Paper width
        Unsigned 16-bit integer
    spoolss.devmode.pels_height  Pels height
        Unsigned 32-bit integer
    spoolss.devmode.pels_width  Pels width
        Unsigned 32-bit integer
    spoolss.devmode.print_quality  Print quality
        Unsigned 16-bit integer
    spoolss.devmode.reserved1  Reserved1
        Unsigned 32-bit integer
    spoolss.devmode.reserved2  Reserved2
        Unsigned 32-bit integer
    spoolss.devmode.scale  Scale
        Unsigned 16-bit integer
    spoolss.devmode.size  Size
        Unsigned 32-bit integer
    spoolss.devmode.size2  Size2
        Unsigned 16-bit integer
    spoolss.devmode.spec_version  Spec version
        Unsigned 16-bit integer
    spoolss.devmode.tt_option  TT option
        Unsigned 16-bit integer
    spoolss.devmode.y_resolution  Y resolution
        Unsigned 16-bit integer
    spoolss.document  Document name
        String
    spoolss.driverdate  Driver Date
        Date/Time stamp
        Date of driver creation
    spoolss.drivername  Driver name
        String
    spoolss.driverpath  Driver path
        String
    spoolss.driverversion  Driver version
        Unsigned 32-bit integer
        Printer name
    spoolss.elapsed_time  Elapsed time
        Unsigned 32-bit integer
    spoolss.end_time  End time
        Unsigned 32-bit integer
    spoolss.enumforms.num  Num
        Unsigned 32-bit integer
    spoolss.enumjobs.firstjob  First job
        Unsigned 32-bit integer
        Index of first job to return
    spoolss.enumjobs.level  Info level
        Unsigned 32-bit integer
    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
    spoolss.enumprinterdataex.name_len  Name len
        Unsigned 32-bit integer
    spoolss.enumprinterdataex.name_offset  Name offset
        Unsigned 32-bit integer
    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
    spoolss.enumprinterdataex.val_dword.low  DWORD value (low)
        Unsigned 16-bit integer
    spoolss.enumprinterdataex.value_len  Value len
        Unsigned 32-bit integer
    spoolss.enumprinterdataex.value_offset  Value offset
        Unsigned 32-bit integer
    spoolss.enumprinterdataex.value_type  Value type
        Unsigned 32-bit integer
    spoolss.enumprinters.flags  Flags
        Unsigned 32-bit integer
    spoolss.enumprinters.flags.enum_connections  Enum connections
        Boolean
    spoolss.enumprinters.flags.enum_default  Enum default
        Boolean
    spoolss.enumprinters.flags.enum_local  Enum local
        Boolean
    spoolss.enumprinters.flags.enum_name  Enum name
        Boolean
    spoolss.enumprinters.flags.enum_network  Enum network
        Boolean
    spoolss.enumprinters.flags.enum_remote  Enum remote
        Boolean
    spoolss.enumprinters.flags.enum_shared  Enum shared
        Boolean
    spoolss.form  Data
        Unsigned 32-bit integer
    spoolss.form.flags  Flags
        Unsigned 32-bit integer
    spoolss.form.height  Height
        Unsigned 32-bit integer
    spoolss.form.horiz  Horizontal
        Unsigned 32-bit integer
    spoolss.form.left  Left margin
        Unsigned 32-bit integer
        Left
    spoolss.form.level  Level
        Unsigned 32-bit integer
    spoolss.form.name  Name
        String
    spoolss.form.top  Top
        Unsigned 32-bit integer
    spoolss.form.unknown  Unknown
        Unsigned 32-bit integer
    spoolss.form.vert  Vertical
        Unsigned 32-bit integer
    spoolss.form.width  Width
        Unsigned 32-bit integer
    spoolss.hardwareid  Hardware ID
        String
        Hardware Identification Information
    spoolss.helpfile  Help file
        String
    spoolss.hnd  Context handle
        Byte array
        SPOOLSS policy handle
    spoolss.job.bytesprinted  Job bytes printed
        Unsigned 32-bit integer
    spoolss.job.id  Job ID
        Unsigned 32-bit integer
        Job identification number
    spoolss.job.pagesprinted  Job pages printed
        Unsigned 32-bit integer
    spoolss.job.position  Job position
        Unsigned 32-bit integer
    spoolss.job.priority  Job priority
        Unsigned 32-bit integer
    spoolss.job.size  Job size
        Unsigned 32-bit integer
    spoolss.job.status  Job status
        Unsigned 32-bit integer
    spoolss.job.status.blocked  Blocked
        Boolean
    spoolss.job.status.deleted  Deleted
        Boolean
    spoolss.job.status.deleting  Deleting
        Boolean
    spoolss.job.status.error  Error
        Boolean
    spoolss.job.status.offline  Offline
        Boolean
    spoolss.job.status.paperout  Paperout
        Boolean
    spoolss.job.status.paused  Paused
        Boolean
    spoolss.job.status.printed  Printed
        Boolean
    spoolss.job.status.printing  Printing
        Boolean
    spoolss.job.status.spooling  Spooling
        Boolean
    spoolss.job.status.user_intervention  User intervention
        Boolean
    spoolss.job.totalbytes  Job total bytes
        Unsigned 32-bit integer
    spoolss.job.totalpages  Job total pages
        Unsigned 32-bit integer
    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
    spoolss.majordriverversion  Major Driver Version
        Unsigned 32-bit integer
        Driver Version High
    spoolss.mfgname  Mfgname
        String
        Manufacturer Name
    spoolss.minordriverversion  Minor Driver Version
        Unsigned 32-bit integer
        Driver Version Low
    spoolss.monitorname  Monitor name
        String
    spoolss.needed  Needed
        Unsigned 32-bit integer
        Size of buffer required for request
    spoolss.notify_field  Field
        Unsigned 16-bit integer
    spoolss.notify_info.count  Count
        Unsigned 32-bit integer
    spoolss.notify_info.flags  Flags
        Unsigned 32-bit integer
    spoolss.notify_info.version  Version
        Unsigned 32-bit integer
    spoolss.notify_info_data.buffer  Buffer
        Unsigned 32-bit integer
    spoolss.notify_info_data.buffer.data  Buffer data
        Byte array
    spoolss.notify_info_data.buffer.len  Buffer length
        Unsigned 32-bit integer
    spoolss.notify_info_data.bufsize  Buffer size
        Unsigned 32-bit integer
    spoolss.notify_info_data.count  Count
        Unsigned 32-bit integer
    spoolss.notify_info_data.jobid  Job Id
        Unsigned 32-bit integer
    spoolss.notify_info_data.type  Type
        Unsigned 16-bit integer
    spoolss.notify_info_data.value1  Value1
        Unsigned 32-bit integer
    spoolss.notify_info_data.value2  Value2
        Unsigned 32-bit integer
    spoolss.notify_option.count  Count
        Unsigned 32-bit integer
    spoolss.notify_option.reserved1  Reserved1
        Unsigned 16-bit integer
    spoolss.notify_option.reserved2  Reserved2
        Unsigned 32-bit integer
    spoolss.notify_option.reserved3  Reserved3
        Unsigned 32-bit integer
    spoolss.notify_option.type  Type
        Unsigned 16-bit integer
    spoolss.notify_option_data.count  Count
        Unsigned 32-bit integer
    spoolss.notify_options.count  Count
        Unsigned 32-bit integer
    spoolss.notify_options.flags  Flags
        Unsigned 32-bit integer
    spoolss.notify_options.version  Version
        Unsigned 32-bit integer
    spoolss.notifyname  Notify name
        String
    spoolss.oemrul  OEM URL
        String
        OEM URL - Website of Vendor
    spoolss.offered  Offered
        Unsigned 32-bit integer
        Size of buffer offered in this request
    spoolss.offset  Offset
        Unsigned 32-bit integer
        Offset of data
    spoolss.opnum  Operation
        Unsigned 16-bit integer
    spoolss.outputfile  Output file
        String
        Output File
    spoolss.padding  Padding
        Unsigned 32-bit integer
        Some padding - conveys no semantic information
    spoolss.parameters  Parameters
        String
    spoolss.portname  Port name
        String
    spoolss.previousdrivernames  Previous Driver Names
        String
    spoolss.printer.action  Action
        Unsigned 32-bit integer
    spoolss.printer.averageppm  Average PPM
        Unsigned 32-bit integer
    spoolss.printer.build_version  Build version
        Unsigned 16-bit integer
    spoolss.printer.c_setprinter  Csetprinter
        Unsigned 32-bit integer
    spoolss.printer.changeid  Change id
        Unsigned 32-bit integer
    spoolss.printer.cjobs  CJobs
        Unsigned 32-bit integer
    spoolss.printer.default_priority  Default Priority
        Unsigned 32-bit integer
    spoolss.printer.flags  Flags
        Unsigned 32-bit integer
    spoolss.printer.global_counter  Global counter
        Unsigned 32-bit integer
    spoolss.printer.guid  GUID
        String
    spoolss.printer.jobs  Jobs
        Unsigned 32-bit integer
    spoolss.printer.major_version  Major version
        Unsigned 16-bit integer
    spoolss.printer.printer_errors  Printer errors
        Unsigned 32-bit integer
    spoolss.printer.priority  Priority
        Unsigned 32-bit integer
    spoolss.printer.session_ctr  Session counter
        Unsigned 32-bit integer
        Sessopm counter
    spoolss.printer.total_bytes  Total bytes
        Unsigned 32-bit integer
    spoolss.printer.total_jobs  Total jobs
        Unsigned 32-bit integer
    spoolss.printer.total_pages  Total pages
        Unsigned 32-bit integer
    spoolss.printer.unknown11  Unknown 11
        Unsigned 32-bit integer
    spoolss.printer.unknown13  Unknown 13
        Unsigned 32-bit integer
    spoolss.printer.unknown14  Unknown 14
        Unsigned 32-bit integer
    spoolss.printer.unknown15  Unknown 15
        Unsigned 32-bit integer
    spoolss.printer.unknown16  Unknown 16
        Unsigned 32-bit integer
    spoolss.printer.unknown18  Unknown 18
        Unsigned 32-bit integer
    spoolss.printer.unknown20  Unknown 20
        Unsigned 32-bit integer
    spoolss.printer.unknown22  Unknown 22
        Unsigned 16-bit integer
    spoolss.printer.unknown23  Unknown 23
        Unsigned 16-bit integer
    spoolss.printer.unknown24  Unknown 24
        Unsigned 16-bit integer
    spoolss.printer.unknown25  Unknown 25
        Unsigned 16-bit integer
    spoolss.printer.unknown26  Unknown 26
        Unsigned 16-bit integer
    spoolss.printer.unknown27  Unknown 27
        Unsigned 16-bit integer
    spoolss.printer.unknown28  Unknown 28
        Unsigned 16-bit integer
    spoolss.printer.unknown29  Unknown 29
        Unsigned 16-bit integer
    spoolss.printer.unknown7  Unknown 7
        Unsigned 32-bit integer
    spoolss.printer.unknown8  Unknown 8
        Unsigned 32-bit integer
    spoolss.printer.unknown9  Unknown 9
        Unsigned 32-bit integer
    spoolss.printer_attributes  Attributes
        Unsigned 32-bit integer
    spoolss.printer_attributes.default  Default (9x/ME only)
        Boolean
        Default
    spoolss.printer_attributes.direct  Direct
        Boolean
    spoolss.printer_attributes.do_complete_first  Do complete first
        Boolean
    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
    spoolss.printer_attributes.keep_printed_jobs  Keep printed jobs
        Boolean
    spoolss.printer_attributes.local  Local
        Boolean
    spoolss.printer_attributes.network  Network
        Boolean
    spoolss.printer_attributes.published  Published
        Boolean
    spoolss.printer_attributes.queued  Queued
        Boolean
    spoolss.printer_attributes.raw_only  Raw only
        Boolean
    spoolss.printer_attributes.shared  Shared
        Boolean
    spoolss.printer_attributes.work_offline  Work offline (9x/ME only)
        Boolean
        Work offline
    spoolss.printer_local  Printer local
        Unsigned 32-bit integer
    spoolss.printer_status  Status
        Unsigned 32-bit integer
    spoolss.printercomment  Printer comment
        String
    spoolss.printerdata  Data
        Unsigned 32-bit integer
    spoolss.printerdata.data  Data
        Byte array
        Printer data
    spoolss.printerdata.data.dword  DWORD data
        Unsigned 32-bit integer
    spoolss.printerdata.data.sz  String data
        String
    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
    spoolss.printerdata.value  Value
        String
        Printer data value
    spoolss.printerdesc  Printer description
        String
    spoolss.printerlocation  Printer location
        String
    spoolss.printername  Printer name
        String
    spoolss.printprocessor  Print processor
        String
    spoolss.provider  Provider
        String
        Provider of Driver
    spoolss.rc  Return code
        Unsigned 32-bit integer
        SPOOLSS return code
    spoolss.replyopenprinter.unk0  Unknown 0
        Unsigned 32-bit integer
    spoolss.replyopenprinter.unk1  Unknown 1
        Unsigned 32-bit integer
    spoolss.returned  Returned
        Unsigned 32-bit integer
        Number of items returned
    spoolss.rffpcnex.flags  RFFPCNEX flags
        Unsigned 32-bit integer
    spoolss.rffpcnex.flags.add_driver  Add driver
        Boolean
    spoolss.rffpcnex.flags.add_form  Add form
        Boolean
    spoolss.rffpcnex.flags.add_job  Add job
        Boolean
    spoolss.rffpcnex.flags.add_port  Add port
        Boolean
    spoolss.rffpcnex.flags.add_printer  Add printer
        Boolean
    spoolss.rffpcnex.flags.add_processor  Add processor
        Boolean
    spoolss.rffpcnex.flags.configure_port  Configure port
        Boolean
    spoolss.rffpcnex.flags.delete_driver  Delete driver
        Boolean
    spoolss.rffpcnex.flags.delete_form  Delete form
        Boolean
    spoolss.rffpcnex.flags.delete_job  Delete job
        Boolean
    spoolss.rffpcnex.flags.delete_port  Delete port
        Boolean
    spoolss.rffpcnex.flags.delete_printer  Delete printer
        Boolean
    spoolss.rffpcnex.flags.delete_processor  Delete processor
        Boolean
    spoolss.rffpcnex.flags.failed_connection_printer  Failed printer connection
        Boolean
    spoolss.rffpcnex.flags.set_driver  Set driver
        Boolean
    spoolss.rffpcnex.flags.set_form  Set form
        Boolean
    spoolss.rffpcnex.flags.set_job  Set job
        Boolean
    spoolss.rffpcnex.flags.set_printer  Set printer
        Boolean
    spoolss.rffpcnex.flags.timeout  Timeout
        Boolean
    spoolss.rffpcnex.flags.write_job  Write job
        Boolean
    spoolss.rffpcnex.options  Options
        Unsigned 32-bit integer
        RFFPCNEX options
    spoolss.routerreplyprinter.changeid  Change id
        Unsigned 32-bit integer
    spoolss.routerreplyprinter.condition  Condition
        Unsigned 32-bit integer
    spoolss.routerreplyprinter.unknown1  Unknown1
        Unsigned 32-bit integer
    spoolss.rrpcn.changehigh  Change high
        Unsigned 32-bit integer
    spoolss.rrpcn.changelow  Change low
        Unsigned 32-bit integer
    spoolss.rrpcn.unk0  Unknown 0
        Unsigned 32-bit integer
    spoolss.rrpcn.unk1  Unknown 1
        Unsigned 32-bit integer
    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
    spoolss.setjob.cmd  Set job command
        Unsigned 32-bit integer
        Printer data name
    spoolss.setpfile  Separator file
        String
    spoolss.setprinter_cmd  Command
        Unsigned 32-bit integer
    spoolss.sharename  Share name
        String
    spoolss.start_time  Start time
        Unsigned 32-bit integer
    spoolss.textstatus  Text status
        String
    spoolss.time.day  Day
        Unsigned 32-bit integer
    spoolss.time.dow  Day of week
        Unsigned 32-bit integer
    spoolss.time.hour  Hour
        Unsigned 32-bit integer
    spoolss.time.minute  Minute
        Unsigned 32-bit integer
    spoolss.time.month  Month
        Unsigned 32-bit integer
    spoolss.time.msec  Millisecond
        Unsigned 32-bit integer
    spoolss.time.second  Second
        Unsigned 32-bit integer
    spoolss.time.year  Year
        Unsigned 32-bit integer
    spoolss.userlevel.build  Build
        Unsigned 32-bit integer
    spoolss.userlevel.client  Client
        String
    spoolss.userlevel.major  Major
        Unsigned 32-bit integer
    spoolss.userlevel.minor  Minor
        Unsigned 32-bit integer
    spoolss.userlevel.processor  Processor
        Unsigned 32-bit integer
    spoolss.userlevel.size  Size
        Unsigned 32-bit integer
    spoolss.userlevel.user  User
        String
    spoolss.username  User name
        String
    spoolss.writeprinter.numwritten  Num written
        Unsigned 32-bit integer
        Number of bytes written

Microsoft Telephony API Service (tapi)

    tapi.hnd  Context Handle
        Byte array
        Context handle
    tapi.opnum  Operation
        Unsigned 16-bit integer
    tapi.rc  Return code
        Unsigned 32-bit integer
        TAPI return code
    tapi.unknown.bytes  Unknown bytes
        Byte array
        Unknown bytes. If you know what this is, contact wireshark developers.
    tapi.unknown.long  Unknown long
        Unsigned 32-bit integer
        Unknown long. If you know what this is, contact wireshark developers.
    tapi.unknown.string  Unknown string
        String
        Unknown string. If you know what this is, contact wireshark developers.

Microsoft Windows Browser Protocol (browser)

    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
        NULL terminated string
    browser.command  Command
        Unsigned 8-bit integer
        Browse command opcode
    browser.comment  Host Comment
        NULL terminated string
        Server Comment
    browser.election.criteria  Election Criteria
        Unsigned 32-bit integer
    browser.election.desire  Election Desire
        Unsigned 8-bit integer
    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
    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
    browser.election.version  Election Version
        Unsigned 8-bit integer
    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.proto_minor  Browser Protocol Minor Version
        Unsigned 8-bit integer
    browser.reset_cmd  ResetBrowserState Command
        Unsigned 8-bit integer
    browser.reset_cmd.demote  Demote LMB
        Boolean
    browser.reset_cmd.flush  Flush Browse List
        Boolean
    browser.reset_cmd.stop_lmb  Stop Being LMB
        Boolean
    browser.response_computer_name  Response Computer Name
        NULL terminated string
    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.dfs  DFS
        Boolean
        Is This A DFS server?
    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

Microsoft Windows Lanman Remote API Protocol (lanman)

    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

Microsoft Windows Logon Protocol (Old) (smb_netlogon)

    smb_netlogon.client_site_name  Client Site Name
        String
        SMB NETLOGON Client Site Name
    smb_netlogon.command  Command
        Unsigned 8-bit integer
        SMB NETLOGON Command
    smb_netlogon.computer_name  Computer Name
        String
        SMB NETLOGON Computer Name
    smb_netlogon.date_time  Date/Time
        Unsigned 32-bit integer
        SMB NETLOGON Date/Time
    smb_netlogon.db_count  DB Count
        Unsigned 32-bit integer
        SMB NETLOGON DB Count
    smb_netlogon.db_index  Database Index
        Unsigned 32-bit integer
        SMB NETLOGON Database Index
    smb_netlogon.domain.guid  Domain GUID
        Byte array
    smb_netlogon.domain_dns_name  Domain DNS Name
        String
        SMB NETLOGON Domain DNS Name
    smb_netlogon.domain_name  Domain Name
        String
        SMB NETLOGON Domain Name
    smb_netlogon.domain_sid_size  Domain SID Size
        Unsigned 32-bit integer
        SMB NETLOGON Domain SID Size
    smb_netlogon.flags.autolock  Autolock
        Boolean
        SMB NETLOGON Account Autolock
    smb_netlogon.flags.enabled  Enabled
        Boolean
        SMB NETLOGON Is This Account Enabled
    smb_netlogon.flags.expire  Expire
        Boolean
        SMB NETLOGON Will Account Expire
    smb_netlogon.flags.homedir  Homedir
        Boolean
        SMB NETLOGON Homedir Required
    smb_netlogon.flags.interdomain  Interdomain Trust
        Boolean
        SMB NETLOGON Inter-domain Trust Account
    smb_netlogon.flags.mns  MNS User
        Boolean
        SMB NETLOGON MNS User Account
    smb_netlogon.flags.normal  Normal User
        Boolean
        SMB NETLOGON Normal User Account
    smb_netlogon.flags.password  Password
        Boolean
        SMB NETLOGON Password Required
    smb_netlogon.flags.server  Server Trust
        Boolean
        SMB NETLOGON Server Trust Account
    smb_netlogon.flags.temp_dup  Temp Duplicate User
        Boolean
        SMB NETLOGON Temp Duplicate User Account
    smb_netlogon.flags.workstation  Workstation Trust
        Boolean
        SMB NETLOGON Workstation Trust Account
    smb_netlogon.forest_dns_name  Forest DNS Name
        String
        SMB NETLOGON Forest DNS Name
    smb_netlogon.large_serial  Large Serial Number
        Unsigned 64-bit integer
        SMB NETLOGON Large Serial Number
    smb_netlogon.lm_token  LM Token
        Unsigned 16-bit integer
        SMB NETLOGON LM Token
    smb_netlogon.lmnt_token  LMNT Token
        Unsigned 16-bit integer
        SMB NETLOGON LMNT Token
    smb_netlogon.low_serial  Low Serial Number
        Unsigned 32-bit integer
        SMB NETLOGON Low Serial Number
    smb_netlogon.mailslot_name  Mailslot Name
        String
        SMB NETLOGON Mailslot Name
    smb_netlogon.major_version  Workstation Major Version
        Unsigned 8-bit integer
        SMB NETLOGON Workstation Major Version
    smb_netlogon.minor_version  Workstation Minor Version
        Unsigned 8-bit integer
        SMB NETLOGON Workstation Minor Version
    smb_netlogon.nt_date_time  NT Date/Time
        Date/Time stamp
        SMB NETLOGON NT Date/Time
    smb_netlogon.nt_version  NT Version
        Unsigned 32-bit integer
        SMB NETLOGON NT Version
    smb_netlogon.os_version  Workstation OS Version
        Unsigned 8-bit integer
        SMB NETLOGON Workstation OS Version
    smb_netlogon.pdc_name  PDC Name
        String
        SMB NETLOGON PDC Name
    smb_netlogon.pulse  Pulse
        Unsigned 32-bit integer
        SMB NETLOGON Pulse
    smb_netlogon.random  Random
        Unsigned 32-bit integer
        SMB NETLOGON Random
    smb_netlogon.request_count  Request Count
        Unsigned 16-bit integer
        SMB NETLOGON Request Count
    smb_netlogon.script_name  Script Name
        String
        SMB NETLOGON Script Name
    smb_netlogon.server_dns_name  Server DNS Name
        String
        SMB NETLOGON Server DNS Name
    smb_netlogon.server_ip  Server IP
        IPv4 address
        Server IP Address
    smb_netlogon.server_name  Server Name
        String
        SMB NETLOGON Server Name
    smb_netlogon.server_site_name  Server Site Name
        String
        SMB NETLOGON Server Site Name
    smb_netlogon.unicode_computer_name  Unicode Computer Name
        String
        SMB NETLOGON Unicode Computer Name
    smb_netlogon.unicode_pdc_name  Unicode PDC Name
        String
        SMB NETLOGON Unicode PDC Name
    smb_netlogon.unknown  Unknown
        Unsigned 8-bit integer
    smb_netlogon.update  Update Type
        Unsigned 16-bit integer
        SMB NETLOGON Update Type
    smb_netlogon.user_name  User Name
        String
        SMB NETLOGON User Name

Mobile IP (mip)

    mip.ack.i  Inform
        Boolean
        Inform Mobile Node
    mip.ack.reserved  Reserved
        Unsigned 8-bit integer
    mip.ack.reserved2  Reserved
        Unsigned 16-bit integer
    mip.auth.auth  Authenticator
        Byte array
        Authenticator.
    mip.auth.spi  SPI
        Unsigned 32-bit integer
        Authentication Header Security Parameter Index.
    mip.b  Broadcast Datagrams
        Boolean
        Broadcast Datagrams requested
    mip.coa  Care of Address
        IPv4 address
        Care of Address.
    mip.code  Reply Code
        Unsigned 8-bit integer
        Mobile IP Reply code.
    mip.d  Co-located Care-of Address
        Boolean
        MN using Co-located Care-of address
    mip.ext.auth.subtype  Gen Auth Ext SubType
        Unsigned 8-bit integer
        Mobile IP Auth Extension Sub Type.
    mip.ext.cvse.reserved  CVSE Reserved
        Unsigned 8-bit integer
    mip.ext.cvse.vendor_id  CVSE Vendor/org ID
        Unsigned 32-bit integer
    mip.ext.cvse.vendor_type  Vendor CVSE Type
        Unsigned 16-bit integer
    mip.ext.cvse.vendor_value  Vendor CVSE Value
        Byte array
    mip.ext.cvse.verizon_type  Verizon CVSE Type
        Unsigned 16-bit integer
    mip.ext.dynha.ha  DynHA Home Agent
        IPv4 address
        Dynamic Home Agent IP Address
    mip.ext.dynha.subtype  DynHA Ext SubType
        Unsigned 8-bit integer
        Dynamic HA Extension Sub-type
    mip.ext.len  Extension Length
        Unsigned 16-bit integer
        Mobile IP Extension Length.
    mip.ext.msgstr.subtype  MsgStr Ext SubType
        Unsigned 8-bit integer
        Message String Extension Sub-type
    mip.ext.msgstr.text  MsgStr Text
        String
        Message String Extension Text
    mip.ext.pmipv4nonskipext.pernodeauthmethod  Per-Node Authentication Method
        Unsigned 8-bit integer
    mip.ext.pmipv4nonskipext.subtype  Sub-type
        Unsigned 8-bit integer
        PMIPv4 Skippable Extension Sub-type
    mip.ext.pmipv4skipext.accesstechnology_type  Access Technology Type
        Unsigned 8-bit integer
    mip.ext.pmipv4skipext.deviceid_id  Identifier
        Byte array
        Device ID Identifier
    mip.ext.pmipv4skipext.deviceid_type  ID-Type
        Unsigned 8-bit integer
        Device ID-Type
    mip.ext.pmipv4skipext.interfaceid  Interface ID
        Byte array
    mip.ext.pmipv4skipext.subscriberid_id  Identifier
        Byte array
        Subscriber ID Identifier
    mip.ext.pmipv4skipext.subscriberid_type  ID-Type
        Unsigned 8-bit integer
        Subscriber ID-Type
    mip.ext.pmipv4skipext.subtype  Sub-type
        Unsigned 8-bit integer
        PMIPv4 Non-skippable Extension Sub-type
    mip.ext.rev.flags  Rev Ext Flags
        Unsigned 16-bit integer
        Revocation Support Extension Flags
    mip.ext.rev.i  'I' bit Support
        Boolean
        Agent supports Inform bit in Revocation
    mip.ext.rev.reserved  Reserved
        Unsigned 16-bit integer
    mip.ext.rev.tstamp  Timestamp
        Unsigned 32-bit integer
        Revocation Timestamp of Sending Agent
    mip.ext.type  Extension Type
        Unsigned 8-bit integer
        Mobile IP Extension Type.
    mip.ext.utrp.code  UDP TunRep Code
        Unsigned 8-bit integer
        UDP Tunnel Reply Code
    mip.ext.utrp.f  Rep Forced
        Boolean
        HA wants to Force UDP Tunneling
    mip.ext.utrp.flags  UDP TunRep Ext Flags
        Unsigned 16-bit integer
        UDP Tunnel Request Extension Flags
    mip.ext.utrp.keepalive  Keepalive Interval
        Unsigned 16-bit integer
        NAT Keepalive Interval
    mip.ext.utrp.reserved  Reserved
        Unsigned 16-bit integer
    mip.ext.utrp.subtype  UDP TunRep Ext SubType
        Unsigned 8-bit integer
        UDP Tunnel Reply Extension Sub-type
    mip.ext.utrq.encaptype  UDP Encap Type
        Unsigned 8-bit integer
        UDP Encapsulation Type
    mip.ext.utrq.f  Req Forced
        Boolean
        MN wants to Force UDP Tunneling
    mip.ext.utrq.flags  UDP TunReq Ext Flags
        Unsigned 8-bit integer
        UDP Tunnel Request Extension Flags
    mip.ext.utrq.r  FA Registration Required
        Boolean
        Registration through FA Required
    mip.ext.utrq.reserved1  Reserved 1
        Unsigned 8-bit integer
    mip.ext.utrq.reserved2  Reserved 2
        Unsigned 8-bit integer
    mip.ext.utrq.reserved3  Reserved 3
        Unsigned 16-bit integer
    mip.ext.utrq.subtype  UDP TunReq Ext SubType
        Unsigned 8-bit integer
        UDP Tunnel Request Extension Sub-type
    mip.extension  Extension
        Byte array
    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
    mip.nattt.nexthdr  NATTT NextHeader
        Unsigned 8-bit integer
        NAT Traversal Tunnel Next Header.
    mip.nattt.reserved  Reserved
        Unsigned 16-bit integer
    mip.rev.a  Home Agent
        Boolean
        Revocation sent by Home Agent
    mip.rev.fda  Foreign Domain Address
        IPv4 address
        Revocation Foreign Domain IP Address
    mip.rev.hda  Home Domain Address
        IPv4 address
        Revocation Home Domain IP Address
    mip.rev.i  Inform
        Boolean
        Inform Mobile Node
    mip.rev.reserved  Reserved
        Unsigned 8-bit integer
    mip.rev.reserved2  Reserved
        Unsigned 16-bit integer
    mip.revid  Revocation Identifier
        Unsigned 32-bit integer
        Revocation Identifier of Initiating Agent
    mip.s  Simultaneous Bindings
        Boolean
        Simultaneous Bindings Allowed
    mip.t  Reverse Tunneling
        Boolean
        Reverse tunneling requested
    mip.type  Message Type
        Unsigned 8-bit integer
        Mobile IP Message type.
    mip.v  Van Jacobson
        Boolean
    mip.x  Reserved
        Boolean

Mobile IPv6 / Network Mobility (mipv6)

    fmip6.fback.k_flag  Key Management Compatibility (K) flag
        Boolean
    fmip6.fback.lifetime  Lifetime
        Unsigned 16-bit integer
    fmip6.fback.seqnr  Sequence number
        Unsigned 16-bit integer
    fmip6.fback.status  Status
        Unsigned 8-bit integer
        Fast Binding Acknowledgement status
    fmip6.fbu.a_flag  Acknowledge (A) flag
        Boolean
    fmip6.fbu.h_flag  Home Registration (H) flag
        Boolean
    fmip6.fbu.k_flag  Key Management Compatibility (K) flag
        Boolean
    fmip6.fbu.l_flag  Link-Local Compatibility (L) flag
        Boolean
        Home Registration (H) flag
    fmip6.fbu.lifetime  Lifetime
        Unsigned 16-bit integer
    fmip6.fbu.seqnr  Sequence number
        Unsigned 16-bit integer
    mip6.acoa.acoa  Alternate care-of address
        IPv6 address
        Alternate Care-of address
    mip6.ba.k_flag  Key Management Compatibility (K) flag
        Boolean
    mip6.ba.lifetime  Lifetime
        Unsigned 16-bit integer
    mip6.ba.seqnr  Sequence number
        Unsigned 16-bit integer
    mip6.ba.status  Status
        Unsigned 8-bit integer
        Binding Acknowledgement status
    mip6.bad.auth  Authenticator
        Byte array
    mip6.be.haddr  Home Address
        IPv6 address
    mip6.be.status  Status
        Unsigned 8-bit integer
        Binding Error status
    mip6.bra.interval  Refresh interval
        Unsigned 16-bit integer
    mip6.bu.a_flag  Acknowledge (A) flag
        Boolean
    mip6.bu.h_flag  Home Registration (H) flag
        Boolean
    mip6.bu.k_flag  Key Management Compatibility (K) flag
        Boolean
    mip6.bu.l_flag  Link-Local Compatibility (L) flag
        Boolean
        Home Registration (H) flag
    mip6.bu.lifetime  Lifetime
        Unsigned 16-bit integer
    mip6.bu.m_flag  MAP Registration Compatibility (M) flag
        Boolean
    mip6.bu.p_flag  Proxy Registration (P) flag
        Boolean
    mip6.bu.seqnr  Sequence number
        Unsigned 16-bit integer
    mip6.cot.cookie  Care-of Init Cookie
        Unsigned 64-bit integer
    mip6.cot.nindex  Care-of Nonce Index
        Unsigned 16-bit integer
    mip6.cot.token  Care-of Keygen Token
        Unsigned 64-bit integer
    mip6.coti.cookie  Care-of Init Cookie
        Unsigned 64-bit integer
    mip6.csum  Checksum
        Unsigned 16-bit integer
        Header Checksum
    mip6.hb.r_flag  Response (R) flag
        Boolean
    mip6.hb.seqnr  Sequence number
        Unsigned 32-bit integer
    mip6.hb.u_flag  Unsolicited (U) flag
        Boolean
    mip6.hlen  Header length
        Unsigned 8-bit integer
    mip6.hot.cookie  Home Init Cookie
        Unsigned 64-bit integer
    mip6.hot.nindex  Home Nonce Index
        Unsigned 16-bit integer
    mip6.hot.token  Home Keygen Token
        Unsigned 64-bit integer
    mip6.hoti.cookie  Home Init Cookie
        Unsigned 64-bit integer
    mip6.lla.optcode  Option-Code
        Unsigned 8-bit integer
    mip6.mhtype  Mobility Header Type
        Unsigned 8-bit integer
    mip6.mnid.subtype  Subtype
        Unsigned 8-bit integer
    mip6.ni.cni  Care-of nonce index
        Unsigned 16-bit integer
    mip6.ni.hni  Home nonce index
        Unsigned 16-bit integer
    mip6.proto  Payload protocol
        Unsigned 8-bit integer
    mip6.reserved  Reserved
        Unsigned 8-bit integer
    nemo.ba.r_flag  Mobile Router (R) flag
        Boolean
    nemo.bu.r_flag  Mobile Router (R) flag
        Boolean
    nemo.mnp.mnp  Mobile Network Prefix
        IPv6 address
    nemo.mnp.pfl  Mobile Network Prefix Length
        Unsigned 8-bit integer
    pmip6.mobility_opt  Mobility Options
        Unsigned 8-bit integer
    pmip6.timestamp  Timestamp
        Byte array
    proxy.ba.p_flag  Proxy Registration (P) flag
        Boolean

Modbus/TCP (mbtcp)

    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

Monotone Netsync (netsync)

    netsync.checksum  Checksum
        Unsigned 32-bit integer
    netsync.cmd.anonymous.collection  Collection
        String
    netsync.cmd.anonymous.role  Role
        Unsigned 8-bit integer
    netsync.cmd.auth.collection  Collection
        String
    netsync.cmd.auth.id  ID
        Byte array
    netsync.cmd.auth.nonce1  Nonce 1
        Byte array
    netsync.cmd.auth.nonce2  Nonce 2
        Byte array
    netsync.cmd.auth.role  Role
        Unsigned 8-bit integer
    netsync.cmd.auth.sig  Signature
        Byte array
    netsync.cmd.confirm.signature  Signature
        Byte array
    netsync.cmd.data.compressed  Compressed
        Unsigned 8-bit integer
    netsync.cmd.data.id  ID
        Byte array
    netsync.cmd.data.payload  Payload
        Byte array
    netsync.cmd.data.type  Type
        Unsigned 8-bit integer
    netsync.cmd.delta.base_id  Base ID
        Byte array
    netsync.cmd.delta.compressed  Compressed
        Unsigned 8-bit integer
    netsync.cmd.delta.ident_id  Ident ID
        Byte array
    netsync.cmd.delta.payload  Payload
        Byte array
    netsync.cmd.delta.type  Type
        Unsigned 8-bit integer
    netsync.cmd.done.level  Level
        Unsigned 32-bit integer
    netsync.cmd.done.type  Type
        Unsigned 8-bit integer
    netsync.cmd.error.msg  Message
        String
    netsync.cmd.hello.key  Key
        Byte array
    netsync.cmd.hello.keyname  Key Name
        String
    netsync.cmd.nonce  Nonce
        Byte array
    netsync.cmd.nonexistent.id  ID
        Byte array
    netsync.cmd.nonexistent.type  Type
        Unsigned 8-bit integer
    netsync.cmd.refine.tree_node  Tree Node
        Byte array
    netsync.cmd.send_data.id  ID
        Byte array
    netsync.cmd.send_data.type  Type
        Unsigned 8-bit integer
    netsync.cmd.send_delta.base_id  Base ID
        Byte array
    netsync.cmd.send_delta.ident_id  Ident ID
        Byte array
    netsync.cmd.send_delta.type  Type
        Unsigned 8-bit integer
    netsync.command  Command
        Unsigned 8-bit integer
    netsync.data  Data
        Byte array
    netsync.size  Size
        Unsigned 32-bit integer
    netsync.version  Version
        Unsigned 8-bit integer

Mount Service (mount)

    mount.dump.directory  Directory
        String
    mount.dump.entry  Mount List Entry
        No value
    mount.dump.hostname  Hostname
        String
    mount.export.directory  Directory
        String
    mount.export.entry  Export List Entry
        No value
    mount.export.group  Group
        String
    mount.export.groups  Groups
        No value
    mount.export.has_options  Has options
        Unsigned 32-bit integer
    mount.export.options  Options
        String
    mount.flavor  Flavor
        Unsigned 32-bit integer
    mount.flavors  Flavors
        Unsigned 32-bit integer
    mount.path  Path
        String
    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
    mount.pathconf.name_max  Maximum file name length
        Unsigned 16-bit integer
    mount.pathconf.path_max  Maximum path name length
        Unsigned 16-bit integer
    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
    mount.procedure_v2  V2 Procedure
        Unsigned 32-bit integer
    mount.procedure_v3  V3 Procedure
        Unsigned 32-bit integer
    mount.status  Status
        Unsigned 32-bit integer
    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
    mount.statvfs.f_namemax  Maximum file name length
        Unsigned 32-bit integer

Moving Picture Experts Group (mpeg)

Moving Picture Experts Group Audio (mpeg.audio)

    id3v1  ID3v1
        No value
    id3v2  ID3v2
        No value
    mpeg-audio.album  album
        String
        OCTET_STRING_SIZE_30
    mpeg-audio.artist  artist
        String
        OCTET_STRING_SIZE_30
    mpeg-audio.bitrate  bitrate
        Unsigned 32-bit integer
        INTEGER_0_15
    mpeg-audio.channel_mode  channel-mode
        Unsigned 32-bit integer
    mpeg-audio.comment  comment
        String
        OCTET_STRING_SIZE_28
    mpeg-audio.copyright  copyright
        Boolean
        BOOLEAN
    mpeg-audio.emphasis  emphasis
        Unsigned 32-bit integer
    mpeg-audio.frequency  frequency
        Unsigned 32-bit integer
        INTEGER_0_3
    mpeg-audio.genre  genre
        Unsigned 32-bit integer
    mpeg-audio.layer  layer
        Unsigned 32-bit integer
    mpeg-audio.mode_extension  mode-extension
        Unsigned 32-bit integer
        INTEGER_0_3
    mpeg-audio.must_be_zero  must-be-zero
        Unsigned 32-bit integer
        INTEGER_0_255
    mpeg-audio.original  original
        Boolean
        BOOLEAN
    mpeg-audio.padding  padding
        Boolean
        BOOLEAN
    mpeg-audio.private  private
        Boolean
        BOOLEAN
    mpeg-audio.protection  protection
        Unsigned 32-bit integer
    mpeg-audio.sync  sync
        Byte array
        BIT_STRING_SIZE_11
    mpeg-audio.tag  tag
        String
        OCTET_STRING_SIZE_3
    mpeg-audio.title  title
        String
        OCTET_STRING_SIZE_30
    mpeg-audio.track  track
        Unsigned 32-bit integer
        INTEGER_0_255
    mpeg-audio.version  version
        Unsigned 32-bit integer
    mpeg-audio.year  year
        String
        OCTET_STRING_SIZE_4
    mpeg.audio.data  Data
        Byte array
    mpeg.audio.padbytes  Padding
        Byte array

MultiProtocol Label Switching Header (mpls)

    mpls.1st_nibble  MPLS 1st nibble
        Unsigned 8-bit integer
    mpls.bottom  MPLS Bottom Of Label Stack
        Unsigned 8-bit integer
    mpls.exp  MPLS Experimental Bits
        Unsigned 8-bit integer
    mpls.label  MPLS Label
        Unsigned 32-bit integer
    mpls.oam.bip16  BIP16
        Unsigned 16-bit integer
    mpls.oam.defect_location  Defect Location (AS)
        Unsigned 32-bit integer
        Defect Location
    mpls.oam.defect_type  Defect Type
        Unsigned 16-bit integer
    mpls.oam.frequency  Frequency
        Unsigned 8-bit integer
        Frequency of probe injection
    mpls.oam.function_type  Function Type
        Unsigned 8-bit integer
        Function Type codepoint
    mpls.oam.ttsi  Trail Termination Source Identifier
        Unsigned 32-bit integer
    mpls.ttl  MPLS TTL
        Unsigned 8-bit integer
    pwach.channel_type  PW Associated Channel Type
        Unsigned 16-bit integer
    pwach.res  Reserved
        Unsigned 8-bit integer
    pwach.ver  PW Associated Channel Version
        Unsigned 8-bit integer
    pwmcw.flags  Generic/Preferred PW MPLS Control Word Flags
        Unsigned 8-bit integer
    pwmcw.length  Generic/Preferred PW MPLS Control Word Length
        Unsigned 8-bit integer
    pwmcw.sequence_number  Generic/Preferred PW MPLS Control Word Sequence Number
        Unsigned 16-bit integer

Multicast Router DISCovery protocol (mrdisc)

    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

Multicast Source Discovery Protocol (msdp)

    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

Multimedia Internet KEYing (mikey)

    mikey.  Envelope Data (PKE)
        No value
    mikey.cert  Certificate (CERT)
        No value
    mikey.cert.data  Certificate
        Byte array
    mikey.cert.len  Certificate len
        Unsigned 16-bit integer
    mikey.cert.type  Certificate type
        Unsigned 8-bit integer
    mikey.chash  CHASH
        No value
    mikey.cs_count  #CS
        Unsigned 8-bit integer
    mikey.cs_id_map_type  CS ID map type
        Unsigned 8-bit integer
    mikey.csb_id  CSB ID
        Unsigned 32-bit integer
    mikey.dh  DH Data (DH)
        No value
    mikey.dh.group  DH-Group
        Unsigned 8-bit integer
    mikey.dh.kv  KV
        Unsigned 8-bit integer
    mikey.dh.reserv  Reserv
        Unsigned 8-bit integer
    mikey.dh.value  DH-Value
        Byte array
    mikey.err  Error (ERR)
        No value
    mikey.err.no  Error no.
        Unsigned 8-bit integer
    mikey.err.reserved  Reserved
        Byte array
    mikey.ext  General Extension (EXT)
        No value
    mikey.ext.data  Data
        Byte array
    mikey.ext.len  Length
        Unsigned 16-bit integer
    mikey.ext.type  Extension type
        Unsigned 8-bit integer
    mikey.ext.value  Value
        String
    mikey.hdr  Common Header (HDR)
        No value
    mikey.id  ID
        No value
    mikey.id.data  ID
        String
    mikey.id.len  ID len
        Unsigned 16-bit integer
    mikey.id.type  ID type
        Unsigned 8-bit integer
    mikey.kemac  Key Data Transport (KEMAC)
        No value
    mikey.kemac.encr_alg  Encr alg
        Unsigned 8-bit integer
    mikey.kemac.key_data  Key data
        Byte array
    mikey.kemac.key_data_len  Key data len
        Unsigned 16-bit integer
    mikey.kemac.mac  MAC
        Byte array
    mikey.kemac.mac_alg  Mac alg
        Unsigned 8-bit integer
    mikey.key  Key data (KEY)
        No value
    mikey.key.data  Key
        Byte array
    mikey.key.data.len  Key len
        Unsigned 16-bit integer
    mikey.key.kv  KV
        Unsigned 8-bit integer
    mikey.key.kv.from  Valid from
        Byte array
    mikey.key.kv.from.len  Valid from len
        Unsigned 8-bit integer
    mikey.key.kv.spi  Valid SPI
        Byte array
    mikey.key.kv.spi.len  Valid SPI len
        Unsigned 8-bit integer
    mikey.key.kv.to  Valid to
        Byte array
    mikey.key.kv.to.len  Valid to len
        Unsigned 8-bit integer
    mikey.key.salt  Salt key
        Byte array
    mikey.key.salt.len  Salt key len
        Unsigned 16-bit integer
    mikey.key.type  Type
        Unsigned 8-bit integer
    mikey.next_payload  Next Payload
        Unsigned 8-bit integer
    mikey.payload  Payload
        String
    mikey.pke.c  C
        Unsigned 16-bit integer
    mikey.pke.data  Data
        Byte array
    mikey.pke.len  Data len
        Unsigned 16-bit integer
    mikey.prf_func  PRF func
        Unsigned 8-bit integer
    mikey.rand  RAND
        No value
    mikey.rand.data  RAND
        Byte array
    mikey.rand.len  RAND len
        Unsigned 8-bit integer
    mikey.sign  Signature (SIGN)
        No value
    mikey.sign.data  Signature
        Byte array
    mikey.sign.len  Signature len
        Unsigned 16-bit integer
    mikey.sign.type  Signature type
        Unsigned 16-bit integer
    mikey.sp  Security Policy (SP)
        No value
    mikey.sp.auth_alg  Authentication algorithm
        Unsigned 8-bit integer
    mikey.sp.auth_key_len  Session Auth. key length
        Unsigned 8-bit integer
    mikey.sp.auth_tag_len  Authentication tag length
        Unsigned 8-bit integer
    mikey.sp.encr_alg  Encryption algorithm
        Unsigned 8-bit integer
    mikey.sp.encr_len  Session Encr. key length
        Unsigned 8-bit integer
    mikey.sp.fec  Sender's FEC order
        Unsigned 8-bit integer
    mikey.sp.kd_rate  Key derivation rate
        Unsigned 8-bit integer
    mikey.sp.no  Policy No
        Unsigned 8-bit integer
    mikey.sp.param  Policy param
        Byte array
    mikey.sp.param.len  Length
        Unsigned 8-bit integer
    mikey.sp.param.type  Type
        Unsigned 8-bit integer
    mikey.sp.param_len  Policy param length
        Unsigned 16-bit integer
    mikey.sp.patam.value  Value
        Byte array
    mikey.sp.prf  SRTP Pseudo Random Function
        Unsigned 8-bit integer
    mikey.sp.proto_type  Protocol type
        Unsigned 8-bit integer
    mikey.sp.salt_len  Session Salt key length
        Unsigned 8-bit integer
    mikey.sp.srtcp_encr  SRTCP encryption
        Unsigned 8-bit integer
    mikey.sp.srtp_auth  SRTP authentication
        Unsigned 8-bit integer
    mikey.sp.srtp_encr  SRTP encryption
        Unsigned 8-bit integer
    mikey.sp.srtp_prefix  SRTP prefix length
        Unsigned 8-bit integer
    mikey.srtp_id  SRTP ID
        No value
    mikey.srtp_id.policy_no  Policy No
        Unsigned 8-bit integer
    mikey.srtp_id.roc  ROC
        Unsigned 32-bit integer
    mikey.srtp_id.ssrc  SSRC
        Unsigned 32-bit integer
    mikey.t  Timestamp (T)
        No value
    mikey.t.ntp  NTP timestamp
        String
    mikey.t.ts_type  TS type
        Unsigned 8-bit integer
    mikey.type  Data Type
        Unsigned 8-bit integer
    mikey.v  Ver msg (V)
        No value
    mikey.v.auth_alg  Auth alg
        Unsigned 8-bit integer
    mikey.v.ver_data  Ver data
        Byte array
    mikey.version  Version
        Unsigned 8-bit integer

Multiple Stream Reservation Protocol (mrp-msrp)

    mrp-msrp.accumulated_latency  Accumulated Latency
        Unsigned 32-bit integer
    mrp-msrp.attribute_length  Attribute Length
        Unsigned 8-bit integer
    mrp-msrp.attribute_list  Attribute List
        No value
    mrp-msrp.attribute_list_length  Attribute List Length
        Unsigned 16-bit integer
    mrp-msrp.attribute_type  Attribute Type
        Unsigned 8-bit integer
    mrp-msrp.end_mark  End Mark
        Unsigned 16-bit integer
    mrp-msrp.failure_bridge_id  Failure Bridge ID
        Unsigned 64-bit integer
    mrp-msrp.failure_code  Failure Code
        Unsigned 8-bit integer
    mrp-msrp.first_value  First Value
        No value
    mrp-msrp.four_packed_event  Declaration Type
        Unsigned 8-bit integer
    mrp-msrp.leave_all_event  Leave All Event
        Unsigned 16-bit integer
    mrp-msrp.message  Message
        No value
    mrp-msrp.number_of_values  Number of Values
        Unsigned 16-bit integer
    mrp-msrp.priority  Priority
        Unsigned 8-bit integer
    mrp-msrp.priority_and_rank  Priority and Rank
        Unsigned 8-bit integer
    mrp-msrp.protocol_version  Protocol Version
        Unsigned 8-bit integer
    mrp-msrp.rank  Rank
        Unsigned 8-bit integer
    mrp-msrp.reserved  Reserved
        Unsigned 8-bit integer
    mrp-msrp.sr_class_id  SR Class ID
        Unsigned 8-bit integer
    mrp-msrp.sr_class_priority  SR Class Priority
        Unsigned 8-bit integer
    mrp-msrp.sr_class_vid  SR Class VID
        Unsigned 16-bit integer
    mrp-msrp.stream_da  Stream DA
        6-byte Hardware (MAC) Address
    mrp-msrp.stream_id  Stream ID
        Unsigned 64-bit integer
    mrp-msrp.three_packed_event  Attribute Event
        Unsigned 8-bit integer
    mrp-msrp.tspec_max_frame_size  TSpec Max Frame Size
        Unsigned 16-bit integer
    mrp-msrp.tspec_max_interval_frames  TSpec Max Frame Interval
        Unsigned 16-bit integer
    mrp-msrp.vector_attribute  Vector Attribute
        No value
    mrp-msrp.vector_header  Vector Header
        Unsigned 16-bit integer
    mrp-msrp.vlan_id  VLAN ID
        Unsigned 16-bit integer

Multiprotocol Label Switching Echo (mpls-echo)

    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.addr_type  Address Type
        Unsigned 8-bit integer
        MPLS ECHO TLV Interface and Label Stack Address Type
    mpls_echo.tlv.ilso.int_index  Downstream Interface Index
        Unsigned 32-bit integer
        MPLS ECHO TLV Interface and Label Stack Interface Index
    mpls_echo.tlv.ilso.mbz  Must Be Zero
        Unsigned 24-bit integer
        MPLS ECHO TLV Interface and Label Stack MBZ
    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 Interface 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 Interface 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 Protocol (mysql)

    mysql.affected_rows  Affected Rows
        Unsigned 64-bit integer
    mysql.caps  Caps
        Unsigned 16-bit integer
        MySQL Capabilities
    mysql.caps.cd  Connect With Database
        Boolean
    mysql.caps.cp  Can use compression protocol
        Boolean
    mysql.caps.cu  Speaks 4.1 protocol (new flag)
        Boolean
    mysql.caps.fr  Found Rows
        Boolean
    mysql.caps.ia  Interactive Client
        Boolean
    mysql.caps.ii  Ignore sigpipes
        Boolean
    mysql.caps.is  Ignore Spaces before '('
        Boolean
    mysql.caps.lf  Long Column Flags
        Boolean
    mysql.caps.li  Can Use LOAD DATA LOCAL
        Boolean
    mysql.caps.lp  Long Password
        Boolean
    mysql.caps.mr  Supports multiple results
        Boolean
    mysql.caps.ms  Supports multiple statements
        Boolean
    mysql.caps.ns  Don't Allow database.table.column
        Boolean
    mysql.caps.ob  ODBC Client
        Boolean
    mysql.caps.rs  Speaks 4.1 protocol (old flag)
        Boolean
    mysql.caps.sc  Can do 4.1 authentication
        Boolean
    mysql.caps.sl  Switch to SSL after handshake
        Boolean
    mysql.caps.ta  Knows about transactions
        Boolean
    mysql.charset  Charset
        Unsigned 8-bit integer
        MySQL Charset
    mysql.eof  EOF
        Unsigned 8-bit integer
    mysql.error.message  Error message
        String
        Error string in case of MySQL error message
    mysql.error_code  Error Code
        Unsigned 16-bit integer
    mysql.exec_flags  Flags (unused)
        Unsigned 8-bit integer
    mysql.exec_iter  Iterations (unused)
        Unsigned 32-bit integer
    mysql.extcaps  Ext. Caps
        Unsigned 16-bit integer
        MySQL Extended Capabilities
    mysql.extra  Extra data
        Unsigned 64-bit integer
    mysql.field.catalog  Catalog
        String
        Field: catalog
    mysql.field.charsetnr  Charset number
        Unsigned 16-bit integer
        Field: charset number
    mysql.field.db  Database
        String
        Field: database
    mysql.field.decimals  Decimals
        Unsigned 8-bit integer
        Field: decimals
    mysql.field.default  Default
        String
        Field: default
    mysql.field.flags  Flags
        Unsigned 16-bit integer
        Field: flags
    mysql.field.flags.auto_increment  Auto increment
        Boolean
        Field: flag auto increment
    mysql.field.flags.binary  Binary
        Boolean
        Field: flag binary
    mysql.field.flags.blob  Blob
        Boolean
        Field: flag blob
    mysql.field.flags.enum  Enum
        Boolean
        Field: flag enum
    mysql.field.flags.multiple_key  Multiple key
        Boolean
        Field: flag multiple key
    mysql.field.flags.not_null  Not null
        Boolean
        Field: flag not null
    mysql.field.flags.primary_key  Primary key
        Boolean
        Field: flag primary key
    mysql.field.flags.set  Set
        Boolean
        Field: flag set
    mysql.field.flags.timestamp  Timestamp
        Boolean
        Field: flag timestamp
    mysql.field.flags.unique_key  Unique key
        Boolean
        Field: flag unique key
    mysql.field.flags.unsigned  Unsigned
        Boolean
        Field: flag unsigned
    mysql.field.flags.zero_fill  Zero fill
        Boolean
        Field: flag zero fill
    mysql.field.length  Length
        Unsigned 32-bit integer
        Field: length
    mysql.field.name  Name
        String
        Field: name
    mysql.field.org_name  Original name
        String
        Field: original name
    mysql.field.org_table  Original table
        String
        Field: original table
    mysql.field.table  Table
        String
        Field: table
    mysql.field.type  Type
        Unsigned 8-bit integer
        Field: type
    mysql.insert_id  Last INSERT ID
        Unsigned 64-bit integer
    mysql.max_packet  MAX Packet
        Unsigned 24-bit integer
        MySQL Max packet
    mysql.message  Message
        NULL terminated string
    mysql.num_fields  Number of fields
        Unsigned 64-bit integer
    mysql.num_rows  Rows to fetch
        Unsigned 32-bit integer
    mysql.opcode  Command
        Unsigned 8-bit integer
    mysql.option  Option
        Unsigned 16-bit integer
    mysql.packet_length  Packet Length
        Unsigned 24-bit integer
    mysql.packet_number  Packet Number
        Unsigned 8-bit integer
    mysql.param  Parameter
        Unsigned 16-bit integer
    mysql.parameter  Parameter
        String
    mysql.passwd  Password
        String
    mysql.payload  Payload
        String
        Additional Payload
    mysql.protocol  Protocol
        Unsigned 8-bit integer
        Protocol Version
    mysql.query  Statement
        String
    mysql.refresh  Refresh Option
        Unsigned 8-bit integer
    mysql.response_code  Response Code
        Unsigned 8-bit integer
    mysql.rfsh.grants  reload permissions
        Boolean
    mysql.rfsh.hosts  flush hosts
        Boolean
    mysql.rfsh.log  flush logfiles
        Boolean
    mysql.rfsh.master  flush master status
        Boolean
    mysql.rfsh.slave  flush slave status
        Boolean
    mysql.rfsh.status  reset statistics
        Boolean
    mysql.rfsh.tables  flush tables
        Boolean
    mysql.rfsh.threads  empty thread cache
        Boolean
    mysql.row.length  length
        Unsigned 8-bit integer
        Field: row packet text tength
    mysql.row.text  text
        String
        Field: row packet text
    mysql.salt  Salt
        NULL terminated string
    mysql.salt2  Salt
        NULL terminated string
    mysql.schema  Schema
        String
        Login Schema
    mysql.sqlstate  SQL state
        String
    mysql.stat.ac  AUTO_COMMIT
        Boolean
    mysql.stat.bi  Bad index used
        Boolean
    mysql.stat.bs  No backslash escapes
        Boolean
    mysql.stat.cr  Cursor exists
        Boolean
    mysql.stat.dr  database dropped
        Boolean
    mysql.stat.it  In transaction
        Boolean
    mysql.stat.lr  Last row sebd
        Boolean
    mysql.stat.mr  More results
        Boolean
    mysql.stat.mu  Multi query - more resultsets
        Boolean
    mysql.stat.ni  No index used
        Boolean
    mysql.status  Status
        Unsigned 16-bit integer
        MySQL Status
    mysql.stmt_id  Statement ID
        Unsigned 32-bit integer
    mysql.thd_id  Thread ID
        Unsigned 32-bit integer
    mysql.thread_id  Thread ID
        Unsigned 32-bit integer
        MySQL Thread ID
    mysql.unused  Unused
        String
    mysql.user  Username
        NULL terminated string
        Login Username
    mysql.version  Version
        NULL terminated string
        MySQL Version
    mysql.warnings  Warnings
        Unsigned 16-bit integer

NAT Port Mapping Protocol (nat-pmp)

    nat-pmp.external_ip  External IP Address
        IPv4 address
    nat-pmp.external_port  Requested External Port
        Unsigned 16-bit integer
    nat-pmp.internal_port  Internal Port
        Unsigned 16-bit integer
    nat-pmp.opcode  Opcode
        Unsigned 8-bit integer
    nat-pmp.pml  Requested Port Mapping Lifetime
        Unsigned 32-bit integer
        Requested Port Mapping Lifetime in Seconds
    nat-pmp.reserved  Reserved
        Unsigned 16-bit integer
        Reserved (must be zero)
    nat-pmp.result_code  Result Code
        Unsigned 16-bit integer
    nat-pmp.sssoe  Seconds Since Start of Epoch
        Unsigned 32-bit integer
    nat-pmp.version  Version
        Unsigned 8-bit integer

NBMA Next Hop Resolution Protocol (nhrp)

    nhrp.auth_ext.reserved  Reserved
        Unsigned 16-bit integer
    nhrp.auth_ext.spi  SPI
        Unsigned 16-bit integer
        Security Parameter Index
    nhrp.auth_ext.src_addr  Source Address
        IPv4 address
    nhrp.cli.addr_tl  Client Address Type/Len
        Unsigned 8-bit integer
    nhrp.cli.addr_tl.len  Length
        Unsigned 8-bit integer
    nhrp.cli.addr_tl.type  Type
        Unsigned 8-bit integer
    nhrp.cli.saddr_tl  Client Sub Address Type/Len
        Unsigned 8-bit integer
    nhrp.cli.saddr_tl.len  Length
        Unsigned 8-bit integer
    nhrp.cli.saddr_tl.type  Type
        Unsigned 8-bit integer
    nhrp.client.nbma.addr  Client NBMA Address
        IPv4 address
    nhrp.client.nbma.saddr  Client NBMA Sub Address
        Length byte array pair
    nhrp.client.prot.addr  Client Protocol Address
        IPv4 address
    nhrp.code  Code
        Unsigned 8-bit integer
    nhrp.devcap_ext.dstcap  Destination Capabilities
        Unsigned 32-bit integer
    nhrp.devcap_ext.dstcap.V  VPN-aware
        Boolean
    nhrp.devcap_ext.srccap  Source Capabilities
        Unsigned 32-bit integer
    nhrp.devcap_ext.srccap.V  VPN-aware
        Boolean
    nhrp.dst.prot.addr  Destination Protocol Address
        IPv4 address
    nhrp.dst.prot.len  Destination Protocol Len
        Unsigned 16-bit integer
    nhrp.err.code  Error Code
        Unsigned 16-bit integer
    nhrp.err.offset  Error Offset
        Unsigned 16-bit integer
    nhrp.err.pkt  Errored Packet
        Length byte array pair
    nhrp.ext.c  Compulsory Flag
        Boolean
    nhrp.ext.len  Extension length
        Unsigned 16-bit integer
    nhrp.ext.type  Extension Type
        Unsigned 16-bit integer
    nhrp.ext.val  Extension Value
        Length byte array pair
    nhrp.flag.a  Authoritative
        Boolean
        A bit
    nhrp.flag.d  Stable Association
        Boolean
        D bit
    nhrp.flag.n  Expected Purge Reply
        Boolean
    nhrp.flag.nat  Cisco NAT Supported
        Boolean
        NAT bit
    nhrp.flag.q  Is Router
        Boolean
    nhrp.flag.s  Stable Binding
        Boolean
        S bit
    nhrp.flag.u1  Uniqueness Bit
        Boolean
        U bit
    nhrp.flags  Flags
        Unsigned 16-bit integer
    nhrp.hdr.afn  Address Family Number
        Unsigned 16-bit integer
    nhrp.hdr.chksum  Packet Checksum
        Unsigned 16-bit integer
    nhrp.hdr.extoff  Extension Offset
        Unsigned 16-bit integer
    nhrp.hdr.hopcnt  Hop Count
        Unsigned 8-bit integer
    nhrp.hdr.op.type  NHRP Packet Type
        Unsigned 8-bit integer
    nhrp.hdr.pktsz  Packet Length
        Unsigned 16-bit integer
    nhrp.hdr.pro.snap.oui  Protocol Type (long form) - OUI
        Unsigned 24-bit integer
    nhrp.hdr.pro.snap.pid  Protocol Type (long form) - PID
        Unsigned 16-bit integer
    nhrp.hdr.pro.type  Protocol Type (short form)
        Unsigned 16-bit integer
    nhrp.hdr.shtl  Source Address Type/Len
        Unsigned 8-bit integer
    nhrp.hdr.shtl.len  Length
        Unsigned 8-bit integer
    nhrp.hdr.shtl.type  Type
        Unsigned 8-bit integer
    nhrp.hdr.sstl  Source SubAddress Type/Len
        Unsigned 8-bit integer
    nhrp.hdr.sstl.len  Length
        Unsigned 8-bit integer
    nhrp.hdr.sstl.type  Type
        Unsigned 8-bit integer
    nhrp.hdr.version  Version
        Unsigned 8-bit integer
    nhrp.htime  Holding Time (s)
        Unsigned 16-bit integer
    nhrp.mtu  Max Transmission Unit
        Unsigned 16-bit integer
    nhrp.pref  CIE Preference Value
        Unsigned 8-bit integer
    nhrp.prefix  Prefix Length
        Unsigned 8-bit integer
    nhrp.prot.len  Client Protocol Length
        Unsigned 8-bit integer
    nhrp.reqid  Request ID
        Unsigned 32-bit integer
    nhrp.src.nbma.addr  Source NBMA Address
        IPv4 address
    nhrp.src.nbma.saddr  Source NBMA Sub Address
        Length byte array pair
    nhrp.src.prot.addr  Source Protocol Address
        IPv4 address
    nhrp.src.prot.len  Source Protocol Len
        Unsigned 16-bit integer
    nhrp.unused  Unused
        Unsigned 16-bit integer
    nhrp.vendor_ext.id  Vendor ID
        Byte array

NFSACL (nfsacl)

    nfsacl.acl  ACL
        No value
    nfsacl.aclcnt  ACL count
        Unsigned 32-bit integer
    nfsacl.aclent  ACL Entry
        No value
        ACL
    nfsacl.aclent.perm  Permissions
        Unsigned 32-bit integer
    nfsacl.aclent.type  Type
        Unsigned 32-bit integer
    nfsacl.aclent.uid  UID
        Unsigned 32-bit integer
    nfsacl.create  create
        Boolean
        Create?
    nfsacl.dfaclcnt  Default ACL count
        Unsigned 32-bit integer
    nfsacl.procedure_v1  V1 Procedure
        Unsigned 32-bit integer
    nfsacl.procedure_v2  V2 Procedure
        Unsigned 32-bit integer
    nfsacl.procedure_v3  V3 Procedure
        Unsigned 32-bit integer

NFSAUTH (nfsauth)

    nfsauth.procedure_v1  V1 Procedure
        Unsigned 32-bit integer

NIS+ (nisplus)

    nisplus.access.mask  access mask
        No value
        NIS Access Mask
    nisplus.aticks  aticks
        Unsigned 32-bit integer
    nisplus.attr  Attribute
        No value
    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.dummy  dummy
        Byte array
    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.mask  mask
        No value
        Entry Col Mask
    nisplus.entry.mask.asn  ASN.1
        Boolean
        Is This Entry ASN.1 Encoded Flag
    nisplus.entry.mask.binary  BINARY
        Boolean
        Is This Entry BINARY Flag
    nisplus.entry.mask.encrypted  ENCRYPTED
        Boolean
        Is This Entry ENCRYPTED Flag
    nisplus.entry.mask.modified  MODIFIED
        Boolean
        Is This Entry MODIFIED Flag
    nisplus.entry.mask.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
    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
    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

NIS+ Callback (nispluscb)

    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

NSN FLIP (flip)

    flip.basic.e  Extension Header Follows
        Unsigned 32-bit integer
    flip.basic.flowid  FlowID
        Unsigned 32-bit integer
        Basic Header Flow ID
    flip.basic.len  Len
        Unsigned 32-bit integer
        Basic Header Packet Length
    flip.basic.reserved  Reserved
        Unsigned 32-bit integer
        Basic Header Reserved
    flip.basic.seqnum  Seqnum
        Unsigned 32-bit integer
        Basic Header Sequence Number
    flip.chksum.chksum  Checksum
        Unsigned 32-bit integer
    flip.chksum.e  Extension Header Follows
        Unsigned 32-bit integer
    flip.chksum.etype  Extension Type
        Unsigned 32-bit integer
        Checksum Header Extension Type
    flip.chksum.spare  Spare
        Unsigned 32-bit integer
        Checksum Header Spare

NTLM Secure Service Provider (ntlmssp)

    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.authenticate.mic  MIC
        Byte array
        Message Integrity Code
    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.target_name  Target Name
        String
    ntlmssp.decrypted_payload  NTLM Decrypted Payload
        Byte array
    ntlmssp.identifier  NTLMSSP identifier
        String
    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.negotiate00000100  Negotiate 0x00000100
        Boolean
    ntlmssp.negotiate00000800  Negotiate 0x00000800
        Boolean
    ntlmssp.negotiate00004000  Negotiate 0x00004000
        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.negotiatedatagram  Negotiate Datagram
        Boolean
    ntlmssp.negotiateflags  Flags
        Unsigned 32-bit integer
    ntlmssp.negotiateidentify  Negotiate Identify
        Boolean
    ntlmssp.negotiatekeyexch  Negotiate Key Exchange
        Boolean
    ntlmssp.negotiatelmkey  Negotiate Lan Manager Key
        Boolean
    ntlmssp.negotiatent00200000  Negotiate 0x00200000
        Boolean
    ntlmssp.negotiatent01000000  Negotiate 0x01000000
        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 Extended Security
        Boolean
    ntlmssp.negotiatentonly  Negotiate NT Only
        Boolean
    ntlmssp.negotiateoem  Negotiate OEM
        Boolean
    ntlmssp.negotiateoemdomainsupplied  Negotiate OEM Domain Supplied
        Boolean
    ntlmssp.negotiateoemworkstationsupplied  Negotiate OEM Workstation Supplied
        Boolean
    ntlmssp.negotiateseal  Negotiate Seal
        Boolean
    ntlmssp.negotiatesign  Negotiate Sign
        Boolean
    ntlmssp.negotiatetargetinfo  Negotiate Target Info
        Boolean
    ntlmssp.negotiateunicode  Negotiate UNICODE
        Boolean
    ntlmssp.negotiateversion  Negotiate Version
        Boolean
    ntlmssp.ntlmclientchallenge  NTLM Client Challenge
        Byte array
    ntlmssp.ntlmserverchallenge  NTLM Server Challenge
        Byte array
    ntlmssp.ntlmv2response  NTLMv2 Response
        Byte array
    ntlmssp.ntlmv2response.chal  Client challenge
        Byte array
    ntlmssp.ntlmv2response.client_time  Client Time
        Date/Time stamp
    ntlmssp.ntlmv2response.header  Header
        Unsigned 32-bit integer
    ntlmssp.ntlmv2response.hmac  HMAC
        Byte array
    ntlmssp.ntlmv2response.name  Attribute
        String
    ntlmssp.ntlmv2response.name.len  Value len
        Unsigned 32-bit integer
    ntlmssp.ntlmv2response.name.restrictions  Encoding restrictions
        Byte array
    ntlmssp.ntlmv2response.name.type  Attribute 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.requestnonntsession  Request Non-NT Session
        Boolean
    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.targettypedomain  Target Type Domain
        Boolean
    ntlmssp.targettypeserver  Target Type Server
        Boolean
    ntlmssp.targettypeshare  Target Type Share
        Boolean
    ntlmssp.verf  NTLMSSP Verifier
        No value
    ntlmssp.verf.body  Verifier Body
        Byte array
    ntlmssp.verf.crc32  Verifier CRC32
        Unsigned 32-bit integer
    ntlmssp.verf.hmacmd5  HMAC MD5
        Byte array
    ntlmssp.verf.randompad  Random Pad
        Unsigned 32-bit integer
    ntlmssp.verf.sequence  Sequence
        Byte array
    ntlmssp.verf.vers  Version Number
        Unsigned 32-bit integer
    ntlmssp.version.build_number  Major Version
        Unsigned 16-bit integer
    ntlmssp.version.major  Major Version
        Unsigned 8-bit integer
    ntlmssp.version.minor  Minor Version
        Unsigned 8-bit integer
    ntlmssp.version.ntlm_current_revision  NTLM Current Revision
        Unsigned 8-bit integer

Name Binding Protocol (nbp)

    nbp.count  Count
        Unsigned 8-bit integer
    nbp.enum  Enumerator
        Unsigned 8-bit integer
    nbp.info  Info
        Unsigned 8-bit integer
    nbp.net  Network
        Unsigned 16-bit integer
    nbp.node  Node
        Unsigned 8-bit integer
    nbp.object  Object
        String
    nbp.op  Operation
        Unsigned 8-bit integer
    nbp.port  Port
        Unsigned 8-bit integer
    nbp.tid  Transaction ID
        Unsigned 8-bit integer
    nbp.type  Type
        String
    nbp.zone  Zone
        String

Name Management Protocol over IPX (nmpi)

Nasdaq TotalView-ITCH (nasdaq_itch)

    nasdaq-itch.attribution  Attribution
        String
        Market participant identifier
    nasdaq-itch.buy_sell  Buy/Sell
        String
        Buy/Sell indicator
    nasdaq-itch.canceled  Canceled Shares
        Unsigned 32-bit integer
        Number of shares to be removed
    nasdaq-itch.cross  Cross Type
        String
        Cross trade type
    nasdaq-itch.executed  Executed Shares
        Unsigned 32-bit integer
        Number of shares executed
    nasdaq-itch.execution_price  Execution Price
        Double-precision floating point
    nasdaq-itch.financial_status  Financial Status Indicator
        Unsigned 8-bit integer
    nasdaq-itch.market_category  Market Category
        Unsigned 8-bit integer
    nasdaq-itch.match  Matched
        String
        Match number
    nasdaq-itch.message  Message
        String
    nasdaq-itch.message_type  Message Type
        Unsigned 8-bit integer
    nasdaq-itch.millisecond  Millisecond
        Unsigned 32-bit integer
    nasdaq-itch.order_reference  Order Reference
        Unsigned 32-bit integer
        Order reference number
    nasdaq-itch.price  Price
        Double-precision floating point
    nasdaq-itch.printable  Printable
        String
    nasdaq-itch.reason  Reason
        String
    nasdaq-itch.reserved  Reserved
        String
    nasdaq-itch.round_lot_size  Round Lot Size
        String
    nasdaq-itch.round_lots_only  Round Lots Only
        Unsigned 8-bit integer
    nasdaq-itch.second  Second
        Unsigned 32-bit integer
    nasdaq-itch.shares  Shares
        Unsigned 32-bit integer
        Number of shares
    nasdaq-itch.stock  Stock
        String
    nasdaq-itch.system_event  System Event
        Unsigned 8-bit integer
    nasdaq-itch.trading_state  Trading State
        String
    nasdaq-itch.version  Version
        Unsigned 8-bit integer

Nasdaq-SoupTCP version 2.0 (nasdaq_soup)

    nasdaq-soup.message  Message
        String
    nasdaq-soup.packet_eol  End Of Packet
        String
    nasdaq-soup.packet_type  Packet Type
        Unsigned 8-bit integer
    nasdaq-soup.password  Password
        String
    nasdaq-soup.reject_code  Login Reject Code
        Unsigned 8-bit integer
    nasdaq-soup.seq_number  Sequence number
        String
    nasdaq-soup.session  Session
        String
        Session ID
    nasdaq-soup.text  Debug Text
        String
    nasdaq-soup.username  User Name
        String

Negative-acknowledgment Oriented Reliable Multicast (norm)

    NORM.fec  Forward Error Correction (FEC) header
        No value
    NORM.fec.encoding_id  FEC Encoding ID
        Unsigned 8-bit integer
    NORM.fec.esi  Encoding Symbol ID
        Unsigned 32-bit integer
    NORM.fec.fti  FEC Object Transmission Information
        No value
    NORM.fec.fti.encoding_symbol_length  Encoding Symbol Length
        Unsigned 32-bit integer
    NORM.fec.fti.max_number_encoding_symbols  Maximum Number of Encoding Symbols
        Unsigned 32-bit integer
    NORM.fec.fti.max_source_block_length  Maximum Source Block Length
        Unsigned 32-bit integer
    NORM.fec.fti.transfer_length  Transfer Length
        Unsigned 64-bit integer
    NORM.fec.instance_id  FEC Instance ID
        Unsigned 8-bit integer
    NORM.fec.sbl  Source Block Length
        Unsigned 32-bit integer
    NORM.fec.sbn  Source Block Number
        Unsigned 32-bit integer
    norm.ack.grtt_sec  Ack GRTT Sec
        Unsigned 32-bit integer
    norm.ack.grtt_usec  Ack GRTT usec
        Unsigned 32-bit integer
    norm.ack.id  Ack ID
        Unsigned 8-bit integer
    norm.ack.source  Ack Source
        IPv4 address
    norm.ack.type  Ack Type
        Unsigned 8-bit integer
    norm.backoff  Backoff
        Unsigned 8-bit integer
    norm.cc_flags  CC Flags
        Unsigned 8-bit integer
    norm.cc_flags.clr  CLR
        Boolean
    norm.cc_flags.leave  Leave
        Boolean
    norm.cc_flags.plr  PLR
        Boolean
    norm.cc_flags.rtt  RTT
        Boolean
    norm.cc_flags.start  Start
        Boolean
    norm.cc_node_id  CC Node ID
        IPv4 address
    norm.cc_rate  CC Rate
        Double-precision floating point
    norm.cc_rtt  CC RTT
        Double-precision floating point
    norm.cc_sts  Send Time secs
        Unsigned 32-bit integer
    norm.cc_stus  Send Time usecs
        Unsigned 32-bit integer
    norm.cc_transport_id  CC Transport ID
        Unsigned 16-bit integer
    norm.ccsequence  CC Sequence
        Unsigned 16-bit integer
    norm.flag.explicit  Explicit Flag
        Boolean
    norm.flag.file  File Flag
        Boolean
    norm.flag.info  Info Flag
        Boolean
    norm.flag.msgstart  Msg Start Flag
        Boolean
    norm.flag.repair  Repair Flag
        Boolean
    norm.flag.stream  Stream Flag
        Boolean
    norm.flag.unreliable  Unreliable Flag
        Boolean
    norm.flags  Flags
        Unsigned 8-bit integer
    norm.flavor  Flavor
        Unsigned 8-bit integer
    norm.grtt  grtt
        Double-precision floating point
    norm.gsize  Group Size
        Double-precision floating point
    norm.hexext  Hdr Extension
        Unsigned 16-bit integer
    norm.hlen  Header length
        Unsigned 8-bit integer
    norm.instance_id  Instance
        Unsigned 16-bit integer
    norm.nack.flags  NAck Flags
        Unsigned 8-bit integer
    norm.nack.flags.block  Block
        Boolean
    norm.nack.flags.info  Info
        Boolean
    norm.nack.flags.object  Object
        Boolean
    norm.nack.flags.segment  Segment
        Boolean
    norm.nack.form  NAck FORM
        Unsigned 8-bit integer
    norm.nack.grtt_sec  NAck GRTT Sec
        Unsigned 32-bit integer
    norm.nack.grtt_usec  NAck GRTT usec
        Unsigned 32-bit integer
    norm.nack.length  NAck Length
        Unsigned 16-bit integer
    norm.nack.server  NAck Server
        IPv4 address
    norm.object_transport_id  Object Transport ID
        Unsigned 16-bit integer
    norm.payload  Payload
        No value
    norm.payload.len  Payload Len
        Unsigned 16-bit integer
    norm.payload.offset  Payload Offset
        Unsigned 32-bit integer
    norm.reserved  Reserved
        No value
    norm.sequence  Sequence
        Unsigned 16-bit integer
    norm.source_id  Source ID
        IPv4 address
    norm.type  Message Type
        Unsigned 8-bit integer
    norm.version  Version
        Unsigned 8-bit integer

NetBIOS (netbios)

    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.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.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.reassembled.length  Reassembled NetBIOS length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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

NetBIOS Datagram Service (nbdgm)

    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

NetBIOS Name Service (nbns)

    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
    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

NetBIOS Session Service (nbss)

    nbss.flags  Flags
        Unsigned 8-bit integer
        NBSS message flags
    nbss.length  Length
        Unsigned 16-bit integer
        NBSS message length
    nbss.type  Message Type
        Unsigned 8-bit integer
        NBSS message type

NetBIOS over IPX (nbipx)

NetMon 802.11 capture header (netmon_802_11)

    netmon_802_11.channel  Channel
        Unsigned 32-bit integer
        ""
    netmon_802_11.datarate  Data rate
        Unsigned 32-bit integer
        ""
    netmon_802_11.flags  Flags
        Unsigned 32-bit integer
        ""
    netmon_802_11.frequency  Center frequency
        Unsigned 32-bit integer
        ""
    netmon_802_11.length  Header length
        Unsigned 16-bit integer
        ""
    netmon_802_11.op_mode  Operation mode
        Unsigned 32-bit integer
        ""
    netmon_802_11.op_mode.ap  AP mode
        Unsigned 32-bit integer
        ""
    netmon_802_11.op_mode.on  Monitor mode
        Unsigned 32-bit integer
        ""
    netmon_802_11.op_mode.sta  Station mode
        Unsigned 32-bit integer
        ""
    netmon_802_11.op_mode.sta_ext  Extensible station mode
        Unsigned 32-bit integer
        ""
    netmon_802_11.phy_type  PHY type
        Unsigned 32-bit integer
        ""
    netmon_802_11.rssi  RSSI
        Signed 32-bit integer
        ""
    netmon_802_11.timestamp  Timestamp
        Unsigned 64-bit integer
        ""
    netmon_802_11.version  Header revision
        Unsigned 8-bit integer
        ""

NetPerfMeter Protocol (npmp)

    npmp.acknowledge_flowid  Flow ID
        Unsigned 32-bit integer
    npmp.acknowledge_measurementid  Measurement ID
        Unsigned 64-bit integer
    npmp.acknowledge_padding  Padding
        Unsigned 16-bit integer
    npmp.acknowledge_status  Status
        Unsigned 32-bit integer
    npmp.acknowledge_streamid  Stream ID
        Unsigned 16-bit integer
    npmp.addflow_description  Description
        String
    npmp.addflow_flags  Flags
        Unsigned 8-bit integer
    npmp.addflow_flowid  Flow ID
        Unsigned 32-bit integer
    npmp.addflow_framerate1  Frame Rate 1
        Double-precision floating point
    npmp.addflow_framerate2  Frame Rate 2
        Double-precision floating point
    npmp.addflow_framerate3  Frame Rate 3
        Double-precision floating point
    npmp.addflow_framerate4  Frame Rate 4
        Double-precision floating point
    npmp.addflow_frameraterng  Frame Rate RNG
        Unsigned 8-bit integer
    npmp.addflow_framesize1  Frame Size 1
        Double-precision floating point
    npmp.addflow_framesize2  Frame Size 2
        Double-precision floating point
    npmp.addflow_framesize3  Frame Size 3
        Double-precision floating point
    npmp.addflow_framesize4  Frame Size 4
        Double-precision floating point
    npmp.addflow_framesizerng  Frame Size RNG
        Unsigned 8-bit integer
    npmp.addflow_maxmsgsize  Max. Message Size
        Unsigned 16-bit integer
    npmp.addflow_measurementid  Measurement ID
        Unsigned 64-bit integer
    npmp.addflow_onoffeventarray  On/Off Event
        Unsigned 32-bit integer
    npmp.addflow_onoffevents  On/Off Events
        Unsigned 16-bit integer
    npmp.addflow_ordered  Ordered
        Double-precision floating point
    npmp.addflow_padding  Padding
        Unsigned 16-bit integer
    npmp.addflow_protocol  Protocol
        Unsigned 8-bit integer
    npmp.addflow_rcvbuffersize  Receive Buffer Size
        Unsigned 32-bit integer
    npmp.addflow_reliable  Reliable
        Double-precision floating point
    npmp.addflow_retranstrials  Retransmission Trials
        Unsigned 16-bit integer
    npmp.addflow_sndbuffersize  Send Buffer Size
        Unsigned 32-bit integer
    npmp.addflow_streamid  Stream ID
        Unsigned 16-bit integer
    npmp.data_byteseqnumber  Byte Seq Number
        Unsigned 64-bit integer
    npmp.data_flowid  Flow ID
        Unsigned 32-bit integer
    npmp.data_frameid  Frame ID
        Unsigned 32-bit integer
    npmp.data_measurementid  Measurement ID
        Unsigned 64-bit integer
    npmp.data_packetseqnumber  Packet Seq Number
        Unsigned 64-bit integer
    npmp.data_padding  Padding
        Unsigned 16-bit integer
    npmp.data_payload  Payload
        Byte array
    npmp.data_streamid  Stream ID
        Unsigned 16-bit integer
    npmp.data_timestamp  Time Stamp
        Unsigned 64-bit integer
    npmp.identifyflow_flowid  Flow ID
        Unsigned 32-bit integer
    npmp.identifyflow_magicnumber  Magic Number
        Unsigned 64-bit integer
    npmp.identifyflow_measurementid  Measurement ID
        Unsigned 64-bit integer
    npmp.identifyflow_streamid  Stream ID
        Unsigned 16-bit integer
    npmp.message_flags  Flags
        Unsigned 8-bit integer
    npmp.message_length  Length
        Unsigned 16-bit integer
    npmp.message_type  Type
        Unsigned 8-bit integer
    npmp.removeflow_flowid  Flow ID
        Unsigned 32-bit integer
    npmp.removeflow_measurementid  Measurement ID
        Unsigned 64-bit integer
    npmp.removeflow_streamid  Stream ID
        Unsigned 16-bit integer
    npmp.results_data  Data
        Byte array
    npmp.start_measurementid  Measurement ID
        Unsigned 64-bit integer
    npmp.start_padding  Padding
        Unsigned 32-bit integer
    npmp.stop_measurementid  Measurement ID
        Unsigned 64-bit integer
    npmp.stop_padding  Padding
        Unsigned 32-bit integer

NetScaler Trace (ns)

    nstrace.coreid  Core Id
        Unsigned 16-bit integer
    nstrace.devno  DevNo
        Unsigned 32-bit integer
    nstrace.dir  Operation
        Unsigned 8-bit integer
    nstrace.l_pdevno  Linked PcbDevNo
        Unsigned 32-bit integer
    nstrace.nicno  Nic No
        Unsigned 8-bit integer
    nstrace.pdevno  PcbDevNo
        Unsigned 32-bit integer
    nstrace.vlan  Vlan
        Unsigned 16-bit integer

NetScape Certificate Extensions (ns_cert_exts)

    ns_cert_exts.BaseUrl  BaseUrl
        String
    ns_cert_exts.CaPolicyUrl  CaPolicyUrl
        String
    ns_cert_exts.CaRevocationUrl  CaRevocationUrl
        String
    ns_cert_exts.CertRenewalUrl  CertRenewalUrl
        String
    ns_cert_exts.CertType  CertType
        Byte array
    ns_cert_exts.Comment  Comment
        String
    ns_cert_exts.RevocationUrl  RevocationUrl
        String
    ns_cert_exts.SslServerName  SslServerName
        String
    ns_cert_exts.object-signing  object-signing
        Boolean
    ns_cert_exts.object-signing-ca  object-signing-ca
        Boolean
    ns_cert_exts.reserved-for-future-use  reserved-for-future-use
        Boolean
    ns_cert_exts.smime  smime
        Boolean
    ns_cert_exts.smime-ca  smime-ca
        Boolean
    ns_cert_exts.ssl-ca  ssl-ca
        Boolean
    ns_cert_exts.ssl-client  ssl-client
        Boolean
    ns_cert_exts.ssl-server  ssl-server
        Boolean

NetWare Core Protocol (ncp)

    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
        NULL terminated string
    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_dir_hdl  Dir Handle Type
        Unsigned 16-bit integer
    ncp.alloc_dst_name_spc  Destination Name Space Input Parameter
        Boolean
    ncp.alloc_free_count  Reclaimable Free Bytes
        Unsigned 32-bit integer
    ncp.alloc_mode  Allocate Mode
        Unsigned 16-bit integer
    ncp.alloc_reply_lvl2  Reply Level 2
        Boolean
    ncp.alloc_spec_temp_dir_hdl  Special Temporary Directory Handle
        Boolean
    ncp.alloc_waiting  Allocate Waiting Count
        Unsigned 32-bit integer
    ncp.allocation_block_size  Allocation Block Size
        Unsigned 32-bit integer
    ncp.allow_hidden  Allow Hidden Files and Folders
        Boolean
    ncp.allow_system  Allow System Files and Folders
        Boolean
    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_attr_archive  Archive Attributes
        Boolean
    ncp.att_def32_cant_compress  Can't Compress
        Boolean
    ncp.att_def32_comp  Compressed
        Boolean
    ncp.att_def32_comp_inhibit  Inhibit Compression
        Boolean
    ncp.att_def32_cpyinhibit  Copy Inhibit
        Boolean
    ncp.att_def32_data_migrate  Data Migrated
        Boolean
    ncp.att_def32_delinhibit  Delete Inhibit
        Boolean
    ncp.att_def32_dm_save_key  Data Migration Save Key
        Boolean
    ncp.att_def32_execute  Execute
        Boolean
    ncp.att_def32_execute_confirm  Execute Confirm
        Boolean
    ncp.att_def32_file_audit  File Audit
        Boolean
    ncp.att_def32_hidden  Hidden
        Boolean
    ncp.att_def32_im_comp  Immediate Compress
        Boolean
    ncp.att_def32_inhibit_dm  Inhibit Data Migration
        Boolean
    ncp.att_def32_no_suballoc  No Suballoc
        Boolean
    ncp.att_def32_purge  Immediate Purge
        Boolean
    ncp.att_def32_read_audit  Read Audit
        Boolean
    ncp.att_def32_reninhibit  Rename Inhibit
        Boolean
    ncp.att_def32_reserved  Reserved
        Boolean
    ncp.att_def32_reserved2  Reserved
        Boolean
    ncp.att_def32_reserved3  Reserved
        Boolean
    ncp.att_def32_ro  Read Only
        Boolean
    ncp.att_def32_search  Search Mode
        Unsigned 32-bit integer
    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_execute  Execute
        Boolean
    ncp.att_def_hidden  Hidden
        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.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
        Length string pair
    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  DS Time
        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  Server Time
        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  Create Time
        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  Container
        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  Effective
        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  Is 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  Build Number
        Boolean
    ncp.bit3pingflags2  OS Name
        Boolean
    ncp.bit3pingpflags1  Is Time Valid?
        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  Ambiguous Naming
        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  Is DS Time Synchronized?
        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  Ambiguous Containment
        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  Does Agent Have All Replicas?
        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  Auxiliary
        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  Operational
        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  Sparse Required
        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  Not Defined
        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  Sparse Operational
        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  License Flags
        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
        NULL terminated 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
        NULL terminated 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.checksumming  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
        Length string pair
    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
        NULL terminated string
    ncp.co_processor_flag  CoProcessor Present Flag
        Unsigned 32-bit integer
    ncp.code_page  Code Page
        Unsigned 32-bit integer
    ncp.com_cnts  Communication Counters
        Unsigned 16-bit integer
    ncp.comment  Comment
        Length string pair
    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_lock_status  Lock Status
        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_code_page  Connection Code Page
        Boolean
    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
        Length string pair
    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
        NULL terminated 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_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
        Length string pair
    ncp.custom_var_value  Custom Variable Value
        Unsigned 32-bit integer
    ncp.data  Data
        Length string pair
    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_fat_blks  Data Stream FAT Blocks
        Unsigned 32-bit integer
    ncp.data_stream_name  Data Stream Name
        Length string pair
    ncp.data_stream_num_long  Data Stream Number
        Unsigned 32-bit integer
    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.data_type_flag  Data Type Flag
        Unsigned 8-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
        Length string pair
    ncp.dest_path_16  Destination Path
        Length string pair
    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_14  Directory Name
        String
    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
        NULL terminated string
    ncp.driver_log_name  Driver Logical Name
        NULL terminated string
    ncp.driver_short_name  Driver Short Name
        NULL terminated 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
        Length string pair
    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
        Length string pair
    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 Time
        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  Last Update
        Boolean
    ncp.ext_router_active_flag  External Router Active Flag
        Boolean
    ncp.extended_attribute_extents_used  Extended Attribute Extents 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
        Unsigned 64-bit integer
    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_lock_count  File Lock Count
        Unsigned 16-bit integer
    ncp.file_mig_state  File Migration State
        Unsigned 8-bit integer
    ncp.file_mode  File Mode
        Unsigned 8-bit integer
    ncp.file_name  Filename
        Length string pair
    ncp.file_name_12  Filename
        String
    ncp.file_name_14  Filename
        String
    ncp.file_name_16  Filename
        Length string pair
    ncp.file_name_len  Filename Length
        Unsigned 8-bit integer
    ncp.file_offset  File Offset
        Unsigned 32-bit integer
    ncp.file_path  File Path
        Length string pair
    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_use_count  File Use Count
        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.group  NCP Group Type
        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
        Length string pair
    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.ip_addr  IP Address
        IPv4 address
    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.iter_answer  Iterator Answer
        Boolean
    ncp.iter_completion_code  Iteration Completion Code
        Unsigned 32-bit integer
    ncp.iter_search  Search Filter
        Unsigned 32-bit integer
    ncp.iter_verb_completion_code  Completion Code
        Unsigned 32-bit integer
    ncp.itercopy  Iterator Copy
        Unsigned 32-bit integer
    ncp.itercount  Number of Items
        Unsigned 32-bit integer
    ncp.iterdatasize  Data Size
        Unsigned 32-bit integer
    ncp.iterindex  Iterator Index
        Unsigned 32-bit integer
    ncp.itermaxentries  Maximum Entries
        Unsigned 32-bit integer
    ncp.itermoveposition  Move Position
        Unsigned 32-bit integer
    ncp.iternumskipped  Number Skipped
        Unsigned 32-bit integer
    ncp.iternumtoget  Number to Get
        Unsigned 32-bit integer
    ncp.iternumtoskip  Number to Skip
        Unsigned 32-bit integer
    ncp.iterother  Other Iteration
        Unsigned 32-bit integer
    ncp.iterposition  Iteration Position
        Unsigned 32-bit integer
    ncp.iterpositionable  Positionable
        Boolean
    ncp.iterretinfotype  Return Information Type
        Unsigned 32-bit integer
    ncp.itertimelimit  Time Limit
        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.limb_flags  Limb Flags
        Unsigned 32-bit integer
    ncp.limb_scan_num  Limb Scan Number
        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
        Length string pair
    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
        Length string pair
    ncp.login_expiration_time  Login Expiration Time
        Unsigned 32-bit integer
    ncp.login_key  Login Key
        Byte array
    ncp.login_name  Login Name
        Length string pair
    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_read_data_reply_size  Max Read Data Reply Size
        Unsigned 16-bit integer
    ncp.max_reply_obj_id_count  Max Reply Object ID Count
        Unsigned 8-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
        Length string pair
    ncp.media_number  Media Number
        Unsigned 32-bit integer
    ncp.media_object_type  Object Type
        Unsigned 8-bit integer
    ncp.member_name  Member Name
        Length string pair
    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.msg_flag  Broadcast Message Flag
        Unsigned 8-bit integer
    ncp.mv_string  Attribute Name
        String
    ncp.name  Name
        Length string pair
    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
        Length string pair
    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_encoded_strings  NCP Encoded Strings
        Boolean
    ncp.ncp_encoded_strings_bits  NCP Encoded Strings Bits
        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
        Length string pair
    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_add_delete_self  Add/Delete Self?
        Boolean
    ncp.nds_add_entry  Add Entry?
        Boolean
    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_browse_entry  Browse Entry?
        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_attributes  Compare Attributes?
        Boolean
    ncp.nds_compare_results  Compare Results
        String
    ncp.nds_crc  CRC
        Unsigned 32-bit integer
    ncp.nds_crt_time  Agent Create Time
        Date/Time stamp
    ncp.nds_delete_entry  Delete Entry?
        Boolean
    ncp.nds_delim  Delimiter
        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
        Date/Time stamp
    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_entry_privilege_not_defined  Privilege Not Defined
        Boolean
    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
        Date/Time stamp
    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_inheritance_control  Inheritance?
        Boolean
    ncp.nds_iteration  Iteration Handle
        Unsigned 32-bit integer
    ncp.nds_iterator  Iterator
        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_oid  Object ID
        Byte array
    ncp.nds_os_majver  OS Major Version
        Unsigned 32-bit integer
    ncp.nds_os_minver  OS Minor 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_privilege_not_defined  Privilege Not defined
        Boolean
    ncp.nds_privileges  Privileges
        Unsigned 32-bit integer
    ncp.nds_prot_bit1  Not Defined
        Boolean
    ncp.nds_prot_bit10  Not Defined
        Boolean
    ncp.nds_prot_bit11  Not Defined
        Boolean
    ncp.nds_prot_bit12  Not Defined
        Boolean
    ncp.nds_prot_bit13  Not Defined
        Boolean
    ncp.nds_prot_bit14  Not Defined
        Boolean
    ncp.nds_prot_bit15  Include CRC in NDS Header
        Boolean
    ncp.nds_prot_bit16  Client is a Server
        Boolean
    ncp.nds_prot_bit2  Not Defined
        Boolean
    ncp.nds_prot_bit3  Not Defined
        Boolean
    ncp.nds_prot_bit4  Not Defined
        Boolean
    ncp.nds_prot_bit5  Not Defined
        Boolean
    ncp.nds_prot_bit6  Not Defined
        Boolean
    ncp.nds_prot_bit7  Not Defined
        Boolean
    ncp.nds_prot_bit8  Not Defined
        Boolean
    ncp.nds_prot_bit9  Not Defined
        Boolean
    ncp.nds_purge  Purge Time
        Date/Time stamp
    ncp.nds_rdn  RDN
        String
    ncp.nds_read_attribute  Read Attribute?
        Boolean
    ncp.nds_referrals  Referrals
        Unsigned 32-bit integer
    ncp.nds_relative_dn  Relative Distinguished Name
        String
    ncp.nds_rename_entry  Rename Entry?
        Boolean
    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_supervisor  Supervisor?
        Boolean
    ncp.nds_supervisor_entry  Supervisor?
        Boolean
    ncp.nds_svr_dist_name  Server Distinguished Name
        String
    ncp.nds_svr_time  Server Time
        Date/Time stamp
    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_verb2b_flags  Flags
        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.nds_write_add_delete_attribute  Write, Add, Delete Attribute?
        Boolean
    ncp.ndscreatetime  NDS Creation Time
        Date/Time stamp
    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.ndsitems  Number of Items
        Unsigned 32-bit integer
    ncp.ndsiterobj  Iterator Object
        Unsigned 32-bit integer
    ncp.ndsiterverb  NDS Iteration Verb
        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.ndstunemark  Tune Mark
        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
        Length string pair
    ncp.new_file_size  New File Size
        Unsigned 32-bit integer
    ncp.new_object_name  New Object Name
        Length string pair
    ncp.new_password  New Password
        Length string pair
    ncp.new_path  New Path
        Length string pair
    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
        NULL terminated 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_active_tasks  Number of Active Tasks
        Unsigned 8-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_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_data_streams_long  Number of Data Streams
        Unsigned 32-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_info_rtn_count  Object Information Count
        Unsigned 32-bit integer
    ncp.object_name  Object Name
        Length string pair
    ncp.object_name_len  Object Name
        String
    ncp.object_name_stringz  Object Name
        NULL terminated 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_64bit  Open 64-bit Access
        Boolean
    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_create_mode_ro  Open with Read Only Access
        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  File Write Through
        Boolean
    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 32-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
        Length string pair
    ncp.path  Path
        Length string pair
    ncp.path16  Path
        Length string pair
    ncp.path_and_name  Path and Name
        NULL terminated 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 Connection Count
        Unsigned 32-bit integer
    ncp.poll_rem_old_out_of_order  Poller Removed Old Out Of Order Count
        Unsigned 32-bit integer
    ncp.pool_name  Pool Name
        NULL terminated string
    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
        Length string pair
    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
        Length string pair
    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
        Length string pair
    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  Compatibility 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.reserved5  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
        NULL terminated 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.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
        NULL terminated 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_entire_folder  Wild Search
        Boolean
    ncp.scan_files_only  Scan Files Only
        Boolean
    ncp.scan_folders_only  Scan Folders Only
        Boolean
    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
        Length string pair
    ncp.search_pattern_16  Search Pattern
        Length string pair
    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
        Length string pair
    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
        Length string pair
    ncp.server_name_stringz  Server Name
        NULL terminated 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
        NULL terminated 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_mask  Set Mask
        Unsigned 32-bit integer
    ncp.set_parm_name  Set Parameter Name
        NULL terminated 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
        Length string pair
    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.srvr_param_boolean  Set Parameter Value
        Boolean
    ncp.srvr_param_string  Set Parameter Value
        String
    ncp.stack_count  Stack Count
        Unsigned 32-bit integer
    ncp.stack_full_name_str  Stack Full Name
        Length string pair
    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_64bit  64Bit File Offsets
        Boolean
    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.status_flag_bits_utf8  UTF8 NCP Strings
        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
        Length string pair
    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
        Length string pair
    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.task_state  Task State
        Unsigned 8-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_extents  Total Extended Directory Extents
        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_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
        Length byte array pair
    ncp.transport_type  Communications Type
        Unsigned 8-bit integer
    ncp.trustee_acc_mask  Trustee Access Mask
        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_extents  Unused Extended Directory Extents
        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
        Length string pair
    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_num_long  Version
        Unsigned 32-bit integer
    ncp.vert_location  Vertical Location
        Unsigned 16-bit integer
    ncp.virtual_console_version  Virtual Console Version
        Unsigned 8-bit integer
    ncp.vol_cap_archive  NetWare Archive bit Supported
        Boolean
    ncp.vol_cap_cluster  Volume is a Cluster Resource
        Boolean
    ncp.vol_cap_comp  NetWare Compression Supported
        Boolean
    ncp.vol_cap_dfs  DFS is Active on Volume
        Boolean
    ncp.vol_cap_dir_quota  NetWare Directory Quotas Supported
        Boolean
    ncp.vol_cap_ea  OS2 style EA's Supported
        Boolean
    ncp.vol_cap_file_attr  Full NetWare file Attributes Supported
        Boolean
    ncp.vol_cap_nss  Volume is Mounted by NSS
        Boolean
    ncp.vol_cap_nss_admin  Volume is the NSS Admin Volume
        Boolean
    ncp.vol_cap_sal_purge  NetWare Salvage and Purge Operations Supported
        Boolean
    ncp.vol_cap_user_space  NetWare User Space Restrictions Supported
        Boolean
    ncp.vol_info_reply_len  Volume Information Reply Length
        Unsigned 16-bit integer
    ncp.vol_name_stringz  Volume Name
        NULL terminated string
    ncp.volume_active_count  Volume Active Count
        Unsigned 32-bit integer
    ncp.volume_cached_flag  Volume Cached Flag
        Unsigned 8-bit integer
    ncp.volume_capabilities  Volume Capabilities
        Unsigned 32-bit integer
    ncp.volume_guid  Volume GUID
        NULL terminated string
    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_mnt_point  Volume Mount Point
        NULL terminated string
    ncp.volume_mounted_flag  Volume Mounted Flag
        Unsigned 8-bit integer
    ncp.volume_name  Volume Name
        String
    ncp.volume_name_len  Volume Name
        Length string pair
    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.reassembled.length  Reassembled NDS length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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

NetWare Link Services Protocol (nlsp)

    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

NetWare Serialization Protocol (nw_serial)

Netdump Protocol (netdump)

    netdump.code  Netdump code
        Unsigned 32-bit integer
    netdump.command  Netdump command
        Unsigned 32-bit integer
    netdump.from  Netdump from val
        Unsigned 32-bit integer
    netdump.info  Netdump info
        Unsigned 32-bit integer
    netdump.magic  Netdump Magic Number
        Unsigned 64-bit integer
    netdump.payload  Netdump payload
        Byte array
    netdump.seq_nr  Netdump seq number
        Unsigned 32-bit integer
    netdump.to  Netdump to val
        Unsigned 32-bit integer
    netdump.version  Netdump version
        Unsigned 8-bit integer

Network Block Device (nbd)

    nbd.data  Data
        Byte array
    nbd.error  Error
        Unsigned 32-bit integer
    nbd.from  From
        Unsigned 64-bit integer
    nbd.handle  Handle
        Unsigned 64-bit integer
    nbd.len  Length
        Unsigned 32-bit integer
    nbd.magic  Magic
        Unsigned 32-bit integer
    nbd.response_in  Response In
        Frame number
        The response to this NBD request is in this frame
    nbd.response_to  Request In
        Frame number
        This is a response to the NBD request in this frame
    nbd.time  Time
        Time duration
        The time between the Call and the Reply
    nbd.type  Type
        Unsigned 32-bit integer

Network Data Management Protocol (ndmp)

    ndmp.addr.ip  IP Address
        IPv4 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
    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
    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
    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
    ndmp.bu.state.invalid_ebr  EstimatedBytesLeft valid
        Boolean
        Whether EstimatedBytesLeft is valid or not
    ndmp.bu.state.invalid_etr  EstimatedTimeLeft valid
        Boolean
        Whether EstimatedTimeLeft is valid or not
    ndmp.butype.attr.backup_direct  Backup direct
        Boolean
        backup_direct
    ndmp.butype.attr.backup_file_history  Backup file history
        Boolean
        backup_file_history
    ndmp.butype.attr.backup_filelist  Backup file list
        Boolean
        backup_filelist
    ndmp.butype.attr.backup_incremental  Backup incremental
        Boolean
        backup_incremental
    ndmp.butype.attr.backup_utf8  Backup UTF8
        Boolean
        backup_utf8
    ndmp.butype.attr.recover_direct  Recover direct
        Boolean
        recover_direct
    ndmp.butype.attr.recover_filelist  Recover file list
        Boolean
        recover_filelist
    ndmp.butype.attr.recover_incremental  Recover incremental
        Boolean
        recover_incremental
    ndmp.butype.attr.recover_utf8  Recover UTF8
        Boolean
        recover_utf8
    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
    ndmp.butype.name  Butype Name
        String
        Name of Butype
    ndmp.bytes_left_to_read  Bytes left to read
        Signed 64-bit integer
        Number of bytes left to be read from the device
    ndmp.class.id  Class ID
        Unsigned 32-bit integer
    ndmp.class.version  Class Version
        Unsigned 32-bit integer
    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
    ndmp.execute_cdb.flags.data_out  DATA_OUT
        Boolean
    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.ext_version  Class and version
        No value
    ndmp.ext_version_list  Ext Version List
        No value
        List of extension versions
    ndmp.ext_version_list.version  Ext Version
        Unsigned 32-bit integer
        Extension version
    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.invalid_atime  Invalid atime
        Boolean
        invalid_atime
    ndmp.file.invalid_ctime  Invalid ctime
        Boolean
        invalid_ctime
    ndmp.file.invalid_group  Invalid group
        Boolean
        invalid_group
    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
    ndmp.fragment  NDMP fragment
        Frame number
    ndmp.fragment.error  NDMP defragmentation error
        Frame number
    ndmp.fragment.multiple_tails  NDMP has multiple tail fragments
        Boolean
    ndmp.fragment.overlap  NDMP fragment overlap
        Boolean
    ndmp.fragment.overlap.conflicts  NDMP fragment overlapping with conflicting data
        Boolean
    ndmp.fragment.too_long_fragment  NDMP fragment too long
        Boolean
    ndmp.fragments  NDMP fragments
        No value
    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
    ndmp.fs.invalid.avail_size  Available size invalid
        Boolean
        If available size is invalid
    ndmp.fs.invalid.total_inodes  Total number of inodes invalid
        Boolean
        If total number of inodes is invalid
    ndmp.fs.invalid.total_size  Total size invalid
        Boolean
        If total size is invalid
    ndmp.fs.invalid.used_inodes  Used number of inodes is invalid
        Boolean
        If used number of inodes is invalid
    ndmp.fs.invalid.used_size  Used size invalid
        Boolean
        If used size is invalid
    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.hostid  HostID
        String
    ndmp.hostname  Hostname
        String
    ndmp.lastfrag  Last Fragment
        Boolean
    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
    ndmp.os.version  OS Version
        String
    ndmp.reassembled.in  Reassembled in
        Frame number
    ndmp.reassembled.length  Reassembled NDMP length
        Unsigned 32-bit integer
    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.request_frame  Request In
        Frame number
        The request to this NDMP command is in this frame
    ndmp.resid_count  Resid Count
        Unsigned 32-bit integer
        Number of remaining bytes/objects/operations
    ndmp.response_frame  Response In
        Frame number
        The response to this NDMP command is in this frame
    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
    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.attr.rewind  Device supports rewind
        Boolean
        If this device supports rewind
    ndmp.tape.attr.unload  Device supports unload
        Boolean
        If this device supports unload
    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
    ndmp.tape.dev_cap  Device Capability
        No value
        Tape Device Capability
    ndmp.tape.device  Device
        String
        Name of TAPE Device
    ndmp.tape.flags.error  Error
        Boolean
        error
    ndmp.tape.flags.no_rewind  No rewind
        Boolean
        no_rewind
    ndmp.tape.flags.unload  Unload
        Boolean
        unload
    ndmp.tape.flags.write_protect  Write protect
        Boolean
        write_protect
    ndmp.tape.info  Tape Info
        No value
    ndmp.tape.invalid.block_no  Block no
        Boolean
        block_no
    ndmp.tape.invalid.block_size  Block size
        Boolean
        block_size
    ndmp.tape.invalid.file_num  Invalid file num
        Boolean
        invalid_file_num
    ndmp.tape.invalid.partition  Invalid partition
        Boolean
        partition
    ndmp.tape.invalid.soft_errors  Soft errors
        Boolean
        soft_errors
    ndmp.tape.invalid.space_remain  Space remain
        Boolean
        space_remain
    ndmp.tape.invalid.total_space  Total space
        Boolean
        total_space
    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
    ndmp.tape.status.block_size  block_size
        Unsigned 32-bit integer
    ndmp.tape.status.file_num  file_num
        Unsigned 32-bit integer
    ndmp.tape.status.partition  partition
        Unsigned 32-bit integer
    ndmp.tape.status.soft_errors  soft_errors
        Unsigned 32-bit integer
    ndmp.tape.status.space_remain  space_remain
        Unsigned 64-bit integer
    ndmp.tape.status.total_space  total_space
        Unsigned 64-bit integer
    ndmp.tcp.default_env  Default Env
        No value
        Default Env's for this Butype Info
    ndmp.tcp.env.name  Name
        String
        Name for this env-variable
    ndmp.tcp.env.value  Value
        String
        Value for this env-variable
    ndmp.tcp.port_list  TCP Ports
        No value
        List of TCP ports
    ndmp.time  Time from request
        Time duration
        Time since the request packet
    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
    ndmp_class_list  Ext Class List
        No value
        List of extension classes

Network File System (nfs)

    nfs.ace  ace
        String
        Access Control Entry
    nfs.aceflag4  aceflag
        Unsigned 32-bit integer
    nfs.acemask4  acemask
        Unsigned 32-bit integer
    nfs.acetype4  acetype
        Unsigned 32-bit integer
    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.cachethis4  cache this?
        Boolean
    nfs.call.operation  Opcode
        Unsigned 32-bit integer
    nfs.callback.ident  callback_ident
        Unsigned 32-bit integer
        Callback Identifier
    nfs.cb.operation  Opcode
        Unsigned 32-bit integer
    nfs.cb_location  cb_location
        Unsigned 32-bit integer
    nfs.cb_procedure  CB Procedure
        Unsigned 32-bit integer
    nfs.cb_program  cb_program
        Unsigned 32-bit integer
    nfs.cb_reply.operation  Opcode
        Unsigned 32-bit integer
    nfs.cbrenforce4  binding enforce?
        Boolean
    nfs.change_info.atomic  Atomic
        Boolean
    nfs.changeid4  changeid
        Unsigned 64-bit integer
    nfs.changeid4.after  changeid (after)
        Unsigned 64-bit integer
    nfs.changeid4.before  changeid (before)
        Unsigned 64-bit integer
    nfs.clientid  clientid
        Unsigned 64-bit integer
        Client ID
    nfs.clorachanged  Clora changed
        Boolean
    nfs.cookie3  cookie
        Unsigned 64-bit integer
    nfs.cookie4  cookie
        Unsigned 64-bit integer
    nfs.cookieverf4  cookieverf
        Unsigned 64-bit integer
    nfs.count3  count
        Unsigned 32-bit integer
    nfs.count3_dircount  dircount
        Unsigned 32-bit integer
    nfs.count3_maxcount  maxcount
        Unsigned 32-bit integer
    nfs.count4  count
        Unsigned 32-bit integer
    nfs.create_session_flags  CREATE_SESSION flags
        Unsigned 32-bit integer
    nfs.createmode  Create Mode
        Unsigned 32-bit integer
    nfs.createmode4  Create Mode
        Unsigned 32-bit integer
    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
    nfs.delegate_type  delegate_type
        Unsigned 32-bit integer
    nfs.devaddr  device addr
        Byte array
    nfs.deviceid  device ID
        Byte array
    nfs.deviceidx  device index
        Unsigned 32-bit integer
    nfs.devicenum4  num devices
        Unsigned 32-bit integer
    nfs.dircount  dircount
        Unsigned 32-bit integer
    nfs.dirlist4.eof  eof
        Boolean
    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.exch_id_flags  eia_flags
        Unsigned 32-bit integer
    nfs.exchange_id.flags.bind_princ  EXCHGID4_FLAG_BIND_PRINC_STATEID 
        Boolean
    nfs.exchange_id.flags.confirmed_r  EXCHGID4_FLAG_CONFIRMED_R        
        Boolean
    nfs.exchange_id.flags.confirmed_rec_a  EXCHGID4_FLAG_UPD_CONFIRMED_REC_A
        Boolean
    nfs.exchange_id.flags.moved_migr  EXCHGID4_FLAG_SUPP_MOVED_MIGR    
        Boolean
    nfs.exchange_id.flags.moved_refer  EXCHGID4_FLAG_SUPP_MOVED_REFER   
        Boolean
    nfs.exchange_id.flags.non_pnfs  EXCHGID4_FLAG_USE_NON_PNFS       
        Boolean
    nfs.exchange_id.flags.pnfs_ds  EXCHGID4_FLAG_USE_PNFS_DS        
        Boolean
    nfs.exchange_id.flags.pnfs_mds  EXCHGID4_FLAG_USE_PNFS_MDS       
        Boolean
    nfs.exchange_id.state_protect  eia_state_protect
        Unsigned 32-bit integer
        State Protect How
    nfs.fattr.blocks  blocks
        Unsigned 32-bit integer
    nfs.fattr.blocksize  blocksize
        Unsigned 32-bit integer
    nfs.fattr.fileid  fileid
        Unsigned 32-bit integer
    nfs.fattr.fsid  fsid
        Unsigned 32-bit integer
    nfs.fattr.gid  gid
        Unsigned 32-bit integer
    nfs.fattr.nlink  nlink
        Unsigned 32-bit integer
    nfs.fattr.rdev  rdev
        Unsigned 32-bit integer
    nfs.fattr.size  size
        Unsigned 32-bit integer
    nfs.fattr.type  type
        Unsigned 32-bit integer
    nfs.fattr.uid  uid
        Unsigned 32-bit integer
    nfs.fattr3.fileid  fileid
        Unsigned 64-bit integer
    nfs.fattr3.fsid  fsid
        Unsigned 64-bit integer
    nfs.fattr3.gid  gid
        Unsigned 32-bit integer
    nfs.fattr3.nlink  nlink
        Unsigned 32-bit integer
    nfs.fattr3.rdev  rdev
        Unsigned 32-bit integer
    nfs.fattr3.size  size
        Unsigned 64-bit integer
    nfs.fattr3.type  Type
        Unsigned 32-bit integer
    nfs.fattr3.uid  uid
        Unsigned 32-bit integer
    nfs.fattr3.used  used
        Unsigned 64-bit integer
    nfs.fattr4.aclsupport  aclsupport
        Unsigned 32-bit integer
    nfs.fattr4.attr_vals  attr_vals
        Byte array
    nfs.fattr4.fileid  fileid
        Unsigned 64-bit integer
    nfs.fattr4.files_avail  files_avail
        Unsigned 64-bit integer
    nfs.fattr4.files_free  files_free
        Unsigned 64-bit integer
    nfs.fattr4.files_total  files_total
        Unsigned 64-bit integer
    nfs.fattr4.fs_location  fs_location4
        String
    nfs.fattr4.layout_blksize  fileid
        Unsigned 32-bit integer
    nfs.fattr4.lease_time  lease_time
        Unsigned 32-bit integer
    nfs.fattr4.maxfilesize  maxfilesize
        Unsigned 64-bit integer
    nfs.fattr4.maxlink  maxlink
        Unsigned 32-bit integer
    nfs.fattr4.maxname  maxname
        Unsigned 32-bit integer
    nfs.fattr4.maxread  maxread
        Unsigned 64-bit integer
    nfs.fattr4.maxwrite  maxwrite
        Unsigned 64-bit integer
    nfs.fattr4.mounted_on_fileid  fileid
        Unsigned 64-bit integer
    nfs.fattr4.numlinks  numlinks
        Unsigned 32-bit integer
    nfs.fattr4.quota_hard  quota_hard
        Unsigned 64-bit integer
    nfs.fattr4.quota_soft  quota_soft
        Unsigned 64-bit integer
    nfs.fattr4.quota_used  quota_used
        Unsigned 64-bit integer
    nfs.fattr4.size  size
        Unsigned 64-bit integer
    nfs.fattr4.space_avail  space_avail
        Unsigned 64-bit integer
    nfs.fattr4.space_free  space_free
        Unsigned 64-bit integer
    nfs.fattr4.space_total  space_total
        Unsigned 64-bit integer
    nfs.fattr4.space_used  space_used
        Unsigned 64-bit integer
    nfs.fattr4_archive  fattr4_archive
        Boolean
    nfs.fattr4_cansettime  fattr4_cansettime
        Boolean
    nfs.fattr4_case_insensitive  fattr4_case_insensitive
        Boolean
    nfs.fattr4_case_preserving  fattr4_case_preserving
        Boolean
    nfs.fattr4_chown_restricted  fattr4_chown_restricted
        Boolean
    nfs.fattr4_hidden  fattr4_hidden
        Boolean
    nfs.fattr4_homogeneous  fattr4_homogeneous
        Boolean
    nfs.fattr4_link_support  fattr4_link_support
        Boolean
    nfs.fattr4_mimetype  fattr4_mimetype
        String
    nfs.fattr4_named_attr  fattr4_named_attr
        Boolean
    nfs.fattr4_no_trunc  fattr4_no_trunc
        Boolean
    nfs.fattr4_owner  fattr4_owner
        String
    nfs.fattr4_owner_group  fattr4_owner_group
        String
    nfs.fattr4_symlink_support  fattr4_symlink_support
        Boolean
    nfs.fattr4_system  fattr4_system
        Boolean
    nfs.fattr4_unique_handles  fattr4_unique_handles
        Boolean
    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
    nfs.fh.dirinode  directory inode
        Unsigned 32-bit integer
    nfs.fh.endianness  endianness
        Boolean
        server native endianness
    nfs.fh.ex.fsid  ex_fsid
        Unsigned 32-bit integer
        File system ID of the object
    nfs.fh.ex.gen  ex_gen
        Unsigned 32-bit integer
        Generation ID of the object
    nfs.fh.ex.info  Export info
        Byte array
        Export Info (16 bytes)
    nfs.fh.ex.inode  ex_inode
        Unsigned 32-bit integer
        Inode of the object
    nfs.fh.ex.kindid  ex_kindid
        Unsigned 16-bit integer
        KindID of the object
    nfs.fh.ex.treeid  ex_treeid
        Unsigned 16-bit integer
        TreeID of the object
    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.file.flag.aggr  aggr
        Unsigned 16-bit integer
        file flag: aggr
    nfs.fh.file.flag.empty  empty
        Unsigned 16-bit integer
        file flag: empty
    nfs.fh.file.flag.exp_snapdir  exp_snapdir
        Unsigned 16-bit integer
        file flag: exp_snapdir
    nfs.fh.file.flag.foster  foster
        Unsigned 16-bit integer
        file flag: foster
    nfs.fh.file.flag.metadata  metadata
        Unsigned 16-bit integer
        file flag: metadata
    nfs.fh.file.flag.mntpoint  mount point
        Unsigned 16-bit integer
        file flag: mountpoint
    nfs.fh.file.flag.multivolume  multivolume
        Unsigned 16-bit integer
        file flag: multivolume
    nfs.fh.file.flag.named_attr  named_attr
        Unsigned 16-bit integer
        file flag: named_attr
    nfs.fh.file.flag.next_gen  next_gen
        Unsigned 16-bit integer
        file flag: next_gen
    nfs.fh.file.flag.orphan  orphan
        Unsigned 16-bit integer
        file flag: orphan
    nfs.fh.file.flag.private  private
        Unsigned 16-bit integer
        file flag: private
    nfs.fh.file.flag.snadir_ent  snapdir_ent
        Unsigned 16-bit integer
        file flag: snapdir_ent
    nfs.fh.file.flag.snapdir  snapdir
        Unsigned 16-bit integer
        file flag: snapdir
    nfs.fh.file.flag.striped  striped
        Unsigned 16-bit integer
        file flag: striped
    nfs.fh.file.flag.vbn_access  vbn_access
        Unsigned 16-bit integer
        file flag: vbn_access
    nfs.fh.file.flag.vfiler  vfiler
        Unsigned 16-bit integer
        file flag: vfiler
    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.flag  flag
        Unsigned 32-bit integer
        file handle flag
    nfs.fh.flags  flags
        Unsigned 16-bit integer
        file handle flags
    nfs.fh.fn  file number
        Unsigned 32-bit integer
    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
    nfs.fh.generation  generation
        Unsigned 32-bit integer
        inode generation
    nfs.fh.handletype  handletype
        Unsigned 32-bit integer
        v4 handle type
    nfs.fh.hash  hash (CRC-32)
        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.obj.fsid  obj_fsid
        Unsigned 32-bit integer
        File system ID of the object
    nfs.fh.obj.gen  obj_gen
        Unsigned 32-bit integer
        Generation ID of the object
    nfs.fh.obj.id  Object type
        Unsigned 32-bit integer
        Object ID
    nfs.fh.obj.info  Object info
        Byte array
        File/Dir/Object Info
    nfs.fh.obj.inode  obj_inode
        Unsigned 32-bit integer
        Inode of the object
    nfs.fh.obj.kindid  obj_kindid
        Unsigned 16-bit integer
        KindID of the object
    nfs.fh.obj.treeid  obj_treeid
        Unsigned 16-bit integer
        TreeID of the object
    nfs.fh.pinode  pseudo inode
        Unsigned 32-bit integer
    nfs.fh.ro.node  RO_node
        Boolean
        Read Only Node
    nfs.fh.snapid  snapid
        Unsigned 8-bit integer
        snapshot ID
    nfs.fh.unused  unused
        Unsigned 8-bit integer
    nfs.fh.version  version
        Unsigned 8-bit integer
        file handle layout version
    nfs.fh.xdev  exported device
        Unsigned 32-bit integer
    nfs.fh.xfn  exported file number
        Unsigned 32-bit integer
    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.fhandle  filehandle
        Byte array
        Opaque nfs filehandle
    nfs.filesize  filesize
        Unsigned 64-bit integer
    nfs.flavor4  flavor
        Unsigned 32-bit integer
    nfs.flavors.info  Flavors Info
        No value
    nfs.fsid4.major  fsid4.major
        Unsigned 64-bit integer
    nfs.fsid4.minor  fsid4.minor
        Unsigned 64-bit integer
    nfs.fsinfo.dtpref  dtpref
        Unsigned 32-bit integer
        Preferred READDIR request
    nfs.fsinfo.maxfilesize  maxfilesize
        Unsigned 64-bit integer
        Maximum file size
    nfs.fsinfo.properties  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
    nfs.fsstat3_resok.afiles  Available free file slots
        Unsigned 64-bit integer
    nfs.fsstat3_resok.fbytes  Free bytes
        Unsigned 64-bit integer
    nfs.fsstat3_resok.ffiles  Free file slots
        Unsigned 64-bit integer
    nfs.fsstat3_resok.tbytes  Total bytes
        Unsigned 64-bit integer
    nfs.fsstat3_resok.tfiles  Total file slots
        Unsigned 64-bit integer
    nfs.full_name  Full Name
        String
    nfs.gid3  gid
        Unsigned 32-bit integer
    nfs.gid4  gid
        Unsigned 32-bit integer
    nfs.gsshandle4  gsshandle4
        Byte array
    nfs.gxfh3.cid  cluster id
        Unsigned 16-bit integer
    nfs.gxfh3.epoch  epoch
        Unsigned 16-bit integer
    nfs.gxfh3.exportptid  export point id
        Unsigned 32-bit integer
    nfs.gxfh3.exportptuid  export point unique id
        Unsigned 32-bit integer
    nfs.gxfh3.ldsid  local dsid
        Unsigned 32-bit integer
    nfs.gxfh3.reserved  reserved
        Unsigned 16-bit integer
    nfs.gxfh3.sfhflags  flags
        Unsigned 8-bit integer
    nfs.gxfh3.sfhflags.empty  empty
        Boolean
    nfs.gxfh3.sfhflags.ontap7g  ontap-7g
        Unsigned 8-bit integer
    nfs.gxfh3.sfhflags.ontapgx  ontap-gx
        Unsigned 8-bit integer
    nfs.gxfh3.sfhflags.reserv2  reserved
        Unsigned 8-bit integer
    nfs.gxfh3.sfhflags.reserve1  reserved
        Unsigned 8-bit integer
    nfs.gxfh3.sfhflags.snapdir  snap dir
        Boolean
    nfs.gxfh3.sfhflags.snapdirent  snap dir ent
        Boolean
    nfs.gxfh3.sfhflags.streamdir  stream dir
        Boolean
    nfs.gxfh3.sfhflags.striped  striped
        Boolean
    nfs.gxfh3.spinfid  spin file id
        Unsigned 32-bit integer
    nfs.gxfh3.spinfuid  spin file unique id
        Unsigned 32-bit integer
    nfs.gxfh3.utility  utility
        Unsigned 8-bit integer
    nfs.gxfh3.utlfield.junction  broken junction
        Unsigned 8-bit integer
    nfs.gxfh3.utlfield.notjunction  not broken junction
        Unsigned 8-bit integer
    nfs.gxfh3.utlfield.treeR  tree R
        Unsigned 8-bit integer
    nfs.gxfh3.utlfield.treeW  tree W
        Unsigned 8-bit integer
    nfs.gxfh3.utlfield.version  file handle version
        Unsigned 8-bit integer
    nfs.gxfh3.volcnt  volume count
        Unsigned 8-bit integer
    nfs.hashalg4  hash alg
        Unsigned 32-bit integer
    nfs.impl_id4.length  Implemetation ID length
        Unsigned 32-bit integer
    nfs.iomode  IO mode
        Unsigned 32-bit integer
    nfs.layout  layout
        Byte array
    nfs.layoutavail  layout available?
        Boolean
    nfs.layoutcount  layout
        Unsigned 32-bit integer
        layout count
    nfs.layouttype  layout type
        Unsigned 32-bit integer
    nfs.layoutupdate  layout update
        Byte array
    nfs.length4  length
        Unsigned 64-bit integer
    nfs.lock.locker.new_lock_owner  new lock owner?
        Boolean
    nfs.lock.reclaim  reclaim?
        Boolean
    nfs.lock_owner4  owner
        Byte array
    nfs.lock_seqid  lock_seqid
        Unsigned 32-bit integer
        Lock Sequence ID
    nfs.locktype4  locktype
        Unsigned 32-bit integer
    nfs.lrf_body_content  lrf_body_content
        Byte array
    nfs.lrs_present  Stateid present?
        Boolean
    nfs.machinename4  machine name
        String
    nfs.majorid4  major ID
        Byte array
    nfs.maxcount  maxcount
        Unsigned 32-bit integer
    nfs.maxops4  max ops
        Unsigned 32-bit integer
    nfs.maxreqs4  max reqs
        Unsigned 32-bit integer
    nfs.maxreqsize4  max req size
        Unsigned 32-bit integer
    nfs.maxrespsize4  max resp size
        Unsigned 32-bit integer
    nfs.maxrespsizecached4  max resp size cached
        Unsigned 32-bit integer
    nfs.mdscommit  MDS commit?
        Boolean
    nfs.minlength4  min length
        Unsigned 64-bit integer
    nfs.minorid4  minor ID
        Unsigned 64-bit integer
    nfs.minorversion  minorversion
        Unsigned 32-bit integer
    nfs.mode3  Mode
        Unsigned 32-bit integer
    nfs.mode3.rgrp  S_IRGRP
        Boolean
    nfs.mode3.roth  S_IROTH
        Boolean
    nfs.mode3.rusr  S_IRUSR
        Boolean
    nfs.mode3.sgid  S_ISGID
        Boolean
    nfs.mode3.sticky  S_ISVTX
        Boolean
    nfs.mode3.suid  S_ISUID
        Boolean
    nfs.mode3.wgrp  S_IWGRP
        Boolean
    nfs.mode3.woth  S_IWOTH
        Boolean
    nfs.mode3.wusr  S_IWUSR
        Boolean
    nfs.mode3.xgrp  S_IXGRP
        Boolean
    nfs.mode3.xoth  S_IXOTH
        Boolean
    nfs.mode3.xusr  S_IXUSR
        Boolean
    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
    nfs.newoffset  new offset?
        Boolean
    nfs.newsize  new size?
        Boolean
    nfs.newtime  new time?
        Boolean
    nfs.nfl_first_stripe_index  first stripe to use index
        Unsigned 32-bit integer
    nfs.nfl_util  nfl_util
        Unsigned 32-bit integer
    nfs.nfs_client_id4.id  id
        Byte array
    nfs.nfs_ftype4  nfs_ftype4
        Unsigned 32-bit integer
    nfs.nfsstat3  Status
        Unsigned 32-bit integer
        Reply status
    nfs.nfsstat4  Status
        Unsigned 32-bit integer
        Reply status
    nfs.nfstime4.nseconds  nseconds
        Unsigned 32-bit integer
    nfs.nfstime4.seconds  seconds
        Unsigned 64-bit integer
    nfs.nii_domain4  Implementor DNS domain name(nii_domain)
        String
    nfs.nii_name4  Implementation product name(nii_name)
        String
    nfs.notificationbitmap  notification bitmap
        Unsigned 32-bit integer
    nfs.num_blocks  num_blocks
        Unsigned 32-bit integer
    nfs.offset3  offset
        Unsigned 64-bit integer
    nfs.offset4  offset
        Unsigned 64-bit integer
    nfs.open.claim_type  Claim Type
        Unsigned 32-bit integer
    nfs.open.delegation_type  Delegation Type
        Unsigned 32-bit integer
    nfs.open.limit_by  Space Limit
        Unsigned 32-bit integer
        Limit By
    nfs.open.opentype  Open Type
        Unsigned 32-bit integer
    nfs.open4.share_access  share_access
        Unsigned 32-bit integer
    nfs.open4.share_deny  share_deny
        Unsigned 32-bit integer
    nfs.open_owner4  owner
        Byte array
    nfs.openattr4.createdir  attribute dir create
        Boolean
    nfs.ops.count  Operations
        Unsigned 32-bit integer
        Number of Operations
    nfs.padsize4  hdr pad size
        Unsigned 32-bit integer
    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.patternoffset  layout pattern offset
        Unsigned 64-bit integer
    nfs.procedure_v2  V2 Procedure
        Unsigned 32-bit integer
    nfs.procedure_v3  V3 Procedure
        Unsigned 32-bit integer
    nfs.procedure_v4  V4 Procedure
        Unsigned 32-bit integer
    nfs.prot_info4_encr_alg  Prot Info encryption algorithm
        Unsigned 32-bit integer
    nfs.prot_info4_hash_alg  Prot Info hash algorithm
        Unsigned 32-bit integer
    nfs.prot_info4_spi_window  Prot Info spi window
        Unsigned 32-bit integer
    nfs.prot_info4_svv_length  Prot Info svv_length
        Unsigned 32-bit integer
    nfs.r_addr  r_addr
        String
    nfs.r_netid  r_netid
        String
    nfs.rdmachanattrs4  RDMA chan attrs
        Unsigned 32-bit integer
    nfs.read.count  Count
        Unsigned 32-bit integer
        Read Count
    nfs.read.data_length  Read length
        Unsigned 32-bit integer
        Length of read response
    nfs.read.eof  EOF
        Boolean
    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
    nfs.readdir.entry.name  Name
        String
    nfs.readdir.entry3.cookie  Cookie
        Unsigned 64-bit integer
        Directory Cookie
    nfs.readdir.entry3.fileid  File ID
        Unsigned 64-bit integer
    nfs.readdir.entry3.name  Name
        String
    nfs.readdir.eof  EOF
        Unsigned 32-bit integer
    nfs.readdirplus.entry.cookie  Cookie
        Unsigned 64-bit integer
        Directory Cookie
    nfs.readdirplus.entry.fileid  File ID
        Unsigned 64-bit integer
    nfs.readdirplus.entry.name  Name
        String
    nfs.readlink.data  Data
        String
        Symbolic Link Data
    nfs.recall  Recall
        Boolean
    nfs.recall4  recall
        Boolean
    nfs.recalltype  recall type
        Unsigned 32-bit integer
    nfs.reclaim4  reclaim
        Boolean
    nfs.reclaim_one_fs4  reclaim one fs?
        Boolean
    nfs.reply.operation  Opcode
        Unsigned 32-bit integer
    nfs.retclose4  return on close?
        Boolean
    nfs.returntype  return type
        Unsigned 32-bit integer
    nfs.scope  server scope
        Byte array
    nfs.secinfo.flavor  flavor
        Unsigned 32-bit integer
    nfs.secinfo.flavor_info.rpcsec_gss_info.oid  oid
        Byte array
    nfs.secinfo.flavor_info.rpcsec_gss_info.qop  qop
        Unsigned 32-bit integer
    nfs.secinfo.rpcsec_gss_info.service  service
        Unsigned 32-bit integer
    nfs.seqid  seqid
        Unsigned 32-bit integer
        Sequence ID
    nfs.server  server
        String
    nfs.service4  gid
        Unsigned 32-bit integer
    nfs.session_id4  sessionid
        Byte array
    nfs.set_it  set_it
        Unsigned 32-bit integer
        How To Set Time
    nfs.set_size3.size  size
        Unsigned 64-bit integer
    nfs.slotid4  slot ID
        Unsigned 32-bit integer
    nfs.specdata1  specdata1
        Unsigned 32-bit integer
    nfs.specdata2  specdata2
        Unsigned 32-bit integer
    nfs.ssvlen4  ssv len
        Unsigned 32-bit integer
    nfs.stable_how4  stable_how4
        Unsigned 32-bit integer
    nfs.stamp4  stamp
        Unsigned 32-bit integer
    nfs.stat  Status
        Unsigned 32-bit integer
        Reply status
    nfs.state_protect_num_gss_handles  State Protect num gss handles
        Unsigned 32-bit integer
    nfs.state_protect_window  State Protect window
        Unsigned 32-bit integer
    nfs.stateid4  stateid
        Unsigned 64-bit integer
    nfs.stateid4.other  Data
        Byte array
    nfs.statfs.bavail  Available Blocks
        Unsigned 32-bit integer
    nfs.statfs.bfree  Free Blocks
        Unsigned 32-bit integer
    nfs.statfs.blocks  Total Blocks
        Unsigned 32-bit integer
    nfs.statfs.bsize  Block Size
        Unsigned 32-bit integer
    nfs.statfs.tsize  Transfer Size
        Unsigned 32-bit integer
    nfs.status  status
        Unsigned 32-bit integer
    nfs.stripedevs  stripe devs
        Unsigned 32-bit integer
    nfs.stripeindex  first stripe index
        Unsigned 32-bit integer
    nfs.stripetype  stripe type
        Unsigned 32-bit integer
    nfs.stripeunit  stripe unit
        Unsigned 64-bit integer
    nfs.symlink.linktext  Name
        String
        Symbolic link contents
    nfs.symlink.to  To
        String
        Symbolic link destination name
    nfs.tag  Tag
        String
    nfs.truncate  Truncate?
        Boolean
    nfs.type  Type
        Unsigned 32-bit integer
        File Type
    nfs.uid3  uid
        Unsigned 32-bit integer
    nfs.uid4  uid
        Unsigned 32-bit integer
    nfs.util  util
        Unsigned 32-bit integer
    nfs.verifier4  verifier
        Unsigned 64-bit integer
    nfs.wcc_attr.size  size
        Unsigned 64-bit integer
    nfs.who  who
        String
    nfs.write.beginoffset  Begin Offset
        Unsigned 32-bit integer
        Begin offset (obsolete)
    nfs.write.committed  Committed
        Unsigned 32-bit integer
    nfs.write.data_length  Write length
        Unsigned 32-bit integer
        Length of write request
    nfs.write.offset  Offset
        Unsigned 32-bit integer
    nfs.write.stable  Stable
        Unsigned 32-bit integer
    nfs.write.totalcount  Total Count
        Unsigned 32-bit integer
        Total Count (obsolete)

Network Lock Manager Protocol (nlm)

    nlm.block  block
        Boolean
    nlm.cookie  cookie
        Byte array
    nlm.exclusive  exclusive
        Boolean
    nlm.holder  holder
        No value
    nlm.lock  lock
        No value
    nlm.lock.caller_name  caller_name
        String
    nlm.lock.l_len  l_len
        Unsigned 64-bit integer
    nlm.lock.l_offset  l_offset
        Unsigned 64-bit integer
    nlm.lock.owner  owner
        Byte array
    nlm.lock.svid  svid
        Unsigned 32-bit integer
    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
    nlm.procedure_v2  V2 Procedure
        Unsigned 32-bit integer
    nlm.procedure_v3  V3 Procedure
        Unsigned 32-bit integer
    nlm.procedure_v4  V4 Procedure
        Unsigned 32-bit integer
    nlm.reclaim  reclaim
        Boolean
    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
    nlm.share  share
        No value
    nlm.share.access  access
        Unsigned 32-bit integer
    nlm.share.mode  mode
        Unsigned 32-bit integer
    nlm.share.name  name
        String
    nlm.stat  stat
        Unsigned 32-bit integer
    nlm.state  state
        Unsigned 32-bit integer
        STATD state
    nlm.test_stat  test_stat
        No value
    nlm.test_stat.stat  stat
        Unsigned 32-bit integer
    nlm.time  Time from request
        Time duration
        Time between Request and Reply for async NLM calls

Network News Transfer Protocol (nntp)

    nntp.request  Request
        Boolean
        TRUE if NNTP request
    nntp.response  Response
        Boolean
        TRUE if NNTP response

Network Status Monitor CallBack Protocol (statnotify)

    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
    statnotify.state  State
        Unsigned 32-bit integer
        New state of client that changed

Network Status Monitor Protocol (stat)

    stat.mon  Monitor
        No value
        Monitor Host
    stat.mon_id.name  Monitor ID Name
        String
    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
    stat.priv  Priv
        Byte array
        Private client supplied opaque data
    stat.procedure_v1  V1 Procedure
        Unsigned 32-bit integer
    stat.stat_chge  Status Change
        No value
        Status Change structure
    stat.stat_res  Status Result
        No value
    stat.stat_res.res  Result
        Unsigned 32-bit integer
    stat.stat_res.state  State
        Unsigned 32-bit integer
    stat.state  State
        Unsigned 32-bit integer
        State of local NSM

Network Time Protocol (ntp)

    ntp.ext  Extension
        No value
    ntp.ext.associd  Association ID
        Unsigned 32-bit integer
    ntp.ext.flags  Flags
        Unsigned 8-bit integer
        Flags (Response/Error/Version)
    ntp.ext.flags.error  Error bit
        Unsigned 8-bit integer
    ntp.ext.flags.r  Response bit
        Unsigned 8-bit integer
    ntp.ext.flags.vn  Version
        Unsigned 8-bit integer
    ntp.ext.fstamp  File Timestamp
        Unsigned 32-bit integer
    ntp.ext.len  Extension length
        Unsigned 16-bit integer
    ntp.ext.op  Opcode
        Unsigned 8-bit integer
    ntp.ext.sig  Signature
        Byte array
    ntp.ext.siglen  Signature length
        Unsigned 32-bit integer
    ntp.ext.tstamp  Timestamp
        Unsigned 32-bit integer
    ntp.ext.val  Value
        Byte array
    ntp.ext.vallen  Value length
        Unsigned 32-bit integer
    ntp.flags  Flags
        Unsigned 8-bit integer
        Flags (Leap/Version/Mode)
    ntp.flags.li  Leap Indicator
        Unsigned 8-bit integer
    ntp.flags.mode  Mode
        Unsigned 8-bit integer
    ntp.flags.vn  Version number
        Unsigned 8-bit integer
    ntp.keyid  Key ID
        Byte array
    ntp.mac  Message Authentication Code
        Byte array
    ntp.org  Originate Time Stamp
        Byte array
    ntp.ppoll  Peer Polling Interval
        Unsigned 8-bit integer
    ntp.precision  Peer Clock Precision
        Signed 8-bit integer
    ntp.rec  Receive Time Stamp
        Byte array
    ntp.refid  Reference Clock ID
        Byte array
    ntp.reftime  Reference Clock Update Time
        Byte array
    ntp.rootdelay  Root Delay
        Double-precision floating point
    ntp.rootdispersion  Root Dispersion
        Double-precision floating point
    ntp.stratum  Peer Clock Stratum
        Unsigned 8-bit integer
    ntp.xmt  Transmit Time Stamp
        Byte array
    ntpctrl.associd  AssociationID
        Unsigned 16-bit integer
    ntpctrl.clock_status.code  Clock Event Code
        Unsigned 16-bit integer
    ntpctrl.clock_status.status  Clock Status
        Unsigned 16-bit integer
    ntpctrl.count  Count
        Unsigned 16-bit integer
    ntpctrl.data  Data
        No value
    ntpctrl.err_status  Error Status Word
        Unsigned 16-bit integer
    ntpctrl.flags2  Flags 2
        Unsigned 8-bit integer
        Flags (Response/Error/More/Opcode)
    ntpctrl.flags2.error  Error bit
        Unsigned 8-bit integer
    ntpctrl.flags2.more  More bit
        Unsigned 8-bit integer
    ntpctrl.flags2.opcode  Opcode
        Unsigned 8-bit integer
    ntpctrl.flags2.r  Response bit
        Unsigned 8-bit integer
    ntpctrl.item  Item
        No value
    ntpctrl.offset  Offset
        Unsigned 16-bit integer
    ntpctrl.peer_status.authenable  Peer Status
        Unsigned 16-bit integer
    ntpctrl.peer_status.authentic  Peer Status
        Unsigned 16-bit integer
    ntpctrl.peer_status.code  Peer Event Code
        Unsigned 16-bit integer
    ntpctrl.peer_status.config  Peer Status
        Unsigned 16-bit integer
    ntpctrl.peer_status.count  Peer Event Counter
        Unsigned 16-bit integer
    ntpctrl.peer_status.reach  Peer Status
        Unsigned 16-bit integer
    ntpctrl.peer_status.reserved  Peer Status: reserved
        Unsigned 16-bit integer
    ntpctrl.peer_status.selection  Peer Selection
        Unsigned 16-bit integer
    ntpctrl.sequence  Sequence
        Unsigned 16-bit integer
    ntpctrl.status  Status
        Unsigned 16-bit integer
    ntpctrl.sys_status.clksrc  Clock Source
        Unsigned 16-bit integer
    ntpctrl.sys_status.code  System Event Code
        Unsigned 16-bit integer
    ntpctrl.sys_status.count  System Event Counter
        Unsigned 16-bit integer
    ntpctrl.sys_status.li  Leap Indicator
        Unsigned 16-bit integer
    ntpctrl.trapmsg  Trap message
        String
    ntppriv.auth  Auth bit
        Unsigned 8-bit integer
    ntppriv.auth_seq  Auth, sequence
        Unsigned 8-bit integer
        Auth bit, sequence number
    ntppriv.flags.more  More bit
        Unsigned 8-bit integer
    ntppriv.flags.r  Response bit
        Unsigned 8-bit integer
    ntppriv.impl  Implementation
        Unsigned 8-bit integer
    ntppriv.reqcode  Request code
        Unsigned 8-bit integer
    ntppriv.seq  Sequence number
        Unsigned 8-bit integer

NexusWare C7 MTP (nw_mtp)

    nwmtp.data_length  Length
        Unsigned 32-bit integer
        Data Length
    nwmtp.data_type  Data Type
        Unsigned 8-bit integer
        The Data Type
    nwmtp.link_index  Link Index
        Unsigned 16-bit integer
        Link Index
    nwmtp.transp_type  Transport Type
        Unsigned 8-bit integer
        The Transport Type
    nwmtp.user_context  User Context
        Unsigned 32-bit integer
        Use Context

Non-Access-Stratum (NAS)PDU (nas-eps)

    nas_eps.bearer_id  EPS bearer identity
        Unsigned 8-bit integer
    nas_eps.common.elem_id  Element ID
        Unsigned 8-bit integer
    nas_eps.emm.128eea1  128-EEA1
        Boolean
    nas_eps.emm.128eea2  128-EEA2
        Boolean
    nas_eps.emm.128eia1  128-EIA1
        Boolean
    nas_eps.emm.128eia2  128-EIA2
        Boolean
    nas_eps.emm.1xsrvcc_cap  1xSRVCC capability
        Boolean
    nas_eps.emm.EPS_attach_result  Attach result
        Unsigned 8-bit integer
    nas_eps.emm.active_flg  Active flag
        Boolean
    nas_eps.emm.apn_ambr_dl  APN-AMBR for downlink
        Unsigned 8-bit integer
    nas_eps.emm.apn_ambr_dl_ext  APN-AMBR for downlink(Extended)
        Unsigned 8-bit integer
    nas_eps.emm.apn_ambr_dl_ext2  APN-AMBR for downlink(Extended-2)
        Unsigned 8-bit integer
    nas_eps.emm.apn_ambr_ul  APN-AMBR for uplink
        Unsigned 8-bit integer
    nas_eps.emm.apn_ambr_ul_ext  APN-AMBR for uplink(Extended)
        Unsigned 8-bit integer
    nas_eps.emm.apn_ambr_ul_ext2  APN-AMBR for uplink(Extended-2)
        Unsigned 8-bit integer
    nas_eps.emm.cause  Cause
        Unsigned 8-bit integer
    nas_eps.emm.csfb_resp  CSFB response
        Unsigned 8-bit integer
    nas_eps.emm.detach_type_dl  Detach Type
        Unsigned 8-bit integer
    nas_eps.emm.detach_type_ul  Detach Type
        Unsigned 8-bit integer
    nas_eps.emm.dl_nas_cnt  DL NAS COUNT value
        Unsigned 8-bit integer
    nas_eps.emm.ebi0  EBI(0) spare
        Boolean
    nas_eps.emm.ebi1  EBI(1) spare
        Boolean
    nas_eps.emm.ebi10  EBI(10)
        Boolean
    nas_eps.emm.ebi11  EBI(11)
        Boolean
    nas_eps.emm.ebi12  EBI(12)
        Boolean
    nas_eps.emm.ebi13  EBI(13)
        Boolean
    nas_eps.emm.ebi14  EBI(14)
        Boolean
    nas_eps.emm.ebi15  EBI(15)
        Boolean
    nas_eps.emm.ebi2  EBI(2) spare
        Boolean
    nas_eps.emm.ebi3  EBI(3) spare
        Boolean
    nas_eps.emm.ebi4  EBI(4) spare
        Boolean
    nas_eps.emm.ebi5  EBI(5)
        Boolean
    nas_eps.emm.ebi6  EBI(6)
        Boolean
    nas_eps.emm.ebi7  EBI(7)
        Boolean
    nas_eps.emm.ebi8  EBI(8)
        Boolean
    nas_eps.emm.ebi9  EBI(9)
        Boolean
    nas_eps.emm.eea0  EEA0
        Boolean
    nas_eps.emm.eea3  EEA3
        Boolean
    nas_eps.emm.eea4  EEA4
        Boolean
    nas_eps.emm.eea5  EEA5
        Boolean
    nas_eps.emm.eea6  EEA6
        Boolean
    nas_eps.emm.eea7  EEA7
        Boolean
    nas_eps.emm.egbr_dl  Guaranteed bit rate for downlink(ext)
        Unsigned 8-bit integer
    nas_eps.emm.egbr_ul  Guaranteed bit rate for uplink(ext)
        Unsigned 8-bit integer
    nas_eps.emm.eia0  EIA0
        Boolean
    nas_eps.emm.eia3  EIA3
        Boolean
    nas_eps.emm.eia4  EIA4
        Boolean
    nas_eps.emm.eia5  EIA5
        Boolean
    nas_eps.emm.eia6  EIA6
        Boolean
    nas_eps.emm.eia7  EIA7
        Boolean
    nas_eps.emm.eit  EIT (ESM information transfer)
        Boolean
    nas_eps.emm.elem_id  Element ID
        Unsigned 8-bit integer
    nas_eps.emm.embr_dl  Maximum bit rate for downlink(ext)
        Unsigned 8-bit integer
    nas_eps.emm.embr_ul  Maximum bit rate for uplink(ext)
        Unsigned 8-bit integer
    nas_eps.emm.emm_lcs_ind  LCS indicator
        Unsigned 8-bit integer
    nas_eps.emm.emm_ucs2_supp  UCS2 support (UCS2)
        Boolean
    nas_eps.emm.eps_att_type  EPS attach type
        Unsigned 8-bit integer
    nas_eps.emm.eps_update_result_value  SS Code
        Unsigned 8-bit integer
    nas_eps.emm.esm_msg_cont  ESM message container contents
        Byte array
    nas_eps.emm.gbr_dl  Guaranteed bit rate for downlink
        Unsigned 8-bit integer
    nas_eps.emm.gbr_ul  Guaranteed bit rate for uplink
        Unsigned 8-bit integer
    nas_eps.emm.gea1  GPRS encryption algorithm GEA1
        Boolean
    nas_eps.emm.gea2  GPRS encryption algorithm GEA2
        Boolean
    nas_eps.emm.gea3  GPRS encryption algorithm GEA3
        Boolean
    nas_eps.emm.gea4  GPRS encryption algorithm GEA4
        Boolean
    nas_eps.emm.gea5  GPRS encryption algorithm GEA5
        Boolean
    nas_eps.emm.gea6  GPRS encryption algorithm GEA6
        Boolean
    nas_eps.emm.gea7  GPRS encryption algorithm GEA7
        Boolean
    nas_eps.emm.id_type2  Identity type 2
        Unsigned 8-bit integer
    nas_eps.emm.imei  IMEI
        String
    nas_eps.emm.imeisv_req  IMEISV request
        Unsigned 8-bit integer
    nas_eps.emm.imsi  IMSI
        String
    nas_eps.emm.m_tmsi  M-TMSI
        Unsigned 32-bit integer
    nas_eps.emm.mbr_dl  Maximum bit rate for downlink
        Unsigned 8-bit integer
    nas_eps.emm.mbr_ul  Maximum bit rate for uplink
        Unsigned 8-bit integer
    nas_eps.emm.mme_code  MME Code
        Unsigned 8-bit integer
    nas_eps.emm.mme_grp_id  MME Group ID
        Unsigned 16-bit integer
    nas_eps.emm.nas_key_set_id  NAS key set identifier
        Unsigned 8-bit integer
    nas_eps.emm.nounce_mme  NonceMME
        Unsigned 32-bit integer
    nas_eps.emm.odd_even  odd/even indic
        Unsigned 8-bit integer
    nas_eps.emm.qci  Quality of Service Class Identifier (QCI)
        Unsigned 8-bit integer
    nas_eps.emm.res  RES
        Byte array
    nas_eps.emm.service_type  Service type
        Unsigned 8-bit integer
    nas_eps.emm.short_mac  Message authentication code (short)
        Unsigned 16-bit integer
    nas_eps.emm.switch_off  Switch off
        Unsigned 8-bit integer
    nas_eps.emm.tai_n_elem  Number of elements
        Unsigned 8-bit integer
    nas_eps.emm.tai_tac  Tracking area code(TAC)
        Unsigned 16-bit integer
    nas_eps.emm.tai_tol  Type of list
        Unsigned 8-bit integer
    nas_eps.emm.toc  Type of ciphering algorithm
        Unsigned 8-bit integer
    nas_eps.emm.toi  Type of integrity protection algorithm
        Unsigned 8-bit integer
    nas_eps.emm.tsc  Type of security context flag (TSC)
        Unsigned 8-bit integer
    nas_eps.emm.type_of_id  Type of identity
        Unsigned 8-bit integer
    nas_eps.emm.ue_ra_cap_inf_upd_need_flg  1xSRVCC capability
        Boolean
    nas_eps.emm.uea0  UEA0
        Boolean
    nas_eps.emm.uea1  UEA1
        Boolean
    nas_eps.emm.uea2  UEA2
        Boolean
    nas_eps.emm.uea3  UEA3
        Boolean
    nas_eps.emm.uea4  UEA4
        Boolean
    nas_eps.emm.uea5  UEA5
        Boolean
    nas_eps.emm.uea6  UEA6
        Boolean
    nas_eps.emm.uea7  UEA7
        Boolean
    nas_eps.emm.uia0  UMTS integrity algorithm UIA0
        Boolean
    nas_eps.emm.uia1  UMTS integrity algorithm UIA1
        Boolean
    nas_eps.emm.uia2  UMTS integrity algorithm UIA2
        Boolean
    nas_eps.emm.uia3  UMTS integrity algorithm UIA3
        Boolean
    nas_eps.emm.uia4  UMTS integrity algorithm UIA4
        Boolean
    nas_eps.emm.uia5  UMTS integrity algorithm UIA5
        Boolean
    nas_eps.emm.uia6  UMTS integrity algorithm UIA6
        Boolean
    nas_eps.emm.uia7  UMTS integrity algorithm UIA7
        Boolean
    nas_eps.emm.update_type_value  EPS update type value
        Unsigned 8-bit integer
    nas_eps.esm.cause  Cause
        Unsigned 8-bit integer
    nas_eps.esm.elem_id  Element ID
        Unsigned 8-bit integer
    nas_eps.esm.linked_bearer_id  Linked EPS bearer identity
        Unsigned 8-bit integer
    nas_eps.esm.lnkd_eps_bearer_id  Linked EPS bearer identity
        Unsigned 8-bit integer
    nas_eps.esm.pdn_ipv4  PDN IPv4
        IPv4 address
    nas_eps.esm.pdn_ipv6  PDN IPv6
        IPv6 address
    nas_eps.esm.pdn_ipv6_len  IPv6 Prefix Length
        Unsigned 8-bit integer
    nas_eps.esm.proc_trans_id  Procedure transaction identity
        Unsigned 8-bit integer
    nas_eps.msg_auth_code  Message authentication code
        Unsigned 32-bit integer
    nas_eps.nas_eps_esm_pdn_type  PDN type
        Unsigned 8-bit integer
    nas_eps.nas_msg_emm_type  NAS EPS Mobility Management Message Type
        Unsigned 8-bit integer
    nas_eps.nas_msg_esm_type  NAS EPS session management messages
        Unsigned 8-bit integer
    nas_eps.security_header_type  Security header type
        Unsigned 8-bit integer
    nas_eps.seq_no  Sequence number
        Unsigned 8-bit integer
    nas_eps.seq_no_short  Sequence number (short)
        Unsigned 8-bit integer
    nas_eps.spare_bits  Spare bit(s)
        Unsigned 8-bit integer

Nortel SONMP (sonmp)

    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

Novell Cluster Services (ncs)

    ncs.incarnation  Incarnation
        Unsigned 32-bit integer
    ncs.pan_id  Panning ID
        Unsigned 32-bit integer

Novell Distributed Print System (ndps)

    ndps.add_bytes  Address Bytes
        Byte array
    ndps.addr_len  Address Length
        Unsigned 32-bit integer
    ndps.admin_submit_flag  Admin Submit Flag?
        Boolean
    ndps.answer_time  Answer Time
        Unsigned 32-bit integer
    ndps.archive_size  Archive File Size
        Unsigned 32-bit integer
    ndps.archive_type  Archive Type
        Unsigned 32-bit integer
    ndps.asn1_type  ASN.1 Type
        Unsigned 16-bit integer
    ndps.attribue_value  Value
        Unsigned 32-bit integer
    ndps.attribute_set  Attribute Set
        Byte array
    ndps.attribute_time  Time
        Date/Time stamp
    ndps.auth_null  Auth Null
        Byte array
    ndps.banner_count  Number of Banners
        Unsigned 32-bit integer
    ndps.banner_name  Banner Name
        String
    ndps.banner_type  Banner Type
        Unsigned 32-bit integer
    ndps.broker_name  Broker Name
        String
    ndps.certified  Certified
        Byte array
    ndps.connection  Connection
        Unsigned 16-bit integer
    ndps.context  Context
        Byte array
    ndps.context_len  Context Length
        Unsigned 32-bit integer
    ndps.cred_type  Credential Type
        Unsigned 32-bit integer
    ndps.data  [Data]
        No value
    ndps.delivery_add_count  Number of Delivery Addresses
        Unsigned 32-bit integer
    ndps.delivery_flag  Delivery Address Data?
        Boolean
    ndps.delivery_method_count  Number of Delivery Methods
        Unsigned 32-bit integer
    ndps.delivery_method_type  Delivery Method Type
        Unsigned 32-bit integer
    ndps.doc_content  Document Content
        Unsigned 32-bit integer
    ndps.doc_name  Document Name
        String
    ndps.error_val  Return Status
        Unsigned 32-bit integer
    ndps.ext_err_string  Extended Error String
        String
    ndps.ext_error  Extended Error Code
        Unsigned 32-bit integer
    ndps.file_name  File Name
        String
    ndps.file_time_stamp  File Time Stamp
        Unsigned 32-bit integer
    ndps.font_file_count  Number of Font Files
        Unsigned 32-bit integer
    ndps.font_file_name  Font File Name
        String
    ndps.font_name  Font Name
        String
    ndps.font_type  Font Type
        Unsigned 32-bit integer
    ndps.font_type_count  Number of Font Types
        Unsigned 32-bit integer
    ndps.font_type_name  Font Type Name
        String
    ndps.fragment  NDPS Fragment
        Frame number
    ndps.fragments  NDPS Fragments
        No value
    ndps.get_status_flags  Get Status Flag
        Unsigned 32-bit integer
    ndps.guid  GUID
        Byte array
    ndps.inc_across_feed  Increment Across Feed
        Byte array
    ndps.included_doc  Included Document
        Byte array
    ndps.included_doc_len  Included Document Length
        Unsigned 32-bit integer
    ndps.inf_file_name  INF File Name
        String
    ndps.info_boolean  Boolean Value
        Boolean
    ndps.info_bytes  Byte Value
        Byte array
    ndps.info_int  Integer Value
        Unsigned 8-bit integer
    ndps.info_int16  16 Bit Integer Value
        Unsigned 16-bit integer
    ndps.info_int32  32 Bit Integer Value
        Unsigned 32-bit integer
    ndps.info_string  String Value
        String
    ndps.interrupt_job_type  Interrupt Job Identifier
        Unsigned 32-bit integer
    ndps.interval  Interval
        Unsigned 32-bit integer
    ndps.ip  IP Address
        IPv4 address
    ndps.item_bytes  Item Ptr
        Byte array
    ndps.item_ptr  Item Pointer
        Byte array
    ndps.language_flag  Language Data?
        Boolean
    ndps.last_packet_flag  Last Packet Flag
        Unsigned 32-bit integer
    ndps.level  Level
        Unsigned 32-bit integer
    ndps.local_id  Local ID
        Unsigned 32-bit integer
    ndps.lower_range  Lower Range
        Unsigned 32-bit integer
    ndps.lower_range_n64  Lower Range
        Byte array
    ndps.message  Message
        String
    ndps.method_flag  Method Data?
        Boolean
    ndps.method_name  Method Name
        String
    ndps.method_ver  Method Version
        String
    ndps.n64  Value
        Byte array
    ndps.ndps_abort  Abort?
        Boolean
    ndps.ndps_address  Address
        Unsigned 32-bit integer
    ndps.ndps_address_type  Address Type
        Unsigned 32-bit integer
    ndps.ndps_attrib_boolean  Value?
        Boolean
    ndps.ndps_attrib_type  Value Syntax
        Unsigned 32-bit integer
    ndps.ndps_attrs_arg  List Attribute Operation
        Unsigned 32-bit integer
    ndps.ndps_bind_security  Bind Security Options
        Unsigned 32-bit integer
    ndps.ndps_bind_security_count  Number of Bind Security Options
        Unsigned 32-bit integer
    ndps.ndps_car_name_or_oid  Cardinal Name or OID
        Unsigned 32-bit integer
    ndps.ndps_car_or_oid  Cardinal or OID
        Unsigned 32-bit integer
    ndps.ndps_card_enum_time  Cardinal, Enum, or Time
        Unsigned 32-bit integer
    ndps.ndps_client_server_type  Client/Server Type
        Unsigned 32-bit integer
    ndps.ndps_colorant_set  Colorant Set
        Unsigned 32-bit integer
    ndps.ndps_continuation_option  Continuation Option
        Byte array
    ndps.ndps_count_limit  Count Limit
        Unsigned 32-bit integer
    ndps.ndps_criterion_type  Criterion Type
        Unsigned 32-bit integer
    ndps.ndps_data_item_type  Item Type
        Unsigned 32-bit integer
    ndps.ndps_delivery_add_type  Delivery Address Type
        Unsigned 32-bit integer
    ndps.ndps_dim_falg  Dimension Flag
        Unsigned 32-bit integer
    ndps.ndps_dim_value  Dimension Value Type
        Unsigned 32-bit integer
    ndps.ndps_direction  Direction
        Unsigned 32-bit integer
    ndps.ndps_doc_content  Document Content
        Unsigned 32-bit integer
    ndps.ndps_doc_num  Document Number
        Unsigned 32-bit integer
    ndps.ndps_ds_info_type  DS Info Type
        Unsigned 32-bit integer
    ndps.ndps_edge_value  Edge Value
        Unsigned 32-bit integer
    ndps.ndps_event_object_identifier  Event Object Type
        Unsigned 32-bit integer
    ndps.ndps_event_type  Event Type
        Unsigned 32-bit integer
    ndps.ndps_filter  Filter Type
        Unsigned 32-bit integer
    ndps.ndps_filter_item  Filter Item Operation
        Unsigned 32-bit integer
    ndps.ndps_force  Force?
        Boolean
    ndps.ndps_get_resman_session_type  Session Type
        Unsigned 32-bit integer
    ndps.ndps_get_session_type  Session Type
        Unsigned 32-bit integer
    ndps.ndps_identifier_type  Identifier Type
        Unsigned 32-bit integer
    ndps.ndps_ignored_type  Ignored Type
        Unsigned 32-bit integer
    ndps.ndps_integer_or_oid  Integer or OID
        Unsigned 32-bit integer
    ndps.ndps_integer_type_flag  Integer Type Flag
        Unsigned 32-bit integer
    ndps.ndps_integer_type_value  Integer Type Value
        Unsigned 32-bit integer
    ndps.ndps_item_count  Number of Items
        Unsigned 32-bit integer
    ndps.ndps_lang_id  Language ID
        Unsigned 32-bit integer
    ndps.ndps_language_count  Number of Languages
        Unsigned 32-bit integer
    ndps.ndps_len  Length
        Unsigned 16-bit integer
    ndps.ndps_lib_error  Library Error
        Unsigned 32-bit integer
    ndps.ndps_limit_enc  Limit Encountered
        Unsigned 32-bit integer
    ndps.ndps_list_local_server_type  Server Type
        Unsigned 32-bit integer
    ndps.ndps_list_profiles_choice_type  List Profiles Choice Type
        Unsigned 32-bit integer
    ndps.ndps_list_profiles_result_type  List Profiles Result Type
        Unsigned 32-bit integer
    ndps.ndps_list_profiles_type  List Profiles Type
        Unsigned 32-bit integer
    ndps.ndps_list_services_type  Services Type
        Unsigned 32-bit integer
    ndps.ndps_loc_object_name  Local Object Name
        String
    ndps.ndps_location_value  Location Value Type
        Unsigned 32-bit integer
    ndps.ndps_long_edge_feeds  Long Edge Feeds?
        Boolean
    ndps.ndps_max_items  Maximum Items in List
        Unsigned 32-bit integer
    ndps.ndps_media_type  Media Type
        Unsigned 32-bit integer
    ndps.ndps_medium_size  Medium Size
        Unsigned 32-bit integer
    ndps.ndps_nameorid  Name or ID Type
        Unsigned 32-bit integer
    ndps.ndps_num_resources  Number of Resources
        Unsigned 32-bit integer
    ndps.ndps_num_services  Number of Services
        Unsigned 32-bit integer
    ndps.ndps_numbers_up  Numbers Up
        Unsigned 32-bit integer
    ndps.ndps_object_name  Object Name
        String
    ndps.ndps_object_op  Operation
        Unsigned 32-bit integer
    ndps.ndps_operator  Operator Type
        Unsigned 32-bit integer
    ndps.ndps_other_error  Other Error
        Unsigned 32-bit integer
    ndps.ndps_other_error_2  Other Error 2
        Unsigned 32-bit integer
    ndps.ndps_page_flag  Page Flag
        Unsigned 32-bit integer
    ndps.ndps_page_order  Page Order
        Unsigned 32-bit integer
    ndps.ndps_page_orientation  Page Orientation
        Unsigned 32-bit integer
    ndps.ndps_page_size  Page Size
        Unsigned 32-bit integer
    ndps.ndps_persistence  Persistence
        Unsigned 32-bit integer
    ndps.ndps_printer_name  Printer Name
        String
    ndps.ndps_profile_id  Profile ID
        Unsigned 32-bit integer
    ndps.ndps_qual  Qualifier
        Unsigned 32-bit integer
    ndps.ndps_qual_name_type  Qualified Name Type
        Unsigned 32-bit integer
    ndps.ndps_qual_name_type2  Qualified Name Type
        Unsigned 32-bit integer
    ndps.ndps_realization  Realization Type
        Unsigned 32-bit integer
    ndps.ndps_resource_type  Resource Type
        Unsigned 32-bit integer
    ndps.ndps_ret_restrict  Retrieve Restrictions
        Unsigned 32-bit integer
    ndps.ndps_server_type  NDPS Server Type
        Unsigned 32-bit integer
    ndps.ndps_service_enabled  Service Enabled?
        Boolean
    ndps.ndps_service_type  NDPS Service Type
        Unsigned 32-bit integer
    ndps.ndps_session  Session Handle
        Unsigned 32-bit integer
    ndps.ndps_session_type  Session Type
        Unsigned 32-bit integer
    ndps.ndps_state_severity  State Severity
        Unsigned 32-bit integer
    ndps.ndps_status_flags  Status Flag
        Unsigned 32-bit integer
    ndps.ndps_substring_match  Substring Match
        Unsigned 32-bit integer
    ndps.ndps_time_limit  Time Limit
        Unsigned 32-bit integer
    ndps.ndps_training  Training
        Unsigned 32-bit integer
    ndps.ndps_xdimension  X Dimension
        Unsigned 32-bit integer
    ndps.ndps_xydim_value  XY Dimension Value Type
        Unsigned 32-bit integer
    ndps.ndps_ydimension  Y Dimension
        Unsigned 32-bit integer
    ndps.net  IPX Network
        IPX network or server name
        Scope
    ndps.node  Node
        6-byte Hardware (MAC) Address
    ndps.notify_lease_exp_time  Notify Lease Expiration Time
        Unsigned 32-bit integer
    ndps.notify_printer_uri  Notify Printer URI
        String
    ndps.notify_seq_number  Notify Sequence Number
        Unsigned 32-bit integer
    ndps.notify_time_interval  Notify Time Interval
        Unsigned 32-bit integer
    ndps.num_address_items  Number of Address Items
        Unsigned 32-bit integer
    ndps.num_areas  Number of Areas
        Unsigned 32-bit integer
    ndps.num_argss  Number of Arguments
        Unsigned 32-bit integer
    ndps.num_attributes  Number of Attributes
        Unsigned 32-bit integer
    ndps.num_categories  Number of Categories
        Unsigned 32-bit integer
    ndps.num_colorants  Number of Colorants
        Unsigned 32-bit integer
    ndps.num_destinations  Number of Destinations
        Unsigned 32-bit integer
    ndps.num_doc_types  Number of Document Types
        Unsigned 32-bit integer
    ndps.num_events  Number of Events
        Unsigned 32-bit integer
    ndps.num_ignored_attributes  Number of Ignored Attributes
        Unsigned 32-bit integer
    ndps.num_job_categories  Number of Job Categories
        Unsigned 32-bit integer
    ndps.num_jobs  Number of Jobs
        Unsigned 32-bit integer
    ndps.num_locations  Number of Locations
        Unsigned 32-bit integer
    ndps.num_names  Number of Names
        Unsigned 32-bit integer
    ndps.num_objects  Number of Objects
        Unsigned 32-bit integer
    ndps.num_options  Number of Options
        Unsigned 32-bit integer
    ndps.num_page_informations  Number of Page Information Items
        Unsigned 32-bit integer
    ndps.num_page_selects  Number of Page Select Items
        Unsigned 32-bit integer
    ndps.num_passwords  Number of Passwords
        Unsigned 32-bit integer
    ndps.num_results  Number of Results
        Unsigned 32-bit integer
    ndps.num_servers  Number of Servers
        Unsigned 32-bit integer
    ndps.num_transfer_methods  Number of Transfer Methods
        Unsigned 32-bit integer
    ndps.num_values  Number of Values
        Unsigned 32-bit integer
    ndps.num_win31_keys  Number of Windows 3.1 Keys
        Unsigned 32-bit integer
    ndps.num_win95_keys  Number of Windows 95 Keys
        Unsigned 32-bit integer
    ndps.num_windows_keys  Number of Windows Keys
        Unsigned 32-bit integer
    ndps.object  Object ID
        Unsigned 32-bit integer
    ndps.objectid_def10  Object ID Definition
        No value
    ndps.objectid_def11  Object ID Definition
        No value
    ndps.objectid_def12  Object ID Definition
        No value
    ndps.objectid_def13  Object ID Definition
        No value
    ndps.objectid_def14  Object ID Definition
        No value
    ndps.objectid_def15  Object ID Definition
        No value
    ndps.objectid_def16  Object ID Definition
        No value
    ndps.objectid_def7  Object ID Definition
        No value
    ndps.objectid_def8  Object ID Definition
        No value
    ndps.objectid_def9  Object ID Definition
        No value
    ndps.octet_string  Octet String
        Byte array
    ndps.oid  Object ID
        Byte array
    ndps.os_count  Number of OSes
        Unsigned 32-bit integer
    ndps.os_type  OS Type
        Unsigned 32-bit integer
    ndps.pa_name  Printer Name
        String
    ndps.packet_count  Packet Count
        Unsigned 32-bit integer
    ndps.packet_type  Packet Type
        Unsigned 32-bit integer
    ndps.password  Password
        Byte array
    ndps.pause_job_type  Pause Job Identifier
        Unsigned 32-bit integer
    ndps.port  IP Port
        Unsigned 16-bit integer
    ndps.print_arg  Print Type
        Unsigned 32-bit integer
    ndps.print_def_name  Printer Definition Name
        String
    ndps.print_dir_name  Printer Directory Name
        String
    ndps.print_file_name  Printer File Name
        String
    ndps.print_security  Printer Security
        Unsigned 32-bit integer
    ndps.printer_def_count  Number of Printer Definitions
        Unsigned 32-bit integer
    ndps.printer_id  Printer ID
        Byte array
    ndps.printer_type_count  Number of Printer Types
        Unsigned 32-bit integer
    ndps.prn_manuf  Printer Manufacturer
        String
    ndps.prn_type  Printer Type
        String
    ndps.rbuffer  Connection
        Unsigned 32-bit integer
    ndps.reassembled.length  Reassembled NDPS length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    ndps.record_length  Record Length
        Unsigned 16-bit integer
    ndps.record_mark  Record Mark
        Unsigned 16-bit integer
    ndps.ref_doc_name  Referenced Document Name
        String
    ndps.registry_name  Registry Name
        String
    ndps.reqframe  Request Frame
        Frame number
    ndps.res_type  Resource Type
        Unsigned 32-bit integer
    ndps.resubmit_op_type  Resubmit Operation Type
        Unsigned 32-bit integer
    ndps.ret_code  Return Code
        Unsigned 32-bit integer
    ndps.rpc_acc  RPC Accept or Deny
        Unsigned 32-bit integer
    ndps.rpc_acc_prob  Access Problem
        Unsigned 32-bit integer
    ndps.rpc_acc_res  RPC Accept Results
        Unsigned 32-bit integer
    ndps.rpc_acc_stat  RPC Accept Status
        Unsigned 32-bit integer
    ndps.rpc_attr_prob  Attribute Problem
        Unsigned 32-bit integer
    ndps.rpc_doc_acc_prob  Document Access Problem
        Unsigned 32-bit integer
    ndps.rpc_obj_id_type  Object ID Type
        Unsigned 32-bit integer
    ndps.rpc_oid_struct_size  OID Struct Size
        Unsigned 16-bit integer
    ndps.rpc_print_prob  Printer Problem
        Unsigned 32-bit integer
    ndps.rpc_prob_type  Problem Type
        Unsigned 32-bit integer
    ndps.rpc_rej_stat  RPC Reject Status
        Unsigned 32-bit integer
    ndps.rpc_sec_prob  Security Problem
        Unsigned 32-bit integer
    ndps.rpc_sel_prob  Selection Problem
        Unsigned 32-bit integer
    ndps.rpc_serv_prob  Service Problem
        Unsigned 32-bit integer
    ndps.rpc_update_prob  Update Problem
        Unsigned 32-bit integer
    ndps.rpc_version  RPC Version
        Unsigned 32-bit integer
    ndps.sbuffer  Server
        Unsigned 32-bit integer
    ndps.scope  Scope
        Unsigned 32-bit integer
    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
    ndps.shutdown_type  Shutdown Type
        Unsigned 32-bit integer
    ndps.size_inc_in_feed  Size Increment in Feed
        Byte array
    ndps.socket  IPX Socket
        Unsigned 16-bit integer
    ndps.sub_complete  Submission Complete?
        Boolean
    ndps.supplier_flag  Supplier Data?
        Boolean
    ndps.supplier_name  Supplier Name
        String
    ndps.time  Time
        Unsigned 32-bit integer
    ndps.tree  Tree
        String
    ndps.upper_range  Upper Range
        Unsigned 32-bit integer
    ndps.upper_range_n64  Upper Range
        Byte array
    ndps.user_name  Trustee Name
        String
    ndps.vendor_dir  Vendor Directory
        String
    ndps.windows_key  Windows Key
        String
    ndps.xdimension_n64  X Dimension
        Byte array
    ndps.xid  Exchange ID
        Unsigned 32-bit integer
    ndps.xmax_n64  Maximum X Dimension
        Byte array
    ndps.xmin_n64  Minimum X Dimension
        Byte array
    ndps.ymax_n64  Maximum Y Dimension
        Byte array
    ndps.ymin_n64  Minimum Y Dimension
        Byte array
    spx.ndps_error  NDPS Error
        Unsigned 32-bit integer
    spx.ndps_func_broker  Broker Program
        Unsigned 32-bit integer
    spx.ndps_func_delivery  Delivery Program
        Unsigned 32-bit integer
    spx.ndps_func_notify  Notify Program
        Unsigned 32-bit integer
    spx.ndps_func_print  Print Program
        Unsigned 32-bit integer
    spx.ndps_func_registry  Registry Program
        Unsigned 32-bit integer
    spx.ndps_func_resman  ResMan Program
        Unsigned 32-bit integer
    spx.ndps_program  NDPS Program Number
        Unsigned 32-bit integer
    spx.ndps_version  Program Version
        Unsigned 32-bit integer

Novell Modular Authentication Service (nmas)

    nmas.attribute  Attribute Type
        Unsigned 32-bit integer
    nmas.buf_size  Reply Buffer Size
        Unsigned 32-bit integer
    nmas.clearance  Requested Clearance
        String
    nmas.cqueue_bytes  Client Queue Number of Bytes
        Unsigned 32-bit integer
    nmas.cred_type  Credential Type
        Unsigned 32-bit integer
    nmas.data  Data
        Byte array
    nmas.enc_cred  Encrypted Credential
        Byte array
    nmas.enc_data  Encrypted Data
        Byte array
    nmas.encrypt_error  Payload Error
        Unsigned 32-bit integer
        Payload/Encryption Return Code
    nmas.frag_handle  Fragment Handle
        Unsigned 32-bit integer
    nmas.func  Function
        Unsigned 8-bit integer
    nmas.length  Length
        Unsigned 32-bit integer
    nmas.login_seq  Requested Login Sequence
        String
    nmas.login_state  Login State
        Unsigned 32-bit integer
    nmas.lsm_verb  Login Store Message Verb
        Unsigned 8-bit integer
    nmas.msg_verb  Message Verb
        Unsigned 8-bit integer
    nmas.msg_version  Message Version
        Unsigned 32-bit integer
    nmas.num_creds  Number of Credentials
        Unsigned 32-bit integer
    nmas.opaque  Opaque Data
        Byte array
    nmas.ping_flags  Flags
        Unsigned 32-bit integer
    nmas.ping_version  Ping Version
        Unsigned 32-bit integer
    nmas.return_code  Return Code
        Unsigned 32-bit integer
    nmas.session_ident  Session Identifier
        Unsigned 32-bit integer
    nmas.squeue_bytes  Server Queue Number of Bytes
        Unsigned 32-bit integer
    nmas.subfunc  Subfunction
        Unsigned 8-bit integer
    nmas.subverb  Sub Verb
        Unsigned 32-bit integer
    nmas.tree  Tree
        String
    nmas.user  User
        String
    nmas.version  NMAS Protocol Version
        Unsigned 32-bit integer

Novell SecretStore Services (sss)

    ncp.sss_bit1  Enhanced Protection
        Boolean
    ncp.sss_bit10  Destroy Context
        Boolean
    ncp.sss_bit11  Not Defined
        Boolean
    ncp.sss_bit12  Not Defined
        Boolean
    ncp.sss_bit13  Not Defined
        Boolean
    ncp.sss_bit14  Not Defined
        Boolean
    ncp.sss_bit15  Not Defined
        Boolean
    ncp.sss_bit16  Not Defined
        Boolean
    ncp.sss_bit17  EP Lock
        Boolean
    ncp.sss_bit18  Not Initialized
        Boolean
    ncp.sss_bit19  Enhanced Protection
        Boolean
    ncp.sss_bit2  Create ID
        Boolean
    ncp.sss_bit20  Store Not Synced
        Boolean
    ncp.sss_bit21  Admin Last Modified
        Boolean
    ncp.sss_bit22  EP Password Present
        Boolean
    ncp.sss_bit23  EP Master Password Present
        Boolean
    ncp.sss_bit24  MP Disabled
        Boolean
    ncp.sss_bit25  Not Defined
        Boolean
    ncp.sss_bit26  Not Defined
        Boolean
    ncp.sss_bit27  Not Defined
        Boolean
    ncp.sss_bit28  Not Defined
        Boolean
    ncp.sss_bit29  Not Defined
        Boolean
    ncp.sss_bit3  Remove Lock
        Boolean
    ncp.sss_bit30  Not Defined
        Boolean
    ncp.sss_bit31  Not Defined
        Boolean
    ncp.sss_bit32  Not Defined
        Boolean
    ncp.sss_bit4  Repair
        Boolean
    ncp.sss_bit5  Unicode
        Boolean
    ncp.sss_bit6  EP Master Password Used
        Boolean
    ncp.sss_bit7  EP Password Used
        Boolean
    ncp.sss_bit8  Set Tree Name
        Boolean
    ncp.sss_bit9  Get Context
        Boolean
    sss.buffer  Buffer Size
        Unsigned 32-bit integer
    sss.context  Context
        Unsigned 32-bit integer
    sss.enc_cred  Encrypted Credential
        Byte array
    sss.enc_data  Encrypted Data
        Byte array
    sss.flags  Flags
        Unsigned 32-bit integer
    sss.frag_handle  Fragment Handle
        Unsigned 32-bit integer
    sss.length  Length
        Unsigned 32-bit integer
    sss.ping_version  Ping Version
        Unsigned 32-bit integer
    sss.return_code  Return Code
        Unsigned 32-bit integer
    sss.secret  Secret ID
        String
    sss.user  User
        String
    sss.verb  Verb
        Unsigned 32-bit integer
    sss.version  SecretStore Protocol Version
        Unsigned 32-bit integer

Null/Loopback (null)

    null.family  Family
        Unsigned 32-bit integer
    null.type  Type
        Unsigned 16-bit integer

OICQ - IM software, popular in China (oicq)

    oicq.command  Command
        Unsigned 16-bit integer
    oicq.data  Data
        String
    oicq.flag  Flag
        Unsigned 8-bit integer
        Protocol Flag
    oicq.qqid  Data(OICQ Number,if sender is client)
        Unsigned 32-bit integer
    oicq.seq  Sequence
        Unsigned 16-bit integer
    oicq.version  Version
        Unsigned 16-bit integer
        Version-zz

OMA UserPlane Location Protocol (ulp)

    ulp.AreaId  AreaId
        Unsigned 32-bit integer
    ulp.AreaIdList  AreaIdList
        No value
    ulp.CellMeasuredResults  CellMeasuredResults
        No value
    ulp.Coordinate  Coordinate
        No value
    ulp.GANSSPositionMethod  GANSSPositionMethod
        No value
    ulp.GANSSSignalsDescription  GANSSSignalsDescription
        No value
    ulp.GanssReqGenericData  GanssReqGenericData
        No value
    ulp.GeoAreaIndex  GeoAreaIndex
        Unsigned 32-bit integer
    ulp.GeographicTargetArea  GeographicTargetArea
        Unsigned 32-bit integer
    ulp.LocationIdData  LocationIdData
        No value
    ulp.MCC_MNC_Digit  MCC-MNC-Digit
        Unsigned 32-bit integer
    ulp.MeasResultEUTRA  MeasResultEUTRA
        No value
    ulp.MeasuredResults  MeasuredResults
        No value
    ulp.NMRelement  NMRelement
        No value
    ulp.ReportData  ReportData
        No value
    ulp.SatelliteInfoElement  SatelliteInfoElement
        No value
    ulp.SatellitesListRelatedData  SatellitesListRelatedData
        No value
    ulp.SessionInformation  SessionInformation
        No value
    ulp.Supported3GPP2PosProtocolVersion  Supported3GPP2PosProtocolVersion
        No value
    ulp.SupportedWLANApData  SupportedWLANApData
        No value
    ulp.ThirdPartyID  ThirdPartyID
        Unsigned 32-bit integer
    ulp.TimeslotISCP  TimeslotISCP
        Unsigned 32-bit integer
    ulp.ULP_PDU  ULP-PDU
        No value
    ulp.WimaxNMR  WimaxNMR
        No value
    ulp.aFLT  aFLT
        Boolean
        BOOLEAN
    ulp.aRFCN  aRFCN
        Unsigned 32-bit integer
        INTEGER_0_1023
    ulp.absoluteTime  absoluteTime
        String
        UTCTime
    ulp.acquisitionAssistanceRequested  acquisitionAssistanceRequested
        Boolean
        BOOLEAN
    ulp.agpsSETBased  agpsSETBased
        Boolean
        BOOLEAN
    ulp.agpsSETassisted  agpsSETassisted
        Boolean
        BOOLEAN
    ulp.allowedReportingType  allowedReportingType
        Unsigned 32-bit integer
    ulp.almanacModelID  almanacModelID
        Unsigned 32-bit integer
        INTEGER_0_7
    ulp.almanacRequested  almanacRequested
        Boolean
        BOOLEAN
    ulp.altUncertainty  altUncertainty
        Unsigned 32-bit integer
        INTEGER_0_127
    ulp.altitude  altitude
        Unsigned 32-bit integer
        INTEGER_0_32767
    ulp.altitudeDirection  altitudeDirection
        Unsigned 32-bit integer
    ulp.altitudeInfo  altitudeInfo
        No value
    ulp.angle  angle
        Unsigned 32-bit integer
        INTEGER_0_179
    ulp.apAG  apAG
        Boolean
        BOOLEAN
    ulp.apAntennaGain  apAntennaGain
        Signed 32-bit integer
        INTEGER_M127_128
    ulp.apChanFreq  apChanFreq
        Boolean
        BOOLEAN
    ulp.apChannelFrequency  apChannelFrequency
        Unsigned 32-bit integer
        INTEGER_0_256
    ulp.apDevType  apDevType
        Boolean
        BOOLEAN
    ulp.apDeviceType  apDeviceType
        Unsigned 32-bit integer
    ulp.apMACAddress  apMACAddress
        Byte array
        BIT_STRING_SIZE_48
    ulp.apRSSI  apRSSI
        Boolean
        BOOLEAN
    ulp.apRTD  apRTD
        Boolean
        BOOLEAN
    ulp.apRepLoc  apRepLoc
        Boolean
        BOOLEAN
    ulp.apReportedLocation  apReportedLocation
        No value
        ReportedLocation
    ulp.apRoundTripDelay  apRoundTripDelay
        No value
        RTD
    ulp.apSN  apSN
        Boolean
        BOOLEAN
    ulp.apSignalStrength  apSignalStrength
        Signed 32-bit integer
        INTEGER_M127_128
    ulp.apSignaltoNoise  apSignaltoNoise
        Signed 32-bit integer
        INTEGER_M127_128
    ulp.apTP  apTP
        Boolean
        BOOLEAN
    ulp.apTransmitPower  apTransmitPower
        Signed 32-bit integer
        INTEGER_M127_128
    ulp.appName  appName
        String
        IA5String_SIZE_1_32
    ulp.appProvider  appProvider
        String
        IA5String_SIZE_1_24
    ulp.appVersion  appVersion
        String
        IA5String_SIZE_1_8
    ulp.applicationID  applicationID
        No value
    ulp.areaEventParams  areaEventParams
        No value
    ulp.areaEventTrigger  areaEventTrigger
        Boolean
        BOOLEAN
    ulp.areaEventType  areaEventType
        Unsigned 32-bit integer
    ulp.areaIdLists  areaIdLists
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxAreaIdList_OF_AreaIdList
    ulp.areaIdSet  areaIdSet
        Unsigned 32-bit integer
    ulp.areaIdSetType  areaIdSetType
        Unsigned 32-bit integer
    ulp.autonomous  autonomous
        Boolean
        BOOLEAN
    ulp.autonomousGPS  autonomousGPS
        Boolean
        BOOLEAN
    ulp.bSIC  bSIC
        Unsigned 32-bit integer
        INTEGER_0_63
    ulp.bSLocation  bSLocation
        No value
        ReportedLocation
    ulp.bSTxPower  bSTxPower
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.basicMAC  basicMAC
        Byte array
        BIT_STRING_SIZE_32
    ulp.basicProtectionParams  basicProtectionParams
        No value
    ulp.basicReplayCounter  basicReplayCounter
        Unsigned 32-bit integer
        INTEGER_0_65535
    ulp.batch  batch
        Boolean
        BOOLEAN
    ulp.batchRepCap  batchRepCap
        No value
    ulp.batchRepConditions  batchRepConditions
        Unsigned 32-bit integer
    ulp.batchRepType  batchRepType
        No value
    ulp.bearing  bearing
        Byte array
        BIT_STRING_SIZE_9
    ulp.beginTime  beginTime
        No value
        GPSTime
    ulp.bsID_LSB  bsID-LSB
        Byte array
        BIT_STRING_SIZE_24
    ulp.bsID_MSB  bsID-MSB
        Byte array
        BIT_STRING_SIZE_24
    ulp.cDMA  cDMA
        Boolean
        BOOLEAN
    ulp.cDMAAreaId  cDMAAreaId
        No value
    ulp.cINR  cINR
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.cINRstd  cINRstd
        Unsigned 32-bit integer
        INTEGER_0_63
    ulp.causeCode  causeCode
        Unsigned 32-bit integer
    ulp.cdmaCell  cdmaCell
        No value
        CdmaCellInformation
    ulp.cellGlobalId  cellGlobalId
        No value
        CellGlobalIdEUTRA
    ulp.cellGlobalIdEUTRA  cellGlobalIdEUTRA
        No value
    ulp.cellIdentity  cellIdentity
        Unsigned 32-bit integer
        INTEGER_0_268435455
    ulp.cellInfo  cellInfo
        Unsigned 32-bit integer
    ulp.cellMeasuredResultsList  cellMeasuredResultsList
        Unsigned 32-bit integer
    ulp.cellParametersID  cellParametersID
        Unsigned 32-bit integer
    ulp.cellParametersId  cellParametersId
        Unsigned 32-bit integer
        INTEGER_0_127
    ulp.cgi_Info  cgi-Info
        No value
    ulp.ch1  ch1
        Boolean
        BOOLEAN
    ulp.ch10  ch10
        Boolean
        BOOLEAN
    ulp.ch11  ch11
        Boolean
        BOOLEAN
    ulp.ch12  ch12
        Boolean
        BOOLEAN
    ulp.ch13  ch13
        Boolean
        BOOLEAN
    ulp.ch14  ch14
        Boolean
        BOOLEAN
    ulp.ch149  ch149
        Boolean
        BOOLEAN
    ulp.ch153  ch153
        Boolean
        BOOLEAN
    ulp.ch157  ch157
        Boolean
        BOOLEAN
    ulp.ch161  ch161
        Boolean
        BOOLEAN
    ulp.ch2  ch2
        Boolean
        BOOLEAN
    ulp.ch3  ch3
        Boolean
        BOOLEAN
    ulp.ch34  ch34
        Boolean
        BOOLEAN
    ulp.ch36  ch36
        Boolean
        BOOLEAN
    ulp.ch38  ch38
        Boolean
        BOOLEAN
    ulp.ch4  ch4
        Boolean
        BOOLEAN
    ulp.ch40  ch40
        Boolean
        BOOLEAN
    ulp.ch42  ch42
        Boolean
        BOOLEAN
    ulp.ch44  ch44
        Boolean
        BOOLEAN
    ulp.ch46  ch46
        Boolean
        BOOLEAN
    ulp.ch48  ch48
        Boolean
        BOOLEAN
    ulp.ch5  ch5
        Boolean
        BOOLEAN
    ulp.ch52  ch52
        Boolean
        BOOLEAN
    ulp.ch56  ch56
        Boolean
        BOOLEAN
    ulp.ch6  ch6
        Boolean
        BOOLEAN
    ulp.ch60  ch60
        Boolean
        BOOLEAN
    ulp.ch64  ch64
        Boolean
        BOOLEAN
    ulp.ch7  ch7
        Boolean
        BOOLEAN
    ulp.ch8  ch8
        Boolean
        BOOLEAN
    ulp.ch9  ch9
        Boolean
        BOOLEAN
    ulp.chipRate  chipRate
        Unsigned 32-bit integer
    ulp.circularArea  circularArea
        No value
    ulp.clientName  clientName
        Byte array
        OCTET_STRING_SIZE_1_maxClientLength
    ulp.clientNameType  clientNameType
        Unsigned 32-bit integer
        FormatIndicator
    ulp.clockModelID  clockModelID
        Unsigned 32-bit integer
        INTEGER_0_7
    ulp.confidence  confidence
        Unsigned 32-bit integer
        INTEGER_0_100
    ulp.coordinate  coordinate
        No value
    ulp.cpich_Ec_N0  cpich-Ec-N0
        Unsigned 32-bit integer
    ulp.cpich_RSCP  cpich-RSCP
        Unsigned 32-bit integer
    ulp.delay  delay
        Unsigned 32-bit integer
        INTEGER_0_7
    ulp.dgpsCorrectionsRequested  dgpsCorrectionsRequested
        Boolean
        BOOLEAN
    ulp.discardOldest  discardOldest
        Boolean
        BOOLEAN
    ulp.eCID  eCID
        Boolean
        BOOLEAN
    ulp.eOTD  eOTD
        Boolean
        BOOLEAN
    ulp.e_SLPAddress  e-SLPAddress
        Unsigned 32-bit integer
        SLPAddress
    ulp.editorialVersionField  editorialVersionField
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.ellipticalArea  ellipticalArea
        No value
    ulp.emailaddr  emailaddr
        String
        IA5String_SIZE_1_1000
    ulp.emergencyCallLocation  emergencyCallLocation
        No value
    ulp.encodingType  encodingType
        Unsigned 32-bit integer
    ulp.endTime  endTime
        No value
        GPSTime
    ulp.endofsession  endofsession
        No value
    ulp.eventTriggerCapabilities  eventTriggerCapabilities
        No value
    ulp.extendedEphemeris  extendedEphemeris
        No value
    ulp.extendedEphemerisCheck  extendedEphemerisCheck
        No value
        ExtendedEphCheck
    ulp.fQDN  fQDN
        String
    ulp.fdd  fdd
        No value
        FrequencyInfoFDD
    ulp.frequencyInfo  frequencyInfo
        No value
    ulp.gANSSPositionMethods  gANSSPositionMethods
        Unsigned 32-bit integer
    ulp.gANSSPositioningMethodTypes  gANSSPositioningMethodTypes
        No value
    ulp.gANSSSignals  gANSSSignals
        Byte array
    ulp.gANSSTODhour  gANSSTODhour
        Unsigned 32-bit integer
        INTEGER_0_23
    ulp.gANSSday  gANSSday
        Unsigned 32-bit integer
        INTEGER_0_8191
    ulp.gPSTOWhour  gPSTOWhour
        Unsigned 32-bit integer
        INTEGER_0_167
    ulp.gPSWeek  gPSWeek
        Unsigned 32-bit integer
        INTEGER_0_1023
    ulp.gSM  gSM
        Boolean
        BOOLEAN
    ulp.gSMAreaId  gSMAreaId
        No value
    ulp.galileo  galileo
        Boolean
        BOOLEAN
    ulp.ganssAdditionalDataChoices  ganssAdditionalDataChoices
        No value
    ulp.ganssAdditionalIonosphericModelForDataID00  ganssAdditionalIonosphericModelForDataID00
        Boolean
        BOOLEAN
    ulp.ganssAdditionalIonosphericModelForDataID11  ganssAdditionalIonosphericModelForDataID11
        Boolean
        BOOLEAN
    ulp.ganssAlmanac  ganssAlmanac
        Boolean
        BOOLEAN
    ulp.ganssAuxiliaryInformation  ganssAuxiliaryInformation
        Boolean
        BOOLEAN
    ulp.ganssDataBitInterval  ganssDataBitInterval
        Unsigned 32-bit integer
        INTEGER_0_15
    ulp.ganssDataBitSatList  ganssDataBitSatList
        Unsigned 32-bit integer
    ulp.ganssDataBitSatList_item  ganssDataBitSatList item
        Unsigned 32-bit integer
        INTEGER_0_63
    ulp.ganssDataBits  ganssDataBits
        No value
    ulp.ganssDay  ganssDay
        Unsigned 32-bit integer
        INTEGER_0_8191
    ulp.ganssDifferentialCorrection  ganssDifferentialCorrection
        Byte array
        DGANSS_Sig_Id_Req
    ulp.ganssEarthOrientationParameters  ganssEarthOrientationParameters
        Boolean
        BOOLEAN
    ulp.ganssExtendedEphemeris  ganssExtendedEphemeris
        No value
        ExtendedEphemeris
    ulp.ganssExtendedEphemerisCheck  ganssExtendedEphemerisCheck
        No value
        GanssExtendedEphCheck
    ulp.ganssId  ganssId
        Unsigned 32-bit integer
        INTEGER_0_15
    ulp.ganssIonosphericModel  ganssIonosphericModel
        Boolean
        BOOLEAN
    ulp.ganssNavigationModelData  ganssNavigationModelData
        No value
    ulp.ganssRealTimeIntegrity  ganssRealTimeIntegrity
        Boolean
        BOOLEAN
    ulp.ganssReferenceMeasurementInfo  ganssReferenceMeasurementInfo
        Boolean
        BOOLEAN
    ulp.ganssReferenceTime  ganssReferenceTime
        Boolean
        BOOLEAN
    ulp.ganssRequestedCommonAssistanceDataList  ganssRequestedCommonAssistanceDataList
        No value
    ulp.ganssRequestedGenericAssistanceDataList  ganssRequestedGenericAssistanceDataList
        Unsigned 32-bit integer
    ulp.ganssSBASid  ganssSBASid
        Byte array
        BIT_STRING_SIZE_3
    ulp.ganssSignalsInfo  ganssSignalsInfo
        Unsigned 32-bit integer
    ulp.ganssTOD  ganssTOD
        Unsigned 32-bit integer
        INTEGER_0_86399
    ulp.ganssTODmin  ganssTODmin
        Unsigned 32-bit integer
        INTEGER_0_59
    ulp.ganssTimeID  ganssTimeID
        Unsigned 32-bit integer
        INTEGER_0_15
    ulp.ganssTimeModels  ganssTimeModels
        Byte array
        BIT_STRING_SIZE_16
    ulp.ganssToe  ganssToe
        Unsigned 32-bit integer
        INTEGER_0_167
    ulp.ganssUTCModel  ganssUTCModel
        Boolean
        BOOLEAN
    ulp.ganssWeek  ganssWeek
        Unsigned 32-bit integer
        INTEGER_0_4095
    ulp.ganss_TODUncertainty  ganss-TODUncertainty
        Unsigned 32-bit integer
        INTEGER_0_127
    ulp.geoAreaMappingList  geoAreaMappingList
        Unsigned 32-bit integer
    ulp.geoAreaShapesSupported  geoAreaShapesSupported
        No value
    ulp.geographicTargetAreaList  geographicTargetAreaList
        Unsigned 32-bit integer
    ulp.glonass  glonass
        Boolean
        BOOLEAN
    ulp.gnssPosTechnology  gnssPosTechnology
        No value
    ulp.gnssSignals  gnssSignals
        Byte array
        GANSSSignals
    ulp.gps  gps
        Boolean
        BOOLEAN
    ulp.gpsReferenceTimeUncertainty  gpsReferenceTimeUncertainty
        Unsigned 32-bit integer
        INTEGER_0_127
    ulp.gpsToe  gpsToe
        Unsigned 32-bit integer
        INTEGER_0_167
    ulp.gpsWeek  gpsWeek
        Unsigned 32-bit integer
        INTEGER_0_1023
    ulp.gsmCell  gsmCell
        No value
        GsmCellInformation
    ulp.hRDP  hRDP
        Boolean
        BOOLEAN
    ulp.hRPDAreaId  hRPDAreaId
        No value
    ulp.historic  historic
        Boolean
        BOOLEAN
    ulp.historicReporting  historicReporting
        No value
    ulp.horacc  horacc
        Unsigned 32-bit integer
        INTEGER_0_127
    ulp.horandveruncert  horandveruncert
        No value
    ulp.horandvervel  horandvervel
        No value
    ulp.horspeed  horspeed
        Byte array
        BIT_STRING_SIZE_16
    ulp.horuncertspeed  horuncertspeed
        Byte array
        BIT_STRING_SIZE_8
    ulp.horvel  horvel
        No value
    ulp.horveluncert  horveluncert
        No value
    ulp.hrpdCell  hrpdCell
        No value
        HrpdCellInformation
    ulp.iODE  iODE
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.iPAddress  iPAddress
        Unsigned 32-bit integer
    ulp.ims_public_identity  ims-public-identity
        String
    ulp.imsi  imsi
        Byte array
        OCTET_STRING_SIZE_8
    ulp.initialApproximateposition  initialApproximateposition
        No value
        Position
    ulp.intermediateReports  intermediateReports
        Boolean
        BOOLEAN
    ulp.internalEditLevel  internalEditLevel
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.intervalBetweenFixes  intervalBetweenFixes
        Unsigned 32-bit integer
        INTEGER_1_8639999
    ulp.iod  iod
        Unsigned 32-bit integer
        INTEGER_0_1023
    ulp.ionosphericModelRequested  ionosphericModelRequested
        Boolean
        BOOLEAN
    ulp.ipv4Address  ipv4Address
        IPv4 address
        OCTET_STRING_SIZE_4
    ulp.ipv6Address  ipv6Address
        IPv6 address
        OCTET_STRING_SIZE_16
    ulp.keyIdentifier  keyIdentifier
        Byte array
        OCTET_STRING_SIZE_8
    ulp.keyIdentity  keyIdentity
        Byte array
    ulp.keyIdentity4  keyIdentity4
        Byte array
    ulp.lPPPayload  lPPPayload
        Byte array
        OCTET_STRING_SIZE_1_8192
    ulp.lTE  lTE
        Boolean
        BOOLEAN
    ulp.lTEAreaId  lTEAreaId
        No value
    ulp.latitude  latitude
        Unsigned 32-bit integer
        INTEGER_0_8388607
    ulp.latitudeSign  latitudeSign
        Unsigned 32-bit integer
    ulp.length  length
        Unsigned 32-bit integer
        INTEGER_0_65535
    ulp.locationAccuracy  locationAccuracy
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    ulp.locationData  locationData
        No value
    ulp.locationEncodingDescriptor  locationEncodingDescriptor
        Unsigned 32-bit integer
    ulp.locationEstimate  locationEstimate
        Boolean
        BOOLEAN
    ulp.locationId  locationId
        No value
    ulp.locationValue  locationValue
        Byte array
        OCTET_STRING_SIZE_1_128
    ulp.logicalName  logicalName
        String
        IA5String_SIZE_1_1000
    ulp.longKey  longKey
        Byte array
        BIT_STRING_SIZE_256
    ulp.longitude  longitude
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    ulp.lpp  lpp
        Boolean
        BOOLEAN
    ulp.ls_part  ls-part
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    ulp.lteCell  lteCell
        No value
        LteCellInformation
    ulp.mAC  mAC
        Byte array
    ulp.mRL  mRL
        Boolean
        BOOLEAN
    ulp.maj  maj
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.majorVersionField  majorVersionField
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.maxAreaIdListSupported  maxAreaIdListSupported
        Unsigned 32-bit integer
        INTEGER_0_maxAreaIdList
    ulp.maxAreaIdSupportedPerList  maxAreaIdSupportedPerList
        Unsigned 32-bit integer
        INTEGER_0_maxAreaId
    ulp.maxInt  maxInt
        Unsigned 32-bit integer
        INTEGER_1_1440
    ulp.maxLocAge  maxLocAge
        Unsigned 32-bit integer
        INTEGER_0_65535
    ulp.maxNumGeoAreaSupported  maxNumGeoAreaSupported
        Unsigned 32-bit integer
        INTEGER_0_maxNumGeoArea
    ulp.maxNumberPeriodicSessions  maxNumberPeriodicSessions
        Unsigned 32-bit integer
        INTEGER_1_32
    ulp.maxNumberTotalSessions  maxNumberTotalSessions
        Unsigned 32-bit integer
        INTEGER_1_128
    ulp.maxNumberTriggeredSessions  maxNumberTriggeredSessions
        Unsigned 32-bit integer
        INTEGER_1_32
    ulp.maxNumberofReports  maxNumberofReports
        Unsigned 32-bit integer
        INTEGER_1_65536
    ulp.max_num_measurements  max-num-measurements
        Unsigned 32-bit integer
        INTEGER_1_1024
    ulp.max_num_positions  max-num-positions
        Unsigned 32-bit integer
        INTEGER_1_1024
    ulp.maximumNumberOfReports  maximumNumberOfReports
        Unsigned 32-bit integer
        INTEGER_1_1024
    ulp.mcc  mcc
        Unsigned 32-bit integer
    ulp.mdn  mdn
        Byte array
        OCTET_STRING_SIZE_8
    ulp.measResult  measResult
        No value
    ulp.measResultListEUTRA  measResultListEUTRA
        Unsigned 32-bit integer
    ulp.measuredResultsList  measuredResultsList
        Unsigned 32-bit integer
    ulp.message  message
        Unsigned 32-bit integer
        UlpMessage
    ulp.min  min
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.minInt  minInt
        Unsigned 32-bit integer
        INTEGER_1_3600
    ulp.minTimeInterval  minTimeInterval
        Unsigned 32-bit integer
        INTEGER_1_86400
    ulp.minimumIntervalTime  minimumIntervalTime
        Unsigned 32-bit integer
        INTEGER_1_604800
    ulp.minimumMajorVersion  minimumMajorVersion
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.mnc  mnc
        Unsigned 32-bit integer
    ulp.modeSpecificInfo  modeSpecificInfo
        Unsigned 32-bit integer
        FrequencySpecificInfo
    ulp.modernized_gps  modernized-gps
        Boolean
        BOOLEAN
    ulp.moreComponents  moreComponents
        No value
    ulp.msSUPLAUTHREQ  msSUPLAUTHREQ
        No value
        SUPLAUTHREQ
    ulp.msSUPLAUTHRESP  msSUPLAUTHRESP
        No value
        SUPLAUTHRESP
    ulp.msSUPLEND  msSUPLEND
        No value
        SUPLEND
    ulp.msSUPLINIT  msSUPLINIT
        No value
        SUPLINIT
    ulp.msSUPLNOTIFY  msSUPLNOTIFY
        No value
        Ver2_SUPLNOTIFY
    ulp.msSUPLNOTIFYRESPONSE  msSUPLNOTIFYRESPONSE
        No value
        Ver2_SUPLNOTIFYRESPONSE
    ulp.msSUPLPOS  msSUPLPOS
        No value
        SUPLPOS
    ulp.msSUPLPOSINIT  msSUPLPOSINIT
        No value
        SUPLPOSINIT
    ulp.msSUPLREPORT  msSUPLREPORT
        No value
        Ver2_SUPLREPORT
    ulp.msSUPLRESPONSE  msSUPLRESPONSE
        No value
        SUPLRESPONSE
    ulp.msSUPLSETINIT  msSUPLSETINIT
        No value
        Ver2_SUPLSETINIT
    ulp.msSUPLSTART  msSUPLSTART
        No value
        SUPLSTART
    ulp.msSUPLTRIGGEREDRESPONSE  msSUPLTRIGGEREDRESPONSE
        No value
        Ver2_SUPLTRIGGEREDRESPONSE
    ulp.msSUPLTRIGGEREDSTART  msSUPLTRIGGEREDSTART
        No value
        Ver2_SUPLTRIGGEREDSTART
    ulp.msSUPLTRIGGEREDSTOP  msSUPLTRIGGEREDSTOP
        No value
        Ver2_SUPLTRIGGEREDSTOP
    ulp.ms_part  ms-part
        Unsigned 32-bit integer
        INTEGER_0_1023
    ulp.msisdn  msisdn
        Byte array
        OCTET_STRING_SIZE_8
    ulp.multipleLocationIds  multipleLocationIds
        Unsigned 32-bit integer
    ulp.nMR  nMR
        Unsigned 32-bit integer
    ulp.nSAT  nSAT
        Unsigned 32-bit integer
        INTEGER_0_31
    ulp.nai  nai
        String
        IA5String_SIZE_1_1000
    ulp.navigationModelData  navigationModelData
        No value
        NavigationModel
    ulp.navigationModelRequested  navigationModelRequested
        Boolean
        BOOLEAN
    ulp.nonServing  nonServing
        Boolean
        BOOLEAN
    ulp.notification  notification
        No value
    ulp.notificationMode  notificationMode
        Unsigned 32-bit integer
    ulp.notificationResponse  notificationResponse
        Unsigned 32-bit integer
    ulp.notificationType  notificationType
        Unsigned 32-bit integer
    ulp.num_interval  num-interval
        Unsigned 32-bit integer
        INTEGER_1_1024
    ulp.num_minutes  num-minutes
        Unsigned 32-bit integer
        INTEGER_1_2048
    ulp.numberOfFixes  numberOfFixes
        Unsigned 32-bit integer
        INTEGER_1_8639999
    ulp.oTDOA  oTDOA
        Boolean
        BOOLEAN
    ulp.orbitModelID  orbitModelID
        Unsigned 32-bit integer
        INTEGER_0_7
    ulp.orientationMajorAxis  orientationMajorAxis
        Unsigned 32-bit integer
        INTEGER_0_180
    ulp.pathloss  pathloss
        Unsigned 32-bit integer
    ulp.periodicParams  periodicParams
        No value
    ulp.periodicTrigger  periodicTrigger
        Boolean
        BOOLEAN
    ulp.physCellId  physCellId
        Unsigned 32-bit integer
    ulp.plmn_Identity  plmn-Identity
        No value
    ulp.pointReleaseNumber  pointReleaseNumber
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.polygonArea  polygonArea
        No value
    ulp.polygonDescription  polygonDescription
        Unsigned 32-bit integer
    ulp.polygonHysteresis  polygonHysteresis
        Unsigned 32-bit integer
        INTEGER_1_100000
    ulp.posMethod  posMethod
        Unsigned 32-bit integer
    ulp.posPayLoad  posPayLoad
        Unsigned 32-bit integer
    ulp.posProtocol  posProtocol
        No value
    ulp.posProtocolVersionLPP  posProtocolVersionLPP
        No value
        PosProtocolVersion3GPP
    ulp.posProtocolVersionRRC  posProtocolVersionRRC
        No value
        PosProtocolVersion3GPP
    ulp.posProtocolVersionRRLP  posProtocolVersionRRLP
        No value
        PosProtocolVersion3GPP
    ulp.posProtocolVersionTIA801  posProtocolVersionTIA801
        Unsigned 32-bit integer
        PosProtocolVersion3GPP2
    ulp.posTechnology  posTechnology
        No value
    ulp.position  position
        No value
    ulp.positionData  positionData
        No value
    ulp.positionEstimate  positionEstimate
        No value
    ulp.prefMethod  prefMethod
        Unsigned 32-bit integer
    ulp.primaryCCPCH_RSCP  primaryCCPCH-RSCP
        Unsigned 32-bit integer
    ulp.primaryCPICH_Info  primaryCPICH-Info
        No value
    ulp.primaryScramblingCode  primaryScramblingCode
        Unsigned 32-bit integer
        INTEGER_0_511
    ulp.proposedTGSN  proposedTGSN
        Unsigned 32-bit integer
        TGSN
    ulp.protectionLevel  protectionLevel
        No value
    ulp.protlevel  protlevel
        Unsigned 32-bit integer
    ulp.qoP  qoP
        No value
    ulp.quasirealtime  quasirealtime
        Boolean
        BOOLEAN
    ulp.qzss  qzss
        Boolean
        BOOLEAN
    ulp.rAND  rAND
        Byte array
        BIT_STRING_SIZE_128
    ulp.rSSI  rSSI
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.rSSIstd  rSSIstd
        Unsigned 32-bit integer
        INTEGER_0_63
    ulp.rTD  rTD
        Unsigned 32-bit integer
        INTEGER_0_65535
    ulp.rTDAccuracy  rTDAccuracy
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.rTDUnits  rTDUnits
        Unsigned 32-bit integer
    ulp.rTDValue  rTDValue
        Unsigned 32-bit integer
        INTEGER_0_16777216
    ulp.rTDstd  rTDstd
        Unsigned 32-bit integer
        INTEGER_0_1023
    ulp.radius  radius
        Unsigned 32-bit integer
        INTEGER_1_1000000
    ulp.radius_max  radius-max
        Unsigned 32-bit integer
        INTEGER_1_1500000
    ulp.radius_min  radius-min
        Unsigned 32-bit integer
        INTEGER_1_1000000
    ulp.reBASELONG  reBASELONG
        Unsigned 32-bit integer
        INTEGER_0_8388607
    ulp.realTimeIntegrityRequested  realTimeIntegrityRequested
        Boolean
        BOOLEAN
    ulp.realtime  realtime
        Boolean
        BOOLEAN
    ulp.refBASEID  refBASEID
        Unsigned 32-bit integer
        INTEGER_0_65535
    ulp.refBASELAT  refBASELAT
        Unsigned 32-bit integer
        INTEGER_0_4194303
    ulp.refCI  refCI
        Unsigned 32-bit integer
        INTEGER_0_65535
    ulp.refLAC  refLAC
        Unsigned 32-bit integer
        INTEGER_0_65535
    ulp.refMCC  refMCC
        Unsigned 32-bit integer
        INTEGER_0_999
    ulp.refMNC  refMNC
        Unsigned 32-bit integer
        INTEGER_0_999
    ulp.refNID  refNID
        Unsigned 32-bit integer
        INTEGER_0_32767
    ulp.refREFPN  refREFPN
        Unsigned 32-bit integer
        INTEGER_0_511
    ulp.refSECTORID  refSECTORID
        Byte array
        BIT_STRING_SIZE_128
    ulp.refSID  refSID
        Unsigned 32-bit integer
        INTEGER_0_65535
    ulp.refSeconds  refSeconds
        Unsigned 32-bit integer
        INTEGER_0_4194303
    ulp.refUC  refUC
        Unsigned 32-bit integer
        INTEGER_0_268435455
    ulp.refWeekNumber  refWeekNumber
        Unsigned 32-bit integer
        INTEGER_0_65535
    ulp.referenceIdentity  referenceIdentity
        No value
        PrimaryCPICH_Info
    ulp.referenceLocationRequested  referenceLocationRequested
        Boolean
        BOOLEAN
    ulp.referenceTimeRequested  referenceTimeRequested
        Boolean
        BOOLEAN
    ulp.relDelay  relDelay
        Signed 32-bit integer
        INTEGER_M32768_32767
    ulp.relDelaystd  relDelaystd
        Unsigned 32-bit integer
        INTEGER_0_1023
    ulp.relativeTime  relativeTime
        Unsigned 32-bit integer
        INTEGER_0_31536000
    ulp.relativetimestamp  relativetimestamp
        Unsigned 32-bit integer
        RelativeTime
    ulp.repMode  repMode
        Unsigned 32-bit integer
    ulp.repeatedReportingParams  repeatedReportingParams
        No value
    ulp.reportDataList  reportDataList
        Unsigned 32-bit integer
    ulp.reportMeasurements  reportMeasurements
        Boolean
        BOOLEAN
    ulp.reportPosition  reportPosition
        Boolean
        BOOLEAN
    ulp.report_measurements  report-measurements
        Boolean
        BOOLEAN
    ulp.report_position  report-position
        Boolean
        BOOLEAN
    ulp.reportingCap  reportingCap
        No value
    ulp.reportingCapabilities  reportingCapabilities
        No value
        ReportingCap
    ulp.reportingCriteria  reportingCriteria
        No value
    ulp.reportingMode  reportingMode
        No value
    ulp.reqDataBitAssistanceList  reqDataBitAssistanceList
        No value
    ulp.requestedAssistData  requestedAssistData
        No value
    ulp.requestorId  requestorId
        Byte array
        OCTET_STRING_SIZE_1_maxReqLength
    ulp.requestorIdType  requestorIdType
        Unsigned 32-bit integer
        FormatIndicator
    ulp.resultCode  resultCode
        Unsigned 32-bit integer
    ulp.revisionNumber  revisionNumber
        Byte array
        BIT_STRING_SIZE_6
    ulp.rrc  rrc
        Boolean
        BOOLEAN
    ulp.rrcPayload  rrcPayload
        Byte array
        OCTET_STRING_SIZE_1_8192
    ulp.rrlp  rrlp
        Boolean
        BOOLEAN
    ulp.rrlpPayload  rrlpPayload
        Byte array
    ulp.rsrpResult  rsrpResult
        Unsigned 32-bit integer
        RSRP_Range
    ulp.rsrqResult  rsrqResult
        Unsigned 32-bit integer
        RSRQ_Range
    ulp.rxLev  rxLev
        Unsigned 32-bit integer
        INTEGER_0_63
    ulp.sETAuthKey  sETAuthKey
        Unsigned 32-bit integer
    ulp.sETCapabilities  sETCapabilities
        No value
    ulp.sLPAddress  sLPAddress
        Unsigned 32-bit integer
    ulp.sLPMode  sLPMode
        Unsigned 32-bit integer
    ulp.sPCSETKey  sPCSETKey
        Byte array
    ulp.sPCSETKeylifetime  sPCSETKeylifetime
        Unsigned 32-bit integer
    ulp.sPCTID  sPCTID
        No value
    ulp.sUPLPOS  sUPLPOS
        No value
    ulp.satId  satId
        Unsigned 32-bit integer
        INTEGER_0_63
    ulp.satInfo  satInfo
        Unsigned 32-bit integer
        SatelliteInfo
    ulp.satellitesListRelatedDataList  satellitesListRelatedDataList
        Unsigned 32-bit integer
    ulp.sbas  sbas
        Boolean
        BOOLEAN
    ulp.semiMajor  semiMajor
        Unsigned 32-bit integer
        INTEGER_1_1000000
    ulp.semiMajor_max  semiMajor-max
        Unsigned 32-bit integer
        INTEGER_1_1500000
    ulp.semiMajor_min  semiMajor-min
        Unsigned 32-bit integer
        INTEGER_1_1000000
    ulp.semiMinor  semiMinor
        Unsigned 32-bit integer
        INTEGER_1_1000000
    ulp.semiMinor_max  semiMinor-max
        Unsigned 32-bit integer
        INTEGER_1_1500000
    ulp.semiMinor_min  semiMinor-min
        Unsigned 32-bit integer
        INTEGER_1_1000000
    ulp.serviceCapabilities  serviceCapabilities
        No value
    ulp.servicesSupported  servicesSupported
        No value
    ulp.servind  servind
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.servingFlag  servingFlag
        Boolean
        BOOLEAN
    ulp.sessionCapabilities  sessionCapabilities
        No value
    ulp.sessionID  sessionID
        No value
    ulp.sessionId  sessionId
        Unsigned 32-bit integer
        INTEGER_0_65535
    ulp.sessionList  sessionList
        Unsigned 32-bit integer
    ulp.setAG  setAG
        Boolean
        BOOLEAN
    ulp.setAntennaGain  setAntennaGain
        Signed 32-bit integer
        INTEGER_M127_128
    ulp.setAssisted  setAssisted
        Boolean
        BOOLEAN
    ulp.setBased  setBased
        Boolean
        BOOLEAN
    ulp.setId  setId
        Unsigned 32-bit integer
    ulp.setRSSI  setRSSI
        Boolean
        BOOLEAN
    ulp.setSN  setSN
        Boolean
        BOOLEAN
    ulp.setSessionID  setSessionID
        No value
    ulp.setSignalStrength  setSignalStrength
        Signed 32-bit integer
        INTEGER_M127_128
    ulp.setSignaltoNoise  setSignaltoNoise
        Signed 32-bit integer
        INTEGER_M127_128
    ulp.setTP  setTP
        Boolean
        BOOLEAN
    ulp.setTransmitPower  setTransmitPower
        Signed 32-bit integer
        INTEGER_M127_128
    ulp.set_GANSSReferenceTime  set-GANSSReferenceTime
        No value
    ulp.set_GANSSTimingOfCell  set-GANSSTimingOfCell
        No value
        T_set_GANSSTimingOfCell
    ulp.set_GPSTimingOfCell  set-GPSTimingOfCell
        No value
        T_set_GPSTimingOfCell
    ulp.sfn  sfn
        Unsigned 32-bit integer
        INTEGER_0_4095
    ulp.shortKey  shortKey
        Byte array
        BIT_STRING_SIZE_128
    ulp.signal1  signal1
        Boolean
    ulp.signal2  signal2
        Boolean
    ulp.signal3  signal3
        Boolean
    ulp.signal4  signal4
        Boolean
    ulp.signal5  signal5
        Boolean
    ulp.signal6  signal6
        Boolean
    ulp.signal7  signal7
        Boolean
    ulp.signal8  signal8
        Boolean
    ulp.sip_uri  sip-uri
        String
    ulp.slpFQDN  slpFQDN
        String
        FQDN
    ulp.slpId  slpId
        Unsigned 32-bit integer
        SLPAddress
    ulp.slpSessionID  slpSessionID
        No value
    ulp.startTime  startTime
        Unsigned 32-bit integer
        INTEGER_0_2678400
    ulp.status  status
        Unsigned 32-bit integer
    ulp.statusCode  statusCode
        Unsigned 32-bit integer
    ulp.stopTime  stopTime
        Unsigned 32-bit integer
        INTEGER_0_11318399
    ulp.supportedNetworkInformation  supportedNetworkInformation
        No value
    ulp.supportedWCDMAInfo  supportedWCDMAInfo
        No value
    ulp.supportedWLANApDataList  supportedWLANApDataList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxWLANApDataSize_OF_SupportedWLANApData
    ulp.supportedWLANApsList  supportedWLANApsList
        No value
    ulp.supportedWLANInfo  supportedWLANInfo
        No value
    ulp.supportedWLANapsChannel11a  supportedWLANapsChannel11a
        No value
    ulp.supportedWLANapsChannel11bg  supportedWLANapsChannel11bg
        No value
    ulp.tA  tA
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.tAResolution  tAResolution
        Unsigned 32-bit integer
    ulp.t_toeLimit  t-toeLimit
        Unsigned 32-bit integer
        INTEGER_0_15
    ulp.targetSETID  targetSETID
        Unsigned 32-bit integer
        SETId
    ulp.tdd  tdd
        No value
        FrequencyInfoTDD
    ulp.technicalVersionField  technicalVersionField
        Unsigned 32-bit integer
        INTEGER_0_255
    ulp.thirdParty  thirdParty
        Unsigned 32-bit integer
    ulp.tia801  tia801
        Boolean
        BOOLEAN
    ulp.tia801payload  tia801payload
        Byte array
        OCTET_STRING_SIZE_1_8192
    ulp.timeWindow  timeWindow
        No value
    ulp.timeslotISCP_List  timeslotISCP-List
        Unsigned 32-bit integer
    ulp.timestamp  timestamp
        Unsigned 32-bit integer
    ulp.timingAdvance  timingAdvance
        No value
    ulp.toeLimit  toeLimit
        Unsigned 32-bit integer
        INTEGER_0_10
    ulp.trackingAreaCode  trackingAreaCode
        Byte array
    ulp.triggerParams  triggerParams
        Unsigned 32-bit integer
    ulp.triggerType  triggerType
        Unsigned 32-bit integer
    ulp.uMB  uMB
        Boolean
        BOOLEAN
    ulp.uMBAreaId  uMBAreaId
        No value
    ulp.uTRANGANSSReferenceTime  uTRANGANSSReferenceTime
        Boolean
        BOOLEAN
    ulp.uTRANGPSReferenceTime  uTRANGPSReferenceTime
        Boolean
        BOOLEAN
    ulp.uarfcn_DL  uarfcn-DL
        Unsigned 32-bit integer
        UARFCN
    ulp.uarfcn_Nt  uarfcn-Nt
        Unsigned 32-bit integer
        UARFCN
    ulp.uarfcn_UL  uarfcn-UL
        Unsigned 32-bit integer
        UARFCN
    ulp.umbCell  umbCell
        No value
        UmbCellInformation
    ulp.uncertainty  uncertainty
        No value
    ulp.uncertaintySemiMajor  uncertaintySemiMajor
        Unsigned 32-bit integer
        INTEGER_0_127
    ulp.uncertaintySemiMinor  uncertaintySemiMinor
        Unsigned 32-bit integer
        INTEGER_0_127
    ulp.uncertspeed  uncertspeed
        Byte array
        BIT_STRING_SIZE_8
    ulp.uri  uri
        String
    ulp.utcModelID  utcModelID
        Unsigned 32-bit integer
        INTEGER_0_7
    ulp.utcModelRequested  utcModelRequested
        Boolean
        BOOLEAN
    ulp.utra_CarrierRSSI  utra-CarrierRSSI
        Unsigned 32-bit integer
    ulp.utranGANSSDriftRate  utranGANSSDriftRate
        Unsigned 32-bit integer
    ulp.utranGPSDriftRate  utranGPSDriftRate
        Unsigned 32-bit integer
    ulp.utran_GANSSReferenceTime  utran-GANSSReferenceTime
        No value
    ulp.utran_GANSSReferenceTimeAssistance  utran-GANSSReferenceTimeAssistance
        No value
    ulp.utran_GANSSReferenceTimeResult  utran-GANSSReferenceTimeResult
        No value
    ulp.utran_GANSSTimingOfCell  utran-GANSSTimingOfCell
        Unsigned 32-bit integer
        INTEGER_0_3999999
    ulp.utran_GPSReferenceTime  utran-GPSReferenceTime
        No value
    ulp.utran_GPSReferenceTimeAssistance  utran-GPSReferenceTimeAssistance
        No value
    ulp.utran_GPSReferenceTimeResult  utran-GPSReferenceTimeResult
        No value
    ulp.utran_GPSTimingOfCell  utran-GPSTimingOfCell
        No value
    ulp.validity  validity
        Unsigned 32-bit integer
        INTEGER_1_256
    ulp.velocity  velocity
        Unsigned 32-bit integer
    ulp.ver  ver
        Byte array
    ulp.ver2_CellInfo_extension  ver2-CellInfo-extension
        Unsigned 32-bit integer
    ulp.ver2_Notification_extension  ver2-Notification-extension
        No value
    ulp.ver2_PosPayLoad_extension  ver2-PosPayLoad-extension
        No value
    ulp.ver2_PosProtocol_extension  ver2-PosProtocol-extension
        No value
    ulp.ver2_PosTechnology_extension  ver2-PosTechnology-extension
        No value
    ulp.ver2_RequestedAssistData_extension  ver2-RequestedAssistData-extension
        No value
    ulp.ver2_SETCapabilities_extension  ver2-SETCapabilities-extension
        No value
    ulp.ver2_SUPL_END_extension  ver2-SUPL-END-extension
        No value
    ulp.ver2_SUPL_INIT_extension  ver2-SUPL-INIT-extension
        No value
    ulp.ver2_SUPL_POS_INIT_extension  ver2-SUPL-POS-INIT-extension
        No value
    ulp.ver2_SUPL_POS_extension  ver2-SUPL-POS-extension
        No value
    ulp.ver2_SUPL_RESPONSE_extension  ver2-SUPL-RESPONSE-extension
        No value
    ulp.ver2_SUPL_START_extension  ver2-SUPL-START-extension
        No value
    ulp.veracc  veracc
        Unsigned 32-bit integer
        INTEGER_0_127
    ulp.verdirect  verdirect
        Byte array
        BIT_STRING_SIZE_1
    ulp.version  version
        No value
    ulp.verspeed  verspeed
        Byte array
        BIT_STRING_SIZE_8
    ulp.veruncertspeed  veruncertspeed
        Byte array
        BIT_STRING_SIZE_8
    ulp.wCDMA  wCDMA
        Boolean
        BOOLEAN
    ulp.wCDMAAreaId  wCDMAAreaId
        No value
    ulp.wIMAX  wIMAX
        Boolean
        BOOLEAN
    ulp.wLAN  wLAN
        Boolean
        BOOLEAN
    ulp.wLANAreaId  wLANAreaId
        No value
    ulp.wcdmaCell  wcdmaCell
        No value
        WcdmaCellInformation
    ulp.wiMAXAreaId  wiMAXAreaId
        No value
    ulp.wimaxBS  wimaxBS
        No value
        WimaxBSInformation
    ulp.wimaxBsID  wimaxBsID
        No value
    ulp.wimaxNMRList  wimaxNMRList
        Unsigned 32-bit integer
    ulp.wimaxRTD  wimaxRTD
        No value
    ulp.wlanAP  wlanAP
        No value
        WlanAPInformation

OMRON FINS Protocol (omron)

    omron.area_data.dm_size  Expansion DM size
        Unsigned 8-bit integer
    omron.area_data.dm_words  No. of DM words
        Unsigned 16-bit integer
    omron.area_data.iom_size  IOM size
        Unsigned 8-bit integer
    omron.area_data.memory_card  Kind of Memory card
        Unsigned 8-bit integer
    omron.area_data.memory_card.size  Memory card size
        Unsigned 16-bit integer
    omron.area_data.num_steps  No. of steps/transitions
        Unsigned 16-bit integer
    omron.area_data.program_area_size  Program area size
        Unsigned 16-bit integer
    omron.area_data.timer_size  Timer/counter size
        Unsigned 8-bit integer
    omron.avg_cycle_time  Average cycle time
        Unsigned 32-bit integer
    omron.beginning_block_num  Beginning block number
        Unsigned 16-bit integer
    omron.beginning_file_position  Beginning file position
        Unsigned 16-bit integer
    omron.beginning_record_no  Beginning record no.
        Unsigned 16-bit integer
    omron.bit_flag  Bit/flag
        Unsigned 24-bit integer
    omron.block_num  Block number
        Unsigned 16-bit integer
    omron.block_record.cio_area  CIO Area first word
        Unsigned 16-bit integer
    omron.block_record.dm_area_first_word  DM Area first word
        Unsigned 16-bit integer
    omron.block_record.kind_of_dm  Kind of DM
        Unsigned 8-bit integer
    omron.block_record.no_of_total_words  No. of total words
        Unsigned 16-bit integer
    omron.block_record.node_num_num_nodes  No. of link nodes
        Unsigned 8-bit integer
    omron.block_record.node_num_status  Data link status
        Boolean
    omron.clearcode  Clear Code
        Unsigned 8-bit integer
    omron.com_cycle_time  Communications cycle time (usec)
        Unsigned 16-bit integer
    omron.command  Command CODE
        Unsigned 16-bit integer
    omron.command.data  Command Data
        Byte array
    omron.control_data  Control data
        Unsigned 8-bit integer
    omron.controller.model  Controller model
        String
    omron.controller.version  Controller version
        String
    omron.cpubus_unit.no0  CPU Bus Unit No. 0
        Unsigned 16-bit integer
    omron.cpubus_unit.no1  CPU Bus Unit No. 1
        Unsigned 16-bit integer
    omron.cpubus_unit.no10  CPU Bus Unit No. 10
        Unsigned 16-bit integer
    omron.cpubus_unit.no11  CPU Bus Unit No. 11
        Unsigned 16-bit integer
    omron.cpubus_unit.no12  CPU Bus Unit No. 12
        Unsigned 16-bit integer
    omron.cpubus_unit.no13  CPU Bus Unit No. 13
        Unsigned 16-bit integer
    omron.cpubus_unit.no14  CPU Bus Unit No. 14
        Unsigned 16-bit integer
    omron.cpubus_unit.no15  CPU Bus Unit No. 15
        Unsigned 16-bit integer
    omron.cpubus_unit.no2  CPU Bus Unit No. 2
        Unsigned 16-bit integer
    omron.cpubus_unit.no3  CPU Bus Unit No. 3
        Unsigned 16-bit integer
    omron.cpubus_unit.no4  CPU Bus Unit No. 4
        Unsigned 16-bit integer
    omron.cpubus_unit.no5  CPU Bus Unit No. 5
        Unsigned 16-bit integer
    omron.cpubus_unit.no6  CPU Bus Unit No. 6
        Unsigned 16-bit integer
    omron.cpubus_unit.no7  CPU Bus Unit No. 7
        Unsigned 16-bit integer
    omron.cpubus_unit.no8  CPU Bus Unit No. 8
        Unsigned 16-bit integer
    omron.cpubus_unit.no9  CPU Bus Unit No. 9
        Unsigned 16-bit integer
    omron.cpubus_unit.reserved  CPU Bus Unit Reserved 
        String
    omron.cyclic_error.node.1  Node  1 error status
        Boolean
    omron.cyclic_error.node.10  Node 10 error status
        Boolean
    omron.cyclic_error.node.11  Node 11 error status
        Boolean
    omron.cyclic_error.node.12  Node 12 error status
        Boolean
    omron.cyclic_error.node.13  Node 13 error status
        Boolean
    omron.cyclic_error.node.14  Node 14 error status
        Boolean
    omron.cyclic_error.node.15  Node 15 error status
        Boolean
    omron.cyclic_error.node.16  Node 16 error status
        Boolean
    omron.cyclic_error.node.17  Node 17 error status
        Boolean
    omron.cyclic_error.node.18  Node 18 error status
        Boolean
    omron.cyclic_error.node.19  Node 19 error status
        Boolean
    omron.cyclic_error.node.2  Node  2 error status
        Boolean
    omron.cyclic_error.node.20  Node 20 error status
        Boolean
    omron.cyclic_error.node.21  Node 21 error status
        Boolean
    omron.cyclic_error.node.22  Node 22 error status
        Boolean
    omron.cyclic_error.node.23  Node 23 error status
        Boolean
    omron.cyclic_error.node.24  Node 24 error status
        Boolean
    omron.cyclic_error.node.25  Node 25 error status
        Boolean
    omron.cyclic_error.node.26  Node 26 error status
        Boolean
    omron.cyclic_error.node.27  Node 27 error status
        Boolean
    omron.cyclic_error.node.28  Node 28 error status
        Boolean
    omron.cyclic_error.node.29  Node 29 error status
        Boolean
    omron.cyclic_error.node.3  Node  3 error status
        Boolean
    omron.cyclic_error.node.30  Node 30 error status
        Boolean
    omron.cyclic_error.node.31  Node 31 error status
        Boolean
    omron.cyclic_error.node.32  Node 32 error status
        Boolean
    omron.cyclic_error.node.33  Node 33 error status
        Boolean
    omron.cyclic_error.node.34  Node 34 error status
        Boolean
    omron.cyclic_error.node.35  Node 35 error status
        Boolean
    omron.cyclic_error.node.36  Node 36 error status
        Boolean
    omron.cyclic_error.node.37  Node 37 error status
        Boolean
    omron.cyclic_error.node.38  Node 38 error status
        Boolean
    omron.cyclic_error.node.39  Node 39 error status
        Boolean
    omron.cyclic_error.node.4  Node  4 error status
        Boolean
    omron.cyclic_error.node.40  Node 40 error status
        Boolean
    omron.cyclic_error.node.41  Node 41 error status
        Boolean
    omron.cyclic_error.node.42  Node 42 error status
        Boolean
    omron.cyclic_error.node.43  Node 43 error status
        Boolean
    omron.cyclic_error.node.44  Node 44 error status
        Boolean
    omron.cyclic_error.node.45  Node 45 error status
        Boolean
    omron.cyclic_error.node.46  Node 46 error status
        Boolean
    omron.cyclic_error.node.47  Node 47 error status
        Boolean
    omron.cyclic_error.node.48  Node 48 error status
        Boolean
    omron.cyclic_error.node.49  Node 49 error status
        Boolean
    omron.cyclic_error.node.5  Node  5 error status
        Boolean
    omron.cyclic_error.node.50  Node 50 error status
        Boolean
    omron.cyclic_error.node.51  Node 51 error status
        Boolean
    omron.cyclic_error.node.52  Node 52 error status
        Boolean
    omron.cyclic_error.node.53  Node 53 error status
        Boolean
    omron.cyclic_error.node.54  Node 54 error status
        Boolean
    omron.cyclic_error.node.55  Node 55 error status
        Boolean
    omron.cyclic_error.node.56  Node 56 error status
        Boolean
    omron.cyclic_error.node.57  Node 57 error status
        Boolean
    omron.cyclic_error.node.58  Node 58 error status
        Boolean
    omron.cyclic_error.node.59  Node 59 error status
        Boolean
    omron.cyclic_error.node.6  Node  6 error status
        Boolean
    omron.cyclic_error.node.60  Node 60 error status
        Boolean
    omron.cyclic_error.node.61  Node 61 error status
        Boolean
    omron.cyclic_error.node.62  Node 62 error status
        Boolean
    omron.cyclic_error.node.7  Node  7 error status
        Boolean
    omron.cyclic_error.node.8  Node  8 error status
        Boolean
    omron.cyclic_error.node.9  Node  9 error status
        Boolean
    omron.cyclic_error_status  Nodes  1- 7
        Unsigned 8-bit integer
    omron.cyclic_operation  Cyclic operation
        Unsigned 8-bit integer
    omron.cyclic_trans_status  Cyclic transmission status
        Unsigned 8-bit integer
    omron.da1  Destination node number
        Unsigned 8-bit integer
    omron.da2  Destination unit address
        Unsigned 8-bit integer
    omron.data  Data
        No value
    omron.data_length  Data length
        Unsigned 16-bit integer
    omron.data_type  Data type
        Unsigned 8-bit integer
    omron.data_type_end  Block
        Boolean
    omron.data_type_protected  Protected
        Boolean
    omron.data_type_rv  Reserved
        Unsigned 8-bit integer
    omron.data_type_type  Data type
        Unsigned 8-bit integer
    omron.date  Date
        Unsigned 8-bit integer
    omron.day  Day
        Unsigned 8-bit integer
    omron.disk_data.day  Day
        Unsigned 32-bit integer
    omron.disk_data.hour  Hour
        Unsigned 32-bit integer
    omron.disk_data.minute  Minute
        Unsigned 32-bit integer
    omron.disk_data.month  Month
        Unsigned 32-bit integer
    omron.disk_data.no_files  No. of files
        Unsigned 16-bit integer
    omron.disk_data.second  Second
        Unsigned 8-bit integer
    omron.disk_data.total_capacity  Total capacity
        Unsigned 32-bit integer
    omron.disk_data.total_no_files  Total no. of files
        Unsigned 16-bit integer
    omron.disk_data.unused_capacity  Unused capacity
        Unsigned 32-bit integer
    omron.disk_data.volume_label  Volume label
        String
    omron.disk_data.year  Year
        Unsigned 8-bit integer
    omron.disk_no  Disk no.
        Unsigned 16-bit integer
    omron.dna  Destination network address
        Unsigned 8-bit integer
    omron.error_message  Error message
        String
    omron.error_reset_fals_no  Error reset FAL no.
        Unsigned 16-bit integer
    omron.fals  FALS / FALS no.
        Unsigned 16-bit integer
    omron.fatal.cpu_bus_error  CPU bus error
        Unsigned 16-bit integer
    omron.fatal.cycle_time_over  Cycle time over
        Unsigned 16-bit integer
    omron.fatal.duplication_error  Duplication error
        Unsigned 16-bit integer
    omron.fatal.fals_error  FALS error
        Unsigned 16-bit integer
    omron.fatal.io_bus_error  I/O bus error
        Unsigned 16-bit integer
    omron.fatal.io_point_overflow  I/O point overflow
        Unsigned 16-bit integer
    omron.fatal.io_setting_error  I/O setting error
        Unsigned 16-bit integer
    omron.fatal.memory_error  Memory error
        Unsigned 16-bit integer
    omron.fatal.program_error  Program error
        Unsigned 16-bit integer
    omron.fatal.rv_1  Reserved
        Unsigned 16-bit integer
    omron.fatal.rv_2  Reserved
        Unsigned 16-bit integer
    omron.fatal.rv_3  Reserved
        Unsigned 16-bit integer
    omron.fatal.rv_4  Reserved
        Unsigned 16-bit integer
    omron.fatal.rv_5  Reserved
        Unsigned 16-bit integer
    omron.fatal.sfc_error  Fatal SFC error
        Unsigned 16-bit integer
    omron.fatal.watch_dog_timer_error  Watch dog timer error
        Unsigned 16-bit integer
    omron.fatal_error_data  Fatal error data
        Unsigned 16-bit integer
    omron.file_data  File data
        No value
    omron.file_data.file_capacity  File capacity
        Unsigned 32-bit integer
    omron.file_data.filename  Filename
        String
    omron.file_parameter_code  Parameter code
        Unsigned 16-bit integer
    omron.file_position  File position
        Unsigned 32-bit integer
    omron.first_word  First word
        Unsigned 16-bit integer
    omron.fixed  Fixed
        Unsigned 16-bit integer
    omron.gct  Gateway Count
        Unsigned 8-bit integer
    omron.hour  Hour
        Unsigned 8-bit integer
    omron.icf  OMRON ICF Field
        Unsigned 8-bit integer
    omron.icf.dtb  Data Type bit
        Unsigned 8-bit integer
    omron.icf.gwb  Gateway bit
        Unsigned 8-bit integer
    omron.icf.rb0  Reserved bit 0
        Unsigned 8-bit integer
    omron.icf.rb1  Reserved bit 1
        Unsigned 8-bit integer
    omron.icf.rb2  Reserved bit 2
        Unsigned 8-bit integer
    omron.icf.rb3  Reserved bit 3
        Unsigned 8-bit integer
    omron.icf.rb4  Reserved bit 4
        Unsigned 8-bit integer
    omron.icf.rsb  Response setting bit
        Unsigned 8-bit integer
    omron.intelligent_id_no  Intelligent ID no.
        Unsigned 16-bit integer
    omron.master_node_number  Master node number
        Unsigned 8-bit integer
    omron.max_cycle_time  Max. cycle time
        Unsigned 32-bit integer
    omron.max_no_of_stored_records  Max. no. of stored records
        Unsigned 16-bit integer
    omron.memory.address  Beginning address
        Unsigned 16-bit integer
    omron.memory.address.bits  Beginning address bits
        Unsigned 8-bit integer
    omron.memory.area.read  Memory Area Code
        Unsigned 8-bit integer
    omron.memory.numitems  Number of items
        Unsigned 16-bit integer
    omron.message  Message
        Unsigned 16-bit integer
    omron.message.no_0  Message no. 0
        Boolean
    omron.message.no_1  Message no. 1
        Boolean
    omron.message.no_2  Message no. 2
        Boolean
    omron.message.no_3  Message no. 3
        Boolean
    omron.message.no_4  Message no. 4
        Boolean
    omron.message.no_5  Message no. 5
        Boolean
    omron.message.no_6  Message no. 6
        Boolean
    omron.message.no_7  Message no. 7
        Boolean
    omron.message.rv_0  Reserved
        Boolean
    omron.message.rv_1  Reserved
        Boolean
    omron.message.rv_2  Reserved
        Boolean
    omron.message.rv_3  Reserved
        Boolean
    omron.message.rv_4  Reserved
        Boolean
    omron.message.rv_5  Reserved
        Boolean
    omron.message.rv_6  Reserved
        Boolean
    omron.message.rv_7  Reserved
        Boolean
    omron.min_cycle_time  Min cycle time
        Unsigned 32-bit integer
    omron.minute  Minute
        Unsigned 8-bit integer
    omron.mode_code  Mode Code
        Unsigned 8-bit integer
    omron.mode_code_default_monitor  Mode Code (Default Monitor)
        No value
    omron.model_number  Model Number
        String
    omron.month  Month
        Unsigned 8-bit integer
    omron.name_data  Name data
        String
    omron.network_address  Network address
        Unsigned 8-bit integer
    omron.no_of_files  No. of files
        Unsigned 16-bit integer
    omron.no_of_link_nodes  No. of link nodes
        Unsigned 8-bit integer
    omron.no_of_records  No. of records
        Unsigned 16-bit integer
    omron.no_stored_records  No. of stored records
        Unsigned 16-bit integer
    omron.node_error_count  Node error count
        Unsigned 8-bit integer
    omron.node_number  Node number
        Unsigned 8-bit integer
    omron.node_number.high.exit_status  Exit status
        Boolean
    omron.node_number.high.network  Network
        Boolean
    omron.node_number.high.polling_Status  Polling
        Boolean
    omron.node_number.high.rv  Reserved
        Boolean
    omron.node_number.low.exit_status  Exit status
        Boolean
    omron.node_number.low.network  Network
        Boolean
    omron.node_number.low.polling_Status  Polling
        Boolean
    omron.node_number.low.rv  Reserved
        Boolean
    omron.non_fatal.batter_error  Battery error
        Unsigned 16-bit integer
    omron.non_fatal.cpu_bus_unit_error  CPU Bus Unit error
        Unsigned 16-bit integer
    omron.non_fatal.cpu_bus_unit_setting_error  CPU Bus Unit setting error
        Unsigned 16-bit integer
    omron.non_fatal.fal_error  FAL error
        Unsigned 16-bit integer
    omron.non_fatal.indirect_dm_error  Indirect DM error
        Unsigned 16-bit integer
    omron.non_fatal.io_verification_error  I/O verfication error
        Unsigned 16-bit integer
    omron.non_fatal.jmp_error  JMP error
        Unsigned 16-bit integer
    omron.non_fatal.power_interruption  Momentary power interruption
        Unsigned 16-bit integer
    omron.non_fatal.rv1  Reserved
        Unsigned 16-bit integer
    omron.non_fatal.rv2  Reserved
        Unsigned 16-bit integer
    omron.non_fatal.rv3  Reserved
        Unsigned 16-bit integer
    omron.non_fatal.rv4  Reserved
        Unsigned 16-bit integer
    omron.non_fatal.rv5  Reserved
        Unsigned 16-bit integer
    omron.non_fatal.sfc_error  Non-fatal SFC error v
        Unsigned 16-bit integer
    omron.non_fatal.sysmac_bus2_error  SYSMAC BUS/2 error
        Unsigned 16-bit integer
    omron.non_fatal.sysmac_bus_error  SYSMAC BUS error
        Unsigned 16-bit integer
    omron.num_blocks  Number of blocks
        Unsigned 8-bit integer
    omron.num_blocks_remaining  Number of blocks remaining
        Unsigned 16-bit integer
    omron.num_receptions  Number of receptions
        Unsigned 16-bit integer
    omron.num_unit_uint16  Number of units
        Unsigned 16-bit integer
    omron.number_of_bits_flags  No. of bits/flags
        Unsigned 16-bit integer
    omron.number_of_bytes  Number of bytes
        Unsigned 32-bit integer
    omron.numwords  No. words or Bytes
        Unsigned 16-bit integer
    omron.parameter  Parameter
        Unsigned 8-bit integer
    omron.parameter_area_code  Parameter area code
        Unsigned 16-bit integer
    omron.password  Password
        String
    omron.pc_status  PC status
        Unsigned 8-bit integer
    omron.pc_status.hi  With built-in host interface
        Unsigned 8-bit integer
    omron.pc_status.pdc  Peripheral Device connected
        Boolean
    omron.pc_status.r1  Reserved 1
        Unsigned 8-bit integer
    omron.pc_status.r2  Reserved 2
        Unsigned 8-bit integer
    omron.pcp_status.rack_num  Rack Number
        Unsigned 8-bit integer
    omron.polling_unit_node_num  Current polling unit node number
        Unsigned 8-bit integer
    omron.program_number  Program number
        Unsigned 16-bit integer
    omron.protect_code  Protect code
        Unsigned 8-bit integer
    omron.read_length  Read length
        Unsigned 16-bit integer
    omron.read_message  Message
        String
    omron.remote_io_date.sysmac_1  No. of SYSMAC BUS/2 Masters mounted
        Unsigned 8-bit integer
    omron.remote_io_date.sysmac_2  No. of SYSMAC BUS Masters mounted
        Unsigned 8-bit integer
    omron.response.code  Response code
        Unsigned 16-bit integer
    omron.response.data  Response data
        Byte array
    omron.rsv  Reserved
        Unsigned 8-bit integer
    omron.sa1  Source node number
        Unsigned 8-bit integer
    omron.sa2  Source unit address
        Unsigned 8-bit integer
    omron.second  Second
        Unsigned 8-bit integer
    omron.set_reset_specification  Set/Reset Specification
        Unsigned 16-bit integer
    omron.sid  Service ID
        Unsigned 8-bit integer
    omron.sna  Source network address
        Unsigned 8-bit integer
    omron.status  Status
        Unsigned 8-bit integer
    omron.status.node.0  Node 0
        Boolean
    omron.status.node.1  Node 1
        Boolean
    omron.status.node.10  Node 0
        Boolean
    omron.status.node.11  Node 1
        Boolean
    omron.status.node.12  Node 2
        Boolean
    omron.status.node.13  Node 3
        Boolean
    omron.status.node.14  Node 4
        Boolean
    omron.status.node.15  Node 5
        Boolean
    omron.status.node.16  Node 6
        Boolean
    omron.status.node.17  Node 7
        Boolean
    omron.status.node.2  Node 2
        Boolean
    omron.status.node.20  Node 0
        Boolean
    omron.status.node.21  Node 1
        Boolean
    omron.status.node.22  Node 2
        Boolean
    omron.status.node.23  Node 3
        Boolean
    omron.status.node.24  Node 4
        Boolean
    omron.status.node.25  Node 5
        Boolean
    omron.status.node.26  Node 6
        Boolean
    omron.status.node.27  Node 7
        Boolean
    omron.status.node.3  Node 3
        Boolean
    omron.status.node.4  Node 4
        Boolean
    omron.status.node.5  Node 5
        Boolean
    omron.status.node.6  Node 6
        Boolean
    omron.status.node.7  Node 7
        Boolean
    omron.status_flags  Status flags
        Unsigned 8-bit integer
    omron.status_flags.data_link  Status Data link
        Boolean
    omron.status_flags.slave_master  Status Type
        Boolean
    omron.system.use  For system use
        String
    omron.total_num_blocks  Total number of blocks
        Unsigned 16-bit integer
    omron.transfer_beginning_address  Beginning address
        Unsigned 24-bit integer
    omron.transfer_parameter_code  Parameter code
        Unsigned 16-bit integer
    omron.type  Type
        Unsigned 8-bit integer
    omron.unit_address  Unit address
        Unsigned 8-bit integer
    omron.unit_nums  No. of Units
        Unsigned 8-bit integer
    omron.volume_parameter_code  Volume parameter code
        Unsigned 16-bit integer
    omron.word  Beginning word
        Unsigned 16-bit integer
    omron.word.begin  Beginning word
        Unsigned 32-bit integer
    omron.word.last  Last word
        Unsigned 32-bit integer
    omron.year  Year
        Unsigned 8-bit integer

OSI (osi)

Online Certificate Status Protocol (ocsp)

    ocsp.AcceptableResponses  AcceptableResponses
        Unsigned 32-bit integer
    ocsp.AcceptableResponses_item  AcceptableResponses item
        Object Identifier
        OBJECT_IDENTIFIER
    ocsp.ArchiveCutoff  ArchiveCutoff
        String
    ocsp.BasicOCSPResponse  BasicOCSPResponse
        No value
    ocsp.Certificate  Certificate
        No value
    ocsp.CrlID  CrlID
        No value
    ocsp.NULL  NULL
        No value
    ocsp.Request  Request
        No value
    ocsp.ServiceLocator  ServiceLocator
        No value
    ocsp.SingleResponse  SingleResponse
        No value
    ocsp.byKey  byKey
        Byte array
        KeyHash
    ocsp.byName  byName
        Unsigned 32-bit integer
        Name
    ocsp.certID  certID
        No value
    ocsp.certStatus  certStatus
        Unsigned 32-bit integer
    ocsp.certs  certs
        Unsigned 32-bit integer
        SEQUENCE_OF_Certificate
    ocsp.crlNum  crlNum
        Signed 32-bit integer
        INTEGER
    ocsp.crlTime  crlTime
        String
        GeneralizedTime
    ocsp.crlUrl  crlUrl
        String
        IA5String
    ocsp.good  good
        No value
    ocsp.hashAlgorithm  hashAlgorithm
        No value
        AlgorithmIdentifier
    ocsp.issuer  issuer
        Unsigned 32-bit integer
        Name
    ocsp.issuerKeyHash  issuerKeyHash
        Byte array
        OCTET_STRING
    ocsp.issuerNameHash  issuerNameHash
        Byte array
        OCTET_STRING
    ocsp.locator  locator
        Unsigned 32-bit integer
        AuthorityInfoAccessSyntax
    ocsp.nextUpdate  nextUpdate
        String
        GeneralizedTime
    ocsp.optionalSignature  optionalSignature
        No value
        Signature
    ocsp.producedAt  producedAt
        String
        GeneralizedTime
    ocsp.reqCert  reqCert
        No value
        CertID
    ocsp.requestExtensions  requestExtensions
        Unsigned 32-bit integer
        Extensions
    ocsp.requestList  requestList
        Unsigned 32-bit integer
        SEQUENCE_OF_Request
    ocsp.requestorName  requestorName
        Unsigned 32-bit integer
        GeneralName
    ocsp.responderID  responderID
        Unsigned 32-bit integer
    ocsp.response  response
        Byte array
    ocsp.responseBytes  responseBytes
        No value
    ocsp.responseExtensions  responseExtensions
        Unsigned 32-bit integer
        Extensions
    ocsp.responseStatus  responseStatus
        Unsigned 32-bit integer
        OCSPResponseStatus
    ocsp.responseType  responseType
        Object Identifier
    ocsp.responses  responses
        Unsigned 32-bit integer
        SEQUENCE_OF_SingleResponse
    ocsp.revocationReason  revocationReason
        Unsigned 32-bit integer
        CRLReason
    ocsp.revocationTime  revocationTime
        String
        GeneralizedTime
    ocsp.revoked  revoked
        No value
        RevokedInfo
    ocsp.serialNumber  serialNumber
        Signed 32-bit integer
        CertificateSerialNumber
    ocsp.signature  signature
        Byte array
        BIT_STRING
    ocsp.signatureAlgorithm  signatureAlgorithm
        No value
        AlgorithmIdentifier
    ocsp.singleExtensions  singleExtensions
        Unsigned 32-bit integer
        Extensions
    ocsp.singleRequestExtensions  singleRequestExtensions
        Unsigned 32-bit integer
        Extensions
    ocsp.tbsRequest  tbsRequest
        No value
    ocsp.tbsResponseData  tbsResponseData
        No value
        ResponseData
    ocsp.thisUpdate  thisUpdate
        String
        GeneralizedTime
    ocsp.unknown  unknown
        No value
        UnknownInfo
    ocsp.version  version
        Signed 32-bit integer
    x509af.responseType.id  ResponseType Id
        String

OpcUa Binary Protocol (opcua)

    application.nodeid.encodingmask  NodeId EncodingMask
        Unsigned 8-bit integer
    application.nodeid.nsid  NodeId EncodingMask
        Unsigned 8-bit integer
    application.nodeid.numeric  NodeId Identifier Numeric
        Unsigned 32-bit integer
    opcua.AccessLevel  AccessLevel
        Unsigned 8-bit integer
    opcua.ActualSessionTimeout  ActualSessionTimeout
        Double-precision floating point
    opcua.AddResults  AddResults
        Unsigned 32-bit integer
    opcua.AdditionalInfo  AdditionalInfo
        String
    opcua.Algorithm  Algorithm
        String
    opcua.Alias  Alias
        String
    opcua.AnnotationTime  AnnotationTime
        Date/Time stamp
    opcua.ApplicationType  ApplicationType
        Unsigned 32-bit integer
    opcua.ApplicationUri  ApplicationUri
        String
    opcua.ArrayDimensions  ArrayDimensions
        Unsigned 32-bit integer
    opcua.ArraySize  ArraySize
        Signed 32-bit integer
    opcua.AttributeId  AttributeId
        Unsigned 32-bit integer
    opcua.AttributeWriteMask  AttributeWriteMask
        Unsigned 32-bit integer
    opcua.AuditEntryId  AuditEntryId
        String
    opcua.AuthenticationMechanism  AuthenticationMechanism
        String
    opcua.AvailableSequenceNumbers  AvailableSequenceNumbers
        Unsigned 32-bit integer
    opcua.Boolean  Boolean
        Boolean
    opcua.Booleans  Booleans
        Boolean
    opcua.BrowseDirection  BrowseDirection
        Unsigned 32-bit integer
    opcua.BrowseResultMask  BrowseResultMask
        Unsigned 32-bit integer
    opcua.BuildDate  BuildDate
        Date/Time stamp
    opcua.BuildNumber  BuildNumber
        String
    opcua.Byte  Byte
        Unsigned 8-bit integer
    opcua.ByteString  ByteString
        Byte array
    opcua.ByteStrings  ByteStrings
        Byte array
    opcua.CancelCount  CancelCount
        Unsigned 32-bit integer
    opcua.CertificateData  CertificateData
        Byte array
    opcua.ChannelId  ChannelId
        Unsigned 32-bit integer
    opcua.ChannelLifetime  ChannelLifetime
        Signed 32-bit integer
    opcua.ClientCertificate  ClientCertificate
        Byte array
    opcua.ClientConnectionTime  ClientConnectionTime
        Date/Time stamp
    opcua.ClientHandle  ClientHandle
        Unsigned 32-bit integer
    opcua.ClientLastContactTime  ClientLastContactTime
        Date/Time stamp
    opcua.ClientNonce  ClientNonce
        Byte array
    opcua.ClientProtocolVersion  ClientProtocolVersion
        Unsigned 32-bit integer
    opcua.ClientUserIdHistory  ClientUserIdHistory
        String
    opcua.ClientUserIdOfSession  ClientUserIdOfSession
        String
    opcua.ComplianceDate  ComplianceDate
        Date/Time stamp
    opcua.ComplianceLevel  ComplianceLevel
        Unsigned 32-bit integer
    opcua.ComplianceTool  ComplianceTool
        String
    opcua.ContainsNoLoops  ContainsNoLoops
        Boolean
    opcua.ContinuationPoint  ContinuationPoint
        Byte array
    opcua.ContinuationPoints  ContinuationPoints
        Byte array
    opcua.CreateClientName  CreateClientName
        String
    opcua.CreatedAt  CreatedAt
        Date/Time stamp
    opcua.CumulatedSessionCount  CumulatedSessionCount
        Unsigned 32-bit integer
    opcua.CumulatedSubscriptionCount  CumulatedSubscriptionCount
        Unsigned 32-bit integer
    opcua.CurrentKeepAliveCount  CurrentKeepAliveCount
        Unsigned 32-bit integer
    opcua.CurrentLifetimeCount  CurrentLifetimeCount
        Unsigned 32-bit integer
    opcua.CurrentMonitoredItemsCount  CurrentMonitoredItemsCount
        Unsigned 32-bit integer
    opcua.CurrentPublishRequestsInQueue  CurrentPublishRequestsInQueue
        Unsigned 32-bit integer
    opcua.CurrentSessionCount  CurrentSessionCount
        Unsigned 32-bit integer
    opcua.CurrentSubscriptionCount  CurrentSubscriptionCount
        Unsigned 32-bit integer
    opcua.CurrentSubscriptionsCount  CurrentSubscriptionsCount
        Unsigned 32-bit integer
    opcua.CurrentTime  CurrentTime
        Date/Time stamp
    opcua.DataChangeNotificationsCount  DataChangeNotificationsCount
        Unsigned 32-bit integer
    opcua.DataChangeTrigger  DataChangeTrigger
        Unsigned 32-bit integer
    opcua.DataStatusCodes  DataStatusCodes
        Unsigned 32-bit integer
    opcua.DateTime  DateTime
        Date/Time stamp
    opcua.DateTimes  DateTimes
        Date/Time stamp
    opcua.DaylightSavingInOffset  DaylightSavingInOffset
        Boolean
    opcua.DeadbandType  DeadbandType
        Unsigned 32-bit integer
    opcua.DeadbandValue  DeadbandValue
        Double-precision floating point
    opcua.DeleteBidirectional  DeleteBidirectional
        Boolean
    opcua.DeleteSubscriptions  DeleteSubscriptions
        Boolean
    opcua.DeleteTargetReferences  DeleteTargetReferences
        Boolean
    opcua.DialogConditionChoice  DialogConditionChoice
        Unsigned 32-bit integer
    opcua.DisableCount  DisableCount
        Unsigned 32-bit integer
    opcua.DisabledMonitoredItemCount  DisabledMonitoredItemCount
        Unsigned 32-bit integer
    opcua.DiscardOldest  DiscardOldest
        Boolean
    opcua.DiscardedMessageCount  DiscardedMessageCount
        Unsigned 32-bit integer
    opcua.DiscoveryProfileUri  DiscoveryProfileUri
        String
    opcua.DiscoveryUrls  DiscoveryUrls
        String
    opcua.Double  Double
        Double-precision floating point
    opcua.Doubles  Doubles
        Double-precision floating point
    opcua.EnableCount  EnableCount
        Unsigned 32-bit integer
    opcua.Encoding  Encoding
        String
    opcua.EncryptionAlgorithm  EncryptionAlgorithm
        String
    opcua.EndTime  EndTime
        Date/Time stamp
    opcua.EndpointUrl  EndpointUrl
        String
    opcua.EnumeratedTestType  EnumeratedTestType
        Unsigned 32-bit integer
    opcua.ErrorCount  ErrorCount
        Unsigned 32-bit integer
    opcua.EventIds  EventIds
        Byte array
    opcua.EventNotificationsCount  EventNotificationsCount
        Unsigned 32-bit integer
    opcua.EventNotifier  EventNotifier
        Unsigned 8-bit integer
    opcua.EventQueueOverFlowCount  EventQueueOverFlowCount
        Unsigned 32-bit integer
    opcua.ExceptionDeviationFormat  ExceptionDeviationFormat
        Unsigned 32-bit integer
    opcua.Executable  Executable
        Boolean
    opcua.FilterOperator  FilterOperator
        Unsigned 32-bit integer
    opcua.Float  Float
        Single-precision floating point
    opcua.Floats  Floats
        Single-precision floating point
    opcua.GatewayServerUri  GatewayServerUri
        String
    opcua.Guid  Guid
        Globally Unique Identifier
    opcua.Guids  Guids
        Globally Unique Identifier
    opcua.High  High
        Double-precision floating point
    opcua.Historizing  Historizing
        Boolean
    opcua.HistoryUpdateMode  HistoryUpdateMode
        Unsigned 32-bit integer
    opcua.Id  Id
        Unsigned 16-bit integer
    opcua.IdType  IdType
        Unsigned 32-bit integer
    opcua.IncludeSubTypes  IncludeSubTypes
        Boolean
    opcua.IncludeSubtypes  IncludeSubtypes
        Boolean
    opcua.Index  Index
        Unsigned 32-bit integer
    opcua.IndexRange  IndexRange
        String
    opcua.InnerStatusCode  InnerStatusCode
        Unsigned 32-bit integer
    opcua.InputArgumentResults  InputArgumentResults
        Unsigned 32-bit integer
    opcua.Int16  Int16
        Signed 16-bit integer
    opcua.Int16s  Int16s
        Signed 16-bit integer
    opcua.Int32  Int32
        Signed 32-bit integer
    opcua.Int32s  Int32s
        Signed 32-bit integer
    opcua.Int64  Int64
        Signed 64-bit integer
    opcua.Int64s  Int64s
        Signed 64-bit integer
    opcua.InvocationCreationTime  InvocationCreationTime
        Date/Time stamp
    opcua.IsAbstract  IsAbstract
        Boolean
    opcua.IsDeleteModified  IsDeleteModified
        Boolean
    opcua.IsForward  IsForward
        Boolean
    opcua.IsInverse  IsInverse
        Boolean
    opcua.IsOnline  IsOnline
        Boolean
    opcua.IsReadModified  IsReadModified
        Boolean
    opcua.IssueDate  IssueDate
        Date/Time stamp
    opcua.IssuedBy  IssuedBy
        String
    opcua.IssuedTokenType  IssuedTokenType
        String
    opcua.IssuerEndpointUrl  IssuerEndpointUrl
        String
    opcua.Iteration  Iteration
        Signed 32-bit integer
    opcua.LastMethodCall  LastMethodCall
        String
    opcua.LastMethodCallTime  LastMethodCallTime
        Date/Time stamp
    opcua.LastTransitionTime  LastTransitionTime
        Date/Time stamp
    opcua.LatePublishRequestCount  LatePublishRequestCount
        Unsigned 32-bit integer
    opcua.LinksToAdd  LinksToAdd
        Unsigned 32-bit integer
    opcua.LinksToRemove  LinksToRemove
        Unsigned 32-bit integer
    opcua.Locale  Locale
        String
    opcua.LocaleIds  LocaleIds
        String
    opcua.LocaliezdText  LocaliezdText
        Signed 32-bit integer
    opcua.Low  Low
        Double-precision floating point
    opcua.ManufacturerName  ManufacturerName
        String
    opcua.MaxAge  MaxAge
        Double-precision floating point
    opcua.MaxArrayLength  MaxArrayLength
        Signed 32-bit integer
    opcua.MaxBufferSize  MaxBufferSize
        Signed 32-bit integer
    opcua.MaxByteStringLength  MaxByteStringLength
        Signed 32-bit integer
    opcua.MaxDataSetsToReturn  MaxDataSetsToReturn
        Unsigned 32-bit integer
    opcua.MaxKeepAliveCount  MaxKeepAliveCount
        Unsigned 32-bit integer
    opcua.MaxLifetimeCount  MaxLifetimeCount
        Unsigned 32-bit integer
    opcua.MaxMessageSize  MaxMessageSize
        Signed 32-bit integer
    opcua.MaxMonitoredItemCount  MaxMonitoredItemCount
        Unsigned 32-bit integer
    opcua.MaxNotificationsPerPublish  MaxNotificationsPerPublish
        Unsigned 32-bit integer
    opcua.MaxReferencesToReturn  MaxReferencesToReturn
        Unsigned 32-bit integer
    opcua.MaxRequestMessageSize  MaxRequestMessageSize
        Unsigned 32-bit integer
    opcua.MaxResponseMessageSize  MaxResponseMessageSize
        Unsigned 32-bit integer
    opcua.MaxStringLength  MaxStringLength
        Signed 32-bit integer
    opcua.Message  Message
        String
    opcua.MessageSecurityMode  MessageSecurityMode
        Unsigned 32-bit integer
    opcua.MinimumSamplingInterval  MinimumSamplingInterval
        Double-precision floating point
    opcua.ModelChangeStructureVerbMask  ModelChangeStructureVerbMask
        Unsigned 32-bit integer
    opcua.ModifyCount  ModifyCount
        Unsigned 32-bit integer
    opcua.MonitoredItemCount  MonitoredItemCount
        Unsigned 32-bit integer
    opcua.MonitoredItemId  MonitoredItemId
        Unsigned 32-bit integer
    opcua.MonitoredItemIds  MonitoredItemIds
        Unsigned 32-bit integer
    opcua.MonitoringMode  MonitoringMode
        Unsigned 32-bit integer
    opcua.MonitoringQueueOverflowCount  MonitoringQueueOverflowCount
        Unsigned 32-bit integer
    opcua.MoreNotifications  MoreNotifications
        Boolean
    opcua.Name  Name
        String
    opcua.Namespace  Namespace
        Signed 32-bit integer
    opcua.NamespaceUri  NamespaceUri
        String
    opcua.NextSequenceNumber  NextSequenceNumber
        Unsigned 32-bit integer
    opcua.NoOfAddDiagnosticInfos  NoOfAddDiagnosticInfos
        Signed 32-bit integer
    opcua.NoOfAddResults  NoOfAddResults
        Signed 32-bit integer
    opcua.NoOfAggregateType  NoOfAggregateType
        Signed 32-bit integer
    opcua.NoOfArrayDimensions  NoOfArrayDimensions
        Signed 32-bit integer
    opcua.NoOfAvailableSequenceNumbers  NoOfAvailableSequenceNumbers
        Signed 32-bit integer
    opcua.NoOfBooleans  NoOfBooleans
        Signed 32-bit integer
    opcua.NoOfBrowsePath  NoOfBrowsePath
        Signed 32-bit integer
    opcua.NoOfBrowsePaths  NoOfBrowsePaths
        Signed 32-bit integer
    opcua.NoOfByteStrings  NoOfByteStrings
        Signed 32-bit integer
    opcua.NoOfClientSoftwareCertificates  NoOfClientSoftwareCertificates
        Signed 32-bit integer
    opcua.NoOfClientUserIdHistory  NoOfClientUserIdHistory
        Signed 32-bit integer
    opcua.NoOfContinuationPoints  NoOfContinuationPoints
        Signed 32-bit integer
    opcua.NoOfDataDiagnosticInfos  NoOfDataDiagnosticInfos
        Signed 32-bit integer
    opcua.NoOfDataStatusCodes  NoOfDataStatusCodes
        Signed 32-bit integer
    opcua.NoOfDataToReturn  NoOfDataToReturn
        Signed 32-bit integer
    opcua.NoOfDataValues  NoOfDataValues
        Signed 32-bit integer
    opcua.NoOfDateTimes  NoOfDateTimes
        Signed 32-bit integer
    opcua.NoOfDiagnosticInfos  NoOfDiagnosticInfos
        Signed 32-bit integer
    opcua.NoOfDiscoveryUrls  NoOfDiscoveryUrls
        Signed 32-bit integer
    opcua.NoOfDoubles  NoOfDoubles
        Signed 32-bit integer
    opcua.NoOfElementDiagnosticInfos  NoOfElementDiagnosticInfos
        Signed 32-bit integer
    opcua.NoOfElementResults  NoOfElementResults
        Signed 32-bit integer
    opcua.NoOfElements  NoOfElements
        Signed 32-bit integer
    opcua.NoOfEndpoints  NoOfEndpoints
        Signed 32-bit integer
    opcua.NoOfEnumeratedValues  NoOfEnumeratedValues
        Signed 32-bit integer
    opcua.NoOfEventData  NoOfEventData
        Signed 32-bit integer
    opcua.NoOfEventFields  NoOfEventFields
        Signed 32-bit integer
    opcua.NoOfEvents  NoOfEvents
        Signed 32-bit integer
    opcua.NoOfExpandedNodeIds  NoOfExpandedNodeIds
        Signed 32-bit integer
    opcua.NoOfExtensionObjects  NoOfExtensionObjects
        Signed 32-bit integer
    opcua.NoOfFilterOperands  NoOfFilterOperands
        Signed 32-bit integer
    opcua.NoOfFloats  NoOfFloats
        Signed 32-bit integer
    opcua.NoOfGuids  NoOfGuids
        Signed 32-bit integer
    opcua.NoOfHistoryUpdateDetails  NoOfHistoryUpdateDetails
        Signed 32-bit integer
    opcua.NoOfInputArgumentDiagnosticInfos  NoOfInputArgumentDiagnosticInfos
        Signed 32-bit integer
    opcua.NoOfInputArgumentResults  NoOfInputArgumentResults
        Signed 32-bit integer
    opcua.NoOfInputArguments  NoOfInputArguments
        Signed 32-bit integer
    opcua.NoOfInt16s  NoOfInt16s
        Signed 32-bit integer
    opcua.NoOfInt32s  NoOfInt32s
        Signed 32-bit integer
    opcua.NoOfInt64s  NoOfInt64s
        Signed 32-bit integer
    opcua.NoOfItemsToCreate  NoOfItemsToCreate
        Signed 32-bit integer
    opcua.NoOfItemsToModify  NoOfItemsToModify
        Signed 32-bit integer
    opcua.NoOfLastMethodInputArguments  NoOfLastMethodInputArguments
        Signed 32-bit integer
    opcua.NoOfLastMethodOutputArguments  NoOfLastMethodOutputArguments
        Signed 32-bit integer
    opcua.NoOfLinksToAdd  NoOfLinksToAdd
        Signed 32-bit integer
    opcua.NoOfLinksToRemove  NoOfLinksToRemove
        Signed 32-bit integer
    opcua.NoOfLocaleIds  NoOfLocaleIds
        Signed 32-bit integer
    opcua.NoOfLocalizedTexts  NoOfLocalizedTexts
        Signed 32-bit integer
    opcua.NoOfMethodsToCall  NoOfMethodsToCall
        Signed 32-bit integer
    opcua.NoOfMonitoredItemIds  NoOfMonitoredItemIds
        Signed 32-bit integer
    opcua.NoOfMonitoredItems  NoOfMonitoredItems
        Signed 32-bit integer
    opcua.NoOfNodeIds  NoOfNodeIds
        Signed 32-bit integer
    opcua.NoOfNodeTypes  NoOfNodeTypes
        Signed 32-bit integer
    opcua.NoOfNodesToAdd  NoOfNodesToAdd
        Signed 32-bit integer
    opcua.NoOfNodesToBrowse  NoOfNodesToBrowse
        Signed 32-bit integer
    opcua.NoOfNodesToDelete  NoOfNodesToDelete
        Signed 32-bit integer
    opcua.NoOfNodesToRead  NoOfNodesToRead
        Signed 32-bit integer
    opcua.NoOfNodesToRegister  NoOfNodesToRegister
        Signed 32-bit integer
    opcua.NoOfNodesToUnregister  NoOfNodesToUnregister
        Signed 32-bit integer
    opcua.NoOfNodesToWrite  NoOfNodesToWrite
        Signed 32-bit integer
    opcua.NoOfNotificationData  NoOfNotificationData
        Signed 32-bit integer
    opcua.NoOfOperandDiagnosticInfos  NoOfOperandDiagnosticInfos
        Signed 32-bit integer
    opcua.NoOfOperandStatusCodes  NoOfOperandStatusCodes
        Signed 32-bit integer
    opcua.NoOfOperationResults  NoOfOperationResults
        Signed 32-bit integer
    opcua.NoOfOutputArguments  NoOfOutputArguments
        Signed 32-bit integer
    opcua.NoOfParsingResults  NoOfParsingResults
        Signed 32-bit integer
    opcua.NoOfProfileUris  NoOfProfileUris
        Signed 32-bit integer
    opcua.NoOfQualifiedNames  NoOfQualifiedNames
        Signed 32-bit integer
    opcua.NoOfQueryDataSets  NoOfQueryDataSets
        Signed 32-bit integer
    opcua.NoOfReferencedNodeIds  NoOfReferencedNodeIds
        Signed 32-bit integer
    opcua.NoOfReferences  NoOfReferences
        Signed 32-bit integer
    opcua.NoOfReferencesToAdd  NoOfReferencesToAdd
        Signed 32-bit integer
    opcua.NoOfReferencesToDelete  NoOfReferencesToDelete
        Signed 32-bit integer
    opcua.NoOfRegisteredNodeIds  NoOfRegisteredNodeIds
        Signed 32-bit integer
    opcua.NoOfRemoveDiagnosticInfos  NoOfRemoveDiagnosticInfos
        Signed 32-bit integer
    opcua.NoOfRemoveResults  NoOfRemoveResults
        Signed 32-bit integer
    opcua.NoOfReqTimes  NoOfReqTimes
        Signed 32-bit integer
    opcua.NoOfResults  NoOfResults
        Signed 32-bit integer
    opcua.NoOfSBytes  NoOfSBytes
        Signed 32-bit integer
    opcua.NoOfSelectClause  NoOfSelectClause
        Signed 32-bit integer
    opcua.NoOfSelectClauseDiagnosticInfos  NoOfSelectClauseDiagnosticInfos
        Signed 32-bit integer
    opcua.NoOfSelectClauseResults  NoOfSelectClauseResults
        Signed 32-bit integer
    opcua.NoOfSelectClauses  NoOfSelectClauses
        Signed 32-bit integer
    opcua.NoOfServerEndpoints  NoOfServerEndpoints
        Signed 32-bit integer
    opcua.NoOfServerNames  NoOfServerNames
        Signed 32-bit integer
    opcua.NoOfServerSoftwareCertificates  NoOfServerSoftwareCertificates
        Signed 32-bit integer
    opcua.NoOfServerUris  NoOfServerUris
        Signed 32-bit integer
    opcua.NoOfServers  NoOfServers
        Signed 32-bit integer
    opcua.NoOfStatusCodes  NoOfStatusCodes
        Signed 32-bit integer
    opcua.NoOfStringTable  NoOfStringTable
        Signed 32-bit integer
    opcua.NoOfStrings  NoOfStrings
        Signed 32-bit integer
    opcua.NoOfSubscriptionAcknowledgements  NoOfSubscriptionAcknowledgements
        Signed 32-bit integer
    opcua.NoOfSubscriptionIds  NoOfSubscriptionIds
        Signed 32-bit integer
    opcua.NoOfSupportedProfiles  NoOfSupportedProfiles
        Signed 32-bit integer
    opcua.NoOfTargets  NoOfTargets
        Signed 32-bit integer
    opcua.NoOfUInt16s  NoOfUInt16s
        Signed 32-bit integer
    opcua.NoOfUInt32s  NoOfUInt32s
        Signed 32-bit integer
    opcua.NoOfUInt64s  NoOfUInt64s
        Signed 32-bit integer
    opcua.NoOfUnsupportedUnitIds  NoOfUnsupportedUnitIds
        Signed 32-bit integer
    opcua.NoOfUserIdentityTokens  NoOfUserIdentityTokens
        Signed 32-bit integer
    opcua.NoOfValues  NoOfValues
        Signed 32-bit integer
    opcua.NoOfVariants  NoOfVariants
        Signed 32-bit integer
    opcua.NoOfXmlElements  NoOfXmlElements
        Signed 32-bit integer
    opcua.NodeAttributesMask  NodeAttributesMask
        Unsigned 32-bit integer
    opcua.NodeClass  NodeClass
        Unsigned 32-bit integer
    opcua.NodeClassMask  NodeClassMask
        Unsigned 32-bit integer
    opcua.NodeIdType  NodeIdType
        Unsigned 32-bit integer
    opcua.NotificationsCount  NotificationsCount
        Unsigned 32-bit integer
    opcua.NumValuesPerNode  NumValuesPerNode
        Unsigned 32-bit integer
    opcua.Offset  Offset
        Signed 16-bit integer
    opcua.OperandStatusCodes  OperandStatusCodes
        Unsigned 32-bit integer
    opcua.OperationResults  OperationResults
        Unsigned 32-bit integer
    opcua.OperationTimeout  OperationTimeout
        Signed 32-bit integer
    opcua.OrganizationUri  OrganizationUri
        String
    opcua.Password  Password
        Byte array
    opcua.PercentDataBad  PercentDataBad
        Unsigned 8-bit integer
    opcua.PercentDataGood  PercentDataGood
        Unsigned 8-bit integer
    opcua.PolicyId  PolicyId
        String
    opcua.Priority  Priority
        Unsigned 8-bit integer
    opcua.ProcessingInterval  ProcessingInterval
        Double-precision floating point
    opcua.ProductName  ProductName
        String
    opcua.ProductUri  ProductUri
        String
    opcua.ProfileId  ProfileId
        String
    opcua.ProfileUris  ProfileUris
        String
    opcua.PublishRequestCount  PublishRequestCount
        Unsigned 32-bit integer
    opcua.PublishTime  PublishTime
        Date/Time stamp
    opcua.PublishingEnabled  PublishingEnabled
        Boolean
    opcua.PublishingInterval  PublishingInterval
        Double-precision floating point
    opcua.PublishingIntervalCount  PublishingIntervalCount
        Unsigned 32-bit integer
    opcua.QueueSize  QueueSize
        Unsigned 32-bit integer
    opcua.RedundancySupport  RedundancySupport
        Unsigned 32-bit integer
    opcua.RejectedRequestsCount  RejectedRequestsCount
        Unsigned 32-bit integer
    opcua.RejectedSessionCount  RejectedSessionCount
        Unsigned 32-bit integer
    opcua.ReleaseContinuationPoint  ReleaseContinuationPoint
        Boolean
    opcua.ReleaseContinuationPoints  ReleaseContinuationPoints
        Boolean
    opcua.RemainingPathIndex  RemainingPathIndex
        Unsigned 32-bit integer
    opcua.RemoveResults  RemoveResults
        Unsigned 32-bit integer
    opcua.RepublishMessageCount  RepublishMessageCount
        Unsigned 32-bit integer
    opcua.RepublishMessageRequestCount  RepublishMessageRequestCount
        Unsigned 32-bit integer
    opcua.RepublishRequestCount  RepublishRequestCount
        Unsigned 32-bit integer
    opcua.ReqTimes  ReqTimes
        Date/Time stamp
    opcua.RequestHandle  RequestHandle
        Unsigned 32-bit integer
    opcua.RequestedLifetime  RequestedLifetime
        Unsigned 32-bit integer
    opcua.RequestedLifetimeCount  RequestedLifetimeCount
        Unsigned 32-bit integer
    opcua.RequestedMaxKeepAliveCount  RequestedMaxKeepAliveCount
        Unsigned 32-bit integer
    opcua.RequestedMaxReferencesPerNode  RequestedMaxReferencesPerNode
        Unsigned 32-bit integer
    opcua.RequestedPublishingInterval  RequestedPublishingInterval
        Double-precision floating point
    opcua.RequestedSessionTimeout  RequestedSessionTimeout
        Double-precision floating point
    opcua.ResampleInterval  ResampleInterval
        Double-precision floating point
    opcua.ResultMask  ResultMask
        Unsigned 32-bit integer
    opcua.Results  Results
        Unsigned 32-bit integer
    opcua.RetransmitSequenceNumber  RetransmitSequenceNumber
        Unsigned 32-bit integer
    opcua.ReturnBounds  ReturnBounds
        Boolean
    opcua.ReturnDiagnostics  ReturnDiagnostics
        Unsigned 32-bit integer
    opcua.RevisedContinuationPoint  RevisedContinuationPoint
        Byte array
    opcua.RevisedLifetime  RevisedLifetime
        Unsigned 32-bit integer
    opcua.RevisedLifetimeCount  RevisedLifetimeCount
        Unsigned 32-bit integer
    opcua.RevisedMaxKeepAliveCount  RevisedMaxKeepAliveCount
        Unsigned 32-bit integer
    opcua.RevisedProcessingInterval  RevisedProcessingInterval
        Double-precision floating point
    opcua.RevisedPublishingInterval  RevisedPublishingInterval
        Double-precision floating point
    opcua.RevisedQueueSize  RevisedQueueSize
        Unsigned 32-bit integer
    opcua.RevisedSamplingInterval  RevisedSamplingInterval
        Double-precision floating point
    opcua.RevisedSessionTimeout  RevisedSessionTimeout
        Double-precision floating point
    opcua.RevisedStartTime  RevisedStartTime
        Date/Time stamp
    opcua.SByte  SByte
        Signed 8-bit integer
    opcua.SBytes  SBytes
        Signed 8-bit integer
    opcua.SamplingInterval  SamplingInterval
        Double-precision floating point
    opcua.SecondsTillShutdown  SecondsTillShutdown
        Unsigned 32-bit integer
    opcua.SecurityLevel  SecurityLevel
        Unsigned 8-bit integer
    opcua.SecurityPolicyUri  SecurityPolicyUri
        String
    opcua.SecurityRejectedRequestsCount  SecurityRejectedRequestsCount
        Unsigned 32-bit integer
    opcua.SecurityRejectedSessionCount  SecurityRejectedSessionCount
        Unsigned 32-bit integer
    opcua.SecurityTokenLifetime  SecurityTokenLifetime
        Signed 32-bit integer
    opcua.SecurityTokenRequestType  SecurityTokenRequestType
        Unsigned 32-bit integer
    opcua.SelectClauseResults  SelectClauseResults
        Unsigned 32-bit integer
    opcua.SemaphoreFilePath  SemaphoreFilePath
        String
    opcua.SendInitialValues  SendInitialValues
        Boolean
    opcua.SequenceNumber  SequenceNumber
        Unsigned 32-bit integer
    opcua.ServerCertificate  ServerCertificate
        Byte array
    opcua.ServerId  ServerId
        String
    opcua.ServerIndex  ServerIndex
        Unsigned 32-bit integer
    opcua.ServerNonce  ServerNonce
        Byte array
    opcua.ServerPicoseconds  ServerPicoseconds
        Unsigned 16-bit integer
    opcua.ServerProtocolVersion  ServerProtocolVersion
        Unsigned 32-bit integer
    opcua.ServerState  ServerState
        Unsigned 32-bit integer
    opcua.ServerTimestamp  ServerTimestamp
        Date/Time stamp
    opcua.ServerUri  ServerUri
        String
    opcua.ServerUris  ServerUris
        String
    opcua.ServerViewCount  ServerViewCount
        Unsigned 32-bit integer
    opcua.ServiceLevel  ServiceLevel
        Unsigned 8-bit integer
    opcua.ServiceResult  ServiceResult
        Unsigned 32-bit integer
    opcua.SessionAbortCount  SessionAbortCount
        Unsigned 32-bit integer
    opcua.SessionName  SessionName
        String
    opcua.SessionTimeoutCount  SessionTimeoutCount
        Unsigned 32-bit integer
    opcua.Signature  Signature
        Byte array
    opcua.SoftwareVersion  SoftwareVersion
        String
    opcua.SourcePicoseconds  SourcePicoseconds
        Unsigned 16-bit integer
    opcua.SourceTimestamp  SourceTimestamp
        Date/Time stamp
    opcua.SpecifiedAttributes  SpecifiedAttributes
        Unsigned 32-bit integer
    opcua.StartTime  StartTime
        Date/Time stamp
    opcua.Status  Status
        Unsigned 32-bit integer
    opcua.StatusCode  StatusCode
        Unsigned 32-bit integer
    opcua.StatusCodes  StatusCodes
        Unsigned 32-bit integer
    opcua.SteppedSlopedExtrapolation  SteppedSlopedExtrapolation
        Boolean
    opcua.String  String
        String
    opcua.StringTable  StringTable
        String
    opcua.Strings  Strings
        String
    opcua.SubscriptionId  SubscriptionId
        Unsigned 32-bit integer
    opcua.SubscriptionIds  SubscriptionIds
        Unsigned 32-bit integer
    opcua.SymbolicId  SymbolicId
        Signed 32-bit integer
    opcua.Symmetric  Symmetric
        Boolean
    opcua.TargetServerUri  TargetServerUri
        String
    opcua.TestId  TestId
        Unsigned 32-bit integer
    opcua.Text  Text
        String
    opcua.TimeoutHint  TimeoutHint
        Unsigned 32-bit integer
    opcua.Timestamp  Timestamp
        Date/Time stamp
    opcua.TimestampsToReturn  TimestampsToReturn
        Unsigned 32-bit integer
    opcua.TokenData  TokenData
        Byte array
    opcua.TokenId  TokenId
        Unsigned 32-bit integer
    opcua.TotalCount  TotalCount
        Unsigned 32-bit integer
    opcua.TransferRequestCount  TransferRequestCount
        Unsigned 32-bit integer
    opcua.TransferredToAltClientCount  TransferredToAltClientCount
        Unsigned 32-bit integer
    opcua.TransferredToSameClientCount  TransferredToSameClientCount
        Unsigned 32-bit integer
    opcua.TransportProfileUri  TransportProfileUri
        String
    opcua.TransportProtocol  TransportProtocol
        String
    opcua.TreatUncertainAsBad  TreatUncertainAsBad
        Boolean
    opcua.TriggeringItemId  TriggeringItemId
        Unsigned 32-bit integer
    opcua.UInt16  UInt16
        Unsigned 16-bit integer
    opcua.UInt16s  UInt16s
        Unsigned 16-bit integer
    opcua.UInt32  UInt32
        Unsigned 32-bit integer
    opcua.UInt32s  UInt32s
        Unsigned 32-bit integer
    opcua.UInt64  UInt64
        Unsigned 64-bit integer
    opcua.UInt64s  UInt64s
        Unsigned 64-bit integer
    opcua.UnacknowledgedMessageCount  UnacknowledgedMessageCount
        Unsigned 32-bit integer
    opcua.UnauthorizedRequestCount  UnauthorizedRequestCount
        Unsigned 32-bit integer
    opcua.UnitId  UnitId
        Signed 32-bit integer
    opcua.UnsupportedUnitIds  UnsupportedUnitIds
        String
    opcua.Uri  Uri
        String
    opcua.UseBinaryEncoding  UseBinaryEncoding
        Boolean
    opcua.UseSeverCapabilitiesDefaults  UseSeverCapabilitiesDefaults
        Boolean
    opcua.UserAccessLevel  UserAccessLevel
        Unsigned 8-bit integer
    opcua.UserExecutable  UserExecutable
        Boolean
    opcua.UserName  UserName
        String
    opcua.UserTokenType  UserTokenType
        Unsigned 32-bit integer
    opcua.UserWriteMask  UserWriteMask
        Unsigned 32-bit integer
    opcua.Value  Value
        Signed 32-bit integer
    opcua.ValueRank  ValueRank
        Signed 32-bit integer
    opcua.VendorName  VendorName
        String
    opcua.VendorProductCertificate  VendorProductCertificate
        Byte array
    opcua.Verb  Verb
        Unsigned 8-bit integer
    opcua.ViewVersion  ViewVersion
        Unsigned 32-bit integer
    opcua.WriteMask  WriteMask
        Unsigned 32-bit integer
    opcua.XmlElement  XmlElement
        Byte array
    opcua.XmlElements  XmlElements
        Byte array
    opcua.has_additional_info  has additional info
        Boolean
    opcua.has_binary_body  has binary body
        Boolean
    opcua.has_inner_diagnostic_code  has inner diagnostic info
        Boolean
    opcua.has_inner_statuscode  has inner statuscode
        Boolean
    opcua.has_locale_information  has locale information
        Boolean
    opcua.has_localizedtext  has localizedtext
        Boolean
    opcua.has_namespace  has namespace
        Boolean
    opcua.has_server_picoseconds  has server picoseconds
        Boolean
    opcua.has_server_timestamp  has server timestamp
        Boolean
    opcua.has_source_picoseconds  has source picoseconds
        Boolean
    opcua.has_source_timestamp  has source timestamp
        Boolean
    opcua.has_statuscode  has statuscode
        Boolean
    opcua.has_symbolic_id  has symbolic id
        Boolean
    opcua.has_text  has text
        Boolean
    opcua.has_value  has value
        Boolean
    opcua.has_xml_body  has xml body
        Boolean
    security.rcthumb  ReceiverCertificateThumbprint
        Byte array
    security.rqid  RequestId
        Unsigned 32-bit integer
    security.scert  SenderCertificate
        Byte array
    security.seq  SequenceNumber
        Unsigned 32-bit integer
    security.spu  SecurityPolicyUri
        String
    security.tokenid  Security Token Id
        Unsigned 32-bit integer
    transport.chunk  Chunk Type
        String
    transport.endpoint  EndPointUrl
        String
    transport.error  Error
        Unsigned 32-bit integer
    transport.lifetime  Lifetime
        Unsigned 32-bit integer
    transport.mcc  MaxChunkCount
        Unsigned 32-bit integer
    transport.mms  MaxMessageSize
        Unsigned 32-bit integer
    transport.rbs  ReceiveBufferSize
        Unsigned 32-bit integer
    transport.reason  Reason
        String
    transport.sbs  SendBufferSize
        Unsigned 32-bit integer
    transport.scid  SecureChannelId
        Unsigned 32-bit integer
    transport.size  Message Size
        Unsigned 32-bit integer
    transport.type  Message Type
        String
    transport.ver  Version
        Unsigned 32-bit integer

Open Policy Service Interface (opsi)

    opsi.attr.accounting  Accounting
        String
    opsi.attr.acct.session_id  Accounting session ID
        String
    opsi.attr.application_name  OPSI application name
        String
    opsi.attr.called_station_id  Called station ID
        String
    opsi.attr.calling_station_id  Calling station ID
        String
    opsi.attr.chap_challenge  CHAP challenge
        String
    opsi.attr.chap_password  CHAP password attribute
        String
    opsi.attr.designation_number  Designation number
        String
    opsi.attr.flags  OPSI flags
        Unsigned 32-bit integer
    opsi.attr.framed_address  Framed address
        IPv4 address
    opsi.attr.framed_compression  Framed compression
        Unsigned 32-bit integer
    opsi.attr.framed_filter  Framed filter
        String
    opsi.attr.framed_mtu  Framed MTU
        Unsigned 32-bit integer
    opsi.attr.framed_netmask  Framed netmask
        IPv4 address
    opsi.attr.framed_protocol  Framed protocol
        Unsigned 32-bit integer
    opsi.attr.framed_routing  Framed routing
        Unsigned 32-bit integer
    opsi.attr.nas_id  NAS ID
        String
    opsi.attr.nas_ip_addr  NAS IP address
        IPv4 address
    opsi.attr.nas_port  NAS port
        Unsigned 32-bit integer
    opsi.attr.nas_port_id  NAS port ID
        String
    opsi.attr.nas_port_type  NAS port type
        Unsigned 32-bit integer
    opsi.attr.password  User password
        String
    opsi.attr.service_type  Service type
        Unsigned 32-bit integer
    opsi.attr.smc_aaa_id  SMC AAA ID
        Unsigned 32-bit integer
    opsi.attr.smc_id  SMC ID
        Unsigned 32-bit integer
    opsi.attr.smc_pop_id  SMC POP id
        Unsigned 32-bit integer
    opsi.attr.smc_pop_name  SMC POP name
        String
    opsi.attr.smc_ran_id  SMC RAN ID
        Unsigned 32-bit integer
    opsi.attr.smc_ran_ip  SMC RAN IP address
        IPv4 address
    opsi.attr.smc_ran_name  SMC RAN name
        String
    opsi.attr.smc_receive_time  SMC receive time
        Date/Time stamp
    opsi.attr.smc_stat_time  SMC stat time
        Unsigned 32-bit integer
    opsi.attr.smc_vpn_id  SMC VPN ID
        Unsigned 32-bit integer
    opsi.attr.smc_vpn_name  SMC VPN name
        String
    opsi.attr.user_name  User name
        String
    opsi.hook  Hook ID
        Unsigned 8-bit integer
    opsi.length  Message length
        Unsigned 16-bit integer
    opsi.major  Major version
        Unsigned 8-bit integer
    opsi.minor  Minor version
        Unsigned 8-bit integer
    opsi.opcode  Operation code
        Unsigned 8-bit integer
    opsi.session_id  Session ID
        Unsigned 16-bit integer

Open Shortest Path First (ospf)

    ospf.advrouter  Advertising Router
        IPv4 address
    ospf.dbd  DB Description
        Unsigned 8-bit integer
    ospf.dbd.i  I
        Boolean
    ospf.dbd.m  M
        Boolean
    ospf.dbd.ms  MS
        Boolean
    ospf.dbd.r  R
        Boolean
    ospf.lls.ext.options  Options
        Unsigned 32-bit integer
    ospf.lls.ext.options.lr  LR
        Boolean
    ospf.lls.ext.options.rs  RS
        Boolean
    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.bc  MPLS/DSTE Bandwidth Constraints Model Id
        Unsigned 8-bit integer
    ospf.mpls.linkcolor  MPLS/TE Link Resource Class/Color
        Unsigned 32-bit integer
    ospf.mpls.linkid  MPLS/TE Link ID
        IPv4 address
    ospf.mpls.linktype  MPLS/TE Link Type
        Unsigned 8-bit integer
    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.oif.local_node_id  Local Node ID
        IPv4 address
    ospf.oif.remote_node_id  Remote Node ID
        IPv4 address
    ospf.srcrouter  Source OSPF Router
        IPv4 address
    ospf.v2.grace  Grace TLV
        No value
    ospf.v2.grace.ip  Restart IP
        IPv4 address
        The IP address of the interface originating this LSA
    ospf.v2.grace.period  Grace Period
        Unsigned 32-bit integer
        The number of seconds neighbors should advertise the router as fully adjacent
    ospf.v2.grace.reason  Restart Reason
        Unsigned 8-bit integer
        The reason the router is restarting
    ospf.v2.options  Options
        Unsigned 8-bit integer
    ospf.v2.options.dc  DC
        Boolean
    ospf.v2.options.dn  DN
        Boolean
    ospf.v2.options.e  E
        Boolean
    ospf.v2.options.l  L
        Boolean
    ospf.v2.options.mc  MC
        Boolean
    ospf.v2.options.mt  MT
        Boolean
    ospf.v2.options.np  NP
        Boolean
    ospf.v2.options.o  O
        Boolean
    ospf.v2.router.lsa.flags  Flags
        Unsigned 8-bit integer
    ospf.v2.router.lsa.flags.b  B
        Boolean
    ospf.v2.router.lsa.flags.e  E
        Boolean
    ospf.v2.router.lsa.flags.n  N
        Boolean
    ospf.v2.router.lsa.flags.v  V
        Boolean
    ospf.v2.router.lsa.flags.w  W
        Boolean
    ospf.v3.as.external.flags  Flags
        Unsigned 8-bit integer
    ospf.v3.as.external.flags.e  E
        Boolean
    ospf.v3.as.external.flags.f  F
        Boolean
    ospf.v3.as.external.flags.t  T
        Boolean
    ospf.v3.lls.drop.tlv  Neighbor Drop TLV
        No value
    ospf.v3.lls.ext.options  Options
        Unsigned 32-bit integer
    ospf.v3.lls.ext.options.lr  LR
        Boolean
    ospf.v3.lls.ext.options.rs  RS
        Boolean
    ospf.v3.lls.ext.options.tlv  Extended Options TLV
        No value
    ospf.v3.lls.fsf.tlv  Full State For TLV
        No value
    ospf.v3.lls.relay.added  Relays Added
        Unsigned 8-bit integer
    ospf.v3.lls.relay.options  Options
        Unsigned 8-bit integer
    ospf.v3.lls.relay.options.a  A
        Boolean
    ospf.v3.lls.relay.options.n  N
        Boolean
    ospf.v3.lls.relay.tlv  Active Overlapping Relays TLV
        No value
    ospf.v3.lls.rf.tlv  Request From TLV
        No value
    ospf.v3.lls.state.options  Options
        Unsigned 8-bit integer
    ospf.v3.lls.state.options.a  A
        Boolean
    ospf.v3.lls.state.options.n  N
        Boolean
    ospf.v3.lls.state.options.r  R
        Boolean
    ospf.v3.lls.state.scs  SCS Number
        Unsigned 16-bit integer
    ospf.v3.lls.state.tlv  State Check Sequence TLV
        No value
    ospf.v3.lls.willingness  Willingness
        Unsigned 8-bit integer
    ospf.v3.lls.willingness.tlv  Willingness TLV
        No value
    ospf.v3.options  Options
        Unsigned 24-bit integer
    ospf.v3.options.af  AF
        Boolean
    ospf.v3.options.dc  DC
        Boolean
    ospf.v3.options.e  E
        Boolean
    ospf.v3.options.f  F
        Boolean
    ospf.v3.options.i  I
        Boolean
    ospf.v3.options.l  L
        Boolean
    ospf.v3.options.mc  MC
        Boolean
    ospf.v3.options.n  N
        Boolean
    ospf.v3.options.r  R
        Boolean
    ospf.v3.options.v6  V6
        Boolean
    ospf.v3.prefix.options  PrefixOptions
        Unsigned 8-bit integer
    ospf.v3.prefix.options.la  LA
        Boolean
    ospf.v3.prefix.options.mc  MC
        Boolean
    ospf.v3.prefix.options.nu  NU
        Boolean
    ospf.v3.prefix.options.p  P
        Boolean
    ospf.v3.router.lsa.flags  Flags
        Unsigned 8-bit integer
    ospf.v3.router.lsa.flags.b  B
        Boolean
    ospf.v3.router.lsa.flags.e  E
        Boolean
    ospf.v3.router.lsa.flags.v  V
        Boolean
    ospf.v3.router.lsa.flags.w  W
        Boolean

OpenBSD Encapsulating device (enc)

    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

OpenBSD Packet Filter log file (pflog)

    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

OpenBSD Packet Filter log file, pre 3.4 (pflog-old)

    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
    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

Optimized Link State Routing Protocol (olsr)

    olsr.ansn  Advertised Neighbor Sequence Number (ANSN)
        Unsigned 16-bit integer
    olsr.data  Data
        Byte array
    olsr.hop_count  Hop Count
        Unsigned 8-bit integer
    olsr.htime  Hello emission interval
        Double-precision floating point
        Hello emission interval in seconds
    olsr.interface6_addr  Interface Address
        IPv6 address
    olsr.interface_addr  Interface Address
        IPv4 address
    olsr.link_message_size  Link Message Size
        Unsigned 16-bit integer
        Link Message Size in bytes
    olsr.link_type  Link Type
        Unsigned 8-bit integer
    olsr.lq  LQ
        Unsigned 8-bit integer
        Link quality
    olsr.message  Message
        Byte array
    olsr.message_seq_num  Message Sequence Number
        Unsigned 16-bit integer
    olsr.message_size  Message
        Unsigned 16-bit integer
        Message Size in Bytes
    olsr.message_type  Message Type
        Unsigned 8-bit integer
    olsr.neighbor  Neighbor Address
        Byte array
    olsr.neighbor6  Neighbor Address
        Byte array
    olsr.neighbor6_addr  Neighbor Address
        IPv6 address
    olsr.neighbor_addr  Neighbor Address
        IPv4 address
    olsr.netmask  Netmask
        IPv4 address
    olsr.netmask6  Netmask
        IPv6 address
    olsr.network6_addr  Network Address
        IPv6 address
    olsr.network_addr  Network Address
        IPv4 address
    olsr.nlq  NLQ
        Unsigned 8-bit integer
        Neighbor link quality
    olsr.nrl.minmax  NRL MINMAX
        Unsigned 8-bit integer
    olsr.nrl.spf  NRL SPF
        Unsigned 8-bit integer
    olsr.ns  Nameservice message
        Byte array
    olsr.ns.content  Content
        String
    olsr.ns.ip  Address
        IPv4 address
    olsr.ns.ip6  Address
        IPv6 address
    olsr.ns.length  Length
        Unsigned 16-bit integer
    olsr.ns.type  Message Type
        Unsigned 16-bit integer
    olsr.ns.version  Version
        Unsigned 16-bit integer
    olsr.origin6_addr  Originator Address
        IPv6 address
    olsr.origin_addr  Originator Address
        IPv4 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
    olsr.ttl  TTL
        Unsigned 8-bit integer
        Time to Live in hops
    olsr.vtime  Validity Time
        Double-precision floating point
        Validity Time in seconds
    olsr.willingness  Willingness to forward messages
        Unsigned 8-bit integer

PC NFS (pcnfsd)

    pcnfsd.auth.client  Authentication Client
        String
    pcnfsd.auth.ident.clear  Clear Ident
        String
        Authentication Clear Ident
    pcnfsd.auth.ident.obscure  Obscure Ident
        String
        Authentication Obscure Ident
    pcnfsd.auth.password.clear  Clear Password
        String
        Authentication Clear Password
    pcnfsd.auth.password.obscure  Obscure Password
        String
        Authentication Obscure Password
    pcnfsd.comment  Comment
        String
    pcnfsd.def_umask  def_umask
        Unsigned 32-bit integer
    pcnfsd.gid  Group ID
        Unsigned 32-bit integer
    pcnfsd.gids.count  Group ID Count
        Unsigned 32-bit integer
    pcnfsd.homedir  Home Directory
        String
    pcnfsd.procedure_v1  V1 Procedure
        Unsigned 32-bit integer
    pcnfsd.procedure_v2  V2 Procedure
        Unsigned 32-bit integer
    pcnfsd.status  Reply Status
        Unsigned 32-bit integer
        Status
    pcnfsd.uid  User ID
        Unsigned 32-bit integer
    pcnfsd.username  User name
        String
        pcnfsd.username

PDCP-LTE (pdcp-lte)

    pdcp-lte.bitmap  Bitmap
        No value
        Status report bitmap (0=error, 1=OK)
    pdcp-lte.bitmap.error  Not Received
        Boolean
        Status report PDU error
    pdcp-lte.cid-inclusion-info  CID Inclusion Info
        Unsigned 8-bit integer
    pdcp-lte.configuration  Configuration
        String
        Configuration info passed into dissector
    pdcp-lte.control-pdu-type  Control PDU Type
        Unsigned 8-bit integer
    pdcp-lte.direction  Direction
        Unsigned 8-bit integer
        Direction of message
    pdcp-lte.fms  First Missing Sequence Number
        Unsigned 16-bit integer
        First Missing PDCP Sequence Number
    pdcp-lte.large-cid-present  Large CID Present
        Unsigned 8-bit integer
    pdcp-lte.mac  MAC
        Unsigned 32-bit integer
    pdcp-lte.no-header_pdu  No Header PDU
        Unsigned 8-bit integer
    pdcp-lte.pdu-type  PDU Type
        Unsigned 8-bit integer
        PDU type
    pdcp-lte.plane  Plane
        Unsigned 8-bit integer
    pdcp-lte.r-0-crc  R-0-CRC Packet
        No value
    pdcp-lte.reserved3  Reserved
        Unsigned 8-bit integer
        3 reserved bits
    pdcp-lte.rohc  ROHC Message
        No value
    pdcp-lte.rohc.add-cid  Add-CID
        Unsigned 8-bit integer
    pdcp-lte.rohc.checksum-present  UDP Checksum
        Unsigned 8-bit integer
        UDP Checksum present
    pdcp-lte.rohc.compression  ROHC Compression
        Boolean
    pdcp-lte.rohc.d  D
        Unsigned 8-bit integer
        Indicates whether Dynamic chain is present
    pdcp-lte.rohc.dynamic.ipv4  Dynamic IPv4 chain
        No value
    pdcp-lte.rohc.dynamic.rtp  Dynamic RTP chain
        No value
    pdcp-lte.rohc.dynamic.rtp.cc  Contributing CSRCs
        Unsigned 8-bit integer
        Dynamic RTP chain CCs
    pdcp-lte.rohc.dynamic.rtp.mode  Mode
        Unsigned 8-bit integer
    pdcp-lte.rohc.dynamic.rtp.reserved3  Reserved
        Unsigned 8-bit integer
        Reserved bits
    pdcp-lte.rohc.dynamic.rtp.rx  RX
        Unsigned 8-bit integer
    pdcp-lte.rohc.dynamic.rtp.seqnum  RTP Sequence Number
        Unsigned 16-bit integer
        Dynamic RTP chain Sequence Number
    pdcp-lte.rohc.dynamic.rtp.timestamp  RTP Timestamp
        Unsigned 32-bit integer
        Dynamic RTP chain Timestamp
    pdcp-lte.rohc.dynamic.rtp.tis  TIS
        Unsigned 8-bit integer
        Dynamic RTP chain TIS (indicates time_stride present)
    pdcp-lte.rohc.dynamic.rtp.ts-stride  TS Stride
        Unsigned 32-bit integer
        Dynamic RTP chain TS Stride
    pdcp-lte.rohc.dynamic.rtp.tss  TSS
        Unsigned 8-bit integer
        Dynamic RTP chain TSS (indicates TS_stride present)
    pdcp-lte.rohc.dynamic.rtp.x  X
        Unsigned 8-bit integer
    pdcp-lte.rohc.dynamic.udp  Dynamic UDP chain
        No value
    pdcp-lte.rohc.dynamic.udp.checksum  UDP Checksum
        Unsigned 16-bit integer
    pdcp-lte.rohc.dynamic.udp.seqnum  UDP Sequence Number
        Unsigned 16-bit integer
    pdcp-lte.rohc.feedback  Feedback
        No value
        Feedback Packet
    pdcp-lte.rohc.feedback-acktype  Acktype
        Unsigned 8-bit integer
        Feedback-2 ack type
    pdcp-lte.rohc.feedback-code  Code
        Unsigned 8-bit integer
        Feedback options length (if > 0)
    pdcp-lte.rohc.feedback-crc  CRC
        Unsigned 8-bit integer
        Feedback CRC
    pdcp-lte.rohc.feedback-length  Length
        Unsigned 8-bit integer
        Feedback length
    pdcp-lte.rohc.feedback-mode  mode
        Unsigned 8-bit integer
        Feedback mode
    pdcp-lte.rohc.feedback-option  Option
        Unsigned 8-bit integer
        Feedback option
    pdcp-lte.rohc.feedback-option-clock  Clock
        Unsigned 8-bit integer
        Feedback Option Clock
    pdcp-lte.rohc.feedback-option-sn  SN
        Unsigned 8-bit integer
        Feedback Option SN
    pdcp-lte.rohc.feedback-size  Size
        Unsigned 8-bit integer
        Feedback options length
    pdcp-lte.rohc.feedback-sn  SN
        Unsigned 16-bit integer
        Feedback sequence number
    pdcp-lte.rohc.feedback.feedback1  FEEDBACK-1 (SN)
        Unsigned 8-bit integer
        Feedback-1
    pdcp-lte.rohc.feedback.feedback2  FEEDBACK-2
        No value
        Feedback-2
    pdcp-lte.rohc.ip-dst  IP Destination address
        IPv4 address
    pdcp-lte.rohc.ip-id  IP-ID
        Unsigned 16-bit integer
    pdcp-lte.rohc.ip-protocol  IP Protocol
        Unsigned 8-bit integer
    pdcp-lte.rohc.ip-src  IP Source address
        IPv4 address
    pdcp-lte.rohc.ip-version  IP Version
        Unsigned 8-bit integer
    pdcp-lte.rohc.ip.df  Don't Fragment
        Unsigned 8-bit integer
        IP Don't Fragment flag
    pdcp-lte.rohc.ip.id  IP-ID
        Unsigned 8-bit integer
        IP ID
    pdcp-lte.rohc.ip.nbo  Network Byte Order IP-ID field
        Unsigned 8-bit integer
    pdcp-lte.rohc.ip.rnd  Random IP-ID field
        Unsigned 8-bit integer
    pdcp-lte.rohc.ip.tos  ToS
        Unsigned 8-bit integer
        IP Type of Service
    pdcp-lte.rohc.ip.ttl  TTL
        Unsigned 8-bit integer
        IP Time To Live
    pdcp-lte.rohc.ir.crc  CRC
        Unsigned 8-bit integer
        8-bit CRC
    pdcp-lte.rohc.large-cid  Large-CID
        Unsigned 16-bit integer
    pdcp-lte.rohc.m  M
        Unsigned 8-bit integer
    pdcp-lte.rohc.mode  ROHC Mode
        Unsigned 8-bit integer
    pdcp-lte.rohc.padding  Padding
        No value
        ROHC Padding
    pdcp-lte.rohc.payload  Payload
        Byte array
    pdcp-lte.rohc.profile  ROHC profile
        Unsigned 8-bit integer
        ROHC Mode
    pdcp-lte.rohc.r0-crc.crc  CRC7
        Unsigned 8-bit integer
        CRC 7
    pdcp-lte.rohc.r0-crc.sn  SN
        Unsigned 16-bit integer
    pdcp-lte.rohc.r0.sn  SN
        Unsigned 8-bit integer
    pdcp-lte.rohc.rnd  RND
        Unsigned 8-bit integer
        RND of outer ip header
    pdcp-lte.rohc.static.ipv4  Static IPv4 chain
        No value
    pdcp-lte.rohc.static.rtp  Static RTP chain
        No value
    pdcp-lte.rohc.static.rtp.ssrc  SSRC
        Unsigned 32-bit integer
        Static RTP chain SSRC
    pdcp-lte.rohc.static.udp  Static UDP chain
        No value
    pdcp-lte.rohc.static.udp.dst-port  Static UDP destination port
        Unsigned 16-bit integer
    pdcp-lte.rohc.static.udp.src-port  Static UDP source port
        Unsigned 16-bit integer
    pdcp-lte.rohc.t0.t  T
        Unsigned 8-bit integer
        Indicates whether frame type is TS (1) or ID (0)
    pdcp-lte.rohc.t1.t  T
        Unsigned 8-bit integer
        Indicates whether frame type is TS (1) or ID (0)
    pdcp-lte.rohc.t2.t  T
        Unsigned 8-bit integer
        Indicates whether frame type is TS (1) or ID (0)
    pdcp-lte.rohc.ts  TS
        Unsigned 8-bit integer
    pdcp-lte.rohc.udp-checksum  UDP Checksum
        Unsigned 16-bit integer
    pdcp-lte.rohc.uo0.crc  CRC
        Unsigned 8-bit integer
        3-bit CRC
    pdcp-lte.rohc.uo0.sn  SN
        Unsigned 8-bit integer
    pdcp-lte.rohc.uor2.sn  SN
        Unsigned 8-bit integer
    pdcp-lte.rohc.uor2.x  X
        Unsigned 8-bit integer
    pdcp-lte.seq-num  Seq Num
        Unsigned 8-bit integer
        PDCP Seq num
    pdcp-lte.seqnum_length  Seqnum length
        Unsigned 8-bit integer
        Sequence Number Length
    pdcp-lte.signalling-data  Signalling Data
        Byte array
    pdcp-lte.user-data  User-Plane Data
        Byte array

PKCS#1 (pkcs-1)

    pkcs1.coefficient  coefficient
        Signed 32-bit integer
        INTEGER
    pkcs1.digest  digest
        Byte array
    pkcs1.digestAlgorithm  digestAlgorithm
        No value
        DigestAlgorithmIdentifier
    pkcs1.exponent1  exponent1
        Signed 32-bit integer
        INTEGER
    pkcs1.exponent2  exponent2
        Signed 32-bit integer
        INTEGER
    pkcs1.modulus  modulus
        Signed 32-bit integer
        INTEGER
    pkcs1.prime1  prime1
        Signed 32-bit integer
        INTEGER
    pkcs1.prime2  prime2
        Signed 32-bit integer
        INTEGER
    pkcs1.privateExponent  privateExponent
        Signed 32-bit integer
        INTEGER
    pkcs1.publicExponent  publicExponent
        Signed 32-bit integer
        INTEGER
    pkcs1.version  version
        Signed 32-bit integer

PKCS#12: Personal Information Exchange (pkcs12)

    pkcs12.Attribute  Attribute
        No value
    pkcs12.AuthenticatedSafe  AuthenticatedSafe
        Unsigned 32-bit integer
    pkcs12.CRLBag  CRLBag
        No value
    pkcs12.CertBag  CertBag
        No value
    pkcs12.ContentInfo  ContentInfo
        No value
    pkcs12.EncryptedPrivateKeyInfo  EncryptedPrivateKeyInfo
        No value
    pkcs12.KeyBag  KeyBag
        No value
    pkcs12.PBEParameter  PBEParameter
        No value
    pkcs12.PBES2Params  PBES2Params
        No value
    pkcs12.PBKDF2Params  PBKDF2Params
        No value
    pkcs12.PBMAC1Params  PBMAC1Params
        No value
    pkcs12.PFX  PFX
        No value
    pkcs12.PKCS12Attribute  PKCS12Attribute
        No value
    pkcs12.PKCS8ShroudedKeyBag  PKCS8ShroudedKeyBag
        No value
    pkcs12.PrivateKeyInfo  PrivateKeyInfo
        No value
    pkcs12.SafeBag  SafeBag
        No value
    pkcs12.SafeContents  SafeContents
        Unsigned 32-bit integer
    pkcs12.SecretBag  SecretBag
        No value
    pkcs12.X509Certificate  X509Certificate
        No value
        pkcs12.X509Certificate
    pkcs12.attrId  attrId
        Object Identifier
    pkcs12.attrValues  attrValues
        Unsigned 32-bit integer
    pkcs12.attrValues_item  attrValues item
        No value
    pkcs12.attributes  attributes
        Unsigned 32-bit integer
    pkcs12.authSafe  authSafe
        No value
        ContentInfo
    pkcs12.bagAttributes  bagAttributes
        Unsigned 32-bit integer
        SET_OF_PKCS12Attribute
    pkcs12.bagId  bagId
        Object Identifier
    pkcs12.bagValue  bagValue
        No value
    pkcs12.certId  certId
        Object Identifier
    pkcs12.certValue  certValue
        No value
    pkcs12.crlId  crlId
        Object Identifier
    pkcs12.crlValue  crlValue
        No value
    pkcs12.digest  digest
        Byte array
    pkcs12.digestAlgorithm  digestAlgorithm
        No value
        DigestAlgorithmIdentifier
    pkcs12.encryptedData  encryptedData
        Byte array
    pkcs12.encryptionAlgorithm  encryptionAlgorithm
        No value
        AlgorithmIdentifier
    pkcs12.encryptionScheme  encryptionScheme
        No value
        AlgorithmIdentifier
    pkcs12.iterationCount  iterationCount
        Signed 32-bit integer
        INTEGER
    pkcs12.iterations  iterations
        Signed 32-bit integer
        INTEGER
    pkcs12.keyDerivationFunc  keyDerivationFunc
        No value
        AlgorithmIdentifier
    pkcs12.keyLength  keyLength
        Unsigned 32-bit integer
        INTEGER_1_MAX
    pkcs12.mac  mac
        No value
        DigestInfo
    pkcs12.macData  macData
        No value
    pkcs12.macSalt  macSalt
        Byte array
        OCTET_STRING
    pkcs12.messageAuthScheme  messageAuthScheme
        No value
        AlgorithmIdentifier
    pkcs12.otherSource  otherSource
        No value
        AlgorithmIdentifier
    pkcs12.prf  prf
        No value
        AlgorithmIdentifier
    pkcs12.privateKey  privateKey
        Byte array
    pkcs12.privateKeyAlgorithm  privateKeyAlgorithm
        No value
        AlgorithmIdentifier
    pkcs12.salt  salt
        Byte array
        OCTET_STRING
    pkcs12.secretTypeId  secretTypeId
        Object Identifier
    pkcs12.secretValue  secretValue
        No value
    pkcs12.specified  specified
        Byte array
        OCTET_STRING
    pkcs12.version  version
        Unsigned 32-bit integer

PKINIT (pkinit)

    pkinit.AlgorithmIdentifier  AlgorithmIdentifier
        No value
    pkinit.AuthPack  AuthPack
        No value
    pkinit.KDCDHKeyInfo  KDCDHKeyInfo
        No value
    pkinit.TrustedCA  TrustedCA
        Unsigned 32-bit integer
    pkinit.caName  caName
        Unsigned 32-bit integer
        Name
    pkinit.clientPublicValue  clientPublicValue
        No value
        SubjectPublicKeyInfo
    pkinit.ctime  ctime
        No value
        KerberosTime
    pkinit.cusec  cusec
        Signed 32-bit integer
        INTEGER
    pkinit.dhKeyExpiration  dhKeyExpiration
        No value
        KerberosTime
    pkinit.dhSignedData  dhSignedData
        No value
        ContentInfo
    pkinit.encKeyPack  encKeyPack
        No value
        ContentInfo
    pkinit.issuerAndSerial  issuerAndSerial
        No value
        IssuerAndSerialNumber
    pkinit.kdcCert  kdcCert
        No value
        IssuerAndSerialNumber
    pkinit.nonce  nonce
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    pkinit.paChecksum  paChecksum
        No value
        Checksum
    pkinit.pkAuthenticator  pkAuthenticator
        No value
    pkinit.signedAuthPack  signedAuthPack
        No value
        ContentInfo
    pkinit.subjectPublicKey  subjectPublicKey
        Byte array
        BIT_STRING
    pkinit.supportedCMSTypes  supportedCMSTypes
        Unsigned 32-bit integer
        SEQUENCE_OF_AlgorithmIdentifier
    pkinit.trustedCertifiers  trustedCertifiers
        Unsigned 32-bit integer
        SEQUENCE_OF_TrustedCA

PKIX Attribute Certificate (pkixac)

    pkixac.AAControls  AAControls
        No value
    pkixac.AttrSpec_item  AttrSpec item
        Object Identifier
        OBJECT_IDENTIFIER
    pkixac.Clearance  Clearance
        No value
    pkixac.IetfAttrSyntax  IetfAttrSyntax
        No value
    pkixac.ProxyInfo  ProxyInfo
        Unsigned 32-bit integer
    pkixac.RoleSyntax  RoleSyntax
        No value
    pkixac.SecurityCategory  SecurityCategory
        No value
    pkixac.SvceAuthInfo  SvceAuthInfo
        No value
    pkixac.Target  Target
        Unsigned 32-bit integer
    pkixac.Targets  Targets
        Unsigned 32-bit integer
    pkixac.authInfo  authInfo
        Byte array
        OCTET_STRING
    pkixac.certDigestInfo  certDigestInfo
        No value
        ObjectDigestInfo
    pkixac.classList  classList
        Byte array
    pkixac.confidential  confidential
        Boolean
    pkixac.digestAlgorithm  digestAlgorithm
        No value
        AlgorithmIdentifier
    pkixac.digestedObjectType  digestedObjectType
        Unsigned 32-bit integer
    pkixac.excludedAttrs  excludedAttrs
        Unsigned 32-bit integer
        AttrSpec
    pkixac.ident  ident
        Unsigned 32-bit integer
        GeneralName
    pkixac.issuer  issuer
        Unsigned 32-bit integer
        GeneralNames
    pkixac.issuerUID  issuerUID
        Byte array
        UniqueIdentifier
    pkixac.objectDigest  objectDigest
        Byte array
        BIT_STRING
    pkixac.octets  octets
        Byte array
        OCTET_STRING
    pkixac.oid  oid
        Object Identifier
        OBJECT_IDENTIFIER
    pkixac.otherObjectTypeID  otherObjectTypeID
        Object Identifier
        OBJECT_IDENTIFIER
    pkixac.pathLenConstraint  pathLenConstraint
        Unsigned 32-bit integer
        INTEGER_0_MAX
    pkixac.permitUnSpecified  permitUnSpecified
        Boolean
        BOOLEAN
    pkixac.permittedAttrs  permittedAttrs
        Unsigned 32-bit integer
        AttrSpec
    pkixac.policyAuthority  policyAuthority
        Unsigned 32-bit integer
        GeneralNames
    pkixac.policyId  policyId
        Object Identifier
        OBJECT_IDENTIFIER
    pkixac.restricted  restricted
        Boolean
    pkixac.roleAuthority  roleAuthority
        Unsigned 32-bit integer
        GeneralNames
    pkixac.roleName  roleName
        Unsigned 32-bit integer
        GeneralName
    pkixac.secret  secret
        Boolean
    pkixac.securityCategories  securityCategories
        Unsigned 32-bit integer
        SET_OF_SecurityCategory
    pkixac.serial  serial
        Signed 32-bit integer
        CertificateSerialNumber
    pkixac.service  service
        Unsigned 32-bit integer
        GeneralName
    pkixac.string  string
        String
        UTF8String
    pkixac.targetCert  targetCert
        No value
    pkixac.targetCertificate  targetCertificate
        No value
        IssuerSerial
    pkixac.targetGroup  targetGroup
        Unsigned 32-bit integer
        GeneralName
    pkixac.targetName  targetName
        Unsigned 32-bit integer
        GeneralName
    pkixac.topSecret  topSecret
        Boolean
    pkixac.type  type
        Object Identifier
    pkixac.unclassified  unclassified
        Boolean
    pkixac.unmarked  unmarked
        Boolean
    pkixac.value  value
        No value
    pkixac.values  values
        Unsigned 32-bit integer
    pkixac.values_item  values item
        Unsigned 32-bit integer

PKIX CERT File Format (pkix-cert)

    cert  Certificate
        No value

PKIX Qualified (pkixqualified)

    pkixqualified.BiometricData  BiometricData
        No value
    pkixqualified.BiometricSyntax  BiometricSyntax
        Unsigned 32-bit integer
    pkixqualified.Directorystring  Directorystring
        Unsigned 32-bit integer
    pkixqualified.GeneralName  GeneralName
        Unsigned 32-bit integer
    pkixqualified.Generalizedtime  Generalizedtime
        String
    pkixqualified.Printablestring  Printablestring
        String
    pkixqualified.QCStatement  QCStatement
        No value
    pkixqualified.QCStatements  QCStatements
        Unsigned 32-bit integer
    pkixqualified.SemanticsInformation  SemanticsInformation
        No value
    pkixqualified.XmppAddr  XmppAddr
        String
    pkixqualified.biometricDataHash  biometricDataHash
        Byte array
        OCTET_STRING
    pkixqualified.biometricDataOid  biometricDataOid
        Object Identifier
        OBJECT_IDENTIFIER
    pkixqualified.hashAlgorithm  hashAlgorithm
        No value
        AlgorithmIdentifier
    pkixqualified.nameRegistrationAuthorities  nameRegistrationAuthorities
        Unsigned 32-bit integer
    pkixqualified.predefinedBiometricType  predefinedBiometricType
        Signed 32-bit integer
    pkixqualified.semanticsIdentifier  semanticsIdentifier
        Object Identifier
        OBJECT_IDENTIFIER
    pkixqualified.sourceDataUri  sourceDataUri
        String
        IA5String
    pkixqualified.statementId  statementId
        Object Identifier
    pkixqualified.statementInfo  statementInfo
        No value
    pkixqualified.typeOfBiometricData  typeOfBiometricData
        Unsigned 32-bit integer

PKIX Time Stamp Protocol (pkixtsp)

    pkixtsp.TSTInfo  TSTInfo
        No value
    pkixtsp.accuracy  accuracy
        No value
    pkixtsp.addInfoNotAvailable  addInfoNotAvailable
        Boolean
    pkixtsp.badAlg  badAlg
        Boolean
    pkixtsp.badDataFormat  badDataFormat
        Boolean
    pkixtsp.badRequest  badRequest
        Boolean
    pkixtsp.certReq  certReq
        Boolean
        BOOLEAN
    pkixtsp.extensions  extensions
        Unsigned 32-bit integer
    pkixtsp.failInfo  failInfo
        Byte array
        PKIFailureInfo
    pkixtsp.genTime  genTime
        String
        GeneralizedTime
    pkixtsp.hashAlgorithm  hashAlgorithm
        No value
        AlgorithmIdentifier
    pkixtsp.hashedMessage  hashedMessage
        Byte array
        OCTET_STRING
    pkixtsp.messageImprint  messageImprint
        No value
    pkixtsp.micros  micros
        Unsigned 32-bit integer
        INTEGER_1_999
    pkixtsp.millis  millis
        Unsigned 32-bit integer
        INTEGER_1_999
    pkixtsp.nonce  nonce
        Signed 32-bit integer
        INTEGER
    pkixtsp.ordering  ordering
        Boolean
        BOOLEAN
    pkixtsp.policy  policy
        Object Identifier
        TSAPolicyId
    pkixtsp.reqPolicy  reqPolicy
        Object Identifier
        TSAPolicyId
    pkixtsp.seconds  seconds
        Signed 32-bit integer
        INTEGER
    pkixtsp.serialNumber  serialNumber
        Signed 32-bit integer
        INTEGER
    pkixtsp.status  status
        No value
        PKIStatusInfo
    pkixtsp.systemFailure  systemFailure
        Boolean
    pkixtsp.timeNotAvailable  timeNotAvailable
        Boolean
    pkixtsp.timeStampToken  timeStampToken
        No value
    pkixtsp.tsa  tsa
        Unsigned 32-bit integer
        GeneralName
    pkixtsp.unacceptedExtension  unacceptedExtension
        Boolean
    pkixtsp.unacceptedPolicy  unacceptedPolicy
        Boolean
    pkixtsp.version  version
        Signed 32-bit integer

PKIX1Explicit (pkix1explicit)

    pkix1explicit.ASIdOrRange  ASIdOrRange
        Unsigned 32-bit integer
    pkix1explicit.ASIdentifiers  ASIdentifiers
        No value
    pkix1explicit.AttributeTypeAndValue  AttributeTypeAndValue
        No value
    pkix1explicit.DirectoryString  DirectoryString
        String
    pkix1explicit.DomainParameters  DomainParameters
        No value
    pkix1explicit.Extension  Extension
        No value
    pkix1explicit.IPAddrBlocks  IPAddrBlocks
        Unsigned 32-bit integer
    pkix1explicit.IPAddressFamily  IPAddressFamily
        No value
    pkix1explicit.IPAddressOrRange  IPAddressOrRange
        Unsigned 32-bit integer
    pkix1explicit.RelativeDistinguishedName  RelativeDistinguishedName
        Unsigned 32-bit integer
    pkix1explicit.addressFamily  addressFamily
        Byte array
    pkix1explicit.addressPrefix  addressPrefix
        Byte array
        IPAddress
    pkix1explicit.addressRange  addressRange
        No value
        IPAddressRange
    pkix1explicit.addressesOrRanges  addressesOrRanges
        Unsigned 32-bit integer
        SEQUENCE_OF_IPAddressOrRange
    pkix1explicit.addressfamily  Address family(AFN)
        Unsigned 16-bit integer
    pkix1explicit.addressfamily.safi  Subsequent Address Family Identifiers (SAFI)
        Unsigned 16-bit integer
        Subsequent Address Family Identifiers (SAFI) RFC4760
    pkix1explicit.asIdsOrRanges  asIdsOrRanges
        Unsigned 32-bit integer
        SEQUENCE_OF_ASIdOrRange
    pkix1explicit.asnum  asnum
        Unsigned 32-bit integer
        ASIdentifierChoice
    pkix1explicit.critical  critical
        Boolean
        BOOLEAN
    pkix1explicit.extnId  extnId
        Object Identifier
    pkix1explicit.extnValue  extnValue
        Byte array
    pkix1explicit.g  g
        Signed 32-bit integer
        INTEGER
    pkix1explicit.generalTime  generalTime
        String
        GeneralizedTime
    pkix1explicit.id  Id
        String
        Object identifier Id
    pkix1explicit.inherit  inherit
        No value
    pkix1explicit.ipAddressChoice  ipAddressChoice
        Unsigned 32-bit integer
    pkix1explicit.j  j
        Signed 32-bit integer
        INTEGER
    pkix1explicit.max  max
        Byte array
        IPAddress
    pkix1explicit.min  min
        Byte array
        IPAddress
    pkix1explicit.p  p
        Signed 32-bit integer
        INTEGER
    pkix1explicit.pgenCounter  pgenCounter
        Signed 32-bit integer
        INTEGER
    pkix1explicit.q  q
        Signed 32-bit integer
        INTEGER
    pkix1explicit.range  range
        No value
        ASRange
    pkix1explicit.rdi  rdi
        Unsigned 32-bit integer
        ASIdentifierChoice
    pkix1explicit.seed  seed
        Byte array
        BIT_STRING
    pkix1explicit.type  type
        Object Identifier
        OBJECT_IDENTIFIER
    pkix1explicit.utcTime  utcTime
        String
    pkix1explicit.validationParms  validationParms
        No value
    pkix1explicit.value  value
        No value
    pkix1explicit.values  values
        Unsigned 32-bit integer
    pkix1explicit.values_item  values item
        No value

PKIX1Implitit (pkix1implicit)

    pkix1implicit.AccessDescription  AccessDescription
        No value
    pkix1implicit.AuthorityInfoAccessSyntax  AuthorityInfoAccessSyntax
        Unsigned 32-bit integer
    pkix1implicit.Dummy  Dummy
        No value
    pkix1implicit.UserNotice  UserNotice
        No value
    pkix1implicit.accessLocation  accessLocation
        Unsigned 32-bit integer
        GeneralName
    pkix1implicit.accessMethod  accessMethod
        Object Identifier
        OBJECT_IDENTIFIER
    pkix1implicit.bmpString  bmpString
        String
    pkix1implicit.explicitText  explicitText
        Unsigned 32-bit integer
        DisplayText
    pkix1implicit.ia5String  ia5String
        String
    pkix1implicit.noticeNumbers  noticeNumbers
        Unsigned 32-bit integer
    pkix1implicit.noticeNumbers_item  noticeNumbers item
        Signed 32-bit integer
        INTEGER
    pkix1implicit.noticeRef  noticeRef
        No value
        NoticeReference
    pkix1implicit.organization  organization
        Unsigned 32-bit integer
        DisplayText
    pkix1implicit.utf8String  utf8String
        String
    pkix1implicit.visibleString  visibleString
        String

PKIXProxy (RFC3820) (pkixproxy)

    pkixproxy.ProxyCertInfoExtension  ProxyCertInfoExtension
        No value
    pkixproxy.pCPathLenConstraint  pCPathLenConstraint
        Signed 32-bit integer
        ProxyCertPathLengthConstraint
    pkixproxy.policy  policy
        Byte array
        OCTET_STRING
    pkixproxy.policyLanguage  policyLanguage
        Object Identifier
        OBJECT_IDENTIFIER
    pkixproxy.proxyPolicy  proxyPolicy
        No value

PPI Packet Header (ppi)

    ppi.80211-common.chan.freq  Channel frequency
        Unsigned 16-bit integer
        PPI 802.11-Common Channel Frequency
    ppi.80211-common.chan.type  Channel type
        Unsigned 16-bit integer
        PPI 802.11-Common Channel Type
    ppi.80211-common.chan.type.2ghz  2 GHz spectrum
        Boolean
        PPI 802.11-Common Channel Type 2 GHz spectrum
    ppi.80211-common.chan.type.5ghz  5 GHz spectrum
        Boolean
        PPI 802.11-Common Channel Type 5 GHz spectrum
    ppi.80211-common.chan.type.cck  Complementary Code Keying (CCK)
        Boolean
        PPI 802.11-Common Channel Type Complementary Code Keying (CCK) Modulation
    ppi.80211-common.chan.type.dynamic  Dynamic CCK-OFDM
        Boolean
        PPI 802.11-Common Channel Type Dynamic CCK-OFDM Channel
    ppi.80211-common.chan.type.gfsk  Gaussian Frequency Shift Keying (GFSK)
        Boolean
        PPI 802.11-Common Channel Type Gaussian Frequency Shift Keying (GFSK) Modulation
    ppi.80211-common.chan.type.ofdm  Orthogonal Frequency-Division Multiplexing (OFDM)
        Boolean
        PPI 802.11-Common Channel Type Orthogonal Frequency-Division Multiplexing (OFDM)
    ppi.80211-common.chan.type.passive  Passive
        Boolean
        PPI 802.11-Common Channel Type Passive
    ppi.80211-common.chan.type.turbo  Turbo
        Boolean
        PPI 802.11-Common Channel Type Turbo
    ppi.80211-common.dbm.antnoise  dBm antenna noise
        Signed 8-bit integer
        PPI 802.11-Common dBm Antenna Noise
    ppi.80211-common.dbm.antsignal  dBm antenna signal
        Signed 8-bit integer
        PPI 802.11-Common dBm Antenna Signal
    ppi.80211-common.fhss.hopset  FHSS hopset
        Unsigned 8-bit integer
        PPI 802.11-Common Frequency-Hopping Spread Spectrum (FHSS) Hopset
    ppi.80211-common.fhss.pattern  FHSS pattern
        Unsigned 8-bit integer
        PPI 802.11-Common Frequency-Hopping Spread Spectrum (FHSS) Pattern
    ppi.80211-common.flags  Flags
        Unsigned 16-bit integer
        PPI 802.11-Common Flags
    ppi.80211-common.flags.fcs  FCS present flag
        Boolean
        PPI 802.11-Common Frame Check Sequence (FCS) Present Flag
    ppi.80211-common.flags.fcs-invalid  FCS validity
        Boolean
        PPI 802.11-Common Frame Check Sequence (FCS) Validity flag
    ppi.80211-common.flags.phy-err  PHY error flag
        Boolean
        PPI 802.11-Common Physical level (PHY) Error
    ppi.80211-common.flags.tsft  TSFT flag
        Boolean
        PPI 802.11-Common Timing Synchronization Function Timer (TSFT) msec/usec flag
    ppi.80211-common.rate  Data rate
        Unsigned 16-bit integer
        PPI 802.11-Common Data Rate (x 500 Kbps)
    ppi.80211-common.tsft  TSFT
        Unsigned 64-bit integer
        PPI 802.11-Common Timing Synchronization Function Timer (TSFT)
    ppi.80211-mac-phy.ext-chan.freq  Extended channel frequency
        Unsigned 16-bit integer
        PPI 802.11n MAC+PHY Extended Channel Frequency
    ppi.80211-mac-phy.ext-chan.type  Channel type
        Unsigned 16-bit integer
        PPI 802.11n MAC+PHY Channel Type
    ppi.80211-mac-phy.ext-chan.type.2ghz  2 GHz spectrum
        Boolean
        PPI 802.11n MAC+PHY Channel Type 2 GHz spectrum
    ppi.80211-mac-phy.ext-chan.type.5ghz  5 GHz spectrum
        Boolean
        PPI 802.11n MAC+PHY Channel Type 5 GHz spectrum
    ppi.80211-mac-phy.ext-chan.type.cck  Complementary Code Keying (CCK)
        Boolean
        PPI 802.11n MAC+PHY Channel Type Complementary Code Keying (CCK) Modulation
    ppi.80211-mac-phy.ext-chan.type.dynamic  Dynamic CCK-OFDM
        Boolean
        PPI 802.11n MAC+PHY Channel Type Dynamic CCK-OFDM Channel
    ppi.80211-mac-phy.ext-chan.type.gfsk  Gaussian Frequency Shift Keying (GFSK)
        Boolean
        PPI 802.11n MAC+PHY Channel Type Gaussian Frequency Shift Keying (GFSK) Modulation
    ppi.80211-mac-phy.ext-chan.type.ofdm  Orthogonal Frequency-Division Multiplexing (OFDM)
        Boolean
        PPI 802.11n MAC+PHY Channel Type Orthogonal Frequency-Division Multiplexing (OFDM)
    ppi.80211-mac-phy.ext-chan.type.passive  Passive
        Boolean
        PPI 802.11n MAC+PHY Channel Type Passive
    ppi.80211-mac-phy.ext-chan.type.turbo  Turbo
        Boolean
        PPI 802.11n MAC+PHY Channel Type Turbo
    ppi.80211n-mac-phy.dbmant0.noise  dBm antenna 0 noise
        Signed 8-bit integer
        PPI 802.11n MAC+PHY dBm Antenna 0 Noise
    ppi.80211n-mac-phy.dbmant0.signal  dBm antenna 0 signal
        Signed 8-bit integer
        PPI 802.11n MAC+PHY dBm Antenna 0 Signal
    ppi.80211n-mac-phy.dbmant1.noise  dBm antenna 1 noise
        Signed 8-bit integer
        PPI 802.11n MAC+PHY dBm Antenna 1 Noise
    ppi.80211n-mac-phy.dbmant1.signal  dBm antenna 1 signal
        Signed 8-bit integer
        PPI 802.11n MAC+PHY dBm Antenna 1 Signal
    ppi.80211n-mac-phy.dbmant2.noise  dBm antenna 2 noise
        Signed 8-bit integer
        PPI 802.11n MAC+PHY dBm Antenna 2 Noise
    ppi.80211n-mac-phy.dbmant2.signal  dBm antenna 2 signal
        Signed 8-bit integer
        PPI 802.11n MAC+PHY dBm Antenna 2 Signal
    ppi.80211n-mac-phy.dbmant3.noise  dBm antenna 3 noise
        Signed 8-bit integer
        PPI 802.11n MAC+PHY dBm Antenna 3 Noise
    ppi.80211n-mac-phy.dbmant3.signal  dBm antenna 3 signal
        Signed 8-bit integer
        PPI 802.11n MAC+PHY dBm Antenna 3 Signal
    ppi.80211n-mac-phy.evm0  EVM-0
        Unsigned 32-bit integer
        PPI 802.11n MAC+PHY Error Vector Magnitude (EVM) for chain 0
    ppi.80211n-mac-phy.evm1  EVM-1
        Unsigned 32-bit integer
        PPI 802.11n MAC+PHY Error Vector Magnitude (EVM) for chain 1
    ppi.80211n-mac-phy.evm2  EVM-2
        Unsigned 32-bit integer
        PPI 802.11n MAC+PHY Error Vector Magnitude (EVM) for chain 2
    ppi.80211n-mac-phy.evm3  EVM-3
        Unsigned 32-bit integer
        PPI 802.11n MAC+PHY Error Vector Magnitude (EVM) for chain 3
    ppi.80211n-mac-phy.mcs  MCS
        Unsigned 8-bit integer
        PPI 802.11n MAC+PHY Modulation Coding Scheme (MCS)
    ppi.80211n-mac-phy.num_streams  Number of spatial streams
        Unsigned 8-bit integer
        PPI 802.11n MAC+PHY number of spatial streams
    ppi.80211n-mac-phy.rssi.ant0ctl  Antenna 0 control RSSI
        Unsigned 8-bit integer
        PPI 802.11n MAC+PHY Antenna 0 Control Channel Received Signal Strength Indication (RSSI)
    ppi.80211n-mac-phy.rssi.ant0ext  Antenna 0 extension RSSI
        Unsigned 8-bit integer
        PPI 802.11n MAC+PHY Antenna 0 Extension Channel Received Signal Strength Indication (RSSI)
    ppi.80211n-mac-phy.rssi.ant1ctl  Antenna 1 control RSSI
        Unsigned 8-bit integer
        PPI 802.11n MAC+PHY Antenna 1 Control Channel Received Signal Strength Indication (RSSI)
    ppi.80211n-mac-phy.rssi.ant1ext  Antenna 1 extension RSSI
        Unsigned 8-bit integer
        PPI 802.11n MAC+PHY Antenna 1 Extension Channel Received Signal Strength Indication (RSSI)
    ppi.80211n-mac-phy.rssi.ant2ctl  Antenna 2 control RSSI
        Unsigned 8-bit integer
        PPI 802.11n MAC+PHY Antenna 2 Control Channel Received Signal Strength Indication (RSSI)
    ppi.80211n-mac-phy.rssi.ant2ext  Antenna 2 extension RSSI
        Unsigned 8-bit integer
        PPI 802.11n MAC+PHY Antenna 2 Extension Channel Received Signal Strength Indication (RSSI)
    ppi.80211n-mac-phy.rssi.ant3ctl  Antenna 3 control RSSI
        Unsigned 8-bit integer
        PPI 802.11n MAC+PHY Antenna 3 Control Channel Received Signal Strength Indication (RSSI)
    ppi.80211n-mac-phy.rssi.ant3ext  Antenna 3 extension RSSI
        Unsigned 8-bit integer
        PPI 802.11n MAC+PHY Antenna 3 Extension Channel Received Signal Strength Indication (RSSI)
    ppi.80211n-mac-phy.rssi.combined  RSSI combined
        Unsigned 8-bit integer
        PPI 802.11n MAC+PHY Received Signal Strength Indication (RSSI) Combined
    ppi.80211n-mac.ampdu  A-MPDU
        Frame number
        802.11n Aggregated MAC Protocol Data Unit (A-MPDU)
    ppi.80211n-mac.ampdu.count  MPDU count
        Unsigned 16-bit integer
        The number of aggregated MAC Protocol Data Units (MPDUs)
    ppi.80211n-mac.ampdu.reassembled  Reassembled A-MPDU
        No value
        Reassembled Aggregated MAC Protocol Data Unit (A-MPDU)
    ppi.80211n-mac.ampdu.reassembled_in  Reassembled A-MPDU in frame
        Frame number
        The A-MPDU that doesn't end in this segment is reassembled in this frame
    ppi.80211n-mac.ampdu_id  AMPDU-ID
        Unsigned 32-bit integer
        PPI 802.11n MAC AMPDU-ID
    ppi.80211n-mac.flags  MAC flags
        Unsigned 32-bit integer
        PPI 802.11n MAC flags
    ppi.80211n-mac.flags.agg  Aggregate flag
        Boolean
        PPI 802.11 MAC Aggregate Flag
    ppi.80211n-mac.flags.delim_crc_error_after  A-MPDU Delimiter CRC error after this frame flag
        Boolean
        PPI 802.11n MAC A-MPDU Delimiter CRC Error After This Frame Flag
    ppi.80211n-mac.flags.greenfield  Greenfield flag
        Boolean
        PPI 802.11n MAC Greenfield Flag
    ppi.80211n-mac.flags.ht20_40  HT20/HT40 flag
        Boolean
        PPI 802.11n MAC HT20/HT40 Flag
    ppi.80211n-mac.flags.more_agg  More aggregates flag
        Boolean
        PPI 802.11n MAC More Aggregates Flag
    ppi.80211n-mac.flags.rx.duplicate  Duplicate RX flag
        Boolean
        PPI 802.11n MAC Duplicate RX Flag
    ppi.80211n-mac.flags.rx.short_guard_interval  RX Short Guard Interval (SGI) flag
        Boolean
        PPI 802.11n MAC RX Short Guard Interval (SGI) Flag
    ppi.80211n-mac.num_delimiters  Num-Delimiters
        Unsigned 8-bit integer
        PPI 802.11n MAC number of zero-length pad delimiters
    ppi.80211n-mac.reserved  Reserved
        Unsigned 24-bit integer
        PPI 802.11n MAC Reserved
    ppi.8023_extension.errors  Errors
        Unsigned 32-bit integer
        PPI 802.3 Extension Errors
    ppi.8023_extension.errors.data  Data Error
        Boolean
        PPI 802.3 Extension Data Error
    ppi.8023_extension.errors.fcs  FCS Error
        Boolean
        PPI 802.3 Extension FCS Error
    ppi.8023_extension.errors.sequence  Sequence Error
        Boolean
        PPI 802.3 Extension Sequence Error
    ppi.8023_extension.errors.symbol  Symbol Error
        Boolean
        PPI 802.3 Extension Symbol Error
    ppi.8023_extension.flags  Flags
        Unsigned 32-bit integer
        PPI 802.3 Extension Flags
    ppi.8023_extension.flags.fcs_present  FCS Present Flag
        Boolean
        FCS (4 bytes) is present at the end of the packet
    ppi.aggregation_extension.interface_id  Interface ID
        Unsigned 32-bit integer
        Zero-based index of the physical interface the packet was captured from
    ppi.cap-info  Capture information
        Byte array
        PPI Capture information
    ppi.dlt  DLT
        Unsigned 32-bit integer
        libpcap Data Link Type (DLT) of the payload
    ppi.field_len  Field length
        Unsigned 16-bit integer
        PPI data field length
    ppi.field_type  Field type
        Unsigned 16-bit integer
        PPI data field type
    ppi.flags  Flags
        Unsigned 8-bit integer
        PPI header flags
    ppi.flags.alignment  Alignment
        Boolean
        PPI header flags - 32bit Alignment
    ppi.flags.reserved  Reserved
        Unsigned 8-bit integer
        PPI header flags - Reserved Flags
    ppi.length  Header length
        Unsigned 16-bit integer
        Length of header including payload
    ppi.proc-info  Process information
        Byte array
        PPI Process information
    ppi.spectrum-map  Radio spectrum map
        Byte array
        PPI Radio spectrum map
    ppi.version  Version
        Unsigned 8-bit integer
        PPI header format version

PPP Bandwidth Allocation Control Protocol (bacp)

PPP Bandwidth Allocation Protocol (bap)

PPP Bridging Control Protocol (bcp)

    bcp.flags  Flags
        Unsigned 8-bit integer
    bcp.flags.bcontrol  Bridge control
        Boolean
    bcp.flags.fcs_present  LAN FCS present
        Boolean
    bcp.flags.zeropad  802.3 pad zero-filled
        Boolean
    bcp.mac_type  MAC Type
        Unsigned 8-bit integer
    bcp.pads  Pads
        Unsigned 8-bit integer

PPP CDP Control Protocol (cdpcp)

PPP Callback Control Protocol (cbcp)

PPP Challenge Handshake Authentication Protocol (chap)

    chap.code  Code
        Unsigned 8-bit integer
        CHAP code
    chap.identifier  Identifier
        Unsigned 8-bit integer
        CHAP identifier
    chap.length  Length
        Unsigned 16-bit integer
        CHAP length
    chap.message  Message
        String
        CHAP message
    chap.name  Name
        String
        CHAP name
    chap.value  Value
        Byte array
        CHAP value data
    chap.value_size  Value Size
        Unsigned 8-bit integer
        CHAP value size

PPP Compressed Datagram (comp_data)

PPP Compression Control Protocol (ccp)

PPP IP Control Protocol (ipcp)

PPP IPv6 Control Protocol (ipv6cp)

PPP In HDLC-Like Framing (ppp_hdlc)

PPP Link Control Protocol (lcp)

PPP MPLS Control Protocol (mplscp)

PPP Multilink Protocol (mp)

    mp.first  First fragment
        Boolean
    mp.last  Last fragment
        Boolean
    mp.seq  Sequence number
        Unsigned 24-bit integer

PPP Multiplexing (pppmux)

PPP OSI Control Protocol (osicp)

PPP Password Authentication Protocol (pap)

PPP VJ Compression (vj)

    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
    vj.change_mask_u  Urgent pointer set
        Boolean
    vj.change_mask_w  Window changed
        Boolean
        TCP window changed
    vj.connection_number  Connection number
        Unsigned 8-bit integer
    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
    vj.urp  Urgent pointer
        Unsigned 16-bit integer
    vj.win_delta  Window delta
        Signed 16-bit integer
        Delta for window

PPP-over-Ethernet (pppoe)

    pppoe.code  Code
        Unsigned 8-bit integer
    pppoe.payload_length  Payload Length
        Unsigned 16-bit integer
    pppoe.session_id  Session ID
        Unsigned 16-bit integer
    pppoe.type  Type
        Unsigned 8-bit integer
    pppoe.version  Version
        Unsigned 8-bit integer

PPP-over-Ethernet Discovery (pppoed)

    pppoed.tag  Tag
        Unsigned 16-bit integer
    pppoed.tag.unknown_data  Unknown Data
        Byte array
    pppoed.tag_length  Tag Length
        Unsigned 16-bit integer
    pppoed.tag_length_8  Tag Length
        Unsigned 8-bit integer
    pppoed.tags  PPPoE Tags
        No value
    pppoed.tags.ac_cookie  AC-Cookie
        Byte array
    pppoed.tags.ac_name  AC-Name
        String
    pppoed.tags.ac_system_error  AC-System-Error
        String
    pppoed.tags.access_loop_encap  Access-Loop-Encapsulation
        No value
    pppoed.tags.access_loop_encap.data_link  Data link
        Unsigned 8-bit integer
    pppoed.tags.access_loop_encap.encap_1  Encaps 1
        Unsigned 8-bit integer
    pppoed.tags.access_loop_encap.encap_2  Encaps 1
        Unsigned 8-bit integer
    pppoed.tags.act_data_rate_down  Actual Data Rate Downstream
        Unsigned 32-bit integer
    pppoed.tags.act_data_rate_up  Actual Data Rate Upstream
        Unsigned 32-bit integer
    pppoed.tags.act_int_delay_down  Actual Interleaving Delay Downstream
        Unsigned 32-bit integer
    pppoed.tags.act_int_delay_up  Actual Interleaving Delay Upstream
        Unsigned 32-bit integer
    pppoed.tags.attainable_data_rate_down  Attainable DataRate Downstream
        Unsigned 32-bit integer
    pppoed.tags.attainable_data_rate_up  Attainable DataRate Upstream
        Unsigned 32-bit integer
    pppoed.tags.circuit_id  Circuit ID
        String
    pppoed.tags.credit_scale  Credit Scale Factor
        Unsigned 16-bit integer
    pppoed.tags.credits  Credits
        Byte array
    pppoed.tags.credits.bcn  BCN
        Unsigned 16-bit integer
    pppoed.tags.credits.fcn  FCN
        Unsigned 16-bit integer
    pppoed.tags.generic_error  Generic-Error
        String
    pppoed.tags.host_uniq  Host-Uniq
        Byte array
    pppoed.tags.hurl  HURL
        Byte array
    pppoed.tags.ip_route_add  IP Route Add
        Byte array
    pppoed.tags.max_data_rate_down  Maximum Data Rate Downstream
        Unsigned 32-bit integer
    pppoed.tags.max_data_rate_up  Maximum Data Rate Upstream
        Unsigned 32-bit integer
    pppoed.tags.max_int_delay_down  Maximum Interleaving Delay Downstream
        Unsigned 32-bit integer
    pppoed.tags.max_int_delay_up  Max Interleaving Delay Upstream
        Unsigned 32-bit integer
    pppoed.tags.max_payload  PPP Max Palyload
        Byte array
    pppoed.tags.metrics  Metrics
        Byte array
    pppoed.tags.metrics.cdr_units  CDR Units
        Unsigned 16-bit integer
    pppoed.tags.metrics.curr_drate  Curr. datarate
        Unsigned 16-bit integer
    pppoed.tags.metrics.latency  Latency
        Unsigned 16-bit integer
    pppoed.tags.metrics.max_drate  Max. datarate
        Unsigned 16-bit integer
    pppoed.tags.metrics.mdr_units  MDR Units
        Unsigned 16-bit integer
    pppoed.tags.metrics.r  Receive Only
        Boolean
    pppoed.tags.metrics.resource  Resource
        Unsigned 8-bit integer
    pppoed.tags.metrics.rlq  Relative Link Quality
        Unsigned 8-bit integer
    pppoed.tags.min_data_rate_down  Minimum Data Rate Downstream
        Unsigned 32-bit integer
    pppoed.tags.min_data_rate_down_lp  Minimum Data Rate Downstream in low power state
        Unsigned 32-bit integer
    pppoed.tags.min_data_rate_up  Minimum Data Rate Upstream
        Unsigned 32-bit integer
    pppoed.tags.min_data_rate_up_lp  Min DataRate Upstream in low power state
        Unsigned 32-bit integer
    pppoed.tags.motm  MOTM
        Byte array
    pppoed.tags.relay_session_id  Relay-Session-Id
        Byte array
    pppoed.tags.remote_id  Remote ID
        String
    pppoed.tags.seq_num  Sequence Number
        Unsigned 16-bit integer
    pppoed.tags.service_name  Service-Name
        String
    pppoed.tags.service_name_error  Service-Name-Error
        String
    pppoed.tags.vendor_id  Vendor id
        Unsigned 32-bit integer
    pppoed.tags.vendor_unspecified  Vendor unspecified
        Byte array
    pppoed.tags.vendorspecific.tag  Tag
        Unsigned 8-bit integer
    pppoed.tags.vendorspecific.tags  Vendor Specific PPPoE Tags
        No value

PPP-over-Ethernet Session (pppoes)

    pppoes.tag  Tag
        Unsigned 16-bit integer
    pppoes.tags  PPPoE Tags
        No value
    pppoes.tags.credits  Credits
        Byte array
    pppoes.tags.credits.bcn  BCN
        Unsigned 16-bit integer
    pppoes.tags.credits.fcn  FCN
        Unsigned 16-bit integer

PPPMux Control Protocol (pppmuxcp)

PROFINET DCP (pn_dcp)

    pn_dcp.block  Block
        No value
    pn_dcp.block_error  BlockError
        Unsigned 8-bit integer
    pn_dcp.block_info  BlockInfo
        Unsigned 16-bit integer
    pn_dcp.block_length  DCPBlockLength
        Unsigned 16-bit integer
    pn_dcp.block_qualifier  BlockQualifier
        Unsigned 16-bit integer
    pn_dcp.data_length  DCPDataLength
        Unsigned 16-bit integer
    pn_dcp.deviceinitiative_value  DeviceInitiativeValue
        Unsigned 16-bit integer
    pn_dcp.option  Option
        Unsigned 8-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.service_id  ServiceID
        Unsigned 8-bit integer
    pn_dcp.service_type  ServiceType
        Unsigned 8-bit integer
    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_response  Response
        Unsigned 8-bit integer
    pn_dcp.suboption_device  Suboption
        Unsigned 8-bit integer
    pn_dcp.suboption_device_aliasname  AliasName
        String
    pn_dcp.suboption_device_id  DeviceID
        Unsigned 16-bit integer
    pn_dcp.suboption_device_nameofstation  NameOfStation
        String
    pn_dcp.suboption_device_role  DeviceRoleDetails
        Unsigned 8-bit integer
    pn_dcp.suboption_device_typeofstation  TypeOfStation
        String
    pn_dcp.suboption_deviceinitiative  Suboption
        Unsigned 8-bit integer
    pn_dcp.suboption_dhcp  Suboption
        Unsigned 8-bit integer
    pn_dcp.suboption_dhcp_device_id  Device ID
        Byte array
    pn_dcp.suboption_ip  Suboption
        Unsigned 8-bit integer
    pn_dcp.suboption_ip_block_info  BlockInfo
        Unsigned 16-bit integer
    pn_dcp.suboption_ip_standard_gateway  StandardGateway
        IPv4 address
    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

PROFINET IO (pn_io)

    pn_io.ack_seq_num  AckSeqNum
        Unsigned 16-bit integer
    pn_io.actual_local_time_stamp  ActualLocalTimeStamp
        Unsigned 64-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.address_resolution_properties  AddressResolutionProperties
        Unsigned 32-bit integer
    pn_io.adjust_properties  AdjustProperties
        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.alarmcr_properties  AlarmCRProperties
        Unsigned 32-bit integer
    pn_io.alarmcr_properties.priority  priority
        Unsigned 32-bit integer
    pn_io.alarmcr_properties.reserved  Reserved
        Unsigned 32-bit integer
    pn_io.alarmcr_properties.transport  Transport
        Unsigned 32-bit integer
    pn_io.alarmcr_tagheaderhigh  AlarmCRTagHeaderHigh
        Unsigned 16-bit integer
    pn_io.alarmcr_tagheaderlow  AlarmCRTagHeaderLow
        Unsigned 16-bit integer
    pn_io.alarmcr_type  AlarmCRType
        Unsigned 16-bit integer
    pn_io.api  API
        No value
    pn_io.ar_properties  ARProperties
        Unsigned 32-bit integer
    pn_io.ar_properties.acknowledge_companion_ar  AcknowledgeCompanionAR
        Unsigned 32-bit integer
    pn_io.ar_properties.companion_ar  CompanionAR
        Unsigned 32-bit integer
    pn_io.ar_properties.data_rate  DataRate
        Unsigned 32-bit integer
    pn_io.ar_properties.device_access  DeviceAccess
        Unsigned 32-bit integer
    pn_io.ar_properties.parametrization_server  ParametrizationServer
        Unsigned 32-bit integer
    pn_io.ar_properties.pull_module_alarm_allowed  PullModuleAlarmAllowed
        Unsigned 32-bit integer
    pn_io.ar_properties.reserved  Reserved
        Unsigned 32-bit integer
    pn_io.ar_properties.reserved_1  Reserved_1
        Unsigned 32-bit integer
    pn_io.ar_properties.state  State
        Unsigned 32-bit integer
    pn_io.ar_properties.supervisor_takeover_allowed  SupervisorTakeoverAllowed
        Unsigned 32-bit integer
    pn_io.ar_type  ARType
        Unsigned 16-bit integer
    pn_io.ar_uuid  ARUUID
        Globally Unique Identifier
    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_header  BlockHeader
        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.channel_error_type  ChannelErrorType
        Unsigned 16-bit integer
    pn_io.channel_number  ChannelNumber
        Unsigned 16-bit integer
    pn_io.channel_properties  ChannelProperties
        Unsigned 16-bit integer
    pn_io.channel_properties.accumulative  Accumulative
        Unsigned 16-bit integer
    pn_io.channel_properties.direction  Direction
        Unsigned 16-bit integer
    pn_io.channel_properties.maintenance_demanded  MaintenanceDemanded
        Unsigned 16-bit integer
    pn_io.channel_properties.maintenance_required  MaintenanceRequired
        Unsigned 16-bit integer
    pn_io.channel_properties.specifier  Specifier
        Unsigned 16-bit integer
    pn_io.channel_properties.type  Type
        Unsigned 16-bit integer
    pn_io.check_sync_mode  CheckSyncMode
        Unsigned 16-bit integer
    pn_io.check_sync_mode.cable_delay  CableDelay
        Unsigned 16-bit integer
    pn_io.check_sync_mode.reserved  Reserved
        Unsigned 16-bit integer
    pn_io.check_sync_mode.sync_master  SyncMaster
        Unsigned 16-bit integer
    pn_io.cminitiator_activitytimeoutfactor  CMInitiatorActivityTimeoutFactor
        Unsigned 16-bit integer
    pn_io.cminitiator_mac_add  CMInitiatorMacAdd
        6-byte Hardware (MAC) Address
    pn_io.cminitiator_station_name  CMInitiatorStationName
        String
    pn_io.cminitiator_udprtport  CMInitiatorUDPRTPort
        Unsigned 16-bit integer
    pn_io.cminitiator_uuid  CMInitiatorObjectUUID
        Globally Unique Identifier
    pn_io.cmresponder_macadd  CMResponderMacAdd
        6-byte Hardware (MAC) Address
    pn_io.cmresponder_udprtport  CMResponderUDPRTPort
        Unsigned 16-bit integer
    pn_io.control_block_properties  ControlBlockProperties
        Unsigned 16-bit integer
    pn_io.control_block_properties.appl_ready  ControlBlockProperties
        Unsigned 16-bit integer
    pn_io.control_block_properties.appl_ready0  ApplicationReady
        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.ready_for_companion  ReadyForCompanion
        Unsigned 16-bit integer
    pn_io.control_command.ready_for_rt_class3  ReadyForRT Class 3
        Unsigned 16-bit integer
    pn_io.control_command.release  Release
        Unsigned 16-bit integer
    pn_io.controller_appl_cycle_factor  ControllerApplicationCycleFactor
        Unsigned 16-bit integer
    pn_io.cycle_counter  CycleCounter
        Unsigned 16-bit integer
    pn_io.data_description  DataDescription
        No value
    pn_io.data_hold_factor  DataHoldFactor
        Unsigned 16-bit integer
    pn_io.data_length  DataLength
        Unsigned 16-bit integer
    pn_io.domain_boundary  DomainBoundary
        Unsigned 32-bit integer
    pn_io.domain_boundary.egress  DomainBoundaryEgress
        Unsigned 32-bit integer
    pn_io.domain_boundary.ingress  DomainBoundaryIngress
        Unsigned 32-bit integer
    pn_io.ds  DataStatus
        Unsigned 8-bit integer
    pn_io.ds_ok  StationProblemIndicator (1:Ok/0:Problem)
        Unsigned 8-bit integer
    pn_io.ds_operate  ProviderState (1:Run/0:Stop)
        Unsigned 8-bit integer
    pn_io.ds_primary  State (1:Primary/0:Backup)
        Unsigned 8-bit integer
    pn_io.ds_res1  Reserved (should be zero)
        Unsigned 8-bit integer
    pn_io.ds_res3  Reserved (should be zero)
        Unsigned 8-bit integer
    pn_io.ds_res67  Reserved (should be zero)
        Unsigned 8-bit integer
    pn_io.ds_valid  DataValid (1:Valid/0:Invalid)
        Unsigned 8-bit integer
    pn_io.end_of_red_frame_id  EndOfRedFrameID
        Unsigned 16-bit integer
    pn_io.entry_detail  EntryDetail
        Unsigned 32-bit integer
    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.error_drop_budget  ErrorDropBudget
        Unsigned 32-bit integer
    pn_io.error_power_budget  ErrorPowerBudget
        Unsigned 32-bit integer
    pn_io.ethertype  Ethertype
        Unsigned 16-bit integer
    pn_io.ext_channel_add_value  ExtChannelAddValue
        Unsigned 32-bit integer
    pn_io.ext_channel_error_type  ExtChannelErrorType
        Unsigned 16-bit integer
    pn_io.fiber_optic_cable_type  FiberOpticCableType
        Unsigned 32-bit integer
    pn_io.fiber_optic_type  FiberOpticType
        Unsigned 32-bit integer
    pn_io.frame_details  FrameDetails
        Unsigned 8-bit integer
    pn_io.frame_details.meaning_frame_send_offset  Meaning
        Unsigned 8-bit integer
    pn_io.frame_details.reserved  Reserved
        Unsigned 8-bit integer
    pn_io.frame_details.sync_frame  SyncFrame
        Unsigned 8-bit integer
    pn_io.frame_id  FrameID
        Unsigned 16-bit integer
    pn_io.frame_send_offset  FrameSendOffset
        Unsigned 32-bit integer
    pn_io.fs_hello_delay  FSHelloDelay
        Unsigned 32-bit integer
    pn_io.fs_hello_interval  FSHelloInterval
        Unsigned 32-bit integer
        ms before conveying a second DCP_Hello.req
    pn_io.fs_hello_mode  FSHelloMode
        Unsigned 32-bit integer
    pn_io.fs_hello_retry  FSHelloRetry
        Unsigned 32-bit integer
    pn_io.fs_parameter_mode  FSParameterMode
        Unsigned 32-bit integer
    pn_io.fs_parameter_uuid  FSParameterUUID
        Globally Unique Identifier
    pn_io.green_period_begin  GreenPeriodBegin
        Unsigned 32-bit integer
    pn_io.im_date  IM_Date
        String
    pn_io.im_descriptor  IM_Descriptor
        String
    pn_io.im_hardware_revision  IMHardwareRevision
        Unsigned 16-bit integer
    pn_io.im_profile_id  IMProfileID
        Unsigned 16-bit integer
    pn_io.im_profile_specific_type  IMProfileSpecificType
        Unsigned 16-bit integer
    pn_io.im_revision_bugfix  IM_SWRevisionBugFix
        Unsigned 8-bit integer
    pn_io.im_revision_counter  IMRevisionCounter
        Unsigned 16-bit integer
    pn_io.im_revision_prefix  IMRevisionPrefix
        Unsigned 8-bit integer
    pn_io.im_serial_number  IMSerialNumber
        String
    pn_io.im_supported  IM_Supported
        Unsigned 16-bit integer
    pn_io.im_sw_revision_functional_enhancement  IMSWRevisionFunctionalEnhancement
        Unsigned 8-bit integer
    pn_io.im_sw_revision_internal_change  IMSWRevisionInternalChange
        Unsigned 8-bit integer
    pn_io.im_tag_function  IM_Tag_Function
        String
    pn_io.im_tag_location  IM_Tag_Location
        String
    pn_io.im_version_major  IMVersionMajor
        Unsigned 8-bit integer
    pn_io.im_version_minor  IMVersionMinor
        Unsigned 8-bit integer
    pn_io.index  Index
        Unsigned 16-bit integer
    pn_io.io_cs  IOCS
        No value
    pn_io.io_data_object  IODataObject
        No value
    pn_io.io_data_object_frame_offset  IODataObjectFrameOffset
        Unsigned 16-bit integer
    pn_io.iocr_multicast_mac_add  IOCRMulticastMACAdd
        6-byte Hardware (MAC) Address
    pn_io.iocr_properties  IOCRProperties
        Unsigned 32-bit integer
    pn_io.iocr_properties.distributed_subframe_watchdog  DistributedSubFrameWatchDog
        Unsigned 32-bit integer
    pn_io.iocr_properties.fast_forwarding_mac_adr  FastForwardingMACAdr
        Unsigned 32-bit integer
    pn_io.iocr_properties.full_subframe_structure  FullSubFrameStructure
        Unsigned 32-bit integer
    pn_io.iocr_properties.media_redundancy  MediaRedundancy
        Unsigned 32-bit integer
    pn_io.iocr_properties.reserved1  Reserved1
        Unsigned 32-bit integer
    pn_io.iocr_properties.reserved2  Reserved2
        Unsigned 32-bit integer
    pn_io.iocr_properties.reserved3  Reserved3
        Unsigned 32-bit integer
    pn_io.iocr_properties.rtclass  RTClass
        Unsigned 32-bit integer
    pn_io.iocr_reference  IOCRReference
        Unsigned 16-bit integer
    pn_io.iocr_tag_header  IOCRTagHeader
        Unsigned 16-bit integer
    pn_io.iocr_tree  IOCR
        No value
    pn_io.iocr_txports_port  IOCRTxPorts.Port
        Unsigned 8-bit integer
    pn_io.iocr_txports_redundantport  IOCRTxPorts.RedundantPort
        Unsigned 8-bit integer
    pn_io.iocr_type  IOCRType
        Unsigned 16-bit integer
    pn_io.iocs_frame_offset  IOCSFrameOffset
        Unsigned 16-bit integer
    pn_io.ioxs  IOCS
        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.ip_address  IPAddress
        IPv4 address
    pn_io.ir_begin_end_port  Port
        No value
    pn_io.ir_data_id  IRDataID
        Globally Unique Identifier
    pn_io.ir_frame_data  Frame data
        No value
    pn_io.length_data  LengthData
        Unsigned 16-bit integer
    pn_io.length_iocs  LengthIOCS
        Unsigned 16-bit integer
    pn_io.length_iops  LengthIOPS
        Unsigned 16-bit integer
    pn_io.length_own_chassis_id  LengthOwnChassisID
        Unsigned 8-bit integer
    pn_io.length_own_port_id  LengthOwnPortID
        Unsigned 8-bit integer
    pn_io.length_peer_chassis_id  LengthPeerChassisID
        Unsigned 8-bit integer
    pn_io.length_peer_port_id  LengthPeerPortID
        Unsigned 8-bit integer
    pn_io.line_delay  LineDelay
        Unsigned 32-bit integer
        LineDelay in nanoseconds
    pn_io.local_time_stamp  LocalTimeStamp
        Unsigned 64-bit integer
    pn_io.localalarmref  LocalAlarmReference
        Unsigned 16-bit integer
    pn_io.lt  LT
        Unsigned 16-bit integer
    pn_io.macadd  MACAddress
        6-byte Hardware (MAC) Address
    pn_io.maintenance_demanded_drop_budget  MaintenanceDemandedDropBudget
        Unsigned 32-bit integer
    pn_io.maintenance_demanded_power_budget  MaintenanceDemandedPowerBudget
        Unsigned 32-bit integer
    pn_io.maintenance_required_drop_budget  MaintenanceRequiredDropBudget
        Unsigned 32-bit integer
    pn_io.maintenance_required_power_budget  MaintenanceRequiredPowerBudget
        Unsigned 32-bit integer
    pn_io.maintenance_status  MaintenanceStatus
        Unsigned 32-bit integer
    pn_io.maintenance_status_demanded  Demanded
        Unsigned 32-bit integer
    pn_io.maintenance_status_required  Required
        Unsigned 32-bit integer
    pn_io.mau_type  MAUType
        Unsigned 16-bit integer
    pn_io.mau_type_mode  MAUTypeMode
        Unsigned 16-bit integer
    pn_io.max_bridge_delay  MaxBridgeDelay
        Unsigned 32-bit integer
    pn_io.max_port_rx_delay  MaxPortRxDelay
        Unsigned 32-bit integer
    pn_io.max_port_tx_delay  MaxPortTxDelay
        Unsigned 32-bit integer
    pn_io.maxalarmdatalength  MaxAlarmDataLength
        Unsigned 16-bit integer
    pn_io.mci_timeout_factor  MCITimeoutFactor
        Unsigned 16-bit integer
    pn_io.media_type  MediaType
        Unsigned 32-bit integer
    pn_io.module  Module
        No value
    pn_io.module_ident_number  ModuleIdentNumber
        Unsigned 32-bit integer
    pn_io.module_properties  ModuleProperties
        Unsigned 16-bit integer
    pn_io.module_state  ModuleState
        Unsigned 16-bit integer
    pn_io.mrp_check  MRP_Check
        Unsigned 16-bit integer
    pn_io.mrp_domain_name  MRP_DomainName
        String
    pn_io.mrp_domain_uuid  MRP_DomainUUID
        Globally Unique Identifier
    pn_io.mrp_length_domain_name  MRP_LengthDomainName
        Unsigned 16-bit integer
    pn_io.mrp_lnkdownt  MRP_LNKdownT
        Unsigned 16-bit integer
        Link down Interval in ms
    pn_io.mrp_lnknrmax  MRP_LNKNRmax
        Unsigned 16-bit integer
    pn_io.mrp_lnkupt  MRP_LNKupT
        Unsigned 16-bit integer
        Link up Interval in ms
    pn_io.mrp_prio  MRP_Prio
        Unsigned 16-bit integer
    pn_io.mrp_ring_state  MRP_RingState
        Unsigned 16-bit integer
    pn_io.mrp_role  MRP_Role
        Unsigned 16-bit integer
    pn_io.mrp_rt_state  MRP_RTState
        Unsigned 16-bit integer
    pn_io.mrp_rtmode  MRP_RTMode
        Unsigned 32-bit integer
    pn_io.mrp_rtmode.class1_2  RTClass1_2
        Unsigned 32-bit integer
    pn_io.mrp_rtmode.class3  RTClass1_3
        Unsigned 32-bit integer
    pn_io.mrp_rtmode.reserved_1  Reserved_1
        Unsigned 32-bit integer
    pn_io.mrp_rtmode.reserved_2  Reserved_2
        Unsigned 32-bit integer
    pn_io.mrp_topchgt  MRP_TOPchgT
        Unsigned 16-bit integer
        time base 10ms
    pn_io.mrp_topnrmax  MRP_TOPNRmax
        Unsigned 16-bit integer
        number of iterations
    pn_io.mrp_tstdefaultt  MRP_TSTdefaultT
        Unsigned 16-bit integer
        time base 1ms
    pn_io.mrp_tstnrmax  MRP_TSTNRmax
        Unsigned 16-bit integer
        number of outstanding test indications causes ring failure
    pn_io.mrp_tstshortt  MRP_TSTshortT
        Unsigned 16-bit integer
        time base 1 ms
    pn_io.mrp_version  MRP_Version
        Unsigned 16-bit integer
    pn_io.multicast_boundary  MulticastBoundary
        Unsigned 32-bit integer
    pn_io.nr_of_tx_port_groups  NumberOfTxPortGroups
        Unsigned 8-bit integer
    pn_io.number_of_apis  NumberOfAPIs
        Unsigned 16-bit integer
    pn_io.number_of_ars  NumberOfARs
        Unsigned 16-bit integer
    pn_io.number_of_assignments  NumberOfAssignments
        Unsigned 32-bit integer
    pn_io.number_of_io_data_objects  NumberOfIODataObjects
        Unsigned 16-bit integer
    pn_io.number_of_iocrs  NumberOfIOCRs
        Unsigned 16-bit integer
    pn_io.number_of_iocs  NumberOfIOCS
        Unsigned 16-bit integer
    pn_io.number_of_log_entries  NumberOfLogEntries
        Unsigned 16-bit integer
    pn_io.number_of_modules  NumberOfModules
        Unsigned 16-bit integer
    pn_io.number_of_peers  NumberOfPeers
        Unsigned 8-bit integer
    pn_io.number_of_phases  NumberOfPhases
        Unsigned 32-bit integer
    pn_io.number_of_ports  NumberOfPorts
        Unsigned 32-bit integer
    pn_io.number_of_slots  NumberOfSlots
        Unsigned 16-bit integer
    pn_io.number_of_submodules  NumberOfSubmodules
        Unsigned 16-bit integer
    pn_io.number_of_subslots  NumberOfSubslots
        Unsigned 16-bit integer
    pn_io.opnum  Operation
        Unsigned 16-bit integer
    pn_io.orange_period_begin  OrangePeriodBegin
        Unsigned 32-bit integer
    pn_io.order_id  OrderID
        String
    pn_io.own_chassis_id  OwnChassisID
        String
    pn_io.own_port_id  OwnPortID
        String
    pn_io.parameter_server_objectuuid  ParameterServerObjectUUID
        Globally Unique Identifier
    pn_io.parameter_server_station_name  ParameterServerStationName
        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.peer_chassis_id  PeerChassisID
        String
    pn_io.peer_macadd  PeerMACAddress
        6-byte Hardware (MAC) Address
    pn_io.peer_port_id  PeerPortID
        String
    pn_io.phase  Phase
        Unsigned 16-bit integer
    pn_io.pllwindow  PLLWindow
        Unsigned 32-bit integer
    pn_io.port_state  PortState
        Unsigned 16-bit integer
    pn_io.profidrive.parameter.attribute  Attribute
        Unsigned 8-bit integer
    pn_io.profidrive.parameter.do  DO
        Unsigned 8-bit integer
    pn_io.profidrive.parameter.format  Format
        Unsigned 8-bit integer
    pn_io.profidrive.parameter.index  Index
        Unsigned 16-bit integer
    pn_io.profidrive.parameter.no_of_elems  NoOfElements
        Unsigned 8-bit integer
    pn_io.profidrive.parameter.no_of_parameters  NoOfParameters
        Unsigned 8-bit integer
    pn_io.profidrive.parameter.no_of_values  NoOfValues
        Unsigned 8-bit integer
    pn_io.profidrive.parameter.number  Parameter
        Unsigned 16-bit integer
    pn_io.profidrive.parameter.request_id  RequestID
        Unsigned 8-bit integer
    pn_io.profidrive.parameter.request_reference  RequestReference
        Unsigned 8-bit integer
    pn_io.profidrive.parameter.response_id  ResponseID
        Unsigned 8-bit integer
    pn_io.profidrive.parameter.value  Value
        Unsigned 16-bit integer
    pn_io.profisafe._f_par_crc  F_Par_CRC
        Unsigned 16-bit integer
    pn_io.profisafe._f_wd_time  F_WD_Time
        Unsigned 16-bit integer
    pn_io.profisafe.f_dst_addr  F_Destination_Address
        Unsigned 16-bit integer
    pn_io.profisafe.f_prm_flag1  F_Prm_Flag1
        Unsigned 8-bit integer
    pn_io.profisafe.f_prm_flag1.f_check_ipar  F_Check_iPar
        Unsigned 8-bit integer
    pn_io.profisafe.f_prm_flag1.f_check_seqnr  F_Check_SeqNr
        Unsigned 8-bit integer
    pn_io.profisafe.f_prm_flag1.f_crc_len  F_CRC_Length
        Unsigned 8-bit integer
    pn_io.profisafe.f_prm_flag1.f_sil  F_SIL
        Unsigned 8-bit integer
    pn_io.profisafe.f_prm_flag1.reserved  Reserved
        Unsigned 8-bit integer
    pn_io.profisafe.f_prm_flag2  F_Prm_Flag2
        Unsigned 8-bit integer
    pn_io.profisafe.f_prm_flag2.f_block_id  F_BlockId
        Unsigned 8-bit integer
    pn_io.profisafe.f_prm_flag2.f_par_version  F_ParVersion
        Unsigned 8-bit integer
    pn_io.profisafe.f_prm_flag2.reserved  Reserved
        Unsigned 8-bit integer
    pn_io.profisafe.f_src_addr  F_Source_Address
        Unsigned 16-bit integer
    pn_io.provider_station_name  ProviderStationName
        String
    pn_io.ptcp_length_subdomain_name  PTCPLengthSubdomainName
        Unsigned 8-bit integer
    pn_io.ptcp_master_priority_1  PTCP_MasterPriority1
        Unsigned 8-bit integer
    pn_io.ptcp_master_priority_2  PTCP_MasterPriority2
        Unsigned 8-bit integer
    pn_io.ptcp_master_startup_time  PTCPMasterStartupTime
        Unsigned 16-bit integer
    pn_io.ptcp_subdomain_id  PTCPSubdomainID
        Globally Unique Identifier
    pn_io.ptcp_subdomain_name  PTCPSubdomainName
        String
    pn_io.ptcp_takeover_timeout_factor  PTCPTakeoverTimeoutFactor
        Unsigned 16-bit integer
    pn_io.ptcp_timeout_factor  PTCPTimeoutFactor
        Unsigned 16-bit integer
    pn_io.record_data_length  RecordDataLength
        Unsigned 32-bit integer
    pn_io.red_orange_period_begin  RedOrangePeriodBegin
        Unsigned 32-bit integer
    pn_io.reduction_ratio  ReductionRatio
        Unsigned 16-bit integer
    pn_io.remotealarmref  RemoteAlarmReference
        Unsigned 16-bit integer
    pn_io.reserved16  Reserved
        Unsigned 16-bit integer
    pn_io.reserved_interval_begin  ReservedIntervalBegin
        Unsigned 32-bit integer
    pn_io.reserved_interval_end  ReservedIntervalEnd
        Unsigned 32-bit integer
    pn_io.rta_retries  RTARetries
        Unsigned 16-bit integer
    pn_io.rta_timeoutfactor  RTATimeoutFactor
        Unsigned 16-bit integer
    pn_io.rx_phase_assignment  RXPhaseAssignment
        Unsigned 16-bit integer
    pn_io.rx_port  RXPort
        Unsigned 8-bit integer
    pn_io.send_clock_factor  SendClockFactor
        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.sequence  Sequence
        Unsigned 16-bit integer
    pn_io.session_key  SessionKey
        Unsigned 16-bit integer
    pn_io.slot  Slot
        No value
    pn_io.slot_nr  SlotNumber
        Unsigned 16-bit integer
    pn_io.standard_gateway  StandardGateway
        IPv4 address
    pn_io.start_of_red_frame_id  StartOfRedFrameID
        Unsigned 16-bit integer
    pn_io.station_name_length  StationNameLength
        Unsigned 16-bit integer
    pn_io.status  Status
        No value
    pn_io.subframe_data  SubFrameData
        Unsigned 32-bit integer
    pn_io.subframe_data.data_length  DataLength
        Unsigned 32-bit integer
    pn_io.subframe_data.position  Position
        Unsigned 32-bit integer
    pn_io.subframe_data.reserved1  Reserved1
        Unsigned 32-bit integer
    pn_io.submodule  Submodule
        No value
    pn_io.submodule_data_length  SubmoduleDataLength
        Unsigned 16-bit integer
    pn_io.submodule_ident_number  SubmoduleIdentNumber
        Unsigned 32-bit integer
    pn_io.submodule_properties  SubmoduleProperties
        Unsigned 16-bit integer
    pn_io.submodule_properties.discard_ioxs  DiscardIOXS
        Unsigned 16-bit integer
    pn_io.submodule_properties.reduce_input_submodule_data_length  ReduceInputSubmoduleDataLength
        Unsigned 16-bit integer
    pn_io.submodule_properties.reduce_output_submodule_data_length  ReduceOutputSubmoduleDataLength
        Unsigned 16-bit integer
    pn_io.submodule_properties.reserved  Reserved
        Unsigned 16-bit integer
    pn_io.submodule_properties.shared_input  SharedInput
        Unsigned 16-bit integer
    pn_io.submodule_properties.type  Type
        Unsigned 16-bit integer
    pn_io.submodule_state  SubmoduleState
        Unsigned 16-bit integer
    pn_io.submodule_state.add_info  AddInfo
        Unsigned 16-bit integer
    pn_io.submodule_state.ar_info  ARInfo
        Unsigned 16-bit integer
    pn_io.submodule_state.detail  Detail
        Unsigned 16-bit integer
    pn_io.submodule_state.diag_info  DiagInfo
        Unsigned 16-bit integer
    pn_io.submodule_state.format_indicator  FormatIndicator
        Unsigned 16-bit integer
    pn_io.submodule_state.ident_info  IdentInfo
        Unsigned 16-bit integer
    pn_io.submodule_state.maintenance_demanded  MaintenanceDemanded
        Unsigned 16-bit integer
    pn_io.submodule_state.maintenance_required  MaintenanceRequired
        Unsigned 16-bit integer
    pn_io.submodule_state.qualified_info  QualifiedInfo
        Unsigned 16-bit integer
    pn_io.subnetmask  Subnetmask
        IPv4 address
    pn_io.subslot  Subslot
        No value
    pn_io.subslot_nr  SubslotNumber
        Unsigned 16-bit integer
    pn_io.substitute_active_flag  SubstituteActiveFlag
        Unsigned 16-bit integer
    pn_io.sync_frame_address  SyncFrameAddress
        Unsigned 16-bit integer
    pn_io.sync_properties  SyncProperties
        Unsigned 16-bit integer
    pn_io.sync_send_factor  SyncSendFactor
        Unsigned 32-bit integer
    pn_io.tack  TACK
        Unsigned 8-bit integer
    pn_io.target_ar_uuid  TargetARUUID
        Globally Unique Identifier
    pn_io.time_data_cycle  TimeDataCycle
        Unsigned 16-bit integer
    pn_io.time_io_input  TimeIOInput
        Unsigned 32-bit integer
    pn_io.time_io_input_valid  TimeIOInputValid
        Unsigned 32-bit integer
    pn_io.time_io_output  TimeIOOutput
        Unsigned 32-bit integer
    pn_io.time_io_output_valid  TimeIOOutputValid
        Unsigned 32-bit integer
    pn_io.transfer_status  TransferStatus
        Unsigned 8-bit integer
    pn_io.tx_phase_assignment  TXPhaseAssignment
        Unsigned 16-bit integer
    pn_io.user_structure_identifier  UserStructureIdentifier
        Unsigned 16-bit integer
    pn_io.var_part_len  VarPartLen
        Unsigned 16-bit integer
    pn_io.vendor_block_type  VendorBlockType
        Unsigned 16-bit integer
    pn_io.vendor_id_high  VendorIDHigh
        Unsigned 8-bit integer
    pn_io.vendor_id_low  VendorIDLow
        Unsigned 8-bit integer
    pn_io.watchdog_factor  WatchdogFactor
        Unsigned 16-bit integer
    pn_io.window_size  WindowSize
        Unsigned 8-bit integer

PROFINET MRP (pn_mrp)

    pn_mrp.blocked  Blocked
        Unsigned 16-bit integer
    pn_mrp.domain_uuid  DomainUUID
        Globally Unique Identifier
    pn_mrp.interval  Interval
        Unsigned 16-bit integer
        Interval for next topologie change event (in ms)
    pn_mrp.length  Length
        Unsigned 8-bit integer
    pn_mrp.manufacturer_oui  ManufacturerOUI
        Unsigned 24-bit integer
    pn_mrp.oui  Organizationally Unique Identifier
        Unsigned 24-bit integer
    pn_mrp.port_role  PortRole
        Unsigned 16-bit integer
    pn_mrp.prio  Prio
        Unsigned 16-bit integer
    pn_mrp.ring_state  RingState
        Unsigned 16-bit integer
    pn_mrp.sa  SA
        6-byte Hardware (MAC) Address
    pn_mrp.sequence_id  SequenceID
        Unsigned 16-bit integer
        Unique sequence number to each outstanding service request
    pn_mrp.time_stamp  TimeStamp
        Unsigned 16-bit integer
        Actual counter value of 1ms counter
    pn_mrp.transition  Transition
        Unsigned 16-bit integer
        Number of transitions between media redundancy lost and ok states
    pn_mrp.type  Type
        Unsigned 8-bit integer
    pn_mrp.version  Version
        Unsigned 16-bit integer

PROFINET MRRT (pn_mrrt)

    pn_mrrt.domain_uuid  DomainUUID
        Globally Unique Identifier
    pn_mrrt.length  Length
        Unsigned 8-bit integer
    pn_mrrt.sa  SA
        6-byte Hardware (MAC) Address
    pn_mrrt.sequence_id  SequenceID
        Unsigned 16-bit integer
        Unique sequence number to each outstanding service request
    pn_mrrt.type  Type
        Unsigned 8-bit integer
    pn_mrrt.version  Version
        Unsigned 16-bit integer

PROFINET PTCP (pn_ptcp)

    pn_ptcp.block  Block
        No value
    pn_ptcp.clock_accuracy  ClockAccuracy
        Unsigned 8-bit integer
    pn_ptcp.clock_class  ClockClass
        Unsigned 8-bit integer
    pn_ptcp.clockvariance  ClockVariance
        Signed 16-bit integer
    pn_ptcp.currentutcoffset  CurrentUTCOffset
        Unsigned 16-bit integer
    pn_ptcp.delay10ns  Delay10ns
        Unsigned 32-bit integer
    pn_ptcp.delay1ns  Delay1ns
        Unsigned 32-bit integer
    pn_ptcp.delay1ns_byte  Delay1ns_Byte
        Unsigned 8-bit integer
    pn_ptcp.delay1ns_fup  Delay1ns_FUP
        Signed 32-bit integer
    pn_ptcp.epoch_number  EpochNumber
        Unsigned 16-bit integer
    pn_ptcp.flags  Flags
        Unsigned 16-bit integer
    pn_ptcp.header  Header
        No value
    pn_ptcp.irdata_uuid  IRDataUUID
        Globally Unique Identifier
    pn_ptcp.master_priority1  MasterPriority1
        Unsigned 8-bit integer
    pn_ptcp.master_priority2  MasterPriority2
        Unsigned 8-bit integer
    pn_ptcp.master_source_address  MasterSourceAddress
        6-byte Hardware (MAC) Address
    pn_ptcp.nanoseconds  NanoSeconds
        Unsigned 32-bit integer
    pn_ptcp.oui  Organizationally Unique Identifier
        Unsigned 24-bit integer
    pn_ptcp.port_mac_address  PortMACAddress
        6-byte Hardware (MAC) Address
    pn_ptcp.res1  Reserved 1
        Unsigned 32-bit integer
    pn_ptcp.res2  Reserved 2
        Unsigned 32-bit integer
    pn_ptcp.seconds  Seconds
        Unsigned 32-bit integer
    pn_ptcp.sequence_id  SequenceID
        Unsigned 16-bit integer
    pn_ptcp.subdomain_uuid  SubdomainUUID
        Globally Unique Identifier
    pn_ptcp.subtype  Subtype
        Unsigned 8-bit integer
        PROFINET Subtype
    pn_ptcp.t2portrxdelay  T2PortRxDelay (ns)
        Unsigned 32-bit integer
    pn_ptcp.t2timestamp  T2TimeStamp (ns)
        Unsigned 32-bit integer
    pn_ptcp.t3porttxdelay  T3PortTxDelay (ns)
        Unsigned 32-bit integer
    pn_ptcp.tl_length  TypeLength.Length
        Unsigned 16-bit integer
    pn_ptcp.tl_type  TypeLength.Type
        Unsigned 16-bit integer
    pn_ptcp.tlvheader  TLVHeader
        No value

PROFINET Real-Time Protocol (pn_rt)

    pn.padding  Padding
        String
    pn.undecoded  Undecoded Data
        String
    pn.user_data  User Data
        String
    pn_rt.cycle_counter  CycleCounter
        Unsigned 16-bit integer
    pn_rt.ds  DataStatus
        Unsigned 8-bit integer
    pn_rt.ds_ignore  Ignore (1:Ignore/0:Evaluate)
        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_subframe_sender_mode  SubFrameSenderMode
        Unsigned 8-bit integer
    pn_rt.ds_valid  DataValid (1:Valid/0:Invalid)
        Unsigned 8-bit integer
    pn_rt.frag  PROFINET Real-Time Fragment
        No value
    pn_rt.frag_data  FragData
        String
    pn_rt.frag_data_length  FragDataLength
        Unsigned 8-bit integer
    pn_rt.frag_status  FragStatus
        No value
    pn_rt.frag_status.error  Error
        Unsigned 8-bit integer
    pn_rt.frag_status.fragment_number  FragmentNumber (zero based)
        Unsigned 8-bit integer
    pn_rt.frag_status.more_follows  MoreFollows
        Unsigned 8-bit integer
    pn_rt.frame_id  FrameID
        Unsigned 16-bit integer
    pn_rt.malformed  Malformed
        Byte array
    pn_rt.sf  SubFrame
        No value
    pn_rt.sf.crc16  CRC16
        Unsigned 16-bit integer
    pn_rt.sf.cycle_counter  CycleCounter
        Unsigned 8-bit integer
    pn_rt.sf.data_length  DataLength
        Unsigned 8-bit integer
    pn_rt.sf.position  Position
        Unsigned 8-bit integer
    pn_rt.sf.position_control  Control
        Unsigned 8-bit integer
    pn_rt.transfer_status  TransferStatus
        Unsigned 8-bit integer

PW Associated Channel Header (pwach)

PW Ethernet Control Word (pwethcw)

    pweth  PW (ethernet)
        Boolean
    pweth.cw  PW Control Word (ethernet)
        Boolean
    pweth.cw.sequence_number  PW sequence number (ethernet)
        Unsigned 16-bit integer

PW Frame Relay DLCI Control Word (pwfr)

    pwfr.becn  FR BECN
        Unsigned 8-bit integer
        FR Backward Explicit Congestion Notification bit
    pwfr.bits03  Bits 0 to 3
        Unsigned 8-bit integer
    pwfr.cr  FR Frame C/R
        Unsigned 8-bit integer
        FR frame Command/Response bit
    pwfr.de  FR DE bit
        Unsigned 8-bit integer
        FR Discard Eligibility bit
    pwfr.fecn  FR FECN
        Unsigned 8-bit integer
        FR Forward Explicit Congestion Notification bit
    pwfr.frag  Fragmentation
        Unsigned 8-bit integer
    pwfr.length  Length
        Unsigned 8-bit integer

PW MPLS Control Word (generic/preferred) (pwmcw)

P_Mul (ACP142) (p_mul)

    p_mul.ack_count  Count of Ack Info Entries
        Unsigned 16-bit integer
    p_mul.ack_info_entry  Ack Info Entry
        No value
    p_mul.ack_length  Length of Ack Info Entry
        Unsigned 16-bit integer
    p_mul.analysis.ack_first_in  Retransmission of Ack in
        Frame number
        This Ack was first sent in this frame
    p_mul.analysis.ack_in  Ack PDU in
        Frame number
        This packet has an Ack in this frame
    p_mul.analysis.ack_missing  Ack PDU missing
        No value
        The acknowledgement for this packet is missing
    p_mul.analysis.ack_time  Ack Time
        Time duration
        The time between the Last PDU and the Ack
    p_mul.analysis.addr_pdu_in  Address PDU in
        Frame number
        The Address PDU is found in this frame
    p_mul.analysis.addr_pdu_missing  Address PDU missing
        No value
        The Address PDU for this packet is missing
    p_mul.analysis.dup_ack_no  Duplicate ACK #
        Unsigned 32-bit integer
        Duplicate Ack count
    p_mul.analysis.elapsed_time  Time since Address PDU
        Time duration
        The time between the Address PDU and this PDU
    p_mul.analysis.last_pdu_in  Last Data PDU in
        Frame number
        The last Data PDU found in this frame
    p_mul.analysis.msg_first_in  Retransmission of Message in
        Frame number
        This Message was first sent in this frame
    p_mul.analysis.pdu_delay  PDU Delay
        Time duration
        The time between the last PDU and this PDU
    p_mul.analysis.prev_pdu_in  Previous PDU in
        Frame number
        The previous PDU is found in this frame
    p_mul.analysis.prev_pdu_missing  Previous PDU missing
        No value
        The previous PDU for this packet is missing
    p_mul.analysis.retrans_no  Retransmission #
        Unsigned 32-bit integer
        Retransmission count
    p_mul.analysis.retrans_time  Retransmission Time
        Time duration
        The time between the last PDU and this PDU
    p_mul.analysis.total_retrans_time  Total Retransmission Time
        Time duration
        The time between the first PDU and this PDU
    p_mul.analysis.total_time  Total Time
        Time duration
        The time between the first and the last Address PDU
    p_mul.analysis.trans_time  Transfer Time
        Time duration
        The time between the first Address PDU and the Ack
    p_mul.ann_mc_group  Announced Multicast Group
        Unsigned 32-bit integer
    p_mul.checksum  Checksum
        Unsigned 16-bit integer
    p_mul.checksum_bad  Bad
        Boolean
        True: checksum doesn't match packet content; False: matches content or not checked
    p_mul.checksum_good  Good
        Boolean
        True: checksum matches packet content; False: doesn't match content or not checked
    p_mul.data_fragment  Fragment of Data
        No value
    p_mul.dest_count  Count of Destination Entries
        Unsigned 16-bit integer
    p_mul.dest_entry  Destination Entry
        No value
    p_mul.dest_id  Destination ID
        IPv4 address
    p_mul.expiry_time  Expiry Time
        Date/Time stamp
    p_mul.fec.id  FEC ID
        Unsigned 8-bit integer
        Forward Error Correction ID
    p_mul.fec.length  FEC Parameter Length
        Unsigned 8-bit integer
        Forward Error Correction Parameter Length
    p_mul.fec.parameters  FEC Parameters
        No value
        Forward Error Correction Parameters
    p_mul.first  First
        Boolean
    p_mul.fragment  Message fragment
        Frame number
    p_mul.fragment.error  Message defragmentation error
        Frame number
    p_mul.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    p_mul.fragment.overlap  Message fragment overlap
        Boolean
    p_mul.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    p_mul.fragment.too_long_fragment  Message fragment too long
        Boolean
    p_mul.fragments  Message fragments
        No value
    p_mul.last  Last
        Boolean
    p_mul.length  Length of PDU
        Unsigned 16-bit integer
    p_mul.mc_group  Multicast Group
        Unsigned 32-bit integer
    p_mul.message_id  Message ID (MSID)
        Unsigned 32-bit integer
        Message ID
    p_mul.missing_seq_no  Missing Data PDU Seq Number
        Unsigned 16-bit integer
    p_mul.missing_seq_range  Missing Data PDU Seq Range
        Byte array
    p_mul.msg_seq_no  Message Sequence Number
        Unsigned 16-bit integer
    p_mul.no_missing_seq_no  Total Number of Missing Data PDU Sequence Numbers
        Unsigned 16-bit integer
    p_mul.no_pdus  Total Number of PDUs
        Unsigned 16-bit integer
    p_mul.pdu_type  PDU Type
        Unsigned 8-bit integer
    p_mul.priority  Priority
        Unsigned 8-bit integer
    p_mul.reassembled.in  Reassembled in
        Frame number
    p_mul.reassembled.length  Reassembled P_MUL length
        Unsigned 32-bit integer
    p_mul.reserved_length  Length of Reserved Field
        Unsigned 16-bit integer
    p_mul.seq_no  Sequence Number of PDUs
        Unsigned 16-bit integer
    p_mul.source_id  Source ID
        IPv4 address
    p_mul.source_id_ack  Source ID of Ack Sender
        IPv4 address
    p_mul.sym_key  Symmetric Key
        No value
    p_mul.timestamp  Timestamp Option
        Unsigned 64-bit integer
        Timestamp Option (in units of 100ms)
    p_mul.unused  MAP unused
        Unsigned 8-bit integer

Packed Encoding Rules (ASN.1 X.691) (per)

    per._const_int_len  Constrained Integer Length
        Unsigned 32-bit integer
        Number of bytes in the Constrained Integer
    per.arbitrary  arbitrary
        Byte array
        per.T_arbitrary
    per.bit_string_length  Bit String Length
        Unsigned 32-bit integer
        Number of bits in the Bit String
    per.choice_extension_index  Choice Extension Index
        Unsigned 32-bit integer
        Which index of the Choice within extension addition is encoded
    per.choice_index  Choice Index
        Unsigned 32-bit integer
        Which index of the Choice within extension root is encoded
    per.data_value_descriptor  data-value-descriptor
        String
        per.T_data_value_descriptor
    per.direct_reference  direct-reference
        Object Identifier
        per.T_direct_reference
    per.encoding  encoding
        Unsigned 32-bit integer
        per.External_encoding
    per.enum_extension_index  Enumerated Extension Index
        Unsigned 32-bit integer
        Which index of the Enumerated within extension addition is encoded
    per.enum_index  Enumerated Index
        Unsigned 32-bit integer
        Which index of the Enumerated within extension root 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.indirect_reference  indirect-reference
        Signed 32-bit integer
        per.T_indirect_reference
    per.integer_length  integer length
        Unsigned 32-bit integer
    per.num_sequence_extensions  Number of Sequence Extensions
        Unsigned 32-bit integer
        Number of extensions encoded in this sequence
    per.object_length  Object Identifier Length
        Unsigned 32-bit integer
        Length of the object identifier
    per.octet_aligned  octet-aligned
        Byte array
        per.T_octet_aligned
    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.real_length  Real Length
        Unsigned 32-bit integer
        Length of an real encoding
    per.sequence_of_length  Sequence-Of Length
        Unsigned 32-bit integer
        Number of items in the Sequence Of
    per.single_ASN1_type  single-ASN1-type
        No value
        per.T_single_ASN1_type
    per.small_number_bit  Small Number Bit
        Boolean
        The small number bit for a section 10.6 integer

Packet Cable Lawful Intercept (pcli)

    pcli.cccid  CCCID
        Unsigned 32-bit integer
        Call Content Connection Identifier

PacketCable (pktc)

    pktc.ack_required  ACK Required Flag
        Boolean
    pktc.asd  Application Specific Data
        No value
        KMMID/DOI application specific data
    pktc.asd.ipsec_auth_alg  IPsec Authentication Algorithm
        Unsigned 8-bit integer
    pktc.asd.ipsec_enc_alg  IPsec Encryption Transform ID
        Unsigned 8-bit integer
    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
    pktc.asd.snmp_enc_alg  SNMPv3 Encryption Transform ID
        Unsigned 8-bit integer
    pktc.asd.snmp_engine_boots  SNMPv3 Engine Boots
        Unsigned 32-bit integer
    pktc.asd.snmp_engine_id  SNMPv3 Engine ID
        Byte array
    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
    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
    pktc.ciphers.len  Number of Ciphersuites
        Unsigned 8-bit integer
    pktc.doi  Domain of Interpretation
        Unsigned 8-bit integer
    pktc.grace_period  Grace Period
        Unsigned 32-bit integer
        Grace Period in seconds
    pktc.kmmid  Key Management Message ID
        Unsigned 8-bit integer
    pktc.mtafqdn.enterprise  Enterprise Number
        Unsigned 32-bit integer
    pktc.mtafqdn.fqdn  MTA FQDN
        String
    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
    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
    pktc.server_nonce  Server Nonce
        Unsigned 32-bit integer
        Server Nonce random number
    pktc.server_principal  Server Kerberos Principal Identifier
        String
    pktc.sha1_hmac  SHA-1 HMAC
        Byte array
    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

PacketCable AVPs (paketcable_avps)

    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  Minimum 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  Minimum 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

PacketCable Call Content Connection (pkt_ccc)

    pkt_ccc.ccc_id  PacketCable CCC Identifier
        Unsigned 32-bit integer
        CCC_ID
    pkt_ccc.ts  PacketCable CCC Timestamp
        Byte array
        Timestamp

PacketLogger (packetlogger)

    packetlogger.info  Info
        String
    packetlogger.type  Type
        Unsigned 8-bit integer

Packetized Elementary Stream (mpeg-pes)

    mpeg-pes.additional_copy_info_flag  additional-copy-info-flag
        Boolean
        BOOLEAN
    mpeg-pes.aspect_ratio  aspect-ratio
        Unsigned 32-bit integer
        T_aspect_ratio
    mpeg-pes.bit_rate  bit-rate
        Byte array
        BIT_STRING_SIZE_18
    mpeg-pes.bit_rate_extension  bit-rate-extension
        Byte array
        BIT_STRING_SIZE_12
    mpeg-pes.broken_gop  broken-gop
        Boolean
        BOOLEAN
    mpeg-pes.chroma_format  chroma-format
        Unsigned 32-bit integer
        INTEGER_0_3
    mpeg-pes.closed_gop  closed-gop
        Boolean
        BOOLEAN
    mpeg-pes.constrained_parameters_flag  constrained-parameters-flag
        Boolean
        BOOLEAN
    mpeg-pes.copy-info  copy info
        Unsigned 8-bit integer
    mpeg-pes.copyright  copyright
        Boolean
        BOOLEAN
    mpeg-pes.crc  CRC
        Unsigned 16-bit integer
    mpeg-pes.crc_flag  crc-flag
        Boolean
        BOOLEAN
    mpeg-pes.data  PES data
        Byte array
    mpeg-pes.data_alignment  data-alignment
        Boolean
        BOOLEAN
    mpeg-pes.drop_frame_flag  drop-frame-flag
        Boolean
        BOOLEAN
    mpeg-pes.dsm_trick_mode_flag  dsm-trick-mode-flag
        Boolean
        BOOLEAN
    mpeg-pes.dts  decode time stamp (DTS)
        Time duration
    mpeg-pes.dts_flag  dts-flag
        Boolean
        BOOLEAN
    mpeg-pes.es-rate  elementary stream rate
        Unsigned 24-bit integer
    mpeg-pes.es_rate_flag  es-rate-flag
        Boolean
        BOOLEAN
    mpeg-pes.escr  elementary stream clock reference (ESCR)
        Time duration
    mpeg-pes.escr_flag  escr-flag
        Boolean
        BOOLEAN
    mpeg-pes.extension  PES extension
        No value
    mpeg-pes.extension-flags  extension flags
        Unsigned 8-bit integer
    mpeg-pes.extension2  extension2
        Unsigned 16-bit integer
    mpeg-pes.extension_flag  extension-flag
        Boolean
        BOOLEAN
    mpeg-pes.frame  frame
        Unsigned 32-bit integer
        INTEGER_0_64
    mpeg-pes.frame_rate  frame-rate
        Unsigned 32-bit integer
    mpeg-pes.frame_rate_extension_d  frame-rate-extension-d
        Unsigned 32-bit integer
        INTEGER_0_3
    mpeg-pes.frame_rate_extension_n  frame-rate-extension-n
        Unsigned 32-bit integer
        INTEGER_0_3
    mpeg-pes.frame_type  frame-type
        Unsigned 32-bit integer
    mpeg-pes.header-data  PES header data
        Byte array
    mpeg-pes.header_data_length  header-data-length
        Unsigned 32-bit integer
        INTEGER_0_255
    mpeg-pes.horizontal_size  horizontal-size
        Byte array
        BIT_STRING_SIZE_12
    mpeg-pes.horizontal_size_extension  horizontal-size-extension
        Unsigned 32-bit integer
        INTEGER_0_3
    mpeg-pes.hour  hour
        Unsigned 32-bit integer
        INTEGER_0_32
    mpeg-pes.length  length
        Unsigned 16-bit integer
        INTEGER_0_65535
    mpeg-pes.load_intra_quantiser_matrix  load-intra-quantiser-matrix
        Boolean
        BOOLEAN
    mpeg-pes.load_non_intra_quantiser_matrix  load-non-intra-quantiser-matrix
        Boolean
        BOOLEAN
    mpeg-pes.low_delay  low-delay
        Boolean
        BOOLEAN
    mpeg-pes.minute  minute
        Unsigned 32-bit integer
        INTEGER_0_64
    mpeg-pes.must_be_0001  must-be-0001
        Byte array
        BIT_STRING_SIZE_4
    mpeg-pes.must_be_one  must-be-one
        Boolean
        BOOLEAN
    mpeg-pes.must_be_zero  must-be-zero
        Boolean
        BOOLEAN
    mpeg-pes.original  original
        Boolean
        BOOLEAN
    mpeg-pes.pack  Pack header
        No value
    mpeg-pes.pack-length  pack length
        Unsigned 8-bit integer
    mpeg-pes.padding  PES padding
        Byte array
    mpeg-pes.prefix  prefix
        Byte array
        OCTET_STRING_SIZE_3
    mpeg-pes.priority  priority
        Boolean
        BOOLEAN
    mpeg-pes.private-data  private data
        Unsigned 16-bit integer
    mpeg-pes.profile_and_level  profile-and-level
        Unsigned 32-bit integer
        INTEGER_0_255
    mpeg-pes.program-mux-rate  PES program mux rate
        Unsigned 24-bit integer
    mpeg-pes.progressive_sequence  progressive-sequence
        Boolean
        BOOLEAN
    mpeg-pes.pstd-buffer  P-STD buffer size
        Unsigned 16-bit integer
    mpeg-pes.pts  presentation time stamp (PTS)
        Time duration
    mpeg-pes.pts_flag  pts-flag
        Boolean
        BOOLEAN
    mpeg-pes.scr  system clock reference (SCR)
        Time duration
    mpeg-pes.scrambling_control  scrambling-control
        Unsigned 32-bit integer
    mpeg-pes.second  second
        Unsigned 32-bit integer
        INTEGER_0_64
    mpeg-pes.sequence  sequence
        Unsigned 16-bit integer
    mpeg-pes.stream  stream
        Unsigned 8-bit integer
    mpeg-pes.stuffing  PES stuffing bytes
        Byte array
    mpeg-pes.stuffing-length  PES stuffing length
        Unsigned 8-bit integer
    mpeg-pes.temporal_sequence_number  temporal-sequence-number
        Byte array
        BIT_STRING_SIZE_10
    mpeg-pes.trick-mode  Trick mode
        Byte array
    mpeg-pes.trick-mode-control  control
        Unsigned 8-bit integer
        mpeg_pes trick mode control
    mpeg-pes.trick-mode-field-id  field id
        Unsigned 8-bit integer
        mpeg_pes trick mode field id
    mpeg-pes.trick-mode-frequeny-truncation  frequency truncation
        Unsigned 8-bit integer
        mpeg_pes trick mode frequency truncation
    mpeg-pes.trick-mode-intra-slice-refresh  intra slice refresh
        Unsigned 8-bit integer
        mpeg_pes trick mode intra slice refresh
    mpeg-pes.trick-mode-rep-cntrl  rep cntrl
        Unsigned 8-bit integer
        mpeg_pes trick mode rep cntrl
    mpeg-pes.vbv_buffer_size  vbv-buffer-size
        Byte array
        BIT_STRING_SIZE_10
    mpeg-pes.vbv_buffer_size_extension  vbv-buffer-size-extension
        Unsigned 32-bit integer
        INTEGER_0_255
    mpeg-pes.vbv_delay  vbv-delay
        Byte array
        BIT_STRING_SIZE_16
    mpeg-pes.vertical_size  vertical-size
        Byte array
        BIT_STRING_SIZE_12
    mpeg-pes.vertical_size_extension  vertical-size-extension
        Unsigned 32-bit integer
        INTEGER_0_3
    mpeg-video.data  MPEG picture data
        Byte array
    mpeg-video.gop  MPEG group of pictures
        No value
    mpeg-video.picture  MPEG picture
        No value
    mpeg-video.quant  MPEG quantization matrix
        Byte array
    mpeg-video.sequence  MPEG sequence header
        No value
    mpeg-video.sequence-ext  MPEG sequence extension
        No value

Paltalk Messenger Protocol (paltalk)

    paltalk.content  Payload Content
        Byte array
    paltalk.length  Payload Length
        Signed 16-bit integer
    paltalk.type  Packet Type
        Unsigned 16-bit integer
    paltalk.version  Protocol Version
        Signed 16-bit integer

Parallel Redundancy Protocol (IEC62439 Chapter 6) (prp)

    prp.supervision_frame.length  length
        Unsigned 8-bit integer
    prp.supervision_frame.length2  length2
        Unsigned 8-bit integer
    prp.supervision_frame.prp_red_box_mac_address  redBoxMacAddress
        6-byte Hardware (MAC) Address
    prp.supervision_frame.prp_source_mac_address_A  sourceMacAddressA
        6-byte Hardware (MAC) Address
    prp.supervision_frame.prp_source_mac_address_B  sourceMacAddressB
        6-byte Hardware (MAC) Address
    prp.supervision_frame.prp_vdan_mac_address  vdanMacAddress
        6-byte Hardware (MAC) Address
    prp.supervision_frame.type  type
        Unsigned 8-bit integer
    prp.supervision_frame.type2  type2
        Unsigned 8-bit integer
    prp.supervision_frame.version  version
        Unsigned 16-bit integer
    prp.trailer.prp_lan  lan
        Unsigned 16-bit integer
    prp.trailer.prp_sequence_nr  sequenceNr
        Unsigned 16-bit integer
    prp.trailer.prp_size  size
        Unsigned 16-bit integer

Parallel Virtual File System (pvfs)

    pvfs.aggregate_size  Aggregate Size
        Unsigned 64-bit integer
    pvfs.atime  atime
        Date/Time stamp
        Access Time
    pvfs.atime.sec  seconds
        Unsigned 32-bit integer
        Access Time (seconds)
    pvfs.atime.usec  microseconds
        Unsigned 32-bit integer
        Access Time (microseconds)
    pvfs.attribute  attr
        Unsigned 32-bit integer
        Attribute
    pvfs.attribute.key  Attribute key
        String
    pvfs.attribute.value  Attribute value
        String
    pvfs.attrmask  attrmask
        Unsigned 32-bit integer
        Attribute Mask
    pvfs.b_size  Size of bstream (if applicable)
        Unsigned 64-bit integer
        Size of bstream
    pvfs.bytes_available  Bytes Available
        Unsigned 64-bit integer
    pvfs.bytes_completed  Bytes Completed
        Unsigned 64-bit integer
    pvfs.bytes_read  bytes_read
        Unsigned 64-bit integer
    pvfs.bytes_total  Bytes Total
        Unsigned 64-bit integer
    pvfs.bytes_written  bytes_written
        Unsigned 64-bit integer
    pvfs.context_id  Context ID
        Unsigned 32-bit integer
    pvfs.ctime  ctime
        Date/Time stamp
        Creation Time
    pvfs.ctime.sec  seconds
        Unsigned 32-bit integer
        Creation Time (seconds)
    pvfs.ctime.usec  microseconds
        Unsigned 32-bit integer
        Creation Time (microseconds)
    pvfs.cur_time_ms  cur_time_ms
        Unsigned 64-bit integer
    pvfs.directory_version  Directory Version
        Unsigned 64-bit integer
    pvfs.dirent_count  Dir Entry Count
        Unsigned 64-bit integer
        Directory Entry Count
    pvfs.distribution.name  Name
        String
        Distribution Name
    pvfs.ds_type  ds_type
        Unsigned 32-bit integer
        Type
    pvfs.encoding  Encoding
        Unsigned 32-bit integer
    pvfs.end_time_ms  end_time_ms
        Unsigned 64-bit integer
    pvfs.ereg  ereg
        Signed 32-bit integer
    pvfs.error  Result
        Unsigned 32-bit integer
    pvfs.fh.hash  hash
        Unsigned 32-bit integer
        file handle hash
    pvfs.fh.length  length
        Unsigned 32-bit integer
        file handle length
    pvfs.flowproto_type  Flow Protocol Type
        Unsigned 32-bit integer
    pvfs.fs_id  fs_id
        Unsigned 32-bit integer
        File System ID
    pvfs.handle  Handle
        Byte array
    pvfs.handles_available  Handles Available
        Unsigned 64-bit integer
    pvfs.id_gen_t  id_gen_t
        Unsigned 64-bit integer
    pvfs.io_type  I/O Type
        Unsigned 32-bit integer
    pvfs.k_size  Number of keyvals (if applicable)
        Unsigned 64-bit integer
        Number of keyvals
    pvfs.lb  lb
        Unsigned 64-bit integer
    pvfs.load_average.15s  Load Average (15s)
        Unsigned 64-bit integer
    pvfs.load_average.1s  Load Average (1s)
        Unsigned 64-bit integer
    pvfs.load_average.5s  Load Average (5s)
        Unsigned 64-bit integer
    pvfs.magic_nr  Magic Number
        Unsigned 32-bit integer
    pvfs.metadata_read  metadata_read
        Unsigned 64-bit integer
    pvfs.metadata_write  metadata_write
        Unsigned 64-bit integer
    pvfs.mode  Mode
        Unsigned 32-bit integer
    pvfs.mtime  mtime
        Date/Time stamp
        Modify Time
    pvfs.mtime.sec  seconds
        Unsigned 32-bit integer
        Modify Time (seconds)
    pvfs.mtime.usec  microseconds
        Unsigned 32-bit integer
        Modify Time (microseconds)
    pvfs.num_blocks  Number of blocks
        Unsigned 32-bit integer
    pvfs.num_contig_chunks  Number of contig_chunks
        Unsigned 32-bit integer
    pvfs.num_eregs  Number of eregs
        Unsigned 32-bit integer
    pvfs.offset  Offset
        Unsigned 64-bit integer
    pvfs.parent_atime  Parent atime
        Date/Time stamp
        Access Time
    pvfs.parent_atime.sec  seconds
        Unsigned 32-bit integer
        Access Time (seconds)
    pvfs.parent_atime.usec  microseconds
        Unsigned 32-bit integer
        Access Time (microseconds)
    pvfs.parent_ctime  Parent ctime
        Date/Time stamp
        Creation Time
    pvfs.parent_ctime.sec  seconds
        Unsigned 32-bit integer
        Creation Time (seconds)
    pvfs.parent_ctime.usec  microseconds
        Unsigned 32-bit integer
        Creation Time (microseconds)
    pvfs.parent_mtime  Parent mtime
        Date/Time stamp
        Modify Time
    pvfs.parent_mtime.sec  seconds
        Unsigned 32-bit integer
        Modify Time (seconds)
    pvfs.parent_mtime.usec  microseconds
        Unsigned 32-bit integer
        Modify Time (microseconds)
    pvfs.path  Path
        String
    pvfs.prev_value  Previous Value
        Unsigned 64-bit integer
    pvfs.ram.free_bytes  RAM Free Bytes
        Unsigned 64-bit integer
    pvfs.ram_bytes_free  RAM Bytes Free
        Unsigned 64-bit integer
    pvfs.ram_bytes_total  RAM Bytes Total
        Unsigned 64-bit integer
    pvfs.release_number  Release Number
        Unsigned 32-bit integer
    pvfs.server_count  Number of servers
        Unsigned 32-bit integer
    pvfs.server_nr  Server #
        Unsigned 32-bit integer
    pvfs.server_op  Server Operation
        Unsigned 32-bit integer
    pvfs.server_param  Server Parameter
        Unsigned 32-bit integer
    pvfs.size  Size
        Unsigned 64-bit integer
    pvfs.sreg  sreg
        Signed 32-bit integer
    pvfs.start_time_ms  start_time_ms
        Unsigned 64-bit integer
    pvfs.stride  Stride
        Unsigned 64-bit integer
    pvfs.strip_size  Strip size
        Unsigned 64-bit integer
        Strip size (bytes)
    pvfs.tag  Tag
        Unsigned 64-bit integer
    pvfs.total_handles  Total Handles
        Unsigned 64-bit integer
    pvfs.ub  ub
        Unsigned 64-bit integer
    pvfs.unused  Unused
        Unsigned 32-bit integer
    pvfs.uptime  Uptime (seconds)
        Unsigned 64-bit integer

Parlay Dissector Using GIOP API (giop-parlay)

Path Computation Element communication Protocol (pcep)

    pcep.error.type  Error-Type
        Unsigned 8-bit integer
    pcep.hdr.msg.flags.reserved  Reserved Flags
        Boolean
    pcep.hdr.obj.flags.i  Ignore (I)
        Boolean
    pcep.hdr.obj.flags.p  Processing-Rule (P)
        Boolean
    pcep.hdr.obj.flags.reserved  Reserved Flags
        Boolean
    pcep.lspa.flags.l  Local Protection Desired (L)
        Boolean
    pcep.metric.flags.b  Bound (B)
        Boolean
    pcep.metric.flags.c  Cost (C)
        Boolean
    pcep.msg  Message Type
        Unsigned 8-bit integer
    pcep.msg.close  Close Message
        Boolean
    pcep.msg.error  Error Message
        Boolean
    pcep.msg.keepalive  Keepalive Message
        Boolean
    pcep.msg.notification  Notification Message
        Boolean
    pcep.msg.open  Open Message
        Boolean
    pcep.msg.path.computation.reply  Path Computation Reply Mesagge
        Boolean
    pcep.msg.path.computation.request  Path Computation Request Message
        Boolean
    pcep.no.path.flags.c  C
        Boolean
    pcep.notification.type  Notification Type
        Unsigned 32-bit integer
    pcep.notification.type2  Notification Type
        Unsigned 32-bit integer
    pcep.notification.value1  Notification Value
        Unsigned 32-bit integer
    pcep.obj.bandwidth  BANDWIDTH object
        No value
    pcep.obj.close  CLOSE object
        No value
    pcep.obj.endpoint  END-POINT object
        No value
    pcep.obj.ero  EXPLICIT ROUTE object (ERO)
        No value
    pcep.obj.error  ERROR object
        No value
    pcep.obj.iro  IRO object
        No value
    pcep.obj.loadbalancing  LOAD BALANCING object
        No value
    pcep.obj.lspa  LSPA object
        No value
    pcep.obj.metric  METRIC object
        No value
    pcep.obj.nopath  NO-PATH object
        No value
    pcep.obj.notification  NOTIFICATION object
        No value
    pcep.obj.open  OPEN object
        No value
    pcep.obj.rp  RP object
        No value
    pcep.obj.rro  RECORD ROUTE object (RRO)
        No value
    pcep.obj.svec  SVEC object
        No value
    pcep.obj.xro  EXCLUDE ROUTE object (XRO)
        No value
    pcep.object  Object Class
        Unsigned 32-bit integer
    pcep.open.flags.res  Reserved Flags
        Boolean
    pcep.rp.flags.b  Bi-directional (L)
        Boolean
    pcep.rp.flags.o  Strict/Loose (L)
        Boolean
    pcep.rp.flags.pri  Priority (PRI)
        Boolean
    pcep.rp.flags.r  Reoptimization (R)
        Boolean
    pcep.rp.flags.reserved  Reserved Flags
        Boolean
    pcep.subobj  Type
        Unsigned 8-bit integer
    pcep.subobj.autonomous.sys.num  SUBOBJECT: Autonomous System Number
        No value
    pcep.subobj.exrs  SUBOBJECT: EXRS
        No value
    pcep.subobj.flags.lpa  Local Protection Available
        Boolean
    pcep.subobj.flags.lpu  Local protection in Use
        Boolean
    pcep.subobj.ipv4  SUBOBJECT: IPv4 Prefix
        No value
    pcep.subobj.ipv6  SUBOBJECT: IPv6 Prefix
        No value
    pcep.subobj.label  Type
        Unsigned 32-bit integer
    pcep.subobj.label.control  SUBOBJECT: Label Control
        No value
    pcep.subobj.label.flags.gl  Global Label
        Boolean
    pcep.subobj.srlg  SUBOBJECT: SRLG
        No value
    pcep.subobj.unnum.interfaceid  SUBOBJECT: Unnumbered Interface ID
        No value
    pcep.svec.flags.l  Link diverse (L)
        Boolean
    pcep.svec.flags.n  Node diverse (N)
        Boolean
    pcep.svec.flags.s  SRLG diverse (S)
        Boolean
    pcep.xro.flags.f  Fail (F)
        Boolean
    pcep.xro.sub.attribute  Attribute
        Unsigned 32-bit integer

Peer Network Resolution Protocol (pnrp)

    pnrp.encodedCPA  Encoded CPA structure
        No value
    pnrp.encodedCPA.binaryAuthority  Binary Authoriy
        Byte array
        SHA-1 Hash of PublicKey Data field
    pnrp.encodedCPA.classifierHash  Classifiert Hash
        Byte array
        SHA-1 Hash of the classifier text
    pnrp.encodedCPA.expirationDate  CPA expiration Date
        Unsigned 64-bit integer
        CPA expiration Date since January 1, 1601 UTC
    pnrp.encodedCPA.flags  Flags
        Unsigned 8-bit integer
    pnrp.encodedCPA.flags.abit  CPA contains Binary (A)uthority field 
        Unsigned 8-bit integer
    pnrp.encodedCPA.flags.cbit  CPA contains (C)lassifier Hash 
        Unsigned 8-bit integer
    pnrp.encodedCPA.flags.fbit  CPA contains (F)riendly Name 
        Unsigned 8-bit integer
    pnrp.encodedCPA.flags.rbit  This is a (r)evoke CPA
        Unsigned 8-bit integer
    pnrp.encodedCPA.flags.reserved  Reserved 
        Unsigned 8-bit integer
    pnrp.encodedCPA.flags.ubit  Friendly Name in (U)TF-8 
        Unsigned 8-bit integer
    pnrp.encodedCPA.flags.xbit  CPA has E(X)tended Payload 
        Unsigned 8-bit integer
    pnrp.encodedCPA.friendlyName  Friendly Name of PNRP ID
        String
        A human-readable label identifying the PNRP ID
    pnrp.encodedCPA.lenght  Length
        Unsigned 16-bit integer
    pnrp.encodedCPA.serviceLocation  Service Location
        Byte array
    pnrp.encodedCPA.vMajor  CPA Major Version 
        Unsigned 8-bit integer
    pnrp.encodedCPA.vMinor  CPA Minor Version
        Unsigned 8-bit integer
    pnrp.header  Header
        No value
        PNRP Header
    pnrp.header.fieldID  Header FieldID
        Unsigned 16-bit integer
    pnrp.header.lenght  Header length
        Unsigned 16-bit integer
    pnrp.header.messageID  Message ID
        Unsigned 32-bit integer
    pnrp.ident  Ident
        Unsigned 8-bit integer
    pnrp.lookupControls.flags  Flags
        Unsigned 16-bit integer
    pnrp.lookupControls.flags.0bit  0 bit - reserved: 
        Unsigned 16-bit integer
    pnrp.lookupControls.flags.Abit  A bit: 
        Unsigned 16-bit integer
        Sender is willing to accept returned nodes that are not closer to the target ID than the Validate PNRP ID
    pnrp.lookupControls.flags.reserved  Reserved 
        Unsigned 16-bit integer
    pnrp.lookupControls.precision  Precision
        Unsigned 16-bit integer
        Precision - Number of significant bits to match
    pnrp.lookupControls.reasonCode  Reason Code
        Unsigned 8-bit integer
    pnrp.lookupControls.resolveCriteria  Resolve Criteria
        Unsigned 8-bit integer
    pnrp.messageType  Message Type
        Unsigned 8-bit integer
    pnrp.publicKey.objID  Public Key Object Identifier
        String
        An ASN.1-encoded object identifier (OID) indicating the public key format
    pnrp.publicKey.publicKeyData  Public Key Data
        String
        An ASN.1-encoded 1024-bit RSA public key
    pnrp.segment.ElementFieldType  Type of Array Entry 
        Unsigned 16-bit integer
    pnrp.segment.ack.flags.Nbit  (N)ot found Bit
        Boolean
    pnrp.segment.ack.flags.reserved  Reserved
        Boolean
    pnrp.segment.authority.flags  Flags
        Unsigned 16-bit integer
    pnrp.segment.authority.flags.Bbit  (B)usy
        Unsigned 16-bit integer
    pnrp.segment.authority.flags.Lbit  (L)eaf Set
        Unsigned 16-bit integer
    pnrp.segment.authority.flags.Nbit  (N)ot found
        Unsigned 16-bit integer
    pnrp.segment.authority.flags.reserved1  Reserved 1
        Unsigned 16-bit integer
    pnrp.segment.authority.flags.reserved2  Reserved 2
        Unsigned 16-bit integer
    pnrp.segment.authority.flags.reserved3  Reserved 3
        Unsigned 16-bit integer
    pnrp.segment.certChain  Certificate Chain 
        Byte array
        A Certificate Chain, containing the public key used to sign the CPA and its Certificate Chain
    pnrp.segment.classifier.arrayLength  Array Length
        Unsigned 16-bit integer
    pnrp.segment.classifier.entryLength  Entry Length
        Unsigned 16-bit integer
    pnrp.segment.classifier.unicodeCount  Number of Unicode Characters
        Unsigned 16-bit integer
    pnrp.segment.flood.flags.Dbit  (D)on't send ACK
        Boolean
    pnrp.segment.flood.flags.reserved  Reserved
        Boolean
    pnrp.segment.hashednonce  Hashed Nonce
        Byte array
    pnrp.segment.headerAck  ACKed Header ID
        Unsigned 32-bit integer
    pnrp.segment.idArray.Entrylength  Length of each Array Entry 
        Unsigned 16-bit integer
    pnrp.segment.idArray.Length  Length of Array 
        Unsigned 16-bit integer
    pnrp.segment.idArray.NumEnries  Number of Entries
        Unsigned 16-bit integer
    pnrp.segment.inquire.flags  Flags
        Unsigned 16-bit integer
    pnrp.segment.inquire.flags.Abit  CPA should (a)ppear in response
        Unsigned 16-bit integer
    pnrp.segment.inquire.flags.Cbit  (C)ertificate Chain sent in Authority response
        Unsigned 16-bit integer
    pnrp.segment.inquire.flags.Xbit  E(X)tended Payload sent in Authority response
        Unsigned 16-bit integer
    pnrp.segment.inquire.flags.reserved1  Reserved 1
        Unsigned 16-bit integer
    pnrp.segment.inquire.flags.reserved2  Reserved 2
        Unsigned 16-bit integer
    pnrp.segment.ipv6Address  IPv6 Address
        IPv6 address
        IPv6 Address
    pnrp.segment.ipv6EndpointArray.ArrayLength  Array Length:
        Unsigned 16-bit integer
    pnrp.segment.ipv6EndpointArray.EntryLength  Entry Length
        Unsigned 16-bit integer
    pnrp.segment.ipv6EndpointArray.NumberOfEntries  Number of Entries:
        Unsigned 16-bit integer
    pnrp.segment.length  Segment length
        Unsigned 16-bit integer
        Message length
    pnrp.segment.nonce  Nonce
        Byte array
    pnrp.segment.pnrpID  PNRP ID
        Byte array
    pnrp.segment.routeEntry.addressCount  Address Count
        Unsigned 8-bit integer
    pnrp.segment.routeEntry.flags  Flags
        Unsigned 8-bit integer
    pnrp.segment.routeEntry.portNumber  Port Number
        Unsigned 16-bit integer
    pnrp.segment.solicitType  Solicit Type 
        Unsigned 8-bit integer
    pnrp.segment.splitControls.authorityBuffer  Authority  Buffer Size:
        Unsigned 16-bit integer
    pnrp.segment.type  Segment Type
        Unsigned 16-bit integer
    pnrp.signature.data  Signature 
        Byte array
        Signature created when signing the CPA
    pnrp.vMajor  Version Major
        Unsigned 8-bit integer
    pnrp.vMinor  Version Minor
        Unsigned 8-bit integer

Pegasus Lightweight Stream Control (lsc)

    lsc.current_npt  Current NPT
        Signed 32-bit integer
        Current Time (milliseconds)
    lsc.mode  Server Mode
        Unsigned 8-bit integer
        Current Server Mode
    lsc.op_code  Op Code
        Unsigned 8-bit integer
        Operation Code
    lsc.scale_denum  Scale Denominator
        Unsigned 16-bit integer
    lsc.scale_num  Scale Numerator
        Signed 16-bit integer
    lsc.start_npt  Start NPT
        Signed 32-bit integer
        Start Time (milliseconds)
    lsc.status_code  Status Code
        Unsigned 8-bit integer
    lsc.stop_npt  Stop NPT
        Signed 32-bit integer
        Stop Time (milliseconds)
    lsc.stream_handle  Stream Handle
        Unsigned 32-bit integer
        Stream identification handle
    lsc.trans_id  Transaction ID
        Unsigned 8-bit integer
    lsc.version  Version
        Unsigned 8-bit integer
        Version of the Pegasus LSC protocol

Ping Pong Protocol (pingpongprotocol)

    pingpongprotocol.message_flags  Flags
        Unsigned 8-bit integer
    pingpongprotocol.message_length  Length
        Unsigned 16-bit integer
    pingpongprotocol.message_type  Type
        Unsigned 8-bit integer
    pingpongprotocol.ping_data  Ping_Data
        Byte array
    pingpongprotocol.ping_messageno  MessageNo
        Unsigned 64-bit integer
    pingpongprotocol.pong_data  Pong_Data
        Byte array
    pingpongprotocol.pong_messageno  MessageNo
        Unsigned 64-bit integer
    pingpongprotocol.pong_replyno  ReplyNo
        Unsigned 64-bit integer

Plan 9 9P (9p)

    9p.aname  Aname
        String
        Access Name
    9p.atime  Atime
        Date/Time stamp
        Access Time
    9p.count  Count
        Unsigned 32-bit integer
    9p.dev  Dev
        Unsigned 32-bit integer
    9p.ename  Ename
        String
        Error
    9p.fid  Fid
        Unsigned 32-bit integer
        File ID
    9p.filename  File name
        String
    9p.gid  Gid
        String
        Group id
    9p.iounit  I/O Unit
        Unsigned 32-bit integer
    9p.length  Length
        Unsigned 64-bit integer
        File Length
    9p.maxsize  Max msg size
        Unsigned 32-bit integer
        Max message size
    9p.mode  Mode
        Unsigned 8-bit integer
    9p.mode.orclose  Remove on close
        Boolean
    9p.mode.rwx  Open/Create Mode
        Unsigned 8-bit integer
    9p.mode.trunc  Trunc
        Boolean
        Truncate
    9p.msglen  Msg length
        Unsigned 32-bit integer
        9P Message Length
    9p.msgtype  Msg Type
        Unsigned 8-bit integer
        Message Type
    9p.mtime  Mtime
        Date/Time stamp
        Modified Time
    9p.muid  Muid
        String
        Last modifiers uid
    9p.name  Name
        String
        Name of file
    9p.newfid  New fid
        Unsigned 32-bit integer
        New file ID
    9p.nqid  Nr Qids
        Unsigned 16-bit integer
        Number of Qid results
    9p.nwalk  Nr Walks
        Unsigned 32-bit integer
        Nr of walk items
    9p.offset  Offset
        Unsigned 64-bit integer
    9p.oldtag  Old tag
        Unsigned 16-bit integer
    9p.paramsz  Param length
        Unsigned 16-bit integer
        Parameter length
    9p.perm  Permissions
        Unsigned 32-bit integer
        Permission bits
    9p.qidpath  Qid path
        Unsigned 64-bit integer
    9p.qidtype  Qid type
        Unsigned 8-bit integer
    9p.qidvers  Qid version
        Unsigned 32-bit integer
    9p.sdlen  Stat data length
        Unsigned 16-bit integer
    9p.statmode  Mode
        Unsigned 32-bit integer
        File mode flags
    9p.stattype  Type
        Unsigned 16-bit integer
    9p.tag  Tag
        Unsigned 16-bit integer
        9P Tag
    9p.uid  Uid
        String
        User id
    9p.uname  Uname
        String
        User Name
    9p.version  Version
        String
    9p.wname  Wname
        String
        Path Name Element

Point-to-Point Protocol (ppp)

    ppp.address  Address
        Unsigned 8-bit integer
    ppp.control  Control
        Unsigned 8-bit integer
    ppp.direction  Direction
        Unsigned 8-bit integer
        PPP direction
    ppp.protocol  Protocol
        Unsigned 16-bit integer

Point-to-Point Tunnelling Protocol (pptp)

    pptp.type  Message type
        Unsigned 16-bit integer
        PPTP message type

Port Aggregation Protocol (pagp)

    pagp.flags  Flags
        Unsigned 8-bit integer
        Information 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.flushlocaldevid  Flush Local Device ID
        6-byte Hardware (MAC) Address
        Flush local device ID
    pagp.flushpartnerdevid  Flush Partner Device ID
        6-byte Hardware (MAC) Address
        Flush remote device ID
    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

Portable Network Graphics (png)

    png.bkgd.blue  Blue
        Unsigned 16-bit integer
    png.bkgd.green  Green
        Unsigned 16-bit integer
    png.bkgd.greyscale  Greyscale
        Unsigned 16-bit integer
    png.bkgd.palette_index  Palette Index
        Unsigned 8-bit integer
    png.bkgd.red  Red
        Unsigned 16-bit integer
    png.chunk.crc  CRC
        Unsigned 32-bit integer
    png.chunk.data  Data
        No value
    png.chunk.flag.ancillary  Ancillary
        Boolean
    png.chunk.flag.private  Private
        Boolean
    png.chunk.flag.stc  Safe To Copy
        Boolean
    png.chunk.len  Len
        Unsigned 32-bit integer
    png.chunk.type  Chunk
        String
    png.ihdr.bitdepth  Bit Depth
        Unsigned 8-bit integer
    png.ihdr.colour_type  Colour Type
        Unsigned 8-bit integer
    png.ihdr.compression_method  Compression Method
        Unsigned 8-bit integer
    png.ihdr.filter_method  Filter Method
        Unsigned 8-bit integer
    png.ihdr.height  Height
        Unsigned 32-bit integer
    png.ihdr.interlace_method  Interlace Method
        Unsigned 8-bit integer
    png.ihdr.width  Width
        Unsigned 32-bit integer
    png.phys.horiz  Horizontal pixels per unit
        Unsigned 32-bit integer
    png.phys.unit  Unit
        Unsigned 8-bit integer
    png.phys.vert  Vertical pixels per unit
        Unsigned 32-bit integer
    png.signature  PNG Signature
        Byte array
    png.text.keyword  Keyword
        String
    png.text.string  String
        String
    png.time.day  Day
        Unsigned 8-bit integer
    png.time.hour  Hour
        Unsigned 8-bit integer
    png.time.minute  Minute
        Unsigned 8-bit integer
    png.time.month  Month
        Unsigned 8-bit integer
    png.time.second  Second
        Unsigned 8-bit integer
    png.time.year  Year
        Unsigned 16-bit integer

Portmap (portmap)

    portmap.answer  Answer
        Boolean
    portmap.args  Arguments
        Byte array
    portmap.port  Port
        Unsigned 32-bit integer
    portmap.proc  Procedure
        Unsigned 32-bit integer
    portmap.procedure_v1  V1 Procedure
        Unsigned 32-bit integer
    portmap.procedure_v2  V2 Procedure
        Unsigned 32-bit integer
    portmap.procedure_v3  V3 Procedure
        Unsigned 32-bit integer
    portmap.procedure_v4  V4 Procedure
        Unsigned 32-bit integer
    portmap.prog  Program
        Unsigned 32-bit integer
    portmap.proto  Protocol
        Unsigned 32-bit integer
    portmap.result  Result
        Byte array
    portmap.rpcb  RPCB
        No value
    portmap.rpcb.addr  Universal Address
        String
    portmap.rpcb.netid  Network Id
        String
    portmap.rpcb.owner  Owner of this Service
        String
    portmap.rpcb.prog  Program
        Unsigned 32-bit integer
    portmap.rpcb.version  Version
        Unsigned 32-bit integer
    portmap.uaddr  Universal Address
        String
    portmap.version  Version
        Unsigned 32-bit integer

Post Office Protocol (pop)

    pop.data.fragment  DATA fragment
        Frame number
        Message fragment
    pop.data.fragment.error  DATA defragmentation error
        Frame number
        Message defragmentation error
    pop.data.fragment.multiple_tails  DATA has multiple tail fragments
        Boolean
        Message has multiple tail fragments
    pop.data.fragment.overlap  DATA fragment overlap
        Boolean
        Message fragment overlap
    pop.data.fragment.overlap.conflicts  DATA fragment overlapping with conflicting data
        Boolean
        Message fragment overlapping with conflicting data
    pop.data.fragment.too_long_fragment  DATA fragment too long
        Boolean
        Message fragment too long
    pop.data.fragments  DATA fragments
        No value
        Message fragments
    pop.data.reassembled.in  Reassembled DATA in frame
        Frame number
        This DATA fragment is reassembled in this frame
    pop.data.reassembled.length  Reassembled DATA length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    pop.request  Request
        String
    pop.request.command  Request command
        String
    pop.request.data  Data
        String
        Request data
    pop.request.parameter  Request parameter
        String
    pop.response  Response
        String
    pop.response.data  Data
        String
        Response Data
    pop.response.description  Response description
        String
    pop.response.indicator  Response indicator
        String

PostgreSQL (pgsql)

    pgsql.authtype  Authentication type
        Signed 32-bit integer
        The type of authentication requested by the backend.
    pgsql.code  Code
        NULL terminated 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
        NULL terminated string
        The name of a column.
    pgsql.col.typemod  Type modifier
        Signed 32-bit integer
        The type modifier for a column.
    pgsql.condition  Condition
        NULL terminated 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
        NULL terminated string
        Detailed error message.
    pgsql.error  Error
        NULL terminated string
        An error message.
    pgsql.file  File
        NULL terminated 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
        NULL terminated 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
        NULL terminated string
        The line number on which an error was reported.
    pgsql.message  Message
        NULL terminated 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
        NULL terminated string
        The name of a database parameter.
    pgsql.parameter_value  Parameter value
        NULL terminated string
        The value of a database parameter.
    pgsql.password  Password
        NULL terminated string
        A password.
    pgsql.pid  PID
        Unsigned 32-bit integer
        The process ID of a backend.
    pgsql.portal  Portal
        NULL terminated string
        The name of a portal.
    pgsql.position  Position
        NULL terminated string
        The index of the error within the query string.
    pgsql.query  Query
        NULL terminated string
        A query string.
    pgsql.routine  Routine
        NULL terminated string
        The routine that reported an error.
    pgsql.salt  Salt value
        Byte array
        The salt to use while encrypting a password.
    pgsql.severity  Severity
        NULL terminated string
        Message severity.
    pgsql.statement  Statement
        NULL terminated string
        The name of a prepared statement.
    pgsql.status  Status
        Unsigned 8-bit integer
        The transaction status of the backend.
    pgsql.tag  Tag
        NULL terminated string
        A completion tag.
    pgsql.text  Text
        NULL terminated 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
        NULL terminated string
        The context in which an error occurred.

Pragmatic General Multicast (pgm)

    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.end  Option end
        Boolean
    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

Precision Time Protocol (IEEE1588) (ptp)

    ptp.as.fu.cumulativeScaledRateOffset  cumulativeScaledRateOffset
        Unsigned 32-bit integer
    ptp.as.fu.gmTimeBaseIndicator  gmTimeBaseIndicator
        Unsigned 16-bit integer
    ptp.as.fu.lastGmPhaseChange  lastGMPhaseChange
        Byte array
    ptp.as.fu.lengthField  lengthField
        Unsigned 16-bit integer
    ptp.as.fu.organizationId  organizationId
        Unsigned 24-bit integer
    ptp.as.fu.organizationSubType  OrganizationSubType
        Signed 24-bit integer
    ptp.as.fu.scaledLastGmPhaseChange  scaledLastGMPhaseChange
        Signed 32-bit integer
    ptp.as.fu.tlvType  tlvType
        Unsigned 16-bit integer
    ptp.as.sig.lengthField  lengthField
        Unsigned 16-bit integer
    ptp.as.sig.tlv.announceinterval  announceInterval
        Signed 8-bit integer
    ptp.as.sig.tlv.flags.propdelay  computeNeighborPropDelay
        Boolean
    ptp.as.sig.tlv.flags.rateratio  computeNeighborRateRatio
        Boolean
    ptp.as.sig.tlv.linkdelayinterval  linkDelayInterval
        Signed 8-bit integer
    ptp.as.sig.tlv.organizationId  organizationId
        Unsigned 24-bit integer
    ptp.as.sig.tlv.organizationSubType  OrganizationSubType
        Signed 24-bit integer
    ptp.as.sig.tlv.timesyncinterval  timeSyncInterval
        Signed 8-bit integer
    ptp.as.sig.tlvType  tlvType
        Unsigned 16-bit integer
    ptp.as.sig.tvl.flags  flags
        Unsigned 8-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.startingboundaryhops  startingBoundaryHops
        Signed 16-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.v2.an.atoi.currentOffset  currentOffset
        Signed 32-bit integer
    ptp.v2.an.atoi.dislpayName  displayName
        String
    ptp.v2.an.atoi.dislpayName.length  length
        Unsigned 8-bit integer
    ptp.v2.an.atoi.jumpSeconds  jumpSeconds
        Signed 32-bit integer
    ptp.v2.an.atoi.keyField  keyField
        Unsigned 8-bit integer
    ptp.v2.an.atoi.timeOfNextJump  timeOfNextJump
        Byte array
    ptp.v2.an.grandmasterclockaccuracy  grandmasterClockAccuracy
        Unsigned 8-bit integer
    ptp.v2.an.grandmasterclockclass  grandmasterClockClass
        Unsigned 8-bit integer
    ptp.v2.an.grandmasterclockidentity  grandmasterClockIdentity
        Unsigned 64-bit integer
    ptp.v2.an.grandmasterclockvariance  grandmasterClockVariance
        Unsigned 16-bit integer
    ptp.v2.an.lengthField  lengthField
        Unsigned 16-bit integer
    ptp.v2.an.localstepsremoved  localStepsRemoved
        Unsigned 16-bit integer
    ptp.v2.an.origincurrentutcoffset  originCurrentUTCOffset
        Signed 16-bit integer
    ptp.v2.an.origintimestamp  originTimestamp
        Time duration
    ptp.v2.an.origintimestamp.nanoseconds  originTimestamp (nanoseconds)
        Signed 32-bit integer
    ptp.v2.an.origintimestamp.seconds  originTimestamp (seconds)
        Unsigned 64-bit integer
    ptp.v2.an.pathsequence  PathSequence
        Unsigned 64-bit integer
    ptp.v2.an.priority1  priority1
        Unsigned 8-bit integer
    ptp.v2.an.priority2  priority2
        Unsigned 8-bit integer
    ptp.v2.an.tlv.data  data
        Byte array
    ptp.v2.an.tlvType  tlvType
        Unsigned 16-bit integer
    ptp.v2.clockidentity  ClockIdentity
        Unsigned 64-bit integer
    ptp.v2.control  control
        Unsigned 8-bit integer
    ptp.v2.correction.ns  correction
        Unsigned 64-bit integer
    ptp.v2.correction.subns  correctionSubNs
        Double-precision floating point
    ptp.v2.dr.receivetimestamp  receiveTimestamp
        Time duration
    ptp.v2.dr.receivetimestamp.nanoseconds  receiveTimestamp (nanoseconds)
        Signed 32-bit integer
    ptp.v2.dr.receivetimestamp.seconds  receiveTimestamp (seconds)
        Unsigned 64-bit integer
    ptp.v2.dr.requestingsourceportid  requestingSourcePortId
        Unsigned 16-bit integer
    ptp.v2.dr.requestingsourceportidentity  requestingSourcePortIdentity
        Unsigned 64-bit integer
    ptp.v2.flags  flags
        Unsigned 16-bit integer
    ptp.v2.flags.alternatemaster  PTP_ALTERNATE_MASTER
        Boolean
    ptp.v2.flags.frequencytraceable  FREQUENCY_TRACEABLE
        Boolean
    ptp.v2.flags.li59  PTP_LI_59
        Boolean
    ptp.v2.flags.li61  PTP_LI_61
        Boolean
    ptp.v2.flags.security  PTP_SECURITY
        Boolean
    ptp.v2.flags.specific1  PTP profile Specific 1
        Boolean
    ptp.v2.flags.specific2  PTP profile Specific 2
        Boolean
    ptp.v2.flags.timescale  PTP_TIMESCALE
        Boolean
    ptp.v2.flags.timetraceable  TIME_TRACEABLE
        Boolean
    ptp.v2.flags.twostep  PTP_TWO_STEP
        Boolean
    ptp.v2.flags.unicast  PTP_UNICAST
        Boolean
    ptp.v2.flags.utcreasonable  PTP_UTC_REASONABLE
        Boolean
    ptp.v2.fu.preciseorigintimestamp  preciseOriginTimestamp
        Time duration
    ptp.v2.fu.preciseorigintimestamp.nanoseconds  preciseOriginTimestamp (nanoseconds)
        Signed 32-bit integer
    ptp.v2.fu.preciseorigintimestamp.seconds  preciseOriginTimestamp (seconds)
        Unsigned 64-bit integer
    ptp.v2.logmessageperiod  logMessagePeriod
        Signed 8-bit integer
    ptp.v2.messageid  messageId
        Unsigned 8-bit integer
    ptp.v2.messagelength  messageLength
        Unsigned 16-bit integer
    ptp.v2.mm.AlternateMulticastSyncInterval  Alternate multicast sync interval
        Signed 8-bit integer
    ptp.v2.mm.CurrentUTCOffsetValid  CurrentUTCOffset valid
        Boolean
    ptp.v2.mm.PortNumber  PortNumber
        Unsigned 16-bit integer
    ptp.v2.mm.SlavOnly  Slave only
        Boolean
    ptp.v2.mm.action  action
        Unsigned 8-bit integer
    ptp.v2.mm.announceReceiptTimeout  announceReceiptTimeout
        Unsigned 8-bit integer
    ptp.v2.mm.boundaryhops  boundaryHops
        Unsigned 8-bit integer
    ptp.v2.mm.clockType  clockType
        Unsigned 16-bit integer
    ptp.v2.mm.clockType.BC  The node implements a boundary clock
        Boolean
    ptp.v2.mm.clockType.MM  The node implements a management node
        Boolean
    ptp.v2.mm.clockType.OC  The node implements an ordinary clock
        Boolean
    ptp.v2.mm.clockType.e2e_TC  The node implements an end-to-end transparent clock
        Boolean
    ptp.v2.mm.clockType.p2p_TC  The node implements a peer-to-peer transparent clock
        Boolean
    ptp.v2.mm.clockType.reserved  Reserved
        Boolean
    ptp.v2.mm.clockaccuracy  Clock accuracy
        Unsigned 8-bit integer
    ptp.v2.mm.clockclass  Clock class
        Unsigned 8-bit integer
    ptp.v2.mm.clockidentity  Clock identity
        Unsigned 64-bit integer
    ptp.v2.mm.clockvariance  Clock variance
        Unsigned 16-bit integer
    ptp.v2.mm.currentOffset  Current offset
        Signed 32-bit integer
    ptp.v2.mm.currentTime.nanoseconds  current time (nanoseconds)
        Signed 32-bit integer
    ptp.v2.mm.currentTime.seconds  current time (seconds)
        Unsigned 64-bit integer
    ptp.v2.mm.currentutcoffset  CurrentUTCOffset
        Signed 16-bit integer
    ptp.v2.mm.data  data
        Byte array
    ptp.v2.mm.delayMechanism  Delay mechanism
        Unsigned 8-bit integer
    ptp.v2.mm.displayData  Display data
        String
    ptp.v2.mm.displayData.length  length
        Unsigned 8-bit integer
    ptp.v2.mm.displayName  Display name
        String
    ptp.v2.mm.displayName.length  length
        Unsigned 8-bit integer
    ptp.v2.mm.domainNumber  domain number
        Unsigned 8-bit integer
    ptp.v2.mm.faultDescription  faultDescription
        String
    ptp.v2.mm.faultDescription.length  length
        Unsigned 8-bit integer
    ptp.v2.mm.faultName  faultName
        String
    ptp.v2.mm.faultName.length  length
        Unsigned 8-bit integer
    ptp.v2.mm.faultRecord  fault record
        Byte array
    ptp.v2.mm.faultRecordLength  fault record length
        Unsigned 16-bit integer
    ptp.v2.mm.faultTime  Fault time
        Time duration
    ptp.v2.mm.faultTime.nanoseconds  Fault time (nanoseconds)
        Signed 32-bit integer
    ptp.v2.mm.faultTime.seconds  Fault time (seconds)
        Unsigned 64-bit integer
    ptp.v2.mm.faultValue  faultValue
        String
    ptp.v2.mm.faultValue.length  length
        Unsigned 8-bit integer
    ptp.v2.mm.faultyFlag  Faulty flag
        Boolean
    ptp.v2.mm.frequencyTraceable  Frequency traceable
        Boolean
    ptp.v2.mm.grandmasterPriority1  Grandmaster priority1
        Unsigned 8-bit integer
    ptp.v2.mm.grandmasterPriority2  Grandmaster priority2
        Unsigned 8-bit integer
    ptp.v2.mm.grandmasterclockaccuracy  Grandmaster clock accuracy
        Unsigned 8-bit integer
    ptp.v2.mm.grandmasterclockclass  Grandmaster clock class
        Unsigned 8-bit integer
    ptp.v2.mm.grandmasterclockidentity  Grandmaster clock identity
        Unsigned 64-bit integer
    ptp.v2.mm.grandmasterclockvariance  Grandmaster clock variance
        Unsigned 16-bit integer
    ptp.v2.mm.initializationKey  initialization key
        Unsigned 16-bit integer
    ptp.v2.mm.jumpSeconds  Jump seconds
        Signed 32-bit integer
    ptp.v2.mm.keyField  Key field
        Unsigned 8-bit integer
    ptp.v2.mm.lengthField  lengthField
        Unsigned 16-bit integer
    ptp.v2.mm.li59  leap 59
        Boolean
    ptp.v2.mm.li61  leap 61
        Boolean
    ptp.v2.mm.logAnnounceInterval  logAnnounceInterval
        Signed 8-bit integer
    ptp.v2.mm.logMinDelayReqInterval  logMinDelayReqInterval
        Signed 8-bit integer
    ptp.v2.mm.logMinPdelayReqInterval  logMinPdelayReqInterval
        Signed 8-bit integer
    ptp.v2.mm.logSyncInterval  logSyncInterval
        Signed 8-bit integer
    ptp.v2.mm.managementErrorId  managementErrorId
        Unsigned 16-bit integer
    ptp.v2.mm.managementId  managementId
        Unsigned 16-bit integer
    ptp.v2.mm.manufacturerIdentity  manufacturer identity
        Byte array
    ptp.v2.mm.maxKey  Max key
        Unsigned 8-bit integer
    ptp.v2.mm.networkProtocol  network protocol
        Unsigned 16-bit integer
    ptp.v2.mm.numberOfAlternateMasters  Number of alternate masters
        Unsigned 8-bit integer
    ptp.v2.mm.numberOfFaultRecords  number of fault records
        Unsigned 16-bit integer
    ptp.v2.mm.numberPorts  number of ports
        Unsigned 16-bit integer
    ptp.v2.mm.observedParentClockPhaseChangeRate  observedParentClockPhaseChangeRate
        Signed 32-bit integer
    ptp.v2.mm.observedParentOffsetScaledLogVariance  observedParentOffsetScaledLogVariance
        Unsigned 16-bit integer
    ptp.v2.mm.offset.ns  correction
        Unsigned 64-bit integer
    ptp.v2.mm.offset.subns  SubNs
        Double-precision floating point
    ptp.v2.mm.pad  Pad
        Byte array
    ptp.v2.mm.parentclockidentity  parent ClockIdentity
        Unsigned 64-bit integer
    ptp.v2.mm.parentsourceportid  parent SourcePortID
        Unsigned 16-bit integer
    ptp.v2.mm.parentstats  parent stats
        Boolean
    ptp.v2.mm.pathDelay.ns  ns
        Unsigned 64-bit integer
    ptp.v2.mm.pathDelay.subns  SubNs
        Double-precision floating point
    ptp.v2.mm.pathTraceEnable  Path trace unicast
        Boolean
    ptp.v2.mm.peerMeanPathDelay.ns  ns
        Unsigned 64-bit integer
    ptp.v2.mm.peerMeanPathDelay.subns  SubNs
        Double-precision floating point
    ptp.v2.mm.physicalAddress  physical address
        Byte array
    ptp.v2.mm.physicalAddressLength  physical address length
        Unsigned 16-bit integer
    ptp.v2.mm.physicalLayerProtocol  physicalLayerProtocol
        String
    ptp.v2.mm.physicalLayerProtocol.length  length
        Unsigned 8-bit integer
    ptp.v2.mm.portState  Port state
        Unsigned 8-bit integer
    ptp.v2.mm.primaryDomain  Primary domain number
        Unsigned 8-bit integer
    ptp.v2.mm.priority1  priority1
        Unsigned 8-bit integer
    ptp.v2.mm.priority2  priority2
        Unsigned 8-bit integer
    ptp.v2.mm.productDescription  product description
        String
    ptp.v2.mm.productDescription.length  length
        Unsigned 8-bit integer
    ptp.v2.mm.profileIdentity  profileIdentity
        Byte array
    ptp.v2.mm.protocolAddress  protocol address
        Byte array
    ptp.v2.mm.protocolAddress.length  length
        Unsigned 16-bit integer
    ptp.v2.mm.ptptimescale  PTP timescale
        Boolean
    ptp.v2.mm.reserved  reserved
        Byte array
    ptp.v2.mm.revisionData  revision data
        String
    ptp.v2.mm.revisionData.length  length
        Unsigned 8-bit integer
    ptp.v2.mm.severityCode  severity code
        Unsigned 8-bit integer
    ptp.v2.mm.startingboundaryhops  startingBoundaryHops
        Unsigned 8-bit integer
    ptp.v2.mm.stepsRemoved  steps removed
        Signed 16-bit integer
    ptp.v2.mm.targetportid  targetPortId
        Unsigned 16-bit integer
    ptp.v2.mm.targetportidentity  targetPortIdentity
        Unsigned 64-bit integer
    ptp.v2.mm.timeTraceable  Time traceable
        Boolean
    ptp.v2.mm.timesource  TimeSource
        Unsigned 8-bit integer
    ptp.v2.mm.tlvType  tlvType
        Unsigned 16-bit integer
    ptp.v2.mm.transmitAlternateMulticastSync  Transmit alternate multicast sync
        Boolean
    ptp.v2.mm.twoStep  Two step
        Boolean
    ptp.v2.mm.unicastEnable  Enable unicast
        Boolean
    ptp.v2.mm.userDescription  user description
        String
    ptp.v2.mm.userDescription.length  length
        Unsigned 8-bit integer
    ptp.v2.mm.versionNumber  versionNumber
        Unsigned 8-bit integer
    ptp.v2.pdfu.requestingportidentity  requestingSourcePortIdentity
        Unsigned 64-bit integer
    ptp.v2.pdfu.requestingsourceportid  requestingSourcePortId
        Unsigned 16-bit integer
    ptp.v2.pdfu.responseorigintimestamp  responseOriginTimestamp
        Time duration
    ptp.v2.pdfu.responseorigintimestamp.nanoseconds  responseOriginTimestamp (nanoseconds)
        Signed 32-bit integer
    ptp.v2.pdfu.responseorigintimestamp.seconds  responseOriginTimestamp (seconds)
        Unsigned 64-bit integer
    ptp.v2.pdrq.origintimestamp  originTimestamp
        Time duration
    ptp.v2.pdrq.origintimestamp.nanoseconds  originTimestamp (nanoseconds)
        Signed 32-bit integer
    ptp.v2.pdrq.origintimestamp.seconds  originTimestamp (seconds)
        Unsigned 64-bit integer
    ptp.v2.pdrs.requestingportidentity  requestingSourcePortIdentity
        Unsigned 64-bit integer
    ptp.v2.pdrs.requestingsourceportid  requestingSourcePortId
        Unsigned 16-bit integer
    ptp.v2.pdrs.requestreceipttimestamp  requestreceiptTimestamp
        Time duration
    ptp.v2.pdrs.requestreceipttimestamp.nanoseconds  requestreceiptTimestamp (nanoseconds)
        Signed 32-bit integer
    ptp.v2.pdrs.requestreceipttimestamp.seconds  requestreceiptTimestamp (seconds)
        Unsigned 64-bit integer
    ptp.v2.sdr.origintimestamp  originTimestamp
        Time duration
    ptp.v2.sdr.origintimestamp.nanoseconds  originTimestamp (nanoseconds)
        Signed 32-bit integer
    ptp.v2.sdr.origintimestamp.seconds  originTimestamp (seconds)
        Unsigned 64-bit integer
    ptp.v2.sequenceid  sequenceId
        Unsigned 16-bit integer
    ptp.v2.sig.targetportid  targetPortId
        Unsigned 16-bit integer
    ptp.v2.sig.targetportidentity  targetPortIdentity
        Unsigned 64-bit integer
    ptp.v2.sourceportid  SourcePortID
        Unsigned 16-bit integer
    ptp.v2.subdomainnumber  subdomainNumber
        Unsigned 8-bit integer
    ptp.v2.timesource  TimeSource
        Unsigned 8-bit integer
    ptp.v2.transportspecific  transportSpecific
        Unsigned 8-bit integer
    ptp.v2.transportspecific.802.1asconform  802.1as conform
        Boolean
    ptp.v2.transportspecific.v1compatibility  V1 Compatibility
        Boolean
    ptp.v2.versionptp  versionPTP
        Unsigned 8-bit integer
    ptp.versionnetwork  versionNetwork
        Unsigned 16-bit integer
    ptp.versionptp  versionPTP
        Unsigned 16-bit integer

Printer Access Protocol (apap)

    pad.pad  Pad
        No value
        Pad Byte
    pap.connid  ConnID
        Unsigned 8-bit integer
        PAP connection ID
    pap.eof  EOF
        Boolean
    pap.function  Function
        Unsigned 8-bit integer
        PAP function
    pap.quantum  Quantum
        Unsigned 8-bit integer
        Flow quantum
    pap.seq  Sequence
        Unsigned 16-bit integer
        Sequence number
    pap.socket  Socket
        Unsigned 8-bit integer
        ATP responding socket number
    pap.status  Status
        String
        Printer status

Prism capture header (prism)

    prism.frmlen.data  Frame Length Field
        Unsigned 32-bit integer
    prism.istx.data  IsTX 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

Privilege Server operations (rpriv)

    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

Pro-MPEG Code of Practice #3 release 2 FEC Protocol (2dparityfec)

    2dparityfec.d  Row FEC (D)
        Boolean
    2dparityfec.e  RFC2733 Extension (E)
        Boolean
    2dparityfec.index  Index
        Unsigned 8-bit integer
    2dparityfec.lr  Length recovery
        Unsigned 16-bit integer
    2dparityfec.mask  Mask
        Unsigned 24-bit integer
    2dparityfec.na  NA
        Unsigned 8-bit integer
    2dparityfec.offset  Offset
        Unsigned 8-bit integer
    2dparityfec.payload  FEC Payload
        Byte array
    2dparityfec.ptr  Payload Type recovery
        Unsigned 8-bit integer
    2dparityfec.snbase_ext  SNBase ext
        Unsigned 8-bit integer
    2dparityfec.snbase_low  SNBase low
        Unsigned 16-bit integer
    2dparityfec.tsr  Timestamp recovery
        Unsigned 32-bit integer
    2dparityfec.type  Type
        Unsigned 8-bit integer
    2dparityfec.x  Pro-MPEG Extension (X)
        Boolean

Protocol Independent Multicast (pim)

    pim.cksum  Checksum
        Unsigned 16-bit integer
    pim.code  Code
        Unsigned 8-bit integer
    pim.res_bytes  Reserved byte(s)
        Byte array
    pim.type  Type
        Unsigned 8-bit integer
    pim.version  Version
        Unsigned 8-bit integer

Protocol for carrying Authentication for Network Access (pana)

    pana.avp.code  AVP Code
        Unsigned 16-bit integer
    pana.avp.data.bytes  Value
        Byte array
    pana.avp.data.enum  Value
        Signed 32-bit integer
    pana.avp.data.int32  Value
        Signed 32-bit integer
    pana.avp.data.int64  Value
        Signed 64-bit integer
    pana.avp.data.string  Value
        String
    pana.avp.data.uint32  Value
        Unsigned 32-bit integer
    pana.avp.data.uint64  Value
        Unsigned 64-bit integer
    pana.avp.flags  AVP Flags
        Unsigned 16-bit integer
    pana.avp.flags.v  Vendor
        Boolean
    pana.avp.length  AVP Length
        Unsigned 16-bit integer
    pana.avp.reserved  AVP Reserved
        Unsigned 16-bit integer
    pana.avp.vendorid  AVP Vendor ID
        Unsigned 32-bit integer
    pana.flags  Flags
        Unsigned 8-bit integer
    pana.flags.a  Auth
        Boolean
    pana.flags.c  Complete
        Boolean
    pana.flags.i  IP Reconfig
        Boolean
    pana.flags.p  Ping
        Boolean
    pana.flags.r  Request
        Boolean
    pana.flags.s  Start
        Boolean
    pana.length  PANA Message Length
        Unsigned 16-bit integer
    pana.reserved  PANA Reserved
        Unsigned 16-bit integer
    pana.response_in  Response In
        Frame number
        The response to this PANA request is in this frame
    pana.response_to  Request In
        Frame number
        This is a response to the PANA request in this frame
    pana.seq  PANA Sequence Number
        Unsigned 32-bit integer
    pana.sid  PANA Session ID
        Unsigned 32-bit integer
    pana.time  Time
        Time duration
        The time between the Call and the Reply
    pana.type  PANA Message Type
        Unsigned 16-bit integer

Pseudowire Padding (pwpadding)

    pw.padding.len  Length
        Signed 32-bit integer

Q.2931 (q2931)

    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

Q.931 (q931)

    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.channel.dchan  D-channel indicator
        Boolean
        True if the identified channel is the D-Channel
    q931.channel.element_type  Element type
        Unsigned 8-bit integer
        Type of element in the channel number/slot map octets
    q931.channel.exclusive  Indicated channel
        Boolean
        True if only the indicated channel is acceptable
    q931.channel.interface_id_present  Interface identifier present
        Boolean
        True if the interface identifier is explicit in the following octets
    q931.channel.interface_type  Interface type
        Boolean
        Identifies the ISDN interface type
    q931.channel.map  Number/map
        Boolean
        True if channel is indicates by channel map rather than number
    q931.channel.number  Channel number
        Unsigned 8-bit integer
    q931.channel.selection  Information channel selection
        Unsigned 8-bit integer
        Identifies the information channel to be used
    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.extended_audiovisual_characteristics  Extended audiovisual characteristics identification
        Unsigned 8-bit integer
    q931.extended_high_layer_characteristics  Extended high layer characteristics identification
        Unsigned 8-bit integer
    q931.extension_ind  Extension indicator
        Boolean
    q931.high_layer_characteristics  High layer characteristics identification
        Unsigned 8-bit integer
    q931.information_transfer_capability  Information transfer capability
        Unsigned 8-bit integer
    q931.information_transfer_rate  Information transfer rate
        Unsigned 8-bit integer
    q931.interpretation  Interpretation
        Unsigned 8-bit integer
    q931.layer_ident  Layer identification
        Unsigned 8-bit integer
    q931.maintenance_message_type  Maintenance message type
        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.presentation_method_protocol_profile  Presentation method of protocol profile
        Unsigned 8-bit integer
    q931.reassembled.length  Reassembled Q.931 length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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
    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
    q931.transfer_mode  Transfer mode
        Unsigned 8-bit integer
    q931.uil1  User information layer 1 protocol
        Unsigned 8-bit integer

Q.932 (q932)

    q932.InterpretationComponent  InterpretationComponent
        Unsigned 32-bit integer
    q932.NetworkFacilityExtension  NetworkFacilityExtension
        No value
    q932.NetworkProtocolProfile  NetworkProtocolProfile
        Unsigned 32-bit integer
    q932.dataPartyNumber  dataPartyNumber
        String
        NumberDigits
    q932.destinationEntity  destinationEntity
        Unsigned 32-bit integer
        EntityType
    q932.destinationEntityAddress  destinationEntityAddress
        Unsigned 32-bit integer
        AddressInformation
    q932.ie.data  Data
        Byte array
    q932.ie.len  Length
        Unsigned 8-bit integer
        Information Element Length
    q932.ie.type  Type
        Unsigned 8-bit integer
        Information Element Type
    q932.nSAPSubaddress  nSAPSubaddress
        Byte array
    q932.nationalStandardPartyNumber  nationalStandardPartyNumber
        String
        NumberDigits
    q932.nd  Notification description
        Unsigned 8-bit integer
    q932.nsapEncodedNumber  nsapEncodedNumber
        Byte array
    q932.numberNotAvailableDueToInterworking  numberNotAvailableDueToInterworking
        No value
    q932.numberNotAvailableDueTolnterworking  numberNotAvailableDueTolnterworking
        No value
    q932.oddCountIndicator  oddCountIndicator
        Boolean
        BOOLEAN
    q932.partyNumber  partyNumber
        Unsigned 32-bit integer
    q932.partySubaddress  partySubaddress
        Unsigned 32-bit integer
    q932.pp  Protocol profile
        Unsigned 8-bit integer
    q932.presentationAlIowedAddress  presentationAlIowedAddress
        No value
        AddressScreened
    q932.presentationAllowedAddress  presentationAllowedAddress
        No value
        Address
    q932.presentationAllowedNumber  presentationAllowedNumber
        No value
        NumberScreened
    q932.presentationRestricted  presentationRestricted
        No value
    q932.presentationRestrictedAddress  presentationRestrictedAddress
        No value
        AddressScreened
    q932.presentationRestrictedNumber  presentationRestrictedNumber
        No value
        NumberScreened
    q932.privateNumberDigits  privateNumberDigits
        String
        NumberDigits
    q932.privatePartyNumber  privatePartyNumber
        No value
    q932.privateTypeOfNumber  privateTypeOfNumber
        Unsigned 32-bit integer
    q932.publicNumberDigits  publicNumberDigits
        String
        NumberDigits
    q932.publicPartyNumber  publicPartyNumber
        No value
    q932.publicTypeOfNumber  publicTypeOfNumber
        Unsigned 32-bit integer
    q932.screeningIndicator  screeningIndicator
        Unsigned 32-bit integer
    q932.screeninglndicator  screeninglndicator
        Unsigned 32-bit integer
        ScreeningIndicator
    q932.sourceEntity  sourceEntity
        Unsigned 32-bit integer
        EntityType
    q932.sourceEntityAddress  sourceEntityAddress
        Unsigned 32-bit integer
        AddressInformation
    q932.subaddressInformation  subaddressInformation
        Byte array
    q932.telexPartyNumber  telexPartyNumber
        String
        NumberDigits
    q932.unknownPartyNumber  unknownPartyNumber
        String
        NumberDigits
    q932.userSpecifiedSubaddress  userSpecifiedSubaddress
        No value

Q.932 Operations Service Element (q932.ros)

    q932.ros.InvokeId_present  InvokeId.present
        Signed 32-bit integer
        InvokeId_present
    q932.ros.ROS  ROS
        Unsigned 32-bit integer
    q932.ros.absent  absent
        No value
    q932.ros.argument  argument
        Byte array
        InvokeArgument
    q932.ros.errcode  errcode
        Unsigned 32-bit integer
        Code
    q932.ros.general  general
        Signed 32-bit integer
        GeneralProblem
    q932.ros.global  global
        Object Identifier
    q932.ros.invoke  invoke
        No value
    q932.ros.invokeId  invokeId
        Unsigned 32-bit integer
    q932.ros.linkedId  linkedId
        Unsigned 32-bit integer
    q932.ros.local  local
        Signed 32-bit integer
    q932.ros.opcode  opcode
        Unsigned 32-bit integer
        Code
    q932.ros.parameter  parameter
        Byte array
    q932.ros.present  present
        Signed 32-bit integer
        T_linkedIdPresent
    q932.ros.problem  problem
        Unsigned 32-bit integer
    q932.ros.reject  reject
        No value
    q932.ros.result  result
        No value
    q932.ros.returnError  returnError
        No value
    q932.ros.returnResult  returnResult
        No value

Q.933 (q933)

    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.link_verification.rxseq  RX Sequence
        Unsigned 8-bit integer
    q933.link_verification.txseq  TX Sequence
        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.report_type  Report type
        Unsigned 8-bit integer
    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

QSIG (qsig)

    qsig.aoc.AOCSCurrencyInfo  AOCSCurrencyInfo
        No value
    qsig.aoc.AdviceModeCombination  AdviceModeCombination
        Unsigned 32-bit integer
    qsig.aoc.AocCompleteArg  AocCompleteArg
        No value
    qsig.aoc.AocCompleteRes  AocCompleteRes
        No value
    qsig.aoc.AocDivChargeReqArg  AocDivChargeReqArg
        No value
    qsig.aoc.AocFinalArg  AocFinalArg
        No value
    qsig.aoc.AocInterimArg  AocInterimArg
        No value
    qsig.aoc.AocRateArg  AocRateArg
        No value
    qsig.aoc.ChargeRequestArg  ChargeRequestArg
        No value
    qsig.aoc.ChargeRequestRes  ChargeRequestRes
        No value
    qsig.aoc.DummyArg  DummyArg
        Unsigned 32-bit integer
    qsig.aoc.Extension  Extension
        No value
    qsig.aoc.adviceModeCombination  adviceModeCombination
        Unsigned 32-bit integer
    qsig.aoc.adviceModeCombinations  adviceModeCombinations
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_7_OF_AdviceModeCombination
    qsig.aoc.aocDivChargeReqArgExt  aocDivChargeReqArgExt
        Unsigned 32-bit integer
    qsig.aoc.aocRate  aocRate
        Unsigned 32-bit integer
    qsig.aoc.aocSCurrencyInfoList  aocSCurrencyInfoList
        Unsigned 32-bit integer
    qsig.aoc.chargeIdentifier  chargeIdentifier
        Signed 32-bit integer
    qsig.aoc.chargeNotAvailable  chargeNotAvailable
        No value
    qsig.aoc.chargeNumber  chargeNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.aoc.chargeReqArgExtension  chargeReqArgExtension
        Unsigned 32-bit integer
    qsig.aoc.chargeReqResExtension  chargeReqResExtension
        Unsigned 32-bit integer
    qsig.aoc.chargedItem  chargedItem
        Unsigned 32-bit integer
    qsig.aoc.chargedUser  chargedUser
        Unsigned 32-bit integer
        PartyNumber
    qsig.aoc.chargingAssociation  chargingAssociation
        Unsigned 32-bit integer
    qsig.aoc.chargingOption  chargingOption
        Unsigned 32-bit integer
    qsig.aoc.completeArgExtension  completeArgExtension
        Unsigned 32-bit integer
    qsig.aoc.completeResExtension  completeResExtension
        Unsigned 32-bit integer
    qsig.aoc.currencyAmount  currencyAmount
        Unsigned 32-bit integer
    qsig.aoc.currencyInfoNotAvailable  currencyInfoNotAvailable
        No value
    qsig.aoc.dAmount  dAmount
        No value
        Amount
    qsig.aoc.dChargingType  dChargingType
        Unsigned 32-bit integer
        ChargingType
    qsig.aoc.dCurrency  dCurrency
        String
        Currency
    qsig.aoc.dGranularity  dGranularity
        No value
        Time
    qsig.aoc.dTime  dTime
        No value
        Time
    qsig.aoc.diversionType  diversionType
        Unsigned 32-bit integer
    qsig.aoc.divertingUser  divertingUser
        Unsigned 32-bit integer
        PartyNumber
    qsig.aoc.durationCurrency  durationCurrency
        No value
    qsig.aoc.extension  extension
        No value
    qsig.aoc.fRAmount  fRAmount
        No value
        Amount
    qsig.aoc.fRCurrency  fRCurrency
        String
        Currency
    qsig.aoc.finalArgExtension  finalArgExtension
        Unsigned 32-bit integer
    qsig.aoc.finalBillingId  finalBillingId
        Unsigned 32-bit integer
    qsig.aoc.finalCharge  finalCharge
        Unsigned 32-bit integer
    qsig.aoc.flatRateCurrency  flatRateCurrency
        No value
    qsig.aoc.freeOfCharge  freeOfCharge
        No value
    qsig.aoc.freeOfChargefromBeginning  freeOfChargefromBeginning
        No value
    qsig.aoc.interimArgExtension  interimArgExtension
        Unsigned 32-bit integer
    qsig.aoc.interimBillingId  interimBillingId
        Unsigned 32-bit integer
    qsig.aoc.interimCharge  interimCharge
        Unsigned 32-bit integer
    qsig.aoc.lengthOfTimeUnit  lengthOfTimeUnit
        Unsigned 32-bit integer
    qsig.aoc.multipleExtension  multipleExtension
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.aoc.multiplier  multiplier
        Unsigned 32-bit integer
    qsig.aoc.none  none
        No value
    qsig.aoc.rAmount  rAmount
        No value
        Amount
    qsig.aoc.rCurrency  rCurrency
        String
        Currency
    qsig.aoc.rateArgExtension  rateArgExtension
        Unsigned 32-bit integer
    qsig.aoc.rateType  rateType
        Unsigned 32-bit integer
    qsig.aoc.recordedCurrency  recordedCurrency
        No value
    qsig.aoc.scale  scale
        Unsigned 32-bit integer
    qsig.aoc.specialChargingCode  specialChargingCode
        Unsigned 32-bit integer
    qsig.aoc.specificCurrency  specificCurrency
        No value
    qsig.aoc.vRAmount  vRAmount
        No value
        Amount
    qsig.aoc.vRCurrency  vRCurrency
        String
        Currency
    qsig.aoc.vRVolumeUnit  vRVolumeUnit
        Unsigned 32-bit integer
        VolumeUnit
    qsig.aoc.volumeRateCurrency  volumeRateCurrency
        No value
    qsig.cc.CcExtension  CcExtension
        Unsigned 32-bit integer
    qsig.cc.CcOptionalArg  CcOptionalArg
        Unsigned 32-bit integer
    qsig.cc.CcRequestArg  CcRequestArg
        No value
    qsig.cc.CcRequestRes  CcRequestRes
        No value
    qsig.cc.Extension  Extension
        No value
    qsig.cc.can_retain_service  can-retain-service
        Boolean
        BOOLEAN
    qsig.cc.extArg  extArg
        Unsigned 32-bit integer
        CcExtension
    qsig.cc.extension  extension
        Unsigned 32-bit integer
        CcExtension
    qsig.cc.fullArg  fullArg
        No value
    qsig.cc.multiple  multiple
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.cc.no_path_reservation  no-path-reservation
        Boolean
        BOOLEAN
    qsig.cc.none  none
        No value
    qsig.cc.numberA  numberA
        Unsigned 32-bit integer
        PresentedNumberUnscreened
    qsig.cc.numberB  numberB
        Unsigned 32-bit integer
        PartyNumber
    qsig.cc.retain_service  retain-service
        Boolean
        BOOLEAN
    qsig.cc.retain_sig_connection  retain-sig-connection
        Boolean
        BOOLEAN
    qsig.cc.service  service
        Byte array
        PSS1InformationElement
    qsig.cc.single  single
        No value
        Extension
    qsig.cc.subaddrA  subaddrA
        Unsigned 32-bit integer
        PartySubaddress
    qsig.cc.subaddrB  subaddrB
        Unsigned 32-bit integer
        PartySubaddress
    qsig.cf.ARG_activateDiversionQ  ARG-activateDiversionQ
        No value
    qsig.cf.ARG_callRerouteing  ARG-callRerouteing
        No value
    qsig.cf.ARG_cfnrDivertedLegFailed  ARG-cfnrDivertedLegFailed
        Unsigned 32-bit integer
    qsig.cf.ARG_checkRestriction  ARG-checkRestriction
        No value
    qsig.cf.ARG_deactivateDiversionQ  ARG-deactivateDiversionQ
        No value
    qsig.cf.ARG_divertingLegInformation1  ARG-divertingLegInformation1
        No value
    qsig.cf.ARG_divertingLegInformation2  ARG-divertingLegInformation2
        No value
    qsig.cf.ARG_divertingLegInformation3  ARG-divertingLegInformation3
        No value
    qsig.cf.ARG_interrogateDiversionQ  ARG-interrogateDiversionQ
        No value
    qsig.cf.Extension  Extension
        No value
    qsig.cf.IntResult  IntResult
        No value
    qsig.cf.IntResultList  IntResultList
        Unsigned 32-bit integer
    qsig.cf.RES_activateDiversionQ  RES-activateDiversionQ
        Unsigned 32-bit integer
    qsig.cf.RES_callRerouteing  RES-callRerouteing
        Unsigned 32-bit integer
    qsig.cf.RES_checkRestriction  RES-checkRestriction
        Unsigned 32-bit integer
    qsig.cf.RES_deactivateDiversionQ  RES-deactivateDiversionQ
        Unsigned 32-bit integer
    qsig.cf.activatingUserNr  activatingUserNr
        Unsigned 32-bit integer
        PartyNumber
    qsig.cf.basicService  basicService
        Unsigned 32-bit integer
    qsig.cf.calledAddress  calledAddress
        No value
        Address
    qsig.cf.callingName  callingName
        Unsigned 32-bit integer
        Name
    qsig.cf.callingNumber  callingNumber
        Unsigned 32-bit integer
        PresentedNumberScreened
    qsig.cf.callingPartySubaddress  callingPartySubaddress
        Unsigned 32-bit integer
        PartySubaddress
    qsig.cf.deactivatingUserNr  deactivatingUserNr
        Unsigned 32-bit integer
        PartyNumber
    qsig.cf.diversionCounter  diversionCounter
        Unsigned 32-bit integer
        INTEGER_1_15
    qsig.cf.diversionReason  diversionReason
        Unsigned 32-bit integer
    qsig.cf.divertedToAddress  divertedToAddress
        No value
        Address
    qsig.cf.divertedToNr  divertedToNr
        Unsigned 32-bit integer
        PartyNumber
    qsig.cf.divertingNr  divertingNr
        Unsigned 32-bit integer
        PresentedNumberUnscreened
    qsig.cf.extension  extension
        Unsigned 32-bit integer
        ADExtension
    qsig.cf.interrogatingUserNr  interrogatingUserNr
        Unsigned 32-bit integer
        PartyNumber
    qsig.cf.lastRerouteingNr  lastRerouteingNr
        Unsigned 32-bit integer
        PresentedNumberUnscreened
    qsig.cf.multiple  multiple
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.cf.nominatedNr  nominatedNr
        Unsigned 32-bit integer
        PartyNumber
    qsig.cf.null  null
        No value
    qsig.cf.originalCalledName  originalCalledName
        Unsigned 32-bit integer
        Name
    qsig.cf.originalCalledNr  originalCalledNr
        Unsigned 32-bit integer
        PresentedNumberUnscreened
    qsig.cf.originalDiversionReason  originalDiversionReason
        Unsigned 32-bit integer
        DiversionReason
    qsig.cf.originalRerouteingReason  originalRerouteingReason
        Unsigned 32-bit integer
        DiversionReason
    qsig.cf.pSS1InfoElement  pSS1InfoElement
        Byte array
        PSS1InformationElement
    qsig.cf.presentationAllowedIndicator  presentationAllowedIndicator
        Boolean
    qsig.cf.procedure  procedure
        Unsigned 32-bit integer
    qsig.cf.redirectingName  redirectingName
        Unsigned 32-bit integer
        Name
    qsig.cf.redirectionName  redirectionName
        Unsigned 32-bit integer
        Name
    qsig.cf.remoteEnabled  remoteEnabled
        Boolean
        BOOLEAN
    qsig.cf.rerouteingReason  rerouteingReason
        Unsigned 32-bit integer
        DiversionReason
    qsig.cf.servedUserNr  servedUserNr
        Unsigned 32-bit integer
        PartyNumber
    qsig.cf.single  single
        No value
        Extension
    qsig.cf.subscriptionOption  subscriptionOption
        Unsigned 32-bit integer
    qsig.ci.CIGetCIPLRes  CIGetCIPLRes
        No value
    qsig.ci.CIRequestArg  CIRequestArg
        No value
    qsig.ci.CIRequestRes  CIRequestRes
        No value
    qsig.ci.DummyArg  DummyArg
        Unsigned 32-bit integer
    qsig.ci.DummyRes  DummyRes
        Unsigned 32-bit integer
    qsig.ci.Extension  Extension
        No value
    qsig.ci.PathRetainArg  PathRetainArg
        Unsigned 32-bit integer
    qsig.ci.ServiceAvailableArg  ServiceAvailableArg
        Unsigned 32-bit integer
    qsig.ci.argumentExtension  argumentExtension
        Unsigned 32-bit integer
    qsig.ci.ci-high  ci-high
        Boolean
    qsig.ci.ci-low  ci-low
        Boolean
    qsig.ci.ci-medium  ci-medium
        Boolean
    qsig.ci.ciCapabilityLevel  ciCapabilityLevel
        Unsigned 32-bit integer
    qsig.ci.ciProtectionLevel  ciProtectionLevel
        Unsigned 32-bit integer
    qsig.ci.ciUnwantedUserStatus  ciUnwantedUserStatus
        Unsigned 32-bit integer
    qsig.ci.extendedServiceList  extendedServiceList
        No value
    qsig.ci.extension  extension
        No value
    qsig.ci.null  null
        No value
    qsig.ci.resultExtension  resultExtension
        Unsigned 32-bit integer
    qsig.ci.sequenceOfExtn  sequenceOfExtn
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.ci.serviceList  serviceList
        Byte array
    qsig.cidl.CallIdentificationAssignArg  CallIdentificationAssignArg
        No value
    qsig.cidl.CallIdentificationUpdateArg  CallIdentificationUpdateArg
        No value
    qsig.cidl.Extension  Extension
        No value
    qsig.cidl.extension  extension
        Unsigned 32-bit integer
        ExtensionType
    qsig.cidl.globalCallID  globalCallID
        No value
        CallIdentificationData
    qsig.cidl.globallyUniqueID  globallyUniqueID
        Byte array
    qsig.cidl.legID  legID
        No value
        CallIdentificationData
    qsig.cidl.linkageID  linkageID
        Unsigned 32-bit integer
    qsig.cidl.sequenceOfExt  sequenceOfExt
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.cidl.subDomainID  subDomainID
        Byte array
    qsig.cidl.switchingSubDomainName  switchingSubDomainName
        String
    qsig.cidl.threadID  threadID
        No value
        CallIdentificationData
    qsig.cidl.timeStamp  timeStamp
        String
    qsig.cint.CintCondArg  CintCondArg
        No value
    qsig.cint.CintExtension  CintExtension
        Unsigned 32-bit integer
    qsig.cint.CintInformation1Arg  CintInformation1Arg
        No value
    qsig.cint.CintInformation2Arg  CintInformation2Arg
        No value
    qsig.cint.Extension  Extension
        No value
    qsig.cint.calledName  calledName
        Unsigned 32-bit integer
        Name
    qsig.cint.calledNumber  calledNumber
        Unsigned 32-bit integer
        PresentedNumberUnscreened
    qsig.cint.extension  extension
        Unsigned 32-bit integer
        CintExtension
    qsig.cint.interceptedToNumber  interceptedToNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.cint.interceptionCause  interceptionCause
        Unsigned 32-bit integer
        CintCause
    qsig.cint.multiple  multiple
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.cint.none  none
        No value
    qsig.cint.originalCalledName  originalCalledName
        Unsigned 32-bit integer
        Name
    qsig.cint.originalCalledNumber  originalCalledNumber
        Unsigned 32-bit integer
        PresentedNumberUnscreened
    qsig.cint.single  single
        No value
        Extension
    qsig.cmn.CmnArg  CmnArg
        No value
    qsig.cmn.DummyArg  DummyArg
        Unsigned 32-bit integer
    qsig.cmn.Extension  Extension
        No value
    qsig.cmn.anfCINTcanInterceptDelayed  anfCINTcanInterceptDelayed
        Boolean
    qsig.cmn.anfCINTcanInterceptImmediate  anfCINTcanInterceptImmediate
        Boolean
    qsig.cmn.anfPRsupportedAtCooperatingPinx  anfPRsupportedAtCooperatingPinx
        Boolean
    qsig.cmn.anfPUMIreRoutingSupported  anfPUMIreRoutingSupported
        Boolean
    qsig.cmn.anfWTMIreRoutingSupported  anfWTMIreRoutingSupported
        Boolean
    qsig.cmn.equipmentIdentity  equipmentIdentity
        No value
        EquipmentId
    qsig.cmn.extension  extension
        Unsigned 32-bit integer
    qsig.cmn.featureIdentifier  featureIdentifier
        Byte array
        FeatureIdList
    qsig.cmn.groupId  groupId
        String
        IA5String_SIZE_1_10
    qsig.cmn.multiple  multiple
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.cmn.nodeId  nodeId
        String
        IA5String_SIZE_1_10
    qsig.cmn.null  null
        No value
    qsig.cmn.partyCategory  partyCategory
        Unsigned 32-bit integer
    qsig.cmn.reserved  reserved
        Boolean
    qsig.cmn.single  single
        No value
        Extension
    qsig.cmn.ssAOCsupportChargeRateProvAtGatewPinx  ssAOCsupportChargeRateProvAtGatewPinx
        Boolean
    qsig.cmn.ssAOCsupportFinalChargeProvAtGatewPinx  ssAOCsupportFinalChargeProvAtGatewPinx
        Boolean
    qsig.cmn.ssAOCsupportInterimChargeProvAtGatewPinx  ssAOCsupportInterimChargeProvAtGatewPinx
        Boolean
    qsig.cmn.ssCCBSpossible  ssCCBSpossible
        Boolean
    qsig.cmn.ssCCNRpossible  ssCCNRpossible
        Boolean
    qsig.cmn.ssCFreRoutingSupported  ssCFreRoutingSupported
        Boolean
    qsig.cmn.ssCIforcedRelease  ssCIforcedRelease
        Boolean
    qsig.cmn.ssCIisolation  ssCIisolation
        Boolean
    qsig.cmn.ssCIprotectionLevel  ssCIprotectionLevel
        Unsigned 32-bit integer
        INTEGER_0_3
    qsig.cmn.ssCIwaitOnBusy  ssCIwaitOnBusy
        Boolean
    qsig.cmn.ssCOsupported  ssCOsupported
        Boolean
    qsig.cmn.ssCTreRoutingSupported  ssCTreRoutingSupported
        Boolean
    qsig.cmn.ssDNDOprotectionLevel  ssDNDOprotectionLevel
        Unsigned 32-bit integer
        INTEGER_0_3
    qsig.cmn.ssSSCTreRoutingSupported  ssSSCTreRoutingSupported
        Boolean
    qsig.cmn.unitId  unitId
        String
        IA5String_SIZE_1_10
    qsig.co.DummyArg  DummyArg
        Unsigned 32-bit integer
    qsig.co.DummyRes  DummyRes
        Unsigned 32-bit integer
    qsig.co.Extension  Extension
        No value
    qsig.co.PathRetainArg  PathRetainArg
        Unsigned 32-bit integer
    qsig.co.ServiceAvailableArg  ServiceAvailableArg
        Unsigned 32-bit integer
    qsig.co.callOffer  callOffer
        Boolean
    qsig.co.extendedServiceList  extendedServiceList
        No value
    qsig.co.extension  extension
        No value
    qsig.co.null  null
        No value
    qsig.co.sequenceOfExtn  sequenceOfExtn
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.co.serviceList  serviceList
        Byte array
    qsig.cpi.CPIPRequestArg  CPIPRequestArg
        No value
    qsig.cpi.CPIRequestArg  CPIRequestArg
        No value
    qsig.cpi.Extension  Extension
        No value
    qsig.cpi.argumentExtension  argumentExtension
        Unsigned 32-bit integer
    qsig.cpi.cpiCapabilityLevel  cpiCapabilityLevel
        Unsigned 32-bit integer
    qsig.cpi.cpiProtectionLevel  cpiProtectionLevel
        Unsigned 32-bit integer
    qsig.cpi.extension  extension
        No value
    qsig.cpi.sequenceOfExtn  sequenceOfExtn
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.ct.CTActiveArg  CTActiveArg
        No value
    qsig.ct.CTCompleteArg  CTCompleteArg
        No value
    qsig.ct.CTIdentifyRes  CTIdentifyRes
        No value
    qsig.ct.CTInitiateArg  CTInitiateArg
        No value
    qsig.ct.CTSetupArg  CTSetupArg
        No value
    qsig.ct.CTUpdateArg  CTUpdateArg
        No value
    qsig.ct.DummyArg  DummyArg
        Unsigned 32-bit integer
    qsig.ct.DummyRes  DummyRes
        Unsigned 32-bit integer
    qsig.ct.Extension  Extension
        No value
    qsig.ct.SubaddressTransferArg  SubaddressTransferArg
        No value
    qsig.ct.argumentExtension  argumentExtension
        Unsigned 32-bit integer
        CTIargumentExtension
    qsig.ct.basicCallInfoElements  basicCallInfoElements
        Byte array
        PSS1InformationElement
    qsig.ct.callIdentity  callIdentity
        String
    qsig.ct.callStatus  callStatus
        Unsigned 32-bit integer
    qsig.ct.connectedAddress  connectedAddress
        Unsigned 32-bit integer
        PresentedAddressScreened
    qsig.ct.connectedName  connectedName
        Unsigned 32-bit integer
        Name
    qsig.ct.endDesignation  endDesignation
        Unsigned 32-bit integer
    qsig.ct.multiple  multiple
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.ct.null  null
        No value
    qsig.ct.redirectionName  redirectionName
        Unsigned 32-bit integer
        Name
    qsig.ct.redirectionNumber  redirectionNumber
        Unsigned 32-bit integer
        PresentedNumberScreened
    qsig.ct.redirectionSubaddress  redirectionSubaddress
        Unsigned 32-bit integer
        PartySubaddress
    qsig.ct.rerouteingNumber  rerouteingNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.ct.resultExtension  resultExtension
        Unsigned 32-bit integer
    qsig.ct.single  single
        No value
        Extension
    qsig.dataPartyNumber  dataPartyNumber
        String
        NumberDigits
    qsig.dnd.DNDActivateArg  DNDActivateArg
        No value
    qsig.dnd.DNDActivateRes  DNDActivateRes
        No value
    qsig.dnd.DNDDeactivateArg  DNDDeactivateArg
        No value
    qsig.dnd.DNDInterrogateArg  DNDInterrogateArg
        No value
    qsig.dnd.DNDInterrogateRes  DNDInterrogateRes
        No value
    qsig.dnd.DNDOverrideArg  DNDOverrideArg
        No value
    qsig.dnd.DummyArg  DummyArg
        Unsigned 32-bit integer
    qsig.dnd.DummyRes  DummyRes
        Unsigned 32-bit integer
    qsig.dnd.Extension  Extension
        No value
    qsig.dnd.PathRetainArg  PathRetainArg
        Unsigned 32-bit integer
    qsig.dnd.ServiceAvailableArg  ServiceAvailableArg
        Unsigned 32-bit integer
    qsig.dnd.argumentExtension  argumentExtension
        Unsigned 32-bit integer
        DNDAargumentExtension
    qsig.dnd.basicService  basicService
        Unsigned 32-bit integer
    qsig.dnd.dndProtectionLevel  dndProtectionLevel
        Unsigned 32-bit integer
    qsig.dnd.dndo-high  dndo-high
        Boolean
    qsig.dnd.dndo-low  dndo-low
        Boolean
    qsig.dnd.dndo-medium  dndo-medium
        Boolean
    qsig.dnd.dndoCapabilityLevel  dndoCapabilityLevel
        Unsigned 32-bit integer
    qsig.dnd.extendedServiceList  extendedServiceList
        No value
    qsig.dnd.extension  extension
        No value
    qsig.dnd.null  null
        No value
    qsig.dnd.resultExtension  resultExtension
        Unsigned 32-bit integer
    qsig.dnd.sequenceOfExtn  sequenceOfExtn
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.dnd.servedUserNr  servedUserNr
        Unsigned 32-bit integer
        PartyNumber
    qsig.dnd.serviceList  serviceList
        Byte array
    qsig.dnd.status  status
        Unsigned 32-bit integer
    qsig.dnd.status_item  status item
        No value
    qsig.error  Error
        Unsigned 8-bit integer
    qsig.extensionArgument  extensionArgument
        No value
    qsig.extensionId  extensionId
        Object Identifier
    qsig.ie.data  Data
        Byte array
    qsig.ie.len  Length
        Unsigned 8-bit integer
        Information Element Length
    qsig.ie.type  Type
        Unsigned 8-bit integer
        Information Element Type
    qsig.ie.type.cs4  Type
        Unsigned 8-bit integer
        Information Element Type (Codeset 4)
    qsig.ie.type.cs5  Type
        Unsigned 8-bit integer
        Information Element Type (Codeset 5)
    qsig.mcm.AddressHeader  AddressHeader
        No value
    qsig.mcm.Extension  Extension
        No value
    qsig.mcm.MCMDummyRes  MCMDummyRes
        Unsigned 32-bit integer
    qsig.mcm.MCMInterrogateArg  MCMInterrogateArg
        No value
    qsig.mcm.MCMInterrogateRes  MCMInterrogateRes
        No value
    qsig.mcm.MCMNewMsgArg  MCMNewMsgArg
        No value
    qsig.mcm.MCMNoNewMsgArg  MCMNoNewMsgArg
        No value
    qsig.mcm.MCMServiceArg  MCMServiceArg
        No value
    qsig.mcm.MCMServiceInfo  MCMServiceInfo
        No value
    qsig.mcm.MCMUpdateArg  MCMUpdateArg
        No value
    qsig.mcm.MCMUpdateReqArg  MCMUpdateReqArg
        No value
    qsig.mcm.MCMUpdateReqRes  MCMUpdateReqRes
        Unsigned 32-bit integer
    qsig.mcm.MCMUpdateReqResElt  MCMUpdateReqResElt
        No value
    qsig.mcm.MCMailboxFullArg  MCMailboxFullArg
        No value
    qsig.mcm.MailboxFullPar  MailboxFullPar
        No value
    qsig.mcm.MessageType  MessageType
        Unsigned 32-bit integer
    qsig.mcm.activateMCM  activateMCM
        Unsigned 32-bit integer
        SEQUENCE_OF_MCMServiceInfo
    qsig.mcm.allMsgInfo  allMsgInfo
        No value
    qsig.mcm.argumentExt  argumentExt
        Unsigned 32-bit integer
        MCMNewArgumentExt
    qsig.mcm.capacityReached  capacityReached
        Unsigned 32-bit integer
        INTEGER_0_100
    qsig.mcm.completeInfo  completeInfo
        Unsigned 32-bit integer
    qsig.mcm.compressedInfo  compressedInfo
        No value
    qsig.mcm.deactivateMCM  deactivateMCM
        Unsigned 32-bit integer
        SEQUENCE_OF_MessageType
    qsig.mcm.extension  extension
        No value
    qsig.mcm.extensions  extensions
        Unsigned 32-bit integer
        MCMExtensions
    qsig.mcm.highestPriority  highestPriority
        Unsigned 32-bit integer
        Priority
    qsig.mcm.integer  integer
        Unsigned 32-bit integer
        INTEGER_0_65535
    qsig.mcm.interrogateInfo  interrogateInfo
        Unsigned 32-bit integer
        SEQUENCE_OF_MessageType
    qsig.mcm.interrogateResult  interrogateResult
        Unsigned 32-bit integer
        SEQUENCE_OF_MCMServiceInfo
    qsig.mcm.lastTimeStamp  lastTimeStamp
        String
        TimeStamp
    qsig.mcm.mCMChange  mCMChange
        Unsigned 32-bit integer
    qsig.mcm.mCMModeNew  mCMModeNew
        Signed 32-bit integer
        MCMMode
    qsig.mcm.mCMModeRetrieved  mCMModeRetrieved
        Signed 32-bit integer
        MCMMode
    qsig.mcm.mailboxFullFor  mailboxFullFor
        Unsigned 32-bit integer
    qsig.mcm.messageCentreID  messageCentreID
        Unsigned 32-bit integer
        MsgCentreId
    qsig.mcm.messageType  messageType
        Unsigned 32-bit integer
    qsig.mcm.moreInfoFollows  moreInfoFollows
        Boolean
        BOOLEAN
    qsig.mcm.msgCentreId  msgCentreId
        Unsigned 32-bit integer
    qsig.mcm.multipleExtension  multipleExtension
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.mcm.newMsgInfo  newMsgInfo
        Unsigned 32-bit integer
        MessageInfo
    qsig.mcm.newMsgInfoOnly  newMsgInfoOnly
        Unsigned 32-bit integer
        MessageInfo
    qsig.mcm.noMsgsOfMsgType  noMsgsOfMsgType
        No value
    qsig.mcm.none  none
        No value
    qsig.mcm.nrOfMessages  nrOfMessages
        Unsigned 32-bit integer
    qsig.mcm.numericString  numericString
        String
        NumericString_SIZE_1_10
    qsig.mcm.originatingNr  originatingNr
        Unsigned 32-bit integer
        PartyNumber
    qsig.mcm.originatorNr  originatorNr
        Unsigned 32-bit integer
        PartyNumber
    qsig.mcm.partyInfo  partyInfo
        No value
    qsig.mcm.partyNumber  partyNumber
        Unsigned 32-bit integer
    qsig.mcm.priority  priority
        Unsigned 32-bit integer
        INTEGER_0_9
    qsig.mcm.retrievedMsgInfo  retrievedMsgInfo
        Unsigned 32-bit integer
        MessageInfo
    qsig.mcm.retrievedMsgInfoOnly  retrievedMsgInfoOnly
        Unsigned 32-bit integer
        MessageInfo
    qsig.mcm.servedUserNr  servedUserNr
        Unsigned 32-bit integer
        PartyNumber
    qsig.mcm.setToDefaultValues  setToDefaultValues
        No value
    qsig.mcm.specificMessageType  specificMessageType
        Unsigned 32-bit integer
        MessageType
    qsig.mcm.timeStamp  timeStamp
        String
    qsig.mcm.timestamp  timestamp
        String
    qsig.mcm.updateInfo  updateInfo
        Unsigned 32-bit integer
    qsig.mcr.Extension  Extension
        No value
    qsig.mcr.MCAlertingArg  MCAlertingArg
        No value
    qsig.mcr.MCInformArg  MCInformArg
        No value
    qsig.mcr.MCRequestArg  MCRequestArg
        No value
    qsig.mcr.MCRequestResult  MCRequestResult
        No value
    qsig.mcr.basicService  basicService
        Unsigned 32-bit integer
    qsig.mcr.callType  callType
        Unsigned 32-bit integer
    qsig.mcr.cisc  cisc
        No value
    qsig.mcr.cooperatingAddress  cooperatingAddress
        Unsigned 32-bit integer
        PresentedAddressUnscreened
    qsig.mcr.correlation  correlation
        No value
    qsig.mcr.correlationData  correlationData
        String
        CallIdentity
    qsig.mcr.correlationReason  correlationReason
        Unsigned 32-bit integer
    qsig.mcr.destinationAddress  destinationAddress
        Unsigned 32-bit integer
        PresentedAddressUnscreened
    qsig.mcr.extensions  extensions
        Unsigned 32-bit integer
        MCRExtensions
    qsig.mcr.multiple  multiple
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.mcr.none  none
        No value
    qsig.mcr.requestingAddress  requestingAddress
        Unsigned 32-bit integer
        PresentedAddressUnscreened
    qsig.mcr.retainOrigCall  retainOrigCall
        Boolean
        BOOLEAN
    qsig.mcr.single  single
        No value
        Extension
    qsig.mid.Extension  Extension
        No value
    qsig.mid.MIDDummyRes  MIDDummyRes
        Unsigned 32-bit integer
    qsig.mid.MIDMailboxAuthArg  MIDMailboxAuthArg
        No value
    qsig.mid.MIDMailboxIDArg  MIDMailboxIDArg
        No value
    qsig.mid.extension  extension
        No value
    qsig.mid.extensions  extensions
        Unsigned 32-bit integer
        MIDExtensions
    qsig.mid.mailBox  mailBox
        Unsigned 32-bit integer
        String
    qsig.mid.messageCentreID  messageCentreID
        Unsigned 32-bit integer
        MsgCentreId
    qsig.mid.messageType  messageType
        Unsigned 32-bit integer
    qsig.mid.multipleExtension  multipleExtension
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.mid.none  none
        No value
    qsig.mid.partyInfo  partyInfo
        No value
    qsig.mid.password  password
        Unsigned 32-bit integer
        String
    qsig.mid.servedUserName  servedUserName
        Unsigned 32-bit integer
        Name
    qsig.mid.servedUserNr  servedUserNr
        Unsigned 32-bit integer
        PresentedAddressUnscreened
    qsig.mid.stringBmp  stringBmp
        String
        BMPString
    qsig.mid.stringUtf8  stringUtf8
        String
        UTF8String
    qsig.nSAPSubaddress  nSAPSubaddress
        Byte array
    qsig.na.Extension  Extension
        No value
    qsig.na.NameArg  NameArg
        Unsigned 32-bit integer
    qsig.na.characterSet  characterSet
        Unsigned 32-bit integer
    qsig.na.extension  extension
        Unsigned 32-bit integer
        NameExtension
    qsig.na.multiple  multiple
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.na.name  name
        Unsigned 32-bit integer
    qsig.na.nameData  nameData
        String
    qsig.na.nameNotAvailable  nameNotAvailable
        No value
    qsig.na.namePresentationAllowed  namePresentationAllowed
        Unsigned 32-bit integer
    qsig.na.namePresentationAllowedExtended  namePresentationAllowedExtended
        No value
        NameSet
    qsig.na.namePresentationAllowedSimple  namePresentationAllowedSimple
        String
        NameData
    qsig.na.namePresentationRestricted  namePresentationRestricted
        Unsigned 32-bit integer
    qsig.na.namePresentationRestrictedExtended  namePresentationRestrictedExtended
        No value
        NameSet
    qsig.na.namePresentationRestrictedNull  namePresentationRestrictedNull
        No value
    qsig.na.namePresentationRestrictedSimple  namePresentationRestrictedSimple
        String
        NameData
    qsig.na.nameSequence  nameSequence
        No value
    qsig.na.single  single
        No value
        Extension
    qsig.nationalStandardPartyNumber  nationalStandardPartyNumber
        String
        NumberDigits
    qsig.numberNotAvailableDueToInterworking  numberNotAvailableDueToInterworking
        No value
    qsig.oddCountIndicator  oddCountIndicator
        Boolean
        BOOLEAN
    qsig.operation  Operation
        Unsigned 8-bit integer
    qsig.partyNumber  partyNumber
        Unsigned 32-bit integer
    qsig.partySubaddress  partySubaddress
        Unsigned 32-bit integer
    qsig.pc  Party category
        Unsigned 8-bit integer
    qsig.pr.DummyArg  DummyArg
        Unsigned 32-bit integer
    qsig.pr.DummyResult  DummyResult
        Unsigned 32-bit integer
    qsig.pr.Extension  Extension
        No value
    qsig.pr.PRProposeArg  PRProposeArg
        No value
    qsig.pr.PRRetainArg  PRRetainArg
        No value
    qsig.pr.PRSetupArg  PRSetupArg
        No value
    qsig.pr.callIdentity  callIdentity
        String
    qsig.pr.extension  extension
        Unsigned 32-bit integer
        PRPExtension
    qsig.pr.multiple  multiple
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.pr.null  null
        No value
    qsig.pr.rerouteingNumber  rerouteingNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.pr.single  single
        No value
        Extension
    qsig.presentationAllowedAddressNS  presentationAllowedAddressNS
        No value
        NumberScreened
    qsig.presentationAllowedAddressNU  presentationAllowedAddressNU
        Unsigned 32-bit integer
        PartyNumber
    qsig.presentationAllowedAddressS  presentationAllowedAddressS
        No value
        AddressScreened
    qsig.presentationAllowedAddressU  presentationAllowedAddressU
        No value
        Address
    qsig.presentationRestricted  presentationRestricted
        No value
    qsig.presentationRestrictedAddressNS  presentationRestrictedAddressNS
        No value
        NumberScreened
    qsig.presentationRestrictedAddressNU  presentationRestrictedAddressNU
        Unsigned 32-bit integer
        PartyNumber
    qsig.presentationRestrictedAddressS  presentationRestrictedAddressS
        No value
        AddressScreened
    qsig.presentationRestrictedAddressU  presentationRestrictedAddressU
        No value
        Address
    qsig.privateNumberDigits  privateNumberDigits
        String
        NumberDigits
    qsig.privatePartyNumber  privatePartyNumber
        No value
    qsig.privateTypeOfNumber  privateTypeOfNumber
        Unsigned 32-bit integer
    qsig.publicNumberDigits  publicNumberDigits
        String
        NumberDigits
    qsig.publicPartyNumber  publicPartyNumber
        No value
    qsig.publicTypeOfNumber  publicTypeOfNumber
        Unsigned 32-bit integer
    qsig.pumch.DivertArg  DivertArg
        No value
    qsig.pumch.DummyRes  DummyRes
        Unsigned 32-bit integer
    qsig.pumch.EnquiryArg  EnquiryArg
        No value
    qsig.pumch.EnquiryRes  EnquiryRes
        Unsigned 32-bit integer
    qsig.pumch.Extension  Extension
        No value
    qsig.pumch.InformArg  InformArg
        No value
    qsig.pumch.PumoArg  PumoArg
        No value
    qsig.pumch.alternativeId  alternativeId
        Byte array
    qsig.pumch.argExtension  argExtension
        Unsigned 32-bit integer
        PumiExtension
    qsig.pumch.both  both
        No value
    qsig.pumch.callingNumber  callingNumber
        Unsigned 32-bit integer
        PresentedNumberScreened
    qsig.pumch.callingUserName  callingUserName
        Unsigned 32-bit integer
        Name
    qsig.pumch.callingUserSub  callingUserSub
        Unsigned 32-bit integer
        PartySubaddress
    qsig.pumch.cfuActivated  cfuActivated
        No value
    qsig.pumch.currLocation  currLocation
        No value
    qsig.pumch.destinationNumber  destinationNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.pumch.divOptions  divOptions
        Unsigned 32-bit integer
        SubscriptionOption
    qsig.pumch.divToAddress  divToAddress
        No value
        Address
    qsig.pumch.extension  extension
        No value
    qsig.pumch.hostingAddr  hostingAddr
        Unsigned 32-bit integer
        PartyNumber
    qsig.pumch.multiple  multiple
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.pumch.null  null
        No value
    qsig.pumch.pisnNumber  pisnNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.pumch.pumIdentity  pumIdentity
        Unsigned 32-bit integer
    qsig.pumch.pumName  pumName
        Unsigned 32-bit integer
        Name
    qsig.pumch.pumUserSub  pumUserSub
        Unsigned 32-bit integer
        PartySubaddress
    qsig.pumch.qSIGInfoElement  qSIGInfoElement
        Byte array
        PSS1InformationElement
    qsig.pumch.sendingComplete  sendingComplete
        No value
    qsig.pumch.sequOfExtn  sequOfExtn
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.pumch.single  single
        No value
        Extension
    qsig.pumr.DummyRes  DummyRes
        Unsigned 32-bit integer
    qsig.pumr.Extension  Extension
        No value
    qsig.pumr.PumDe_regArg  PumDe-regArg
        No value
    qsig.pumr.PumDelRegArg  PumDelRegArg
        No value
    qsig.pumr.PumInterrogArg  PumInterrogArg
        No value
    qsig.pumr.PumInterrogRes  PumInterrogRes
        Unsigned 32-bit integer
    qsig.pumr.PumInterrogRes_item  PumInterrogRes item
        No value
    qsig.pumr.PumRegistrArg  PumRegistrArg
        No value
    qsig.pumr.PumRegistrRes  PumRegistrRes
        No value
    qsig.pumr.activatingUserAddr  activatingUserAddr
        Unsigned 32-bit integer
        PartyNumber
    qsig.pumr.activatingUserPin  activatingUserPin
        Byte array
        UserPin
    qsig.pumr.alternativeId  alternativeId
        Byte array
    qsig.pumr.argExtension  argExtension
        Unsigned 32-bit integer
        PumrExtension
    qsig.pumr.basicService  basicService
        Unsigned 32-bit integer
    qsig.pumr.durationOfSession  durationOfSession
        Signed 32-bit integer
        INTEGER
    qsig.pumr.extension  extension
        No value
    qsig.pumr.homeInfoOnly  homeInfoOnly
        Boolean
        BOOLEAN
    qsig.pumr.hostingAddr  hostingAddr
        Unsigned 32-bit integer
        PartyNumber
    qsig.pumr.interrogParams  interrogParams
        No value
        SessionParams
    qsig.pumr.null  null
        No value
    qsig.pumr.numberOfOutgCalls  numberOfOutgCalls
        Signed 32-bit integer
        INTEGER
    qsig.pumr.pumNumber  pumNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.pumr.pumUserId  pumUserId
        Unsigned 32-bit integer
        RpumUserId
    qsig.pumr.pumUserPin  pumUserPin
        Byte array
        UserPin
    qsig.pumr.sequOfExtn  sequOfExtn
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.pumr.serviceOption  serviceOption
        Unsigned 32-bit integer
    qsig.pumr.sessionParams  sessionParams
        No value
    qsig.pumr.userPin  userPin
        Unsigned 32-bit integer
    qsig.re.Extension  Extension
        No value
    qsig.re.ReAlertingArg  ReAlertingArg
        No value
    qsig.re.ReAnswerArg  ReAnswerArg
        No value
    qsig.re.alertedName  alertedName
        Unsigned 32-bit integer
        Name
    qsig.re.alertedNumber  alertedNumber
        Unsigned 32-bit integer
        PresentedNumberScreened
    qsig.re.argumentExtension  argumentExtension
        Unsigned 32-bit integer
    qsig.re.connectedName  connectedName
        Unsigned 32-bit integer
        Name
    qsig.re.connectedNumber  connectedNumber
        Unsigned 32-bit integer
        PresentedNumberScreened
    qsig.re.connectedSubaddress  connectedSubaddress
        Unsigned 32-bit integer
        PartySubaddress
    qsig.re.extension  extension
        No value
    qsig.re.multipleExtension  multipleExtension
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.screeningIndicator  screeningIndicator
        Unsigned 32-bit integer
    qsig.sd.DisplayArg  DisplayArg
        No value
    qsig.sd.Extension  Extension
        No value
    qsig.sd.KeypadArg  KeypadArg
        No value
    qsig.sd.displayString  displayString
        Unsigned 32-bit integer
    qsig.sd.displayStringExtended  displayStringExtended
        Byte array
        BMPStringExtended
    qsig.sd.displayStringNormal  displayStringNormal
        Byte array
        BMPStringNormal
    qsig.sd.extension  extension
        Unsigned 32-bit integer
        SDExtension
    qsig.sd.keypadString  keypadString
        Byte array
        BMPStringNormal
    qsig.sd.multipleExtension  multipleExtension
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.service  Service
        Unsigned 8-bit integer
        Supplementary Service
    qsig.sms.DummyRes  DummyRes
        Unsigned 32-bit integer
    qsig.sms.Extension  Extension
        No value
    qsig.sms.PAR_smsCommandError  PAR-smsCommandError
        No value
    qsig.sms.PAR_smsDeliverError  PAR-smsDeliverError
        No value
    qsig.sms.PAR_smsStatusReportError  PAR-smsStatusReportError
        No value
    qsig.sms.PAR_smsSubmitError  PAR-smsSubmitError
        No value
    qsig.sms.ScAlertArg  ScAlertArg
        No value
    qsig.sms.SmsCommandArg  SmsCommandArg
        No value
    qsig.sms.SmsCommandRes  SmsCommandRes
        No value
    qsig.sms.SmsDeliverArg  SmsDeliverArg
        No value
    qsig.sms.SmsDeliverRes  SmsDeliverRes
        No value
    qsig.sms.SmsExtension  SmsExtension
        Unsigned 32-bit integer
    qsig.sms.SmsStatusReportArg  SmsStatusReportArg
        No value
    qsig.sms.SmsStatusReportRes  SmsStatusReportRes
        No value
    qsig.sms.SmsSubmitArg  SmsSubmitArg
        No value
    qsig.sms.SmsSubmitRes  SmsSubmitRes
        No value
    qsig.sms.UserDataHeaderChoice  UserDataHeaderChoice
        Unsigned 32-bit integer
    qsig.sms.applicationPort16BitHeader  applicationPort16BitHeader
        No value
    qsig.sms.applicationPort8BitHeader  applicationPort8BitHeader
        No value
    qsig.sms.cancelSRRforConcatenatedSM  cancelSRRforConcatenatedSM
        Boolean
    qsig.sms.class  class
        Unsigned 32-bit integer
        INTEGER_0_3
    qsig.sms.commandData  commandData
        Byte array
    qsig.sms.commandType  commandType
        Unsigned 32-bit integer
    qsig.sms.compressed  compressed
        Boolean
        BOOLEAN
    qsig.sms.concatenated16BitSMHeader  concatenated16BitSMHeader
        No value
    qsig.sms.concatenated16BitSMReferenceNumber  concatenated16BitSMReferenceNumber
        Unsigned 32-bit integer
        INTEGER_0_65536
    qsig.sms.concatenated8BitSMHeader  concatenated8BitSMHeader
        No value
    qsig.sms.concatenated8BitSMReferenceNumber  concatenated8BitSMReferenceNumber
        Unsigned 32-bit integer
        INTEGER_0_255
    qsig.sms.dataHeaderSourceIndicator  dataHeaderSourceIndicator
        Unsigned 32-bit integer
    qsig.sms.destination16BitPort  destination16BitPort
        Unsigned 32-bit integer
        INTEGER_0_65536
    qsig.sms.destination8BitPort  destination8BitPort
        Unsigned 32-bit integer
        INTEGER_0_255
    qsig.sms.destinationAddress  destinationAddress
        Unsigned 32-bit integer
        PartyNumber
    qsig.sms.dischargeTime  dischargeTime
        String
    qsig.sms.enhancedVP  enhancedVP
        Unsigned 32-bit integer
    qsig.sms.failureCause  failureCause
        Unsigned 32-bit integer
    qsig.sms.genericUserData  genericUserData
        Byte array
        OCTET_STRING
    qsig.sms.genericUserValue  genericUserValue
        No value
    qsig.sms.includeOrigUDHintoSR  includeOrigUDHintoSR
        Boolean
    qsig.sms.maximumNumberOf16BitSMInConcatenatedSM  maximumNumberOf16BitSMInConcatenatedSM
        Unsigned 32-bit integer
        INTEGER_0_255
    qsig.sms.maximumNumberOf8BitSMInConcatenatedSM  maximumNumberOf8BitSMInConcatenatedSM
        Unsigned 32-bit integer
        INTEGER_0_255
    qsig.sms.messageNumber  messageNumber
        Unsigned 32-bit integer
        MessageReference
    qsig.sms.messageReference  messageReference
        Unsigned 32-bit integer
    qsig.sms.moreMessagesToSend  moreMessagesToSend
        Boolean
        BOOLEAN
    qsig.sms.multiple  multiple
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.sms.null  null
        No value
    qsig.sms.originatingAddress  originatingAddress
        Unsigned 32-bit integer
        PartyNumber
    qsig.sms.originatingName  originatingName
        Unsigned 32-bit integer
        Name
    qsig.sms.originator16BitPort  originator16BitPort
        Unsigned 32-bit integer
        INTEGER_0_65536
    qsig.sms.originator8BitPort  originator8BitPort
        Unsigned 32-bit integer
        INTEGER_0_255
    qsig.sms.parameterValue  parameterValue
        Unsigned 32-bit integer
        INTEGER_0_255
    qsig.sms.priority  priority
        Boolean
        BOOLEAN
    qsig.sms.protocolIdentifier  protocolIdentifier
        Unsigned 32-bit integer
    qsig.sms.recipientAddress  recipientAddress
        Unsigned 32-bit integer
        PartyNumber
    qsig.sms.recipientName  recipientName
        Unsigned 32-bit integer
        Name
    qsig.sms.rejectDuplicates  rejectDuplicates
        Boolean
        BOOLEAN
    qsig.sms.replyPath  replyPath
        Boolean
        BOOLEAN
    qsig.sms.resChoiceSeq  resChoiceSeq
        No value
    qsig.sms.sRforPermanentError  sRforPermanentError
        Boolean
    qsig.sms.sRforTempErrorSCnotTrying  sRforTempErrorSCnotTrying
        Boolean
    qsig.sms.sRforTempErrorSCstillTrying  sRforTempErrorSCstillTrying
        Boolean
    qsig.sms.sRforTransactionCompleted  sRforTransactionCompleted
        Boolean
    qsig.sms.scAddressSaved  scAddressSaved
        Boolean
        BOOLEAN
    qsig.sms.sequenceNumberOf16BitSM  sequenceNumberOf16BitSM
        Unsigned 32-bit integer
        INTEGER_0_255
    qsig.sms.sequenceNumberOf8BitSM  sequenceNumberOf8BitSM
        Unsigned 32-bit integer
        INTEGER_0_255
    qsig.sms.serviceCentreTimeStamp  serviceCentreTimeStamp
        String
    qsig.sms.shortMessageText  shortMessageText
        No value
    qsig.sms.shortMessageTextData  shortMessageTextData
        Byte array
    qsig.sms.shortMessageTextType  shortMessageTextType
        Unsigned 32-bit integer
    qsig.sms.single  single
        No value
        Extension
    qsig.sms.singleShotSM  singleShotSM
        Boolean
        BOOLEAN
    qsig.sms.smDeliverParameter  smDeliverParameter
        No value
    qsig.sms.smSubmitParameter  smSubmitParameter
        No value
    qsig.sms.smsDeliverResponseChoice  smsDeliverResponseChoice
        Unsigned 32-bit integer
        SmsDeliverResChoice
    qsig.sms.smsExtension  smsExtension
        Unsigned 32-bit integer
    qsig.sms.smsStatusReportResponseChoice  smsStatusReportResponseChoice
        Unsigned 32-bit integer
    qsig.sms.smscControlParameterHeader  smscControlParameterHeader
        Byte array
    qsig.sms.status  status
        Unsigned 32-bit integer
    qsig.sms.statusReportIndication  statusReportIndication
        Boolean
        BOOLEAN
    qsig.sms.statusReportQualifier  statusReportQualifier
        Boolean
        BOOLEAN
    qsig.sms.statusReportRequest  statusReportRequest
        Boolean
        BOOLEAN
    qsig.sms.userData  userData
        No value
    qsig.sms.userDataHeader  userDataHeader
        Unsigned 32-bit integer
    qsig.sms.validityPeriod  validityPeriod
        Unsigned 32-bit integer
    qsig.sms.validityPeriodAbs  validityPeriodAbs
        String
    qsig.sms.validityPeriodEnh  validityPeriodEnh
        No value
    qsig.sms.validityPeriodRel  validityPeriodRel
        Unsigned 32-bit integer
    qsig.sms.validityPeriodSec  validityPeriodSec
        Unsigned 32-bit integer
        INTEGER_0_255
    qsig.sms.validityPeriodSemi  validityPeriodSemi
        Byte array
    qsig.sms.wirelessControlHeader  wirelessControlHeader
        Byte array
    qsig.ssct.DummyArg  DummyArg
        Unsigned 32-bit integer
    qsig.ssct.DummyRes  DummyRes
        Unsigned 32-bit integer
    qsig.ssct.Extension  Extension
        No value
    qsig.ssct.SSCTDigitInfoArg  SSCTDigitInfoArg
        No value
    qsig.ssct.SSCTInitiateArg  SSCTInitiateArg
        No value
    qsig.ssct.SSCTSetupArg  SSCTSetupArg
        No value
    qsig.ssct.argumentExtension  argumentExtension
        Unsigned 32-bit integer
        SSCTIargumentExtension
    qsig.ssct.awaitConnect  awaitConnect
        Boolean
    qsig.ssct.multiple  multiple
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.ssct.null  null
        No value
    qsig.ssct.rerouteingNumber  rerouteingNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.ssct.reroutingNumber  reroutingNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.ssct.sendingComplete  sendingComplete
        No value
    qsig.ssct.single  single
        No value
        Extension
    qsig.ssct.transferredAddress  transferredAddress
        Unsigned 32-bit integer
        PresentedAddressScreened
    qsig.ssct.transferredName  transferredName
        Unsigned 32-bit integer
        Name
    qsig.ssct.transferringAddress  transferringAddress
        Unsigned 32-bit integer
        PresentedAddressScreened
    qsig.ssct.transferringName  transferringName
        Unsigned 32-bit integer
        Name
    qsig.subaddressInformation  subaddressInformation
        Byte array
    qsig.sync.Extension  Extension
        No value
    qsig.sync.SynchronizationInfoArg  SynchronizationInfoArg
        No value
    qsig.sync.SynchronizationReqArg  SynchronizationReqArg
        No value
    qsig.sync.SynchronizationReqRes  SynchronizationReqRes
        No value
    qsig.sync.action  action
        Signed 32-bit integer
    qsig.sync.argExtension  argExtension
        Unsigned 32-bit integer
    qsig.sync.extension  extension
        No value
    qsig.sync.response  response
        Boolean
        BOOLEAN
    qsig.sync.sequOfExtn  sequOfExtn
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.sync.stateinfo  stateinfo
        Signed 32-bit integer
    qsig.tc  Transit count
        Unsigned 8-bit integer
    qsig.telexPartyNumber  telexPartyNumber
        String
        NumberDigits
    qsig.unknownPartyNumber  unknownPartyNumber
        String
        NumberDigits
    qsig.userSpecifiedSubaddress  userSpecifiedSubaddress
        No value
    qsig.wtmau.ARG_transferAuthParam  ARG-transferAuthParam
        No value
    qsig.wtmau.AuthWtmArg  AuthWtmArg
        No value
    qsig.wtmau.AuthWtmRes  AuthWtmRes
        No value
    qsig.wtmau.CalcWtatInfoUnit  CalcWtatInfoUnit
        No value
    qsig.wtmau.Extension  Extension
        No value
    qsig.wtmau.WtanParamArg  WtanParamArg
        No value
    qsig.wtmau.WtanParamRes  WtanParamRes
        No value
    qsig.wtmau.WtatParamArg  WtatParamArg
        No value
    qsig.wtmau.WtatParamRes  WtatParamRes
        No value
    qsig.wtmau.alternativeId  alternativeId
        Byte array
    qsig.wtmau.autWtmResValue  autWtmResValue
        Unsigned 32-bit integer
    qsig.wtmau.authAlg  authAlg
        Unsigned 32-bit integer
        DefinedIDs
    qsig.wtmau.authAlgorithm  authAlgorithm
        No value
    qsig.wtmau.authChallenge  authChallenge
        Byte array
    qsig.wtmau.authKey  authKey
        Byte array
    qsig.wtmau.authResponse  authResponse
        Byte array
    qsig.wtmau.authSessionKey  authSessionKey
        Byte array
    qsig.wtmau.authSessionKeyInfo  authSessionKeyInfo
        No value
    qsig.wtmau.calcWtanInfo  calcWtanInfo
        No value
    qsig.wtmau.calcWtatInfo  calcWtatInfo
        Unsigned 32-bit integer
    qsig.wtmau.calculationParam  calculationParam
        Byte array
    qsig.wtmau.canCompute  canCompute
        No value
    qsig.wtmau.challLen  challLen
        Unsigned 32-bit integer
        INTEGER_1_8
    qsig.wtmau.derivedCipherKey  derivedCipherKey
        Byte array
    qsig.wtmau.dummyExtension  dummyExtension
        Unsigned 32-bit integer
    qsig.wtmau.extension  extension
        No value
    qsig.wtmau.param  param
        No value
    qsig.wtmau.pisnNumber  pisnNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.wtmau.sequOfExtn  sequOfExtn
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.wtmau.wtanParamInfo  wtanParamInfo
        Unsigned 32-bit integer
    qsig.wtmau.wtatParamInfo  wtatParamInfo
        No value
    qsig.wtmau.wtatParamInfoChoice  wtatParamInfoChoice
        Unsigned 32-bit integer
    qsig.wtmau.wtmUserId  wtmUserId
        Unsigned 32-bit integer
    qsig.wtmch.DivertArg  DivertArg
        No value
    qsig.wtmch.DummyRes  DummyRes
        Unsigned 32-bit integer
    qsig.wtmch.EnquiryArg  EnquiryArg
        No value
    qsig.wtmch.EnquiryRes  EnquiryRes
        Unsigned 32-bit integer
    qsig.wtmch.Extension  Extension
        No value
    qsig.wtmch.InformArg  InformArg
        No value
    qsig.wtmch.WtmoArg  WtmoArg
        No value
    qsig.wtmch.alternativeId  alternativeId
        Byte array
    qsig.wtmch.argExtension  argExtension
        Unsigned 32-bit integer
        WtmiExtension
    qsig.wtmch.both  both
        No value
    qsig.wtmch.callingName  callingName
        Unsigned 32-bit integer
        Name
    qsig.wtmch.callingNumber  callingNumber
        Unsigned 32-bit integer
        PresentedNumberScreened
    qsig.wtmch.callingUserSub  callingUserSub
        Unsigned 32-bit integer
        PartySubaddress
    qsig.wtmch.cfuActivated  cfuActivated
        No value
    qsig.wtmch.currLocation  currLocation
        No value
    qsig.wtmch.destinationNumber  destinationNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.wtmch.divOptions  divOptions
        Unsigned 32-bit integer
        SubscriptionOption
    qsig.wtmch.divToAddress  divToAddress
        No value
        Address
    qsig.wtmch.extension  extension
        No value
    qsig.wtmch.multiple  multiple
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.wtmch.null  null
        No value
    qsig.wtmch.pisnNumber  pisnNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.wtmch.qSIGInfoElement  qSIGInfoElement
        Byte array
        PSS1InformationElement
    qsig.wtmch.sendingComplete  sendingComplete
        No value
    qsig.wtmch.sequOfExtn  sequOfExtn
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.wtmch.single  single
        No value
        Extension
    qsig.wtmch.visitPINX  visitPINX
        Unsigned 32-bit integer
        PartyNumber
    qsig.wtmch.wtmIdentity  wtmIdentity
        Unsigned 32-bit integer
    qsig.wtmch.wtmName  wtmName
        Unsigned 32-bit integer
        Name
    qsig.wtmch.wtmUserSub  wtmUserSub
        Unsigned 32-bit integer
        PartySubaddress
    qsig.wtmlr.DummyRes  DummyRes
        Unsigned 32-bit integer
    qsig.wtmlr.Extension  Extension
        No value
    qsig.wtmlr.GetRRCInfArg  GetRRCInfArg
        No value
    qsig.wtmlr.GetRRCInfRes  GetRRCInfRes
        No value
    qsig.wtmlr.LocDeRegArg  LocDeRegArg
        No value
    qsig.wtmlr.LocDelArg  LocDelArg
        No value
    qsig.wtmlr.LocInfoCheckArg  LocInfoCheckArg
        No value
    qsig.wtmlr.LocInfoCheckRes  LocInfoCheckRes
        No value
    qsig.wtmlr.LocUpdArg  LocUpdArg
        No value
    qsig.wtmlr.PisnEnqArg  PisnEnqArg
        No value
    qsig.wtmlr.PisnEnqRes  PisnEnqRes
        No value
    qsig.wtmlr.alternativeId  alternativeId
        Byte array
    qsig.wtmlr.argExtension  argExtension
        Unsigned 32-bit integer
        LrExtension
    qsig.wtmlr.basicService  basicService
        Unsigned 32-bit integer
    qsig.wtmlr.checkResult  checkResult
        Unsigned 32-bit integer
    qsig.wtmlr.extension  extension
        No value
    qsig.wtmlr.null  null
        No value
    qsig.wtmlr.pisnNumber  pisnNumber
        Unsigned 32-bit integer
        PartyNumber
    qsig.wtmlr.resExtension  resExtension
        Unsigned 32-bit integer
        LrExtension
    qsig.wtmlr.rrClass  rrClass
        Unsigned 32-bit integer
    qsig.wtmlr.sequOfExtn  sequOfExtn
        Unsigned 32-bit integer
        SEQUENCE_OF_Extension
    qsig.wtmlr.visitPINX  visitPINX
        Unsigned 32-bit integer
        PartyNumber
    qsig.wtmlr.wtmUserId  wtmUserId
        Unsigned 32-bit integer

Quake II Network Protocol (quake2)

    quake2.c2s  Client to Server
        Unsigned 32-bit integer
    quake2.connectionless  Connectionless
        Unsigned 32-bit integer
    quake2.connectionless.marker  Marker
        Unsigned 32-bit integer
    quake2.connectionless.text  Text
        String
    quake2.game  Game
        Unsigned 32-bit integer
    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

Quake III Arena Network Protocol (quake3)

    quake3.connectionless  Connectionless
        Unsigned 32-bit integer
    quake3.connectionless.command  Command
        String
    quake3.connectionless.marker  Marker
        Unsigned 32-bit integer
    quake3.connectionless.text  Text
        String
    quake3.direction  Direction
        No value
        Packet Direction
    quake3.game  Game
        Unsigned 32-bit integer
    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 Network Protocol (quake)

    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
        NULL terminated string
        Game Name
    quake.control.connect.version  Version
        Unsigned 8-bit integer
        Game Protocol Version Number
    quake.control.player_info.address  Address
        NULL terminated 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
        NULL terminated string
        Player Name
    quake.control.player_info.player  Player
        Unsigned 8-bit integer
    quake.control.reject.reason  Reason
        NULL terminated string
        Reject Reason
    quake.control.rule_info.lastrule  Last Rule
        NULL terminated string
        Last Rule Name
    quake.control.rule_info.rule  Rule
        NULL terminated string
        Rule Name
    quake.control.rule_info.value  Value
        NULL terminated string
        Rule Value
    quake.control.server_info.address  Address
        NULL terminated string
        Server Address
    quake.control.server_info.game  Game
        NULL terminated string
        Game Name
    quake.control.server_info.map  Map
        NULL terminated string
        Map Name
    quake.control.server_info.max_player  Maximal Number of Players
        Unsigned 8-bit integer
    quake.control.server_info.num_player  Number of Players
        Unsigned 8-bit integer
        Current Number of Players
    quake.control.server_info.server  Server
        NULL terminated 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
    quake.header.length  Length
        Unsigned 16-bit integer
        full data length
    quake.header.sequence  Sequence
        Unsigned 32-bit integer
        Sequence Number

QuakeWorld Network Protocol (quakeworld)

    quakeworld.c2s  Client to Server
        Unsigned 32-bit integer
    quakeworld.connectionless  Connectionless
        Unsigned 32-bit integer
    quakeworld.connectionless.arguments  Arguments
        String
    quakeworld.connectionless.command  Command
        String
    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
    quakeworld.connectionless.rcon.command  Command
        String
    quakeworld.connectionless.rcon.password  Password
        String
        Rcon Password
    quakeworld.connectionless.text  Text
        String
    quakeworld.game  Game
        Unsigned 32-bit integer
    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

Qualified Logical Link Control (qllc)

    qllc.address  Address Field
        Unsigned 8-bit integer
    qllc.control  Control Field
        Unsigned 8-bit integer

RFC 2250 MPEG1 (mpeg1)

    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

RFC 2435 JPEG (jpeg)

    jpeg.main_hdr  Main Header
        No value
    jpeg.main_hdr.height  Height
        Unsigned 8-bit integer
    jpeg.main_hdr.offset  Fragment Offset
        Unsigned 24-bit integer
    jpeg.main_hdr.q  Q
        Unsigned 8-bit integer
    jpeg.main_hdr.ts  Type Specific
        Unsigned 8-bit integer
    jpeg.main_hdr.type  Type
        Unsigned 8-bit integer
    jpeg.main_hdr.width  Width
        Unsigned 8-bit integer
    jpeg.payload  Payload
        Byte array
    jpeg.qtable_hdr  Quantization Table Header
        No value
    jpeg.qtable_hdr.data  Quantization Table Data
        Byte array
    jpeg.qtable_hdr.length  Length
        Unsigned 16-bit integer
    jpeg.qtable_hdr.mbz  MBZ
        Unsigned 8-bit integer
    jpeg.qtable_hdr.precision  Precision
        Unsigned 8-bit integer
    jpeg.restart_hdr  Restart Marker Header
        No value
    jpeg.restart_hdr.count  Restart Count
        Unsigned 16-bit integer
    jpeg.restart_hdr.f  F
        Unsigned 16-bit integer
    jpeg.restart_hdr.interval  Restart Interval
        Unsigned 16-bit integer
    jpeg.restart_hdr.l  L
        Unsigned 16-bit integer

RFC 2833 RTP Event (rtpevent)

    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 (ripng)

    ripng.cmd  Command
        Unsigned 8-bit integer
    ripng.version  Version
        Unsigned 8-bit integer

RLC (rlc)

    rlc.ctrl_pdu_type  Control PDU Type
        Unsigned 8-bit integer
        PDU Type
    rlc.data  Data
        No value
    rlc.dc  D/C Bit
        Boolean
    rlc.duplicate_of  Duplicate of
        Frame number
    rlc.ext  Extension Bit
        Boolean
    rlc.fragment  RLC Fragment
        Frame number
    rlc.fragments  Reassembled Fragments
        No value
        Fragments
    rlc.he  Header Extension Type
        Unsigned 8-bit integer
    rlc.li  LI
        No value
        Length Indicator
    rlc.li.data  LI Data
        No value
    rlc.li.ext  LI extension bit
        Boolean
    rlc.li.value  LI value
        Unsigned 16-bit integer
    rlc.p  Polling Bit
        Boolean
    rlc.padding  Padding
        Byte array
    rlc.reassembled_in  Reassembled Message in frame
        Frame number
    rlc.seq  Sequence Number
        Unsigned 8-bit integer
    rlc.sufi  SUFI
        No value
    rlc.sufi.bitmap  Bitmap
        Byte array
    rlc.sufi.cw  CW
        Unsigned 8-bit integer
    rlc.sufi.fsn  FSN
        Unsigned 16-bit integer
    rlc.sufi.l  L
        Unsigned 8-bit integer
    rlc.sufi.len  Length
        Unsigned 8-bit integer
    rlc.sufi.lsn  LSN
        Unsigned 16-bit integer
    rlc.sufi.n  N
        Unsigned 8-bit integer
    rlc.sufi.sn  SN
        Unsigned 16-bit integer
    rlc.sufi.sn_ack  SN ACK
        Unsigned 16-bit integer
    rlc.sufi.sn_mrw  SN MRW
        Unsigned 16-bit integer
    rlc.sufi.type  SUFI Type
        Unsigned 8-bit integer
    rlc.sufi.wsn  WSN
        Unsigned 16-bit integer

RLC-LTE (rlc-lte)

    rlc-lte.am  AM
        String
        Ackowledged Mode
    rlc-lte.am.ack-sn  ACK Sequence Number
        Unsigned 16-bit integer
        Sequence Number we're next expecting to receive
    rlc-lte.am.cpt  Control PDU Type
        Unsigned 8-bit integer
        AM Control PDU Type
    rlc-lte.am.data  AM Data
        Byte array
        Acknowledged Mode Data
    rlc-lte.am.e1  Extension bit 1
        Unsigned 8-bit integer
    rlc-lte.am.e2  Extension bit 2
        Unsigned 8-bit integer
    rlc-lte.am.fi  Framing Info
        Unsigned 8-bit integer
        AM Framing Info
    rlc-lte.am.fixed.e  Extension
        Unsigned 8-bit integer
        Fixed Extension Bit
    rlc-lte.am.fixed.sn  Sequence Number
        Unsigned 16-bit integer
        AM Fixed Sequence Number
    rlc-lte.am.frame_type  Frame type
        Unsigned 8-bit integer
        AM Frame Type (Control or Data)
    rlc-lte.am.header  AM Header
        String
        Ackowledged Mode Header
    rlc-lte.am.nack-sn  NACK Sequence Number
        Unsigned 16-bit integer
        Negative Acknowledgement Sequence Number
    rlc-lte.am.p  Polling Bit
        Unsigned 8-bit integer
    rlc-lte.am.rf  Re-segmentation Flag
        Unsigned 8-bit integer
        AM Re-segmentation Flag
    rlc-lte.am.segment.lsf  Last Segment Flag
        Unsigned 8-bit integer
    rlc-lte.am.segment.offset  Segment Offset
        Unsigned 16-bit integer
    rlc-lte.am.so-end  SO End
        Unsigned 16-bit integer
    rlc-lte.am.so-start  SO Start
        Unsigned 16-bit integer
    rlc-lte.channel-id  Channel ID
        Unsigned 16-bit integer
        Channel ID associated with message
    rlc-lte.channel-type  Channel Type
        Unsigned 16-bit integer
        Channel Type associated with message
    rlc-lte.context  Context
        String
    rlc-lte.direction  Direction
        Unsigned 8-bit integer
        Direction of message
    rlc-lte.extension-part  Extension Part
        String
    rlc-lte.extension.e  Extension
        Unsigned 8-bit integer
        Extension in extended part of the header
    rlc-lte.extension.li  Length Indicator
        Unsigned 16-bit integer
    rlc-lte.extension.padding  Padding
        Unsigned 8-bit integer
        Extension header padding
    rlc-lte.header-only  RLC PDU Header only
        Unsigned 8-bit integer
    rlc-lte.mode  RLC Mode
        Unsigned 8-bit integer
    rlc-lte.pdu_length  PDU Length
        Unsigned 16-bit integer
        Length of PDU (in bytes)
    rlc-lte.predefined-data  Predefined data
        Byte array
        Predefined test data
    rlc-lte.priority  Priority
        Unsigned 8-bit integer
    rlc-lte.sequence-analysis  Sequence Analysis
        String
    rlc-lte.sequence-analysis.expected-sn  Expected SN
        Unsigned 16-bit integer
    rlc-lte.sequence-analysis.framing-info-correct  Frame info continued correctly
        Boolean
    rlc-lte.sequence-analysis.mac-retx  Frame retransmitted by MAC
        Boolean
    rlc-lte.sequence-analysis.ok  OK
        Boolean
    rlc-lte.sequence-analysis.previous-frame  Previous frame for channel
        Frame number
    rlc-lte.sequence-analysis.repeated-frame  Repeated frame
        Boolean
    rlc-lte.sequence-analysis.repeated-nack  Repeated NACK
        Unsigned 16-bit integer
    rlc-lte.sequence-analysis.retx  Retransmitted frame
        Boolean
    rlc-lte.sequence-analysis.skipped-frames  Skipped frames
        Boolean
    rlc-lte.tm  TM
        String
        Transparent Mode
    rlc-lte.tm.data  TM Data
        Byte array
        Transparent Mode Data
    rlc-lte.ueid  UEId
        Unsigned 16-bit integer
        User Equipment Identifier associated with message
    rlc-lte.um  UM
        String
        Unackowledged Mode
    rlc-lte.um-seqnum-length  UM Sequence number length
        Unsigned 8-bit integer
        Length of UM sequence number in bits
    rlc-lte.um.data  UM Data
        Byte array
        Unacknowledged Mode Data
    rlc-lte.um.fi  Framing Info
        Unsigned 8-bit integer
    rlc-lte.um.fixed.e  Extension
        Unsigned 8-bit integer
        Extension in fixed part of UM header
    rlc-lte.um.header  UM Header
        String
        Unackowledged Mode Header
    rlc-lte.um.reserved  Reserved
        Unsigned 8-bit integer
        Unacknowledged Mode Fixed header reserved bits
    rlc-lte.um.sn  Sequence number
        Unsigned 8-bit integer
        Unacknowledged Mode Sequence Number

RMCP Security-extensions Protocol (rsp)

    rsp.sequence  Sequence
        Unsigned 32-bit integer
        RSP sequence
    rsp.session_id  Session ID
        Unsigned 32-bit integer
        RSP session ID

RPC Browser (rpc_browser)

    rpc_browser.opnum  Operation
        Unsigned 16-bit integer
    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 wireshark developers.
    rpc_browser.unknown.hyper  Unknown hyper
        Unsigned 64-bit integer
        Unknown hyper. If you know what this is, contact wireshark developers.
    rpc_browser.unknown.long  Unknown long
        Unsigned 32-bit integer
        Unknown long. If you know what this is, contact wireshark developers.
    rpc_browser.unknown.string  Unknown string
        String
        Unknown string. If you know what this is, contact wireshark developers.

RS Interface properties (rs_plcy)

    rs_plcy.opnum  Operation
        Unsigned 16-bit integer

RSTAT (rstat)

    rstat.procedure_v1  V1 Procedure
        Unsigned 32-bit integer
    rstat.procedure_v2  V2 Procedure
        Unsigned 32-bit integer
    rstat.procedure_v3  V3 Procedure
        Unsigned 32-bit integer
    rstat.procedure_v4  V4 Procedure
        Unsigned 32-bit integer

RSYNC File Synchroniser (rsync)

    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

RTcfg (rtcfg)

    rtcfg.ack_length  Ack Length
        Unsigned 32-bit integer
        RTcfg Ack Length
    rtcfg.active_stations  Active Stations
        Unsigned 32-bit integer
        RTcfg Active Stations
    rtcfg.address_type  Address Type
        Unsigned 8-bit integer
        RTcfg Address Type
    rtcfg.burst_rate  Stage 2 Burst Rate
        Unsigned 8-bit integer
        RTcfg Stage 2 Burst Rate
    rtcfg.client_flags  Flags
        Unsigned 8-bit integer
        RTcfg Client Flags
    rtcfg.client_flags.available  Req. Available
        Unsigned 8-bit integer
        Request Available
    rtcfg.client_flags.ready  Client Ready
        Unsigned 8-bit integer
    rtcfg.client_flags.res  Reserved
        Unsigned 8-bit integer
    rtcfg.client_ip_address  Client IP Address
        IPv4 address
        RTcfg Client IP Address
    rtcfg.config_data  Config Data
        Byte array
        RTcfg Config Data
    rtcfg.config_offset  Config Offset
        Unsigned 32-bit integer
        RTcfg Config Offset
    rtcfg.hearbeat_period  Heartbeat Period
        Unsigned 16-bit integer
        RTcfg Heartbeat Period
    rtcfg.id  ID
        Unsigned 8-bit integer
        RTcfg ID
    rtcfg.padding  Padding
        Unsigned 8-bit integer
        RTcfg Padding
    rtcfg.s1_config_length  Stage 1 Config Length
        Unsigned 16-bit integer
        RTcfg Stage 1 Config Length
    rtcfg.s2_config_length  Stage 2 Config Length
        Unsigned 32-bit integer
        RTcfg Stage 2 Config Length
    rtcfg.server_flags  Flags
        Unsigned 8-bit integer
        RTcfg Server Flags
    rtcfg.server_flags.ready  Server Ready
        Unsigned 8-bit integer
    rtcfg.server_flags.res0  Reserved
        Unsigned 8-bit integer
    rtcfg.server_flags.res2  Reserved
        Unsigned 8-bit integer
    rtcfg.server_ip_address  Server IP Address
        IPv4 address
        RTcfg Server IP Address
    rtcfg.vers  Version
        Unsigned 8-bit integer
        RTcfg Version
    rtcfg.vers_id  Version and ID
        Unsigned 8-bit integer
        RTcfg Version and ID

RX Protocol (rx)

    rx.abort  ABORT Packet
        No value
    rx.abort_code  Abort Code
        Unsigned 32-bit integer
    rx.ack  ACK Packet
        No value
    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
    rx.challenge  CHALLENGE Packet
        No value
    rx.cid  CID
        Unsigned 32-bit integer
    rx.encrypted  Encrypted
        No value
        Encrypted part of response packet
    rx.epoch  Epoch
        Date/Time stamp
    rx.first  First Packet
        Unsigned 32-bit integer
    rx.flags  Flags
        Unsigned 8-bit integer
    rx.flags.client_init  Client Initiated
        Boolean
    rx.flags.free_packet  Free Packet
        Boolean
    rx.flags.last_packet  Last Packet
        Boolean
    rx.flags.more_packets  More Packets
        Boolean
    rx.flags.request_ack  Request Ack
        Boolean
    rx.if_mtu  Interface MTU
        Unsigned 32-bit integer
    rx.inc_nonce  Inc Nonce
        Unsigned 32-bit integer
        Incremented Nonce
    rx.kvno  kvno
        Unsigned 32-bit integer
    rx.level  Level
        Unsigned 32-bit integer
    rx.max_mtu  Max MTU
        Unsigned 32-bit integer
    rx.max_packets  Max Packets
        Unsigned 32-bit integer
    rx.maxskew  Max Skew
        Unsigned 16-bit integer
    rx.min_level  Min Level
        Unsigned 32-bit integer
    rx.nonce  Nonce
        Unsigned 32-bit integer
    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
    rx.rwind  rwind
        Unsigned 32-bit integer
    rx.securityindex  Security Index
        Unsigned 32-bit integer
    rx.seq  Sequence Number
        Unsigned 32-bit integer
    rx.serial  Serial
        Unsigned 32-bit integer
    rx.serviceid  Service ID
        Unsigned 16-bit integer
    rx.spare  Spare/Checksum
        Unsigned 16-bit integer
    rx.ticket  ticket
        Byte array
        Ticket
    rx.ticket_len  Ticket len
        Unsigned 32-bit integer
        Ticket Length
    rx.type  Type
        Unsigned 8-bit integer
    rx.userstatus  User Status
        Unsigned 32-bit integer
    rx.version  Version
        Unsigned 32-bit integer
        Version Of Challenge/Response

Radio Access Network Application Part (ranap)

    ranap.APN  APN
        Byte array
    ranap.AccuracyFulfilmentIndicator  AccuracyFulfilmentIndicator
        Unsigned 32-bit integer
    ranap.Alt_RAB_Parameter_ExtendedGuaranteedBitrateInf  Alt-RAB-Parameter-ExtendedGuaranteedBitrateInf
        No value
    ranap.Alt_RAB_Parameter_ExtendedGuaranteedBitrateList  Alt-RAB-Parameter-ExtendedGuaranteedBitrateList
        Unsigned 32-bit integer
    ranap.Alt_RAB_Parameter_ExtendedMaxBitrateInf  Alt-RAB-Parameter-ExtendedMaxBitrateInf
        No value
    ranap.Alt_RAB_Parameter_ExtendedMaxBitrateList  Alt-RAB-Parameter-ExtendedMaxBitrateList
        Unsigned 32-bit integer
    ranap.Alt_RAB_Parameter_GuaranteedBitrateList  Alt-RAB-Parameter-GuaranteedBitrateList
        Unsigned 32-bit integer
    ranap.Alt_RAB_Parameter_MaxBitrateList  Alt-RAB-Parameter-MaxBitrateList
        Unsigned 32-bit integer
    ranap.Alt_RAB_Parameter_SupportedGuaranteedBitrateInf  Alt-RAB-Parameter-SupportedGuaranteedBitrateInf
        No value
    ranap.Alt_RAB_Parameter_SupportedMaxBitrateInf  Alt-RAB-Parameter-SupportedMaxBitrateInf
        No value
    ranap.Alt_RAB_Parameters  Alt-RAB-Parameters
        No value
    ranap.AlternativeRABConfigurationRequest  AlternativeRABConfigurationRequest
        Unsigned 32-bit integer
    ranap.AreaIdentity  AreaIdentity
        Unsigned 32-bit integer
    ranap.Ass_RAB_Parameter_ExtendedGuaranteedBitrateList  Ass-RAB-Parameter-ExtendedGuaranteedBitrateList
        Unsigned 32-bit integer
    ranap.Ass_RAB_Parameter_ExtendedMaxBitrateList  Ass-RAB-Parameter-ExtendedMaxBitrateList
        Unsigned 32-bit integer
    ranap.Ass_RAB_Parameters  Ass-RAB-Parameters
        No value
    ranap.AuthorisedPLMNs_item  AuthorisedPLMNs item
        No value
    ranap.BroadcastAssistanceDataDecipheringKeys  BroadcastAssistanceDataDecipheringKeys
        No value
    ranap.CNMBMSLinkingInformation  CNMBMSLinkingInformation
        No value
    ranap.CN_DeactivateTrace  CN-DeactivateTrace
        No value
    ranap.CN_DomainIndicator  CN-DomainIndicator
        Unsigned 32-bit integer
    ranap.CN_InvokeTrace  CN-InvokeTrace
        No value
    ranap.CSFB_Information  CSFB-Information
        Unsigned 32-bit integer
    ranap.CSG_Id  CSG-Id
        Byte array
    ranap.CSG_Id_List  CSG-Id-List
        Unsigned 32-bit integer
    ranap.CSG_Membership_Status  CSG-Membership-Status
        Unsigned 32-bit integer
    ranap.Cause  Cause
        Unsigned 32-bit integer
    ranap.CellLoadInformationGroup  CellLoadInformationGroup
        No value
    ranap.Cell_Access_Mode  Cell-Access-Mode
        Unsigned 32-bit integer
    ranap.ChosenEncryptionAlgorithm  ChosenEncryptionAlgorithm
        Unsigned 32-bit integer
    ranap.ChosenIntegrityProtectionAlgorithm  ChosenIntegrityProtectionAlgorithm
        Unsigned 32-bit integer
    ranap.ClassmarkInformation2  ClassmarkInformation2
        Byte array
    ranap.ClassmarkInformation3  ClassmarkInformation3
        Byte array
    ranap.ClientType  ClientType
        Unsigned 32-bit integer
    ranap.CommonID  CommonID
        No value
    ranap.CriticalityDiagnostics  CriticalityDiagnostics
        No value
    ranap.CriticalityDiagnostics_IE_List_item  CriticalityDiagnostics-IE-List item
        No value
    ranap.DRX_CycleLengthCoefficient  DRX-CycleLengthCoefficient
        Unsigned 32-bit integer
    ranap.DataVolumeList_item  DataVolumeList item
        No value
    ranap.DataVolumeReport  DataVolumeReport
        No value
    ranap.DataVolumeReportRequest  DataVolumeReportRequest
        No value
    ranap.DeltaRAListofIdleModeUEs  DeltaRAListofIdleModeUEs
        No value
    ranap.DirectInformationTransfer  DirectInformationTransfer
        No value
    ranap.DirectTransfer  DirectTransfer
        No value
    ranap.DirectTransferInformationItem_RANAP_RelocInf  DirectTransferInformationItem-RANAP-RelocInf
        No value
    ranap.DirectTransferInformationList_RANAP_RelocInf  DirectTransferInformationList-RANAP-RelocInf
        Unsigned 32-bit integer
    ranap.E_DCH_MAC_d_Flow_ID  E-DCH-MAC-d-Flow-ID
        Unsigned 32-bit integer
    ranap.E_UTRAN_Service_Handover  E-UTRAN-Service-Handover
        Unsigned 32-bit integer
    ranap.EncryptionAlgorithm  EncryptionAlgorithm
        Unsigned 32-bit integer
    ranap.EncryptionInformation  EncryptionInformation
        No value
    ranap.EncryptionKey  EncryptionKey
        Byte array
    ranap.EnhancedRelocationCompleteConfirm  EnhancedRelocationCompleteConfirm
        No value
    ranap.EnhancedRelocationCompleteFailure  EnhancedRelocationCompleteFailure
        No value
    ranap.EnhancedRelocationCompleteRequest  EnhancedRelocationCompleteRequest
        No value
    ranap.EnhancedRelocationCompleteResponse  EnhancedRelocationCompleteResponse
        No value
    ranap.ErrorIndication  ErrorIndication
        No value
    ranap.ExtendedGuaranteedBitrate  ExtendedGuaranteedBitrate
        Unsigned 32-bit integer
    ranap.ExtendedMaxBitrate  ExtendedMaxBitrate
        Unsigned 32-bit integer
    ranap.ExtendedRNC_ID  ExtendedRNC-ID
        Unsigned 32-bit integer
    ranap.ForwardSRNS_Context  ForwardSRNS-Context
        No value
    ranap.FrequenceLayerConvergenceFlag  FrequenceLayerConvergenceFlag
        Unsigned 32-bit integer
    ranap.GANSS_PositioningDataSet  GANSS-PositioningDataSet
        Unsigned 32-bit integer
    ranap.GANSS_PositioningMethodAndUsage  GANSS-PositioningMethodAndUsage
        Byte array
    ranap.GA_Polygon_item  GA-Polygon item
        No value
    ranap.GERAN_BSC_Container  GERAN-BSC-Container
        Byte array
    ranap.GERAN_Classmark  GERAN-Classmark
        Byte array
    ranap.GERAN_Iumode_RAB_FailedList_RABAssgntResponse  GERAN-Iumode-RAB-FailedList-RABAssgntResponse
        Unsigned 32-bit integer
    ranap.GERAN_Iumode_RAB_Failed_RABAssgntResponse_Item  GERAN-Iumode-RAB-Failed-RABAssgntResponse-Item
        No value
    ranap.GlobalCN_ID  GlobalCN-ID
        No value
    ranap.GlobalRNC_ID  GlobalRNC-ID
        No value
    ranap.GuaranteedBitrate  GuaranteedBitrate
        Unsigned 32-bit integer
    ranap.HS_DSCH_MAC_d_Flow_ID  HS-DSCH-MAC-d-Flow-ID
        Unsigned 32-bit integer
    ranap.IMEI  IMEI
        Byte array
    ranap.IMEISV  IMEISV
        Byte array
    ranap.IPMulticastAddress  IPMulticastAddress
        Byte array
    ranap.IncludeVelocity  IncludeVelocity
        Unsigned 32-bit integer
    ranap.InformationExchangeID  InformationExchangeID
        Unsigned 32-bit integer
    ranap.InformationExchangeType  InformationExchangeType
        Unsigned 32-bit integer
    ranap.InformationRequestType  InformationRequestType
        Unsigned 32-bit integer
    ranap.InformationRequested  InformationRequested
        Unsigned 32-bit integer
    ranap.InformationTransferConfirmation  InformationTransferConfirmation
        No value
    ranap.InformationTransferFailure  InformationTransferFailure
        No value
    ranap.InformationTransferID  InformationTransferID
        Unsigned 32-bit integer
    ranap.InformationTransferIndication  InformationTransferIndication
        No value
    ranap.InformationTransferType  InformationTransferType
        Unsigned 32-bit integer
    ranap.InitialUE_Message  InitialUE-Message
        No value
    ranap.IntegrityProtectionAlgorithm  IntegrityProtectionAlgorithm
        Unsigned 32-bit integer
    ranap.IntegrityProtectionInformation  IntegrityProtectionInformation
        No value
    ranap.IntegrityProtectionKey  IntegrityProtectionKey
        Byte array
    ranap.InterSystemInformationTransferType  InterSystemInformationTransferType
        Unsigned 32-bit integer
    ranap.InterSystemInformation_TransparentContainer  InterSystemInformation-TransparentContainer
        No value
    ranap.InterfacesToTraceItem  InterfacesToTraceItem
        No value
    ranap.IuSignallingConnectionIdentifier  IuSignallingConnectionIdentifier
        Byte array
    ranap.IuTransportAssociation  IuTransportAssociation
        Unsigned 32-bit integer
    ranap.Iu_ReleaseCommand  Iu-ReleaseCommand
        No value
    ranap.Iu_ReleaseComplete  Iu-ReleaseComplete
        No value
    ranap.Iu_ReleaseRequest  Iu-ReleaseRequest
        No value
    ranap.JoinedMBMSBearerService_IEs  JoinedMBMSBearerService-IEs
        Unsigned 32-bit integer
    ranap.JoinedMBMSBearerService_IEs_item  JoinedMBMSBearerService-IEs item
        No value
    ranap.KeyStatus  KeyStatus
        Unsigned 32-bit integer
    ranap.L3_Information  L3-Information
        Byte array
    ranap.LAI  LAI
        No value
    ranap.LAListofIdleModeUEs  LAListofIdleModeUEs
        Unsigned 32-bit integer
    ranap.LA_LIST_item  LA-LIST item
        No value
    ranap.LastKnownServiceArea  LastKnownServiceArea
        No value
    ranap.LeftMBMSBearerService_IEs  LeftMBMSBearerService-IEs
        Unsigned 32-bit integer
    ranap.LeftMBMSBearerService_IEs_item  LeftMBMSBearerService-IEs item
        No value
    ranap.LocationRelatedDataFailure  LocationRelatedDataFailure
        No value
    ranap.LocationRelatedDataRequest  LocationRelatedDataRequest
        No value
    ranap.LocationRelatedDataRequestType  LocationRelatedDataRequestType
        No value
    ranap.LocationRelatedDataRequestTypeSpecificToGERANIuMode  LocationRelatedDataRequestTypeSpecificToGERANIuMode
        Unsigned 32-bit integer
    ranap.LocationRelatedDataResponse  LocationRelatedDataResponse
        No value
    ranap.LocationReport  LocationReport
        No value
    ranap.LocationReportingControl  LocationReportingControl
        No value
    ranap.MBMSBearerServiceType  MBMSBearerServiceType
        Unsigned 32-bit integer
    ranap.MBMSCNDe_Registration  MBMSCNDe-Registration
        Unsigned 32-bit integer
    ranap.MBMSCNDe_RegistrationRequest  MBMSCNDe-RegistrationRequest
        No value
    ranap.MBMSCNDe_RegistrationResponse  MBMSCNDe-RegistrationResponse
        No value
    ranap.MBMSCountingInformation  MBMSCountingInformation
        Unsigned 32-bit integer
    ranap.MBMSIPMulticastAddressandAPNlist  MBMSIPMulticastAddressandAPNlist
        No value
    ranap.MBMSLinkingInformation  MBMSLinkingInformation
        Unsigned 32-bit integer
    ranap.MBMSRABEstablishmentIndication  MBMSRABEstablishmentIndication
        No value
    ranap.MBMSRABRelease  MBMSRABRelease
        No value
    ranap.MBMSRABReleaseFailure  MBMSRABReleaseFailure
        No value
    ranap.MBMSRABReleaseRequest  MBMSRABReleaseRequest
        No value
    ranap.MBMSRegistrationFailure  MBMSRegistrationFailure
        No value
    ranap.MBMSRegistrationRequest  MBMSRegistrationRequest
        No value
    ranap.MBMSRegistrationRequestType  MBMSRegistrationRequestType
        Unsigned 32-bit integer
    ranap.MBMSRegistrationResponse  MBMSRegistrationResponse
        No value
    ranap.MBMSServiceArea  MBMSServiceArea
        Byte array
    ranap.MBMSSessionDuration  MBMSSessionDuration
        Byte array
    ranap.MBMSSessionIdentity  MBMSSessionIdentity
        Byte array
    ranap.MBMSSessionRepetitionNumber  MBMSSessionRepetitionNumber
        Byte array
    ranap.MBMSSessionStart  MBMSSessionStart
        No value
    ranap.MBMSSessionStartFailure  MBMSSessionStartFailure
        No value
    ranap.MBMSSessionStartResponse  MBMSSessionStartResponse
        No value
    ranap.MBMSSessionStop  MBMSSessionStop
        No value
    ranap.MBMSSessionStopResponse  MBMSSessionStopResponse
        No value
    ranap.MBMSSessionUpdate  MBMSSessionUpdate
        No value
    ranap.MBMSSessionUpdateFailure  MBMSSessionUpdateFailure
        No value
    ranap.MBMSSessionUpdateResponse  MBMSSessionUpdateResponse
        No value
    ranap.MBMSSynchronisationInformation  MBMSSynchronisationInformation
        No value
    ranap.MBMSUELinkingRequest  MBMSUELinkingRequest
        No value
    ranap.MBMSUELinkingResponse  MBMSUELinkingResponse
        No value
    ranap.MaxBitrate  MaxBitrate
        Unsigned 32-bit integer
    ranap.MessageStructure  MessageStructure
        Unsigned 32-bit integer
    ranap.MessageStructure_item  MessageStructure item
        No value
    ranap.NAS_PDU  NAS-PDU
        Byte array
    ranap.NAS_SequenceNumber  NAS-SequenceNumber
        Byte array
    ranap.NewBSS_To_OldBSS_Information  NewBSS-To-OldBSS-Information
        Byte array
    ranap.NonSearchingIndication  NonSearchingIndication
        Unsigned 32-bit integer
    ranap.NumberOfSteps  NumberOfSteps
        Unsigned 32-bit integer
    ranap.OMC_ID  OMC-ID
        Byte array
    ranap.OldBSS_ToNewBSS_Information  OldBSS-ToNewBSS-Information
        Byte array
    ranap.Overload  Overload
        No value
    ranap.PDP_Type  PDP-Type
        Unsigned 32-bit integer
    ranap.PDP_TypeInformation  PDP-TypeInformation
        Unsigned 32-bit integer
    ranap.PLMNidentity  PLMNidentity
        Byte array
    ranap.PLMNs_in_shared_network_item  PLMNs-in-shared-network item
        No value
    ranap.Paging  Paging
        No value
    ranap.PagingAreaID  PagingAreaID
        Unsigned 32-bit integer
    ranap.PagingCause  PagingCause
        Unsigned 32-bit integer
    ranap.PeriodicLocationInfo  PeriodicLocationInfo
        No value
    ranap.PermanentNAS_UE_ID  PermanentNAS-UE-ID
        Unsigned 32-bit integer
    ranap.PositionData  PositionData
        No value
    ranap.PositionDataSpecificToGERANIuMode  PositionDataSpecificToGERANIuMode
        Byte array
    ranap.PositioningMethodAndUsage  PositioningMethodAndUsage
        Byte array
    ranap.PositioningPriority  PositioningPriority
        Unsigned 32-bit integer
    ranap.PrivateIE_Field  PrivateIE-Field
        No value
    ranap.PrivateMessage  PrivateMessage
        No value
    ranap.ProtocolExtensionField  ProtocolExtensionField
        No value
    ranap.ProtocolIE_Container  ProtocolIE-Container
        Unsigned 32-bit integer
    ranap.ProtocolIE_ContainerPair  ProtocolIE-ContainerPair
        Unsigned 32-bit integer
    ranap.ProtocolIE_Field  ProtocolIE-Field
        No value
    ranap.ProtocolIE_FieldPair  ProtocolIE-FieldPair
        No value
    ranap.ProvidedData  ProvidedData
        Unsigned 32-bit integer
    ranap.RAB_AssignmentRequest  RAB-AssignmentRequest
        No value
    ranap.RAB_AssignmentResponse  RAB-AssignmentResponse
        No value
    ranap.RAB_ContextFailedtoTransferList  RAB-ContextFailedtoTransferList
        Unsigned 32-bit integer
    ranap.RAB_ContextItem  RAB-ContextItem
        No value
    ranap.RAB_ContextItem_RANAP_RelocInf  RAB-ContextItem-RANAP-RelocInf
        No value
    ranap.RAB_ContextList  RAB-ContextList
        Unsigned 32-bit integer
    ranap.RAB_ContextList_RANAP_RelocInf  RAB-ContextList-RANAP-RelocInf
        Unsigned 32-bit integer
    ranap.RAB_DataForwardingItem  RAB-DataForwardingItem
        No value
    ranap.RAB_DataForwardingItem_SRNS_CtxReq  RAB-DataForwardingItem-SRNS-CtxReq
        No value
    ranap.RAB_DataForwardingList  RAB-DataForwardingList
        Unsigned 32-bit integer
    ranap.RAB_DataForwardingList_SRNS_CtxReq  RAB-DataForwardingList-SRNS-CtxReq
        Unsigned 32-bit integer
    ranap.RAB_DataVolumeReportItem  RAB-DataVolumeReportItem
        No value
    ranap.RAB_DataVolumeReportList  RAB-DataVolumeReportList
        Unsigned 32-bit integer
    ranap.RAB_DataVolumeReportRequestItem  RAB-DataVolumeReportRequestItem
        No value
    ranap.RAB_DataVolumeReportRequestList  RAB-DataVolumeReportRequestList
        Unsigned 32-bit integer
    ranap.RAB_FailedItem  RAB-FailedItem
        No value
    ranap.RAB_FailedItem_EnhRelocInfoRes  RAB-FailedItem-EnhRelocInfoRes
        No value
    ranap.RAB_FailedList  RAB-FailedList
        Unsigned 32-bit integer
    ranap.RAB_FailedList_EnhRelocInfoRes  RAB-FailedList-EnhRelocInfoRes
        Unsigned 32-bit integer
    ranap.RAB_FailedtoReportList  RAB-FailedtoReportList
        Unsigned 32-bit integer
    ranap.RAB_ID  RAB-ID
        Byte array
    ranap.RAB_ModifyItem  RAB-ModifyItem
        No value
    ranap.RAB_ModifyList  RAB-ModifyList
        Unsigned 32-bit integer
    ranap.RAB_ModifyRequest  RAB-ModifyRequest
        No value
    ranap.RAB_Parameter_ExtendedGuaranteedBitrateList  RAB-Parameter-ExtendedGuaranteedBitrateList
        Unsigned 32-bit integer
    ranap.RAB_Parameter_ExtendedMaxBitrateList  RAB-Parameter-ExtendedMaxBitrateList
        Unsigned 32-bit integer
    ranap.RAB_Parameters  RAB-Parameters
        No value
    ranap.RAB_QueuedItem  RAB-QueuedItem
        No value
    ranap.RAB_QueuedList  RAB-QueuedList
        Unsigned 32-bit integer
    ranap.RAB_ReleaseFailedList  RAB-ReleaseFailedList
        Unsigned 32-bit integer
    ranap.RAB_ReleaseItem  RAB-ReleaseItem
        No value
    ranap.RAB_ReleaseList  RAB-ReleaseList
        Unsigned 32-bit integer
    ranap.RAB_ReleaseRequest  RAB-ReleaseRequest
        No value
    ranap.RAB_ReleasedItem  RAB-ReleasedItem
        No value
    ranap.RAB_ReleasedItem_IuRelComp  RAB-ReleasedItem-IuRelComp
        No value
    ranap.RAB_ReleasedList  RAB-ReleasedList
        Unsigned 32-bit integer
    ranap.RAB_ReleasedList_IuRelComp  RAB-ReleasedList-IuRelComp
        Unsigned 32-bit integer
    ranap.RAB_RelocationReleaseItem  RAB-RelocationReleaseItem
        No value
    ranap.RAB_RelocationReleaseList  RAB-RelocationReleaseList
        Unsigned 32-bit integer
    ranap.RAB_SetupItem_EnhRelocInfoReq  RAB-SetupItem-EnhRelocInfoReq
        No value
    ranap.RAB_SetupItem_EnhRelocInfoRes  RAB-SetupItem-EnhRelocInfoRes
        No value
    ranap.RAB_SetupItem_EnhancedRelocCompleteReq  RAB-SetupItem-EnhancedRelocCompleteReq
        No value
    ranap.RAB_SetupItem_EnhancedRelocCompleteRes  RAB-SetupItem-EnhancedRelocCompleteRes
        No value
    ranap.RAB_SetupItem_RelocReq  RAB-SetupItem-RelocReq
        No value
    ranap.RAB_SetupItem_RelocReqAck  RAB-SetupItem-RelocReqAck
        No value
    ranap.RAB_SetupList_EnhRelocInfoReq  RAB-SetupList-EnhRelocInfoReq
        Unsigned 32-bit integer
    ranap.RAB_SetupList_EnhRelocInfoRes  RAB-SetupList-EnhRelocInfoRes
        Unsigned 32-bit integer
    ranap.RAB_SetupList_EnhancedRelocCompleteReq  RAB-SetupList-EnhancedRelocCompleteReq
        Unsigned 32-bit integer
    ranap.RAB_SetupList_EnhancedRelocCompleteRes  RAB-SetupList-EnhancedRelocCompleteRes
        Unsigned 32-bit integer
    ranap.RAB_SetupList_RelocReq  RAB-SetupList-RelocReq
        Unsigned 32-bit integer
    ranap.RAB_SetupList_RelocReqAck  RAB-SetupList-RelocReqAck
        Unsigned 32-bit integer
    ranap.RAB_SetupOrModifiedItem  RAB-SetupOrModifiedItem
        No value
    ranap.RAB_SetupOrModifiedList  RAB-SetupOrModifiedList
        Unsigned 32-bit integer
    ranap.RAB_SetupOrModifyItemFirst  RAB-SetupOrModifyItemFirst
        No value
    ranap.RAB_SetupOrModifyItemSecond  RAB-SetupOrModifyItemSecond
        No value
    ranap.RAB_SetupOrModifyList  RAB-SetupOrModifyList
        Unsigned 32-bit integer
    ranap.RAB_ToBeReleasedItem_EnhancedRelocCompleteRes  RAB-ToBeReleasedItem-EnhancedRelocCompleteRes
        No value
    ranap.RAB_ToBeReleasedList_EnhancedRelocCompleteRes  RAB-ToBeReleasedList-EnhancedRelocCompleteRes
        Unsigned 32-bit integer
    ranap.RAB_TrCH_MappingItem  RAB-TrCH-MappingItem
        No value
    ranap.RABs_ContextFailedtoTransferItem  RABs-ContextFailedtoTransferItem
        No value
    ranap.RABs_failed_to_reportItem  RABs-failed-to-reportItem
        No value
    ranap.RAC  RAC
        Byte array
    ranap.RAListofIdleModeUEs  RAListofIdleModeUEs
        Unsigned 32-bit integer
    ranap.RANAP_EnhancedRelocationInformationRequest  RANAP-EnhancedRelocationInformationRequest
        No value
    ranap.RANAP_EnhancedRelocationInformationResponse  RANAP-EnhancedRelocationInformationResponse
        No value
    ranap.RANAP_PDU  RANAP-PDU
        Unsigned 32-bit integer
    ranap.RANAP_RelocationInformation  RANAP-RelocationInformation
        No value
    ranap.RAT_Type  RAT-Type
        Unsigned 32-bit integer
    ranap.RRC_Container  RRC-Container
        Byte array
    ranap.RedirectAttemptFlag  RedirectAttemptFlag
        No value
    ranap.RedirectionCompleted  RedirectionCompleted
        Unsigned 32-bit integer
    ranap.RedirectionIndication  RedirectionIndication
        Unsigned 32-bit integer
    ranap.RejectCauseValue  RejectCauseValue
        Unsigned 32-bit integer
    ranap.RelocationCancel  RelocationCancel
        No value
    ranap.RelocationCancelAcknowledge  RelocationCancelAcknowledge
        No value
    ranap.RelocationCommand  RelocationCommand
        No value
    ranap.RelocationComplete  RelocationComplete
        No value
    ranap.RelocationDetect  RelocationDetect
        No value
    ranap.RelocationFailure  RelocationFailure
        No value
    ranap.RelocationPreparationFailure  RelocationPreparationFailure
        No value
    ranap.RelocationRequest  RelocationRequest
        No value
    ranap.RelocationRequestAcknowledge  RelocationRequestAcknowledge
        No value
    ranap.RelocationRequired  RelocationRequired
        No value
    ranap.RelocationType  RelocationType
        Unsigned 32-bit integer
    ranap.RequestType  RequestType
        No value
    ranap.RequestedGANSSAssistanceData  RequestedGANSSAssistanceData
        Byte array
    ranap.Requested_RAB_Parameter_ExtendedGuaranteedBitrateList  Requested-RAB-Parameter-ExtendedGuaranteedBitrateList
        Unsigned 32-bit integer
    ranap.Requested_RAB_Parameter_ExtendedMaxBitrateList  Requested-RAB-Parameter-ExtendedMaxBitrateList
        Unsigned 32-bit integer
    ranap.Reset  Reset
        No value
    ranap.ResetAcknowledge  ResetAcknowledge
        No value
    ranap.ResetResource  ResetResource
        No value
    ranap.ResetResourceAckItem  ResetResourceAckItem
        No value
    ranap.ResetResourceAckList  ResetResourceAckList
        Unsigned 32-bit integer
    ranap.ResetResourceAcknowledge  ResetResourceAcknowledge
        No value
    ranap.ResetResourceItem  ResetResourceItem
        No value
    ranap.ResetResourceList  ResetResourceList
        Unsigned 32-bit integer
    ranap.ResponseTime  ResponseTime
        Unsigned 32-bit integer
    ranap.SAI  SAI
        No value
    ranap.SAPI  SAPI
        Unsigned 32-bit integer
    ranap.SDU_FormatInformationParameters_item  SDU-FormatInformationParameters item
        No value
    ranap.SDU_Parameters_item  SDU-Parameters item
        No value
    ranap.SNAC  SNAC
        Unsigned 32-bit integer
    ranap.SNA_Access_Information  SNA-Access-Information
        No value
    ranap.SRB_TrCH_Mapping  SRB-TrCH-Mapping
        Unsigned 32-bit integer
    ranap.SRB_TrCH_MappingItem  SRB-TrCH-MappingItem
        No value
    ranap.SRNS_ContextRequest  SRNS-ContextRequest
        No value
    ranap.SRNS_ContextResponse  SRNS-ContextResponse
        No value
    ranap.SRNS_DataForwardCommand  SRNS-DataForwardCommand
        No value
    ranap.SRVCC_CSKeysRequest  SRVCC-CSKeysRequest
        No value
    ranap.SRVCC_CSKeysResponse  SRVCC-CSKeysResponse
        No value
    ranap.SRVCC_HO_Indication  SRVCC-HO-Indication
        Unsigned 32-bit integer
    ranap.SRVCC_Information  SRVCC-Information
        No value
    ranap.SRVCC_Operation_Possible  SRVCC-Operation-Possible
        Unsigned 32-bit integer
    ranap.SecurityModeCommand  SecurityModeCommand
        No value
    ranap.SecurityModeComplete  SecurityModeComplete
        No value
    ranap.SecurityModeReject  SecurityModeReject
        No value
    ranap.SessionUpdateID  SessionUpdateID
        Unsigned 32-bit integer
    ranap.SignallingIndication  SignallingIndication
        Unsigned 32-bit integer
    ranap.SourceBSS_ToTargetBSS_TransparentContainer  SourceBSS-ToTargetBSS-TransparentContainer
        Byte array
    ranap.SourceID  SourceID
        Unsigned 32-bit integer
    ranap.SourceRNC_ToTargetRNC_TransparentContainer  SourceRNC-ToTargetRNC-TransparentContainer
        No value
    ranap.Source_ToTarget_TransparentContainer  Source-ToTarget-TransparentContainer
        Byte array
    ranap.SubscriberProfileIDforRFP  SubscriberProfileIDforRFP
        Unsigned 32-bit integer
    ranap.SupportedBitrate  SupportedBitrate
        Unsigned 32-bit integer
    ranap.SupportedRAB_ParameterBitrateList  SupportedRAB-ParameterBitrateList
        Unsigned 32-bit integer
    ranap.TMGI  TMGI
        No value
    ranap.TargetBSS_ToSourceBSS_TransparentContainer  TargetBSS-ToSourceBSS-TransparentContainer
        Byte array
    ranap.TargetID  TargetID
        Unsigned 32-bit integer
    ranap.TargetRNC_ID  TargetRNC-ID
        No value
    ranap.TargetRNC_ToSourceRNC_TransparentContainer  TargetRNC-ToSourceRNC-TransparentContainer
        No value
    ranap.Target_ToSource_TransparentContainer  Target-ToSource-TransparentContainer
        Byte array
    ranap.TemporaryUE_ID  TemporaryUE-ID
        Unsigned 32-bit integer
    ranap.TimeToMBMSDataTransfer  TimeToMBMSDataTransfer
        Byte array
    ranap.TrCH_ID  TrCH-ID
        No value
    ranap.TracePropagationParameters  TracePropagationParameters
        No value
    ranap.TraceRecordingSessionInformation  TraceRecordingSessionInformation
        No value
    ranap.TraceReference  TraceReference
        Byte array
    ranap.TraceType  TraceType
        Byte array
    ranap.TransportLayerAddress  TransportLayerAddress
        Byte array
    ranap.TransportLayerInformation  TransportLayerInformation
        No value
    ranap.TriggerID  TriggerID
        Byte array
    ranap.TypeOfError  TypeOfError
        Unsigned 32-bit integer
    ranap.UESBI_Iu  UESBI-Iu
        No value
    ranap.UESpecificInformationIndication  UESpecificInformationIndication
        No value
    ranap.UE_AggregateMaximumBitRate  UE-AggregateMaximumBitRate
        No value
    ranap.UE_History_Information  UE-History-Information
        Byte array
    ranap.UE_ID  UE-ID
        Unsigned 32-bit integer
    ranap.UnsuccessfulLinking_IEs  UnsuccessfulLinking-IEs
        Unsigned 32-bit integer
    ranap.UnsuccessfulLinking_IEs_item  UnsuccessfulLinking-IEs item
        No value
    ranap.UplinkInformationExchangeFailure  UplinkInformationExchangeFailure
        No value
    ranap.UplinkInformationExchangeRequest  UplinkInformationExchangeRequest
        No value
    ranap.UplinkInformationExchangeResponse  UplinkInformationExchangeResponse
        No value
    ranap.VelocityEstimate  VelocityEstimate
        Unsigned 32-bit integer
    ranap.VerticalAccuracyCode  VerticalAccuracyCode
        Unsigned 32-bit integer
    ranap.aPN  aPN
        Byte array
    ranap.accuracyCode  accuracyCode
        Unsigned 32-bit integer
        INTEGER_0_127
    ranap.ageOfSAI  ageOfSAI
        Unsigned 32-bit integer
        INTEGER_0_32767
    ranap.allocationOrRetentionPriority  allocationOrRetentionPriority
        No value
    ranap.altExtendedGuaranteedBitrateType  altExtendedGuaranteedBitrateType
        Unsigned 32-bit integer
        Alt_RAB_Parameter_GuaranteedBitrateType
    ranap.altExtendedGuaranteedBitrates  altExtendedGuaranteedBitrates
        Unsigned 32-bit integer
        Alt_RAB_Parameter_ExtendedGuaranteedBitrates
    ranap.altExtendedMaxBitrateType  altExtendedMaxBitrateType
        Unsigned 32-bit integer
        Alt_RAB_Parameter_MaxBitrateType
    ranap.altExtendedMaxBitrates  altExtendedMaxBitrates
        Unsigned 32-bit integer
        Alt_RAB_Parameter_ExtendedMaxBitrates
    ranap.altGuaranteedBitRateInf  altGuaranteedBitRateInf
        No value
        Alt_RAB_Parameter_GuaranteedBitrateInf
    ranap.altGuaranteedBitrateType  altGuaranteedBitrateType
        Unsigned 32-bit integer
        Alt_RAB_Parameter_GuaranteedBitrateType
    ranap.altGuaranteedBitrates  altGuaranteedBitrates
        Unsigned 32-bit integer
        Alt_RAB_Parameter_GuaranteedBitrates
    ranap.altMaxBitrateInf  altMaxBitrateInf
        No value
        Alt_RAB_Parameter_MaxBitrateInf
    ranap.altMaxBitrateType  altMaxBitrateType
        Unsigned 32-bit integer
        Alt_RAB_Parameter_MaxBitrateType
    ranap.altMaxBitrates  altMaxBitrates
        Unsigned 32-bit integer
        Alt_RAB_Parameter_MaxBitrates
    ranap.altSupportedGuaranteedBitrateType  altSupportedGuaranteedBitrateType
        Unsigned 32-bit integer
        Alt_RAB_Parameter_GuaranteedBitrateType
    ranap.altSupportedGuaranteedBitrates  altSupportedGuaranteedBitrates
        Unsigned 32-bit integer
        Alt_RAB_Parameter_SupportedGuaranteedBitrates
    ranap.altSupportedMaxBitrateType  altSupportedMaxBitrateType
        Unsigned 32-bit integer
        Alt_RAB_Parameter_MaxBitrateType
    ranap.altSupportedMaxBitrates  altSupportedMaxBitrates
        Unsigned 32-bit integer
        Alt_RAB_Parameter_SupportedMaxBitrates
    ranap.alt_RAB_Parameters  alt-RAB-Parameters
        No value
    ranap.altitude  altitude
        Unsigned 32-bit integer
        INTEGER_0_32767
    ranap.altitudeAndDirection  altitudeAndDirection
        No value
        GA_AltitudeAndDirection
    ranap.assGuaranteedBitRateInf  assGuaranteedBitRateInf
        Unsigned 32-bit integer
        Ass_RAB_Parameter_GuaranteedBitrateList
    ranap.assMaxBitrateInf  assMaxBitrateInf
        Unsigned 32-bit integer
        Ass_RAB_Parameter_MaxBitrateList
    ranap.ass_RAB_Parameters  ass-RAB-Parameters
        No value
    ranap.authorisedPLMNs  authorisedPLMNs
        Unsigned 32-bit integer
    ranap.authorisedSNAsList  authorisedSNAsList
        Unsigned 32-bit integer
        AuthorisedSNAs
    ranap.bearing  bearing
        Unsigned 32-bit integer
        INTEGER_0_359
    ranap.bindingID  bindingID
        Byte array
    ranap.cGI  cGI
        No value
    ranap.cI  cI
        Byte array
    ranap.cN_DomainIndicator  cN-DomainIndicator
        Unsigned 32-bit integer
    ranap.cN_ID  cN-ID
        Unsigned 32-bit integer
    ranap.cause  cause
        Unsigned 32-bit integer
    ranap.cell_Capacity_Class_Value  cell-Capacity-Class-Value
        Unsigned 32-bit integer
    ranap.chosenEncryptionAlgorithForCS  chosenEncryptionAlgorithForCS
        Unsigned 32-bit integer
        ChosenEncryptionAlgorithm
    ranap.chosenEncryptionAlgorithForPS  chosenEncryptionAlgorithForPS
        Unsigned 32-bit integer
        ChosenEncryptionAlgorithm
    ranap.chosenEncryptionAlgorithForSignalling  chosenEncryptionAlgorithForSignalling
        Unsigned 32-bit integer
        ChosenEncryptionAlgorithm
    ranap.chosenIntegrityProtectionAlgorithm  chosenIntegrityProtectionAlgorithm
        Unsigned 32-bit integer
    ranap.cipheringKey  cipheringKey
        Byte array
        EncryptionKey
    ranap.cipheringKeyFlag  cipheringKeyFlag
        Byte array
        BIT_STRING_SIZE_1
    ranap.confidence  confidence
        Unsigned 32-bit integer
        INTEGER_0_127
    ranap.criticality  criticality
        Unsigned 32-bit integer
    ranap.currentDecipheringKey  currentDecipheringKey
        Byte array
        BIT_STRING_SIZE_56
    ranap.dCH_ID  dCH-ID
        Unsigned 32-bit integer
    ranap.dL_GTP_PDU_SequenceNumber  dL-GTP-PDU-SequenceNumber
        Unsigned 32-bit integer
    ranap.dSCH_ID  dSCH-ID
        Unsigned 32-bit integer
    ranap.d_RNTI  d-RNTI
        Unsigned 32-bit integer
    ranap.dataForwardingInformation  dataForwardingInformation
        No value
        TNLInformationEnhRelInfoReq
    ranap.dataVolumeReference  dataVolumeReference
        Unsigned 32-bit integer
    ranap.dataVolumeReportingIndication  dataVolumeReportingIndication
        Unsigned 32-bit integer
    ranap.deliveryOfErroneousSDU  deliveryOfErroneousSDU
        Unsigned 32-bit integer
    ranap.deliveryOrder  deliveryOrder
        Unsigned 32-bit integer
    ranap.directionOfAltitude  directionOfAltitude
        Unsigned 32-bit integer
    ranap.dl_GTP_PDU_SequenceNumber  dl-GTP-PDU-SequenceNumber
        Unsigned 32-bit integer
    ranap.dl_N_PDU_SequenceNumber  dl-N-PDU-SequenceNumber
        Unsigned 32-bit integer
    ranap.dl_UnsuccessfullyTransmittedDataVolume  dl-UnsuccessfullyTransmittedDataVolume
        Unsigned 32-bit integer
        DataVolumeList
    ranap.dl_dataVolumes  dl-dataVolumes
        Unsigned 32-bit integer
        DataVolumeList
    ranap.dl_forwardingTransportAssociation  dl-forwardingTransportAssociation
        Unsigned 32-bit integer
        IuTransportAssociation
    ranap.dl_forwardingTransportLayerAddress  dl-forwardingTransportLayerAddress
        Byte array
        TransportLayerAddress
    ranap.downlinkCellLoadInformation  downlinkCellLoadInformation
        No value
        CellLoadInformation
    ranap.eNB_ID  eNB-ID
        Unsigned 32-bit integer
    ranap.ellipsoidArc  ellipsoidArc
        No value
        GA_EllipsoidArc
    ranap.emptyFullRAListofIdleModeUEs  emptyFullRAListofIdleModeUEs
        Unsigned 32-bit integer
    ranap.equipmentsToBeTraced  equipmentsToBeTraced
        Unsigned 32-bit integer
    ranap.event  event
        Unsigned 32-bit integer
    ranap.exponent  exponent
        Unsigned 32-bit integer
        INTEGER_1_8
    ranap.extensionValue  extensionValue
        No value
    ranap.firstCriticality  firstCriticality
        Unsigned 32-bit integer
        Criticality
    ranap.firstValue  firstValue
        No value
    ranap.gERAN_Cell_ID  gERAN-Cell-ID
        No value
    ranap.gERAN_Classmark  gERAN-Classmark
        Byte array
    ranap.gTPDLTEID  gTPDLTEID
        Unsigned 32-bit integer
        GTP_TEI
    ranap.gTP_TEI  gTP-TEI
        Unsigned 32-bit integer
    ranap.geographicalArea  geographicalArea
        Unsigned 32-bit integer
    ranap.geographicalCoordinates  geographicalCoordinates
        No value
    ranap.global  global
        Object Identifier
        OBJECT_IDENTIFIER
    ranap.guaranteedBitRate  guaranteedBitRate
        Unsigned 32-bit integer
        RAB_Parameter_GuaranteedBitrateList
    ranap.homeENB_ID  homeENB-ID
        Byte array
        BIT_STRING_SIZE_28
    ranap.horizontalSpeed  horizontalSpeed
        Unsigned 32-bit integer
        INTEGER_0_2047
    ranap.horizontalSpeedAndBearing  horizontalSpeedAndBearing
        No value
    ranap.horizontalUncertaintySpeed  horizontalUncertaintySpeed
        Unsigned 32-bit integer
        INTEGER_0_255
    ranap.horizontalVelocity  horizontalVelocity
        No value
    ranap.horizontalVelocityWithUncertainty  horizontalVelocityWithUncertainty
        No value
    ranap.horizontalWithVeritcalVelocityAndUncertainty  horizontalWithVeritcalVelocityAndUncertainty
        No value
        HorizontalWithVerticalVelocityAndUncertainty
    ranap.horizontalWithVerticalVelocity  horizontalWithVerticalVelocity
        No value
    ranap.iECriticality  iECriticality
        Unsigned 32-bit integer
        Criticality
    ranap.iE_Extensions  iE-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    ranap.iE_ID  iE-ID
        Unsigned 32-bit integer
        ProtocolIE_ID
    ranap.iEsCriticalityDiagnostics  iEsCriticalityDiagnostics
        Unsigned 32-bit integer
        CriticalityDiagnostics_IE_List
    ranap.iMEI  iMEI
        Byte array
    ranap.iMEIMask  iMEIMask
        Byte array
        BIT_STRING_SIZE_7
    ranap.iMEISV  iMEISV
        Byte array
    ranap.iMEISVMask  iMEISVMask
        Byte array
        BIT_STRING_SIZE_7
    ranap.iMEISVgroup  iMEISVgroup
        No value
    ranap.iMEISVlist  iMEISVlist
        Unsigned 32-bit integer
    ranap.iMEIgroup  iMEIgroup
        No value
    ranap.iMEIlist  iMEIlist
        Unsigned 32-bit integer
    ranap.iMSI  iMSI
        Byte array
    ranap.iPMulticastAddress  iPMulticastAddress
        Byte array
    ranap.id  id
        Unsigned 32-bit integer
        ProtocolIE_ID
    ranap.imei  imei
        Byte array
    ranap.imeisv  imeisv
        Byte array
    ranap.imsi  imsi
        Byte array
    ranap.imsi_digits  IMSI digits
        String
    ranap.includedAngle  includedAngle
        Unsigned 32-bit integer
        INTEGER_0_179
    ranap.initiatingMessage  initiatingMessage
        No value
    ranap.innerRadius  innerRadius
        Unsigned 32-bit integer
        INTEGER_0_65535
    ranap.integrityProtectionKey  integrityProtectionKey
        Byte array
    ranap.interface  interface
        Unsigned 32-bit integer
    ranap.iuSigConId  iuSigConId
        Byte array
        IuSignallingConnectionIdentifier
    ranap.iuTransportAssociation  iuTransportAssociation
        Unsigned 32-bit integer
    ranap.iuTransportAssociationReq1  iuTransportAssociationReq1
        Unsigned 32-bit integer
        IuTransportAssociation
    ranap.iuTransportAssociationRes1  iuTransportAssociationRes1
        Unsigned 32-bit integer
        IuTransportAssociation
    ranap.joinedMBMSBearerService_IEs  joinedMBMSBearerService-IEs
        Unsigned 32-bit integer
    ranap.key  key
        Byte array
        EncryptionKey
    ranap.lAC  lAC
        Byte array
    ranap.lAI  lAI
        No value
    ranap.lA_LIST  lA-LIST
        Unsigned 32-bit integer
    ranap.latitude  latitude
        Unsigned 32-bit integer
        INTEGER_0_8388607
    ranap.latitudeSign  latitudeSign
        Unsigned 32-bit integer
    ranap.listOF_SNAs  listOF-SNAs
        Unsigned 32-bit integer
    ranap.listOfInterfacesToTrace  listOfInterfacesToTrace
        Unsigned 32-bit integer
    ranap.loadValue  loadValue
        Unsigned 32-bit integer
    ranap.local  local
        Unsigned 32-bit integer
        INTEGER_0_65535
    ranap.longitude  longitude
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    ranap.mBMSHCIndicator  mBMSHCIndicator
        Unsigned 32-bit integer
    ranap.mBMSIPMulticastAddressandAPNRequest  mBMSIPMulticastAddressandAPNRequest
        Unsigned 32-bit integer
    ranap.mBMS_PTP_RAB_ID  mBMS-PTP-RAB-ID
        Byte array
    ranap.macroENB_ID  macroENB-ID
        Byte array
        BIT_STRING_SIZE_20
    ranap.mantissa  mantissa
        Unsigned 32-bit integer
        INTEGER_1_9
    ranap.maxBitrate  maxBitrate
        Unsigned 32-bit integer
        RAB_Parameter_MaxBitrateList
    ranap.maxSDU_Size  maxSDU-Size
        Unsigned 32-bit integer
    ranap.misc  misc
        Unsigned 32-bit integer
        CauseMisc
    ranap.nAS  nAS
        Unsigned 32-bit integer
        CauseNAS
    ranap.nAS_PDU  nAS-PDU
        Byte array
    ranap.nAS_SynchronisationIndicator  nAS-SynchronisationIndicator
        Byte array
    ranap.nRTLoadInformationValue  nRTLoadInformationValue
        Unsigned 32-bit integer
    ranap.newRAListofIdleModeUEs  newRAListofIdleModeUEs
        Unsigned 32-bit integer
    ranap.nextDecipheringKey  nextDecipheringKey
        Byte array
        BIT_STRING_SIZE_56
    ranap.non_Standard  non-Standard
        Unsigned 32-bit integer
        CauseNon_Standard
    ranap.nonce  nonce
        Byte array
        BIT_STRING_SIZE_128
    ranap.notEmptyRAListofIdleModeUEs  notEmptyRAListofIdleModeUEs
        No value
    ranap.numberOfIuInstances  numberOfIuInstances
        Unsigned 32-bit integer
    ranap.offsetAngle  offsetAngle
        Unsigned 32-bit integer
        INTEGER_0_179
    ranap.orientationOfMajorAxis  orientationOfMajorAxis
        Unsigned 32-bit integer
        INTEGER_0_179
    ranap.outcome  outcome
        No value
    ranap.pDP_TypeInformation  pDP-TypeInformation
        Unsigned 32-bit integer
    ranap.pLMNidentity  pLMNidentity
        Byte array
    ranap.pLMNs_in_shared_network  pLMNs-in-shared-network
        Unsigned 32-bit integer
    ranap.p_TMSI  p-TMSI
        Byte array
    ranap.permanentNAS_UE_ID  permanentNAS-UE-ID
        Unsigned 32-bit integer
    ranap.permittedAlgorithms  permittedAlgorithms
        Unsigned 32-bit integer
        PermittedEncryptionAlgorithms
    ranap.point  point
        No value
        GA_Point
    ranap.pointWithAltitude  pointWithAltitude
        No value
        GA_PointWithAltitude
    ranap.pointWithAltitudeAndUncertaintyEllipsoid  pointWithAltitudeAndUncertaintyEllipsoid
        No value
        GA_PointWithAltitudeAndUncertaintyEllipsoid
    ranap.pointWithUnCertainty  pointWithUnCertainty
        No value
        GA_PointWithUnCertainty
    ranap.pointWithUncertaintyEllipse  pointWithUncertaintyEllipse
        No value
        GA_PointWithUnCertaintyEllipse
    ranap.polygon  polygon
        Unsigned 32-bit integer
        GA_Polygon
    ranap.positioningDataDiscriminator  positioningDataDiscriminator
        Byte array
    ranap.positioningDataSet  positioningDataSet
        Unsigned 32-bit integer
    ranap.pre_emptionCapability  pre-emptionCapability
        Unsigned 32-bit integer
    ranap.pre_emptionVulnerability  pre-emptionVulnerability
        Unsigned 32-bit integer
    ranap.priorityLevel  priorityLevel
        Unsigned 32-bit integer
    ranap.privateIEs  privateIEs
        Unsigned 32-bit integer
        PrivateIE_Container
    ranap.procedureCode  procedureCode
        Unsigned 32-bit integer
    ranap.procedureCriticality  procedureCriticality
        Unsigned 32-bit integer
        Criticality
    ranap.protocol  protocol
        Unsigned 32-bit integer
        CauseProtocol
    ranap.protocolExtensions  protocolExtensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    ranap.protocolIEs  protocolIEs
        Unsigned 32-bit integer
        ProtocolIE_Container
    ranap.queuingAllowed  queuingAllowed
        Unsigned 32-bit integer
    ranap.rAB_AsymmetryIndicator  rAB-AsymmetryIndicator
        Unsigned 32-bit integer
    ranap.rAB_ID  rAB-ID
        Byte array
    ranap.rAB_Parameters  rAB-Parameters
        No value
    ranap.rAB_SubflowCombinationBitRate  rAB-SubflowCombinationBitRate
        Unsigned 32-bit integer
    ranap.rAB_TrCH_Mapping  rAB-TrCH-Mapping
        Unsigned 32-bit integer
    ranap.rAC  rAC
        Byte array
    ranap.rAI  rAI
        No value
    ranap.rAListwithNoIdleModeUEsAnyMore  rAListwithNoIdleModeUEsAnyMore
        Unsigned 32-bit integer
    ranap.rAofIdleModeUEs  rAofIdleModeUEs
        Unsigned 32-bit integer
    ranap.rIMInformation  rIMInformation
        Byte array
    ranap.rIMRoutingAddress  rIMRoutingAddress
        Unsigned 32-bit integer
    ranap.rIM_Transfer  rIM-Transfer
        No value
    ranap.rNCTraceInformation  rNCTraceInformation
        No value
    ranap.rNC_ID  rNC-ID
        Unsigned 32-bit integer
    ranap.rRC_Container  rRC-Container
        Byte array
    ranap.rTLoadValue  rTLoadValue
        Unsigned 32-bit integer
    ranap.rab2beReleasedList  rab2beReleasedList
        Unsigned 32-bit integer
        RAB_ToBeReleasedList_EnhancedRelocCompleteRes
    ranap.radioNetwork  radioNetwork
        Unsigned 32-bit integer
        CauseRadioNetwork
    ranap.radioNetworkExtension  radioNetworkExtension
        Unsigned 32-bit integer
        CauseRadioNetworkExtension
    ranap.relocationRequirement  relocationRequirement
        Unsigned 32-bit integer
    ranap.relocationType  relocationType
        Unsigned 32-bit integer
    ranap.repetitionNumber  repetitionNumber
        Unsigned 32-bit integer
        RepetitionNumber0
    ranap.reportArea  reportArea
        Unsigned 32-bit integer
    ranap.reportingAmount  reportingAmount
        Unsigned 32-bit integer
        INTEGER_1_8639999_
    ranap.reportingInterval  reportingInterval
        Unsigned 32-bit integer
        INTEGER_1_8639999_
    ranap.requestedGPSAssistanceData  requestedGPSAssistanceData
        Byte array
    ranap.requestedGuaranteedBitrates  requestedGuaranteedBitrates
        Unsigned 32-bit integer
        Requested_RAB_Parameter_GuaranteedBitrateList
    ranap.requestedLocationRelatedDataType  requestedLocationRelatedDataType
        Unsigned 32-bit integer
    ranap.requestedMBMSIPMulticastAddressandAPNRequest  requestedMBMSIPMulticastAddressandAPNRequest
        Unsigned 32-bit integer
    ranap.requestedMaxBitrates  requestedMaxBitrates
        Unsigned 32-bit integer
        Requested_RAB_Parameter_MaxBitrateList
    ranap.requestedMulticastServiceList  requestedMulticastServiceList
        Unsigned 32-bit integer
    ranap.requested_RAB_Parameter_Values  requested-RAB-Parameter-Values
        No value
    ranap.residualBitErrorRatio  residualBitErrorRatio
        No value
    ranap.sAC  sAC
        Byte array
    ranap.sAI  sAI
        No value
    ranap.sAPI  sAPI
        Unsigned 32-bit integer
    ranap.sDU_ErrorRatio  sDU-ErrorRatio
        No value
    ranap.sDU_FormatInformationParameters  sDU-FormatInformationParameters
        Unsigned 32-bit integer
    ranap.sDU_Parameters  sDU-Parameters
        Unsigned 32-bit integer
    ranap.sRB_ID  sRB-ID
        Unsigned 32-bit integer
    ranap.secondCriticality  secondCriticality
        Unsigned 32-bit integer
        Criticality
    ranap.secondValue  secondValue
        No value
    ranap.selectedTAI  selectedTAI
        No value
        TAI
    ranap.serviceID  serviceID
        Byte array
        OCTET_STRING_SIZE_3
    ranap.service_Handover  service-Handover
        Unsigned 32-bit integer
    ranap.shared_network_information  shared-network-information
        No value
    ranap.sourceCellID  sourceCellID
        Unsigned 32-bit integer
    ranap.sourceGERANCellID  sourceGERANCellID
        No value
        CGI
    ranap.sourceRNC_ID  sourceRNC-ID
        No value
    ranap.sourceSideIuULTNLInfo  sourceSideIuULTNLInfo
        No value
        TNLInformationEnhRelInfoReq
    ranap.sourceStatisticsDescriptor  sourceStatisticsDescriptor
        Unsigned 32-bit integer
    ranap.sourceUTRANCellID  sourceUTRANCellID
        No value
    ranap.subflowSDU_Size  subflowSDU-Size
        Unsigned 32-bit integer
    ranap.successfulOutcome  successfulOutcome
        No value
    ranap.tAC  tAC
        Byte array
    ranap.tMGI  tMGI
        No value
    ranap.tMSI  tMSI
        Byte array
    ranap.targetCellId  targetCellId
        Unsigned 32-bit integer
    ranap.targetRNC_ID  targetRNC-ID
        No value
    ranap.targeteNB_ID  targeteNB-ID
        No value
    ranap.trCH_ID  trCH-ID
        No value
    ranap.trCH_ID_List  trCH-ID-List
        Unsigned 32-bit integer
    ranap.traceActivationIndicator  traceActivationIndicator
        Unsigned 32-bit integer
    ranap.traceDepth  traceDepth
        Unsigned 32-bit integer
    ranap.traceRecordingSessionReference  traceRecordingSessionReference
        Unsigned 32-bit integer
    ranap.traceReference  traceReference
        Byte array
    ranap.trafficClass  trafficClass
        Unsigned 32-bit integer
    ranap.trafficHandlingPriority  trafficHandlingPriority
        Unsigned 32-bit integer
    ranap.transferDelay  transferDelay
        Unsigned 32-bit integer
    ranap.transmissionNetwork  transmissionNetwork
        Unsigned 32-bit integer
        CauseTransmissionNetwork
    ranap.transportLayerAddress  transportLayerAddress
        Byte array
    ranap.transportLayerAddressReq1  transportLayerAddressReq1
        Byte array
        TransportLayerAddress
    ranap.transportLayerAddressRes1  transportLayerAddressRes1
        Byte array
        TransportLayerAddress
    ranap.transportLayerAddress_ipv4  transportLayerAddress IPv4
        IPv4 address
    ranap.transportLayerAddress_ipv6  transportLayerAddress IPv6
        IPv6 address
    ranap.transportLayerInformation  transportLayerInformation
        No value
    ranap.triggeringMessage  triggeringMessage
        Unsigned 32-bit integer
    ranap.uESBI_IuA  uESBI-IuA
        Byte array
    ranap.uESBI_IuB  uESBI-IuB
        Byte array
    ranap.uE_AggregateMaximumBitRateDownlink  uE-AggregateMaximumBitRateDownlink
        Unsigned 32-bit integer
    ranap.uE_AggregateMaximumBitRateUplink  uE-AggregateMaximumBitRateUplink
        Unsigned 32-bit integer
    ranap.uL_GTP_PDU_SequenceNumber  uL-GTP-PDU-SequenceNumber
        Unsigned 32-bit integer
    ranap.uP_ModeVersions  uP-ModeVersions
        Byte array
    ranap.uSCH_ID  uSCH-ID
        Unsigned 32-bit integer
    ranap.uTRANcellID  uTRANcellID
        Unsigned 32-bit integer
        TargetCellId
    ranap.ul_GTP_PDU_SequenceNumber  ul-GTP-PDU-SequenceNumber
        Unsigned 32-bit integer
    ranap.ul_N_PDU_SequenceNumber  ul-N-PDU-SequenceNumber
        Unsigned 32-bit integer
    ranap.uncertaintyAltitude  uncertaintyAltitude
        Unsigned 32-bit integer
        INTEGER_0_127
    ranap.uncertaintyCode  uncertaintyCode
        Unsigned 32-bit integer
        INTEGER_0_127
    ranap.uncertaintyEllipse  uncertaintyEllipse
        No value
        GA_UncertaintyEllipse
    ranap.uncertaintyRadius  uncertaintyRadius
        Unsigned 32-bit integer
        INTEGER_0_127
    ranap.uncertaintySemi_major  uncertaintySemi-major
        Unsigned 32-bit integer
        INTEGER_0_127
    ranap.uncertaintySemi_minor  uncertaintySemi-minor
        Unsigned 32-bit integer
        INTEGER_0_127
    ranap.uncertaintySpeed  uncertaintySpeed
        Unsigned 32-bit integer
        INTEGER_0_255
    ranap.unsuccessfulOutcome  unsuccessfulOutcome
        No value
    ranap.uplinkCellLoadInformation  uplinkCellLoadInformation
        No value
        CellLoadInformation
    ranap.userPlaneInformation  userPlaneInformation
        No value
    ranap.userPlaneMode  userPlaneMode
        Unsigned 32-bit integer
    ranap.value  value
        No value
        T_ie_field_value
    ranap.veritcalSpeed  veritcalSpeed
        Unsigned 32-bit integer
        INTEGER_0_255
    ranap.veritcalSpeedDirection  veritcalSpeedDirection
        Unsigned 32-bit integer
        VerticalSpeedDirection
    ranap.veritcalVelocity  veritcalVelocity
        No value
        VerticalVelocity
    ranap.verticalUncertaintySpeed  verticalUncertaintySpeed
        Unsigned 32-bit integer
        INTEGER_0_255

Radio Resource Control (RRC) protocol (rrc)

    rrc.AC_To_ASC_Mapping  AC-To-ASC-Mapping
        Unsigned 32-bit integer
    rrc.AP_Signature  AP-Signature
        Unsigned 32-bit integer
    rrc.AP_Signature_VCAM  AP-Signature-VCAM
        No value
    rrc.AP_Subchannel  AP-Subchannel
        Unsigned 32-bit integer
    rrc.ASCSetting_FDD  ASCSetting-FDD
        No value
    rrc.ASCSetting_TDD  ASCSetting-TDD
        No value
    rrc.ASCSetting_TDD_LCR_r4  ASCSetting-TDD-LCR-r4
        No value
    rrc.ASCSetting_TDD_r7  ASCSetting-TDD-r7
        No value
    rrc.AccessClassBarred  AccessClassBarred
        Unsigned 32-bit integer
    rrc.AcquisitionSatInfo  AcquisitionSatInfo
        No value
    rrc.AdditionalPRACH_TF_and_TFCS_CCCH  AdditionalPRACH-TF-and-TFCS-CCCH
        No value
    rrc.AllowedTFI_List_item  AllowedTFI-List item
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.AlmanacSatInfo  AlmanacSatInfo
        No value
    rrc.AuxInfoGANSS_ID1_element  AuxInfoGANSS-ID1-element
        No value
    rrc.AuxInfoGANSS_ID3_element  AuxInfoGANSS-ID3-element
        No value
    rrc.AvailableMinimumSF_VCAM  AvailableMinimumSF-VCAM
        No value
    rrc.BCCH_ARFCN  BCCH-ARFCN
        Unsigned 32-bit integer
    rrc.BCCH_BCH_Message  BCCH-BCH-Message
        No value
    rrc.BCCH_FACH_Message  BCCH-FACH-Message
        No value
    rrc.BLER_MeasurementResults  BLER-MeasurementResults
        No value
    rrc.BadSatList_item  BadSatList item
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.BandComb  BandComb
        Unsigned 32-bit integer
    rrc.CDMA2000_Message  CDMA2000-Message
        No value
    rrc.CD_AccessSlotSubchannel  CD-AccessSlotSubchannel
        Unsigned 32-bit integer
    rrc.CD_SignatureCode  CD-SignatureCode
        Unsigned 32-bit integer
    rrc.CN_DomainInformation  CN-DomainInformation
        No value
    rrc.CN_DomainInformationFull  CN-DomainInformationFull
        No value
    rrc.CN_DomainInformation_v390ext  CN-DomainInformation-v390ext
        No value
    rrc.CN_DomainSysInfo  CN-DomainSysInfo
        No value
    rrc.COUNT_CSingle  COUNT-CSingle
        No value
    rrc.CPCH_PersistenceLevels  CPCH-PersistenceLevels
        No value
    rrc.CPCH_SetInfo  CPCH-SetInfo
        No value
    rrc.CSGCellInfo  CSGCellInfo
        No value
    rrc.CSGInterFreqCellInfo  CSGInterFreqCellInfo
        No value
    rrc.CellDCHMeasOccasionPattern_LCR  CellDCHMeasOccasionPattern-LCR
        No value
    rrc.CellIdentity  CellIdentity
        Byte array
    rrc.CellMeasuredResults  CellMeasuredResults
        No value
    rrc.CellMeasuredResults_r9  CellMeasuredResults-r9
        No value
    rrc.CellMeasuredResults_v920ext  CellMeasuredResults-v920ext
        No value
    rrc.CellSelectReselectInfo_v590ext  CellSelectReselectInfo-v590ext
        No value
    rrc.CellToReport  CellToReport
        No value
    rrc.CellUpdateConfirm_r7_add_ext_IEs  CellUpdateConfirm-r7-add-ext-IEs
        No value
    rrc.CellUpdate_r3_add_ext_IEs  CellUpdate-r3-add-ext-IEs
        No value
    rrc.CipheringInfoPerRB  CipheringInfoPerRB
        No value
    rrc.CipheringInfoPerRB_r4  CipheringInfoPerRB-r4
        No value
    rrc.CipheringStatusCNdomain  CipheringStatusCNdomain
        No value
    rrc.CipheringStatusCNdomain_r4  CipheringStatusCNdomain-r4
        No value
    rrc.CodeChangeStatus  CodeChangeStatus
        No value
    rrc.CommonDynamicTF_Info  CommonDynamicTF-Info
        No value
    rrc.CommonDynamicTF_Info_DynamicTTI  CommonDynamicTF-Info-DynamicTTI
        No value
    rrc.Common_E_DCH_MAC_d_Flow  Common-E-DCH-MAC-d-Flow
        No value
    rrc.Common_E_DCH_ResourceInfoList  Common-E-DCH-ResourceInfoList
        No value
    rrc.Common_E_RNTI_Info_item  Common-E-RNTI-Info item
        No value
    rrc.Common_MAC_ehs_ReorderingQueue  Common-MAC-ehs-ReorderingQueue
        No value
    rrc.CompleteSIBshort  CompleteSIBshort
        No value
    rrc.CompressedModeMeasCapabEUTRA  CompressedModeMeasCapabEUTRA
        No value
    rrc.CompressedModeMeasCapabFDD  CompressedModeMeasCapabFDD
        No value
    rrc.CompressedModeMeasCapabFDD2  CompressedModeMeasCapabFDD2
        No value
    rrc.CompressedModeMeasCapabFDD_ext  CompressedModeMeasCapabFDD-ext
        No value
    rrc.CompressedModeMeasCapabGSM  CompressedModeMeasCapabGSM
        No value
    rrc.CompressedModeMeasCapabTDD  CompressedModeMeasCapabTDD
        No value
    rrc.DGANSSInfo  DGANSSInfo
        No value
    rrc.DGANSSInfo_r9  DGANSSInfo-r9
        No value
    rrc.DGANSSInfo_v920ext  DGANSSInfo-v920ext
        No value
    rrc.DGANSSSignalInformation  DGANSSSignalInformation
        No value
    rrc.DGANSSSignalInformation_r9  DGANSSSignalInformation-r9
        No value
    rrc.DGANSSSignalInformation_v920ext  DGANSSSignalInformation-v920ext
        No value
    rrc.DGPS_CorrectionSatInfo  DGPS-CorrectionSatInfo
        No value
    rrc.DGPS_CorrectionSatInfo_r9  DGPS-CorrectionSatInfo-r9
        No value
    rrc.DGPS_CorrectionSatInfo_v920ext  DGPS-CorrectionSatInfo-v920ext
        No value
    rrc.DL_AddReconfTransChInformation  DL-AddReconfTransChInformation
        No value
    rrc.DL_AddReconfTransChInformation2  DL-AddReconfTransChInformation2
        No value
    rrc.DL_AddReconfTransChInformation_r4  DL-AddReconfTransChInformation-r4
        No value
    rrc.DL_AddReconfTransChInformation_r5  DL-AddReconfTransChInformation-r5
        No value
    rrc.DL_AddReconfTransChInformation_r7  DL-AddReconfTransChInformation-r7
        No value
    rrc.DL_AddReconfTransChInformation_r9  DL-AddReconfTransChInformation-r9
        No value
    rrc.DL_CCCH_Message  DL-CCCH-Message
        No value
    rrc.DL_CCTrCh  DL-CCTrCh
        No value
    rrc.DL_CCTrCh_r4  DL-CCTrCh-r4
        No value
    rrc.DL_CCTrCh_r7  DL-CCTrCh-r7
        No value
    rrc.DL_ChannelisationCode  DL-ChannelisationCode
        No value
    rrc.DL_DCCH_Message  DL-DCCH-Message
        No value
    rrc.DL_HSPDSCH_MultiCarrier_Information_item  DL-HSPDSCH-MultiCarrier-Information item
        No value
    rrc.DL_HSPDSCH_TS_Configuration_VHCR_item  DL-HSPDSCH-TS-Configuration-VHCR item
        No value
    rrc.DL_HSPDSCH_TS_Configuration_item  DL-HSPDSCH-TS-Configuration item
        No value
    rrc.DL_InformationPerRL  DL-InformationPerRL
        No value
    rrc.DL_InformationPerRL_PostFDD  DL-InformationPerRL-PostFDD
        No value
    rrc.DL_InformationPerRL_r4  DL-InformationPerRL-r4
        No value
    rrc.DL_InformationPerRL_r5  DL-InformationPerRL-r5
        No value
    rrc.DL_InformationPerRL_r5bis  DL-InformationPerRL-r5bis
        No value
    rrc.DL_InformationPerRL_r6  DL-InformationPerRL-r6
        No value
    rrc.DL_InformationPerRL_r7  DL-InformationPerRL-r7
        No value
    rrc.DL_InformationPerRL_r8  DL-InformationPerRL-r8
        No value
    rrc.DL_InformationPerRL_v6b0ext  DL-InformationPerRL-v6b0ext
        No value
    rrc.DL_InformationPerSecondaryRL  DL-InformationPerSecondaryRL
        No value
    rrc.DL_LogicalChannelMapping  DL-LogicalChannelMapping
        No value
    rrc.DL_LogicalChannelMapping_r5  DL-LogicalChannelMapping-r5
        No value
    rrc.DL_LogicalChannelMapping_r7  DL-LogicalChannelMapping-r7
        No value
    rrc.DL_SHCCH_Message  DL-SHCCH-Message
        No value
    rrc.DL_TPC_PowerOffsetPerRL  DL-TPC-PowerOffsetPerRL
        No value
    rrc.DL_TS_ChannelisationCode  DL-TS-ChannelisationCode
        Unsigned 32-bit integer
    rrc.DL_TransportChannelIdentity  DL-TransportChannelIdentity
        No value
    rrc.DL_TransportChannelIdentity_r5  DL-TransportChannelIdentity-r5
        No value
    rrc.DL_TransportChannelIdentity_r7  DL-TransportChannelIdentity-r7
        No value
    rrc.DRAC_StaticInformation  DRAC-StaticInformation
        No value
    rrc.DRAC_SysInfo  DRAC-SysInfo
        No value
    rrc.DSCH_Mapping  DSCH-Mapping
        No value
    rrc.DSCH_TransportChannelsInfo_item  DSCH-TransportChannelsInfo item
        No value
    rrc.DataBitAssistance  DataBitAssistance
        No value
    rrc.DataBitAssistanceSat  DataBitAssistanceSat
        No value
    rrc.DataVolumePerRB  DataVolumePerRB
        No value
    rrc.DedicatedDynamicTF_Info  DedicatedDynamicTF-Info
        No value
    rrc.DedicatedDynamicTF_Info_DynamicTTI  DedicatedDynamicTF-Info-DynamicTTI
        No value
    rrc.DeltaRSCP  DeltaRSCP
        Signed 32-bit integer
    rrc.DeltaRSCPPerCell  DeltaRSCPPerCell
        No value
    rrc.Digit  Digit
        Unsigned 32-bit integer
    rrc.DownlinkAdditionalTimeslots  DownlinkAdditionalTimeslots
        No value
    rrc.DownlinkAdditionalTimeslots_LCR_r4  DownlinkAdditionalTimeslots-LCR-r4
        No value
    rrc.DownlinkAdditionalTimeslots_VHCR  DownlinkAdditionalTimeslots-VHCR
        No value
    rrc.DownlinkAdditionalTimeslots_r7  DownlinkAdditionalTimeslots-r7
        No value
    rrc.DynamicPersistenceLevel  DynamicPersistenceLevel
        Unsigned 32-bit integer
    rrc.EARFCN  EARFCN
        Unsigned 32-bit integer
    rrc.EUTRA_BlacklistedCell  EUTRA-BlacklistedCell
        No value
    rrc.EUTRA_FrequencyAndPriorityInfo  EUTRA-FrequencyAndPriorityInfo
        No value
    rrc.EUTRA_FrequencyAndPriorityInfo_v920ext  EUTRA-FrequencyAndPriorityInfo-v920ext
        No value
    rrc.EUTRA_FrequencyInfo  EUTRA-FrequencyInfo
        No value
    rrc.EUTRA_MeasuredCells  EUTRA-MeasuredCells
        No value
    rrc.EUTRA_MeasuredCells_v920ext  EUTRA-MeasuredCells-v920ext
        No value
    rrc.EUTRA_PhysicalCellIdentity  EUTRA-PhysicalCellIdentity
        Unsigned 32-bit integer
    rrc.EUTRA_TargetFreqInfo  EUTRA-TargetFreqInfo
        No value
    rrc.E_AGCH_Individual  E-AGCH-Individual
        No value
    rrc.E_AGCH_Individual_LCR  E-AGCH-Individual-LCR
        No value
    rrc.E_AGCH_Individual_VHCR  E-AGCH-Individual-VHCR
        No value
    rrc.E_DCH_AddReconf_MAC_d_Flow  E-DCH-AddReconf-MAC-d-Flow
        No value
    rrc.E_DCH_AddReconf_MAC_d_Flow_r7  E-DCH-AddReconf-MAC-d-Flow-r7
        No value
    rrc.E_DCH_RL_InfoOtherCell  E-DCH-RL-InfoOtherCell
        No value
    rrc.E_DCH_RL_InfoOtherCell_SecULFreq  E-DCH-RL-InfoOtherCell-SecULFreq
        No value
    rrc.E_DCH_TxPatternList_TDD128_item  E-DCH-TxPatternList-TDD128 item
        No value
    rrc.E_DPDCH_Reference_E_TFCI  E-DPDCH-Reference-E-TFCI
        No value
    rrc.E_DPDCH_Reference_E_TFCI_r7  E-DPDCH-Reference-E-TFCI-r7
        No value
    rrc.E_HICH_Information_LCR  E-HICH-Information-LCR
        No value
    rrc.E_PUCH_TS_Slots  E-PUCH-TS-Slots
        No value
    rrc.E_PUCH_TS_Slots_LCR  E-PUCH-TS-Slots-LCR
        No value
    rrc.E_RGCH_Combination_Info  E-RGCH-Combination-Info
        No value
    rrc.E_RGCH_Combination_Info_r9  E-RGCH-Combination-Info-r9
        No value
    rrc.Eutra_EventResult  Eutra-EventResult
        No value
    rrc.Eutra_MeasuredResult  Eutra-MeasuredResult
        No value
    rrc.Eutra_MeasuredResult_v920ext  Eutra-MeasuredResult-v920ext
        No value
    rrc.ExtGANSS_SIBTypeInfoSchedulingInfo  ExtGANSS-SIBTypeInfoSchedulingInfo
        No value
    rrc.ExtGANSS_SchedulingInfo  ExtGANSS-SchedulingInfo
        No value
    rrc.ExtSIBTypeInfoSchedulingInfo  ExtSIBTypeInfoSchedulingInfo
        No value
    rrc.ExtSIBTypeInfoSchedulingInfo2  ExtSIBTypeInfoSchedulingInfo2
        No value
    rrc.FACH_PCH_Information  FACH-PCH-Information
        No value
    rrc.ForbiddenAffectCell  ForbiddenAffectCell
        Unsigned 32-bit integer
    rrc.ForbiddenAffectCellOnSecULFreq  ForbiddenAffectCellOnSecULFreq
        No value
    rrc.ForbiddenAffectCell_LCR_r4  ForbiddenAffectCell-LCR-r4
        No value
    rrc.ForbiddenAffectCell_r4  ForbiddenAffectCell-r4
        Unsigned 32-bit integer
    rrc.FrequencyInfo  FrequencyInfo
        No value
    rrc.FrequencyInfoCDMA2000  FrequencyInfoCDMA2000
        No value
    rrc.FrequencyInfoFDD  FrequencyInfoFDD
        No value
    rrc.FrequencyInfoTDD  FrequencyInfoTDD
        No value
    rrc.GANSSGenericData  GANSSGenericData
        No value
    rrc.GANSSGenericData_r8  GANSSGenericData-r8
        No value
    rrc.GANSSGenericData_r9  GANSSGenericData-r9
        No value
    rrc.GANSSGenericData_v860ext  GANSSGenericData-v860ext
        No value
    rrc.GANSSGenericData_v920ext  GANSSGenericData-v920ext
        No value
    rrc.GANSSGenericMeasurementInfo_item  GANSSGenericMeasurementInfo item
        No value
    rrc.GANSSGenericMeasurementInfo_v860ext_item  GANSSGenericMeasurementInfo-v860ext item
        No value
    rrc.GANSSMeasurementParameters_item  GANSSMeasurementParameters item
        No value
    rrc.GANSSMeasurementParameters_v860ext_item  GANSSMeasurementParameters-v860ext item
        No value
    rrc.GANSSMeasurementSignalList_item  GANSSMeasurementSignalList item
        No value
    rrc.GANSSMeasurementSignalList_v860ext_item  GANSSMeasurementSignalList-v860ext item
        No value
    rrc.GANSSSatelliteInformation  GANSSSatelliteInformation
        No value
    rrc.GANSS_SAT_Info_Almanac_GLOkp  GANSS-SAT-Info-Almanac-GLOkp
        No value
    rrc.GANSS_SAT_Info_Almanac_Kp  GANSS-SAT-Info-Almanac-Kp
        No value
    rrc.GANSS_SAT_Info_Almanac_MIDIkp  GANSS-SAT-Info-Almanac-MIDIkp
        No value
    rrc.GANSS_SAT_Info_Almanac_NAVkp  GANSS-SAT-Info-Almanac-NAVkp
        No value
    rrc.GANSS_SAT_Info_Almanac_REDkp  GANSS-SAT-Info-Almanac-REDkp
        No value
    rrc.GANSS_SAT_Info_Almanac_SBASecef  GANSS-SAT-Info-Almanac-SBASecef
        No value
    rrc.GERANIu_MessageList_item  GERANIu-MessageList item
        Byte array
        BIT_STRING_SIZE_1_32768
    rrc.GERAN_SystemInfoBlock  GERAN-SystemInfoBlock
        Byte array
    rrc.GPS_MeasurementParam  GPS-MeasurementParam
        No value
    rrc.GPS_TOW_Assist  GPS-TOW-Assist
        No value
    rrc.GSM_BA_Range  GSM-BA-Range
        No value
    rrc.GSM_MeasuredResults  GSM-MeasuredResults
        No value
    rrc.GSM_MessageList_item  GSM-MessageList item
        Byte array
    rrc.GSM_PriorityInfo  GSM-PriorityInfo
        No value
    rrc.GSM_TargetCellInfo  GSM-TargetCellInfo
        No value
    rrc.GanssReqGenericData  GanssReqGenericData
        No value
    rrc.GanssReqGenericData_v860ext  GanssReqGenericData-v860ext
        No value
    rrc.Ganss_Sat_Info_AddNav  Ganss-Sat-Info-AddNav
        No value
    rrc.Ganss_Sat_Info_Nav  Ganss-Sat-Info-Nav
        No value
    rrc.GroupIdentityWithReleaseInformation  GroupIdentityWithReleaseInformation
        No value
    rrc.GroupReleaseInformation  GroupReleaseInformation
        No value
    rrc.HARQMemorySize  HARQMemorySize
        Unsigned 32-bit integer
    rrc.HS_DSCH_RxPatternList_TDD128_item  HS-DSCH-RxPatternList-TDD128 item
        No value
    rrc.HS_DSCH_TbsList_TDD128_item  HS-DSCH-TbsList-TDD128 item
        No value
    rrc.HS_SCCH_Codes  HS-SCCH-Codes
        Unsigned 32-bit integer
    rrc.HS_SCCH_LessTFSList_item  HS-SCCH-LessTFSList item
        No value
    rrc.HS_SCCH_TDD128  HS-SCCH-TDD128
        No value
    rrc.HS_SCCH_TDD128_MultiCarrier  HS-SCCH-TDD128-MultiCarrier
        No value
    rrc.HS_SCCH_TDD128_r6  HS-SCCH-TDD128-r6
        No value
    rrc.HS_SCCH_TDD384  HS-SCCH-TDD384
        No value
    rrc.HS_SCCH_TDD384_r6  HS-SCCH-TDD384-r6
        No value
    rrc.HS_SCCH_TDD768  HS-SCCH-TDD768
        No value
    rrc.HS_SICH_List_TDD128_item  HS-SICH-List-TDD128 item
        Unsigned 32-bit integer
    rrc.HS_SICH_ReferenceSignalInfoList_item  HS-SICH-ReferenceSignalInfoList item
        No value
    rrc.H_RNTI  H-RNTI
        Byte array
    rrc.HandoverToUTRANCommand  HandoverToUTRANCommand
        Unsigned 32-bit integer
    rrc.HeaderCompressionInfo  HeaderCompressionInfo
        No value
    rrc.HeaderCompressionInfo_r4  HeaderCompressionInfo-r4
        No value
    rrc.IMEI_Digit  IMEI-Digit
        Unsigned 32-bit integer
    rrc.IdleIntervalMeasCapabEUTRA  IdleIntervalMeasCapabEUTRA
        No value
    rrc.IndividualDL_CCTrCH_Info  IndividualDL-CCTrCH-Info
        No value
    rrc.IndividualTS_Interference  IndividualTS-Interference
        No value
    rrc.IndividualUL_CCTrCH_Info  IndividualUL-CCTrCH-Info
        No value
    rrc.InitialDirectTransfer_r3_add_ext_IEs  InitialDirectTransfer-r3-add-ext-IEs
        No value
    rrc.InterFreqCell  InterFreqCell
        No value
    rrc.InterFreqCellID  InterFreqCellID
        Unsigned 32-bit integer
    rrc.InterFreqCell_LCR_r4  InterFreqCell-LCR-r4
        No value
    rrc.InterFreqEvent  InterFreqEvent
        Unsigned 32-bit integer
    rrc.InterFreqEvent_r6  InterFreqEvent-r6
        Unsigned 32-bit integer
    rrc.InterFreqMeasuredResults  InterFreqMeasuredResults
        No value
    rrc.InterFreqMeasuredResults_v920ext  InterFreqMeasuredResults-v920ext
        No value
    rrc.InterFreqRepQuantityRACH_TDD  InterFreqRepQuantityRACH-TDD
        Unsigned 32-bit integer
    rrc.InterRATCellID  InterRATCellID
        Unsigned 32-bit integer
    rrc.InterRATEvent  InterRATEvent
        Unsigned 32-bit integer
    rrc.InterRATHandoverInfo  InterRATHandoverInfo
        No value
    rrc.InterRATHandoverInfo_r3_add_ext_IEs  InterRATHandoverInfo-r3-add-ext-IEs
        No value
    rrc.InterRATMeasuredResults  InterRATMeasuredResults
        Unsigned 32-bit integer
    rrc.InterRAT_UE_RadioAccessCapability  InterRAT-UE-RadioAccessCapability
        Unsigned 32-bit integer
    rrc.InterRAT_UE_SecurityCapability  InterRAT-UE-SecurityCapability
        Unsigned 32-bit integer
    rrc.Inter_FreqEventCriteria_v590ext  Inter-FreqEventCriteria-v590ext
        No value
    rrc.IntraFreqCellID  IntraFreqCellID
        Unsigned 32-bit integer
    rrc.IntraFreqCellIDOnSecULFreq  IntraFreqCellIDOnSecULFreq
        Unsigned 32-bit integer
    rrc.IntraFreqEventCriteria  IntraFreqEventCriteria
        No value
    rrc.IntraFreqEventCriteriaOnSecULFreq  IntraFreqEventCriteriaOnSecULFreq
        No value
    rrc.IntraFreqEventCriteria_LCR_r4  IntraFreqEventCriteria-LCR-r4
        No value
    rrc.IntraFreqEventCriteria_r4  IntraFreqEventCriteria-r4
        No value
    rrc.IntraFreqEventCriteria_r6  IntraFreqEventCriteria-r6
        No value
    rrc.IntraFreqEventCriteria_r7  IntraFreqEventCriteria-r7
        No value
    rrc.IntraFreqMeasQuantity_TDD  IntraFreqMeasQuantity-TDD
        Unsigned 32-bit integer
    rrc.IntraFreqMeasQuantity_TDD_sib3List_item  IntraFreqMeasQuantity-TDD-sib3List item
        Unsigned 32-bit integer
    rrc.IntraFreqRepQuantityRACH_TDD  IntraFreqRepQuantityRACH-TDD
        Unsigned 32-bit integer
    rrc.LogicalChannelByRB  LogicalChannelByRB
        No value
    rrc.MAC_d_PDUsizeInfo  MAC-d-PDUsizeInfo
        No value
    rrc.MAC_ehs_AddReconfReordQ  MAC-ehs-AddReconfReordQ
        No value
    rrc.MAC_ehs_AddReconfReordQ_r9  MAC-ehs-AddReconfReordQ-r9
        No value
    rrc.MAC_ehs_DelReordQ  MAC-ehs-DelReordQ
        No value
    rrc.MAC_hs_AddReconfQueue  MAC-hs-AddReconfQueue
        No value
    rrc.MAC_hs_DelQueue  MAC-hs-DelQueue
        No value
    rrc.MBMS_CommonRBInformation_r6  MBMS-CommonRBInformation-r6
        No value
    rrc.MBMS_CurrentCell_SCCPCH_r6  MBMS-CurrentCell-SCCPCH-r6
        No value
    rrc.MBMS_ModifedService_r6  MBMS-ModifedService-r6
        No value
    rrc.MBMS_ModifiedService_LCR_v7c0ext  MBMS-ModifiedService-LCR-v7c0ext
        No value
    rrc.MBMS_ModifiedService_v770ext  MBMS-ModifiedService-v770ext
        No value
    rrc.MBMS_NeighbouringCellSCCPCH_r6  MBMS-NeighbouringCellSCCPCH-r6
        No value
    rrc.MBMS_NeighbouringCellSCCPCH_v770ext  MBMS-NeighbouringCellSCCPCH-v770ext
        No value
    rrc.MBMS_PTM_RBInformation_C  MBMS-PTM-RBInformation-C
        No value
    rrc.MBMS_PTM_RBInformation_N  MBMS-PTM-RBInformation-N
        No value
    rrc.MBMS_PhyChInformation_IMB384  MBMS-PhyChInformation-IMB384
        No value
    rrc.MBMS_PhyChInformation_r6  MBMS-PhyChInformation-r6
        No value
    rrc.MBMS_PhyChInformation_r7  MBMS-PhyChInformation-r7
        No value
    rrc.MBMS_PreferredFrequencyInfo_r6  MBMS-PreferredFrequencyInfo-r6
        No value
    rrc.MBMS_SIBType5_SCCPCH_r6  MBMS-SIBType5-SCCPCH-r6
        No value
    rrc.MBMS_ServiceAccessInfo_r6  MBMS-ServiceAccessInfo-r6
        No value
    rrc.MBMS_ServiceIdentity_r6  MBMS-ServiceIdentity-r6
        No value
    rrc.MBMS_ServiceSchedulingInfo_r6  MBMS-ServiceSchedulingInfo-r6
        No value
    rrc.MBMS_ServiceTransmInfo  MBMS-ServiceTransmInfo
        No value
    rrc.MBMS_ShortTransmissionID  MBMS-ShortTransmissionID
        Unsigned 32-bit integer
    rrc.MBMS_TrCHInformation_Curr  MBMS-TrCHInformation-Curr
        No value
    rrc.MBMS_TrCHInformation_Neighb  MBMS-TrCHInformation-Neighb
        No value
    rrc.MBMS_TrCHInformation_SIB5  MBMS-TrCHInformation-SIB5
        No value
    rrc.MBMS_TranspChInfoForCCTrCh_r6  MBMS-TranspChInfoForCCTrCh-r6
        No value
    rrc.MBMS_TranspChInfoForTrCh_r6  MBMS-TranspChInfoForTrCh-r6
        No value
    rrc.MBMS_UnmodifiedService_r6  MBMS-UnmodifiedService-r6
        No value
    rrc.MBMS_UnmodifiedService_v770ext  MBMS-UnmodifiedService-v770ext
        No value
    rrc.MBSFNFrequency  MBSFNFrequency
        No value
    rrc.MBSFNFrequency_v860ext  MBSFNFrequency-v860ext
        No value
    rrc.MBSFNInterFrequencyNeighbour_r7  MBSFNInterFrequencyNeighbour-r7
        No value
    rrc.MBSFNInterFrequencyNeighbour_v860ext  MBSFNInterFrequencyNeighbour-v860ext
        No value
    rrc.MBSFN_TDDTimeSlotInfo  MBSFN-TDDTimeSlotInfo
        No value
    rrc.MBSFN_TDDTimeSlotInfo_LCR  MBSFN-TDDTimeSlotInfo-LCR
        No value
    rrc.MBSFN_TDM_Info  MBSFN-TDM-Info
        No value
    rrc.MCCH_Message  MCCH-Message
        No value
    rrc.MSCH_Message  MSCH-Message
        No value
    rrc.Mapping  Mapping
        No value
    rrc.MappingFunctionParameter  MappingFunctionParameter
        No value
    rrc.MasterInformationBlock  MasterInformationBlock
        No value
    rrc.MeasuredResults  MeasuredResults
        Unsigned 32-bit integer
    rrc.MeasuredResultsList_v770xet_item  MeasuredResultsList-v770xet item
        No value
    rrc.MeasuredResultsList_v860ext_item  MeasuredResultsList-v860ext item
        No value
    rrc.MeasuredResultsOnSecUlFreq  MeasuredResultsOnSecUlFreq
        No value
    rrc.MeasuredResults_LCR_r4  MeasuredResults-LCR-r4
        Unsigned 32-bit integer
    rrc.MeasuredResults_v920ext  MeasuredResults-v920ext
        Unsigned 32-bit integer
    rrc.MeasurementIdentity  MeasurementIdentity
        Unsigned 32-bit integer
    rrc.MeasurementReport  MeasurementReport
        No value
    rrc.MonitoredCellRACH_Result  MonitoredCellRACH-Result
        No value
    rrc.MultiplePLMNsOfInterFreqCellsList_item  MultiplePLMNsOfInterFreqCellsList item
        No value
    rrc.MultiplePLMNsOfIntraFreqCellsList_item  MultiplePLMNsOfIntraFreqCellsList item
        No value
    rrc.NS_IP  NS-IP
        Unsigned 32-bit integer
    rrc.NavigationModelSatInfo  NavigationModelSatInfo
        No value
    rrc.Neighbour  Neighbour
        No value
    rrc.Neighbour_TDD_r7  Neighbour-TDD-r7
        No value
    rrc.Neighbour_v390ext  Neighbour-v390ext
        No value
    rrc.NetworkAssistedGANSS_Supported_List_item  NetworkAssistedGANSS-Supported-List item
        No value
    rrc.NetworkAssistedGANSS_Supported_List_v860ext_item  NetworkAssistedGANSS-Supported-List-v860ext item
        No value
    rrc.NewInterFreqCell  NewInterFreqCell
        No value
    rrc.NewInterFreqCellSI_ECN0  NewInterFreqCellSI-ECN0
        No value
    rrc.NewInterFreqCellSI_ECN0_LCR_r4  NewInterFreqCellSI-ECN0-LCR-r4
        No value
    rrc.NewInterFreqCellSI_HCS_ECN0  NewInterFreqCellSI-HCS-ECN0
        No value
    rrc.NewInterFreqCellSI_HCS_ECN0_LCR_r4  NewInterFreqCellSI-HCS-ECN0-LCR-r4
        No value
    rrc.NewInterFreqCellSI_HCS_RSCP  NewInterFreqCellSI-HCS-RSCP
        No value
    rrc.NewInterFreqCellSI_HCS_RSCP_LCR_r4  NewInterFreqCellSI-HCS-RSCP-LCR-r4
        No value
    rrc.NewInterFreqCellSI_RSCP  NewInterFreqCellSI-RSCP
        No value
    rrc.NewInterFreqCellSI_RSCP_LCR_r4  NewInterFreqCellSI-RSCP-LCR-r4
        No value
    rrc.NewInterFreqCell_LCR_v8a0ext  NewInterFreqCell-LCR-v8a0ext
        No value
    rrc.NewInterFreqCell_r4  NewInterFreqCell-r4
        No value
    rrc.NewInterFreqCell_r8  NewInterFreqCell-r8
        No value
    rrc.NewInterFreqCell_r9  NewInterFreqCell-r9
        No value
    rrc.NewInterFreqCell_v7b0ext  NewInterFreqCell-v7b0ext
        No value
    rrc.NewInterRATCell  NewInterRATCell
        No value
    rrc.NewInterRATCell_B  NewInterRATCell-B
        No value
    rrc.NewIntraFreqCell  NewIntraFreqCell
        No value
    rrc.NewIntraFreqCellOnSecULFreq  NewIntraFreqCellOnSecULFreq
        No value
    rrc.NewIntraFreqCellSI_ECN0  NewIntraFreqCellSI-ECN0
        No value
    rrc.NewIntraFreqCellSI_ECN0_LCR_r4  NewIntraFreqCellSI-ECN0-LCR-r4
        No value
    rrc.NewIntraFreqCellSI_HCS_ECN0  NewIntraFreqCellSI-HCS-ECN0
        No value
    rrc.NewIntraFreqCellSI_HCS_ECN0_LCR_r4  NewIntraFreqCellSI-HCS-ECN0-LCR-r4
        No value
    rrc.NewIntraFreqCellSI_HCS_RSCP  NewIntraFreqCellSI-HCS-RSCP
        No value
    rrc.NewIntraFreqCellSI_HCS_RSCP_LCR_r4  NewIntraFreqCellSI-HCS-RSCP-LCR-r4
        No value
    rrc.NewIntraFreqCellSI_RSCP  NewIntraFreqCellSI-RSCP
        No value
    rrc.NewIntraFreqCellSI_RSCP_LCR_r4  NewIntraFreqCellSI-RSCP-LCR-r4
        No value
    rrc.NewIntraFreqCell_LCR_v8a0ext  NewIntraFreqCell-LCR-v8a0ext
        No value
    rrc.NewIntraFreqCell_r4  NewIntraFreqCell-r4
        No value
    rrc.NewIntraFreqCell_r9  NewIntraFreqCell-r9
        No value
    rrc.NonUsedFreqParameter  NonUsedFreqParameter
        No value
    rrc.NonUsedFreqParameter_r6  NonUsedFreqParameter-r6
        No value
    rrc.NumberOfTbSizeAndTTIList_item  NumberOfTbSizeAndTTIList item
        No value
    rrc.NumberOfTransportBlocks  NumberOfTransportBlocks
        Unsigned 32-bit integer
    rrc.OngoingMeasRep  OngoingMeasRep
        No value
    rrc.OngoingMeasRep_r4  OngoingMeasRep-r4
        No value
    rrc.OngoingMeasRep_r5  OngoingMeasRep-r5
        No value
    rrc.OngoingMeasRep_r6  OngoingMeasRep-r6
        No value
    rrc.OngoingMeasRep_r7  OngoingMeasRep-r7
        No value
    rrc.OngoingMeasRep_r8  OngoingMeasRep-r8
        No value
    rrc.OngoingMeasRep_r9  OngoingMeasRep-r9
        No value
    rrc.PCCH_Message  PCCH-Message
        No value
    rrc.PCPCH_ChannelInfo  PCPCH-ChannelInfo
        No value
    rrc.PDSCH_CodeInfo  PDSCH-CodeInfo
        No value
    rrc.PDSCH_CodeMap  PDSCH-CodeMap
        No value
    rrc.PDSCH_SysInfo  PDSCH-SysInfo
        No value
    rrc.PDSCH_SysInfoList_SFN_HCR_r5_item  PDSCH-SysInfoList-SFN-HCR-r5 item
        No value
    rrc.PDSCH_SysInfoList_SFN_LCR_r4_item  PDSCH-SysInfoList-SFN-LCR-r4 item
        No value
    rrc.PDSCH_SysInfoList_SFN_item  PDSCH-SysInfoList-SFN item
        No value
    rrc.PDSCH_SysInfo_HCR_r5  PDSCH-SysInfo-HCR-r5
        No value
    rrc.PDSCH_SysInfo_LCR_r4  PDSCH-SysInfo-LCR-r4
        No value
    rrc.PDSCH_SysInfo_VHCR_r7  PDSCH-SysInfo-VHCR-r7
        No value
    rrc.PICH_ForHSDPASupportedPaging  PICH-ForHSDPASupportedPaging
        No value
    rrc.PICH_ForHSDPASupportedPaging_TDD128  PICH-ForHSDPASupportedPaging-TDD128
        Unsigned 32-bit integer
    rrc.PLMN_IdentityWithOptionalMCC_r6  PLMN-IdentityWithOptionalMCC-r6
        No value
    rrc.PLMNsOfInterFreqCellsList_item  PLMNsOfInterFreqCellsList item
        No value
    rrc.PLMNsOfInterRATCellsList_item  PLMNsOfInterRATCellsList item
        No value
    rrc.PLMNsOfIntraFreqCellsList_item  PLMNsOfIntraFreqCellsList item
        No value
    rrc.PRACH_Definition_LCR_r4  PRACH-Definition-LCR-r4
        No value
    rrc.PRACH_Information_LCR  PRACH-Information-LCR
        No value
    rrc.PRACH_SystemInformation  PRACH-SystemInformation
        No value
    rrc.PRACH_SystemInformation_LCR_r4  PRACH-SystemInformation-LCR-r4
        No value
    rrc.PRACH_SystemInformation_LCR_v770ext  PRACH-SystemInformation-LCR-v770ext
        No value
    rrc.PRACH_SystemInformation_VHCR_r7  PRACH-SystemInformation-VHCR-r7
        No value
    rrc.PUSCH_SysInfo  PUSCH-SysInfo
        No value
    rrc.PUSCH_SysInfoList_SFN_HCR_r5_item  PUSCH-SysInfoList-SFN-HCR-r5 item
        No value
    rrc.PUSCH_SysInfoList_SFN_LCR_r4_item  PUSCH-SysInfoList-SFN-LCR-r4 item
        No value
    rrc.PUSCH_SysInfoList_SFN_VHCR_item  PUSCH-SysInfoList-SFN-VHCR item
        No value
    rrc.PUSCH_SysInfoList_SFN_item  PUSCH-SysInfoList-SFN item
        No value
    rrc.PUSCH_SysInfo_HCR_r5  PUSCH-SysInfo-HCR-r5
        No value
    rrc.PUSCH_SysInfo_LCR_r4  PUSCH-SysInfo-LCR-r4
        No value
    rrc.PagingRecord  PagingRecord
        Unsigned 32-bit integer
    rrc.PagingRecord2_r5  PagingRecord2-r5
        Unsigned 32-bit integer
    rrc.PersistenceScalingFactor  PersistenceScalingFactor
        Unsigned 32-bit integer
    rrc.PredefinedConfigSetWithDifferentValueTag  PredefinedConfigSetWithDifferentValueTag
        No value
    rrc.PredefinedConfigStatusInfo  PredefinedConfigStatusInfo
        Unsigned 32-bit integer
    rrc.PredefinedConfigValueTag  PredefinedConfigValueTag
        Unsigned 32-bit integer
    rrc.PrimaryCCPCH_Info  PrimaryCCPCH-Info
        Unsigned 32-bit integer
    rrc.PrimaryCCPCH_Info_LCR_r4  PrimaryCCPCH-Info-LCR-r4
        No value
    rrc.PrimaryCPICH_Info  PrimaryCPICH-Info
        No value
    rrc.PriorityLevel  PriorityLevel
        No value
    rrc.QualityReportingCriteriaSingle  QualityReportingCriteriaSingle
        No value
    rrc.RAB.test  RAB Test
        Unsigned 8-bit integer
        rrc.RAB_Info_r6
    rrc.RAB_Info  RAB-Info
        No value
    rrc.RAB_Info_r6  RAB-Info-r6
        No value
    rrc.RAB_InformationMBMSPtp  RAB-InformationMBMSPtp
        No value
    rrc.RAB_InformationReconfig  RAB-InformationReconfig
        No value
    rrc.RAB_InformationReconfig_r8  RAB-InformationReconfig-r8
        No value
    rrc.RAB_InformationSetup  RAB-InformationSetup
        No value
    rrc.RAB_InformationSetup_r4  RAB-InformationSetup-r4
        No value
    rrc.RAB_InformationSetup_r5  RAB-InformationSetup-r5
        No value
    rrc.RAB_InformationSetup_r6  RAB-InformationSetup-r6
        No value
    rrc.RAB_InformationSetup_r6_ext  RAB-InformationSetup-r6-ext
        No value
    rrc.RAB_InformationSetup_r7  RAB-InformationSetup-r7
        No value
    rrc.RAB_InformationSetup_r8  RAB-InformationSetup-r8
        No value
    rrc.RAB_InformationSetup_v6b0ext  RAB-InformationSetup-v6b0ext
        No value
    rrc.RAB_InformationSetup_v820ext  RAB-InformationSetup-v820ext
        No value
    rrc.RAT_FDD_Info  RAT-FDD-Info
        No value
    rrc.RAT_TDD_Info  RAT-TDD-Info
        No value
    rrc.RAT_Type  RAT-Type
        Unsigned 32-bit integer
    rrc.RB_ActivationTimeInfo  RB-ActivationTimeInfo
        No value
    rrc.RB_COUNT_C_Information  RB-COUNT-C-Information
        No value
    rrc.RB_COUNT_C_MSB_Information  RB-COUNT-C-MSB-Information
        No value
    rrc.RB_Identity  RB-Identity
        Unsigned 32-bit integer
    rrc.RB_InformationAffected  RB-InformationAffected
        No value
    rrc.RB_InformationAffected_r5  RB-InformationAffected-r5
        No value
    rrc.RB_InformationAffected_r6  RB-InformationAffected-r6
        No value
    rrc.RB_InformationAffected_r7  RB-InformationAffected-r7
        No value
    rrc.RB_InformationAffected_r8  RB-InformationAffected-r8
        No value
    rrc.RB_InformationChanged_r6  RB-InformationChanged-r6
        No value
    rrc.RB_InformationReconfig  RB-InformationReconfig
        No value
    rrc.RB_InformationReconfig_r4  RB-InformationReconfig-r4
        No value
    rrc.RB_InformationReconfig_r5  RB-InformationReconfig-r5
        No value
    rrc.RB_InformationReconfig_r6  RB-InformationReconfig-r6
        No value
    rrc.RB_InformationReconfig_r7  RB-InformationReconfig-r7
        No value
    rrc.RB_InformationReconfig_r8  RB-InformationReconfig-r8
        No value
    rrc.RB_InformationSetup  RB-InformationSetup
        No value
    rrc.RB_InformationSetup_r4  RB-InformationSetup-r4
        No value
    rrc.RB_InformationSetup_r5  RB-InformationSetup-r5
        No value
    rrc.RB_InformationSetup_r6  RB-InformationSetup-r6
        No value
    rrc.RB_InformationSetup_r7  RB-InformationSetup-r7
        No value
    rrc.RB_InformationSetup_r8  RB-InformationSetup-r8
        No value
    rrc.RB_MappingOption  RB-MappingOption
        No value
    rrc.RB_MappingOption_r5  RB-MappingOption-r5
        No value
    rrc.RB_MappingOption_r6  RB-MappingOption-r6
        No value
    rrc.RB_MappingOption_r7  RB-MappingOption-r7
        No value
    rrc.RB_MappingOption_r8  RB-MappingOption-r8
        No value
    rrc.RB_PDCPContextRelocation  RB-PDCPContextRelocation
        No value
    rrc.RB_WithPDCP_Info  RB-WithPDCP-Info
        No value
    rrc.RFC3095_ContextInfo  RFC3095-ContextInfo
        No value
    rrc.RFC3095_Context_List_item  RFC3095-Context-List item
        No value
    rrc.RF_CapabBandFDDComp  RF-CapabBandFDDComp
        Unsigned 32-bit integer
    rrc.RLC_PDU_Size  RLC-PDU-Size
        Unsigned 32-bit integer
    rrc.RLC_SizeInfo  RLC-SizeInfo
        No value
    rrc.RL_AdditionInformation  RL-AdditionInformation
        No value
    rrc.RL_AdditionInformation_SecULFreq  RL-AdditionInformation-SecULFreq
        No value
    rrc.RL_AdditionInformation_r6  RL-AdditionInformation-r6
        No value
    rrc.RL_AdditionInformation_r7  RL-AdditionInformation-r7
        No value
    rrc.RL_AdditionInformation_r8  RL-AdditionInformation-r8
        No value
    rrc.RL_AdditionInformation_r9  RL-AdditionInformation-r9
        No value
    rrc.RL_AdditionInformation_v6b0ext  RL-AdditionInformation-v6b0ext
        No value
    rrc.RL_AdditionInformation_v890ext  RL-AdditionInformation-v890ext
        No value
    rrc.ROHC_PacketSize_r4  ROHC-PacketSize-r4
        Unsigned 32-bit integer
    rrc.ROHC_Profile_r4  ROHC-Profile-r4
        Unsigned 32-bit integer
    rrc.RRCConnectionSetupComplete_r3_add_ext_IEs  RRCConnectionSetupComplete-r3-add-ext-IEs
        No value
    rrc.RRC_MessageSequenceNumber  RRC-MessageSequenceNumber
        Unsigned 32-bit integer
    rrc.RadioBearerSetup_r7_add_ext_IEs  RadioBearerSetup-r7-add-ext-IEs
        No value
    rrc.RadioFrequencyBandTDDext  RadioFrequencyBandTDDext
        Unsigned 32-bit integer
    rrc.Reference_Beta_16QAM  Reference-Beta-16QAM
        No value
    rrc.Reference_Beta_QPSK  Reference-Beta-QPSK
        No value
    rrc.ReplacedPDSCH_CodeInfo  ReplacedPDSCH-CodeInfo
        No value
    rrc.RestrictedTrCH  RestrictedTrCH
        No value
    rrc.RestrictedTrChInfo  RestrictedTrChInfo
        No value
    rrc.SCCPCH_ChannelisationCode  SCCPCH-ChannelisationCode
        Unsigned 32-bit integer
    rrc.SCCPCH_ChannelisationCode_VHCR  SCCPCH-ChannelisationCode-VHCR
        Unsigned 32-bit integer
    rrc.SCCPCH_SystemInformation  SCCPCH-SystemInformation
        No value
    rrc.SCCPCH_SystemInformation_HCR_VHCR_r7  SCCPCH-SystemInformation-HCR-VHCR-r7
        No value
    rrc.SCCPCH_SystemInformation_LCR_r4_ext  SCCPCH-SystemInformation-LCR-r4-ext
        No value
    rrc.SF16Codes  SF16Codes
        Unsigned 32-bit integer
    rrc.SF16Codes2  SF16Codes2
        Unsigned 32-bit integer
    rrc.SF32Codes  SF32Codes
        Unsigned 32-bit integer
    rrc.SF8Codes  SF8Codes
        Unsigned 32-bit integer
    rrc.SIR  SIR
        Unsigned 32-bit integer
    rrc.SIR_MeasurementResults  SIR-MeasurementResults
        No value
    rrc.SIR_TFCS  SIR-TFCS
        Unsigned 32-bit integer
    rrc.SRB_InformationSetup  SRB-InformationSetup
        No value
    rrc.SRB_InformationSetup_r5  SRB-InformationSetup-r5
        No value
    rrc.SRB_InformationSetup_r6  SRB-InformationSetup-r6
        No value
    rrc.SRB_InformationSetup_r7  SRB-InformationSetup-r7
        No value
    rrc.SRB_InformationSetup_r8  SRB-InformationSetup-r8
        No value
    rrc.SRB_SpecificIntegrityProtInfo  SRB-SpecificIntegrityProtInfo
        No value
    rrc.SRNC_RelocationInfo_r6_add_ext_IEs  SRNC-RelocationInfo-r6-add-ext-IEs
        No value
    rrc.SRNC_RelocationInfo_r7_add_ext_IEs  SRNC-RelocationInfo-r7-add-ext-IEs
        No value
    rrc.SRNC_RelocationInfo_v3h0ext_IEs  SRNC-RelocationInfo-v3h0ext-IEs
        No value
    rrc.STARTSingle  STARTSingle
        No value
    rrc.SatData  SatData
        No value
    rrc.Satellite_clock_model  Satellite-clock-model
        No value
    rrc.SatellitesListRelatedData  SatellitesListRelatedData
        No value
    rrc.SchedulingInformationSIB  SchedulingInformationSIB
        No value
    rrc.SchedulingInformationSIBSb  SchedulingInformationSIBSb
        No value
    rrc.SibOFF  SibOFF
        Unsigned 32-bit integer
    rrc.StoredTGP_Sequence  StoredTGP-Sequence
        No value
    rrc.StoredTGP_Sequence_r8  StoredTGP-Sequence-r8
        No value
    rrc.SysInfoType1  SysInfoType1
        No value
    rrc.SysInfoType10  SysInfoType10
        No value
    rrc.SysInfoType11  SysInfoType11
        No value
    rrc.SysInfoType11bis  SysInfoType11bis
        No value
    rrc.SysInfoType12  SysInfoType12
        No value
    rrc.SysInfoType13  SysInfoType13
        No value
    rrc.SysInfoType13_1  SysInfoType13-1
        No value
    rrc.SysInfoType13_2  SysInfoType13-2
        No value
    rrc.SysInfoType13_3  SysInfoType13-3
        No value
    rrc.SysInfoType13_4  SysInfoType13-4
        No value
    rrc.SysInfoType14  SysInfoType14
        No value
    rrc.SysInfoType15  SysInfoType15
        No value
    rrc.SysInfoType15_1  SysInfoType15-1
        No value
    rrc.SysInfoType15_1bis  SysInfoType15-1bis
        No value
    rrc.SysInfoType15_2  SysInfoType15-2
        No value
    rrc.SysInfoType15_2bis  SysInfoType15-2bis
        No value
    rrc.SysInfoType15_2ter  SysInfoType15-2ter
        No value
    rrc.SysInfoType15_3  SysInfoType15-3
        No value
    rrc.SysInfoType15_3bis  SysInfoType15-3bis
        No value
    rrc.SysInfoType15_4  SysInfoType15-4
        No value
    rrc.SysInfoType15_5  SysInfoType15-5
        No value
    rrc.SysInfoType15_6  SysInfoType15-6
        No value
    rrc.SysInfoType15_7  SysInfoType15-7
        No value
    rrc.SysInfoType15_8  SysInfoType15-8
        No value
    rrc.SysInfoType15bis  SysInfoType15bis
        No value
    rrc.SysInfoType16  SysInfoType16
        No value
    rrc.SysInfoType17  SysInfoType17
        No value
    rrc.SysInfoType18  SysInfoType18
        No value
    rrc.SysInfoType19  SysInfoType19
        No value
    rrc.SysInfoType2  SysInfoType2
        No value
    rrc.SysInfoType20  SysInfoType20
        No value
    rrc.SysInfoType3  SysInfoType3
        No value
    rrc.SysInfoType4  SysInfoType4
        No value
    rrc.SysInfoType5  SysInfoType5
        No value
    rrc.SysInfoType5bis  SysInfoType5bis
        No value
    rrc.SysInfoType6  SysInfoType6
        No value
    rrc.SysInfoType7  SysInfoType7
        No value
    rrc.SysInfoType8  SysInfoType8
        No value
    rrc.SysInfoType9  SysInfoType9
        No value
    rrc.SysInfoTypeSB1  SysInfoTypeSB1
        No value
    rrc.SysInfoTypeSB2  SysInfoTypeSB2
        No value
    rrc.SystemInformation_BCH  SystemInformation-BCH
        No value
    rrc.SystemSpecificCapUpdateReq  SystemSpecificCapUpdateReq
        Unsigned 32-bit integer
    rrc.SystemSpecificCapUpdateReq_r5  SystemSpecificCapUpdateReq-r5
        Unsigned 32-bit integer
    rrc.SystemSpecificCapUpdateReq_r8  SystemSpecificCapUpdateReq-r8
        Unsigned 32-bit integer
    rrc.TDD768_PRACH_CCode16  TDD768-PRACH-CCode16
        Unsigned 32-bit integer
    rrc.TDD768_PRACH_CCode32  TDD768-PRACH-CCode32
        Unsigned 32-bit integer
    rrc.TDD_MBSFNTSlotInfo  TDD-MBSFNTSlotInfo
        No value
    rrc.TDD_PRACH_CCode16  TDD-PRACH-CCode16
        Unsigned 32-bit integer
    rrc.TDD_PRACH_CCode8  TDD-PRACH-CCode8
        Unsigned 32-bit integer
    rrc.TDD_PRACH_CCode_LCR_r4  TDD-PRACH-CCode-LCR-r4
        Unsigned 32-bit integer
    rrc.TFCI_Range  TFCI-Range
        No value
    rrc.TFCS_Identity  TFCS-Identity
        No value
    rrc.TFCS_IdentityPlain  TFCS-IdentityPlain
        Unsigned 32-bit integer
    rrc.TFCS_Removal  TFCS-Removal
        No value
    rrc.TFC_SubsetList_item  TFC-SubsetList item
        No value
    rrc.TFC_Value  TFC-Value
        Unsigned 32-bit integer
    rrc.TGP_Sequence  TGP-Sequence
        No value
    rrc.TGP_SequenceShort  TGP-SequenceShort
        No value
    rrc.TGP_Sequence_r8  TGP-Sequence-r8
        No value
    rrc.TPC_Combination_Info  TPC-Combination-Info
        No value
    rrc.TPC_Combination_Info_r9  TPC-Combination-Info-r9
        No value
    rrc.TargetRNC_ToSourceRNC_Container  TargetRNC-ToSourceRNC-Container
        Unsigned 32-bit integer
    rrc.TimeslotISCP  TimeslotISCP
        Unsigned 32-bit integer
    rrc.TimeslotInfo  TimeslotInfo
        No value
    rrc.TimeslotInfo_LCR_r4  TimeslotInfo-LCR-r4
        No value
    rrc.TimeslotNumber  TimeslotNumber
        Unsigned 32-bit integer
    rrc.TimeslotNumber_LCR_r4  TimeslotNumber-LCR-r4
        Unsigned 32-bit integer
    rrc.TimeslotWithISCP  TimeslotWithISCP
        No value
    rrc.ToTargetRNC_Container  ToTargetRNC-Container
        Unsigned 32-bit integer
    rrc.TrafficVolumeEventParam  TrafficVolumeEventParam
        No value
    rrc.TrafficVolumeMeasuredResults  TrafficVolumeMeasuredResults
        No value
    rrc.TransChCriteria  TransChCriteria
        No value
    rrc.TransportBlockSizeIndex  TransportBlockSizeIndex
        Unsigned 32-bit integer
    rrc.TransportChannelIdentity  TransportChannelIdentity
        Unsigned 32-bit integer
    rrc.TransportFormatSet  TransportFormatSet
        Unsigned 32-bit integer
    rrc.UECapabilityInformation_r3_add_ext_IEs  UECapabilityInformation-r3-add-ext-IEs
        No value
    rrc.UE_CapabilityContainer_IEs  UE-CapabilityContainer-IEs
        No value
    rrc.UE_InternalEventParam  UE-InternalEventParam
        Unsigned 32-bit integer
    rrc.UE_Positioning_EventParam  UE-Positioning-EventParam
        No value
    rrc.UE_Positioning_EventParam_r7  UE-Positioning-EventParam-r7
        No value
    rrc.UE_Positioning_GANSS_RealTimeIntegrity_item  UE-Positioning-GANSS-RealTimeIntegrity item
        No value
    rrc.UE_Positioning_GANSS_TimeModel  UE-Positioning-GANSS-TimeModel
        No value
    rrc.UE_Positioning_IPDL_Parameters_TDD_r4_ext  UE-Positioning-IPDL-Parameters-TDD-r4-ext
        No value
    rrc.UE_Positioning_OTDOA_NeighbourCellInfo  UE-Positioning-OTDOA-NeighbourCellInfo
        No value
    rrc.UE_Positioning_OTDOA_NeighbourCellInfo_UEB  UE-Positioning-OTDOA-NeighbourCellInfo-UEB
        No value
    rrc.UE_Positioning_OTDOA_NeighbourCellInfo_UEB_ext  UE-Positioning-OTDOA-NeighbourCellInfo-UEB-ext
        No value
    rrc.UE_Positioning_OTDOA_NeighbourCellInfo_r4  UE-Positioning-OTDOA-NeighbourCellInfo-r4
        No value
    rrc.UE_Positioning_OTDOA_NeighbourCellInfo_r7  UE-Positioning-OTDOA-NeighbourCellInfo-r7
        No value
    rrc.UE_RX_TX_ReportEntry  UE-RX-TX-ReportEntry
        No value
    rrc.UE_RadioAccessCapabBandFDD  UE-RadioAccessCapabBandFDD
        No value
    rrc.UE_RadioAccessCapabBandFDD2  UE-RadioAccessCapabBandFDD2
        No value
    rrc.UE_RadioAccessCapabBandFDD3  UE-RadioAccessCapabBandFDD3
        No value
    rrc.UE_RadioAccessCapabBandFDD_ext  UE-RadioAccessCapabBandFDD-ext
        No value
    rrc.UE_RadioAccessCapabilityInfo  UE-RadioAccessCapabilityInfo
        No value
    rrc.UE_TransmittedPower  UE-TransmittedPower
        Unsigned 32-bit integer
    rrc.UL_AddReconfTransChInformation  UL-AddReconfTransChInformation
        No value
    rrc.UL_AddReconfTransChInformation_r6  UL-AddReconfTransChInformation-r6
        Unsigned 32-bit integer
    rrc.UL_AddReconfTransChInformation_r7  UL-AddReconfTransChInformation-r7
        Unsigned 32-bit integer
    rrc.UL_AddReconfTransChInformation_r8  UL-AddReconfTransChInformation-r8
        Unsigned 32-bit integer
    rrc.UL_CCCH_Message  UL-CCCH-Message
        No value
    rrc.UL_CCTrCH  UL-CCTrCH
        No value
    rrc.UL_CCTrCH_r4  UL-CCTrCH-r4
        No value
    rrc.UL_CCTrCH_r7  UL-CCTrCH-r7
        No value
    rrc.UL_DCCH_Message  UL-DCCH-Message
        No value
    rrc.UL_LogicalChannelMapping  UL-LogicalChannelMapping
        No value
    rrc.UL_LogicalChannelMapping_r6  UL-LogicalChannelMapping-r6
        No value
    rrc.UL_LogicalChannelMapping_r8  UL-LogicalChannelMapping-r8
        No value
    rrc.UL_SHCCH_Message  UL-SHCCH-Message
        No value
    rrc.UL_TS_ChannelisationCode  UL-TS-ChannelisationCode
        Unsigned 32-bit integer
    rrc.UL_TS_ChannelisationCodeList_r7_item  UL-TS-ChannelisationCodeList-r7 item
        No value
    rrc.UL_TS_ChannelisationCode_VHCR  UL-TS-ChannelisationCode-VHCR
        Unsigned 32-bit integer
    rrc.UL_TrCH_Identity  UL-TrCH-Identity
        Unsigned 32-bit integer
    rrc.UL_TransportChannelIdentity  UL-TransportChannelIdentity
        No value
    rrc.UL_TransportChannelIdentity_r6  UL-TransportChannelIdentity-r6
        Unsigned 32-bit integer
    rrc.URAUpdate_r3_add_ext_IEs  URAUpdate-r3-add-ext-IEs
        No value
    rrc.URA_Identity  URA-Identity
        Byte array
    rrc.USCH_TransportChannelsInfo_item  USCH-TransportChannelsInfo item
        No value
    rrc.UTRAN_FDD_Frequency  UTRAN-FDD-Frequency
        No value
    rrc.UTRAN_TDD_Frequency  UTRAN-TDD-Frequency
        No value
    rrc.UplinkAdditionalTimeslots  UplinkAdditionalTimeslots
        No value
    rrc.UplinkAdditionalTimeslots_LCR_r4  UplinkAdditionalTimeslots-LCR-r4
        No value
    rrc.UplinkAdditionalTimeslots_LCR_r7  UplinkAdditionalTimeslots-LCR-r7
        No value
    rrc.UplinkAdditionalTimeslots_VHCR  UplinkAdditionalTimeslots-VHCR
        No value
    rrc.W  W
        Unsigned 32-bit integer
    rrc.a0  a0
        Byte array
        BIT_STRING_SIZE_32
    rrc.a1  a1
        Byte array
        BIT_STRING_SIZE_24
    rrc.a5-1  a5-1
        Boolean
    rrc.a5-2  a5-2
        Boolean
    rrc.a5-3  a5-3
        Boolean
    rrc.a5-4  a5-4
        Boolean
    rrc.a5-5  a5-5
        Boolean
    rrc.a5-6  a5-6
        Boolean
    rrc.a5-7  a5-7
        Boolean
    rrc.a_Sqrt  a-Sqrt
        Byte array
        BIT_STRING_SIZE_24
    rrc.a_one_utc  a-one-utc
        Byte array
        BIT_STRING_SIZE_24
    rrc.a_sqrt_nav  a-sqrt-nav
        Byte array
        BIT_STRING_SIZE_32
    rrc.a_zero_utc  a-zero-utc
        Byte array
        BIT_STRING_SIZE_32
    rrc.absent  absent
        No value
    rrc.ac_To_ASC_MappingTable  ac-To-ASC-MappingTable
        Unsigned 32-bit integer
    rrc.acceptanceOfChangeOfCapability  acceptanceOfChangeOfCapability
        Unsigned 32-bit integer
    rrc.accessClassBarredList  accessClassBarredList
        Unsigned 32-bit integer
    rrc.accessInfoPeriodCoefficient  accessInfoPeriodCoefficient
        Unsigned 32-bit integer
        INTEGER_0_3
    rrc.accessServiceClass_FDD  accessServiceClass-FDD
        No value
    rrc.accessServiceClass_TDD  accessServiceClass-TDD
        No value
    rrc.accessServiceClass_TDD_LCR  accessServiceClass-TDD-LCR
        No value
        AccessServiceClass_TDD_LCR_r4
    rrc.accessStratumReleaseIndicator  accessStratumReleaseIndicator
        Unsigned 32-bit integer
    rrc.accessprobabilityFactor_Connected  accessprobabilityFactor-Connected
        Unsigned 32-bit integer
        MBMS_AccessProbabilityFactor
    rrc.accessprobabilityFactor_Idle  accessprobabilityFactor-Idle
        Unsigned 32-bit integer
        MBMS_AccessProbabilityFactor
    rrc.accuracy256  accuracy256
        Unsigned 32-bit integer
        INTEGER_0_150
    rrc.accuracy2560  accuracy2560
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.accuracy40  accuracy40
        Unsigned 32-bit integer
        INTEGER_0_960
    rrc.ack_NACK_repetition_factor  ack-NACK-repetition-factor
        Unsigned 32-bit integer
        ACK_NACK_repetitionFactor
    rrc.ack_nack_support_on_HS_DPCCH  ack-nack-support-on-HS-DPCCH
        Boolean
        BOOLEAN
    rrc.action  action
        Unsigned 32-bit integer
    rrc.activate  activate
        No value
    rrc.activationTime  activationTime
        Unsigned 32-bit integer
    rrc.activationTimeForDPCH  activationTimeForDPCH
        Unsigned 32-bit integer
        ActivationTime
    rrc.activationTimeForTFCSubset  activationTimeForTFCSubset
        Unsigned 32-bit integer
        ActivationTime
    rrc.activationTimeOffset  activationTimeOffset
        Unsigned 32-bit integer
    rrc.activationTimeSFN  activationTimeSFN
        Unsigned 32-bit integer
        INTEGER_0_4095
    rrc.active  active
        No value
    rrc.activeSetReportingQuantities  activeSetReportingQuantities
        No value
        CellReportingQuantities
    rrc.activeSetUdpate_v7f0ext  activeSetUdpate-v7f0ext
        No value
        ActiveSetUpdate_v7f0ext_IEs
    rrc.activeSetUdpate_v7g0ext  activeSetUdpate-v7g0ext
        No value
        ActiveSetUpdate_v7g0ext_IEs
    rrc.activeSetUpdate  activeSetUpdate
        Unsigned 32-bit integer
    rrc.activeSetUpdateComplete  activeSetUpdateComplete
        No value
    rrc.activeSetUpdateComplete_r3_add_ext  activeSetUpdateComplete-r3-add-ext
        Byte array
        BIT_STRING
    rrc.activeSetUpdateFailure  activeSetUpdateFailure
        No value
    rrc.activeSetUpdateFailure_r3_add_ext  activeSetUpdateFailure-r3-add-ext
        Byte array
        BIT_STRING
    rrc.activeSetUpdate_r3  activeSetUpdate-r3
        No value
        ActiveSetUpdate_r3_IEs
    rrc.activeSetUpdate_r3_add_ext  activeSetUpdate-r3-add-ext
        Byte array
        BIT_STRING
    rrc.activeSetUpdate_r6  activeSetUpdate-r6
        No value
        ActiveSetUpdate_r6_IEs
    rrc.activeSetUpdate_r6_add_ext  activeSetUpdate-r6-add-ext
        Byte array
        BIT_STRING
    rrc.activeSetUpdate_r7  activeSetUpdate-r7
        No value
        ActiveSetUpdate_r7_IEs
    rrc.activeSetUpdate_r7_add_ext  activeSetUpdate-r7-add-ext
        Byte array
        BIT_STRING
    rrc.activeSetUpdate_r8  activeSetUpdate-r8
        No value
        ActiveSetUpdate_r8_IEs
    rrc.activeSetUpdate_r8_add_ext  activeSetUpdate-r8-add-ext
        Byte array
        BIT_STRING
    rrc.activeSetUpdate_r9  activeSetUpdate-r9
        No value
        ActiveSetUpdate_r9_IEs
    rrc.activeSetUpdate_r9_add_ext  activeSetUpdate-r9-add-ext
        Byte array
        BIT_STRING
    rrc.activeSetUpdate_v4b0ext  activeSetUpdate-v4b0ext
        No value
        ActiveSetUpdate_v4b0ext_IEs
    rrc.activeSetUpdate_v590ext  activeSetUpdate-v590ext
        No value
        ActiveSetUpdate_v590ext_IEs
    rrc.activeSetUpdate_v690ext  activeSetUpdate-v690ext
        No value
        ActiveSetUpdate_v690ext_IEs
    rrc.activeSetUpdate_v6b0ext  activeSetUpdate-v6b0ext
        No value
        ActiveSetUpdate_v6b0ext_IEs
    rrc.activeSetUpdate_v780ext  activeSetUpdate-v780ext
        No value
        ActiveSetUpdate_v780ext_IEs
    rrc.activeSetUpdate_v7g0ext  activeSetUpdate-v7g0ext
        No value
        ActiveSetUpdate_v7g0ext_IEs
    rrc.activeSetUpdate_v890ext  activeSetUpdate-v890ext
        No value
        ActiveSetUpdate_v890ext_IEs
    rrc.addIntercept  addIntercept
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.addOrReconfMAC_dFlow  addOrReconfMAC-dFlow
        No value
    rrc.addReconf_MAC_d_FlowList  addReconf-MAC-d-FlowList
        Unsigned 32-bit integer
        E_DCH_AddReconf_MAC_d_FlowList
    rrc.addition  addition
        No value
        TFCS_ReconfAdd
    rrc.additionalAssistanceDataReq  additionalAssistanceDataReq
        Boolean
        BOOLEAN
    rrc.additionalAssistanceDataRequest  additionalAssistanceDataRequest
        Boolean
        BOOLEAN
    rrc.additionalMeasuredResults  additionalMeasuredResults
        Unsigned 32-bit integer
        MeasuredResultsList
    rrc.additionalMeasuredResultsOnSecUlFreq  additionalMeasuredResultsOnSecUlFreq
        Unsigned 32-bit integer
        MeasuredResultsListOnSecUlFreq
    rrc.additionalMeasuredResults_LCR  additionalMeasuredResults-LCR
        Unsigned 32-bit integer
        MeasuredResultsList_LCR_r4_ext
    rrc.additionalMeasurementID_List  additionalMeasurementID-List
        Unsigned 32-bit integer
    rrc.additionalMeasurementList  additionalMeasurementList
        Unsigned 32-bit integer
        AdditionalMeasurementID_List
    rrc.additionalMemorySizesForMIMO  additionalMemorySizesForMIMO
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxHProcesses_OF_HARQMemorySize
    rrc.additionalOrReplacedPosMeasEvent  additionalOrReplacedPosMeasEvent
        No value
    rrc.additionalPRACH_TF_and_TFCS_CCCH_IEs  additionalPRACH-TF-and-TFCS-CCCH-IEs
        No value
    rrc.additionalPRACH_TF_and_TFCS_CCCH_List  additionalPRACH-TF-and-TFCS-CCCH-List
        Unsigned 32-bit integer
    rrc.additionalSS_TPC_Symbols  additionalSS-TPC-Symbols
        Unsigned 32-bit integer
        INTEGER_1_15
    rrc.additionalTimeslots  additionalTimeslots
        Unsigned 32-bit integer
    rrc.additional_E_DCH_TransmitBackoff  additional-E-DCH-TransmitBackoff
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.adjacentFrequencyIndex  adjacentFrequencyIndex
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.adjacentFrequencyMeasurements  adjacentFrequencyMeasurements
        Unsigned 32-bit integer
    rrc.adr  adr
        Unsigned 32-bit integer
        INTEGER_0_33554431
    rrc.af0  af0
        Byte array
        BIT_STRING_SIZE_11
    rrc.af1  af1
        Byte array
        BIT_STRING_SIZE_11
    rrc.af2  af2
        Byte array
        BIT_STRING_SIZE_8
    rrc.aich_Info  aich-Info
        No value
    rrc.aich_PowerOffset  aich-PowerOffset
        Signed 32-bit integer
    rrc.aich_TransmissionTiming  aich-TransmissionTiming
        Unsigned 32-bit integer
    rrc.alert  alert
        Boolean
        BOOLEAN
    rrc.algorithm1  algorithm1
        Unsigned 32-bit integer
        TPC_StepSizeFDD
    rrc.algorithm2  algorithm2
        No value
    rrc.algorithmSpecificInfo  algorithmSpecificInfo
        Unsigned 32-bit integer
    rrc.all  all
        No value
    rrc.allActivePlusDetectedSet  allActivePlusDetectedSet
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType3
    rrc.allActivePlusMonitoredAndOrDetectedSet  allActivePlusMonitoredAndOrDetectedSet
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType3
    rrc.allActiveplusMonitoredSet  allActiveplusMonitoredSet
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType3
    rrc.allSizes  allSizes
        No value
    rrc.allVirtualActSetplusMonitoredSetNonUsedFreq  allVirtualActSetplusMonitoredSetNonUsedFreq
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType3
    rrc.allocationActivationTime  allocationActivationTime
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.allocationConfirmation  allocationConfirmation
        Unsigned 32-bit integer
    rrc.allocationDuration  allocationDuration
        Unsigned 32-bit integer
        INTEGER_1_256
    rrc.allowedTFC_List  allowedTFC-List
        Unsigned 32-bit integer
    rrc.allowedTFIList  allowedTFIList
        Unsigned 32-bit integer
        AllowedTFI_List
    rrc.allowedTFI_List  allowedTFI-List
        Unsigned 32-bit integer
    rrc.alm_ecefSBASAlmanac  alm-ecefSBASAlmanac
        No value
        ALM_ECEFsbasAlmanacSet
    rrc.alm_keplerianGLONASS  alm-keplerianGLONASS
        No value
        ALM_GlonassAlmanacSet
    rrc.alm_keplerianMidiAlmanac  alm-keplerianMidiAlmanac
        No value
        ALM_MidiAlmanacSet
    rrc.alm_keplerianNAVAlmanac  alm-keplerianNAVAlmanac
        No value
        ALM_NAVKeplerianSet
    rrc.alm_keplerianParameters  alm-keplerianParameters
        No value
    rrc.alm_keplerianReducedAlmanac  alm-keplerianReducedAlmanac
        No value
        ALM_ReducedKeplerianSet
    rrc.almanacModelID  almanacModelID
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.almanacRequest  almanacRequest
        Boolean
        BOOLEAN
    rrc.almanacSatInfoList  almanacSatInfoList
        Unsigned 32-bit integer
    rrc.alpha  alpha
        Unsigned 32-bit integer
    rrc.alpha0  alpha0
        Byte array
        BIT_STRING_SIZE_8
    rrc.alpha1  alpha1
        Byte array
        BIT_STRING_SIZE_8
    rrc.alpha2  alpha2
        Byte array
        BIT_STRING_SIZE_8
    rrc.alpha3  alpha3
        Byte array
        BIT_STRING_SIZE_8
    rrc.alpha_beta_parameters  alpha-beta-parameters
        No value
        UE_Positioning_GPS_IonosphericModel
    rrc.alpha_one_ionos  alpha-one-ionos
        Byte array
        BIT_STRING_SIZE_12
    rrc.alpha_two_ionos  alpha-two-ionos
        Byte array
        BIT_STRING_SIZE_12
    rrc.alpha_zero_ionos  alpha-zero-ionos
        Byte array
        BIT_STRING_SIZE_12
    rrc.altE_bitInterpretation  altE-bitInterpretation
        Unsigned 32-bit integer
    rrc.altitude  altitude
        Unsigned 32-bit integer
        INTEGER_0_32767
    rrc.altitudeDirection  altitudeDirection
        Unsigned 32-bit integer
    rrc.am_RLC_ErrorIndicationRb2_3or4  am-RLC-ErrorIndicationRb2-3or4
        Boolean
        BOOLEAN
    rrc.am_RLC_ErrorIndicationRb5orAbove  am-RLC-ErrorIndicationRb5orAbove
        Boolean
        BOOLEAN
    rrc.ansi_41  ansi-41
        Byte array
        NAS_SystemInformationANSI_41
    rrc.ansi_41_GlobalServiceRedirectInfo  ansi-41-GlobalServiceRedirectInfo
        Byte array
    rrc.ansi_41_IDNNS  ansi-41-IDNNS
        Byte array
    rrc.ansi_41_PrivateNeighbourListInfo  ansi-41-PrivateNeighbourListInfo
        Byte array
    rrc.ansi_41_RAB_Identity  ansi-41-RAB-Identity
        Byte array
        BIT_STRING_SIZE_8
    rrc.ansi_41_RAND_Information  ansi-41-RAND-Information
        Byte array
    rrc.ansi_41_UserZoneID_Information  ansi-41-UserZoneID-Information
        Byte array
    rrc.antiSpoof  antiSpoof
        Boolean
        BOOLEAN
    rrc.aodo  aodo
        Byte array
        BIT_STRING_SIZE_5
    rrc.ap_AICH_ChannelisationCode  ap-AICH-ChannelisationCode
        Unsigned 32-bit integer
    rrc.ap_PreambleScramblingCode  ap-PreambleScramblingCode
        Unsigned 32-bit integer
    rrc.ap_Signature  ap-Signature
        Unsigned 32-bit integer
    rrc.appliedTA  appliedTA
        Unsigned 32-bit integer
        UL_TimingAdvance
    rrc.aquisitionAssistanceRequest  aquisitionAssistanceRequest
        Boolean
        BOOLEAN
    rrc.arfcn_Spacing  arfcn-Spacing
        Unsigned 32-bit integer
        INTEGER_1_8
    rrc.asn1_ViolationOrEncodingError  asn1-ViolationOrEncodingError
        No value
    rrc.assignedSubChannelNumber  assignedSubChannelNumber
        Byte array
    rrc.assistanceDataDelivery  assistanceDataDelivery
        Unsigned 32-bit integer
    rrc.assistanceDataDelivery_r3  assistanceDataDelivery-r3
        No value
        AssistanceDataDelivery_r3_IEs
    rrc.assistanceDataDelivery_r3_add_ext  assistanceDataDelivery-r3-add-ext
        Byte array
        BIT_STRING
    rrc.assistanceDataDelivery_v3a0ext  assistanceDataDelivery-v3a0ext
        No value
    rrc.assistanceDataDelivery_v4b0ext  assistanceDataDelivery-v4b0ext
        No value
        AssistanceDataDelivery_v4b0ext_IEs
    rrc.assistanceDataDelivery_v770ext  assistanceDataDelivery-v770ext
        No value
        AssistanceDataDelivery_v770ext_IEs
    rrc.assistanceDataDelivery_v860ext  assistanceDataDelivery-v860ext
        No value
        AssistanceDataDelivery_v860ext_IEs
    rrc.assistanceDataDelivery_v920ext  assistanceDataDelivery-v920ext
        No value
        AssistanceDataDelivery_v920ext_IEs
    rrc.availableAP_SignatureList  availableAP-SignatureList
        Unsigned 32-bit integer
    rrc.availableAP_Signature_VCAMList  availableAP-Signature-VCAMList
        Unsigned 32-bit integer
    rrc.availableAP_SubchannelList  availableAP-SubchannelList
        Unsigned 32-bit integer
    rrc.availableSF  availableSF
        Unsigned 32-bit integer
        SF_PRACH
    rrc.availableSYNC_UlCodesIndics  availableSYNC-UlCodesIndics
        Byte array
    rrc.availableSignatureEndIndex  availableSignatureEndIndex
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.availableSignatureStartIndex  availableSignatureStartIndex
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.availableSignatures  availableSignatures
        Byte array
    rrc.availableSubChannelNumbers  availableSubChannelNumbers
        Byte array
    rrc.averageRLC_BufferPayload  averageRLC-BufferPayload
        Unsigned 32-bit integer
        TimeInterval
    rrc.azimuth  azimuth
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.azimuthAndElevation  azimuthAndElevation
        No value
    rrc.azimuthandElevation  azimuthandElevation
        No value
    rrc.b0  b0
        Boolean
    rrc.b1  b1
        Byte array
        BIT_STRING_SIZE_11
    rrc.b2  b2
        Byte array
        BIT_STRING_SIZE_10
    rrc.b3  b3
        Boolean
    rrc.backoffControlParams  backoffControlParams
        No value
    rrc.badCRC  badCRC
        Unsigned 32-bit integer
        INTEGER_1_512
    rrc.bad_ganss_satId  bad-ganss-satId
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.bad_ganss_signalId  bad-ganss-signalId
        Byte array
        BIT_STRING_SIZE_8
    rrc.bandIndicator  bandIndicator
        Unsigned 32-bit integer
    rrc.band_Class  band-Class
        Byte array
        BIT_STRING_SIZE_5
    rrc.barred  barred
        No value
    rrc.bcc  bcc
        Unsigned 32-bit integer
    rrc.bcchSpecific_H_RNTI  bcchSpecific-H-RNTI
        Byte array
        H_RNTI
    rrc.bcch_ARFCN  bcch-ARFCN
        Unsigned 32-bit integer
    rrc.bcch_ModificationInfo  bcch-ModificationInfo
        No value
    rrc.bcch_ModificationTime  bcch-ModificationTime
        Unsigned 32-bit integer
    rrc.beaconPLEst  beaconPLEst
        Unsigned 32-bit integer
        BEACON_PL_Est
    rrc.bearing  bearing
        Unsigned 32-bit integer
        INTEGER_0_359
    rrc.beta0  beta0
        Byte array
        BIT_STRING_SIZE_8
    rrc.beta1  beta1
        Byte array
        BIT_STRING_SIZE_8
    rrc.beta2  beta2
        Byte array
        BIT_STRING_SIZE_8
    rrc.beta3  beta3
        Byte array
        BIT_STRING_SIZE_8
    rrc.beta_Ed_Gain_E_AGCH_Table_Selection  beta-Ed-Gain-E-AGCH-Table-Selection
        Unsigned 32-bit integer
        INTEGER_0_1
    rrc.bitMode  bitMode
        Unsigned 32-bit integer
        BitModeRLC_SizeInfo
    rrc.bitModeRLC_SizeInfo  bitModeRLC-SizeInfo
        Unsigned 32-bit integer
    rrc.bitmap  bitmap
        Byte array
    rrc.blerMeasurementResultsList  blerMeasurementResultsList
        Unsigned 32-bit integer
        BLER_MeasurementResultsList
    rrc.bler_QualityValue  bler-QualityValue
        Signed 32-bit integer
    rrc.bler_dl_TransChIdList  bler-dl-TransChIdList
        Unsigned 32-bit integer
        BLER_TransChIdList
    rrc.bler_target  bler-target
        Signed 32-bit integer
    rrc.broadcast_UL_OL_PC_info  broadcast-UL-OL-PC-info
        No value
    rrc.bsic  bsic
        No value
    rrc.bsicReported  bsicReported
        Unsigned 32-bit integer
    rrc.bsic_VerificationRequired  bsic-VerificationRequired
        Unsigned 32-bit integer
    rrc.burstFreq  burstFreq
        Unsigned 32-bit integer
        INTEGER_1_16
    rrc.burstLength  burstLength
        Unsigned 32-bit integer
        INTEGER_10_25
    rrc.burstModeParameters  burstModeParameters
        No value
    rrc.burstStart  burstStart
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.burstType  burstType
        Unsigned 32-bit integer
    rrc.burst_Type  burst-Type
        Unsigned 32-bit integer
        T_burst_Type
    rrc.cBS_DRX_Level1Information_extension  cBS-DRX-Level1Information-extension
        Unsigned 32-bit integer
        CBS_DRX_Level1Information_extension_r6
    rrc.cSDomainSpecificAccessRestriction  cSDomainSpecificAccessRestriction
        Unsigned 32-bit integer
        DomainSpecificAccessRestriction_v670ext
    rrc.cSGFrequencyInfoEUTRA  cSGFrequencyInfoEUTRA
        Unsigned 32-bit integer
        EARFCN
    rrc.cSGFrequencyInfoUTRA  cSGFrequencyInfoUTRA
        No value
        FrequencyInfo
    rrc.cSGInterFreqCellInfoList  cSGInterFreqCellInfoList
        Unsigned 32-bit integer
    rrc.cSGInterFreqCellInfoListperFreq  cSGInterFreqCellInfoListperFreq
        Unsigned 32-bit integer
        CSGCellInfoList
    rrc.cSGIntraFreqCellInfoList  cSGIntraFreqCellInfoList
        Unsigned 32-bit integer
    rrc.cSGProximityIndication  cSGProximityIndication
        No value
    rrc.cSGproximityInd  cSGproximityInd
        Unsigned 32-bit integer
    rrc.cSurNzero  cSurNzero
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.c_N0  c-N0
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.c_RNTI  c-RNTI
        Byte array
    rrc.c_ic  c-ic
        Byte array
        BIT_STRING_SIZE_16
    rrc.c_ic_nav  c-ic-nav
        Byte array
        BIT_STRING_SIZE_16
    rrc.c_is  c-is
        Byte array
        BIT_STRING_SIZE_16
    rrc.c_is_nav  c-is-nav
        Byte array
        BIT_STRING_SIZE_16
    rrc.c_rc  c-rc
        Byte array
        BIT_STRING_SIZE_16
    rrc.c_rc_nav  c-rc-nav
        Byte array
        BIT_STRING_SIZE_16
    rrc.c_rs  c-rs
        Byte array
        BIT_STRING_SIZE_16
    rrc.c_rs_nav  c-rs-nav
        Byte array
        BIT_STRING_SIZE_16
    rrc.c_uc  c-uc
        Byte array
        BIT_STRING_SIZE_16
    rrc.c_uc_nav  c-uc-nav
        Byte array
        BIT_STRING_SIZE_16
    rrc.c_us  c-us
        Byte array
        BIT_STRING_SIZE_16
    rrc.c_us_nav  c-us-nav
        Byte array
        BIT_STRING_SIZE_16
    rrc.calculationTimeForCiphering  calculationTimeForCiphering
        No value
    rrc.capabilityChangeIndicator  capabilityChangeIndicator
        Unsigned 32-bit integer
    rrc.capabilityUpdateRequirement  capabilityUpdateRequirement
        No value
    rrc.capabilityUpdateRequirement_r4Ext  capabilityUpdateRequirement-r4Ext
        No value
        CapabilityUpdateRequirement_r4_ext
    rrc.capabilityUpdateRequirement_r4_ext  capabilityUpdateRequirement-r4-ext
        No value
    rrc.carrierQualityIndication  carrierQualityIndication
        Byte array
        BIT_STRING_SIZE_2
    rrc.cbs_DRX_Level1Information  cbs-DRX-Level1Information
        No value
    rrc.cbs_FrameOffset  cbs-FrameOffset
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.ccTrCH_PowerControlInfo  ccTrCH-PowerControlInfo
        No value
    rrc.ccch_MappingInfo  ccch-MappingInfo
        No value
        CommonRBMappingInfo
    rrc.ccch_transmission_Info  ccch-transmission-Info
        No value
    rrc.cd_AccessSlotSubchannelList  cd-AccessSlotSubchannelList
        Unsigned 32-bit integer
    rrc.cd_CA_ICH_ChannelisationCode  cd-CA-ICH-ChannelisationCode
        Unsigned 32-bit integer
    rrc.cd_PreambleScramblingCode  cd-PreambleScramblingCode
        Unsigned 32-bit integer
    rrc.cd_SignatureCodeList  cd-SignatureCodeList
        Unsigned 32-bit integer
    rrc.cdma2000  cdma2000
        No value
    rrc.cdma2000_MessageList  cdma2000-MessageList
        Unsigned 32-bit integer
    rrc.cdma2000_UMTS_Frequency_List  cdma2000-UMTS-Frequency-List
        Unsigned 32-bit integer
    rrc.cdma_Freq  cdma-Freq
        Byte array
        BIT_STRING_SIZE_11
    rrc.cellAccessRestriction  cellAccessRestriction
        No value
    rrc.cellAndChannelIdentity  cellAndChannelIdentity
        No value
    rrc.cellBarred  cellBarred
        Unsigned 32-bit integer
    rrc.cellChangeOrderFromUTRAN  cellChangeOrderFromUTRAN
        Unsigned 32-bit integer
    rrc.cellChangeOrderFromUTRANFailure  cellChangeOrderFromUTRANFailure
        Unsigned 32-bit integer
    rrc.cellChangeOrderFromUTRANFailure_r3  cellChangeOrderFromUTRANFailure-r3
        No value
        CellChangeOrderFromUTRANFailure_r3_IEs
    rrc.cellChangeOrderFromUTRANFailure_r3_add_ext  cellChangeOrderFromUTRANFailure-r3-add-ext
        Byte array
        BIT_STRING
    rrc.cellChangeOrderFromUTRAN_IEs  cellChangeOrderFromUTRAN-IEs
        No value
        CellChangeOrderFromUTRAN_r3_IEs
    rrc.cellChangeOrderFromUTRAN_r3_add_ext  cellChangeOrderFromUTRAN-r3-add-ext
        Byte array
        BIT_STRING
    rrc.cellChangeOrderFromUTRAN_v590ext  cellChangeOrderFromUTRAN-v590ext
        No value
        CellChangeOrderFromUTRAN_v590ext_IEs
    rrc.cellDCHMeasOccasionInfo_TDD128  cellDCHMeasOccasionInfo-TDD128
        No value
        CellDCHMeasOccasionInfo_TDD128_r9
    rrc.cellDCHMeasOccasionSequenceList  cellDCHMeasOccasionSequenceList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxMeasOccasionPattern_OF_CellDCHMeasOccasionPattern_LCR
    rrc.cellGroupIdentity  cellGroupIdentity
        Byte array
        MBMS_CellGroupIdentity_r6
    rrc.cellIdentity  cellIdentity
        Byte array
    rrc.cellIdentity_reportingIndicator  cellIdentity-reportingIndicator
        Boolean
        BOOLEAN
    rrc.cellIndividualOffset  cellIndividualOffset
        Signed 32-bit integer
    rrc.cellInfo  cellInfo
        No value
    rrc.cellInfo_LCR_r8  cellInfo-LCR-r8
        No value
        CellInfo_LCR_r8_ext
    rrc.cellMeasurementEventResults  cellMeasurementEventResults
        Unsigned 32-bit integer
    rrc.cellMeasurementEventResultsOnSecUlFreq  cellMeasurementEventResultsOnSecUlFreq
        Unsigned 32-bit integer
    rrc.cellParameters  cellParameters
        Unsigned 32-bit integer
        CellParametersID
    rrc.cellParametersID  cellParametersID
        Unsigned 32-bit integer
    rrc.cellPosition  cellPosition
        Unsigned 32-bit integer
        ReferenceCellPosition
    rrc.cellReservationExtension  cellReservationExtension
        Unsigned 32-bit integer
        ReservedIndicator
    rrc.cellReservedForCSG  cellReservedForCSG
        Unsigned 32-bit integer
    rrc.cellReservedForOperatorUse  cellReservedForOperatorUse
        Unsigned 32-bit integer
        ReservedIndicator
    rrc.cellSelectQualityMeasure  cellSelectQualityMeasure
        Unsigned 32-bit integer
    rrc.cellSelectReselectInfo  cellSelectReselectInfo
        No value
        CellSelectReselectInfoSIB_3_4
    rrc.cellSelectReselectInfoPCHFACH_v5b0ext  cellSelectReselectInfoPCHFACH-v5b0ext
        No value
    rrc.cellSelectReselectInfoTreselectionScaling_v5c0ext  cellSelectReselectInfoTreselectionScaling-v5c0ext
        No value
    rrc.cellSelectReselectInfo_v590ext  cellSelectReselectInfo-v590ext
        No value
    rrc.cellSelectionReselectionInfo  cellSelectionReselectionInfo
        No value
        CellSelectReselectInfoMC_RSCP
    rrc.cellSynchronisationInfo  cellSynchronisationInfo
        No value
    rrc.cellSynchronisationInfoReportingIndicator  cellSynchronisationInfoReportingIndicator
        Boolean
        BOOLEAN
    rrc.cellToReportList  cellToReportList
        Unsigned 32-bit integer
    rrc.cellUpdate  cellUpdate
        No value
    rrc.cellUpdateCause  cellUpdateCause
        Unsigned 32-bit integer
    rrc.cellUpdateCause_ext  cellUpdateCause-ext
        Unsigned 32-bit integer
    rrc.cellUpdateConfirm  cellUpdateConfirm
        Unsigned 32-bit integer
    rrc.cellUpdateConfirm_CCCH_r3_add_ext  cellUpdateConfirm-CCCH-r3-add-ext
        Byte array
        BIT_STRING
    rrc.cellUpdateConfirm_CCCH_r4_add_ext  cellUpdateConfirm-CCCH-r4-add-ext
        Byte array
        BIT_STRING
    rrc.cellUpdateConfirm_CCCH_r5_add_ext  cellUpdateConfirm-CCCH-r5-add-ext
        Byte array
        BIT_STRING
    rrc.cellUpdateConfirm_r3  cellUpdateConfirm-r3
        No value
        CellUpdateConfirm_r3_IEs
    rrc.cellUpdateConfirm_r3_add_ext  cellUpdateConfirm-r3-add-ext
        Byte array
        BIT_STRING
    rrc.cellUpdateConfirm_r4  cellUpdateConfirm-r4
        No value
        CellUpdateConfirm_r4_IEs
    rrc.cellUpdateConfirm_r4_add_ext  cellUpdateConfirm-r4-add-ext
        Byte array
        BIT_STRING
    rrc.cellUpdateConfirm_r5  cellUpdateConfirm-r5
        No value
        CellUpdateConfirm_r5_IEs
    rrc.cellUpdateConfirm_r5_add_ext  cellUpdateConfirm-r5-add-ext
        Byte array
        BIT_STRING
    rrc.cellUpdateConfirm_r6  cellUpdateConfirm-r6
        No value
        CellUpdateConfirm_r6_IEs
    rrc.cellUpdateConfirm_r6_add_ext  cellUpdateConfirm-r6-add-ext
        Byte array
        BIT_STRING
    rrc.cellUpdateConfirm_r7  cellUpdateConfirm-r7
        No value
        CellUpdateConfirm_r7_IEs
    rrc.cellUpdateConfirm_r7_add_ext  cellUpdateConfirm-r7-add-ext
        Byte array
    rrc.cellUpdateConfirm_r8  cellUpdateConfirm-r8
        No value
        CellUpdateConfirm_r8_IEs
    rrc.cellUpdateConfirm_r8_add_ext  cellUpdateConfirm-r8-add-ext
        Byte array
        BIT_STRING
    rrc.cellUpdateConfirm_r9  cellUpdateConfirm-r9
        No value
        CellUpdateConfirm_r9_IEs
    rrc.cellUpdateConfirm_r9_add_ext  cellUpdateConfirm-r9-add-ext
        Byte array
        BIT_STRING
    rrc.cellUpdateConfirm_v3a0ext  cellUpdateConfirm-v3a0ext
        No value
    rrc.cellUpdateConfirm_v4b0ext  cellUpdateConfirm-v4b0ext
        No value
        CellUpdateConfirm_v4b0ext_IEs
    rrc.cellUpdateConfirm_v590ext  cellUpdateConfirm-v590ext
        No value
        CellUpdateConfirm_v590ext_IEs
    rrc.cellUpdateConfirm_v5d0ext  cellUpdateConfirm-v5d0ext
        No value
        CellUpdateConfirm_v5d0ext_IEs
    rrc.cellUpdateConfirm_v690ext  cellUpdateConfirm-v690ext
        No value
        CellUpdateConfirm_v690ext_IEs
    rrc.cellUpdateConfirm_v6b0ext  cellUpdateConfirm-v6b0ext
        No value
        CellUpdateConfirm_v6b0ext_IEs
    rrc.cellUpdateConfirm_v780ext  cellUpdateConfirm-v780ext
        No value
        CellUpdateConfirm_v780ext_IEs
    rrc.cellUpdateConfirm_v7d0ext  cellUpdateConfirm-v7d0ext
        No value
        CellUpdateConfirm_v7d0ext_IEs
    rrc.cellUpdateConfirm_v7f0ext  cellUpdateConfirm-v7f0ext
        No value
        CellUpdateConfirm_v7f0ext_IEs
    rrc.cellUpdateConfirm_v7g0ext  cellUpdateConfirm-v7g0ext
        No value
        CellUpdateConfirm_v7g0ext_IEs
    rrc.cellUpdateConfirm_v860ext  cellUpdateConfirm-v860ext
        No value
        CellUpdateConfirm_v860ext_IEs
    rrc.cellUpdateConfirm_v890ext  cellUpdateConfirm-v890ext
        No value
        CellUpdateConfirm_v890ext_IEs
    rrc.cellUpdateConfirm_v8a0ext  cellUpdateConfirm-v8a0ext
        No value
        CellUpdateConfirm_v8a0ext_IEs
    rrc.cellUpdateOccurred  cellUpdateOccurred
        No value
    rrc.cellUpdate_r3_add_ext  cellUpdate-r3-add-ext
        Byte array
    rrc.cellUpdate_v590ext  cellUpdate-v590ext
        No value
    rrc.cellUpdate_v690ext  cellUpdate-v690ext
        No value
        CellUpdate_v690ext_IEs
    rrc.cellUpdate_v6b0ext  cellUpdate-v6b0ext
        No value
        CellUpdate_v6b0ext_IEs
    rrc.cellUpdate_v770ext  cellUpdate-v770ext
        No value
        CellUpdate_v770ext_IEs
    rrc.cellUpdate_v7e0ext  cellUpdate-v7e0ext
        No value
        CellUpdate_v7e0ext_IEs
    rrc.cellUpdate_v7g0ext  cellUpdate-v7g0ext
        No value
        CellUpdate_v7g0ext_IEs
    rrc.cellUpdate_v860ext  cellUpdate-v860ext
        No value
        CellUpdate_v860ext_IEs
    rrc.cellValueTag  cellValueTag
        Unsigned 32-bit integer
    rrc.cell_Id  cell-Id
        Byte array
        CellIdentity
    rrc.cell_Timing  cell-Timing
        No value
    rrc.cell_id  cell-id
        Byte array
        CellIdentity
    rrc.cell_id_PerRL_List  cell-id-PerRL-List
        Unsigned 32-bit integer
        CellIdentity_PerRL_List
    rrc.cellsForInterFreqMeasList  cellsForInterFreqMeasList
        Unsigned 32-bit integer
    rrc.cellsForInterRATMeasList  cellsForInterRATMeasList
        Unsigned 32-bit integer
    rrc.cellsForIntraFreqMeasList  cellsForIntraFreqMeasList
        Unsigned 32-bit integer
    rrc.cfnHandling  cfnHandling
        Unsigned 32-bit integer
    rrc.cgiInfo  cgiInfo
        No value
    rrc.chCode1-SF16  chCode1-SF16
        Boolean
    rrc.chCode1-SF32  chCode1-SF32
        Boolean
    rrc.chCode10-SF16  chCode10-SF16
        Boolean
    rrc.chCode10-SF32  chCode10-SF32
        Boolean
    rrc.chCode11-SF16  chCode11-SF16
        Boolean
    rrc.chCode11-SF32  chCode11-SF32
        Boolean
    rrc.chCode12-SF16  chCode12-SF16
        Boolean
    rrc.chCode12-SF32  chCode12-SF32
        Boolean
    rrc.chCode13-SF16  chCode13-SF16
        Boolean
    rrc.chCode13-SF32  chCode13-SF32
        Boolean
    rrc.chCode14-SF16  chCode14-SF16
        Boolean
    rrc.chCode14-SF32  chCode14-SF32
        Boolean
    rrc.chCode15-SF16  chCode15-SF16
        Boolean
    rrc.chCode15-SF32  chCode15-SF32
        Boolean
    rrc.chCode16-SF16  chCode16-SF16
        Boolean
    rrc.chCode16-SF32  chCode16-SF32
        Boolean
    rrc.chCode17-SF32  chCode17-SF32
        Boolean
    rrc.chCode18-SF32  chCode18-SF32
        Boolean
    rrc.chCode19-SF32  chCode19-SF32
        Boolean
    rrc.chCode2-SF16  chCode2-SF16
        Boolean
    rrc.chCode2-SF32  chCode2-SF32
        Boolean
    rrc.chCode20-SF32  chCode20-SF32
        Boolean
    rrc.chCode21-SF32  chCode21-SF32
        Boolean
    rrc.chCode22-SF32  chCode22-SF32
        Boolean
    rrc.chCode23-SF32  chCode23-SF32
        Boolean
    rrc.chCode24-SF32  chCode24-SF32
        Boolean
    rrc.chCode25-SF32  chCode25-SF32
        Boolean
    rrc.chCode26-SF32  chCode26-SF32
        Boolean
    rrc.chCode27-SF32  chCode27-SF32
        Boolean
    rrc.chCode28-SF32  chCode28-SF32
        Boolean
    rrc.chCode29-SF32  chCode29-SF32
        Boolean
    rrc.chCode3-SF16  chCode3-SF16
        Boolean
    rrc.chCode3-SF32  chCode3-SF32
        Boolean
    rrc.chCode30-SF32  chCode30-SF32
        Boolean
    rrc.chCode31-SF32  chCode31-SF32
        Boolean
    rrc.chCode32-SF32  chCode32-SF32
        Boolean
    rrc.chCode4-SF16  chCode4-SF16
        Boolean
    rrc.chCode4-SF32  chCode4-SF32
        Boolean
    rrc.chCode5-SF16  chCode5-SF16
        Boolean
    rrc.chCode5-SF32  chCode5-SF32
        Boolean
    rrc.chCode6-SF16  chCode6-SF16
        Boolean
    rrc.chCode6-SF32  chCode6-SF32
        Boolean
    rrc.chCode7-SF16  chCode7-SF16
        Boolean
    rrc.chCode7-SF32  chCode7-SF32
        Boolean
    rrc.chCode8-SF16  chCode8-SF16
        Boolean
    rrc.chCode8-SF32  chCode8-SF32
        Boolean
    rrc.chCode9-SF16  chCode9-SF16
        Boolean
    rrc.chCode9-SF32  chCode9-SF32
        Boolean
    rrc.chCodeIndex0  chCodeIndex0
        Boolean
    rrc.chCodeIndex1  chCodeIndex1
        Boolean
    rrc.chCodeIndex10  chCodeIndex10
        Boolean
    rrc.chCodeIndex11  chCodeIndex11
        Boolean
    rrc.chCodeIndex12  chCodeIndex12
        Boolean
    rrc.chCodeIndex13  chCodeIndex13
        Boolean
    rrc.chCodeIndex14  chCodeIndex14
        Boolean
    rrc.chCodeIndex15  chCodeIndex15
        Boolean
    rrc.chCodeIndex2  chCodeIndex2
        Boolean
    rrc.chCodeIndex3  chCodeIndex3
        Boolean
    rrc.chCodeIndex4  chCodeIndex4
        Boolean
    rrc.chCodeIndex5  chCodeIndex5
        Boolean
    rrc.chCodeIndex6  chCodeIndex6
        Boolean
    rrc.chCodeIndex7  chCodeIndex7
        Boolean
    rrc.chCodeIndex8  chCodeIndex8
        Boolean
    rrc.chCodeIndex9  chCodeIndex9
        Boolean
    rrc.channelAssignmentActive  channelAssignmentActive
        Unsigned 32-bit integer
    rrc.channelCodingType  channelCodingType
        Unsigned 32-bit integer
    rrc.channelNumber  channelNumber
        Signed 32-bit integer
        INTEGER_M7_13
    rrc.channelReqParamsForUCSM  channelReqParamsForUCSM
        No value
    rrc.channelisationCode  channelisationCode
        Unsigned 32-bit integer
        E_HICH_ChannelisationCode
    rrc.channelisationCode256  channelisationCode256
        Unsigned 32-bit integer
    rrc.channelisationCodeIndices  channelisationCodeIndices
        Byte array
    rrc.channelisationCodeList  channelisationCodeList
        Unsigned 32-bit integer
        TDD_PRACH_CCodeList
    rrc.channelisation_Code  channelisation-Code
        Unsigned 32-bit integer
        HS_ChannelisationCode_LCR
    rrc.channelisation_code  channelisation-code
        Unsigned 32-bit integer
        DL_TS_ChannelisationCode
    rrc.chipRateCapability  chipRateCapability
        Unsigned 32-bit integer
    rrc.cipheringAlgorithm  cipheringAlgorithm
        Unsigned 32-bit integer
    rrc.cipheringAlgorithmCap  cipheringAlgorithmCap
        Byte array
    rrc.cipheringInfoForSRB1_v3a0ext  cipheringInfoForSRB1-v3a0ext
        No value
        CipheringInfoPerRB_List_v3a0ext
    rrc.cipheringInfoPerRB_List  cipheringInfoPerRB-List
        Unsigned 32-bit integer
    rrc.cipheringKeyFlag  cipheringKeyFlag
        Byte array
        BIT_STRING_SIZE_1
    rrc.cipheringModeCommand  cipheringModeCommand
        Unsigned 32-bit integer
    rrc.cipheringModeInfo  cipheringModeInfo
        No value
    rrc.cipheringSerialNumber  cipheringSerialNumber
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrc.cipheringStatus  cipheringStatus
        Unsigned 32-bit integer
    rrc.cipheringStatusList  cipheringStatusList
        Unsigned 32-bit integer
    rrc.clearDedicatedPriorities  clearDedicatedPriorities
        No value
    rrc.clockModelID  clockModelID
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.closedLoopTimingAdjMode  closedLoopTimingAdjMode
        Unsigned 32-bit integer
    rrc.cn_CommonGSM_MAP_NAS_SysInfo  cn-CommonGSM-MAP-NAS-SysInfo
        Byte array
        NAS_SystemInformationGSM_MAP
    rrc.cn_DRX_CycleLengthCoeff  cn-DRX-CycleLengthCoeff
        Unsigned 32-bit integer
        CN_DRX_CycleLengthCoefficient
    rrc.cn_DomainIdentity  cn-DomainIdentity
        Unsigned 32-bit integer
    rrc.cn_DomainInformationList  cn-DomainInformationList
        Unsigned 32-bit integer
    rrc.cn_DomainInformationListFull  cn-DomainInformationListFull
        Unsigned 32-bit integer
    rrc.cn_DomainInformationList_v390ext  cn-DomainInformationList-v390ext
        Unsigned 32-bit integer
    rrc.cn_DomainSpecificNAS_Info  cn-DomainSpecificNAS-Info
        Byte array
        NAS_SystemInformationGSM_MAP
    rrc.cn_DomainSysInfoList  cn-DomainSysInfoList
        Unsigned 32-bit integer
    rrc.cn_Identity  cn-Identity
        No value
    rrc.cn_InformationInfo  cn-InformationInfo
        No value
    rrc.cn_OriginatedPage_connectedMode_UE  cn-OriginatedPage-connectedMode-UE
        No value
    rrc.cn_Type  cn-Type
        Unsigned 32-bit integer
    rrc.cn_pagedUE_Identity  cn-pagedUE-Identity
        Unsigned 32-bit integer
    rrc.cnavAdot  cnavAdot
        Byte array
        BIT_STRING_SIZE_25
    rrc.cnavAf0  cnavAf0
        Byte array
        BIT_STRING_SIZE_26
    rrc.cnavAf1  cnavAf1
        Byte array
        BIT_STRING_SIZE_20
    rrc.cnavAf2  cnavAf2
        Byte array
        BIT_STRING_SIZE_10
    rrc.cnavCic  cnavCic
        Byte array
        BIT_STRING_SIZE_16
    rrc.cnavCis  cnavCis
        Byte array
        BIT_STRING_SIZE_16
    rrc.cnavClockModel  cnavClockModel
        No value
    rrc.cnavCrc  cnavCrc
        Byte array
        BIT_STRING_SIZE_24
    rrc.cnavCrs  cnavCrs
        Byte array
        BIT_STRING_SIZE_24
    rrc.cnavCuc  cnavCuc
        Byte array
        BIT_STRING_SIZE_21
    rrc.cnavCus  cnavCus
        Byte array
        BIT_STRING_SIZE_21
    rrc.cnavDeltaA  cnavDeltaA
        Byte array
        BIT_STRING_SIZE_26
    rrc.cnavDeltaNo  cnavDeltaNo
        Byte array
        BIT_STRING_SIZE_17
    rrc.cnavDeltaNoDot  cnavDeltaNoDot
        Byte array
        BIT_STRING_SIZE_23
    rrc.cnavDeltaOmegaDot  cnavDeltaOmegaDot
        Byte array
        BIT_STRING_SIZE_17
    rrc.cnavE  cnavE
        Byte array
        BIT_STRING_SIZE_33
    rrc.cnavISCl1ca  cnavISCl1ca
        Byte array
        BIT_STRING_SIZE_13
    rrc.cnavISCl1cd  cnavISCl1cd
        Byte array
        BIT_STRING_SIZE_13
    rrc.cnavISCl1cp  cnavISCl1cp
        Byte array
        BIT_STRING_SIZE_13
    rrc.cnavISCl2c  cnavISCl2c
        Byte array
        BIT_STRING_SIZE_13
    rrc.cnavISCl5i5  cnavISCl5i5
        Byte array
        BIT_STRING_SIZE_13
    rrc.cnavISCl5q5  cnavISCl5q5
        Byte array
        BIT_STRING_SIZE_13
    rrc.cnavIo  cnavIo
        Byte array
        BIT_STRING_SIZE_33
    rrc.cnavIoDot  cnavIoDot
        Byte array
        BIT_STRING_SIZE_15
    rrc.cnavKeplerianSet  cnavKeplerianSet
        No value
        NavModel_CNAVKeplerianSet
    rrc.cnavMo  cnavMo
        Byte array
        BIT_STRING_SIZE_33
    rrc.cnavOMEGA0  cnavOMEGA0
        Byte array
        BIT_STRING_SIZE_33
    rrc.cnavOmega  cnavOmega
        Byte array
        BIT_STRING_SIZE_33
    rrc.cnavTgd  cnavTgd
        Byte array
        BIT_STRING_SIZE_13
    rrc.cnavToc  cnavToc
        Byte array
        BIT_STRING_SIZE_11
    rrc.cnavTop  cnavTop
        Byte array
        BIT_STRING_SIZE_11
    rrc.cnavURA0  cnavURA0
        Byte array
        BIT_STRING_SIZE_5
    rrc.cnavURA1  cnavURA1
        Byte array
        BIT_STRING_SIZE_3
    rrc.cnavURA2  cnavURA2
        Byte array
        BIT_STRING_SIZE_3
    rrc.cnavURAindex  cnavURAindex
        Byte array
        BIT_STRING_SIZE_5
    rrc.code0  code0
        Boolean
    rrc.code1  code1
        Boolean
    rrc.code2  code2
        Boolean
    rrc.code3  code3
        Boolean
    rrc.code4  code4
        Boolean
    rrc.code5  code5
        Boolean
    rrc.code6  code6
        Boolean
    rrc.code7  code7
        Boolean
    rrc.codeChangeStatusList  codeChangeStatusList
        Unsigned 32-bit integer
    rrc.codeNumber  codeNumber
        Unsigned 32-bit integer
        CodeNumberDSCH
    rrc.codeNumberStart  codeNumberStart
        Unsigned 32-bit integer
        CodeNumberDSCH
    rrc.codeNumberStop  codeNumberStop
        Unsigned 32-bit integer
        CodeNumberDSCH
    rrc.codeOnL2  codeOnL2
        Byte array
        BIT_STRING_SIZE_2
    rrc.codePhase  codePhase
        Unsigned 32-bit integer
        INTEGER_0_1022
    rrc.codePhaseRmsError  codePhaseRmsError
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.codePhaseSearchWindow  codePhaseSearchWindow
        Unsigned 32-bit integer
    rrc.codeRange  codeRange
        No value
    rrc.codeResourceInfo  codeResourceInfo
        Unsigned 32-bit integer
        UL_TS_ChannelisationCode
    rrc.codeResourceInformation  codeResourceInformation
        No value
        CodeResourceInformation_TDD128
    rrc.codeWordSet  codeWordSet
        Unsigned 32-bit integer
    rrc.codesRepresentation  codesRepresentation
        Unsigned 32-bit integer
    rrc.commonCCTrChIdentity  commonCCTrChIdentity
        Unsigned 32-bit integer
        MBMS_CommonCCTrChIdentity
    rrc.commonEDCHSystemInfo  commonEDCHSystemInfo
        No value
    rrc.commonMidamble  commonMidamble
        No value
    rrc.commonRBIdentity  commonRBIdentity
        Unsigned 32-bit integer
        MBMS_CommonRBIdentity
    rrc.commonTDD_Choice  commonTDD-Choice
        Unsigned 32-bit integer
    rrc.commonTimeslotInfo  commonTimeslotInfo
        No value
    rrc.commonTimeslotInfoMBMS  commonTimeslotInfoMBMS
        No value
    rrc.commonTrChIdentity  commonTrChIdentity
        Unsigned 32-bit integer
        MBMS_CommonTrChIdentity
    rrc.commonTransChTFS  commonTransChTFS
        No value
    rrc.commonTransChTFS_LCR  commonTransChTFS-LCR
        No value
    rrc.common_E_DCH_MAC_d_FlowList  common-E-DCH-MAC-d-FlowList
        Unsigned 32-bit integer
    rrc.common_E_DCH_ResourceInfoList  common-E-DCH-ResourceInfoList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxEDCHs_OF_Common_E_DCH_ResourceInfoList
    rrc.common_H_RNTI_information  common-H-RNTI-information
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxCommonHRNTI_OF_H_RNTI
    rrc.common_MAC_ehs_ReorderingQueueList  common-MAC-ehs-ReorderingQueueList
        Unsigned 32-bit integer
    rrc.common_e_rnti_Info  common-e-rnti-Info
        Unsigned 32-bit integer
    rrc.complete  complete
        No value
    rrc.completeAndFirst  completeAndFirst
        No value
    rrc.completeSIB  completeSIB
        No value
    rrc.completeSIB_List  completeSIB-List
        Unsigned 32-bit integer
    rrc.compressedMode  compressedMode
        Boolean
        BOOLEAN
    rrc.compressedModeMeasCapabEUTRAList  compressedModeMeasCapabEUTRAList
        Unsigned 32-bit integer
    rrc.compressedModeMeasCapabFDDList  compressedModeMeasCapabFDDList
        Unsigned 32-bit integer
    rrc.compressedModeMeasCapabFDDList_ext  compressedModeMeasCapabFDDList-ext
        Unsigned 32-bit integer
    rrc.compressedModeMeasCapabGSMList  compressedModeMeasCapabGSMList
        Unsigned 32-bit integer
    rrc.compressedModeMeasCapabMC  compressedModeMeasCapabMC
        No value
    rrc.compressedModeMeasCapabTDDList  compressedModeMeasCapabTDDList
        Unsigned 32-bit integer
    rrc.compressedModeRuntimeError  compressedModeRuntimeError
        Unsigned 32-bit integer
        TGPSI
    rrc.computedGainFactors  computedGainFactors
        Unsigned 32-bit integer
        ReferenceTFC_ID
    rrc.conditionalInformationElementError  conditionalInformationElementError
        No value
        IdentificationOfReceivedMessage
    rrc.confidence  confidence
        Unsigned 32-bit integer
        INTEGER_0_100
    rrc.configuration  configuration
        Unsigned 32-bit integer
    rrc.configurationIncomplete  configurationIncomplete
        No value
    rrc.configurationInfo  configurationInfo
        Unsigned 32-bit integer
    rrc.configurationUnacceptable  configurationUnacceptable
        No value
    rrc.configurationUnsupported  configurationUnsupported
        No value
    rrc.configurationmode  configurationmode
        Unsigned 32-bit integer
    rrc.configureDedicatedPriorities  configureDedicatedPriorities
        No value
    rrc.configured  configured
        No value
    rrc.confirmRequest  confirmRequest
        Unsigned 32-bit integer
    rrc.connectedModePLMNIdentities  connectedModePLMNIdentities
        No value
        PLMNIdentitiesOfNeighbourCells
    rrc.connectedModePLMNIdentitiesSIB11bis  connectedModePLMNIdentitiesSIB11bis
        No value
        PLMNIdentitiesOfNeighbourCells
    rrc.consecutive  consecutive
        No value
    rrc.constantValue  constantValue
        Signed 32-bit integer
    rrc.continue  continue
        No value
    rrc.continueMCCHReading  continueMCCHReading
        Boolean
        BOOLEAN
    rrc.continuousRangeOfARFCNs  continuousRangeOfARFCNs
        No value
    rrc.controlChannelDRXInfo_TDD128  controlChannelDRXInfo-TDD128
        No value
        ControlChannelDRXInfo_TDD128_r8
    rrc.controlChannelDrxOperation  controlChannelDrxOperation
        Unsigned 32-bit integer
    rrc.convolutional  convolutional
        Unsigned 32-bit integer
        CodingRate
    rrc.correlativeSFN  correlativeSFN
        Unsigned 32-bit integer
        INTEGER_0_4095
    rrc.countC_SFN_Frame_difference  countC-SFN-Frame-difference
        No value
    rrc.countC_SFN_High  countC-SFN-High
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.count_C  count-C
        Byte array
        BIT_STRING_SIZE_32
    rrc.count_C_ActivationTime  count-C-ActivationTime
        Unsigned 32-bit integer
        ActivationTime
    rrc.count_C_DL  count-C-DL
        Unsigned 32-bit integer
        COUNT_C
    rrc.count_C_List  count-C-List
        Unsigned 32-bit integer
    rrc.count_C_MSB_DL  count-C-MSB-DL
        Unsigned 32-bit integer
        COUNT_C_MSB
    rrc.count_C_MSB_UL  count-C-MSB-UL
        Unsigned 32-bit integer
        COUNT_C_MSB
    rrc.count_C_UL  count-C-UL
        Unsigned 32-bit integer
        COUNT_C
    rrc.counterCheck  counterCheck
        Unsigned 32-bit integer
    rrc.counterCheckResponse  counterCheckResponse
        No value
    rrc.counterCheckResponse_r3_add_ext  counterCheckResponse-r3-add-ext
        Byte array
        BIT_STRING
    rrc.counterCheck_r3  counterCheck-r3
        No value
        CounterCheck_r3_IEs
    rrc.counterCheck_r3_add_ext  counterCheck-r3-add-ext
        Byte array
        BIT_STRING
    rrc.countingCompletion  countingCompletion
        Unsigned 32-bit integer
    rrc.countingForCellFACH  countingForCellFACH
        Boolean
        BOOLEAN
    rrc.countingForCellPCH  countingForCellPCH
        Boolean
        BOOLEAN
    rrc.countingForUraPCH  countingForUraPCH
        Boolean
        BOOLEAN
    rrc.cpch_SetID  cpch-SetID
        Unsigned 32-bit integer
    rrc.cpch_StatusIndicationMode  cpch-StatusIndicationMode
        Unsigned 32-bit integer
    rrc.cpich_Ec_N0  cpich-Ec-N0
        No value
    rrc.cpich_Ec_N0_reportingIndicator  cpich-Ec-N0-reportingIndicator
        Boolean
        BOOLEAN
    rrc.cpich_RSCP  cpich-RSCP
        No value
    rrc.cpich_RSCP_reportingIndicator  cpich-RSCP-reportingIndicator
        Boolean
        BOOLEAN
    rrc.cpich_SecCCPCH_PowerOffset  cpich-SecCCPCH-PowerOffset
        Signed 32-bit integer
        INTEGER_M11_4
    rrc.cqi_RepetitionFactor  cqi-RepetitionFactor
        Unsigned 32-bit integer
    rrc.cqi_dtx_Timer  cqi-dtx-Timer
        Unsigned 32-bit integer
    rrc.crc_Size  crc-Size
        Unsigned 32-bit integer
    rrc.criticalExtensions  criticalExtensions
        Unsigned 32-bit integer
    rrc.csCallType  csCallType
        Unsigned 32-bit integer
    rrc.cs_HSPA_Information  cs-HSPA-Information
        No value
    rrc.cs_domain  cs-domain
        No value
    rrc.csgIdentity  csgIdentity
        Byte array
        CSG_Identity
    rrc.csgMemberIndication  csgMemberIndication
        Unsigned 32-bit integer
    rrc.csgProximityDetection  csgProximityDetection
        No value
    rrc.csgProximityIndicationCapability  csgProximityIndicationCapability
        No value
        CSG_ProximityIndicationCapability
    rrc.csg_DedicatedFrequencyInfoList  csg-DedicatedFrequencyInfoList
        Unsigned 32-bit integer
    rrc.csg_Indicator  csg-Indicator
        Unsigned 32-bit integer
    rrc.csg_PSCSplitInfo  csg-PSCSplitInfo
        No value
    rrc.ctch_AllocationPeriod  ctch-AllocationPeriod
        Unsigned 32-bit integer
        INTEGER_1_256
    rrc.ctch_Indicator  ctch-Indicator
        Boolean
        BOOLEAN
    rrc.ctfc12  ctfc12
        Unsigned 32-bit integer
        INTEGER_0_4095
    rrc.ctfc12Bit  ctfc12Bit
        Unsigned 32-bit integer
    rrc.ctfc12Bit_item  ctfc12Bit item
        No value
        T_ctfc12Bit_item
    rrc.ctfc12bit  ctfc12bit
        Unsigned 32-bit integer
        INTEGER_0_4095
    rrc.ctfc16  ctfc16
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrc.ctfc16Bit  ctfc16Bit
        Unsigned 32-bit integer
    rrc.ctfc16Bit_item  ctfc16Bit item
        No value
        T_ctfc16Bit_item
    rrc.ctfc16bit  ctfc16bit
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrc.ctfc2  ctfc2
        Unsigned 32-bit integer
        INTEGER_0_3
    rrc.ctfc24  ctfc24
        Unsigned 32-bit integer
        INTEGER_0_16777215
    rrc.ctfc24Bit  ctfc24Bit
        Unsigned 32-bit integer
    rrc.ctfc24Bit_item  ctfc24Bit item
        No value
        T_ctfc24Bit_item
    rrc.ctfc24bit  ctfc24bit
        Unsigned 32-bit integer
        INTEGER_0_16777215
    rrc.ctfc2Bit  ctfc2Bit
        Unsigned 32-bit integer
    rrc.ctfc2Bit_item  ctfc2Bit item
        No value
        T_ctfc2Bit_item
    rrc.ctfc2bit  ctfc2bit
        Unsigned 32-bit integer
        INTEGER_0_3
    rrc.ctfc4  ctfc4
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.ctfc4Bit  ctfc4Bit
        Unsigned 32-bit integer
    rrc.ctfc4Bit_item  ctfc4Bit item
        No value
        T_ctfc4Bit_item
    rrc.ctfc4bit  ctfc4bit
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.ctfc6  ctfc6
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.ctfc6Bit  ctfc6Bit
        Unsigned 32-bit integer
    rrc.ctfc6Bit_item  ctfc6Bit item
        No value
        T_ctfc6Bit_item
    rrc.ctfc6bit  ctfc6bit
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.ctfc8  ctfc8
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.ctfc8Bit  ctfc8Bit
        Unsigned 32-bit integer
    rrc.ctfc8Bit_item  ctfc8Bit item
        No value
        T_ctfc8Bit_item
    rrc.ctfc8bit  ctfc8bit
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.ctfcSize  ctfcSize
        Unsigned 32-bit integer
    rrc.currentCell  currentCell
        No value
    rrc.currentCell_DeltaRSCP  currentCell-DeltaRSCP
        No value
        DeltaRSCPPerCell
    rrc.currentCell_SCCPCH  currentCell-SCCPCH
        Unsigned 32-bit integer
        MBMS_SCCPCHIdentity
    rrc.current_tgps_Status  current-tgps-Status
        Unsigned 32-bit integer
        T_current_tgps_Status
    rrc.cycleLength_1024  cycleLength-1024
        No value
        MBMS_L1CombiningSchedule_1024
    rrc.cycleLength_128  cycleLength-128
        No value
        MBMS_L1CombiningSchedule_128
    rrc.cycleLength_256  cycleLength-256
        No value
        MBMS_L1CombiningSchedule_256
    rrc.cycleLength_32  cycleLength-32
        No value
        MBMS_L1CombiningSchedule_32
    rrc.cycleLength_512  cycleLength-512
        No value
        MBMS_L1CombiningSchedule_512
    rrc.cycleLength_64  cycleLength-64
        No value
        MBMS_L1CombiningSchedule_64
    rrc.cycleOffset  cycleOffset
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.dL_DCCHmessage  dL-DCCHmessage
        Byte array
    rrc.dataBitAssistance  dataBitAssistance
        No value
        ReqDataBitAssistance
    rrc.dataBitAssistanceList  dataBitAssistanceList
        Unsigned 32-bit integer
    rrc.dataBitAssistanceSgnList  dataBitAssistanceSgnList
        Unsigned 32-bit integer
    rrc.dataID  dataID
        Unsigned 32-bit integer
        INTEGER_0_3
    rrc.dataTransmFreqGranularity  dataTransmFreqGranularity
        Unsigned 32-bit integer
    rrc.dataTransmFrequency  dataTransmFrequency
        No value
    rrc.dataVolume  dataVolume
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrc.dataVolumeMontoringWindow  dataVolumeMontoringWindow
        Unsigned 32-bit integer
        INTEGER_1_120
    rrc.dataVolumePerRB  dataVolumePerRB
        Unsigned 32-bit integer
        DataVolumePerRB_List
    rrc.data_bits  data-bits
        Byte array
        BIT_STRING_SIZE_1_1024
    rrc.dcch  dcch
        No value
        MBMS_PFLInfo
    rrc.dch  dch
        Unsigned 32-bit integer
        TransportChannelIdentity
    rrc.dch_QualityTarget  dch-QualityTarget
        No value
        QualityTarget
    rrc.dch_and_dsch  dch-and-dsch
        No value
        TransportChannelIdentityDCHandDSCH
    rrc.dch_and_hsdsch  dch-and-hsdsch
        No value
        MAC_d_FlowIdentityDCHandHSDSCH
    rrc.dch_rach_usch  dch-rach-usch
        No value
    rrc.dch_transport_ch_id  dch-transport-ch-id
        Unsigned 32-bit integer
        TransportChannelIdentity
    rrc.dch_usch  dch-usch
        No value
    rrc.dcs1800  dcs1800
        Boolean
        BOOLEAN
    rrc.ddi  ddi
        Unsigned 32-bit integer
    rrc.deactivate  deactivate
        No value
    rrc.dedicatedPriorityInformation  dedicatedPriorityInformation
        No value
    rrc.dedicatedTransChTFS  dedicatedTransChTFS
        No value
    rrc.defaultConfig  defaultConfig
        No value
    rrc.defaultConfigForCellFACH  defaultConfigForCellFACH
        No value
    rrc.defaultConfigIdForCellFACH  defaultConfigIdForCellFACH
        Unsigned 32-bit integer
    rrc.defaultConfigIdentity  defaultConfigIdentity
        Unsigned 32-bit integer
    rrc.defaultConfigMode  defaultConfigMode
        Unsigned 32-bit integer
    rrc.defaultDPCH_OffsetValue  defaultDPCH-OffsetValue
        Unsigned 32-bit integer
        DefaultDPCH_OffsetValueFDD
    rrc.defaultMidamble  defaultMidamble
        No value
    rrc.deferredMeasurementControlReading  deferredMeasurementControlReading
        Unsigned 32-bit integer
    rrc.deferredMeasurementControlReadingSupport  deferredMeasurementControlReadingSupport
        No value
    rrc.delayRestrictionFlag  delayRestrictionFlag
        Unsigned 32-bit integer
    rrc.deltaACK  deltaACK
        Unsigned 32-bit integer
    rrc.deltaCQI  deltaCQI
        Unsigned 32-bit integer
    rrc.deltaI  deltaI
        Byte array
        BIT_STRING_SIZE_16
    rrc.deltaNACK  deltaNACK
        Unsigned 32-bit integer
    rrc.deltaPp_m  deltaPp-m
        Signed 32-bit integer
    rrc.deltaQhcs  deltaQhcs
        Signed 32-bit integer
        DeltaRSCP
    rrc.deltaQrxlevmin  deltaQrxlevmin
        Signed 32-bit integer
    rrc.deltaRSCP  deltaRSCP
        Signed 32-bit integer
    rrc.deltaRSCPPerCell  deltaRSCPPerCell
        No value
    rrc.deltaSIR1  deltaSIR1
        Unsigned 32-bit integer
        DeltaSIR
    rrc.deltaSIR2  deltaSIR2
        Unsigned 32-bit integer
        DeltaSIR
    rrc.deltaSIRAfter1  deltaSIRAfter1
        Unsigned 32-bit integer
        DeltaSIR
    rrc.deltaSIRAfter2  deltaSIRAfter2
        Unsigned 32-bit integer
        DeltaSIR
    rrc.deltaUT1  deltaUT1
        Byte array
        BIT_STRING_SIZE_31
    rrc.deltaUT1dot  deltaUT1dot
        Byte array
        BIT_STRING_SIZE_19
    rrc.delta_T2TP  delta-T2TP
        Unsigned 32-bit integer
        INTEGER_0_6
    rrc.delta_n  delta-n
        Byte array
        BIT_STRING_SIZE_16
    rrc.delta_n_nav  delta-n-nav
        Byte array
        BIT_STRING_SIZE_16
    rrc.delta_t_LS  delta-t-LS
        Byte array
        BIT_STRING_SIZE_8
    rrc.delta_t_LSF  delta-t-LSF
        Byte array
        BIT_STRING_SIZE_8
    rrc.delta_t_ls_utc  delta-t-ls-utc
        Byte array
        BIT_STRING_SIZE_8
    rrc.delta_t_lsf_utc  delta-t-lsf-utc
        Byte array
        BIT_STRING_SIZE_8
    rrc.desired_HS_SICH_PowerLevel  desired-HS-SICH-PowerLevel
        Signed 32-bit integer
        INTEGER_M120_M58
    rrc.detectedSetReportingQuantities  detectedSetReportingQuantities
        No value
        CellReportingQuantities
    rrc.deviceType  deviceType
        Unsigned 32-bit integer
    rrc.dganssInfoList  dganssInfoList
        Unsigned 32-bit integer
    rrc.dganssreferencetime  dganssreferencetime
        Unsigned 32-bit integer
        INTEGER_0_119
    rrc.dgansssignalInformationList  dgansssignalInformationList
        Unsigned 32-bit integer
    rrc.dgpsCorrectionsRequest  dgpsCorrectionsRequest
        Boolean
        BOOLEAN
    rrc.dgps_CorrectionSatInfoList  dgps-CorrectionSatInfoList
        Unsigned 32-bit integer
    rrc.dhs_sync  dhs-sync
        Signed 32-bit integer
    rrc.diagnosticsType  diagnosticsType
        Unsigned 32-bit integer
    rrc.different  different
        No value
    rrc.differentTxModeFromServingHS_DSCHCell  differentTxModeFromServingHS-DSCHCell
        Unsigned 32-bit integer
    rrc.disabled  disabled
        No value
    rrc.discontinuousDpcchTransmission  discontinuousDpcchTransmission
        Unsigned 32-bit integer
    rrc.diversityPattern  diversityPattern
        No value
    rrc.dl  dl
        Unsigned 32-bit integer
        DL_CompressedModeMethod
    rrc.dlEUTRACarrierFreq  dlEUTRACarrierFreq
        Unsigned 32-bit integer
        EARFCN
    rrc.dlScramblingCode  dlScramblingCode
        Unsigned 32-bit integer
        SecondaryScramblingCode
    rrc.dl_64QAM_Configured  dl-64QAM-Configured
        Unsigned 32-bit integer
    rrc.dl_AM_RLC_Mode  dl-AM-RLC-Mode
        No value
    rrc.dl_AddReconfTransChInfoList  dl-AddReconfTransChInfoList
        Unsigned 32-bit integer
    rrc.dl_CCTrCH_TimeslotsCodes  dl-CCTrCH-TimeslotsCodes
        No value
        DownlinkTimeslotsCodes
    rrc.dl_CCTrChListToEstablish  dl-CCTrChListToEstablish
        Unsigned 32-bit integer
        DL_CCTrChList
    rrc.dl_CCTrChListToRemove  dl-CCTrChListToRemove
        Unsigned 32-bit integer
    rrc.dl_CapabilityWithSimultaneousHS_DSCHConfig  dl-CapabilityWithSimultaneousHS-DSCHConfig
        Unsigned 32-bit integer
    rrc.dl_ChannelisationCode  dl-ChannelisationCode
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.dl_ChannelisationCodeList  dl-ChannelisationCodeList
        Unsigned 32-bit integer
    rrc.dl_ChannelisationCodes  dl-ChannelisationCodes
        No value
        DL_ChannelCodes_MBSFN_IMB384
    rrc.dl_CommonInformation  dl-CommonInformation
        No value
    rrc.dl_CommonInformationPost  dl-CommonInformationPost
        No value
    rrc.dl_CommonInformationPredef  dl-CommonInformationPredef
        No value
    rrc.dl_CommonTransChInfo  dl-CommonTransChInfo
        No value
    rrc.dl_CounterSynchronisationInfo  dl-CounterSynchronisationInfo
        No value
    rrc.dl_DCH_TFCS  dl-DCH-TFCS
        Unsigned 32-bit integer
        TFCS
    rrc.dl_DPCCH_BER  dl-DPCCH-BER
        Unsigned 32-bit integer
    rrc.dl_DPCH_InfoCommon  dl-DPCH-InfoCommon
        No value
    rrc.dl_DPCH_InfoPerRL  dl-DPCH-InfoPerRL
        Unsigned 32-bit integer
    rrc.dl_DPCH_PowerControlInfo  dl-DPCH-PowerControlInfo
        No value
    rrc.dl_DPCH_TimeslotsCodes  dl-DPCH-TimeslotsCodes
        No value
        DownlinkTimeslotsCodes
    rrc.dl_DeletedTransChInfoList  dl-DeletedTransChInfoList
        Unsigned 32-bit integer
    rrc.dl_FDPCHInfoPerRL_SecULFreq  dl-FDPCHInfoPerRL-SecULFreq
        No value
        DL_FDPCH_InfoPerRL_r7
    rrc.dl_FDPCH_InfoCommon  dl-FDPCH-InfoCommon
        No value
        DL_FDPCH_InfoCommon_r6
    rrc.dl_FDPCH_InfoPerRL  dl-FDPCH-InfoPerRL
        No value
        DL_FDPCH_InfoPerRL_r6
    rrc.dl_FDPCH_PowerControlInfo  dl-FDPCH-PowerControlInfo
        No value
        DL_DPCH_PowerControlInfo
    rrc.dl_FDPCH_TPCcommandErrorRate  dl-FDPCH-TPCcommandErrorRate
        Unsigned 32-bit integer
        INTEGER_1_10
    rrc.dl_FrameType  dl-FrameType
        Unsigned 32-bit integer
    rrc.dl_HFN  dl-HFN
        Byte array
        BIT_STRING_SIZE_20_25
    rrc.dl_HSPDSCH_Information  dl-HSPDSCH-Information
        No value
    rrc.dl_HSPDSCH_MultiCarrier_Information  dl-HSPDSCH-MultiCarrier-Information
        Unsigned 32-bit integer
    rrc.dl_HSPDSCH_TS_Configuration  dl-HSPDSCH-TS-Configuration
        Unsigned 32-bit integer
    rrc.dl_InformationPerRL  dl-InformationPerRL
        No value
        DL_InformationPerRL_PostTDD
    rrc.dl_InformationPerRL_List  dl-InformationPerRL-List
        Unsigned 32-bit integer
    rrc.dl_InformationPerRL_List_v6b0ext  dl-InformationPerRL-List-v6b0ext
        Unsigned 32-bit integer
    rrc.dl_InformationPerSecondaryRL_List  dl-InformationPerSecondaryRL-List
        Unsigned 32-bit integer
    rrc.dl_IntegrityProtActivationInfo  dl-IntegrityProtActivationInfo
        No value
        IntegrityProtActivationInfo
    rrc.dl_LogicalChannelMappingList  dl-LogicalChannelMappingList
        Unsigned 32-bit integer
    rrc.dl_MAC_HeaderType  dl-MAC-HeaderType
        Unsigned 32-bit integer
    rrc.dl_MeasurementsFDD  dl-MeasurementsFDD
        Boolean
        BOOLEAN
    rrc.dl_MeasurementsGSM  dl-MeasurementsGSM
        Boolean
        BOOLEAN
    rrc.dl_MeasurementsMC  dl-MeasurementsMC
        Boolean
        BOOLEAN
    rrc.dl_MeasurementsTDD  dl-MeasurementsTDD
        Boolean
        BOOLEAN
    rrc.dl_MultiCarrier_Information  dl-MultiCarrier-Information
        No value
    rrc.dl_Parameters  dl-Parameters
        Unsigned 32-bit integer
    rrc.dl_PhysChCapabilityFDD_v380ext  dl-PhysChCapabilityFDD-v380ext
        No value
    rrc.dl_RFC3095  dl-RFC3095
        No value
        DL_RFC3095_r4
    rrc.dl_RFC3095_Context  dl-RFC3095-Context
        No value
    rrc.dl_RFC3095_Context_Relocation  dl-RFC3095-Context-Relocation
        Boolean
        BOOLEAN
    rrc.dl_RLC_Mode  dl-RLC-Mode
        Unsigned 32-bit integer
    rrc.dl_RLC_PDU_size  dl-RLC-PDU-size
        Unsigned 32-bit integer
        OctetModeRLC_SizeInfoType1
    rrc.dl_RLC_StatusInfo  dl-RLC-StatusInfo
        No value
    rrc.dl_RRC_HFN  dl-RRC-HFN
        Byte array
        BIT_STRING_SIZE_28
    rrc.dl_RRC_SequenceNumber  dl-RRC-SequenceNumber
        Unsigned 32-bit integer
        RRC_MessageSequenceNumber
    rrc.dl_Reception_Window_Size  dl-Reception-Window-Size
        Unsigned 32-bit integer
        DL_Reception_Window_Size_r6
    rrc.dl_ScramblingCode  dl-ScramblingCode
        Unsigned 32-bit integer
        SecondaryScramblingCode
    rrc.dl_SecondaryCellInfoFDD  dl-SecondaryCellInfoFDD
        Unsigned 32-bit integer
    rrc.dl_SecondaryCellInfoFDD_v890ext  dl-SecondaryCellInfoFDD-v890ext
        No value
    rrc.dl_TFCS_Identity  dl-TFCS-Identity
        No value
        TFCS_Identity
    rrc.dl_TM_RLC_Mode  dl-TM-RLC-Mode
        No value
    rrc.dl_TPC_PowerOffsetPerRL_List  dl-TPC-PowerOffsetPerRL-List
        Unsigned 32-bit integer
    rrc.dl_TS_ChannelisationCodesShort  dl-TS-ChannelisationCodesShort
        No value
    rrc.dl_TrChInfoList  dl-TrChInfoList
        Unsigned 32-bit integer
        DL_AddReconfTransChInfoList
    rrc.dl_TransChBLER  dl-TransChBLER
        Boolean
        BOOLEAN
    rrc.dl_TransChCapability  dl-TransChCapability
        No value
    rrc.dl_TransChInfoList  dl-TransChInfoList
        Unsigned 32-bit integer
        DL_AddReconfTransChInfoList
    rrc.dl_TransportChannelBLER  dl-TransportChannelBLER
        Unsigned 32-bit integer
    rrc.dl_TransportChannelIdentity  dl-TransportChannelIdentity
        Unsigned 32-bit integer
        TransportChannelIdentity
    rrc.dl_TransportChannelType  dl-TransportChannelType
        Unsigned 32-bit integer
    rrc.dl_UM_RLC_DuplAvoid_Reord_Info  dl-UM-RLC-DuplAvoid-Reord-Info
        No value
        UM_RLC_DuplAvoid_Reord_Info_r6
    rrc.dl_UM_RLC_LI_size  dl-UM-RLC-LI-size
        Unsigned 32-bit integer
    rrc.dl_UM_RLC_Mode  dl-UM-RLC-Mode
        No value
    rrc.dl_UM_RLC_OutOSeqDelivery_Info  dl-UM-RLC-OutOSeqDelivery-Info
        No value
        UM_RLC_OutOSeqDelivery_Info_r6
    rrc.dl_UM_SN  dl-UM-SN
        Byte array
        BIT_STRING_SIZE_7
    rrc.dl_curr_time  dl-curr-time
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrc.dl_dataVolumeHistory  dl-dataVolumeHistory
        No value
        DataVolumeHistory
    rrc.dl_dpchInfo  dl-dpchInfo
        Unsigned 32-bit integer
    rrc.dl_dpchInfoCommon  dl-dpchInfoCommon
        Unsigned 32-bit integer
    rrc.dl_dyn_changed  dl-dyn-changed
        Boolean
        BOOLEAN
    rrc.dl_hspdsch_Information  dl-hspdsch-Information
        No value
    rrc.dl_mode  dl-mode
        Unsigned 32-bit integer
    rrc.dl_rate_matching_restriction  dl-rate-matching-restriction
        No value
    rrc.dl_ref_ir  dl-ref-ir
        Byte array
        OCTET_STRING_SIZE_1_3000
    rrc.dl_ref_time  dl-ref-time
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrc.dl_restrictedTrCh_Type  dl-restrictedTrCh-Type
        Unsigned 32-bit integer
        DL_TrCH_Type
    rrc.dl_syn_offset_id  dl-syn-offset-id
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrc.dl_syn_slope_ts  dl-syn-slope-ts
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrc.dl_transportChannelIdentity  dl-transportChannelIdentity
        Unsigned 32-bit integer
        TransportChannelIdentity
    rrc.dlul_HSPA_Information  dlul-HSPA-Information
        No value
        DLUL_HSPA_Information_r8
    rrc.dn  dn
        Byte array
        BIT_STRING_SIZE_8
    rrc.dn_utc  dn-utc
        Byte array
        BIT_STRING_SIZE_8
    rrc.domainIndicator  domainIndicator
        Unsigned 32-bit integer
    rrc.domainSpecficAccessClassBarredList  domainSpecficAccessClassBarredList
        Unsigned 32-bit integer
        AccessClassBarredList
    rrc.domainSpecificAccessRestictionForSharedNetwork  domainSpecificAccessRestictionForSharedNetwork
        Unsigned 32-bit integer
        DomainSpecificAccessRestrictionForSharedNetwork_v670ext
    rrc.domainSpecificAccessRestictionList  domainSpecificAccessRestictionList
        No value
        DomainSpecificAccessRestrictionList_v670ext
    rrc.domainSpecificAccessRestictionParametersForAll  domainSpecificAccessRestictionParametersForAll
        No value
        DomainSpecificAccessRestrictionParam_v670ext
    rrc.domainSpecificAccessRestrictionParametersForOperator1  domainSpecificAccessRestrictionParametersForOperator1
        No value
        DomainSpecificAccessRestrictionParam_v670ext
    rrc.domainSpecificAccessRestrictionParametersForOperator2  domainSpecificAccessRestrictionParametersForOperator2
        No value
        DomainSpecificAccessRestrictionParam_v670ext
    rrc.domainSpecificAccessRestrictionParametersForOperator3  domainSpecificAccessRestrictionParametersForOperator3
        No value
        DomainSpecificAccessRestrictionParam_v670ext
    rrc.domainSpecificAccessRestrictionParametersForOperator4  domainSpecificAccessRestrictionParametersForOperator4
        No value
        DomainSpecificAccessRestrictionParam_v670ext
    rrc.domainSpecificAccessRestrictionParametersForOperator5  domainSpecificAccessRestrictionParametersForOperator5
        No value
        DomainSpecificAccessRestrictionParam_v670ext
    rrc.domainSpecificAccessRestrictionParametersForPLMNOfMIB  domainSpecificAccessRestrictionParametersForPLMNOfMIB
        No value
        DomainSpecificAccessRestrictionParam_v670ext
    rrc.doppler  doppler
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrc.doppler0thOrder  doppler0thOrder
        Signed 32-bit integer
        INTEGER_M2048_2047
    rrc.doppler1stOrder  doppler1stOrder
        Signed 32-bit integer
        INTEGER_M42_21
    rrc.dopplerFirstOrder  dopplerFirstOrder
        Signed 32-bit integer
        INTEGER_M42_21
    rrc.dopplerUncertainty  dopplerUncertainty
        Unsigned 32-bit integer
    rrc.dopplerZeroOrder  dopplerZeroOrder
        Signed 32-bit integer
        INTEGER_M2048_2047
    rrc.downlinkCompressedMode  downlinkCompressedMode
        No value
        CompressedModeMeasCapability
    rrc.downlinkCompressedMode_LCR  downlinkCompressedMode-LCR
        No value
        CompressedModeMeasCapability_LCR_r4
    rrc.downlinkDirectTransfer  downlinkDirectTransfer
        Unsigned 32-bit integer
    rrc.downlinkDirectTransfer_r3  downlinkDirectTransfer-r3
        No value
        DownlinkDirectTransfer_r3_IEs
    rrc.downlinkDirectTransfer_r3_add_ext  downlinkDirectTransfer-r3-add-ext
        Byte array
        BIT_STRING
    rrc.downlinkPhysChCapability  downlinkPhysChCapability
        No value
        DL_PhysChCapabilityFDD
    rrc.downlinkTimeslotsCodes  downlinkTimeslotsCodes
        No value
    rrc.dpc_Mode  dpc-Mode
        Unsigned 32-bit integer
    rrc.dpcchPowerOffset_SecondaryULFrequency  dpcchPowerOffset-SecondaryULFrequency
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.dpcch_PowerOffset  dpcch-PowerOffset
        Signed 32-bit integer
    rrc.dpch_CompressedModeInfo  dpch-CompressedModeInfo
        No value
    rrc.dpch_CompressedModeStatusInfo  dpch-CompressedModeStatusInfo
        No value
    rrc.dpch_ConstantValue  dpch-ConstantValue
        Signed 32-bit integer
        ConstantValueTdd
    rrc.dpch_FrameOffset  dpch-FrameOffset
        Unsigned 32-bit integer
    rrc.dpch_TFCS_InUplink  dpch-TFCS-InUplink
        Unsigned 32-bit integer
        TFC_Subset
    rrc.dpdchPresence  dpdchPresence
        Unsigned 32-bit integer
    rrc.drac_ClassIdentity  drac-ClassIdentity
        Unsigned 32-bit integer
    rrc.drxInterruption_hs_dsch  drxInterruption-hs-dsch
        Boolean
        BOOLEAN
    rrc.drx_CycleLengthCoefficient  drx-CycleLengthCoefficient
        Unsigned 32-bit integer
        INTEGER_3_9
    rrc.drx_CycleLengthCoefficient2  drx-CycleLengthCoefficient2
        Unsigned 32-bit integer
        INTEGER_3_9
    rrc.drx_Info  drx-Info
        No value
    rrc.dsch  dsch
        Unsigned 32-bit integer
        TransportChannelIdentity
    rrc.dsch_RNTI  dsch-RNTI
        Byte array
    rrc.dsch_RadioLinkIdentifier  dsch-RadioLinkIdentifier
        Unsigned 32-bit integer
    rrc.dsch_TFCS  dsch-TFCS
        Unsigned 32-bit integer
        TFCS
    rrc.dsch_TFS  dsch-TFS
        Unsigned 32-bit integer
        TransportFormatSet
    rrc.dsch_TransportChannelsInfo  dsch-TransportChannelsInfo
        Unsigned 32-bit integer
    rrc.dsch_transport_ch_id  dsch-transport-ch-id
        Unsigned 32-bit integer
        TransportChannelIdentity
    rrc.dsch_transport_channel_identity  dsch-transport-channel-identity
        Unsigned 32-bit integer
        TransportChannelIdentity
    rrc.dtch_DCCH_reception_window_size  dtch-DCCH-reception-window-size
        Unsigned 32-bit integer
        INTEGER_1_16
    rrc.dtx_Info  dtx-Info
        No value
    rrc.dtx_drx_Info  dtx-drx-Info
        No value
        DTX_DRX_Info_r7
    rrc.dtx_drx_TimingInfo  dtx-drx-TimingInfo
        No value
        DTX_DRX_TimingInfo_r7
    rrc.dtx_e_dch_TTI_10ms  dtx-e-dch-TTI-10ms
        No value
    rrc.dtx_e_dch_TTI_2ms  dtx-e-dch-TTI-2ms
        No value
    rrc.dummy  dummy
        No value
        IntegrityProtectionModeInfo
    rrc.dummy1  dummy1
        Unsigned 32-bit integer
        CPCH_SetID
    rrc.dummy2  dummy2
        No value
        CipheringModeInfo
    rrc.dummy3  dummy3
        No value
        DL_CounterSynchronisationInfo
    rrc.dummy4  dummy4
        No value
        SSDT_Information
    rrc.duration  duration
        Unsigned 32-bit integer
        INTEGER_1_256
    rrc.durationTimeInfo  durationTimeInfo
        Unsigned 32-bit integer
    rrc.dynamic  dynamic
        Unsigned 32-bit integer
        CommonDynamicTF_InfoList_DynamicTTI
    rrc.dynamicPersistenceLevelTF_List  dynamicPersistenceLevelTF-List
        Unsigned 32-bit integer
    rrc.dynamicSFusage  dynamicSFusage
        Boolean
        BOOLEAN
    rrc.dynamicTFInformationCCCH  dynamicTFInformationCCCH
        No value
    rrc.e  e
        Byte array
        BIT_STRING_SIZE_16
    rrc.e1a  e1a
        No value
        Event1a
    rrc.e1b  e1b
        No value
        Event1b
    rrc.e1c  e1c
        No value
        Event1c
    rrc.e1d  e1d
        No value
    rrc.e1e  e1e
        No value
        Event1e
    rrc.e1f  e1f
        No value
        Event1f
    rrc.e1g  e1g
        No value
    rrc.e1h  e1h
        Signed 32-bit integer
        ThresholdUsedFrequency
    rrc.e1i  e1i
        Signed 32-bit integer
        ThresholdUsedFrequency
    rrc.e1j  e1j
        No value
        Event1j_r6
    rrc.e7a  e7a
        Unsigned 32-bit integer
        ThresholdPositionChange
    rrc.e7b  e7b
        Unsigned 32-bit integer
        ThresholdSFN_SFN_Change
    rrc.e7c  e7c
        Unsigned 32-bit integer
        ThresholdSFN_GPS_TOW
    rrc.e7d  e7d
        Unsigned 32-bit integer
        ThresholdSFN_GANSS_TOW
    rrc.e_AGCH_BLER_Target  e-AGCH-BLER-Target
        Signed 32-bit integer
        Bler_Target
    rrc.e_AGCH_ChannelisationCode  e-AGCH-ChannelisationCode
        Unsigned 32-bit integer
    rrc.e_AGCH_DRX_Cycle  e-AGCH-DRX-Cycle
        Unsigned 32-bit integer
        ControlChannelDRXCycle_TDD128
    rrc.e_AGCH_DRX_InfoType  e-AGCH-DRX-InfoType
        Unsigned 32-bit integer
    rrc.e_AGCH_DRX_Offset  e-AGCH-DRX-Offset
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.e_AGCH_DRX_Parameters  e-AGCH-DRX-Parameters
        No value
    rrc.e_AGCH_Drx_Info  e-AGCH-Drx-Info
        No value
        E_AGCH_DRX_Info_TDD128
    rrc.e_AGCH_InactivityMonitorThreshold  e-AGCH-InactivityMonitorThreshold
        Unsigned 32-bit integer
        E_AGCH_InactivityMonitorThreshold_TDD128
    rrc.e_AGCH_Information  e-AGCH-Information
        No value
    rrc.e_AGCH_Set_Config  e-AGCH-Set-Config
        Unsigned 32-bit integer
    rrc.e_DCH_MAC_d_FlowIdentity  e-DCH-MAC-d-FlowIdentity
        Unsigned 32-bit integer
    rrc.e_DCH_MinimumSet_E_TFCI  e-DCH-MinimumSet-E-TFCI
        Unsigned 32-bit integer
    rrc.e_DCH_RL_InfoNewSecServingCell  e-DCH-RL-InfoNewSecServingCell
        No value
    rrc.e_DCH_RL_InfoNewServingCell  e-DCH-RL-InfoNewServingCell
        No value
    rrc.e_DCH_RL_InfoOtherCellList  e-DCH-RL-InfoOtherCellList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxEDCHRL_OF_E_DCH_RL_InfoOtherCell
    rrc.e_DCH_RL_InfoOtherCellList_SecULFreq  e-DCH-RL-InfoOtherCellList-SecULFreq
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxEDCHRL_OF_E_DCH_RL_InfoOtherCell_SecULFreq
    rrc.e_DCH_minimumSet_E_TFCI  e-DCH-minimumSet-E-TFCI
        Unsigned 32-bit integer
    rrc.e_DPCCH_DPCCH_PowerOffset  e-DPCCH-DPCCH-PowerOffset
        Unsigned 32-bit integer
    rrc.e_DPCCH_Info  e-DPCCH-Info
        No value
    rrc.e_DPDCH_Info  e-DPDCH-Info
        No value
    rrc.e_DPDCH_PowerInterpolation  e-DPDCH-PowerInterpolation
        Boolean
    rrc.e_HICH_Info  e-HICH-Info
        Unsigned 32-bit integer
    rrc.e_HICH_InfoList  e-HICH-InfoList
        Unsigned 32-bit integer
        E_HICH_Information_LCR_List
    rrc.e_HICH_Information  e-HICH-Information
        No value
    rrc.e_PUCH_CodeHopping  e-PUCH-CodeHopping
        Boolean
        BOOLEAN
    rrc.e_PUCH_ContantValue  e-PUCH-ContantValue
        Signed 32-bit integer
        INTEGER_M35_10
    rrc.e_PUCH_Info  e-PUCH-Info
        No value
        E_PUCH_Info_TDD128
    rrc.e_PUCH_TPC_Step_Size  e-PUCH-TPC-Step-Size
        Unsigned 32-bit integer
        INTEGER_1_3
    rrc.e_PUCH_TS_ConfigurationList  e-PUCH-TS-ConfigurationList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxTS_2_OF_E_PUCH_TS_Slots
    rrc.e_RGCH_CombinationInfoList  e-RGCH-CombinationInfoList
        Unsigned 32-bit integer
    rrc.e_RGCH_Info  e-RGCH-Info
        Unsigned 32-bit integer
    rrc.e_RGCH_Information  e-RGCH-Information
        No value
    rrc.e_RUCCH_AccessServiceClass  e-RUCCH-AccessServiceClass
        Unsigned 32-bit integer
    rrc.e_RUCCH_ConstantValue  e-RUCCH-ConstantValue
        Signed 32-bit integer
        INTEGER_M35_10
    rrc.e_RUCCH_Info  e-RUCCH-Info
        No value
        E_RUCCH_Info_TDD128
    rrc.e_RUCCH_Midamble  e-RUCCH-Midamble
        Unsigned 32-bit integer
    rrc.e_RUCCH_PersistenceScalingFactor  e-RUCCH-PersistenceScalingFactor
        Unsigned 32-bit integer
        PersistenceScalingFactor
    rrc.e_RUCCH_Sync_UL_Codes_Bitmap  e-RUCCH-Sync-UL-Codes-Bitmap
        Byte array
        Sync_UL_Codes_Bitmap
    rrc.e_RUCCH_TS_Number  e-RUCCH-TS-Number
        Unsigned 32-bit integer
        INTEGER_0_14
    rrc.e_TFCI_Boost  e-TFCI-Boost
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.e_TFCI_TableIndex  e-TFCI-TableIndex
        Unsigned 32-bit integer
    rrc.e_TFCS_Info  e-TFCS-Info
        No value
    rrc.e_TFC_Boost_Info  e-TFC-Boost-Info
        No value
        E_TFC_Boost_Info_r7
    rrc.e_UTRA  e-UTRA
        No value
    rrc.e_UTRACSGProximityDetec  e-UTRACSGProximityDetec
        Unsigned 32-bit integer
    rrc.e_agch_Information  e-agch-Information
        No value
    rrc.e_ai_Indication  e-ai-Indication
        Boolean
        BOOLEAN
    rrc.e_dch  e-dch
        No value
    rrc.e_dch_ReconfInfoSameCell  e-dch-ReconfInfoSameCell
        No value
        E_DCH_RL_InfoSameServingCell
    rrc.e_dch_ReconfigurationInfo  e-dch-ReconfigurationInfo
        No value
    rrc.e_dch_ReconfigurationInfo_SecULFrequency  e-dch-ReconfigurationInfo-SecULFrequency
        No value
    rrc.e_dch_SPS_Info  e-dch-SPS-Info
        No value
        E_DCH_SPS_Information_TDD128
    rrc.e_dch_SPS_Operation  e-dch-SPS-Operation
        Unsigned 32-bit integer
    rrc.e_dch_TTI  e-dch-TTI
        Unsigned 32-bit integer
    rrc.e_dch_TTI_Length  e-dch-TTI-Length
        Unsigned 32-bit integer
    rrc.e_dch_TransmitContinuationOffset  e-dch-TransmitContinuationOffset
        Unsigned 32-bit integer
    rrc.e_dch_TxPattern  e-dch-TxPattern
        Unsigned 32-bit integer
        E_DCH_TxPatternList_TDD128
    rrc.e_dch_mac_d_flow_retransmission_timer  e-dch-mac-d-flow-retransmission-timer
        Unsigned 32-bit integer
        E_DCH_MAC_d_FlowRetransTimer
    rrc.e_dpcch_Info  e-dpcch-Info
        No value
        E_DPCCH_Info_r7
    rrc.e_dpdch_Info  e-dpdch-Info
        No value
        E_DPDCH_Info_r8
    rrc.e_hich_Info  e-hich-Info
        No value
        E_HICH_Information
    rrc.e_hich_Information  e-hich-Information
        No value
        E_HICH_Information_TDD128
    rrc.earfcn  earfcn
        Unsigned 32-bit integer
    rrc.earlier_than_r7  earlier-than-r7
        No value
    rrc.edch_CellIndicator  edch-CellIndicator
        Unsigned 32-bit integer
    rrc.edch_PhysicalLayerCategory  edch-PhysicalLayerCategory
        Unsigned 32-bit integer
        INTEGER_1_16
    rrc.edch_PhysicalLayerCategory_extension  edch-PhysicalLayerCategory-extension
        Unsigned 32-bit integer
        INTEGER_7
    rrc.edch_PhysicalLayerCategory_extension2  edch-PhysicalLayerCategory-extension2
        Unsigned 32-bit integer
        INTEGER_8_9
    rrc.ei  ei
        Unsigned 32-bit integer
        INTEGER_0_3
    rrc.elevation  elevation
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.ellipsoidPoint  ellipsoidPoint
        No value
    rrc.ellipsoidPointAltitude  ellipsoidPointAltitude
        No value
    rrc.ellipsoidPointAltitudeEllipse  ellipsoidPointAltitudeEllipse
        No value
        EllipsoidPointAltitudeEllipsoide
    rrc.ellipsoidPointAltitudeEllipsoide  ellipsoidPointAltitudeEllipsoide
        No value
    rrc.ellipsoidPointUncertCircle  ellipsoidPointUncertCircle
        No value
    rrc.ellipsoidPointUncertEllipse  ellipsoidPointUncertEllipse
        No value
    rrc.ellipsoidPointWithAltitude  ellipsoidPointWithAltitude
        No value
        EllipsoidPointAltitude
    rrc.enabled  enabled
        No value
    rrc.enablingDelay  enablingDelay
        Unsigned 32-bit integer
        EnablingDelay_TDD128
    rrc.endOfModifiedMCCHInformation  endOfModifiedMCCHInformation
        Unsigned 32-bit integer
        INTEGER_1_16
    rrc.endingARFCN  endingARFCN
        Unsigned 32-bit integer
        BCCH_ARFCN
    rrc.enhancedFdpch  enhancedFdpch
        Unsigned 32-bit integer
    rrc.environmentCharacterisation  environmentCharacterisation
        Unsigned 32-bit integer
    rrc.ephemerisParameter  ephemerisParameter
        No value
    rrc.equallySpacedARFCNs  equallySpacedARFCNs
        No value
    rrc.errorIndication  errorIndication
        Unsigned 32-bit integer
        FailureCauseWithProtErr
    rrc.errorOccurred  errorOccurred
        No value
    rrc.errorReason  errorReason
        Unsigned 32-bit integer
        UE_Positioning_ErrorCause
    rrc.esn_DS_41  esn-DS-41
        Byte array
    rrc.establishmentCause  establishmentCause
        Unsigned 32-bit integer
    rrc.etwsPrimaryNotificationWithSecurity  etwsPrimaryNotificationWithSecurity
        No value
    rrc.etws_Information  etws-Information
        No value
    rrc.etws_WarningSecurityInfo  etws-WarningSecurityInfo
        Byte array
    rrc.eutra  eutra
        Unsigned 32-bit integer
    rrc.eutraBlacklistedCellPerFreqList  eutraBlacklistedCellPerFreqList
        Unsigned 32-bit integer
        EUTRA_BlacklistedCellPerFreqList
    rrc.eutraDetection  eutraDetection
        Boolean
        BOOLEAN
    rrc.eutraFeatureGroupIndicators  eutraFeatureGroupIndicators
        Byte array
        BIT_STRING_SIZE_4
    rrc.eutraFrequencyRemoval  eutraFrequencyRemoval
        Unsigned 32-bit integer
        EUTRA_FrequencyRemoval
    rrc.eutraMeasuredResultList  eutraMeasuredResultList
        Unsigned 32-bit integer
        Eutra_MeasuredResultList
    rrc.eutraMeasuredResultList_v920ext  eutraMeasuredResultList-v920ext
        Unsigned 32-bit integer
        Eutra_MeasuredResultList_v920ext
    rrc.eutraNewFrequencies  eutraNewFrequencies
        Unsigned 32-bit integer
        EUTRA_FrequencyInfoList
    rrc.eutraSIAcquisition  eutraSIAcquisition
        No value
        EUTRA_SIAcquisition
    rrc.eutraSIacquisitionResults  eutraSIacquisitionResults
        No value
        EUTRA_SIacquisitionResults
    rrc.eutra_EventResults  eutra-EventResults
        No value
    rrc.eutra_EventResultsList  eutra-EventResultsList
        Unsigned 32-bit integer
        Eutra_EventResultList
    rrc.eutra_FrequencyAndPriorityInfoList  eutra-FrequencyAndPriorityInfoList
        Unsigned 32-bit integer
    rrc.eutra_FrequencyAndPriorityInfoList_v920ext  eutra-FrequencyAndPriorityInfoList-v920ext
        Unsigned 32-bit integer
    rrc.eutra_FrequencyList  eutra-FrequencyList
        No value
    rrc.eutra_MeasuredResults  eutra-MeasuredResults
        No value
    rrc.eutra_Message  eutra-Message
        Byte array
        OCTET_STRING
    rrc.eutra_RadioAccessCapability  eutra-RadioAccessCapability
        No value
    rrc.eutra_TargetFreqInfoList  eutra-TargetFreqInfoList
        Unsigned 32-bit integer
    rrc.eutra_blackListedCellList  eutra-blackListedCellList
        Unsigned 32-bit integer
        EUTRA_BlacklistedCellPerFreqList
    rrc.eutra_item  eutra item
        No value
    rrc.event  event
        Unsigned 32-bit integer
        IntraFreqEvent
    rrc.event2a  event2a
        No value
    rrc.event2b  event2b
        No value
    rrc.event2c  event2c
        No value
    rrc.event2d  event2d
        No value
    rrc.event2e  event2e
        No value
    rrc.event2f  event2f
        No value
    rrc.event3a  event3a
        No value
    rrc.event3b  event3b
        No value
    rrc.event3c  event3c
        No value
    rrc.event3d  event3d
        No value
    rrc.event6a  event6a
        No value
        UE_6AB_Event
    rrc.event6b  event6b
        No value
        UE_6AB_Event
    rrc.event6c  event6c
        Unsigned 32-bit integer
        TimeToTrigger
    rrc.event6d  event6d
        Unsigned 32-bit integer
        TimeToTrigger
    rrc.event6e  event6e
        Unsigned 32-bit integer
        TimeToTrigger
    rrc.event6f  event6f
        No value
        UE_6FG_Event
    rrc.event6g  event6g
        No value
        UE_6FG_Event
    rrc.event7a  event7a
        No value
        UE_Positioning_PositionEstimateInfo
    rrc.event7b  event7b
        No value
        UE_Positioning_OTDOA_Measurement
    rrc.event7c  event7c
        No value
        UE_Positioning_GPS_MeasurementResults
    rrc.event7d  event7d
        No value
        UE_Positioning_GANSS_MeasuredResults
    rrc.eventCriteriaList  eventCriteriaList
        Unsigned 32-bit integer
        IntraFreqEventCriteriaList
    rrc.eventCriteriaListOnSecULFreq  eventCriteriaListOnSecULFreq
        No value
        IntraFreqEventCriteriaListOnSecULFreq
    rrc.eventID  eventID
        Unsigned 32-bit integer
        EventIDInterRAT
    rrc.eventResults  eventResults
        Unsigned 32-bit integer
    rrc.eventResultsOnSecUlFreq  eventResultsOnSecUlFreq
        No value
    rrc.eventSpecificInfo  eventSpecificInfo
        Unsigned 32-bit integer
        UE_Positioning_EventSpecificInfo
    rrc.eventSpecificParameters  eventSpecificParameters
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxMeasParEvent_OF_TrafficVolumeEventParam
    rrc.ex_ul_TimingAdvance  ex-ul-TimingAdvance
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.expectReordering  expectReordering
        Unsigned 32-bit integer
    rrc.expirationTimeFactor  expirationTimeFactor
        Unsigned 32-bit integer
    rrc.explicit  explicit
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxHProcesses_OF_HARQMemorySize
    rrc.explicitList  explicitList
        Unsigned 32-bit integer
        RLC_SizeExplicitList
    rrc.explicitListOfARFCNs  explicitListOfARFCNs
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_31_OF_BCCH_ARFCN
    rrc.explicitPLMN_Id  explicitPLMN-Id
        No value
        PLMN_Identity
    rrc.explicit_config  explicit-config
        Unsigned 32-bit integer
        TransportFormatSet
    rrc.extGANSS_SIBTypeInfoSchedulingInfoList  extGANSS-SIBTypeInfoSchedulingInfoList
        Unsigned 32-bit integer
    rrc.extSIBTypeInfoSchedulingInfo_List  extSIBTypeInfoSchedulingInfo-List
        Unsigned 32-bit integer
    rrc.ext_UL_TimingAdvance  ext-UL-TimingAdvance
        No value
    rrc.extendedEstimationWindow  extendedEstimationWindow
        Unsigned 32-bit integer
        INTEGER_2_5
    rrc.extension  extension
        No value
    rrc.extensionGANSS_SIBType  extensionGANSS-SIBType
        Unsigned 32-bit integer
        SIB_TypeExtGANSS
    rrc.extensionSIB_Type  extensionSIB-Type
        Unsigned 32-bit integer
        SIB_TypeExt
    rrc.extensionSIB_Type2  extensionSIB-Type2
        Unsigned 32-bit integer
        SIB_TypeExt2
    rrc.extraDoppler  extraDoppler
        No value
    rrc.extraDopplerInfo  extraDopplerInfo
        No value
    rrc.fACH_meas_occasion_coeff  fACH-meas-occasion-coeff
        Unsigned 32-bit integer
        INTEGER_1_12
    rrc.fPachFrequencyInfo  fPachFrequencyInfo
        No value
        FrequencyInfoTDD
    rrc.f_MAX_PERIOD  f-MAX-PERIOD
        Unsigned 32-bit integer
        INTEGER_1_65535
    rrc.f_MAX_TIME  f-MAX-TIME
        Unsigned 32-bit integer
        INTEGER_1_255
    rrc.f_dpch_ChannelisationCodeNumber  f-dpch-ChannelisationCodeNumber
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.fach  fach
        No value
    rrc.fachCarryingMCCH  fachCarryingMCCH
        No value
    rrc.fachCarryingMSCH  fachCarryingMSCH
        No value
    rrc.fachCarryingMTCH_List  fachCarryingMTCH-List
        Unsigned 32-bit integer
        MBMS_FACHCarryingMTCH_List
    rrc.fach_MeasurementOccasionInfo  fach-MeasurementOccasionInfo
        No value
    rrc.fach_MeasurementOccasionInfo_LCR_Ext  fach-MeasurementOccasionInfo-LCR-Ext
        No value
        FACH_MeasurementOccasionInfo_LCR_r4_ext
    rrc.fach_PCH_InformationList  fach-PCH-InformationList
        Unsigned 32-bit integer
    rrc.failureCause  failureCause
        Unsigned 32-bit integer
        FailureCauseWithProtErr
    rrc.failureCauseWithProtErr  failureCauseWithProtErr
        Unsigned 32-bit integer
    rrc.fdd  fdd
        No value
    rrc.fddPhysChCapability  fddPhysChCapability
        No value
    rrc.fddPhysicalChannelCapab_hspdsch_edch  fddPhysicalChannelCapab-hspdsch-edch
        No value
    rrc.fddRF_Capability  fddRF-Capability
        No value
    rrc.fdd_Measurements  fdd-Measurements
        Boolean
        BOOLEAN
    rrc.fdd_UMTS_Frequency_List  fdd-UMTS-Frequency-List
        Unsigned 32-bit integer
    rrc.fdd_edch  fdd-edch
        Unsigned 32-bit integer
    rrc.fdd_hspdsch  fdd-hspdsch
        Unsigned 32-bit integer
    rrc.fdpch_FrameOffset  fdpch-FrameOffset
        Unsigned 32-bit integer
        DPCH_FrameOffset
    rrc.fdpch_SlotFormat  fdpch-SlotFormat
        Unsigned 32-bit integer
    rrc.feedback_cycle  feedback-cycle
        Unsigned 32-bit integer
    rrc.filterCoefficient  filterCoefficient
        Unsigned 32-bit integer
    rrc.fineSFN_SFN  fineSFN-SFN
        Unsigned 32-bit integer
    rrc.firstChannelisationCode  firstChannelisationCode
        Unsigned 32-bit integer
        DL_TS_ChannelisationCode
    rrc.firstIndividualTimeslotInfo  firstIndividualTimeslotInfo
        No value
        IndividualTimeslotInfo
    rrc.firstSegment  firstSegment
        No value
    rrc.fitInterval  fitInterval
        Byte array
        BIT_STRING_SIZE_1
    rrc.fixedSize  fixedSize
        Unsigned 32-bit integer
        OctetModeRLC_SizeInfoType1
    rrc.flexibleSize  flexibleSize
        Unsigned 32-bit integer
    rrc.followingARFCNs  followingARFCNs
        Unsigned 32-bit integer
    rrc.forbiddenAffectCellList  forbiddenAffectCellList
        Unsigned 32-bit integer
    rrc.forbiddenAffectCellListOnSecULFreq  forbiddenAffectCellListOnSecULFreq
        Unsigned 32-bit integer
    rrc.fpach_Info  fpach-Info
        No value
        FPACH_Info_r4
    rrc.fractionalGPS_Chips  fractionalGPS-Chips
        Unsigned 32-bit integer
        INTEGER_0_1023
    rrc.freqQualityEstimateQuantity_FDD  freqQualityEstimateQuantity-FDD
        Unsigned 32-bit integer
    rrc.freqQualityEstimateQuantity_TDD  freqQualityEstimateQuantity-TDD
        Unsigned 32-bit integer
    rrc.frequency  frequency
        Unsigned 32-bit integer
        INTEGER_1_8
    rrc.frequencyBandIndicator  frequencyBandIndicator
        Unsigned 32-bit integer
        RadioFrequencyBandFDD
    rrc.frequencyBandIndicator2  frequencyBandIndicator2
        Unsigned 32-bit integer
        RadioFrequencyBandFDD2
    rrc.frequencyIndex  frequencyIndex
        Unsigned 32-bit integer
        INTEGER_1_maxMBSFNClusters
    rrc.frequencyInfo  frequencyInfo
        No value
    rrc.frequencyQualityEstimate  frequencyQualityEstimate
        Boolean
        BOOLEAN
    rrc.frequency_Band  frequency-Band
        Unsigned 32-bit integer
    rrc.frequency_band  frequency-band
        Unsigned 32-bit integer
    rrc.fullTFCS  fullTFCS
        No value
    rrc.functionType  functionType
        Unsigned 32-bit integer
        MappingFunctionType
    rrc.futurecoding  futurecoding
        Byte array
        BIT_STRING_SIZE_15
    rrc.gANSSCarrierPhaseMeasurementRequested  gANSSCarrierPhaseMeasurementRequested
        Byte array
        BIT_STRING_SIZE_8
    rrc.gANSSMultiFreqMeasurementRequested  gANSSMultiFreqMeasurementRequested
        Byte array
        BIT_STRING_SIZE_8
    rrc.gANSSPositioningMethods  gANSSPositioningMethods
        Byte array
        BIT_STRING_SIZE_16
    rrc.gANSSTimingOfCellWanted  gANSSTimingOfCellWanted
        Byte array
        BIT_STRING_SIZE_8
    rrc.gANSS_Id  gANSS-Id
        Unsigned 32-bit integer
    rrc.gANSS_Mode  gANSS-Mode
        Unsigned 32-bit integer
    rrc.gANSS_SignalId  gANSS-SignalId
        Unsigned 32-bit integer
        GANSS_Signal_Id
    rrc.gANSS_SignalIds  gANSS-SignalIds
        Byte array
        BIT_STRING_SIZE_8
    rrc.gANSS_TimeId  gANSS-TimeId
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.gANSS_TimeUncertainty  gANSS-TimeUncertainty
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.gANSS_storm_flags  gANSS-storm-flags
        No value
        GANSS_Storm_Flag
    rrc.gANSS_timeId  gANSS-timeId
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.gANSS_tod  gANSS-tod
        Unsigned 32-bit integer
        INTEGER_0_3599999
    rrc.gANSS_tod_uncertainty  gANSS-tod-uncertainty
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.gainFactorBetaC  gainFactorBetaC
        Unsigned 32-bit integer
        GainFactor
    rrc.gainFactorBetaD  gainFactorBetaD
        Unsigned 32-bit integer
        GainFactor
    rrc.gainFactorInformation  gainFactorInformation
        Unsigned 32-bit integer
    rrc.ganssAddADchoices  ganssAddADchoices
        No value
    rrc.ganssAddIonoModelReq  ganssAddIonoModelReq
        Byte array
        BIT_STRING_SIZE_2
    rrc.ganssAddNavigationModel  ganssAddNavigationModel
        Unsigned 32-bit integer
    rrc.ganssAddUTCmodel  ganssAddUTCmodel
        Unsigned 32-bit integer
    rrc.ganssAlmanac  ganssAlmanac
        Boolean
        BOOLEAN
    rrc.ganssAuxInfo  ganssAuxInfo
        Unsigned 32-bit integer
    rrc.ganssClockModel  ganssClockModel
        No value
        UE_Positioning_GANSS_AddClockModels
    rrc.ganssCodePhase  ganssCodePhase
        Unsigned 32-bit integer
        INTEGER_0_2097151
    rrc.ganssCodePhaseAmbiguity  ganssCodePhaseAmbiguity
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.ganssCodePhaseAmbiguityExt  ganssCodePhaseAmbiguityExt
        Unsigned 32-bit integer
        INTEGER_32_127
    rrc.ganssDataBitInterval  ganssDataBitInterval
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.ganssDataBits  ganssDataBits
        No value
    rrc.ganssDay  ganssDay
        Unsigned 32-bit integer
        INTEGER_0_8191
    rrc.ganssDifferentialCorrection  ganssDifferentialCorrection
        Byte array
        DGANSS_Sig_Id_Req
    rrc.ganssEOPreq  ganssEOPreq
        Unsigned 32-bit integer
    rrc.ganssGenericDataList  ganssGenericDataList
        Unsigned 32-bit integer
    rrc.ganssGenericMeasurementInfo  ganssGenericMeasurementInfo
        Unsigned 32-bit integer
    rrc.ganssID  ganssID
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.ganssID1  ganssID1
        Unsigned 32-bit integer
        AuxInfoGANSS_ID1
    rrc.ganssID3  ganssID3
        Unsigned 32-bit integer
        AuxInfoGANSS_ID3
    rrc.ganssId  ganssId
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.ganssIntegerCodePhase  ganssIntegerCodePhase
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.ganssIntegerCodePhaseExt  ganssIntegerCodePhaseExt
        Unsigned 32-bit integer
        INTEGER_64_127
    rrc.ganssIonosphericModel  ganssIonosphericModel
        Boolean
        BOOLEAN
    rrc.ganssMeasurementParameters  ganssMeasurementParameters
        Unsigned 32-bit integer
    rrc.ganssMeasurementSignalList  ganssMeasurementSignalList
        Unsigned 32-bit integer
    rrc.ganssNavigationModel  ganssNavigationModel
        Boolean
        BOOLEAN
    rrc.ganssNavigationModelAdditionalData  ganssNavigationModelAdditionalData
        No value
    rrc.ganssOrbitModel  ganssOrbitModel
        No value
        UE_Positioning_GANSS_AddOrbitModels
    rrc.ganssRealTimeIntegrity  ganssRealTimeIntegrity
        Boolean
        BOOLEAN
    rrc.ganssReferenceMeasurementInfo  ganssReferenceMeasurementInfo
        Boolean
        BOOLEAN
    rrc.ganssReferenceTime  ganssReferenceTime
        Boolean
        BOOLEAN
    rrc.ganssReferenceTimeOnly  ganssReferenceTimeOnly
        No value
    rrc.ganssRequestedGenericAssistanceDataList  ganssRequestedGenericAssistanceDataList
        Unsigned 32-bit integer
    rrc.ganssSatId  ganssSatId
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.ganssSatInfoNavList  ganssSatInfoNavList
        Unsigned 32-bit integer
        Ganss_Sat_Info_AddNavList
    rrc.ganssSatelliteInfo  ganssSatelliteInfo
        Unsigned 32-bit integer
    rrc.ganssSatelliteInfo_item  ganssSatelliteInfo item
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.ganssScheduling  ganssScheduling
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxSIB_OF_ExtGANSS_SchedulingInfo
    rrc.ganssSignalID  ganssSignalID
        Byte array
        DGANSS_Sig_Id_Req
    rrc.ganssSignalId  ganssSignalId
        Unsigned 32-bit integer
        GANSS_Signal_Id
    rrc.ganssStatusHealth  ganssStatusHealth
        Unsigned 32-bit integer
        GANSS_Status_Health
    rrc.ganssSupportIndication  ganssSupportIndication
        Unsigned 32-bit integer
    rrc.ganssTimeId  ganssTimeId
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.ganssTimeModelGNSS_GNSS  ganssTimeModelGNSS-GNSS
        Byte array
        BIT_STRING_SIZE_8
    rrc.ganssTimeModelsList  ganssTimeModelsList
        Unsigned 32-bit integer
    rrc.ganssTod  ganssTod
        Unsigned 32-bit integer
        INTEGER_0_86399
    rrc.ganssTodUncertainty  ganssTodUncertainty
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.ganssToe  ganssToe
        Unsigned 32-bit integer
        INTEGER_0_167
    rrc.ganssUTCModel  ganssUTCModel
        Boolean
        BOOLEAN
    rrc.ganssWeek  ganssWeek
        Unsigned 32-bit integer
        INTEGER_0_4095
    rrc.ganss_af_one_alm  ganss-af-one-alm
        Byte array
        BIT_STRING_SIZE_11
    rrc.ganss_af_zero_alm  ganss-af-zero-alm
        Byte array
        BIT_STRING_SIZE_14
    rrc.ganss_alm_e  ganss-alm-e
        Byte array
        BIT_STRING_SIZE_11
    rrc.ganss_delta_I_alm  ganss-delta-I-alm
        Byte array
        BIT_STRING_SIZE_11
    rrc.ganss_delta_a_sqrt_alm  ganss-delta-a-sqrt-alm
        Byte array
        BIT_STRING_SIZE_17
    rrc.ganss_e_nav  ganss-e-nav
        Byte array
        BIT_STRING_SIZE_32
    rrc.ganss_m_zero_alm  ganss-m-zero-alm
        Byte array
        BIT_STRING_SIZE_16
    rrc.ganss_omega_alm  ganss-omega-alm
        Byte array
        BIT_STRING_SIZE_16
    rrc.ganss_omega_nav  ganss-omega-nav
        Byte array
        BIT_STRING_SIZE_32
    rrc.ganss_omegadot_alm  ganss-omegadot-alm
        Byte array
        BIT_STRING_SIZE_11
    rrc.ganss_omegazero_alm  ganss-omegazero-alm
        Byte array
        BIT_STRING_SIZE_16
    rrc.ganss_prc  ganss-prc
        Signed 32-bit integer
        INTEGER_M2047_2047
    rrc.ganss_rrc  ganss-rrc
        Signed 32-bit integer
        INTEGER_M127_127
    rrc.ganss_signal_id  ganss-signal-id
        Unsigned 32-bit integer
    rrc.ganss_svhealth_alm  ganss-svhealth-alm
        Byte array
        BIT_STRING_SIZE_4
    rrc.ganss_t_a0  ganss-t-a0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrc.ganss_t_a1  ganss-t-a1
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrc.ganss_t_a2  ganss-t-a2
        Signed 32-bit integer
        INTEGER_M64_63
    rrc.ganss_timeModelreferenceTime  ganss-timeModelreferenceTime
        Unsigned 32-bit integer
        INTEGER_0_37799
    rrc.ganss_tod  ganss-tod
        Unsigned 32-bit integer
        INTEGER_0_59
    rrc.ganss_wk_number  ganss-wk-number
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.ganssreferenceLocation  ganssreferenceLocation
        Boolean
        BOOLEAN
    rrc.geranIu_Message  geranIu-Message
        Unsigned 32-bit integer
    rrc.geranIu_MessageList  geranIu-MessageList
        No value
    rrc.geranIu_Messages  geranIu-Messages
        Unsigned 32-bit integer
        GERANIu_MessageList
    rrc.geranIu_RadioAccessCapability  geranIu-RadioAccessCapability
        Byte array
    rrc.geran_SystemInfoType  geran-SystemInfoType
        Unsigned 32-bit integer
    rrc.gloAkmDeltaTA  gloAkmDeltaTA
        Byte array
        BIT_STRING_SIZE_22
    rrc.gloAlmCA  gloAlmCA
        Byte array
        BIT_STRING_SIZE_1
    rrc.gloAlmDeltaIA  gloAlmDeltaIA
        Byte array
        BIT_STRING_SIZE_18
    rrc.gloAlmDeltaTdotA  gloAlmDeltaTdotA
        Byte array
        BIT_STRING_SIZE_7
    rrc.gloAlmEpsilonA  gloAlmEpsilonA
        Byte array
        BIT_STRING_SIZE_15
    rrc.gloAlmHA  gloAlmHA
        Byte array
        BIT_STRING_SIZE_5
    rrc.gloAlmLambdaA  gloAlmLambdaA
        Byte array
        BIT_STRING_SIZE_21
    rrc.gloAlmMA  gloAlmMA
        Byte array
        BIT_STRING_SIZE_2
    rrc.gloAlmNA  gloAlmNA
        Byte array
        BIT_STRING_SIZE_11
    rrc.gloAlmOmegaA  gloAlmOmegaA
        Byte array
        BIT_STRING_SIZE_16
    rrc.gloAlmTauA  gloAlmTauA
        Byte array
        BIT_STRING_SIZE_10
    rrc.gloAlmTlambdaA  gloAlmTlambdaA
        Byte array
        BIT_STRING_SIZE_21
    rrc.gloAlmnA  gloAlmnA
        Byte array
        BIT_STRING_SIZE_5
    rrc.gloDeltaTau  gloDeltaTau
        Byte array
        BIT_STRING_SIZE_5
    rrc.gloEn  gloEn
        Byte array
        BIT_STRING_SIZE_5
    rrc.gloGamma  gloGamma
        Byte array
        BIT_STRING_SIZE_11
    rrc.gloM  gloM
        Byte array
        BIT_STRING_SIZE_2
    rrc.gloP1  gloP1
        Byte array
        BIT_STRING_SIZE_2
    rrc.gloP2  gloP2
        Byte array
        BIT_STRING_SIZE_1
    rrc.gloTau  gloTau
        Byte array
        BIT_STRING_SIZE_22
    rrc.gloX  gloX
        Byte array
        BIT_STRING_SIZE_27
    rrc.gloXdot  gloXdot
        Byte array
        BIT_STRING_SIZE_24
    rrc.gloXdotdot  gloXdotdot
        Byte array
        BIT_STRING_SIZE_5
    rrc.gloY  gloY
        Byte array
        BIT_STRING_SIZE_27
    rrc.gloYdot  gloYdot
        Byte array
        BIT_STRING_SIZE_24
    rrc.gloYdotdot  gloYdotdot
        Byte array
        BIT_STRING_SIZE_5
    rrc.gloZ  gloZ
        Byte array
        BIT_STRING_SIZE_27
    rrc.gloZdot  gloZdot
        Byte array
        BIT_STRING_SIZE_24
    rrc.gloZdotdot  gloZdotdot
        Byte array
        BIT_STRING_SIZE_5
    rrc.glonassClockModel  glonassClockModel
        No value
    rrc.glonassECEF  glonassECEF
        No value
        NavModel_GLONASSecef
    rrc.gnss_to_id  gnss-to-id
        Unsigned 32-bit integer
    rrc.gps_BitNumber  gps-BitNumber
        Unsigned 32-bit integer
        INTEGER_0_3
    rrc.gps_MeasurementParamList  gps-MeasurementParamList
        Unsigned 32-bit integer
    rrc.gps_ReferenceTime  gps-ReferenceTime
        Unsigned 32-bit integer
        GPS_TOW_1msec
    rrc.gps_ReferenceTimeOnly  gps-ReferenceTimeOnly
        Unsigned 32-bit integer
        GPS_TOW_1msec
    rrc.gps_TOW  gps-TOW
        Unsigned 32-bit integer
        GPS_TOW_1sec
    rrc.gps_TOW_AssistList  gps-TOW-AssistList
        Unsigned 32-bit integer
    rrc.gps_TimingOfCellWanted  gps-TimingOfCellWanted
        Boolean
        BOOLEAN
    rrc.gps_Toe  gps-Toe
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.gps_Week  gps-Week
        Unsigned 32-bit integer
        INTEGER_0_1023
    rrc.gps_tow_1msec  gps-tow-1msec
        Unsigned 32-bit integer
    rrc.groupIdentity  groupIdentity
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxURNTI_Group_OF_GroupReleaseInformation
    rrc.groupReleaseInformation  groupReleaseInformation
        No value
    rrc.gsm  gsm
        No value
    rrc.gsm1900  gsm1900
        Boolean
        BOOLEAN
    rrc.gsm900  gsm900
        Boolean
        BOOLEAN
    rrc.gsmCellGroup  gsmCellGroup
        No value
        GSM_CellGroup
    rrc.gsmLowRangeUARFCN  gsmLowRangeUARFCN
        Unsigned 32-bit integer
        UARFCN
    rrc.gsmSecurityCapability  gsmSecurityCapability
        Byte array
    rrc.gsmUpRangeUARFCN  gsmUpRangeUARFCN
        Unsigned 32-bit integer
        UARFCN
    rrc.gsm_BA_Range_List  gsm-BA-Range-List
        Unsigned 32-bit integer
    rrc.gsm_CarrierRSSI  gsm-CarrierRSSI
        Byte array
    rrc.gsm_Carrier_RSSI  gsm-Carrier-RSSI
        Boolean
        BOOLEAN
    rrc.gsm_CellGroup  gsm-CellGroup
        No value
    rrc.gsm_Classmark2  gsm-Classmark2
        Byte array
    rrc.gsm_Classmark3  gsm-Classmark3
        Byte array
    rrc.gsm_MAP  gsm-MAP
        Byte array
        NAS_SystemInformationGSM_MAP
    rrc.gsm_MAP_RAB_Identity  gsm-MAP-RAB-Identity
        Byte array
        BIT_STRING_SIZE_8
    rrc.gsm_MAP_and_ANSI_41  gsm-MAP-and-ANSI-41
        No value
    rrc.gsm_MS_RadioAccessCapability  gsm-MS-RadioAccessCapability
        Byte array
    rrc.gsm_Map_IDNNS  gsm-Map-IDNNS
        No value
    rrc.gsm_Measurements  gsm-Measurements
        No value
    rrc.gsm_MessageList  gsm-MessageList
        No value
        T_gsm_MessageList_r3
    rrc.gsm_Messages  gsm-Messages
        Unsigned 32-bit integer
        GSM_MessageList
    rrc.gsm_PriorityInfoList  gsm-PriorityInfoList
        Unsigned 32-bit integer
    rrc.gsm_TargetCellInfoList  gsm-TargetCellInfoList
        Unsigned 32-bit integer
    rrc.gsm_message  gsm-message
        Unsigned 32-bit integer
    rrc.hARQInfoForSPS  hARQInfoForSPS
        No value
    rrc.hNBName  hNBName
        Byte array
    rrc.hSDSCH_physical_layer_category  hSDSCH-physical-layer-category
        Unsigned 32-bit integer
    rrc.hSDSCH_physical_layer_category_extension  hSDSCH-physical-layer-category-extension
        Unsigned 32-bit integer
    rrc.hS_SCCHChannelisationCodeInfo  hS-SCCHChannelisationCodeInfo
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxHSSCCHs_OF_HS_SCCH_Codes
    rrc.hS_SCCH_DRX_Cycle  hS-SCCH-DRX-Cycle
        Unsigned 32-bit integer
        ControlChannelDRXCycle_TDD128
    rrc.hS_SCCH_DRX_InactivityThreshold  hS-SCCH-DRX-InactivityThreshold
        Unsigned 32-bit integer
        HS_SCCH_DRX_InactivityThreshold_TDD128
    rrc.hS_SCCH_DRX_Offset  hS-SCCH-DRX-Offset
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.hS_SCCH_Drx_Info  hS-SCCH-Drx-Info
        No value
        HS_SCCH_DRX_Info_TDD128
    rrc.hS_SCCH_Index  hS-SCCH-Index
        Unsigned 32-bit integer
        INTEGER_0_maxHSSCCHs_1
    rrc.hS_SCCH_SetConfiguration  hS-SCCH-SetConfiguration
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxHSSCCHs_OF_HS_SCCH_TDD384
    rrc.hS_SCCH_tpc_step_size  hS-SCCH-tpc-step-size
        Unsigned 32-bit integer
    rrc.hS_SICH_Info  hS-SICH-Info
        No value
        HS_SICH_Configuration_TDD128_r6
    rrc.handoverFromUTRANCommand_CDMA2000  handoverFromUTRANCommand-CDMA2000
        Unsigned 32-bit integer
    rrc.handoverFromUTRANCommand_CDMA2000_r3  handoverFromUTRANCommand-CDMA2000-r3
        No value
        HandoverFromUTRANCommand_CDMA2000_r3_IEs
    rrc.handoverFromUTRANCommand_CDMA2000_r3_add_ext  handoverFromUTRANCommand-CDMA2000-r3-add-ext
        Byte array
        BIT_STRING
    rrc.handoverFromUTRANCommand_EUTRA  handoverFromUTRANCommand-EUTRA
        No value
    rrc.handoverFromUTRANCommand_EUTRA_r8  handoverFromUTRANCommand-EUTRA-r8
        No value
        HandoverFromUTRANCommand_EUTRA_r8_IEs
    rrc.handoverFromUTRANCommand_EUTRA_r8_add_ext  handoverFromUTRANCommand-EUTRA-r8-add-ext
        Byte array
        BIT_STRING
    rrc.handoverFromUTRANCommand_GERANIu  handoverFromUTRANCommand-GERANIu
        No value
    rrc.handoverFromUTRANCommand_GERANIu_r5  handoverFromUTRANCommand-GERANIu-r5
        No value
        HandoverFromUTRANCommand_GERANIu_r5_IEs
    rrc.handoverFromUTRANCommand_GSM  handoverFromUTRANCommand-GSM
        Unsigned 32-bit integer
    rrc.handoverFromUTRANCommand_GSM_r3  handoverFromUTRANCommand-GSM-r3
        No value
        HandoverFromUTRANCommand_GSM_r3_IEs
    rrc.handoverFromUTRANCommand_GSM_r3_add_ext  handoverFromUTRANCommand-GSM-r3-add-ext
        Byte array
        BIT_STRING
    rrc.handoverFromUTRANCommand_GSM_r6  handoverFromUTRANCommand-GSM-r6
        No value
        HandoverFromUTRANCommand_GSM_r6_IEs
    rrc.handoverFromUTRANCommand_GSM_r6_add_ext  handoverFromUTRANCommand-GSM-r6-add-ext
        Byte array
        BIT_STRING
    rrc.handoverFromUTRANCommand_GSM_v690ext  handoverFromUTRANCommand-GSM-v690ext
        No value
        HandoverFromUTRANCommand_GSM_v690ext_IEs
    rrc.handoverFromUTRANCommand_GSM_v860ext  handoverFromUTRANCommand-GSM-v860ext
        No value
        HandoverFromUTRANCommand_GSM_v860ext_IEs
    rrc.handoverFromUTRANFailure  handoverFromUTRANFailure
        No value
    rrc.handoverFromUTRANFailure_r3_add_ext  handoverFromUTRANFailure-r3-add-ext
        Byte array
        BIT_STRING
    rrc.handoverFromUTRANFailure_v590ext  handoverFromUTRANFailure-v590ext
        No value
        HandoverFromUtranFailure_v590ext_IEs
    rrc.handoverFromUTRANFailure_v860ext  handoverFromUTRANFailure-v860ext
        No value
        HandoverFromUtranFailure_v860ext_IEs
    rrc.handoverToUTRANCommand_r3  handoverToUTRANCommand-r3
        No value
        HandoverToUTRANCommand_r3_IEs
    rrc.handoverToUTRANCommand_r4  handoverToUTRANCommand-r4
        No value
        HandoverToUTRANCommand_r4_IEs
    rrc.handoverToUTRANCommand_r5  handoverToUTRANCommand-r5
        No value
        HandoverToUTRANCommand_r5_IEs
    rrc.handoverToUTRANCommand_r6  handoverToUTRANCommand-r6
        No value
        HandoverToUTRANCommand_r6_IEs
    rrc.handoverToUTRANCommand_r7  handoverToUTRANCommand-r7
        No value
        HandoverToUTRANCommand_r7_IEs
    rrc.handoverToUTRANCommand_r8  handoverToUTRANCommand-r8
        No value
        HandoverToUTRANCommand_r8_IEs
    rrc.handoverToUTRANCommand_r9  handoverToUTRANCommand-r9
        No value
        HandoverToUTRANCommand_r9_IEs
    rrc.handoverToUTRANCommand_v6b0ext  handoverToUTRANCommand-v6b0ext
        No value
        HandoverToUTRANCommand_v6b0ext_IEs
    rrc.handoverToUTRANCommand_v780ext  handoverToUTRANCommand-v780ext
        No value
        HandoverToUTRANCommand_v780ext_IEs
    rrc.handoverToUTRANCommand_v7d0ext  handoverToUTRANCommand-v7d0ext
        No value
        HandoverToUTRANCommand_v7d0ext_IEs
    rrc.handoverToUTRANCommand_v820ext  handoverToUTRANCommand-v820ext
        No value
        HandoverToUTRANCommand_v820ext_IEs
    rrc.handoverToUTRANCommand_v890ext  handoverToUTRANCommand-v890ext
        No value
        HandoverToUTRANCommand_v890ext_IEs
    rrc.handoverToUTRANCommand_v8a0ext  handoverToUTRANCommand-v8a0ext
        No value
        HandoverToUTRANCommand_v8a0ext_IEs
    rrc.handoverToUTRANComplete  handoverToUTRANComplete
        No value
    rrc.handoverToUTRANComplete_r3_add_ext  handoverToUTRANComplete-r3-add-ext
        Byte array
        BIT_STRING
    rrc.happyBit_DelayCondition  happyBit-DelayCondition
        Unsigned 32-bit integer
    rrc.harqInfo  harqInfo
        No value
        HARQ_Info_r7
    rrc.harq_Info  harq-Info
        Unsigned 32-bit integer
    rrc.harq_MaximumNumberOfRetransmissions  harq-MaximumNumberOfRetransmissions
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.harq_Preamble_Mode  harq-Preamble-Mode
        Unsigned 32-bit integer
    rrc.harq_SystemInfo  harq-SystemInfo
        No value
        HARQ_Info
    rrc.harq_power_offset  harq-power-offset
        Unsigned 32-bit integer
        INTEGER_0_6
    rrc.harq_retransmission_timer  harq-retransmission-timer
        Unsigned 32-bit integer
    rrc.hcr_r5_SpecificInfo  hcr-r5-SpecificInfo
        No value
    rrc.hcs_CellReselectInformation  hcs-CellReselectInformation
        No value
        HCS_CellReselectInformation_RSCP
    rrc.hcs_NeighbouringCellInformation_ECN0  hcs-NeighbouringCellInformation-ECN0
        No value
    rrc.hcs_NeighbouringCellInformation_RSCP  hcs-NeighbouringCellInformation-RSCP
        No value
    rrc.hcs_PRIO  hcs-PRIO
        Unsigned 32-bit integer
    rrc.hcs_ServingCellInformation  hcs-ServingCellInformation
        No value
    rrc.hcs_not_used  hcs-not-used
        No value
        T_hcs_not_used
    rrc.hcs_used  hcs-used
        No value
    rrc.headerCompressionInfoList  headerCompressionInfoList
        Unsigned 32-bit integer
    rrc.horizontalAccuracy  horizontalAccuracy
        Byte array
        UE_Positioning_Accuracy
    rrc.horizontalSpeed  horizontalSpeed
        Unsigned 32-bit integer
        INTEGER_0_2047
    rrc.horizontalSpeedUncertainty  horizontalSpeedUncertainty
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.horizontalUncertaintySpeed  horizontalUncertaintySpeed
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.horizontalVelocity  horizontalVelocity
        No value
    rrc.horizontalVelocityWithUncertainty  horizontalVelocityWithUncertainty
        No value
    rrc.horizontalWithVerticalVelocity  horizontalWithVerticalVelocity
        No value
    rrc.horizontalWithVerticalVelocityAndUncertainty  horizontalWithVerticalVelocityAndUncertainty
        No value
    rrc.horizontal_Accuracy  horizontal-Accuracy
        Byte array
        UE_Positioning_Accuracy
    rrc.hs_DSCH_TBSizeTable  hs-DSCH-TBSizeTable
        Unsigned 32-bit integer
    rrc.hs_PDSCH_Midamble_Configuration  hs-PDSCH-Midamble-Configuration
        No value
        HS_PDSCH_Midamble_Configuration_TDD128
    rrc.hs_PDSCH_Midamble_Configuration_tdd128  hs-PDSCH-Midamble-Configuration-tdd128
        No value
    rrc.hs_SCCH_SetConfiguration  hs-SCCH-SetConfiguration
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxHSSCCHs_OF_HS_SCCH_TDD128_r6
    rrc.hs_SCCH_TDD128_MultiCarrier  hs-SCCH-TDD128-MultiCarrier
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxHSSCCHs_OF_HS_SCCH_TDD128_MultiCarrier
    rrc.hs_SICH_PowerControl  hs-SICH-PowerControl
        No value
        HS_SICH_Power_Control_Info_TDD384
    rrc.hs_SICH_PowerControl_Info  hs-SICH-PowerControl-Info
        No value
        HS_SICH_Power_Control_Info_TDD384
    rrc.hs_dsch_CommonSysInfo  hs-dsch-CommonSysInfo
        No value
    rrc.hs_dsch_CommonSystemInformation  hs-dsch-CommonSystemInformation
        No value
    rrc.hs_dsch_DrxBurstFach  hs-dsch-DrxBurstFach
        Unsigned 32-bit integer
    rrc.hs_dsch_DrxCellfach_info  hs-dsch-DrxCellfach-info
        No value
    rrc.hs_dsch_DrxCycleFach  hs-dsch-DrxCycleFach
        Unsigned 32-bit integer
    rrc.hs_dsch_PagingSystemInformation  hs-dsch-PagingSystemInformation
        No value
    rrc.hs_dsch_RxPatternList  hs-dsch-RxPatternList
        Unsigned 32-bit integer
        HS_DSCH_RxPatternList_TDD128
    rrc.hs_dsch_SPS_Info  hs-dsch-SPS-Info
        No value
        HS_DSCH_SPS_Information_TDD128
    rrc.hs_dsch_SPS_Operation  hs-dsch-SPS-Operation
        Unsigned 32-bit integer
    rrc.hs_dsch_TBSizeIndex  hs-dsch-TBSizeIndex
        Unsigned 32-bit integer
        INTEGER_1_63
    rrc.hs_dsch_TbsList  hs-dsch-TbsList
        Unsigned 32-bit integer
        HS_DSCH_TbsList_TDD128
    rrc.hs_pdschChannelisationCode  hs-pdschChannelisationCode
        Unsigned 32-bit integer
        INTEGER_1_15
    rrc.hs_pdsch_CodeIndex  hs-pdsch-CodeIndex
        Unsigned 32-bit integer
        INTEGER_1_15
    rrc.hs_pdsch_MidambleConfiguration  hs-pdsch-MidambleConfiguration
        No value
        HS_PDSCH_Midamble_Configuration_TDD128
    rrc.hs_scchLessOperation  hs-scchLessOperation
        Unsigned 32-bit integer
    rrc.hs_scch_Info  hs-scch-Info
        No value
    rrc.hs_scch_LessInfo  hs-scch-LessInfo
        No value
        HS_SCCH_LessInfo_r7
    rrc.hs_scch_LessSecondCodeSupport  hs-scch-LessSecondCodeSupport
        Boolean
        BOOLEAN
    rrc.hs_scch_LessTFS  hs-scch-LessTFS
        Unsigned 32-bit integer
        HS_SCCH_LessTFSList
    rrc.hs_scch_LessTFSI  hs-scch-LessTFSI
        Unsigned 32-bit integer
        INTEGER_1_90
    rrc.hs_scch_SystemInfo  hs-scch-SystemInfo
        No value
    rrc.hs_scch_SystemInfo_tdd128  hs-scch-SystemInfo-tdd128
        No value
    rrc.hs_sich_ConstantValue  hs-sich-ConstantValue
        Signed 32-bit integer
        ConstantValue
    rrc.hs_sich_Index  hs-sich-Index
        Unsigned 32-bit integer
        INTEGER_0_maxHSSICH_TDD128_1
    rrc.hs_sich_List  hs-sich-List
        Unsigned 32-bit integer
        HS_SICH_List_TDD128
    rrc.hs_sich_ReferenceSignalInfoList  hs-sich-ReferenceSignalInfoList
        Unsigned 32-bit integer
    rrc.hs_sich_configuration  hs-sich-configuration
        No value
        HS_SICH_Configuration_TDD128
    rrc.hsdpa_AssociatedPichInfo  hsdpa-AssociatedPichInfo
        Unsigned 32-bit integer
        PICH_Info
    rrc.hsdpa_CellIndicator  hsdpa-CellIndicator
        Unsigned 32-bit integer
    rrc.hsdsch  hsdsch
        Unsigned 32-bit integer
        MAC_d_FlowIdentity
    rrc.hsdschReception_CellFach  hsdschReception-CellFach
        Unsigned 32-bit integer
    rrc.hsdschReception_CellUraPch  hsdschReception-CellUraPch
        Unsigned 32-bit integer
    rrc.hsdsch_mac_d_flow_id  hsdsch-mac-d-flow-id
        Unsigned 32-bit integer
        MAC_d_FlowIdentity
    rrc.hsdsch_mac_ehs_QueueId  hsdsch-mac-ehs-QueueId
        Unsigned 32-bit integer
        MAC_ehs_QueueId
    rrc.hsdsch_physical_layer_category  hsdsch-physical-layer-category
        Unsigned 32-bit integer
    rrc.hsdsch_physical_layer_category_ext  hsdsch-physical-layer-category-ext
        Unsigned 32-bit integer
    rrc.hsdsch_physical_layer_category_ext2  hsdsch-physical-layer-category-ext2
        Unsigned 32-bit integer
    rrc.hsdsch_physical_layer_category_ext3  hsdsch-physical-layer-category-ext3
        Unsigned 32-bit integer
    rrc.hspdschReception_CellFach  hspdschReception-CellFach
        Unsigned 32-bit integer
    rrc.hsscchlessHsdschOperation  hsscchlessHsdschOperation
        Unsigned 32-bit integer
    rrc.hysteresis  hysteresis
        Unsigned 32-bit integer
        HysteresisInterFreq
    rrc.i0  i0
        Byte array
        BIT_STRING_SIZE_32
    rrc.iDot  iDot
        Byte array
        BIT_STRING_SIZE_14
    rrc.iMEI  iMEI
        No value
    rrc.iMSIcauseUEinitiatedEvent  iMSIcauseUEinitiatedEvent
        No value
    rrc.iMSIresponsetopaging  iMSIresponsetopaging
        No value
    rrc.i_zero_nav  i-zero-nav
        Byte array
        BIT_STRING_SIZE_32
    rrc.idleInterval  idleInterval
        Boolean
        BOOLEAN
    rrc.idleIntervalInfo  idleIntervalInfo
        No value
    rrc.idleIntervalMeasCapabEUTRAList  idleIntervalMeasCapabEUTRAList
        Unsigned 32-bit integer
    rrc.idleModePLMNIdentities  idleModePLMNIdentities
        No value
        PLMNIdentitiesOfNeighbourCells
    rrc.idleModePLMNIdentitiesSIB11bis  idleModePLMNIdentitiesSIB11bis
        No value
        PLMNIdentitiesOfNeighbourCells
    rrc.idot_nav  idot-nav
        Byte array
        BIT_STRING_SIZE_14
    rrc.ie_ValueNotComprehended  ie-ValueNotComprehended
        No value
        IdentificationOfReceivedMessage
    rrc.imb384  imb384
        No value
    rrc.imb_Indication  imb-Indication
        Unsigned 32-bit integer
    rrc.imei  imei
        Unsigned 32-bit integer
    rrc.implementationSpecificParams  implementationSpecificParams
        Byte array
    rrc.implicit  implicit
        No value
    rrc.imsEmergencySupportIndicator  imsEmergencySupportIndicator
        Unsigned 32-bit integer
    rrc.imsi  imsi
        Unsigned 32-bit integer
        IMSI_GSM_MAP
    rrc.imsi_DS_41  imsi-DS-41
        Byte array
    rrc.imsi_GSM_MAP  imsi-GSM-MAP
        Unsigned 32-bit integer
    rrc.imsi_and_ESN_DS_41  imsi-and-ESN-DS-41
        No value
    rrc.inSequenceDelivery  inSequenceDelivery
        Boolean
        BOOLEAN
    rrc.inactive  inactive
        No value
    rrc.includeInSchedulingInfo  includeInSchedulingInfo
        Boolean
        BOOLEAN
    rrc.incompatibleSimultaneousReconfiguration  incompatibleSimultaneousReconfiguration
        No value
    rrc.indicateChangeInSelectedServices  indicateChangeInSelectedServices
        Boolean
        BOOLEAN
    rrc.individualDL_CCTrCH_InfoList  individualDL-CCTrCH-InfoList
        Unsigned 32-bit integer
    rrc.individualTS_InterferenceList  individualTS-InterferenceList
        Unsigned 32-bit integer
    rrc.individualTimeslotInfo  individualTimeslotInfo
        No value
    rrc.individualTimeslotLCR_Ext  individualTimeslotLCR-Ext
        No value
        IndividualTimeslotInfo_LCR_r4_ext
    rrc.individualUL_CCTrCH_InfoList  individualUL-CCTrCH-InfoList
        Unsigned 32-bit integer
    rrc.individuallySignalled  individuallySignalled
        No value
    rrc.initialDirectTransfer  initialDirectTransfer
        No value
    rrc.initialDirectTransfer_r3_add_ext  initialDirectTransfer-r3-add-ext
        Byte array
    rrc.initialDirectTransfer_v3a0ext  initialDirectTransfer-v3a0ext
        No value
    rrc.initialDirectTransfer_v590ext  initialDirectTransfer-v590ext
        No value
    rrc.initialDirectTransfer_v690ext  initialDirectTransfer-v690ext
        No value
        InitialDirectTransfer_v690ext_IEs
    rrc.initialDirectTransfer_v770ext  initialDirectTransfer-v770ext
        No value
        InitialDirectTransfer_v770ext_IEs
    rrc.initialDirectTransfer_v7g0ext  initialDirectTransfer-v7g0ext
        No value
        InitialDirectTransfer_v7g0ext_IEs
    rrc.initialDirectTransfer_v860ext  initialDirectTransfer-v860ext
        No value
        InitialDirectTransfer_v860ext_IEs
    rrc.initialPriorityDelayList  initialPriorityDelayList
        Unsigned 32-bit integer
    rrc.initialRxPatternIndex  initialRxPatternIndex
        Unsigned 32-bit integer
        INTEGER_0_maxRxPatternForHSDSCH_TDD128_1
    rrc.initialSPSInfoForEDCH  initialSPSInfoForEDCH
        No value
    rrc.initialSPSInfoForHSDSCH  initialSPSInfoForHSDSCH
        No value
    rrc.initialServingGrantValue  initialServingGrantValue
        Unsigned 32-bit integer
        INTEGER_0_37
    rrc.initialTfsIndex  initialTfsIndex
        Unsigned 32-bit integer
        INTEGER_0_maxTbsForHSDSCH_TDD128_1
    rrc.initialTxPatternIndex  initialTxPatternIndex
        Unsigned 32-bit integer
        INTEGER_0_maxEDCHTxPattern_TDD128_1
    rrc.initialUE_Identity  initialUE-Identity
        Unsigned 32-bit integer
    rrc.initialise  initialise
        No value
    rrc.integerCodePhase  integerCodePhase
        Unsigned 32-bit integer
        INTEGER_0_19
    rrc.integrityCheckInfo  integrityCheckInfo
        No value
    rrc.integrityProtInitNumber  integrityProtInitNumber
        Byte array
    rrc.integrityProtectionAlgorithm  integrityProtectionAlgorithm
        Unsigned 32-bit integer
    rrc.integrityProtectionAlgorithmCap  integrityProtectionAlgorithmCap
        Byte array
    rrc.integrityProtectionModeCommand  integrityProtectionModeCommand
        Unsigned 32-bit integer
    rrc.integrityProtectionModeInfo  integrityProtectionModeInfo
        No value
    rrc.integrityProtectionStatus  integrityProtectionStatus
        Unsigned 32-bit integer
    rrc.interBandFrequencyIndex  interBandFrequencyIndex
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.interBandMeasurements  interBandMeasurements
        Unsigned 32-bit integer
    rrc.interFreqCellID  interFreqCellID
        Unsigned 32-bit integer
    rrc.interFreqCellIndication_SIB11  interFreqCellIndication-SIB11
        Unsigned 32-bit integer
        INTEGER_0_1
    rrc.interFreqCellIndication_SIB12  interFreqCellIndication-SIB12
        Unsigned 32-bit integer
        INTEGER_0_1
    rrc.interFreqCellInfoList  interFreqCellInfoList
        No value
    rrc.interFreqCellInfoSI_List  interFreqCellInfoSI-List
        No value
        InterFreqCellInfoSI_List_RSCP
    rrc.interFreqCellList  interFreqCellList
        Unsigned 32-bit integer
    rrc.interFreqCellMeasuredResultsList  interFreqCellMeasuredResultsList
        Unsigned 32-bit integer
    rrc.interFreqEventList  interFreqEventList
        Unsigned 32-bit integer
    rrc.interFreqEventResults  interFreqEventResults
        No value
    rrc.interFreqEventResults_LCR  interFreqEventResults-LCR
        No value
        InterFreqEventResults_LCR_r4_ext
    rrc.interFreqMeasQuantity  interFreqMeasQuantity
        No value
    rrc.interFreqMeasuredResultsList  interFreqMeasuredResultsList
        Unsigned 32-bit integer
    rrc.interFreqMeasurementSysInfo  interFreqMeasurementSysInfo
        No value
        InterFreqMeasurementSysInfo_RSCP
    rrc.interFreqRACHRepCellsList  interFreqRACHRepCellsList
        Unsigned 32-bit integer
    rrc.interFreqRACHReportingInfo  interFreqRACHReportingInfo
        No value
    rrc.interFreqRACHReportingThreshold  interFreqRACHReportingThreshold
        Signed 32-bit integer
        Threshold
    rrc.interFreqRepQuantityRACH_FDD  interFreqRepQuantityRACH-FDD
        Unsigned 32-bit integer
    rrc.interFreqRepQuantityRACH_TDDList  interFreqRepQuantityRACH-TDDList
        Unsigned 32-bit integer
    rrc.interFreqReportingCriteria  interFreqReportingCriteria
        No value
    rrc.interFreqReportingQuantity  interFreqReportingQuantity
        No value
    rrc.interFreqSIAcquisition  interFreqSIAcquisition
        No value
    rrc.interFreqSetUpdate  interFreqSetUpdate
        Unsigned 32-bit integer
        UE_AutonomousUpdateMode
    rrc.interFrequencyMeasuredResultsList  interFrequencyMeasuredResultsList
        Unsigned 32-bit integer
        InterFrequencyMeasuredResultsList_v590ext
    rrc.interFrequencyMeasurement  interFrequencyMeasurement
        No value
    rrc.interFrequencyTreselectionScalingFactor  interFrequencyTreselectionScalingFactor
        Unsigned 32-bit integer
        TreselectionScalingFactor
    rrc.interRATCellID  interRATCellID
        Unsigned 32-bit integer
    rrc.interRATCellIndividualOffset  interRATCellIndividualOffset
        Signed 32-bit integer
    rrc.interRATCellInfoIndication  interRATCellInfoIndication
        Unsigned 32-bit integer
    rrc.interRATCellInfoIndication_r6  interRATCellInfoIndication-r6
        Unsigned 32-bit integer
        InterRATCellInfoIndication
    rrc.interRATCellInfoList  interRATCellInfoList
        No value
    rrc.interRATEventList  interRATEventList
        Unsigned 32-bit integer
    rrc.interRATEventResults  interRATEventResults
        No value
    rrc.interRATHandoverInfo  interRATHandoverInfo
        Unsigned 32-bit integer
        InterRATHandoverInfoWithInterRATCapabilities_r3
    rrc.interRATHandoverInfoWithInterRATCapabilities_v390ext  interRATHandoverInfoWithInterRATCapabilities-v390ext
        No value
        InterRATHandoverInfoWithInterRATCapabilities_v390ext_IEs
    rrc.interRATHandoverInfoWithInterRATCapabilities_v690ext  interRATHandoverInfoWithInterRATCapabilities-v690ext
        No value
        InterRATHandoverInfoWithInterRATCapabilities_v690ext_IEs
    rrc.interRATHandoverInfoWithInterRATCapabilities_v860ext  interRATHandoverInfoWithInterRATCapabilities-v860ext
        No value
        InterRATHandoverInfoWithInterRATCapabilities_v860ext_IEs
    rrc.interRATHandoverInfoWithInterRATCapabilities_v920ext  interRATHandoverInfoWithInterRATCapabilities-v920ext
        No value
        InterRATHandoverInfoWithInterRATCapabilities_v920ext_IEs
    rrc.interRATHandoverInfo_r3  interRATHandoverInfo-r3
        No value
        InterRATHandoverInfoWithInterRATCapabilities_r3_IEs
    rrc.interRATHandoverInfo_r3_add_ext  interRATHandoverInfo-r3-add-ext
        Byte array
    rrc.interRATHandoverInfo_v390ext  interRATHandoverInfo-v390ext
        No value
        InterRATHandoverInfo_v390ext_IEs
    rrc.interRATHandoverInfo_v3a0ext  interRATHandoverInfo-v3a0ext
        No value
        InterRATHandoverInfo_v3a0ext_IEs
    rrc.interRATHandoverInfo_v3d0ext  interRATHandoverInfo-v3d0ext
        No value
        InterRATHandoverInfo_v3d0ext_IEs
    rrc.interRATHandoverInfo_v3g0ext  interRATHandoverInfo-v3g0ext
        No value
        InterRATHandoverInfo_v3g0ext_IEs
    rrc.interRATHandoverInfo_v4b0ext  interRATHandoverInfo-v4b0ext
        No value
        InterRATHandoverInfo_v4b0ext_IEs
    rrc.interRATHandoverInfo_v4d0ext  interRATHandoverInfo-v4d0ext
        No value
        InterRATHandoverInfo_v4d0ext_IEs
    rrc.interRATHandoverInfo_v590ext  interRATHandoverInfo-v590ext
        No value
        InterRATHandoverInfo_v590ext_IEs
    rrc.interRATHandoverInfo_v690ext  interRATHandoverInfo-v690ext
        No value
        InterRATHandoverInfo_v690ext_IEs
    rrc.interRATHandoverInfo_v690ext1  interRATHandoverInfo-v690ext1
        No value
        InterRATHandoverInfo_v690ext1_IEs
    rrc.interRATHandoverInfo_v6b0ext  interRATHandoverInfo-v6b0ext
        No value
        InterRATHandoverInfo_v6b0ext_IEs
    rrc.interRATHandoverInfo_v6e0ext  interRATHandoverInfo-v6e0ext
        No value
        InterRATHandoverInfo_v6e0ext_IEs
    rrc.interRATHandoverInfo_v770ext  interRATHandoverInfo-v770ext
        No value
        InterRATHandoverInfo_v770ext_IEs
    rrc.interRATHandoverInfo_v790ext  interRATHandoverInfo-v790ext
        No value
        InterRATHandoverInfo_v790ext_IEs
    rrc.interRATHandoverInfo_v7e0ext  interRATHandoverInfo-v7e0ext
        No value
        InterRATHandoverInfo_v7e0ext_IEs
    rrc.interRATHandoverInfo_v7f0ext  interRATHandoverInfo-v7f0ext
        No value
        InterRATHandoverInfo_v7f0ext_IEs
    rrc.interRATHandoverInfo_v860ext  interRATHandoverInfo-v860ext
        No value
        InterRATHandoverInfo_v860ext_IEs
    rrc.interRATHandoverInfo_v880ext  interRATHandoverInfo-v880ext
        No value
        InterRATHandoverInfo_v880ext_IEs
    rrc.interRATHandoverInfo_v920ext  interRATHandoverInfo-v920ext
        No value
        InterRATHandoverInfo_v920ext_IEs
    rrc.interRATInfo  interRATInfo
        Unsigned 32-bit integer
    rrc.interRATMeasQuantity  interRATMeasQuantity
        No value
    rrc.interRATMeasuredResultsList  interRATMeasuredResultsList
        Unsigned 32-bit integer
    rrc.interRATMeasurement  interRATMeasurement
        No value
    rrc.interRATMeasurementObjects  interRATMeasurementObjects
        Unsigned 32-bit integer
    rrc.interRATMeasurementSysInfo  interRATMeasurementSysInfo
        No value
        InterRATMeasurementSysInfo_B
    rrc.interRATMessage  interRATMessage
        Unsigned 32-bit integer
    rrc.interRATReportingCriteria  interRATReportingCriteria
        No value
    rrc.interRATReportingQuantity  interRATReportingQuantity
        No value
    rrc.interRATTreselectionScalingFactor  interRATTreselectionScalingFactor
        Unsigned 32-bit integer
        TreselectionScalingFactor
    rrc.interRAT_ChangeFailureCause  interRAT-ChangeFailureCause
        Unsigned 32-bit integer
    rrc.interRAT_HO_FailureCause  interRAT-HO-FailureCause
        Unsigned 32-bit integer
    rrc.interRAT_ProtocolError  interRAT-ProtocolError
        No value
    rrc.interRAT_TargetCellDescription  interRAT-TargetCellDescription
        No value
    rrc.interRAT_UE_RadioAccessCapability  interRAT-UE-RadioAccessCapability
        Unsigned 32-bit integer
        InterRAT_UE_RadioAccessCapabilityList
    rrc.inter_RAT_meas_ind  inter-RAT-meas-ind
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxOtherRAT_OF_RAT_Type
    rrc.inter_freq_FDD_meas_ind  inter-freq-FDD-meas-ind
        Boolean
        BOOLEAN
    rrc.inter_freq_TDD128_meas_ind  inter-freq-TDD128-meas-ind
        Boolean
        BOOLEAN
    rrc.inter_freq_TDD_meas_ind  inter-freq-TDD-meas-ind
        Boolean
        BOOLEAN
    rrc.inter_frequency  inter-frequency
        Unsigned 32-bit integer
        Inter_FreqEventCriteriaList_v590ext
    rrc.intraDomainNasNodeSelector  intraDomainNasNodeSelector
        No value
    rrc.intraFreqCellID  intraFreqCellID
        Unsigned 32-bit integer
    rrc.intraFreqCellIDOnSecULFreq  intraFreqCellIDOnSecULFreq
        Unsigned 32-bit integer
    rrc.intraFreqCellInfoList  intraFreqCellInfoList
        No value
    rrc.intraFreqCellInfoListOnSecULFreq  intraFreqCellInfoListOnSecULFreq
        No value
        IntraFreqCellInfoListInfoOnSecULFreq
    rrc.intraFreqCellInfoSI_List  intraFreqCellInfoSI-List
        No value
        IntraFreqCellInfoSI_List_RSCP
    rrc.intraFreqCellReselectionInd  intraFreqCellReselectionInd
        Unsigned 32-bit integer
        AllowedIndicator
    rrc.intraFreqEventCriteria  intraFreqEventCriteria
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxMeasEventOnSecULFreq_OF_IntraFreqEventCriteriaOnSecULFreq
    rrc.intraFreqEventCriteriaList_v590ext  intraFreqEventCriteriaList-v590ext
        Unsigned 32-bit integer
        Intra_FreqEventCriteriaList_v590ext
    rrc.intraFreqEventResults  intraFreqEventResults
        No value
    rrc.intraFreqEvent_1d_r5  intraFreqEvent-1d-r5
        No value
    rrc.intraFreqMeasQuantity  intraFreqMeasQuantity
        No value
    rrc.intraFreqMeasQuantity_FDD  intraFreqMeasQuantity-FDD
        Unsigned 32-bit integer
    rrc.intraFreqMeasQuantity_TDDList  intraFreqMeasQuantity-TDDList
        Unsigned 32-bit integer
    rrc.intraFreqMeasuredResultsList  intraFreqMeasuredResultsList
        Unsigned 32-bit integer
    rrc.intraFreqMeasurementID  intraFreqMeasurementID
        Unsigned 32-bit integer
        MeasurementIdentity
    rrc.intraFreqMeasurementSysInfo  intraFreqMeasurementSysInfo
        No value
        IntraFreqMeasurementSysInfo_RSCP
    rrc.intraFreqRepQuantityRACH_FDD  intraFreqRepQuantityRACH-FDD
        Unsigned 32-bit integer
    rrc.intraFreqRepQuantityRACH_TDDList  intraFreqRepQuantityRACH-TDDList
        Unsigned 32-bit integer
    rrc.intraFreqReportingCriteria  intraFreqReportingCriteria
        No value
    rrc.intraFreqReportingCriteria_1b_r5  intraFreqReportingCriteria-1b-r5
        No value
    rrc.intraFreqReportingQuantity  intraFreqReportingQuantity
        No value
    rrc.intraFreqReportingQuantityForRACH  intraFreqReportingQuantityForRACH
        No value
    rrc.intraFreqSIAcquisition  intraFreqSIAcquisition
        No value
    rrc.intraFreqSIAcquisitionInfo  intraFreqSIAcquisitionInfo
        Unsigned 32-bit integer
    rrc.intraFrequencyMeasuredResultsList  intraFrequencyMeasuredResultsList
        Unsigned 32-bit integer
        IntraFrequencyMeasuredResultsList_v590ext
    rrc.intraFrequencyMeasurement  intraFrequencyMeasurement
        No value
    rrc.intraSecondaryFreqIndicator  intraSecondaryFreqIndicator
        Boolean
        BOOLEAN
    rrc.intra_frequency  intra-frequency
        Unsigned 32-bit integer
        Intra_FreqEventCriteriaList_v590ext
    rrc.invalidConfiguration  invalidConfiguration
        No value
    rrc.iod  iod
        Byte array
        BIT_STRING_SIZE_11
    rrc.iod_a  iod-a
        Unsigned 32-bit integer
        INTEGER_0_3
    rrc.iodc  iodc
        Byte array
        BIT_STRING_SIZE_10
    rrc.iode  iode
        Unsigned 32-bit integer
    rrc.iode_dganss  iode-dganss
        Byte array
        BIT_STRING_SIZE_10
    rrc.ionosphericModelRequest  ionosphericModelRequest
        Boolean
        BOOLEAN
    rrc.ip_Length  ip-Length
        Unsigned 32-bit integer
    rrc.ip_Offset  ip-Offset
        Unsigned 32-bit integer
        INTEGER_0_9
    rrc.ip_PCCPCG  ip-PCCPCG
        Boolean
        IP_PCCPCH_r4
    rrc.ip_Spacing  ip-Spacing
        Unsigned 32-bit integer
    rrc.ip_Spacing_TDD  ip-Spacing-TDD
        Unsigned 32-bit integer
    rrc.ip_Start  ip-Start
        Unsigned 32-bit integer
        INTEGER_0_4095
    rrc.ip_slot  ip-slot
        Unsigned 32-bit integer
        INTEGER_0_14
    rrc.ipdl_alpha  ipdl-alpha
        Unsigned 32-bit integer
        Alpha
    rrc.isActive  isActive
        Unsigned 32-bit integer
        AvailableMinimumSF_ListVCAM
    rrc.is_2000  is-2000
        No value
    rrc.is_2000SpecificMeasInfo  is-2000SpecificMeasInfo
        Unsigned 32-bit integer
    rrc.iscpTimeslotList  iscpTimeslotList
        Unsigned 32-bit integer
        TimeslotList
    rrc.itp  itp
        Unsigned 32-bit integer
    rrc.k  k
        Unsigned 32-bit integer
        INTEGER_2_3
    rrc.keplerianParameters  keplerianParameters
        No value
    rrc.kp  kp
        Byte array
        BIT_STRING_SIZE_2
    rrc.l2Pflag  l2Pflag
        Byte array
        BIT_STRING_SIZE_1
    rrc.lac  lac
        Byte array
        BIT_STRING_SIZE_16
    rrc.lai  lai
        No value
    rrc.large  large
        Unsigned 32-bit integer
        INTEGER_18_512
    rrc.largestRLC_PDU_Size  largestRLC-PDU-Size
        Unsigned 32-bit integer
        INTEGER_0_1503
    rrc.lastAndComplete  lastAndComplete
        No value
    rrc.lastAndCompleteAndFirst  lastAndCompleteAndFirst
        No value
    rrc.lastAndFirst  lastAndFirst
        No value
    rrc.lastChannelisationCode  lastChannelisationCode
        Unsigned 32-bit integer
        DL_TS_ChannelisationCode
    rrc.lastRetransmissionPDU_Poll  lastRetransmissionPDU-Poll
        Boolean
        BOOLEAN
    rrc.lastSegment  lastSegment
        No value
    rrc.lastSegmentShort  lastSegmentShort
        No value
    rrc.lastTransmissionPDU_Poll  lastTransmissionPDU-Poll
        Boolean
        BOOLEAN
    rrc.later  later
        No value
    rrc.laterNonCriticalExtensions  laterNonCriticalExtensions
        No value
    rrc.later_than_r3  later-than-r3
        No value
    rrc.later_than_r4  later-than-r4
        No value
    rrc.later_than_r5  later-than-r5
        No value
    rrc.latestConfiguredCN_Domain  latestConfiguredCN-Domain
        Unsigned 32-bit integer
        CN_DomainIdentity
    rrc.latitude  latitude
        Unsigned 32-bit integer
        INTEGER_0_8388607
    rrc.latitudeSign  latitudeSign
        Unsigned 32-bit integer
    rrc.layer1Combining  layer1Combining
        Unsigned 32-bit integer
    rrc.layer1_CombiningStatus  layer1-CombiningStatus
        Boolean
        BOOLEAN
    rrc.layerConvergenceInformation  layerConvergenceInformation
        Unsigned 32-bit integer
    rrc.length  length
        No value
    rrc.lengthIndicatorSize  lengthIndicatorSize
        Unsigned 32-bit integer
    rrc.length_of_TTRI_field  length-of-TTRI-field
        Unsigned 32-bit integer
        INTEGER_1_12
    rrc.localPTMSI  localPTMSI
        No value
    rrc.locationRegistration  locationRegistration
        Unsigned 32-bit integer
        LocationRegistrationParameters
    rrc.locationRegistrationRestrictionIndicator  locationRegistrationRestrictionIndicator
        Unsigned 32-bit integer
    rrc.logChOfRb  logChOfRb
        Unsigned 32-bit integer
        INTEGER_0_1
    rrc.logicalChIdentity  logicalChIdentity
        Unsigned 32-bit integer
        MBMS_LogicalChIdentity
    rrc.logicalChannelIdentity  logicalChannelIdentity
        Unsigned 32-bit integer
    rrc.logicalChannelList  logicalChannelList
        Unsigned 32-bit integer
    rrc.long_Term_Grant_Indicator  long-Term-Grant-Indicator
        Boolean
        BOOLEAN
    rrc.longitude  longitude
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrc.losslessDLRLC_PDUSizeChange  losslessDLRLC-PDUSizeChange
        Unsigned 32-bit integer
    rrc.losslessSRNS_RelocSupport  losslessSRNS-RelocSupport
        Unsigned 32-bit integer
    rrc.losslessSRNS_RelocationSupport  losslessSRNS-RelocationSupport
        Boolean
        BOOLEAN
    rrc.lowerPriorityMBMSService  lowerPriorityMBMSService
        No value
    rrc.ls_Part  ls-Part
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrc.ls_part  ls-part
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrc.lsbTOW  lsbTOW
        Byte array
        BIT_STRING_SIZE_8
    rrc.m0  m0
        Byte array
        BIT_STRING_SIZE_24
    rrc.m_zero_nav  m-zero-nav
        Byte array
        BIT_STRING_SIZE_32
    rrc.mac_InactivityThreshold  mac-InactivityThreshold
        Unsigned 32-bit integer
    rrc.mac_LogicalChannelPriority  mac-LogicalChannelPriority
        Unsigned 32-bit integer
    rrc.mac_dFlowId  mac-dFlowId
        Unsigned 32-bit integer
        MAC_d_FlowIdentity
    rrc.mac_d_FlowIdentity  mac-d-FlowIdentity
        Unsigned 32-bit integer
        E_DCH_MAC_d_FlowIdentity
    rrc.mac_d_FlowMaxRetrans  mac-d-FlowMaxRetrans
        Unsigned 32-bit integer
        E_DCH_MAC_d_FlowMaxRetrans
    rrc.mac_d_FlowMultiplexingList  mac-d-FlowMultiplexingList
        Byte array
        E_DCH_MAC_d_FlowMultiplexingList
    rrc.mac_d_FlowPowerOffset  mac-d-FlowPowerOffset
        Unsigned 32-bit integer
        E_DCH_MAC_d_FlowPowerOffset
    rrc.mac_d_FlowRetransTimer  mac-d-FlowRetransTimer
        Unsigned 32-bit integer
        E_DCH_MAC_d_FlowRetransTimer
    rrc.mac_d_HFN_initial_value  mac-d-HFN-initial-value
        Byte array
    rrc.mac_d_PDU_Index  mac-d-PDU-Index
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.mac_d_PDU_Size  mac-d-PDU-Size
        Unsigned 32-bit integer
        INTEGER_1_5000
    rrc.mac_d_PDU_SizeInfo_List  mac-d-PDU-SizeInfo-List
        Unsigned 32-bit integer
    rrc.mac_dtx_Cycle_10ms  mac-dtx-Cycle-10ms
        Unsigned 32-bit integer
    rrc.mac_dtx_Cycle_2ms  mac-dtx-Cycle-2ms
        Unsigned 32-bit integer
    rrc.mac_ehs  mac-ehs
        Unsigned 32-bit integer
        MAC_ehs_QueueId
    rrc.mac_ehsSupport  mac-ehsSupport
        Unsigned 32-bit integer
    rrc.mac_ehsWindowSize  mac-ehsWindowSize
        Unsigned 32-bit integer
        MAC_hs_WindowSize_r9
    rrc.mac_ehs_AddReconfQueue_List  mac-ehs-AddReconfQueue-List
        Unsigned 32-bit integer
        MAC_ehs_AddReconfReordQ_List
    rrc.mac_ehs_QueueId  mac-ehs-QueueId
        Unsigned 32-bit integer
    rrc.mac_es_e_resetIndicator  mac-es-e-resetIndicator
        Unsigned 32-bit integer
    rrc.mac_hs  mac-hs
        Unsigned 32-bit integer
        MAC_d_FlowIdentity
    rrc.mac_hsQueueId  mac-hsQueueId
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.mac_hsResetIndicator  mac-hsResetIndicator
        Unsigned 32-bit integer
    rrc.mac_hsWindowSize  mac-hsWindowSize
        Unsigned 32-bit integer
        MAC_hs_WindowSize
    rrc.mac_hs_AddReconfQueue_List  mac-hs-AddReconfQueue-List
        Unsigned 32-bit integer
    rrc.mac_hs_DelQueue_List  mac-hs-DelQueue-List
        Unsigned 32-bit integer
    rrc.maintain  maintain
        No value
    rrc.mapParameter1  mapParameter1
        Unsigned 32-bit integer
        MapParameter
    rrc.mapParameter2  mapParameter2
        Unsigned 32-bit integer
        MapParameter
    rrc.mappingFunctionParameterList  mappingFunctionParameterList
        Unsigned 32-bit integer
    rrc.mappingInfo  mappingInfo
        Unsigned 32-bit integer
    rrc.mapping_LCR  mapping-LCR
        No value
        Mapping_LCR_r4
    rrc.masterInformationBlock_v690ext  masterInformationBlock-v690ext
        No value
    rrc.masterInformationBlock_v6b0ext  masterInformationBlock-v6b0ext
        No value
        MasterInformationBlock_v6b0ext_IEs
    rrc.masterInformationBlock_v860ext  masterInformationBlock-v860ext
        No value
        MasterInformationBlock_v860ext_IEs
    rrc.maxAllowedUL_TX_Power  maxAllowedUL-TX-Power
        Signed 32-bit integer
    rrc.maxAvailablePCPCH_Number  maxAvailablePCPCH-Number
        Unsigned 32-bit integer
    rrc.maxCS_Delay  maxCS-Delay
        Unsigned 32-bit integer
    rrc.maxChannelisationCodes  maxChannelisationCodes
        Unsigned 32-bit integer
        E_DPDCH_MaxChannelisationCodes
    rrc.maxConvCodeBitsReceived  maxConvCodeBitsReceived
        Unsigned 32-bit integer
        MaxNoBits
    rrc.maxConvCodeBitsTransmitted  maxConvCodeBitsTransmitted
        Unsigned 32-bit integer
        MaxNoBits
    rrc.maxDAT  maxDAT
        Unsigned 32-bit integer
    rrc.maxDAT_Retransmissions  maxDAT-Retransmissions
        No value
    rrc.maxHcContextSpace  maxHcContextSpace
        Unsigned 32-bit integer
        MaxHcContextSpace_r5_ext
    rrc.maxMAC_e_PDUContents  maxMAC-e-PDUContents
        Unsigned 32-bit integer
        INTEGER_1_19982
    rrc.maxMRW  maxMRW
        Unsigned 32-bit integer
    rrc.maxNoBitsReceived  maxNoBitsReceived
        Unsigned 32-bit integer
        MaxNoBits
    rrc.maxNoBitsTransmitted  maxNoBitsTransmitted
        Unsigned 32-bit integer
        MaxNoBits
    rrc.maxNoDPCH_PDSCH_Codes  maxNoDPCH-PDSCH-Codes
        Unsigned 32-bit integer
        INTEGER_1_8
    rrc.maxNoDPDCH_BitsTransmitted  maxNoDPDCH-BitsTransmitted
        Unsigned 32-bit integer
    rrc.maxNoPhysChBitsReceived  maxNoPhysChBitsReceived
        Unsigned 32-bit integer
    rrc.maxNoSCCPCH_RL  maxNoSCCPCH-RL
        Unsigned 32-bit integer
    rrc.maxNumberOfTF  maxNumberOfTF
        Unsigned 32-bit integer
    rrc.maxNumberOfTFC  maxNumberOfTFC
        Unsigned 32-bit integer
        MaxNumberOfTFC_DL
    rrc.maxPhysChPerFrame  maxPhysChPerFrame
        Unsigned 32-bit integer
    rrc.maxPhysChPerTS  maxPhysChPerTS
        Unsigned 32-bit integer
    rrc.maxPhysChPerTimeslot  maxPhysChPerTimeslot
        Unsigned 32-bit integer
    rrc.maxPowerIncrease  maxPowerIncrease
        Unsigned 32-bit integer
        MaxPowerIncrease_r4
    rrc.maxROHC_ContextSessions  maxROHC-ContextSessions
        Unsigned 32-bit integer
        MaxROHC_ContextSessions_r4
    rrc.maxReceivedTransportBlocks  maxReceivedTransportBlocks
        Unsigned 32-bit integer
        MaxTransportBlocksDL
    rrc.maxReportedCellsOnRACH  maxReportedCellsOnRACH
        Unsigned 32-bit integer
    rrc.maxReportedCellsOnRACHinterFreq  maxReportedCellsOnRACHinterFreq
        Unsigned 32-bit integer
    rrc.maxSimultaneousCCTrCH_Count  maxSimultaneousCCTrCH-Count
        Unsigned 32-bit integer
    rrc.maxSimultaneousTransChs  maxSimultaneousTransChs
        Unsigned 32-bit integer
        MaxSimultaneousTransChsDL
    rrc.maxTFCIField2Value  maxTFCIField2Value
        Unsigned 32-bit integer
        INTEGER_1_1023
    rrc.maxTFCI_Field2Value  maxTFCI-Field2Value
        Unsigned 32-bit integer
    rrc.maxTS_PerFrame  maxTS-PerFrame
        Unsigned 32-bit integer
    rrc.maxTS_PerSubFrame  maxTS-PerSubFrame
        Unsigned 32-bit integer
        MaxTS_PerSubFrame_r4
    rrc.maxTransmittedBlocks  maxTransmittedBlocks
        Unsigned 32-bit integer
        MaxTransportBlocksUL
    rrc.max_CCCH_ResourceAllocation  max-CCCH-ResourceAllocation
        Unsigned 32-bit integer
    rrc.max_CID  max-CID
        Unsigned 32-bit integer
        INTEGER_1_16383
    rrc.max_HEADER  max-HEADER
        Unsigned 32-bit integer
        INTEGER_60_65535
    rrc.max_PeriodForCollisionResolution  max-PeriodForCollisionResolution
        Unsigned 32-bit integer
        INTEGER_8_24
    rrc.max_RST  max-RST
        Unsigned 32-bit integer
        MaxRST
    rrc.max_SYNC_UL_Transmissions  max-SYNC-UL-Transmissions
        Unsigned 32-bit integer
    rrc.maximumAM_EntityNumber  maximumAM-EntityNumber
        Unsigned 32-bit integer
        MaximumAM_EntityNumberRLC_Cap
    rrc.maximumBitRate  maximumBitRate
        Unsigned 32-bit integer
    rrc.maximumNumOfRetransSchedInfo  maximumNumOfRetransSchedInfo
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.maximumRLC_WindowSize  maximumRLC-WindowSize
        Unsigned 32-bit integer
    rrc.maximum_Allowed_Code_Rate  maximum-Allowed-Code-Rate
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.mbmsAccessInformation  mbmsAccessInformation
        No value
    rrc.mbmsCommonPTMRBInformation  mbmsCommonPTMRBInformation
        No value
    rrc.mbmsCommonPTMRBInformation_v770ext  mbmsCommonPTMRBInformation-v770ext
        No value
        MBMSCommonPTMRBInformation_v770ext_IEs
    rrc.mbmsCommonPTMRBInformation_v780ext  mbmsCommonPTMRBInformation-v780ext
        No value
        MBMSCommonPTMRBInformation_v780ext_IEs
    rrc.mbmsCommonPTMRBInformation_v860ext  mbmsCommonPTMRBInformation-v860ext
        No value
        MBMSCommonPTMRBInformation_v860ext_IEs
    rrc.mbmsCurrentCellPTMRBInfo_v770ext  mbmsCurrentCellPTMRBInfo-v770ext
        No value
        MBMSCurrentCellPTMRBInfo_v770ext_IEs
    rrc.mbmsCurrentCellPTMRBInformation  mbmsCurrentCellPTMRBInformation
        No value
    rrc.mbmsGeneralInformation  mbmsGeneralInformation
        No value
    rrc.mbmsGeneralInformation_v6b0ext  mbmsGeneralInformation-v6b0ext
        No value
        MBMSGeneralInformation_v6b0ext_IEs
    rrc.mbmsGeneralInformation_v770ext  mbmsGeneralInformation-v770ext
        No value
        MBMSGeneralInformation_v770ext_IEs
    rrc.mbmsGeneralInformation_v860ext  mbmsGeneralInformation-v860ext
        No value
        MBMSGeneralInformation_v860ext_IEs
    rrc.mbmsGeneralInformation_v890ext  mbmsGeneralInformation-v890ext
        No value
        MBMSGeneralInformation_v890ext_IEs
    rrc.mbmsMICHConfiguration  mbmsMICHConfiguration
        No value
        MBMS_MICHConfigurationInfo_v770ext
    rrc.mbmsModificationRequest  mbmsModificationRequest
        No value
    rrc.mbmsModificationRequest_v6b0ext  mbmsModificationRequest-v6b0ext
        No value
        MBMSModificationRequest_v6b0ext_IEs
    rrc.mbmsModificationRequest_v6f0ext  mbmsModificationRequest-v6f0ext
        No value
        MBMSModificationRequest_v6f0ext_IEs
    rrc.mbmsModifiedServicesInformation  mbmsModifiedServicesInformation
        No value
    rrc.mbmsModifiedServicesInformation_v770ext  mbmsModifiedServicesInformation-v770ext
        No value
        MBMSModifiedServicesInformation_v770ext_IEs
    rrc.mbmsModifiedServicesInformation_v7c0ext  mbmsModifiedServicesInformation-v7c0ext
        No value
        MBMSModifiedServicesInformation_v7c0ext_IEs
    rrc.mbmsNeighbouringCellPTMRBInformation  mbmsNeighbouringCellPTMRBInformation
        No value
    rrc.mbmsNeighbouringCellPTMRBInformation_v770ext  mbmsNeighbouringCellPTMRBInformation-v770ext
        No value
        MBMSNeighbouringCellPTMRBInformation_v770ext_IEs
    rrc.mbmsNetworkStandardTimeInformation_LCR  mbmsNetworkStandardTimeInformation-LCR
        No value
        MBMS_NetworkStandardTimeInformation_LCR_v890ext
    rrc.mbmsNotificationIndLength  mbmsNotificationIndLength
        Unsigned 32-bit integer
        MBMS_MICHNotificationIndLength
    rrc.mbmsNumberOfNeighbourCells  mbmsNumberOfNeighbourCells
        Unsigned 32-bit integer
        MBMS_NumberOfNeighbourCells_r6
    rrc.mbmsPreferredFrequency  mbmsPreferredFrequency
        Unsigned 32-bit integer
        INTEGER_1_maxMBMS_Freq
    rrc.mbmsSchedulingInformation  mbmsSchedulingInformation
        No value
    rrc.mbmsSelectedServiceInfo  mbmsSelectedServiceInfo
        No value
        MBMS_SelectedServiceInfo
    rrc.mbmsSelectedServices  mbmsSelectedServices
        No value
        MBMS_SelectedServicesShort
    rrc.mbmsSessionAlreadyReceivedCorrectly  mbmsSessionAlreadyReceivedCorrectly
        No value
    rrc.mbmsSupportOfServiceChangeForAPtpRB  mbmsSupportOfServiceChangeForAPtpRB
        Unsigned 32-bit integer
    rrc.mbmsUnmodifiedServicesInformation  mbmsUnmodifiedServicesInformation
        No value
    rrc.mbmsUnmodifiedServicesInformation_v770ext  mbmsUnmodifiedServicesInformation-v770ext
        No value
        MBMSUnmodifiedServicesInformation_v770ext_IEs
    rrc.mbms_AllUnmodifiedPTMServices  mbms-AllUnmodifiedPTMServices
        Unsigned 32-bit integer
    rrc.mbms_CommonPhyChIdentity  mbms-CommonPhyChIdentity
        Unsigned 32-bit integer
    rrc.mbms_CommonRBInformationList  mbms-CommonRBInformationList
        Unsigned 32-bit integer
        MBMS_CommonRBInformationList_r6
    rrc.mbms_ConnectedModeCountingScope  mbms-ConnectedModeCountingScope
        No value
    rrc.mbms_CurrentCell_SCCPCHList  mbms-CurrentCell-SCCPCHList
        Unsigned 32-bit integer
        MBMS_CurrentCell_SCCPCHList_r6
    rrc.mbms_DynamicPersistenceLevel  mbms-DynamicPersistenceLevel
        Unsigned 32-bit integer
        DynamicPersistenceLevel
    rrc.mbms_HCSoffset  mbms-HCSoffset
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.mbms_JoinedInformation  mbms-JoinedInformation
        No value
        MBMS_JoinedInformation_r6
    rrc.mbms_L1CombiningSchedule  mbms-L1CombiningSchedule
        Unsigned 32-bit integer
    rrc.mbms_L1CombiningTransmTimeDiff  mbms-L1CombiningTransmTimeDiff
        Unsigned 32-bit integer
    rrc.mbms_L23Configuration  mbms-L23Configuration
        Unsigned 32-bit integer
    rrc.mbms_PL_ServiceRestrictInfo  mbms-PL-ServiceRestrictInfo
        Unsigned 32-bit integer
        MBMS_PL_ServiceRestrictInfo_r6
    rrc.mbms_PTMActivationTime  mbms-PTMActivationTime
        Unsigned 32-bit integer
        MBMS_PTMActivationTime_r6
    rrc.mbms_PhyChInformationList  mbms-PhyChInformationList
        Unsigned 32-bit integer
        MBMS_PhyChInformationList_r6
    rrc.mbms_PhyChInformationList_r7  mbms-PhyChInformationList-r7
        Unsigned 32-bit integer
    rrc.mbms_PreferredFreqRequest  mbms-PreferredFreqRequest
        No value
        MBMS_ServiceIdentity_r6
    rrc.mbms_PreferredFrequency  mbms-PreferredFrequency
        Unsigned 32-bit integer
    rrc.mbms_PreferredFrequencyInfo  mbms-PreferredFrequencyInfo
        Unsigned 32-bit integer
        MBMS_PreferredFrequencyList_r6
    rrc.mbms_Qoffset  mbms-Qoffset
        Unsigned 32-bit integer
    rrc.mbms_RB_ListReleasedToChangeTransferMode  mbms-RB-ListReleasedToChangeTransferMode
        Unsigned 32-bit integer
        RB_InformationReleaseList
    rrc.mbms_ReacquireMCCH  mbms-ReacquireMCCH
        Unsigned 32-bit integer
    rrc.mbms_RequiredUEAction  mbms-RequiredUEAction
        Unsigned 32-bit integer
        MBMS_RequiredUEAction_Mod
    rrc.mbms_SIBType5_SCCPCHList  mbms-SIBType5-SCCPCHList
        Unsigned 32-bit integer
        MBMS_SIBType5_SCCPCHList_r6
    rrc.mbms_SelectedServicesList  mbms-SelectedServicesList
        Unsigned 32-bit integer
        MBMS_SelectedServicesListShort
    rrc.mbms_ServiceAccessInfoList  mbms-ServiceAccessInfoList
        Unsigned 32-bit integer
        MBMS_ServiceAccessInfoList_r6
    rrc.mbms_ServiceIdentity  mbms-ServiceIdentity
        Byte array
        OCTET_STRING_SIZE_3
    rrc.mbms_ServiceTransmInfoList  mbms-ServiceTransmInfoList
        Unsigned 32-bit integer
    rrc.mbms_SessionIdentity  mbms-SessionIdentity
        Byte array
    rrc.mbms_TimersAndCounters  mbms-TimersAndCounters
        No value
        MBMS_TimersAndCounters_r6
    rrc.mbms_TransmissionIdentity  mbms-TransmissionIdentity
        No value
    rrc.mbms_TranspChInfoForEachCCTrCh  mbms-TranspChInfoForEachCCTrCh
        Unsigned 32-bit integer
        MBMS_TranspChInfoForEachCCTrCh_r6
    rrc.mbms_TranspChInfoForEachTrCh  mbms-TranspChInfoForEachTrCh
        Unsigned 32-bit integer
        MBMS_TranspChInfoForEachTrCh_r6
    rrc.mbsfnBurstType4  mbsfnBurstType4
        No value
    rrc.mbsfnClusterFrequency  mbsfnClusterFrequency
        Unsigned 32-bit integer
        MBSFN_ClusterFrequency_r7
    rrc.mbsfnFrequency  mbsfnFrequency
        No value
        FrequencyInfo
    rrc.mbsfnFrequencyList  mbsfnFrequencyList
        Unsigned 32-bit integer
    rrc.mbsfnInterFrequencyNeighbourList  mbsfnInterFrequencyNeighbourList
        Unsigned 32-bit integer
        MBSFN_InterFrequencyNeighbourList_r7
    rrc.mbsfnOnlyService  mbsfnOnlyService
        Unsigned 32-bit integer
    rrc.mbsfnServicesNotNotified  mbsfnServicesNotNotified
        No value
        MBSFNservicesNotNotified_r7
    rrc.mbsfnServicesNotification  mbsfnServicesNotification
        Unsigned 32-bit integer
    rrc.mbsfnServicesNotified  mbsfnServicesNotified
        No value
    rrc.mbsfnSpecialTimeSlot  mbsfnSpecialTimeSlot
        Unsigned 32-bit integer
        TimeSlotLCR_ext
    rrc.mbsfn_TDDInformation_LCR  mbsfn-TDDInformation-LCR
        Unsigned 32-bit integer
    rrc.mbsfn_TDM_Info_List  mbsfn-TDM-Info-List
        Unsigned 32-bit integer
    rrc.mcc  mcc
        Unsigned 32-bit integer
    rrc.mcch  mcch
        Unsigned 32-bit integer
        MBMS_PFLIndex
    rrc.mcchOnSCCPCHusedForNonMBMS  mcchOnSCCPCHusedForNonMBMS
        No value
        MBMS_MCCH_ConfigurationInfo_r6
    rrc.mcchOnSCCPCHusedOnlyForMBMS  mcchOnSCCPCHusedOnlyForMBMS
        No value
        SCCPCH_SystemInformation_MBMS_r6
    rrc.mcch_ConfigurationInfo  mcch-ConfigurationInfo
        No value
        MBMS_MCCH_ConfigurationInfo_r6
    rrc.mcch_transportFormatSet  mcch-transportFormatSet
        Unsigned 32-bit integer
        TransportFormatSet
    rrc.measQuantityUTRAN_QualityEstimate  measQuantityUTRAN-QualityEstimate
        No value
        IntraFreqMeasQuantity
    rrc.measuredEUTRACells  measuredEUTRACells
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxReportedEUTRACellPerFreq_OF_EUTRA_MeasuredCells
    rrc.measuredEUTRACells_v920ext  measuredEUTRACells-v920ext
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxReportedEUTRACellPerFreq_OF_EUTRA_MeasuredCells_v920ext
    rrc.measuredResults  measuredResults
        Unsigned 32-bit integer
    rrc.measuredResultsOnRACH  measuredResultsOnRACH
        No value
    rrc.measuredResultsOnRACH_v7g0ext  measuredResultsOnRACH-v7g0ext
        No value
    rrc.measuredResultsOnRACHinterFreq  measuredResultsOnRACHinterFreq
        No value
    rrc.measuredResultsOnSecUlFreq  measuredResultsOnSecUlFreq
        No value
    rrc.measuredResults_v390ext  measuredResults-v390ext
        No value
    rrc.measuredResults_v590ext  measuredResults-v590ext
        Unsigned 32-bit integer
    rrc.measurementBandwidth  measurementBandwidth
        Unsigned 32-bit integer
        EUTRA_MeasurementBandwidth
    rrc.measurementCapability  measurementCapability
        No value
        MeasurementCapability_v860ext
    rrc.measurementCapability2  measurementCapability2
        No value
        MeasurementCapabilityExt2
    rrc.measurementCapability3  measurementCapability3
        No value
        MeasurementCapabilityExt3
    rrc.measurementCapabilityTDD  measurementCapabilityTDD
        No value
    rrc.measurementCapability_r4_ext  measurementCapability-r4-ext
        No value
    rrc.measurementCommand  measurementCommand
        Unsigned 32-bit integer
    rrc.measurementCommandWithType  measurementCommandWithType
        Unsigned 32-bit integer
    rrc.measurementCommand_v590ext  measurementCommand-v590ext
        Unsigned 32-bit integer
    rrc.measurementControl  measurementControl
        Unsigned 32-bit integer
    rrc.measurementControlFailure  measurementControlFailure
        No value
    rrc.measurementControlFailure_r3_add_ext  measurementControlFailure-r3-add-ext
        Byte array
        BIT_STRING
    rrc.measurementControlFailure_v590ext  measurementControlFailure-v590ext
        No value
        MeasurementControlFailure_v590ext_IEs
    rrc.measurementControlSysInfo  measurementControlSysInfo
        No value
    rrc.measurementControlSysInfoExtensionAddon_r5  measurementControlSysInfoExtensionAddon-r5
        No value
    rrc.measurementControlSysInfo_LCR  measurementControlSysInfo-LCR
        No value
        MeasurementControlSysInfo_LCR_r4_ext
    rrc.measurementControl_r3  measurementControl-r3
        No value
        MeasurementControl_r3_IEs
    rrc.measurementControl_r3_add_ext  measurementControl-r3-add-ext
        Byte array
        BIT_STRING
    rrc.measurementControl_r4  measurementControl-r4
        No value
        MeasurementControl_r4_IEs
    rrc.measurementControl_r4_add_ext  measurementControl-r4-add-ext
        Byte array
        BIT_STRING
    rrc.measurementControl_r6  measurementControl-r6
        No value
        MeasurementControl_r6_IEs
    rrc.measurementControl_r7  measurementControl-r7
        No value
        MeasurementControl_r7_IEs
    rrc.measurementControl_r7_add_ext  measurementControl-r7-add-ext
        Byte array
        BIT_STRING
    rrc.measurementControl_r8  measurementControl-r8
        No value
        MeasurementControl_r8_IEs
    rrc.measurementControl_r8_add_ext  measurementControl-r8-add-ext
        Byte array
        BIT_STRING
    rrc.measurementControl_r9  measurementControl-r9
        No value
        MeasurementControl_r9_IEs
    rrc.measurementControl_r9_add_ext  measurementControl-r9-add-ext
        Byte array
        BIT_STRING
    rrc.measurementControl_v390ext  measurementControl-v390ext
        No value
    rrc.measurementControl_v3a0ext  measurementControl-v3a0ext
        No value
    rrc.measurementControl_v590ext  measurementControl-v590ext
        No value
        MeasurementControl_v590ext_IEs
    rrc.measurementControl_v5b0ext  measurementControl-v5b0ext
        No value
        MeasurementControl_v5b0ext_IEs
    rrc.measurementControl_v6a0ext  measurementControl-v6a0ext
        No value
        MeasurementControl_v6a0ext_IEs
    rrc.measurementControl_v7b0ext  measurementControl-v7b0ext
        No value
        MeasurementControl_v7b0ext_IEs
    rrc.measurementControl_v8a0ext  measurementControl-v8a0ext
        No value
        MeasurementControl_v8a0ext_IEs
    rrc.measurementIdentity  measurementIdentity
        Unsigned 32-bit integer
    rrc.measurementInterval  measurementInterval
        Unsigned 32-bit integer
        UE_Positioning_MeasurementInterval
    rrc.measurementOccasionPatternParameter  measurementOccasionPatternParameter
        No value
    rrc.measurementPowerOffset  measurementPowerOffset
        Signed 32-bit integer
    rrc.measurementPurpose  measurementPurpose
        Byte array
        BIT_STRING_SIZE_5
    rrc.measurementQuantity  measurementQuantity
        Unsigned 32-bit integer
        MeasurementQuantityGSM
    rrc.measurementReport  measurementReport
        No value
    rrc.measurementReportTransferMode  measurementReportTransferMode
        Unsigned 32-bit integer
        TransferMode
    rrc.measurementReport_r3_add_ext  measurementReport-r3-add-ext
        Byte array
        BIT_STRING
    rrc.measurementReport_v390ext  measurementReport-v390ext
        No value
    rrc.measurementReport_v4b0ext  measurementReport-v4b0ext
        No value
        MeasurementReport_v4b0ext_IEs
    rrc.measurementReport_v590ext  measurementReport-v590ext
        No value
        MeasurementReport_v590ext_IEs
    rrc.measurementReport_v5b0ext  measurementReport-v5b0ext
        No value
        MeasurementReport_v5b0ext_IEs
    rrc.measurementReport_v690ext  measurementReport-v690ext
        No value
        MeasurementReport_v690ext_IEs
    rrc.measurementReport_v770ext  measurementReport-v770ext
        No value
        MeasurementReport_v770ext_IEs
    rrc.measurementReport_v860ext  measurementReport-v860ext
        No value
        MeasurementReport_v860ext_IEs
    rrc.measurementReport_v920ext  measurementReport-v920ext
        No value
        MeasurementReport_v920ext_IEs
    rrc.measurementReportingMode  measurementReportingMode
        No value
    rrc.measurementType  measurementType
        Unsigned 32-bit integer
    rrc.measurementValidity  measurementValidity
        No value
    rrc.measurement_Feedback_Info  measurement-Feedback-Info
        No value
        Measurement_Feedback_Info_r7
    rrc.measurement_Occasion_Coeff  measurement-Occasion-Coeff
        Unsigned 32-bit integer
        INTEGER_1_9
    rrc.measurement_Occasion_Length  measurement-Occasion-Length
        Unsigned 32-bit integer
        INTEGER_1_512
    rrc.measurement_Occasion_Offset  measurement-Occasion-Offset
        Unsigned 32-bit integer
        INTEGER_0_511
    rrc.measurement_feedback_Info  measurement-feedback-Info
        No value
    rrc.memoryPartitioning  memoryPartitioning
        Unsigned 32-bit integer
    rrc.memorySize  memorySize
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxHProcesses_OF_HARQMemorySize
    rrc.messType  messType
        Unsigned 32-bit integer
    rrc.message  message
        Unsigned 32-bit integer
        DL_DCCH_MessageType
    rrc.messageAuthenticationCode  messageAuthenticationCode
        Byte array
    rrc.messageExtensionNotComprehended  messageExtensionNotComprehended
        No value
        IdentificationOfReceivedMessage
    rrc.messageIdentifier  messageIdentifier
        Byte array
        OCTET_STRING_SIZE_2
    rrc.messageNotCompatibleWithReceiverState  messageNotCompatibleWithReceiverState
        No value
        IdentificationOfReceivedMessage
    rrc.messageTypeNonexistent  messageTypeNonexistent
        No value
    rrc.methodType  methodType
        Unsigned 32-bit integer
        UE_Positioning_MethodType
    rrc.mibPLMN_Identity  mibPLMN-Identity
        Boolean
        BOOLEAN
    rrc.mib_ValueTag  mib-ValueTag
        Unsigned 32-bit integer
    rrc.michConfigurationInfo  michConfigurationInfo
        No value
        MBMS_MICHConfigurationInfo_r6
    rrc.michPowerOffset  michPowerOffset
        Signed 32-bit integer
        MBMS_MICHPowerOffset
    rrc.midambleAllocationMode  midambleAllocationMode
        Unsigned 32-bit integer
    rrc.midambleConfiguration  midambleConfiguration
        Unsigned 32-bit integer
        INTEGER_1_8
    rrc.midambleConfigurationBurstType1  midambleConfigurationBurstType1
        Unsigned 32-bit integer
    rrc.midambleConfigurationBurstType1and3  midambleConfigurationBurstType1and3
        Unsigned 32-bit integer
    rrc.midambleConfigurationBurstType2  midambleConfigurationBurstType2
        Unsigned 32-bit integer
    rrc.midambleShift  midambleShift
        Unsigned 32-bit integer
        MidambleShiftLong
    rrc.midambleShiftAndBurstType  midambleShiftAndBurstType
        No value
        MidambleShiftAndBurstType_DL
    rrc.midambleShiftAndBurstType_VHCR  midambleShiftAndBurstType-VHCR
        No value
    rrc.midamble_Allocation_Mode  midamble-Allocation-Mode
        Unsigned 32-bit integer
    rrc.midambleconfiguration  midambleconfiguration
        Unsigned 32-bit integer
        MidambleConfigurationBurstType1and3
    rrc.midiAlmDeltaI  midiAlmDeltaI
        Byte array
        BIT_STRING_SIZE_11
    rrc.midiAlmE  midiAlmE
        Byte array
        BIT_STRING_SIZE_11
    rrc.midiAlmL1Health  midiAlmL1Health
        Byte array
        BIT_STRING_SIZE_1
    rrc.midiAlmL2Health  midiAlmL2Health
        Byte array
        BIT_STRING_SIZE_1
    rrc.midiAlmL5Health  midiAlmL5Health
        Byte array
        BIT_STRING_SIZE_1
    rrc.midiAlmMo  midiAlmMo
        Byte array
        BIT_STRING_SIZE_16
    rrc.midiAlmOmega  midiAlmOmega
        Byte array
        BIT_STRING_SIZE_16
    rrc.midiAlmOmega0  midiAlmOmega0
        Byte array
        BIT_STRING_SIZE_16
    rrc.midiAlmOmegaDot  midiAlmOmegaDot
        Byte array
        BIT_STRING_SIZE_11
    rrc.midiAlmSqrtA  midiAlmSqrtA
        Byte array
        BIT_STRING_SIZE_17
    rrc.midiAlmaf0  midiAlmaf0
        Byte array
        BIT_STRING_SIZE_11
    rrc.midiAlmaf1  midiAlmaf1
        Byte array
        BIT_STRING_SIZE_10
    rrc.mimoN_M_Ratio  mimoN-M-Ratio
        Unsigned 32-bit integer
        MIMO_N_M_Ratio
    rrc.mimoOperation  mimoOperation
        Unsigned 32-bit integer
        MIMO_Operation
    rrc.mimoParameters  mimoParameters
        No value
        MIMO_Parameters_r7
    rrc.mimoPilotConfiguration  mimoPilotConfiguration
        No value
        MIMO_PilotConfiguration
    rrc.mimoSFModeForHSPDSCHDualStream  mimoSFModeForHSPDSCHDualStream
        Unsigned 32-bit integer
    rrc.minRLC_PDU_Size  minRLC-PDU-Size
        Unsigned 32-bit integer
        INTEGER_0_1503
    rrc.minReduced_E_DPDCH_GainFactor  minReduced-E-DPDCH-GainFactor
        Unsigned 32-bit integer
    rrc.min_P_REV  min-P-REV
        Byte array
    rrc.minimumAllowedTFC_Number  minimumAllowedTFC-Number
        Unsigned 32-bit integer
        TFC_Value
    rrc.minimumSF  minimumSF
        Unsigned 32-bit integer
        MinimumSF_DL
    rrc.minimumSpreadingFactor  minimumSpreadingFactor
        Unsigned 32-bit integer
    rrc.minimum_Allowed_Code_Rate  minimum-Allowed-Code-Rate
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.missingPDU_Indicator  missingPDU-Indicator
        Boolean
        BOOLEAN
    rrc.mmax  mmax
        Unsigned 32-bit integer
        INTEGER_1_32
    rrc.mnc  mnc
        Unsigned 32-bit integer
    rrc.mod16QAM  mod16QAM
        No value
    rrc.modQPSK  modQPSK
        No value
    rrc.mode  mode
        Unsigned 32-bit integer
    rrc.mode1  mode1
        No value
    rrc.mode2  mode2
        No value
    rrc.modeSpecific  modeSpecific
        Unsigned 32-bit integer
    rrc.modeSpecificInfo  modeSpecificInfo
        Unsigned 32-bit integer
    rrc.modeSpecificInfo2  modeSpecificInfo2
        Unsigned 32-bit integer
    rrc.modeSpecificPhysChInfo  modeSpecificPhysChInfo
        Unsigned 32-bit integer
    rrc.modeSpecificTransChInfo  modeSpecificTransChInfo
        Unsigned 32-bit integer
    rrc.model_id  model-id
        Unsigned 32-bit integer
        INTEGER_0_1
    rrc.modifedServiceList  modifedServiceList
        Unsigned 32-bit integer
        MBMS_ModifedServiceList_r6
    rrc.modificationPeriodCoefficient  modificationPeriodCoefficient
        Unsigned 32-bit integer
        INTEGER_7_10
    rrc.modificationPeriodIdentity  modificationPeriodIdentity
        Unsigned 32-bit integer
        INTEGER_0_1
    rrc.modifiedServiceList  modifiedServiceList
        Unsigned 32-bit integer
        MBMS_ModifiedServiceList_v770ext
    rrc.modify  modify
        No value
    rrc.modulation  modulation
        Unsigned 32-bit integer
    rrc.monitoredCellRACH_List_v7g0ext  monitoredCellRACH-List-v7g0ext
        Unsigned 32-bit integer
    rrc.monitoredCells  monitoredCells
        Unsigned 32-bit integer
        MonitoredCellRACH_List
    rrc.monitoredSetReportingQuantities  monitoredSetReportingQuantities
        No value
        CellReportingQuantities
    rrc.moreTimeslots  moreTimeslots
        Unsigned 32-bit integer
    rrc.ms2_NonSchedTransmGrantHARQAlloc  ms2-NonSchedTransmGrantHARQAlloc
        Byte array
        BIT_STRING_SIZE_8
    rrc.ms2_SchedTransmGrantHARQAlloc  ms2-SchedTransmGrantHARQAlloc
        Byte array
        BIT_STRING_SIZE_8
    rrc.ms_Part  ms-Part
        Unsigned 32-bit integer
        INTEGER_0_80
    rrc.ms_part  ms-part
        Unsigned 32-bit integer
        INTEGER_0_1023
    rrc.mschDefaultConfigurationInfo  mschDefaultConfigurationInfo
        No value
        MBMS_MSCH_ConfigurationInfo_r6
    rrc.mschShedulingInfo  mschShedulingInfo
        Unsigned 32-bit integer
        MBMS_MSCHSchedulingInfo
    rrc.msch_ConfigurationInfo  msch-ConfigurationInfo
        No value
        MBMS_MSCH_ConfigurationInfo_r6
    rrc.msch_transportFormatSet  msch-transportFormatSet
        Unsigned 32-bit integer
        TransportFormatSet
    rrc.msg_Type  msg-Type
        Byte array
        BIT_STRING_SIZE_8
    rrc.mtch_L1CombiningPeriodList  mtch-L1CombiningPeriodList
        Unsigned 32-bit integer
    rrc.mtch_L1CombiningPeriodList_item  mtch-L1CombiningPeriodList item
        No value
        T_mtch_L1CombiningPeriodList_item
    rrc.multiCarrierMeasurements  multiCarrierMeasurements
        Boolean
        BOOLEAN
    rrc.multiCarrierNumber  multiCarrierNumber
        Unsigned 32-bit integer
        INTEGER_1_maxTDD128Carrier
    rrc.multiCarrier_physical_layer_category  multiCarrier-physical-layer-category
        Unsigned 32-bit integer
        MultiCarrier_HSDSCH_physical_layer_category
    rrc.multiCarrier_physical_layer_category_extension  multiCarrier-physical-layer-category-extension
        Unsigned 32-bit integer
        MultiCarrier_HSDSCH_physical_layer_category_extension
    rrc.multiCellSupport  multiCellSupport
        Unsigned 32-bit integer
    rrc.multiCodeInfo  multiCodeInfo
        Unsigned 32-bit integer
    rrc.multiModeCapability  multiModeCapability
        Unsigned 32-bit integer
    rrc.multiModeRAT_Capability  multiModeRAT-Capability
        No value
        MultiModeRAT_Capability_v770ext
    rrc.multiModeRAT_Capability_v590ext  multiModeRAT-Capability-v590ext
        No value
    rrc.multiModeRAT_Capability_v680ext  multiModeRAT-Capability-v680ext
        No value
    rrc.multiRAT_CapabilityList  multiRAT-CapabilityList
        No value
        MultiRAT_Capability
    rrc.multi_frequencyInfo  multi-frequencyInfo
        No value
        Multi_frequencyInfo_LCR_r7
    rrc.multipathIndicator  multipathIndicator
        Unsigned 32-bit integer
    rrc.multiplePLMN_List  multiplePLMN-List
        No value
        MultiplePLMN_List_r6
    rrc.multiplePLMN_list  multiplePLMN-list
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_6_OF_PLMN_IdentityWithOptionalMCC_r6
    rrc.multiplePLMNs  multiplePLMNs
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_5_OF_PLMN_IdentityWithOptionalMCC_r6
    rrc.multipleplmnsOfInterFreqCellsList  multipleplmnsOfInterFreqCellsList
        Unsigned 32-bit integer
    rrc.multipleplmnsOfIntraFreqCellsList  multipleplmnsOfIntraFreqCellsList
        Unsigned 32-bit integer
    rrc.nA  nA
        Byte array
        BIT_STRING_SIZE_11
    rrc.n_300  n-300
        Unsigned 32-bit integer
    rrc.n_301  n-301
        Unsigned 32-bit integer
    rrc.n_302  n-302
        Unsigned 32-bit integer
    rrc.n_304  n-304
        Unsigned 32-bit integer
    rrc.n_308  n-308
        Unsigned 32-bit integer
    rrc.n_310  n-310
        Unsigned 32-bit integer
    rrc.n_312  n-312
        Unsigned 32-bit integer
    rrc.n_313  n-313
        Unsigned 32-bit integer
    rrc.n_315  n-315
        Unsigned 32-bit integer
    rrc.n_AP_RetransMax  n-AP-RetransMax
        Unsigned 32-bit integer
    rrc.n_AccessFails  n-AccessFails
        Unsigned 32-bit integer
    rrc.n_CR  n-CR
        Unsigned 32-bit integer
        INTEGER_1_16
    rrc.n_EOT  n-EOT
        Unsigned 32-bit integer
    rrc.n_E_HICH  n-E-HICH
        Unsigned 32-bit integer
        INTEGER_4_44
    rrc.n_E_UCCH  n-E-UCCH
        Unsigned 32-bit integer
        INTEGER_1_8
    rrc.n_GAP  n-GAP
        Unsigned 32-bit integer
    rrc.n_PCH  n-PCH
        Unsigned 32-bit integer
    rrc.n_RUCCH  n-RUCCH
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.n_StartMessage  n-StartMessage
        Unsigned 32-bit integer
    rrc.nack_ack_power_offset  nack-ack-power-offset
        Signed 32-bit integer
        INTEGER_M7_8
    rrc.nas_Message  nas-Message
        Byte array
    rrc.nas_Synchronisation_Indicator  nas-Synchronisation-Indicator
        Byte array
    rrc.navAPowerHalf  navAPowerHalf
        Byte array
        BIT_STRING_SIZE_32
    rrc.navAlmDeltaI  navAlmDeltaI
        Byte array
        BIT_STRING_SIZE_16
    rrc.navAlmE  navAlmE
        Byte array
        BIT_STRING_SIZE_16
    rrc.navAlmMo  navAlmMo
        Byte array
        BIT_STRING_SIZE_24
    rrc.navAlmOMEGADOT  navAlmOMEGADOT
        Byte array
        BIT_STRING_SIZE_16
    rrc.navAlmOMEGAo  navAlmOMEGAo
        Byte array
        BIT_STRING_SIZE_24
    rrc.navAlmOmega  navAlmOmega
        Byte array
        BIT_STRING_SIZE_24
    rrc.navAlmSVHealth  navAlmSVHealth
        Byte array
        BIT_STRING_SIZE_8
    rrc.navAlmSqrtA  navAlmSqrtA
        Byte array
        BIT_STRING_SIZE_24
    rrc.navAlmaf0  navAlmaf0
        Byte array
        BIT_STRING_SIZE_11
    rrc.navAlmaf1  navAlmaf1
        Byte array
        BIT_STRING_SIZE_11
    rrc.navCic  navCic
        Byte array
        BIT_STRING_SIZE_16
    rrc.navCis  navCis
        Byte array
        BIT_STRING_SIZE_16
    rrc.navClockModel  navClockModel
        No value
    rrc.navCrc  navCrc
        Byte array
        BIT_STRING_SIZE_16
    rrc.navCrs  navCrs
        Byte array
        BIT_STRING_SIZE_16
    rrc.navCuc  navCuc
        Byte array
        BIT_STRING_SIZE_16
    rrc.navCus  navCus
        Byte array
        BIT_STRING_SIZE_16
    rrc.navDeltaN  navDeltaN
        Byte array
        BIT_STRING_SIZE_16
    rrc.navE  navE
        Byte array
        BIT_STRING_SIZE_32
    rrc.navFitFlag  navFitFlag
        Byte array
        BIT_STRING_SIZE_1
    rrc.navI0  navI0
        Byte array
        BIT_STRING_SIZE_32
    rrc.navIDot  navIDot
        Byte array
        BIT_STRING_SIZE_14
    rrc.navKeplerianSet  navKeplerianSet
        No value
        NavModel_NAVKeplerianSet
    rrc.navM0  navM0
        Byte array
        BIT_STRING_SIZE_32
    rrc.navModelAddDataRequest  navModelAddDataRequest
        No value
        UE_Positioning_GPS_NavModelAddDataReq
    rrc.navOmega  navOmega
        Byte array
        BIT_STRING_SIZE_32
    rrc.navOmegaA0  navOmegaA0
        Byte array
        BIT_STRING_SIZE_32
    rrc.navOmegaADot  navOmegaADot
        Byte array
        BIT_STRING_SIZE_24
    rrc.navTgd  navTgd
        Byte array
        BIT_STRING_SIZE_8
    rrc.navToc  navToc
        Byte array
        BIT_STRING_SIZE_16
    rrc.navToe  navToe
        Byte array
        BIT_STRING_SIZE_16
    rrc.navURA  navURA
        Byte array
        BIT_STRING_SIZE_4
    rrc.navaf0  navaf0
        Byte array
        BIT_STRING_SIZE_22
    rrc.navaf1  navaf1
        Byte array
        BIT_STRING_SIZE_16
    rrc.navaf2  navaf2
        Byte array
        BIT_STRING_SIZE_8
    rrc.navigationModelRequest  navigationModelRequest
        Boolean
        BOOLEAN
    rrc.navigationModelSatInfoList  navigationModelSatInfoList
        Unsigned 32-bit integer
    rrc.nb01Max  nb01Max
        Unsigned 32-bit integer
        NB01
    rrc.nb01Min  nb01Min
        Unsigned 32-bit integer
        NB01
    rrc.ncMode  ncMode
        Byte array
        NC_Mode
    rrc.ncc  ncc
        Unsigned 32-bit integer
    rrc.neighCellSI_AcquisitionCapability  neighCellSI-AcquisitionCapability
        No value
    rrc.neighbourAndChannelIdentity  neighbourAndChannelIdentity
        No value
        CellAndChannelIdentity
    rrc.neighbourIdentity  neighbourIdentity
        No value
        PrimaryCPICH_Info
    rrc.neighbourList  neighbourList
        Unsigned 32-bit integer
        NeighbourList_TDD_r7
    rrc.neighbourList_v390ext  neighbourList-v390ext
        Unsigned 32-bit integer
    rrc.neighbourQuality  neighbourQuality
        No value
    rrc.neighbouringCellIdentity  neighbouringCellIdentity
        Unsigned 32-bit integer
        IntraFreqCellID
    rrc.neighbouringCellSCCPCHList  neighbouringCellSCCPCHList
        Unsigned 32-bit integer
        MBMS_NeighbouringCellSCCPCHList_r6
    rrc.networkAssistedGANSS_supportedList  networkAssistedGANSS-supportedList
        Unsigned 32-bit integer
        NetworkAssistedGANSS_Supported_List
    rrc.networkAssistedGPS_Supported  networkAssistedGPS-Supported
        Unsigned 32-bit integer
    rrc.networkStandardTime  networkStandardTime
        Byte array
        BIT_STRING_SIZE_40
    rrc.newConfiguration  newConfiguration
        No value
    rrc.newH_RNTI  newH-RNTI
        Byte array
        H_RNTI
    rrc.newInterFreqCellList  newInterFreqCellList
        Unsigned 32-bit integer
        NewInterFreqCellList_v7b0ext
    rrc.newInterFrequencyCellInfoListAddon_r5  newInterFrequencyCellInfoListAddon-r5
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxCellMeas_OF_CellSelectReselectInfo_v590ext
    rrc.newInterFrequencyCellInfoList_v590ext  newInterFrequencyCellInfoList-v590ext
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxCellMeas_OF_CellSelectReselectInfo_v590ext
    rrc.newInterRATCellInfoListAddon_r5  newInterRATCellInfoListAddon-r5
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxCellMeas_OF_CellSelectReselectInfo_v590ext
    rrc.newInterRATCellInfoList_v590ext  newInterRATCellInfoList-v590ext
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxCellMeas_OF_CellSelectReselectInfo_v590ext
    rrc.newInterRATCellList  newInterRATCellList
        Unsigned 32-bit integer
    rrc.newIntraFreqCellList  newIntraFreqCellList
        Unsigned 32-bit integer
        NewIntraFreqCellList_LCR_v8a0ext
    rrc.newIntraFrequencyCellInfoListAddon_r5  newIntraFrequencyCellInfoListAddon-r5
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxCellMeas_OF_CellSelectReselectInfo_v590ext
    rrc.newIntraFrequencyCellInfoList_v590ext  newIntraFrequencyCellInfoList-v590ext
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxCellMeas_OF_CellSelectReselectInfo_v590ext
    rrc.newOperation  newOperation
        No value
    rrc.newParameters  newParameters
        No value
    rrc.newPrimary_E_RNTI  newPrimary-E-RNTI
        Byte array
        E_RNTI
    rrc.newSecondary_E_RNTI  newSecondary-E-RNTI
        Byte array
        E_RNTI
    rrc.newTiming  newTiming
        No value
    rrc.newU_RNTI  newU-RNTI
        No value
        U_RNTI
    rrc.new_C_RNTI  new-C-RNTI
        Byte array
        C_RNTI
    rrc.new_Configuration  new-Configuration
        No value
    rrc.new_DSCH_RNTI  new-DSCH-RNTI
        Byte array
        DSCH_RNTI
    rrc.new_H_RNTI  new-H-RNTI
        Byte array
        H_RNTI
    rrc.new_U_RNTI  new-U-RNTI
        No value
        U_RNTI
    rrc.new_c_RNTI  new-c-RNTI
        Byte array
        C_RNTI
    rrc.nextSchedulingperiod  nextSchedulingperiod
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.nf_BO_AllBusy  nf-BO-AllBusy
        Unsigned 32-bit integer
    rrc.nf_BO_Mismatch  nf-BO-Mismatch
        Unsigned 32-bit integer
    rrc.nf_BO_NoAICH  nf-BO-NoAICH
        Unsigned 32-bit integer
    rrc.nf_Max  nf-Max
        Unsigned 32-bit integer
    rrc.ni_CountPerFrame  ni-CountPerFrame
        Unsigned 32-bit integer
        MBMS_NI_CountPerFrame
    rrc.nid  nid
        Byte array
    rrc.nidentifyAbort  nidentifyAbort
        Unsigned 32-bit integer
    rrc.noCoding  noCoding
        No value
    rrc.noDiscard  noDiscard
        Unsigned 32-bit integer
        MaxDAT
    rrc.noError  noError
        No value
    rrc.noInfo  noInfo
        No value
    rrc.noMore  noMore
        No value
    rrc.noRelease  noRelease
        No value
    rrc.noReporting  noReporting
        No value
        ReportingCellStatusOpt
    rrc.noRestriction  noRestriction
        No value
    rrc.noSegment  noSegment
        No value
    rrc.noSlotsForTFCIandTPC  noSlotsForTFCIandTPC
        Unsigned 32-bit integer
        INTEGER_1_12
    rrc.nonCriticalExtension  nonCriticalExtension
        No value
    rrc.nonCriticalExtensions  nonCriticalExtensions
        No value
    rrc.nonFreqRelatedEventResults  nonFreqRelatedEventResults
        Unsigned 32-bit integer
        CellMeasurementEventResults
    rrc.nonFreqRelatedQuantities  nonFreqRelatedQuantities
        No value
        CellReportingQuantities
    rrc.nonUsedFreqParameterList  nonUsedFreqParameterList
        Unsigned 32-bit integer
    rrc.nonUsedFreqThreshold  nonUsedFreqThreshold
        Signed 32-bit integer
        Threshold
    rrc.nonUsedFreqW  nonUsedFreqW
        Unsigned 32-bit integer
        W
    rrc.nonVerifiedBSIC  nonVerifiedBSIC
        Unsigned 32-bit integer
        BCCH_ARFCN
    rrc.non_HCS_t_CR_Max  non-HCS-t-CR-Max
        Unsigned 32-bit integer
        T_CRMax
    rrc.non_ScheduledTransGrantInfo  non-ScheduledTransGrantInfo
        No value
    rrc.non_TCP_SPACE  non-TCP-SPACE
        Unsigned 32-bit integer
        INTEGER_3_65535
    rrc.non_allowedTFC_List  non-allowedTFC-List
        Unsigned 32-bit integer
    rrc.non_broadcastIndication  non-broadcastIndication
        Unsigned 32-bit integer
    rrc.non_native_AD_choices_supported  non-native-AD-choices-supported
        Unsigned 32-bit integer
    rrc.nonce  nonce
        Byte array
        BIT_STRING_SIZE_128
    rrc.noncriticalExtensions  noncriticalExtensions
        No value
    rrc.none  none
        No value
    rrc.normalPattern  normalPattern
        No value
    rrc.normalTFCI_Signalling  normalTFCI-Signalling
        Unsigned 32-bit integer
        ExplicitTFCS_Configuration
    rrc.notActive  notActive
        No value
    rrc.notBarred  notBarred
        No value
    rrc.notPresent  notPresent
        No value
    rrc.notStored  notStored
        No value
    rrc.notSupported  notSupported
        No value
    rrc.notUsed  notUsed
        No value
    rrc.notificationOfAllMBSFNServicesInTheBand  notificationOfAllMBSFNServicesInTheBand
        Unsigned 32-bit integer
    rrc.ns_BO_Busy  ns-BO-Busy
        Unsigned 32-bit integer
    rrc.numAdditionalTimeslots  numAdditionalTimeslots
        Unsigned 32-bit integer
        INTEGER_1_maxTS_1
    rrc.numberOfDPDCH  numberOfDPDCH
        Unsigned 32-bit integer
    rrc.numberOfDataTransmOcc  numberOfDataTransmOcc
        Unsigned 32-bit integer
        INTEGER_1_610
    rrc.numberOfFBI_Bits  numberOfFBI-Bits
        Unsigned 32-bit integer
    rrc.numberOfFollowingARFCNs  numberOfFollowingARFCNs
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.numberOfOTDOA_Measurements  numberOfOTDOA-Measurements
        Byte array
        BIT_STRING_SIZE_3
    rrc.numberOfPSCs  numberOfPSCs
        Unsigned 32-bit integer
    rrc.numberOfPcchTransmissions  numberOfPcchTransmissions
        Unsigned 32-bit integer
        INTEGER_1_5
    rrc.numberOfProcesses  numberOfProcesses
        Unsigned 32-bit integer
        INTEGER_1_8
    rrc.numberOfRepetitionsPerSFNPeriod  numberOfRepetitionsPerSFNPeriod
        Unsigned 32-bit integer
    rrc.numberOfTPC_Bits  numberOfTPC-Bits
        Unsigned 32-bit integer
    rrc.numberOfTbSizeAndTTIList  numberOfTbSizeAndTTIList
        Unsigned 32-bit integer
    rrc.numberOfTbSizeList  numberOfTbSizeList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxTF_OF_NumberOfTransportBlocks
    rrc.numberOfTransportBlocks  numberOfTransportBlocks
        Unsigned 32-bit integer
    rrc.number_of_ENRTI_per_group  number-of-ENRTI-per-group
        Unsigned 32-bit integer
        INTEGER_1_maxERNTIperGroup
    rrc.number_of_group  number-of-group
        Unsigned 32-bit integer
        INTEGER_1_maxERNTIgroup
    rrc.occurrenceSequenceNumberOfPICH  occurrenceSequenceNumberOfPICH
        Unsigned 32-bit integer
    rrc.octetModeRLC_SizeInfoType1  octetModeRLC-SizeInfoType1
        Unsigned 32-bit integer
    rrc.octetModeRLC_SizeInfoType2  octetModeRLC-SizeInfoType2
        Unsigned 32-bit integer
    rrc.octetModeType1  octetModeType1
        Unsigned 32-bit integer
        OctetModeRLC_SizeInfoType1
    rrc.off  off
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.offset  offset
        Unsigned 32-bit integer
        INTEGER_0_1
    rrc.old_Configuration  old-Configuration
        No value
    rrc.omega  omega
        Byte array
        BIT_STRING_SIZE_24
    rrc.omega0  omega0
        Byte array
        BIT_STRING_SIZE_24
    rrc.omegaDot  omegaDot
        Byte array
        BIT_STRING_SIZE_16
    rrc.omega_zero_nav  omega-zero-nav
        Byte array
        BIT_STRING_SIZE_32
    rrc.omegadot_nav  omegadot-nav
        Byte array
        BIT_STRING_SIZE_24
    rrc.onWithNoReporting  onWithNoReporting
        No value
    rrc.one  one
        No value
    rrc.oneLogicalChannel  oneLogicalChannel
        No value
        UL_LogicalChannelMapping
    rrc.ongoingMeasRepList  ongoingMeasRepList
        Unsigned 32-bit integer
    rrc.openLoopPowerControl_IPDL_TDD  openLoopPowerControl-IPDL-TDD
        No value
        OpenLoopPowerControl_IPDL_TDD_r4
    rrc.openLoopPowerControl_TDD  openLoopPowerControl-TDD
        No value
    rrc.orbitModelID  orbitModelID
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.orientationMajorAxis  orientationMajorAxis
        Unsigned 32-bit integer
        INTEGER_0_89
    rrc.other  other
        Unsigned 32-bit integer
    rrc.otherEntries  otherEntries
        Unsigned 32-bit integer
        PredefinedConfigStatusListVarSz
    rrc.outofSyncWindow  outofSyncWindow
        Unsigned 32-bit integer
    rrc.pCCPCH_LCR_Extensions  pCCPCH-LCR-Extensions
        No value
        PrimaryCCPCH_Info_LCR_r4_ext
    rrc.pCPICH_UsageForChannelEst  pCPICH-UsageForChannelEst
        Unsigned 32-bit integer
    rrc.pNBSCH_Allocation_r4  pNBSCH-Allocation-r4
        No value
    rrc.pSDomainSpecificAccessRestriction  pSDomainSpecificAccessRestriction
        Unsigned 32-bit integer
        DomainSpecificAccessRestriction_v670ext
    rrc.pSI  pSI
        Unsigned 32-bit integer
        GERAN_SystemInformation
    rrc.p_REV  p-REV
        Byte array
    rrc.p_TMSI  p-TMSI
        Byte array
        P_TMSI_GSM_MAP
    rrc.p_TMSI_GSM_MAP  p-TMSI-GSM-MAP
        Byte array
    rrc.p_TMSI_and_RAI  p-TMSI-and-RAI
        No value
        P_TMSI_and_RAI_GSM_MAP
    rrc.pagingCause  pagingCause
        Unsigned 32-bit integer
    rrc.pagingIndicatorLength  pagingIndicatorLength
        Unsigned 32-bit integer
    rrc.pagingPermissionWithAccessControlForAll  pagingPermissionWithAccessControlForAll
        No value
        PagingPermissionWithAccessControlParameters
    rrc.pagingPermissionWithAccessControlList  pagingPermissionWithAccessControlList
        No value
    rrc.pagingPermissionWithAccessControlParametersForOperator1  pagingPermissionWithAccessControlParametersForOperator1
        No value
        PagingPermissionWithAccessControlParameters
    rrc.pagingPermissionWithAccessControlParametersForOperator2  pagingPermissionWithAccessControlParametersForOperator2
        No value
        PagingPermissionWithAccessControlParameters
    rrc.pagingPermissionWithAccessControlParametersForOperator3  pagingPermissionWithAccessControlParametersForOperator3
        No value
        PagingPermissionWithAccessControlParameters
    rrc.pagingPermissionWithAccessControlParametersForOperator4  pagingPermissionWithAccessControlParametersForOperator4
        No value
        PagingPermissionWithAccessControlParameters
    rrc.pagingPermissionWithAccessControlParametersForOperator5  pagingPermissionWithAccessControlParametersForOperator5
        No value
        PagingPermissionWithAccessControlParameters
    rrc.pagingPermissionWithAccessControlParametersForPLMNOfMIB  pagingPermissionWithAccessControlParametersForPLMNOfMIB
        No value
        PagingPermissionWithAccessControlParameters
    rrc.pagingPermissionWithAccessControlParametersForSharedNetwork  pagingPermissionWithAccessControlParametersForSharedNetwork
        Unsigned 32-bit integer
        PagingPermissionWithAccessControlForSharedNetwork
    rrc.pagingRecord2List  pagingRecord2List
        Unsigned 32-bit integer
        PagingRecord2List_r5
    rrc.pagingRecordList  pagingRecordList
        Unsigned 32-bit integer
    rrc.pagingRecordTypeID  pagingRecordTypeID
        Unsigned 32-bit integer
    rrc.pagingResponseRestrictionIndicator  pagingResponseRestrictionIndicator
        Unsigned 32-bit integer
    rrc.pagingType1  pagingType1
        No value
    rrc.pagingType1_r3_add_ext  pagingType1-r3-add-ext
        Byte array
        BIT_STRING
    rrc.pagingType1_v590ext  pagingType1-v590ext
        No value
        PagingType1_v590ext_IEs
    rrc.pagingType1_v860ext  pagingType1-v860ext
        No value
        PagingType1_v860ext_IEs
    rrc.pagingType2  pagingType2
        No value
    rrc.pagingType2_r3_add_ext  pagingType2-r3-add-ext
        Byte array
        BIT_STRING
    rrc.paging_associatedHspdschInfo  paging-associatedHspdschInfo
        Unsigned 32-bit integer
    rrc.paging_associatedHspdschInfo_item  paging-associatedHspdschInfo item
        No value
    rrc.paging_sub_Channel_size  paging-sub-Channel-size
        Unsigned 32-bit integer
        INTEGER_1_3
    rrc.parameters  parameters
        Unsigned 32-bit integer
    rrc.part1  part1
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.part2  part2
        Unsigned 32-bit integer
        INTEGER_1_7
    rrc.pathloss  pathloss
        Unsigned 32-bit integer
    rrc.pathlossCompensationSwitch  pathlossCompensationSwitch
        Boolean
        BOOLEAN
    rrc.pathloss_compensation_switch  pathloss-compensation-switch
        Boolean
        BOOLEAN
    rrc.pathloss_reportingIndicator  pathloss-reportingIndicator
        Boolean
        BOOLEAN
    rrc.patternIdentifier  patternIdentifier
        Unsigned 32-bit integer
        INTEGER_0_maxMeasOccasionPattern_1
    rrc.payload  payload
        Unsigned 32-bit integer
    rrc.pc_Preamble  pc-Preamble
        Unsigned 32-bit integer
    rrc.pcch_InformationList  pcch-InformationList
        No value
    rrc.pcp_Length  pcp-Length
        Unsigned 32-bit integer
    rrc.pcpch_ChannelInfoList  pcpch-ChannelInfoList
        Unsigned 32-bit integer
    rrc.pcpch_DL_ChannelisationCode  pcpch-DL-ChannelisationCode
        Unsigned 32-bit integer
        INTEGER_0_511
    rrc.pcpch_DL_ScramblingCode  pcpch-DL-ScramblingCode
        Unsigned 32-bit integer
        SecondaryScramblingCode
    rrc.pcpch_UL_ScramblingCode  pcpch-UL-ScramblingCode
        Unsigned 32-bit integer
        INTEGER_0_79
    rrc.pdcp_Capability  pdcp-Capability
        No value
        PDCP_Capability_v770ext
    rrc.pdcp_Capability_r4_ext  pdcp-Capability-r4-ext
        No value
    rrc.pdcp_Capability_r5_ext  pdcp-Capability-r5-ext
        No value
    rrc.pdcp_Capability_r5_ext2  pdcp-Capability-r5-ext2
        No value
    rrc.pdcp_Info  pdcp-Info
        No value
    rrc.pdcp_PDU_Header  pdcp-PDU-Header
        Unsigned 32-bit integer
    rrc.pdcp_ROHC_TargetMode  pdcp-ROHC-TargetMode
        Unsigned 32-bit integer
    rrc.pdcp_SN_Info  pdcp-SN-Info
        Unsigned 32-bit integer
    rrc.pdschConfirmation  pdschConfirmation
        Unsigned 32-bit integer
        PDSCH_Identity
    rrc.pdsch_AllocationPeriodInfo  pdsch-AllocationPeriodInfo
        No value
        AllocationPeriodInfo
    rrc.pdsch_CapacityAllocationInfo  pdsch-CapacityAllocationInfo
        No value
    rrc.pdsch_CodeMapList  pdsch-CodeMapList
        Unsigned 32-bit integer
    rrc.pdsch_Identity  pdsch-Identity
        Unsigned 32-bit integer
    rrc.pdsch_Info  pdsch-Info
        No value
    rrc.pdsch_PowerControlInfo  pdsch-PowerControlInfo
        No value
    rrc.pdsch_SysInfo  pdsch-SysInfo
        No value
    rrc.pdsch_SysInfoList  pdsch-SysInfoList
        Unsigned 32-bit integer
    rrc.pdsch_SysInfoList_SFN  pdsch-SysInfoList-SFN
        Unsigned 32-bit integer
    rrc.pdsch_TimeslotsCodes  pdsch-TimeslotsCodes
        No value
        DownlinkTimeslotsCodes
    rrc.pebase_PowerControlGAP  pebase-PowerControlGAP
        Unsigned 32-bit integer
        PowerControlGAP
    rrc.penaltyTime  penaltyTime
        Unsigned 32-bit integer
        PenaltyTime_RSCP
    rrc.pendingAfterTrigger  pendingAfterTrigger
        Unsigned 32-bit integer
        INTEGER_1_512
    rrc.pendingTimeAfterTrigger  pendingTimeAfterTrigger
        Unsigned 32-bit integer
    rrc.periodDuration  periodDuration
        Unsigned 32-bit integer
        INTEGER_1_8
    rrc.periodStart  periodStart
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.periodicReportingInfo_1b  periodicReportingInfo-1b
        No value
    rrc.periodicalOrEventTrigger  periodicalOrEventTrigger
        Unsigned 32-bit integer
    rrc.periodicalReportingCriteria  periodicalReportingCriteria
        No value
    rrc.periodicityOfSchedInfo_Grant  periodicityOfSchedInfo-Grant
        Unsigned 32-bit integer
        E_DPDCH_PeriodicyOfSchedInfo
    rrc.periodicityOfSchedInfo_NoGrant  periodicityOfSchedInfo-NoGrant
        Unsigned 32-bit integer
        E_DPDCH_PeriodicyOfSchedInfo
    rrc.persistenceScalingFactorList  persistenceScalingFactorList
        Unsigned 32-bit integer
    rrc.physChDuration  physChDuration
        Unsigned 32-bit integer
        DurationTimeInfo
    rrc.physicalCellIdentity  physicalCellIdentity
        Unsigned 32-bit integer
        EUTRA_PhysicalCellIdentity
    rrc.physicalChannelCapabComp_hspdsch_r6  physicalChannelCapabComp-hspdsch-r6
        Unsigned 32-bit integer
        HSDSCH_physical_layer_category
    rrc.physicalChannelCapability  physicalChannelCapability
        No value
        PhysicalChannelCapability_v770ext
    rrc.physicalChannelCapability_LCR  physicalChannelCapability-LCR
        No value
        PhysicalChannelCapability_LCR_r4
    rrc.physicalChannelCapability_edch_r6  physicalChannelCapability-edch-r6
        No value
    rrc.physicalChannelFailure  physicalChannelFailure
        No value
    rrc.physicalChannelReconfiguration  physicalChannelReconfiguration
        Unsigned 32-bit integer
    rrc.physicalChannelReconfigurationComplete  physicalChannelReconfigurationComplete
        No value
    rrc.physicalChannelReconfigurationComplete_r3_add_ext  physicalChannelReconfigurationComplete-r3-add-ext
        Byte array
        BIT_STRING
    rrc.physicalChannelReconfigurationComplete_v770ext  physicalChannelReconfigurationComplete-v770ext
        No value
        PhysicalChannelReconfigurationComplete_v770ext_IEs
    rrc.physicalChannelReconfigurationFailure  physicalChannelReconfigurationFailure
        No value
    rrc.physicalChannelReconfigurationFailure_r3_add_ext  physicalChannelReconfigurationFailure-r3-add-ext
        Byte array
        BIT_STRING
    rrc.physicalChannelReconfiguration_r3  physicalChannelReconfiguration-r3
        No value
        PhysicalChannelReconfiguration_r3_IEs
    rrc.physicalChannelReconfiguration_r3_add_ext  physicalChannelReconfiguration-r3-add-ext
        Byte array
        BIT_STRING
    rrc.physicalChannelReconfiguration_r4  physicalChannelReconfiguration-r4
        No value
        PhysicalChannelReconfiguration_r4_IEs
    rrc.physicalChannelReconfiguration_r4_add_ext  physicalChannelReconfiguration-r4-add-ext
        Byte array
        BIT_STRING
    rrc.physicalChannelReconfiguration_r5  physicalChannelReconfiguration-r5
        No value
        PhysicalChannelReconfiguration_r5_IEs
    rrc.physicalChannelReconfiguration_r5_add_ext  physicalChannelReconfiguration-r5-add-ext
        Byte array
        BIT_STRING
    rrc.physicalChannelReconfiguration_r6  physicalChannelReconfiguration-r6
        No value
        PhysicalChannelReconfiguration_r6_IEs
    rrc.physicalChannelReconfiguration_r6_add_ext  physicalChannelReconfiguration-r6-add-ext
        Byte array
        BIT_STRING
    rrc.physicalChannelReconfiguration_r7  physicalChannelReconfiguration-r7
        No value
        PhysicalChannelReconfiguration_r7_IEs
    rrc.physicalChannelReconfiguration_r7_add_ext  physicalChannelReconfiguration-r7-add-ext
        Byte array
        BIT_STRING
    rrc.physicalChannelReconfiguration_r8  physicalChannelReconfiguration-r8
        No value
        PhysicalChannelReconfiguration_r8_IEs
    rrc.physicalChannelReconfiguration_r8_add_ext  physicalChannelReconfiguration-r8-add-ext
        Byte array
        BIT_STRING
    rrc.physicalChannelReconfiguration_r9  physicalChannelReconfiguration-r9
        No value
        PhysicalChannelReconfiguration_r9_IEs
    rrc.physicalChannelReconfiguration_r9_add_ext  physicalChannelReconfiguration-r9-add-ext
        Byte array
        BIT_STRING
    rrc.physicalChannelReconfiguration_v3a0ext  physicalChannelReconfiguration-v3a0ext
        No value
    rrc.physicalChannelReconfiguration_v4b0ext  physicalChannelReconfiguration-v4b0ext
        No value
        PhysicalChannelReconfiguration_v4b0ext_IEs
    rrc.physicalChannelReconfiguration_v590ext  physicalChannelReconfiguration-v590ext
        No value
        PhysicalChannelReconfiguration_v590ext_IEs
    rrc.physicalChannelReconfiguration_v690ext  physicalChannelReconfiguration-v690ext
        No value
        PhysicalChannelReconfiguration_v690ext_IEs
    rrc.physicalChannelReconfiguration_v6b0ext  physicalChannelReconfiguration-v6b0ext
        No value
        PhysicalChannelReconfiguration_v6b0ext_IEs
    rrc.physicalChannelReconfiguration_v770ext  physicalChannelReconfiguration-v770ext
        No value
        PhysicalChannelReconfiguration_v770ext_IEs
    rrc.physicalChannelReconfiguration_v780ext  physicalChannelReconfiguration-v780ext
        No value
        PhysicalChannelReconfiguration_v780ext_IEs
    rrc.physicalChannelReconfiguration_v7d0ext  physicalChannelReconfiguration-v7d0ext
        No value
        PhysicalChannelReconfiguration_v7d0ext_IEs
    rrc.physicalChannelReconfiguration_v7f0ext  physicalChannelReconfiguration-v7f0ext
        No value
        PhysicalChannelReconfiguration_v7f0ext_IEs
    rrc.physicalChannelReconfiguration_v7g0ext  physicalChannelReconfiguration-v7g0ext
        No value
        PhysicalChannelReconfiguration_v7g0ext_IEs
    rrc.physicalChannelReconfiguration_v890ext  physicalChannelReconfiguration-v890ext
        No value
        PhysicalChannelReconfiguration_v890ext_IEs
    rrc.physicalChannelReconfiguration_v8a0ext  physicalChannelReconfiguration-v8a0ext
        No value
        PhysicalChannelReconfiguration_v8a0ext_IEs
    rrc.physicalSharedChannelAllocation  physicalSharedChannelAllocation
        Unsigned 32-bit integer
    rrc.physicalSharedChannelAllocation_r3  physicalSharedChannelAllocation-r3
        No value
        PhysicalSharedChannelAllocation_r3_IEs
    rrc.physicalSharedChannelAllocation_r3_add_ext  physicalSharedChannelAllocation-r3-add-ext
        Byte array
        BIT_STRING
    rrc.physicalSharedChannelAllocation_r4  physicalSharedChannelAllocation-r4
        No value
        PhysicalSharedChannelAllocation_r4_IEs
    rrc.physicalSharedChannelAllocation_r4_add_ext  physicalSharedChannelAllocation-r4-add-ext
        Byte array
        BIT_STRING
    rrc.physicalSharedChannelAllocation_v690ext  physicalSharedChannelAllocation-v690ext
        No value
        PhysicalSharedChannelAllocation_v690ext_IEs
    rrc.physicalSharedChannelAllocation_v770ext  physicalSharedChannelAllocation-v770ext
        No value
        PhysicalSharedChannelAllocation_v770ext_IEs
    rrc.physicalchannelcapability_edch  physicalchannelcapability-edch
        No value
        PhysicalChannelCapability_edch_r6
    rrc.pi_CountPerFrame  pi-CountPerFrame
        Unsigned 32-bit integer
    rrc.pichChannelisationCodeList_LCR_r4  pichChannelisationCodeList-LCR-r4
        Unsigned 32-bit integer
    rrc.pich_ForHSDPASupportedPagingList  pich-ForHSDPASupportedPagingList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxSCCPCH_OF_PICH_ForHSDPASupportedPaging
    rrc.pich_ForHsdschList  pich-ForHsdschList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxSCCPCH_OF_PICH_ForHSDPASupportedPaging_TDD128
    rrc.pich_Info  pich-Info
        Unsigned 32-bit integer
    rrc.pich_PowerOffset  pich-PowerOffset
        Signed 32-bit integer
    rrc.pilotSymbolExistence  pilotSymbolExistence
        Boolean
        BOOLEAN
    rrc.pl_NonMax  pl-NonMax
        Unsigned 32-bit integer
        E_DPDCH_PL_NonMax
    rrc.plcchSequenceNumber  plcchSequenceNumber
        Unsigned 32-bit integer
        INTEGER_1_14
    rrc.plcch_info  plcch-info
        No value
    rrc.plmn_Identity  plmn-Identity
        No value
    rrc.plmn_Type  plmn-Type
        Unsigned 32-bit integer
    rrc.plmn_ValueTag  plmn-ValueTag
        Unsigned 32-bit integer
    rrc.plmnsOfInterFreqCellsList  plmnsOfInterFreqCellsList
        Unsigned 32-bit integer
    rrc.plmnsOfInterRATCellsList  plmnsOfInterRATCellsList
        Unsigned 32-bit integer
    rrc.plmnsOfIntraFreqCellsList  plmnsOfIntraFreqCellsList
        Unsigned 32-bit integer
    rrc.pmX  pmX
        Byte array
        BIT_STRING_SIZE_21
    rrc.pmXdot  pmXdot
        Byte array
        BIT_STRING_SIZE_15
    rrc.pmY  pmY
        Byte array
        BIT_STRING_SIZE_21
    rrc.pmYdot  pmYdot
        Byte array
        BIT_STRING_SIZE_15
    rrc.pollWindow  pollWindow
        Unsigned 32-bit integer
    rrc.poll_PDU  poll-PDU
        Unsigned 32-bit integer
    rrc.poll_SDU  poll-SDU
        Unsigned 32-bit integer
    rrc.pollingInfo  pollingInfo
        No value
    rrc.positionData  positionData
        Byte array
        BIT_STRING_SIZE_16
    rrc.positionEstimate  positionEstimate
        Unsigned 32-bit integer
    rrc.positionFixedOrFlexible  positionFixedOrFlexible
        Unsigned 32-bit integer
    rrc.positioningMethod  positioningMethod
        Unsigned 32-bit integer
    rrc.positioningMode  positioningMode
        Unsigned 32-bit integer
    rrc.postVerificationPeriod  postVerificationPeriod
        Unsigned 32-bit integer
    rrc.potentiallySuccesfulBearerList  potentiallySuccesfulBearerList
        Unsigned 32-bit integer
        RB_IdentityList
    rrc.powerControlAlgorithm  powerControlAlgorithm
        Unsigned 32-bit integer
    rrc.powerControlGAP  powerControlGAP
        Unsigned 32-bit integer
    rrc.powerOffsetForSchedInfo  powerOffsetForSchedInfo
        Unsigned 32-bit integer
        INTEGER_0_6
    rrc.powerOffsetInfoShort  powerOffsetInfoShort
        No value
    rrc.powerOffsetInformation  powerOffsetInformation
        No value
    rrc.powerOffsetPilot_pdpdch  powerOffsetPilot-pdpdch
        Unsigned 32-bit integer
    rrc.powerOffsetPp_e  powerOffsetPp-e
        Signed 32-bit integer
        INTEGER_M5_10
    rrc.powerOffsetPp_m  powerOffsetPp-m
        Signed 32-bit integer
    rrc.powerOffsetTPC_pdpdch  powerOffsetTPC-pdpdch
        Unsigned 32-bit integer
    rrc.powerRampStep  powerRampStep
        Unsigned 32-bit integer
    rrc.powerResourceRelatedInfo  powerResourceRelatedInfo
        Unsigned 32-bit integer
        INTEGER_1_32
    rrc.power_control_gap  power-control-gap
        Unsigned 32-bit integer
        INTEGER_1_255
    rrc.power_level_HSSICH  power-level-HSSICH
        Signed 32-bit integer
        INTEGER_M120_M58
    rrc.prach_ChanCodes_LCR  prach-ChanCodes-LCR
        Unsigned 32-bit integer
        PRACH_ChanCodes_LCR_r4
    rrc.prach_ChanCodes_list_LCR  prach-ChanCodes-list-LCR
        Unsigned 32-bit integer
    rrc.prach_ConstantValue  prach-ConstantValue
        Signed 32-bit integer
        ConstantValueTdd
    rrc.prach_DefinitionList  prach-DefinitionList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxPRACH_FPACH_OF_PRACH_Definition_LCR_r4
    rrc.prach_Information_SIB5_List  prach-Information-SIB5-List
        Unsigned 32-bit integer
        DynamicPersistenceLevelList
    rrc.prach_Information_SIB6_List  prach-Information-SIB6-List
        Unsigned 32-bit integer
        DynamicPersistenceLevelList
    rrc.prach_Midamble  prach-Midamble
        Unsigned 32-bit integer
    rrc.prach_Partitioning  prach-Partitioning
        Unsigned 32-bit integer
        PRACH_Partitioning_r7
    rrc.prach_Partitioning_LCR  prach-Partitioning-LCR
        Unsigned 32-bit integer
        PRACH_Partitioning_LCR_r4
    rrc.prach_PowerOffset  prach-PowerOffset
        No value
    rrc.prach_PreambleForEnhancedUplink  prach-PreambleForEnhancedUplink
        No value
    rrc.prach_RACH_Info  prach-RACH-Info
        No value
    rrc.prach_RACH_Info_LCR  prach-RACH-Info-LCR
        No value
        PRACH_RACH_Info_LCR_r4
    rrc.prach_SystemInformationList  prach-SystemInformationList
        Unsigned 32-bit integer
    rrc.prach_SystemInformationList_LCR_r4  prach-SystemInformationList-LCR-r4
        Unsigned 32-bit integer
    rrc.prach_TFCS  prach-TFCS
        Unsigned 32-bit integer
        TFCS
    rrc.prach_information  prach-information
        Unsigned 32-bit integer
        PRACH_Information_LCR_List
    rrc.prc  prc
        Signed 32-bit integer
    rrc.preConfigMode  preConfigMode
        Unsigned 32-bit integer
    rrc.preDefPhyChConfiguration  preDefPhyChConfiguration
        No value
    rrc.preDefTransChConfiguration  preDefTransChConfiguration
        No value
    rrc.preDefinedRadioConfiguration  preDefinedRadioConfiguration
        No value
        PreDefRadioConfiguration
    rrc.pre_redirectionInfo  pre-redirectionInfo
        No value
    rrc.preambleRetransMax  preambleRetransMax
        Unsigned 32-bit integer
    rrc.preambleScramblingCodeWordNumber  preambleScramblingCodeWordNumber
        Unsigned 32-bit integer
    rrc.precodingWeightSetRestriction  precodingWeightSetRestriction
        Unsigned 32-bit integer
    rrc.preconfiguration  preconfiguration
        No value
    rrc.predefinedConfigIdentity  predefinedConfigIdentity
        Unsigned 32-bit integer
    rrc.predefinedConfigStatusInfo  predefinedConfigStatusInfo
        Boolean
        BOOLEAN
    rrc.predefinedConfigStatusList  predefinedConfigStatusList
        Unsigned 32-bit integer
    rrc.predefinedConfigStatusListComp  predefinedConfigStatusListComp
        No value
    rrc.predefinedConfigValueTag  predefinedConfigValueTag
        Unsigned 32-bit integer
    rrc.predefinedRB_Configuration  predefinedRB-Configuration
        No value
    rrc.present  present
        Unsigned 32-bit integer
        PredefinedConfigStatusList
    rrc.primaryCCPCH_Info  primaryCCPCH-Info
        No value
        PrimaryCCPCH_InfoPost
    rrc.primaryCCPCH_RSCP  primaryCCPCH-RSCP
        Unsigned 32-bit integer
    rrc.primaryCCPCH_RSCP_delta  primaryCCPCH-RSCP-delta
        Signed 32-bit integer
        DeltaRSCP
    rrc.primaryCCPCH_RSCP_reportingIndicator  primaryCCPCH-RSCP-reportingIndicator
        Boolean
        BOOLEAN
    rrc.primaryCCPCH_TX_Power  primaryCCPCH-TX-Power
        Unsigned 32-bit integer
    rrc.primaryCPICH  primaryCPICH
        No value
        PrimaryCPICH_Info
    rrc.primaryCPICH_Info  primaryCPICH-Info
        No value
    rrc.primaryCPICH_TX_Power  primaryCPICH-TX-Power
        Signed 32-bit integer
    rrc.primaryScramblingCode  primaryScramblingCode
        Unsigned 32-bit integer
    rrc.primary_CPICH_Info  primary-CPICH-Info
        No value
        PrimaryCPICH_Info
    rrc.primary_E_RNTI  primary-E-RNTI
        Byte array
        E_RNTI
    rrc.primary_Secondary_GrantSelector  primary-Secondary-GrantSelector
        Unsigned 32-bit integer
    rrc.primary_plmn_Identity  primary-plmn-Identity
        No value
        PLMN_Identity
    rrc.priority  priority
        Unsigned 32-bit integer
        INTEGER_0_maxPrio_1
    rrc.priorityLevelList  priorityLevelList
        Unsigned 32-bit integer
    rrc.proposedTGSN  proposedTGSN
        Unsigned 32-bit integer
        TGSN
    rrc.proposedTGSN_ReportingRequired  proposedTGSN-ReportingRequired
        Boolean
        BOOLEAN
    rrc.protocolError  protocolError
        No value
        ProtocolErrorInformation
    rrc.protocolErrorCause  protocolErrorCause
        Unsigned 32-bit integer
    rrc.protocolErrorIndicator  protocolErrorIndicator
        Unsigned 32-bit integer
        ProtocolErrorIndicatorWithMoreInfo
    rrc.protocolErrorInformation  protocolErrorInformation
        No value
        ProtocolErrorMoreInformation
    rrc.prxBASEdes  prxBASEdes
        Signed 32-bit integer
        INTEGER_M112_M50
    rrc.prxUpPCHdes  prxUpPCHdes
        Unsigned 32-bit integer
        INTEGER_0_62
    rrc.ps_domain  ps-domain
        No value
    rrc.pscRange2Offset  pscRange2Offset
        Unsigned 32-bit integer
        INTEGER_1_63
    rrc.pseudorangeRMS_Error  pseudorangeRMS-Error
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.pt10  pt10
        Unsigned 32-bit integer
        TemporaryOffset1
    rrc.pt20  pt20
        Unsigned 32-bit integer
        TemporaryOffset1
    rrc.pt30  pt30
        Unsigned 32-bit integer
        TemporaryOffset1
    rrc.pt40  pt40
        Unsigned 32-bit integer
        TemporaryOffset1
    rrc.pt50  pt50
        Unsigned 32-bit integer
        TemporaryOffset1
    rrc.pt60  pt60
        Unsigned 32-bit integer
        TemporaryOffset1
    rrc.puncturingLimit  puncturingLimit
        Unsigned 32-bit integer
    rrc.puschCapacityRequest  puschCapacityRequest
        No value
    rrc.puschCapacityRequest_r3_add_ext  puschCapacityRequest-r3-add-ext
        Byte array
        BIT_STRING
    rrc.puschCapacityRequest_v590ext  puschCapacityRequest-v590ext
        No value
    rrc.puschConfirmation  puschConfirmation
        Unsigned 32-bit integer
        PUSCH_Identity
    rrc.pusch_Allocation  pusch-Allocation
        Unsigned 32-bit integer
    rrc.pusch_AllocationAssignment  pusch-AllocationAssignment
        No value
    rrc.pusch_AllocationPending  pusch-AllocationPending
        No value
    rrc.pusch_AllocationPeriodInfo  pusch-AllocationPeriodInfo
        No value
        AllocationPeriodInfo
    rrc.pusch_CapacityAllocationInfo  pusch-CapacityAllocationInfo
        No value
    rrc.pusch_ConstantValue  pusch-ConstantValue
        Signed 32-bit integer
        ConstantValueTdd
    rrc.pusch_Identity  pusch-Identity
        Unsigned 32-bit integer
    rrc.pusch_Info  pusch-Info
        No value
    rrc.pusch_Info_VHCR  pusch-Info-VHCR
        No value
    rrc.pusch_PowerControlInfo  pusch-PowerControlInfo
        Unsigned 32-bit integer
        UL_TargetSIR
    rrc.pusch_SysInfo  pusch-SysInfo
        No value
    rrc.pusch_SysInfoList  pusch-SysInfoList
        Unsigned 32-bit integer
    rrc.pusch_SysInfoList_SFN  pusch-SysInfoList-SFN
        Unsigned 32-bit integer
    rrc.pusch_SysInfo_VHCR  pusch-SysInfo-VHCR
        No value
    rrc.pusch_TimeslotsCodes  pusch-TimeslotsCodes
        No value
        UplinkTimeslotsCodes
    rrc.pusch_TimeslotsCodes_VHCR  pusch-TimeslotsCodes-VHCR
        No value
        UplinkTimeslotsCodes_VHCR
    rrc.qQualMinFDD  qQualMinFDD
        Signed 32-bit integer
        INTEGER_M24_0
    rrc.qRxLevMinEUTRA  qRxLevMinEUTRA
        Signed 32-bit integer
        INTEGER_M70_M22
    rrc.qRxLevMinFDD  qRxLevMinFDD
        Signed 32-bit integer
        INTEGER_M60_M13
    rrc.qRxLevMinGSM  qRxLevMinGSM
        Signed 32-bit integer
        INTEGER_M58_M13
    rrc.qRxLevMinTDD  qRxLevMinTDD
        Signed 32-bit integer
        INTEGER_M60_M13
    rrc.q_HCS  q-HCS
        Unsigned 32-bit integer
    rrc.q_HYST_2_S  q-HYST-2-S
        Unsigned 32-bit integer
        Q_Hyst_S
    rrc.q_Hyst_2_S_FACH  q-Hyst-2-S-FACH
        Unsigned 32-bit integer
        Q_Hyst_S_Fine
    rrc.q_Hyst_2_S_PCH  q-Hyst-2-S-PCH
        Unsigned 32-bit integer
        Q_Hyst_S_Fine
    rrc.q_Hyst_l_S  q-Hyst-l-S
        Unsigned 32-bit integer
        Q_Hyst_S
    rrc.q_Hyst_l_S_FACH  q-Hyst-l-S-FACH
        Unsigned 32-bit integer
        Q_Hyst_S_Fine
    rrc.q_Hyst_l_S_PCH  q-Hyst-l-S-PCH
        Unsigned 32-bit integer
        Q_Hyst_S_Fine
    rrc.q_Offset1S_N  q-Offset1S-N
        Signed 32-bit integer
        Q_OffsetS_N
    rrc.q_Offset2S_N  q-Offset2S-N
        Signed 32-bit integer
        Q_OffsetS_N
    rrc.q_OffsetS_N  q-OffsetS-N
        Signed 32-bit integer
    rrc.q_QualMin  q-QualMin
        Signed 32-bit integer
    rrc.q_QualMin_Offset  q-QualMin-Offset
        Unsigned 32-bit integer
    rrc.q_RxlevMin  q-RxlevMin
        Signed 32-bit integer
    rrc.q_RxlevMin_Offset  q-RxlevMin-Offset
        Unsigned 32-bit integer
    rrc.qqualMinEUTRA  qqualMinEUTRA
        Signed 32-bit integer
        INTEGER_M34_M3
    rrc.qualityEventResults  qualityEventResults
        Unsigned 32-bit integer
    rrc.qualityMeasuredResults  qualityMeasuredResults
        No value
    rrc.qualityMeasurement  qualityMeasurement
        No value
    rrc.qualityReportingCriteria  qualityReportingCriteria
        Unsigned 32-bit integer
    rrc.qualityReportingQuantity  qualityReportingQuantity
        No value
    rrc.qualityTarget  qualityTarget
        No value
    rrc.r3  r3
        No value
    rrc.r4  r4
        No value
    rrc.r5  r5
        No value
    rrc.r6  r6
        No value
    rrc.r7  r7
        No value
    rrc.r8  r8
        No value
    rrc.r9  r9
        No value
    rrc.rB_WithPDCP_InfoList  rB-WithPDCP-InfoList
        Unsigned 32-bit integer
    rrc.rFC3095_ContextInfoList_r5  rFC3095-ContextInfoList-r5
        Unsigned 32-bit integer
    rrc.rL_RemovalInformationList  rL-RemovalInformationList
        Unsigned 32-bit integer
    rrc.rRCConnectionRequest_v3d0ext  rRCConnectionRequest-v3d0ext
        No value
        RRCConnectionRequest_v3d0ext_IEs
    rrc.rRC_FailureInfo_r3  rRC-FailureInfo-r3
        No value
        RRC_FailureInfo_r3_IEs
    rrc.rSRP  rSRP
        Unsigned 32-bit integer
        INTEGER_0_97
    rrc.rSRQ  rSRQ
        Unsigned 32-bit integer
        INTEGER_0_33
    rrc.rab_Identity  rab-Identity
        Unsigned 32-bit integer
    rrc.rab_Info  rab-Info
        No value
        RAB_Info_Post
    rrc.rab_InfoReplace  rab-InfoReplace
        No value
    rrc.rab_Info_r6_ext  rab-Info-r6-ext
        No value
    rrc.rab_Info_v6b0ext  rab-Info-v6b0ext
        No value
    rrc.rab_InformationList  rab-InformationList
        Unsigned 32-bit integer
    rrc.rab_InformationMBMSPtpList  rab-InformationMBMSPtpList
        Unsigned 32-bit integer
    rrc.rab_InformationReconfigList  rab-InformationReconfigList
        Unsigned 32-bit integer
    rrc.rab_InformationSetup  rab-InformationSetup
        No value
        RAB_InformationSetup_r8
    rrc.rab_InformationSetupList  rab-InformationSetupList
        Unsigned 32-bit integer
    rrc.rab_InformationSetupListExt  rab-InformationSetupListExt
        Unsigned 32-bit integer
        RAB_InformationSetupList_v6b0ext
    rrc.rab_InformationSetup_r7  rab-InformationSetup-r7
        No value
    rrc.rab_InformationSetup_v820ext  rab-InformationSetup-v820ext
        No value
    rrc.rac  rac
        Byte array
        RoutingAreaCode
    rrc.rach  rach
        No value
    rrc.rach_TFCS  rach-TFCS
        Unsigned 32-bit integer
        TFCS
    rrc.rach_TransmissionParameters  rach-TransmissionParameters
        No value
    rrc.rach_TransportFormatSet  rach-TransportFormatSet
        Unsigned 32-bit integer
        TransportFormatSet
    rrc.rach_TransportFormatSet_LCR  rach-TransportFormatSet-LCR
        Unsigned 32-bit integer
        TransportFormatSet_LCR
    rrc.rachorcpch  rachorcpch
        No value
    rrc.radioAccessTechnology  radioAccessTechnology
        Unsigned 32-bit integer
    rrc.radioBearerRconfiguration_v6f0ext  radioBearerRconfiguration-v6f0ext
        No value
        RadioBearerReconfiguration_v6f0ext_IEs
    rrc.radioBearerReconfiguration  radioBearerReconfiguration
        Unsigned 32-bit integer
    rrc.radioBearerReconfigurationComplete  radioBearerReconfigurationComplete
        No value
    rrc.radioBearerReconfigurationComplete_r3_add_ext  radioBearerReconfigurationComplete-r3-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerReconfigurationComplete_v770ext  radioBearerReconfigurationComplete-v770ext
        No value
        RadioBearerReconfigurationComplete_v770ext_IEs
    rrc.radioBearerReconfigurationFailure  radioBearerReconfigurationFailure
        No value
    rrc.radioBearerReconfigurationFailure_r3_add_ext  radioBearerReconfigurationFailure-r3-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerReconfiguration_r3  radioBearerReconfiguration-r3
        No value
        RadioBearerReconfiguration_r3_IEs
    rrc.radioBearerReconfiguration_r3_add_ext  radioBearerReconfiguration-r3-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerReconfiguration_r4  radioBearerReconfiguration-r4
        No value
        RadioBearerReconfiguration_r4_IEs
    rrc.radioBearerReconfiguration_r4_add_ext  radioBearerReconfiguration-r4-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerReconfiguration_r5  radioBearerReconfiguration-r5
        No value
        RadioBearerReconfiguration_r5_IEs
    rrc.radioBearerReconfiguration_r5_add_ext  radioBearerReconfiguration-r5-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerReconfiguration_r6  radioBearerReconfiguration-r6
        No value
        RadioBearerReconfiguration_r6_IEs
    rrc.radioBearerReconfiguration_r6_add_ext  radioBearerReconfiguration-r6-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerReconfiguration_r7  radioBearerReconfiguration-r7
        No value
        RadioBearerReconfiguration_r7_IEs
    rrc.radioBearerReconfiguration_r7_add_ext  radioBearerReconfiguration-r7-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerReconfiguration_r8  radioBearerReconfiguration-r8
        No value
        RadioBearerReconfiguration_r8_IEs
    rrc.radioBearerReconfiguration_r8_add_ext  radioBearerReconfiguration-r8-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerReconfiguration_r9  radioBearerReconfiguration-r9
        No value
        RadioBearerReconfiguration_r9_IEs
    rrc.radioBearerReconfiguration_r9_add_ext  radioBearerReconfiguration-r9-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerReconfiguration_v3a0ext  radioBearerReconfiguration-v3a0ext
        No value
    rrc.radioBearerReconfiguration_v4b0ext  radioBearerReconfiguration-v4b0ext
        No value
        RadioBearerReconfiguration_v4b0ext_IEs
    rrc.radioBearerReconfiguration_v590ext  radioBearerReconfiguration-v590ext
        No value
        RadioBearerReconfiguration_v590ext_IEs
    rrc.radioBearerReconfiguration_v5d0ext  radioBearerReconfiguration-v5d0ext
        No value
        RadioBearerReconfiguration_v5d0ext_IEs
    rrc.radioBearerReconfiguration_v690ext  radioBearerReconfiguration-v690ext
        No value
        RadioBearerReconfiguration_v690ext_IEs
    rrc.radioBearerReconfiguration_v6b0ext  radioBearerReconfiguration-v6b0ext
        No value
        RadioBearerReconfiguration_v6b0ext_IEs
    rrc.radioBearerReconfiguration_v770ext  radioBearerReconfiguration-v770ext
        No value
        RadioBearerReconfiguration_v770ext_IEs
    rrc.radioBearerReconfiguration_v780ext  radioBearerReconfiguration-v780ext
        No value
        RadioBearerReconfiguration_v780ext_IEs
    rrc.radioBearerReconfiguration_v790ext  radioBearerReconfiguration-v790ext
        No value
        RadioBearerReconfiguration_v790ext_IEs
    rrc.radioBearerReconfiguration_v7d0ext  radioBearerReconfiguration-v7d0ext
        No value
        RadioBearerReconfiguration_v7d0ext_IEs
    rrc.radioBearerReconfiguration_v7f0ext  radioBearerReconfiguration-v7f0ext
        No value
        RadioBearerReconfiguration_v7f0ext_IEs
    rrc.radioBearerReconfiguration_v7g0ext  radioBearerReconfiguration-v7g0ext
        No value
        RadioBearerReconfiguration_v7g0ext_IEs
    rrc.radioBearerReconfiguration_v890ext  radioBearerReconfiguration-v890ext
        No value
        RadioBearerReconfiguration_v890ext_IEs
    rrc.radioBearerReconfiguration_v8a0ext  radioBearerReconfiguration-v8a0ext
        No value
        RadioBearerReconfiguration_v8a0ext_IEs
    rrc.radioBearerRelease  radioBearerRelease
        Unsigned 32-bit integer
    rrc.radioBearerReleaseComplete  radioBearerReleaseComplete
        No value
    rrc.radioBearerReleaseComplete_r3_add_ext  radioBearerReleaseComplete-r3-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerReleaseComplete_v770ext  radioBearerReleaseComplete-v770ext
        No value
        RadioBearerReleaseComplete_v770ext_IEs
    rrc.radioBearerReleaseFailure  radioBearerReleaseFailure
        No value
    rrc.radioBearerReleaseFailure_r3_add_ext  radioBearerReleaseFailure-r3-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerRelease_r3  radioBearerRelease-r3
        No value
        RadioBearerRelease_r3_IEs
    rrc.radioBearerRelease_r3_add_ext  radioBearerRelease-r3-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerRelease_r4  radioBearerRelease-r4
        No value
        RadioBearerRelease_r4_IEs
    rrc.radioBearerRelease_r4_add_ext  radioBearerRelease-r4-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerRelease_r5  radioBearerRelease-r5
        No value
        RadioBearerRelease_r5_IEs
    rrc.radioBearerRelease_r5_add_ext  radioBearerRelease-r5-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerRelease_r6  radioBearerRelease-r6
        No value
        RadioBearerRelease_r6_IEs
    rrc.radioBearerRelease_r6_add_ext  radioBearerRelease-r6-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerRelease_r7  radioBearerRelease-r7
        No value
        RadioBearerRelease_r7_IEs
    rrc.radioBearerRelease_r7_add_ext  radioBearerRelease-r7-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerRelease_r8  radioBearerRelease-r8
        No value
        RadioBearerRelease_r8_IEs
    rrc.radioBearerRelease_r8_add_ext  radioBearerRelease-r8-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerRelease_r9  radioBearerRelease-r9
        No value
        RadioBearerRelease_r9_IEs
    rrc.radioBearerRelease_r9_add_ext  radioBearerRelease-r9-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerRelease_v3a0ext  radioBearerRelease-v3a0ext
        No value
    rrc.radioBearerRelease_v4b0ext  radioBearerRelease-v4b0ext
        No value
        RadioBearerRelease_v4b0ext_IEs
    rrc.radioBearerRelease_v590ext  radioBearerRelease-v590ext
        No value
        RadioBearerRelease_v590ext_IEs
    rrc.radioBearerRelease_v690ext  radioBearerRelease-v690ext
        No value
        RadioBearerRelease_v690ext_IEs
    rrc.radioBearerRelease_v6b0ext  radioBearerRelease-v6b0ext
        No value
        RadioBearerRelease_v6b0ext_IEs
    rrc.radioBearerRelease_v770ext  radioBearerRelease-v770ext
        No value
        RadioBearerRelease_v770ext_IEs
    rrc.radioBearerRelease_v780ext  radioBearerRelease-v780ext
        No value
        RadioBearerRelease_v780ext_IEs
    rrc.radioBearerRelease_v7d0ext  radioBearerRelease-v7d0ext
        No value
        RadioBearerRelease_v7d0ext_IEs
    rrc.radioBearerRelease_v7f0ext  radioBearerRelease-v7f0ext
        No value
        RadioBearerRelease_v7f0ext_IEs
    rrc.radioBearerRelease_v7g0ext  radioBearerRelease-v7g0ext
        No value
        RadioBearerRelease_v7g0ext_IEs
    rrc.radioBearerRelease_v890ext  radioBearerRelease-v890ext
        No value
        RadioBearerRelease_v890ext_IEs
    rrc.radioBearerRelease_v8a0ext  radioBearerRelease-v8a0ext
        No value
        RadioBearerRelease_v8a0ext_IEs
    rrc.radioBearerSetup  radioBearerSetup
        Unsigned 32-bit integer
    rrc.radioBearerSetupComplete  radioBearerSetupComplete
        No value
    rrc.radioBearerSetupComplete_r3_add_ext  radioBearerSetupComplete-r3-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerSetupComplete_v770ext  radioBearerSetupComplete-v770ext
        No value
        RadioBearerSetupComplete_v770ext_IEs
    rrc.radioBearerSetupFailure  radioBearerSetupFailure
        No value
    rrc.radioBearerSetupFailure_r3_add_ext  radioBearerSetupFailure-r3-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerSetup_r3  radioBearerSetup-r3
        No value
        RadioBearerSetup_r3_IEs
    rrc.radioBearerSetup_r3_add_ext  radioBearerSetup-r3-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerSetup_r4  radioBearerSetup-r4
        No value
        RadioBearerSetup_r4_IEs
    rrc.radioBearerSetup_r4_add_ext  radioBearerSetup-r4-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerSetup_r5  radioBearerSetup-r5
        No value
        RadioBearerSetup_r5_IEs
    rrc.radioBearerSetup_r5_add_ext  radioBearerSetup-r5-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerSetup_r6  radioBearerSetup-r6
        No value
        RadioBearerSetup_r6_IEs
    rrc.radioBearerSetup_r6_add_ext  radioBearerSetup-r6-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerSetup_r7  radioBearerSetup-r7
        No value
        RadioBearerSetup_r7_IEs
    rrc.radioBearerSetup_r7_add_ext  radioBearerSetup-r7-add-ext
        Byte array
    rrc.radioBearerSetup_r8  radioBearerSetup-r8
        No value
        RadioBearerSetup_r8_IEs
    rrc.radioBearerSetup_r8_add_ext  radioBearerSetup-r8-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerSetup_r9  radioBearerSetup-r9
        No value
        RadioBearerSetup_r9_IEs
    rrc.radioBearerSetup_r9_add_ext  radioBearerSetup-r9-add-ext
        Byte array
        BIT_STRING
    rrc.radioBearerSetup_v3a0ext  radioBearerSetup-v3a0ext
        No value
    rrc.radioBearerSetup_v4b0ext  radioBearerSetup-v4b0ext
        No value
        RadioBearerSetup_v4b0ext_IEs
    rrc.radioBearerSetup_v590ext  radioBearerSetup-v590ext
        No value
        RadioBearerSetup_v590ext_IEs
    rrc.radioBearerSetup_v5d0ext  radioBearerSetup-v5d0ext
        No value
        RadioBearerSetup_v5d0ext_IEs
    rrc.radioBearerSetup_v690ext  radioBearerSetup-v690ext
        No value
        RadioBearerSetup_v690ext_IEs
    rrc.radioBearerSetup_v6b0ext  radioBearerSetup-v6b0ext
        No value
        RadioBearerSetup_v6b0ext_IEs
    rrc.radioBearerSetup_v780ext  radioBearerSetup-v780ext
        No value
        RadioBearerSetup_v780ext_IEs
    rrc.radioBearerSetup_v7d0ext  radioBearerSetup-v7d0ext
        No value
        RadioBearerSetup_v7d0ext_IEs
    rrc.radioBearerSetup_v7f0ext  radioBearerSetup-v7f0ext
        No value
        RadioBearerSetup_v7f0ext_IEs
    rrc.radioBearerSetup_v7g0ext  radioBearerSetup-v7g0ext
        No value
        RadioBearerSetup_v7g0ext_IEs
    rrc.radioBearerSetup_v820ext  radioBearerSetup-v820ext
        No value
        RadioBearerSetup_v820ext_IEs
    rrc.radioBearerSetup_v890ext  radioBearerSetup-v890ext
        No value
        RadioBearerSetup_v890ext_IEs
    rrc.radioBearerSetup_v8a0ext  radioBearerSetup-v8a0ext
        No value
        RadioBearerSetup_v8a0ext_IEs
    rrc.radioFrequencyBandEUTRA  radioFrequencyBandEUTRA
        Unsigned 32-bit integer
    rrc.radioFrequencyBandFDD  radioFrequencyBandFDD
        Unsigned 32-bit integer
    rrc.radioFrequencyBandFDD2  radioFrequencyBandFDD2
        Unsigned 32-bit integer
    rrc.radioFrequencyBandGSM  radioFrequencyBandGSM
        Unsigned 32-bit integer
    rrc.radioFrequencyBandTDD  radioFrequencyBandTDD
        Unsigned 32-bit integer
    rrc.radioFrequencyBandTDDList  radioFrequencyBandTDDList
        Unsigned 32-bit integer
    rrc.radioFrequencyTDDBandList  radioFrequencyTDDBandList
        Unsigned 32-bit integer
        RadioFrequencyBandTDDList
    rrc.rai  rai
        No value
    rrc.rat  rat
        Unsigned 32-bit integer
    rrc.ratSpecificInfo  ratSpecificInfo
        Unsigned 32-bit integer
    rrc.rat_Identifier  rat-Identifier
        Unsigned 32-bit integer
    rrc.rat_List  rat-List
        Unsigned 32-bit integer
        RAT_FDD_InfoList
    rrc.rateMatchingAttribute  rateMatchingAttribute
        Unsigned 32-bit integer
    rrc.rbInformation  rbInformation
        Unsigned 32-bit integer
        MBMS_CommonRBIdentity
    rrc.rbReleaseCause  rbReleaseCause
        Unsigned 32-bit integer
        MBMS_PTM_RBReleaseCause_LCR_r7
    rrc.rb_COUNT_C_InformationList  rb-COUNT-C-InformationList
        Unsigned 32-bit integer
    rrc.rb_COUNT_C_MSB_InformationList  rb-COUNT-C-MSB-InformationList
        Unsigned 32-bit integer
    rrc.rb_Change  rb-Change
        Unsigned 32-bit integer
    rrc.rb_DL_CiphActivationTimeInfo  rb-DL-CiphActivationTimeInfo
        Unsigned 32-bit integer
        RB_ActivationTimeInfoList
    rrc.rb_Identity  rb-Identity
        Unsigned 32-bit integer
    rrc.rb_IdentityForHOMessage  rb-IdentityForHOMessage
        Unsigned 32-bit integer
        RB_Identity
    rrc.rb_InformationAffectedList  rb-InformationAffectedList
        Unsigned 32-bit integer
    rrc.rb_InformationChangedList  rb-InformationChangedList
        Unsigned 32-bit integer
        RB_InformationChangedList_r6
    rrc.rb_InformationList  rb-InformationList
        Unsigned 32-bit integer
        RB_InformationSetupList
    rrc.rb_InformationReconfigList  rb-InformationReconfigList
        Unsigned 32-bit integer
    rrc.rb_InformationReleaseList  rb-InformationReleaseList
        Unsigned 32-bit integer
    rrc.rb_InformationSetupList  rb-InformationSetupList
        Unsigned 32-bit integer
    rrc.rb_MappingInfo  rb-MappingInfo
        Unsigned 32-bit integer
    rrc.rb_PDCPContextRelocationList  rb-PDCPContextRelocationList
        Unsigned 32-bit integer
    rrc.rb_StopContinue  rb-StopContinue
        Unsigned 32-bit integer
    rrc.rb_UL_CiphActivationTimeInfo  rb-UL-CiphActivationTimeInfo
        Unsigned 32-bit integer
        RB_ActivationTimeInfoList
    rrc.rb_WithPDCP_InfoList  rb-WithPDCP-InfoList
        Unsigned 32-bit integer
    rrc.rb_timer_indicator  rb-timer-indicator
        No value
    rrc.rdi_Indicator  rdi-Indicator
        Boolean
        BOOLEAN
    rrc.re_EstablishmentTimer  re-EstablishmentTimer
        Unsigned 32-bit integer
    rrc.re_mapToDefaultRb  re-mapToDefaultRb
        Unsigned 32-bit integer
        RB_Identity
    rrc.readSFN_Indicator  readSFN-Indicator
        Boolean
        BOOLEAN
    rrc.realTimeIntegrityRequest  realTimeIntegrityRequest
        Boolean
        BOOLEAN
    rrc.receivedMessageType  receivedMessageType
        Unsigned 32-bit integer
    rrc.receivingWindowSize  receivingWindowSize
        Unsigned 32-bit integer
    rrc.reconfigurationStatusIndicator  reconfigurationStatusIndicator
        Unsigned 32-bit integer
    rrc.redAlmDeltaA  redAlmDeltaA
        Byte array
        BIT_STRING_SIZE_8
    rrc.redAlmL1Health  redAlmL1Health
        Byte array
        BIT_STRING_SIZE_1
    rrc.redAlmL2Health  redAlmL2Health
        Byte array
        BIT_STRING_SIZE_1
    rrc.redAlmL5Health  redAlmL5Health
        Byte array
        BIT_STRING_SIZE_1
    rrc.redAlmOmega0  redAlmOmega0
        Byte array
        BIT_STRING_SIZE_7
    rrc.redAlmPhi0  redAlmPhi0
        Byte array
        BIT_STRING_SIZE_7
    rrc.redirectionInfo  redirectionInfo
        Unsigned 32-bit integer
    rrc.redirectionInfo_v690ext  redirectionInfo-v690ext
        Unsigned 32-bit integer
        GSM_TargetCellInfoList
    rrc.reducedScramblingCodeNumber  reducedScramblingCodeNumber
        Unsigned 32-bit integer
    rrc.referenceCellIDentity  referenceCellIDentity
        No value
        PrimaryCPICH_Info
    rrc.referenceCellIdentity  referenceCellIdentity
        Unsigned 32-bit integer
        CellParametersID
    rrc.referenceIdentity  referenceIdentity
        No value
        PrimaryCPICH_Info
    rrc.referenceLocationRequest  referenceLocationRequest
        Boolean
        BOOLEAN
    rrc.referenceSfn  referenceSfn
        Unsigned 32-bit integer
        INTEGER_0_4095
    rrc.referenceTFC  referenceTFC
        Unsigned 32-bit integer
        TFC_Value
    rrc.referenceTFC_ID  referenceTFC-ID
        Unsigned 32-bit integer
    rrc.referenceTime  referenceTime
        Unsigned 32-bit integer
    rrc.referenceTimeDifferenceToCell  referenceTimeDifferenceToCell
        Unsigned 32-bit integer
    rrc.referenceTimeOptions  referenceTimeOptions
        Unsigned 32-bit integer
    rrc.referenceTimeRequest  referenceTimeRequest
        Boolean
        BOOLEAN
    rrc.reference_Beta  reference-Beta
        Signed 32-bit integer
        INTEGER_M15_16
    rrc.reference_Beta_16QAM_List  reference-Beta-16QAM-List
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_8_OF_Reference_Beta_16QAM
    rrc.reference_Beta_QPSK_List  reference-Beta-QPSK-List
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_8_OF_Reference_Beta_QPSK
    rrc.reference_Code_Rate  reference-Code-Rate
        Unsigned 32-bit integer
        INTEGER_0_10
    rrc.reference_E_TFCI  reference-E-TFCI
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.reference_E_TFCI_PO  reference-E-TFCI-PO
        Unsigned 32-bit integer
        INTEGER_0_29
    rrc.reference_E_TFCI_PO_r7  reference-E-TFCI-PO-r7
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.reference_E_TFCIs  reference-E-TFCIs
        Unsigned 32-bit integer
        E_DPDCH_Reference_E_TFCIList
    rrc.rejectionCause  rejectionCause
        Unsigned 32-bit integer
    rrc.relativeAltitude  relativeAltitude
        Signed 32-bit integer
        INTEGER_M4000_4000
    rrc.relativeEast  relativeEast
        Signed 32-bit integer
        INTEGER_M20000_20000
    rrc.relativeNorth  relativeNorth
        Signed 32-bit integer
        INTEGER_M20000_20000
    rrc.release  release
        No value
    rrc.release99  release99
        No value
    rrc.releaseCause  releaseCause
        Unsigned 32-bit integer
    rrc.releaseIndicator  releaseIndicator
        No value
    rrc.removal  removal
        Unsigned 32-bit integer
        TFCS_RemovalList
    rrc.removeAllFrequencies  removeAllFrequencies
        No value
    rrc.removeAllInterFreqCells  removeAllInterFreqCells
        No value
    rrc.removeAllInterRATCells  removeAllInterRATCells
        No value
    rrc.removeAllIntraFreqCells  removeAllIntraFreqCells
        No value
    rrc.removeNoFrequencies  removeNoFrequencies
        No value
    rrc.removeNoInterFreqCells  removeNoInterFreqCells
        No value
    rrc.removeNoInterRATCells  removeNoInterRATCells
        No value
    rrc.removeNoIntraFreqCells  removeNoIntraFreqCells
        No value
    rrc.removeSomeFrequencies  removeSomeFrequencies
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxNumEUTRAFreqs_OF_EARFCN
    rrc.removeSomeInterFreqCells  removeSomeInterFreqCells
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxCellMeas_OF_InterFreqCellID
    rrc.removeSomeInterRATCells  removeSomeInterRATCells
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxCellMeas_OF_InterRATCellID
    rrc.removeSomeIntraFreqCells  removeSomeIntraFreqCells
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxCellMeas_OF_IntraFreqCellID
    rrc.removedInterFreqCellList  removedInterFreqCellList
        Unsigned 32-bit integer
    rrc.removedInterRATCellList  removedInterRATCellList
        Unsigned 32-bit integer
    rrc.removedIntraFreqCellList  removedIntraFreqCellList
        Unsigned 32-bit integer
    rrc.reorderingReleaseTimer  reorderingReleaseTimer
        Unsigned 32-bit integer
        T1_ReleaseTimer
    rrc.reorderingResetTimer  reorderingResetTimer
        Unsigned 32-bit integer
        Treset_ResetTimer
    rrc.rep1024  rep1024
        Unsigned 32-bit integer
        INTEGER_0_511
    rrc.rep128  rep128
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.rep16  rep16
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.rep2048  rep2048
        Unsigned 32-bit integer
        INTEGER_0_1023
    rrc.rep256  rep256
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.rep32  rep32
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.rep4  rep4
        Unsigned 32-bit integer
        INTEGER_0_1
    rrc.rep4096  rep4096
        Unsigned 32-bit integer
        INTEGER_0_2047
    rrc.rep512  rep512
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.rep64  rep64
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.rep8  rep8
        Unsigned 32-bit integer
        INTEGER_0_3
    rrc.repetitionPeriod1  repetitionPeriod1
        No value
    rrc.repetitionPeriod16  repetitionPeriod16
        Unsigned 32-bit integer
        INTEGER_1_15
    rrc.repetitionPeriod2  repetitionPeriod2
        Unsigned 32-bit integer
        INTEGER_1_1
    rrc.repetitionPeriod32  repetitionPeriod32
        Unsigned 32-bit integer
        INTEGER_1_31
    rrc.repetitionPeriod4  repetitionPeriod4
        Unsigned 32-bit integer
        INTEGER_1_3
    rrc.repetitionPeriod64  repetitionPeriod64
        Unsigned 32-bit integer
        INTEGER_1_63
    rrc.repetitionPeriod8  repetitionPeriod8
        Unsigned 32-bit integer
        INTEGER_1_7
    rrc.repetitionPeriodAndLength  repetitionPeriodAndLength
        Unsigned 32-bit integer
    rrc.repetitionPeriodCoefficient  repetitionPeriodCoefficient
        Unsigned 32-bit integer
        INTEGER_0_3
    rrc.repetitionPeriodLengthAndOffset  repetitionPeriodLengthAndOffset
        Unsigned 32-bit integer
    rrc.repetitionPeriodLengthOffset  repetitionPeriodLengthOffset
        Unsigned 32-bit integer
        RepPerLengthOffset_PICH
    rrc.replace  replace
        Unsigned 32-bit integer
        ReplacedPDSCH_CodeInfoList
    rrc.replacement  replacement
        No value
    rrc.replacementActivationThreshold  replacementActivationThreshold
        Unsigned 32-bit integer
    rrc.reportCriteria  reportCriteria
        Unsigned 32-bit integer
        InterFreqReportCriteria
    rrc.reportCriteriaSysInf  reportCriteriaSysInf
        Unsigned 32-bit integer
        TrafficVolumeReportCriteriaSysInfo
    rrc.reportDeactivationThreshold  reportDeactivationThreshold
        Unsigned 32-bit integer
    rrc.reportFirstFix  reportFirstFix
        Boolean
        BOOLEAN
    rrc.reportedCells  reportedCells
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxReportedEUTRACellPerFreq_OF_EUTRA_PhysicalCellIdentity
    rrc.reportingAmount  reportingAmount
        Unsigned 32-bit integer
    rrc.reportingCellStatus  reportingCellStatus
        Unsigned 32-bit integer
    rrc.reportingCriteria  reportingCriteria
        Unsigned 32-bit integer
    rrc.reportingInfoForCellDCH  reportingInfoForCellDCH
        No value
    rrc.reportingInterval  reportingInterval
        Unsigned 32-bit integer
    rrc.reportingQuantity  reportingQuantity
        Unsigned 32-bit integer
    rrc.reportingRange  reportingRange
        Unsigned 32-bit integer
    rrc.reportingThreshold  reportingThreshold
        Unsigned 32-bit integer
        TrafficVolumeThreshold
    rrc.requestPCCPCHRSCP  requestPCCPCHRSCP
        Boolean
        BOOLEAN
    rrc.reserved1  reserved1
        Byte array
        BIT_STRING_SIZE_23
    rrc.reserved2  reserved2
        Byte array
        BIT_STRING_SIZE_24
    rrc.reserved3  reserved3
        Byte array
        BIT_STRING_SIZE_24
    rrc.reserved4  reserved4
        Byte array
        BIT_STRING_SIZE_16
    rrc.responseToChangeOfUE_Capability  responseToChangeOfUE-Capability
        Unsigned 32-bit integer
    rrc.restrictedDL_TrCH_Identity  restrictedDL-TrCH-Identity
        Unsigned 32-bit integer
        TransportChannelIdentity
    rrc.restrictedTrCH_InfoList  restrictedTrCH-InfoList
        Unsigned 32-bit integer
    rrc.restrictedTrChIdentity  restrictedTrChIdentity
        Unsigned 32-bit integer
        TransportChannelIdentity
    rrc.restrictedTrChInfoList  restrictedTrChInfoList
        Unsigned 32-bit integer
    rrc.restriction  restriction
        Unsigned 32-bit integer
        LocationRegistrationAccessClassBarredList
    rrc.retransTimerForSchedInfo  retransTimerForSchedInfo
        Unsigned 32-bit integer
    rrc.reverseCompressionDepth  reverseCompressionDepth
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrc.reverseDecompressionDepth  reverseDecompressionDepth
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrc.rf_Capability  rf-Capability
        No value
        RF_Capability_v770ext
    rrc.rf_CapabilityComp  rf-CapabilityComp
        No value
    rrc.rf_CapabilityFDDComp  rf-CapabilityFDDComp
        Unsigned 32-bit integer
        RF_CapabBandListFDDComp_ext
    rrc.rfc2507_Info  rfc2507-Info
        No value
    rrc.rfc3095_ContextInfo  rfc3095-ContextInfo
        Unsigned 32-bit integer
        RFC3095_ContextInfo_r5
    rrc.rfc3095_Context_Identity  rfc3095-Context-Identity
        Unsigned 32-bit integer
        INTEGER_0_16383
    rrc.rfc3095_Context_List  rfc3095-Context-List
        Unsigned 32-bit integer
    rrc.rfc3095_Info  rfc3095-Info
        No value
        RFC3095_Info_r4
    rrc.rg_CombinationIndex  rg-CombinationIndex
        Unsigned 32-bit integer
        E_RGCH_CombinationIndex
    rrc.rl_AdditionInfoList  rl-AdditionInfoList
        Unsigned 32-bit integer
    rrc.rl_AdditionInformationList  rl-AdditionInformationList
        Unsigned 32-bit integer
    rrc.rl_AdditionInformationList_SecULFreq  rl-AdditionInformationList-SecULFreq
        Unsigned 32-bit integer
    rrc.rl_AdditionInformation_list_v6b0ext  rl-AdditionInformation-list-v6b0ext
        Unsigned 32-bit integer
    rrc.rl_IdentifierList  rl-IdentifierList
        Unsigned 32-bit integer
    rrc.rl_RemovalInformationList  rl-RemovalInformationList
        Unsigned 32-bit integer
    rrc.rl_RemovalInformationList_SecULFreq  rl-RemovalInformationList-SecULFreq
        Unsigned 32-bit integer
    rrc.rlc_BufferPayload  rlc-BufferPayload
        No value
    rrc.rlc_BuffersPayload  rlc-BuffersPayload
        Unsigned 32-bit integer
    rrc.rlc_Capability  rlc-Capability
        No value
        RLC_Capability_v770ext
    rrc.rlc_Capability_r5_ext  rlc-Capability-r5-ext
        No value
    rrc.rlc_Info  rlc-Info
        No value
    rrc.rlc_InfoChoice  rlc-InfoChoice
        Unsigned 32-bit integer
    rrc.rlc_LogicalChannelMappingIndicator  rlc-LogicalChannelMappingIndicator
        Boolean
        BOOLEAN
    rrc.rlc_OneSidedReEst  rlc-OneSidedReEst
        Boolean
        BOOLEAN
    rrc.rlc_PDU_Size  rlc-PDU-Size
        Unsigned 32-bit integer
    rrc.rlc_PDU_SizeList  rlc-PDU-SizeList
        Unsigned 32-bit integer
    rrc.rlc_RB_BufferPayload  rlc-RB-BufferPayload
        Boolean
        BOOLEAN
    rrc.rlc_RB_BufferPayloadAverage  rlc-RB-BufferPayloadAverage
        Boolean
        BOOLEAN
    rrc.rlc_RB_BufferPayloadVariance  rlc-RB-BufferPayloadVariance
        Boolean
        BOOLEAN
    rrc.rlc_Re_establishIndicatorRb2_3or4  rlc-Re-establishIndicatorRb2-3or4
        Boolean
        BOOLEAN
    rrc.rlc_Re_establishIndicatorRb5orAbove  rlc-Re-establishIndicatorRb5orAbove
        Boolean
        BOOLEAN
    rrc.rlc_SequenceNumber  rlc-SequenceNumber
        Unsigned 32-bit integer
    rrc.rlc_Size  rlc-Size
        Unsigned 32-bit integer
    rrc.rlc_SizeIndex  rlc-SizeIndex
        Unsigned 32-bit integer
        INTEGER_1_maxTF
    rrc.rlc_SizeList  rlc-SizeList
        Unsigned 32-bit integer
    rrc.rohcProfileList  rohcProfileList
        Unsigned 32-bit integer
        ROHC_ProfileList_r4
    rrc.roundTripTime  roundTripTime
        Unsigned 32-bit integer
        INTEGER_0_32766
    rrc.roundTripTimeExtension  roundTripTimeExtension
        Unsigned 32-bit integer
        INTEGER_0_70274
    rrc.routingbasis  routingbasis
        Unsigned 32-bit integer
    rrc.routingparameter  routingparameter
        Byte array
    rrc.rplmn_information  rplmn-information
        No value
    rrc.rpp  rpp
        Unsigned 32-bit integer
    rrc.rpp16_2  rpp16-2
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.rpp16_4  rpp16-4
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.rpp32_2  rpp32-2
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.rpp32_4  rpp32-4
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.rpp4_2  rpp4-2
        Unsigned 32-bit integer
        INTEGER_0_3
    rrc.rpp64_2  rpp64-2
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.rpp64_4  rpp64-4
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.rpp8_2  rpp8-2
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.rpp8_4  rpp8-4
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.rrc  rrc
        Signed 32-bit integer
    rrc.rrcConectionSetupComplete_v770ext  rrcConectionSetupComplete-v770ext
        No value
        RRCConnectionSetupComplete_v770ext_IEs
    rrc.rrcConnectionReject  rrcConnectionReject
        Unsigned 32-bit integer
    rrc.rrcConnectionReject_r3  rrcConnectionReject-r3
        No value
        RRCConnectionReject_r3_IEs
    rrc.rrcConnectionReject_r3_add_ext  rrcConnectionReject-r3-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionReject_v690ext  rrcConnectionReject-v690ext
        No value
        RRCConnectionReject_v690ext_IEs
    rrc.rrcConnectionReject_v6f0ext  rrcConnectionReject-v6f0ext
        No value
        RRCConnectionReject_v6f0ext_IEs
    rrc.rrcConnectionReject_v860ext  rrcConnectionReject-v860ext
        No value
        RRCConnectionReject_v860ext_IEs
    rrc.rrcConnectionRelease  rrcConnectionRelease
        Unsigned 32-bit integer
    rrc.rrcConnectionReleaseComplete  rrcConnectionReleaseComplete
        No value
    rrc.rrcConnectionReleaseComplete_r3_add_ext  rrcConnectionReleaseComplete-r3-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionRelease_CCCH_r3  rrcConnectionRelease-CCCH-r3
        No value
        RRCConnectionRelease_CCCH_r3_IEs
    rrc.rrcConnectionRelease_CCCH_r3_add_ext  rrcConnectionRelease-CCCH-r3-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionRelease_CCCH_r4  rrcConnectionRelease-CCCH-r4
        No value
        RRCConnectionRelease_CCCH_r4_IEs
    rrc.rrcConnectionRelease_CCCH_r4_add_ext  rrcConnectionRelease-CCCH-r4-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionRelease_CCCH_r5  rrcConnectionRelease-CCCH-r5
        No value
        RRCConnectionRelease_CCCH_r5_IEs
    rrc.rrcConnectionRelease_CCCH_r5_add_ext  rrcConnectionRelease-CCCH-r5-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionRelease_r3  rrcConnectionRelease-r3
        No value
        RRCConnectionRelease_r3_IEs
    rrc.rrcConnectionRelease_r3_add_ext  rrcConnectionRelease-r3-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionRelease_r4  rrcConnectionRelease-r4
        No value
        RRCConnectionRelease_r4_IEs
    rrc.rrcConnectionRelease_r4_add_ext  rrcConnectionRelease-r4-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionRelease_v690ext  rrcConnectionRelease-v690ext
        No value
        RRCConnectionRelease_v690ext_IEs
    rrc.rrcConnectionRelease_v770ext  rrcConnectionRelease-v770ext
        No value
        RRCConnectionRelease_v770ext_IEs
    rrc.rrcConnectionRelease_v860ext  rrcConnectionRelease-v860ext
        No value
        RRCConnectionRelease_v860ext_IEs
    rrc.rrcConnectionRequest  rrcConnectionRequest
        No value
    rrc.rrcConnectionRequest_v4b0ext  rrcConnectionRequest-v4b0ext
        No value
        RRCConnectionRequest_v4b0ext_IEs
    rrc.rrcConnectionRequest_v590ext  rrcConnectionRequest-v590ext
        No value
        RRCConnectionRequest_v590ext_IEs
    rrc.rrcConnectionRequest_v690ext  rrcConnectionRequest-v690ext
        No value
        RRCConnectionRequest_v690ext_IEs
    rrc.rrcConnectionRequest_v6b0ext  rrcConnectionRequest-v6b0ext
        No value
        RRCConnectionRequest_v6b0ext_IEs
    rrc.rrcConnectionRequest_v6e0ext  rrcConnectionRequest-v6e0ext
        No value
        RRCConnectionRequest_v6e0ext_IEs
    rrc.rrcConnectionRequest_v770ext  rrcConnectionRequest-v770ext
        No value
        RRCConnectionRequest_v770ext_IEs
    rrc.rrcConnectionRequest_v7b0ext  rrcConnectionRequest-v7b0ext
        No value
        RRCConnectionRequest_v7b0ext_IEs
    rrc.rrcConnectionRequest_v7e0ext  rrcConnectionRequest-v7e0ext
        No value
        RRCConnectionRequest_v7e0ext_IEs
    rrc.rrcConnectionRequest_v7g0ext  rrcConnectionRequest-v7g0ext
        No value
        RRCConnectionRequest_v7g0ext_IEs
    rrc.rrcConnectionRequest_v860ext  rrcConnectionRequest-v860ext
        No value
        RRCConnectionRequest_v860ext_IEs
    rrc.rrcConnectionRequest_v920ext  rrcConnectionRequest-v920ext
        No value
        RRCConnectionRequest_v920ext_IEs
    rrc.rrcConnectionSetup  rrcConnectionSetup
        Unsigned 32-bit integer
    rrc.rrcConnectionSetupComplete  rrcConnectionSetupComplete
        No value
    rrc.rrcConnectionSetupComplete_r3_add_ext  rrcConnectionSetupComplete-r3-add-ext
        Byte array
    rrc.rrcConnectionSetupComplete_v370ext  rrcConnectionSetupComplete-v370ext
        No value
    rrc.rrcConnectionSetupComplete_v380ext  rrcConnectionSetupComplete-v380ext
        No value
        RRCConnectionSetupComplete_v380ext_IEs
    rrc.rrcConnectionSetupComplete_v3a0ext  rrcConnectionSetupComplete-v3a0ext
        No value
        RRCConnectionSetupComplete_v3a0ext_IEs
    rrc.rrcConnectionSetupComplete_v3g0ext  rrcConnectionSetupComplete-v3g0ext
        No value
        RRCConnectionSetupComplete_v3g0ext_IEs
    rrc.rrcConnectionSetupComplete_v4b0ext  rrcConnectionSetupComplete-v4b0ext
        No value
        RRCConnectionSetupComplete_v4b0ext_IEs
    rrc.rrcConnectionSetupComplete_v590ext  rrcConnectionSetupComplete-v590ext
        No value
        RRCConnectionSetupComplete_v590ext_IEs
    rrc.rrcConnectionSetupComplete_v5c0ext  rrcConnectionSetupComplete-v5c0ext
        No value
        RRCConnectionSetupComplete_v5c0ext_IEs
    rrc.rrcConnectionSetupComplete_v650ext  rrcConnectionSetupComplete-v650ext
        No value
        RRCConnectionSetupComplete_v650ext_IEs
    rrc.rrcConnectionSetupComplete_v680ext  rrcConnectionSetupComplete-v680ext
        No value
        RRCConnectionSetupComplete_v680ext_IEs
    rrc.rrcConnectionSetupComplete_v690ext  rrcConnectionSetupComplete-v690ext
        No value
        RRCConnectionSetupComplete_v690ext_IEs
    rrc.rrcConnectionSetupComplete_v7e0ext  rrcConnectionSetupComplete-v7e0ext
        No value
        RRCConnectionSetupComplete_v7e0ext_IEs
    rrc.rrcConnectionSetupComplete_v7f0ext  rrcConnectionSetupComplete-v7f0ext
        No value
        RRCConnectionSetupComplete_v7f0ext_IEs
    rrc.rrcConnectionSetup_r3  rrcConnectionSetup-r3
        No value
        RRCConnectionSetup_r3_IEs
    rrc.rrcConnectionSetup_r3_add_ext  rrcConnectionSetup-r3-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionSetup_r4  rrcConnectionSetup-r4
        No value
        RRCConnectionSetup_r4_IEs
    rrc.rrcConnectionSetup_r4_add_ext  rrcConnectionSetup-r4-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionSetup_r5  rrcConnectionSetup-r5
        No value
        RRCConnectionSetup_r5_IEs
    rrc.rrcConnectionSetup_r5_add_ext  rrcConnectionSetup-r5-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionSetup_r6  rrcConnectionSetup-r6
        No value
        RRCConnectionSetup_r6_IEs
    rrc.rrcConnectionSetup_r6_add_ext  rrcConnectionSetup-r6-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionSetup_r7  rrcConnectionSetup-r7
        No value
        RRCConnectionSetup_r7_IEs
    rrc.rrcConnectionSetup_r7_add_ext  rrcConnectionSetup-r7-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionSetup_r8  rrcConnectionSetup-r8
        No value
        RRCConnectionSetup_r8_IEs
    rrc.rrcConnectionSetup_r8_add_ext  rrcConnectionSetup-r8-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionSetup_r9  rrcConnectionSetup-r9
        No value
        RRCConnectionSetup_r9_IEs
    rrc.rrcConnectionSetup_r9_add_ext  rrcConnectionSetup-r9-add-ext
        Byte array
        BIT_STRING
    rrc.rrcConnectionSetup_v4b0ext  rrcConnectionSetup-v4b0ext
        No value
        RRCConnectionSetup_v4b0ext_IEs
    rrc.rrcConnectionSetup_v590ext  rrcConnectionSetup-v590ext
        No value
        RRCConnectionSetup_v590ext_IEs
    rrc.rrcConnectionSetup_v690ext  rrcConnectionSetup-v690ext
        No value
        RRCConnectionSetup_v690ext_IEs
    rrc.rrcConnectionSetup_v6b0ext  rrcConnectionSetup-v6b0ext
        No value
        RRCConnectionSetup_v6b0ext_IEs
    rrc.rrcConnectionSetup_v780ext  rrcConnectionSetup-v780ext
        No value
        RRCConnectionSetup_v780ext_IEs
    rrc.rrcConnectionSetup_v7d0ext  rrcConnectionSetup-v7d0ext
        No value
        RRCConnectionSetup_v7d0ext_IEs
    rrc.rrcConnectionSetup_v890ext  rrcConnectionSetup-v890ext
        No value
        RRCConnectionSetup_v890ext_IEs
    rrc.rrcConnectionSetup_v8a0ext  rrcConnectionSetup-v8a0ext
        No value
        RRCConnectionSetup_v8a0ext_IEs
    rrc.rrcStatus  rrcStatus
        No value
    rrc.rrcStatus_r3_add_ext  rrcStatus-r3-add-ext
        Byte array
        BIT_STRING
    rrc.rrc_ConnectionReleaseInformation  rrc-ConnectionReleaseInformation
        Unsigned 32-bit integer
    rrc.rrc_FailureInfo  rrc-FailureInfo
        Unsigned 32-bit integer
    rrc.rrc_FailureInfo_r3_add_ext  rrc-FailureInfo-r3-add-ext
        Byte array
        BIT_STRING
    rrc.rrc_MessageSequenceNumber  rrc-MessageSequenceNumber
        Unsigned 32-bit integer
    rrc.rrc_MessageSequenceNumberList  rrc-MessageSequenceNumberList
        Unsigned 32-bit integer
    rrc.rrc_StateIndicator  rrc-StateIndicator
        Unsigned 32-bit integer
    rrc.rrc_TransactionIdentifier  rrc-TransactionIdentifier
        Unsigned 32-bit integer
    rrc.rrc_TransactionIdentifier_MSP  rrc-TransactionIdentifier-MSP
        Unsigned 32-bit integer
        RRC_TransactionIdentifier
    rrc.rrc_TransactionIdentifier_MSP_v590ext  rrc-TransactionIdentifier-MSP-v590ext
        Unsigned 32-bit integer
        RRC_TransactionIdentifier
    rrc.rx_tx_TimeDifferenceType2Capable  rx-tx-TimeDifferenceType2Capable
        Boolean
        BOOLEAN
    rrc.sCCPCH_LCR_ExtensionsList  sCCPCH-LCR-ExtensionsList
        Unsigned 32-bit integer
        SCCPCH_SystemInformationList_LCR_r4_ext
    rrc.sCCPCH_SystemInformationList  sCCPCH-SystemInformationList
        Unsigned 32-bit integer
    rrc.sF16  sF16
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_8_OF_SF16Codes
    rrc.sF32  sF32
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_16_OF_SF32Codes
    rrc.sF8  sF8
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_8_OF_SF8Codes
    rrc.sF816  sF816
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_16_OF_SF16Codes2
    rrc.sI  sI
        Unsigned 32-bit integer
        GERAN_SystemInformation
    rrc.sIBOccurrenceIdentityAndValueTag  sIBOccurrenceIdentityAndValueTag
        No value
    rrc.sRB_delay  sRB-delay
        Unsigned 32-bit integer
    rrc.sRNC_RelocationInfo_r3  sRNC-RelocationInfo-r3
        No value
        SRNC_RelocationInfo_r3_IEs
    rrc.sRNC_RelocationInfo_r3_add_ext  sRNC-RelocationInfo-r3-add-ext
        Byte array
    rrc.sRNC_RelocationInfo_r4  sRNC-RelocationInfo-r4
        No value
        SRNC_RelocationInfo_r4_IEs
    rrc.sRNC_RelocationInfo_r4_add_ext  sRNC-RelocationInfo-r4-add-ext
        Byte array
        BIT_STRING
    rrc.sRNC_RelocationInfo_r5  sRNC-RelocationInfo-r5
        No value
        SRNC_RelocationInfo_r5_IEs
    rrc.sRNC_RelocationInfo_r5_add_ext  sRNC-RelocationInfo-r5-add-ext
        Byte array
        BIT_STRING
    rrc.sRNC_RelocationInfo_r6  sRNC-RelocationInfo-r6
        No value
        SRNC_RelocationInfo_r6_IEs
    rrc.sRNC_RelocationInfo_r6_add_ext  sRNC-RelocationInfo-r6-add-ext
        Byte array
    rrc.sRNC_RelocationInfo_r7  sRNC-RelocationInfo-r7
        No value
        SRNC_RelocationInfo_r7_IEs
    rrc.sRNC_RelocationInfo_r7_add_ext  sRNC-RelocationInfo-r7-add-ext
        Byte array
    rrc.sRNC_RelocationInfo_r8  sRNC-RelocationInfo-r8
        No value
        SRNC_RelocationInfo_r8_IEs
    rrc.sRNC_RelocationInfo_r8_add_ext  sRNC-RelocationInfo-r8-add-ext
        Byte array
        BIT_STRING
    rrc.sRNC_RelocationInfo_r9  sRNC-RelocationInfo-r9
        No value
        SRNC_RelocationInfo_r9_IEs
    rrc.sRNC_RelocationInfo_r9_add_ext  sRNC-RelocationInfo-r9-add-ext
        Byte array
        BIT_STRING
    rrc.sRNC_RelocationInfo_v380ext  sRNC-RelocationInfo-v380ext
        No value
        SRNC_RelocationInfo_v380ext_IEs
    rrc.sRNC_RelocationInfo_v390ext  sRNC-RelocationInfo-v390ext
        No value
        SRNC_RelocationInfo_v390ext_IEs
    rrc.sRNC_RelocationInfo_v3a0ext  sRNC-RelocationInfo-v3a0ext
        No value
        SRNC_RelocationInfo_v3a0ext_IEs
    rrc.sRNC_RelocationInfo_v3b0ext  sRNC-RelocationInfo-v3b0ext
        No value
        SRNC_RelocationInfo_v3b0ext_IEs
    rrc.sRNC_RelocationInfo_v3c0ext  sRNC-RelocationInfo-v3c0ext
        No value
        SRNC_RelocationInfo_v3c0ext_IEs
    rrc.sRNC_RelocationInfo_v3d0ext  sRNC-RelocationInfo-v3d0ext
        No value
        SRNC_RelocationInfo_v3d0ext_IEs
    rrc.sRNC_RelocationInfo_v3g0ext  sRNC-RelocationInfo-v3g0ext
        No value
        SRNC_RelocationInfo_v3g0ext_IEs
    rrc.sRNC_RelocationInfo_v4b0ext  sRNC-RelocationInfo-v4b0ext
        No value
        SRNC_RelocationInfo_v4b0ext_IEs
    rrc.sRNC_RelocationInfo_v4d0ext  sRNC-RelocationInfo-v4d0ext
        No value
        SRNC_RelocationInfo_v4d0ext_IEs
    rrc.sRNC_RelocationInfo_v590ext  sRNC-RelocationInfo-v590ext
        No value
        SRNC_RelocationInfo_v590ext_IEs
    rrc.sRNC_RelocationInfo_v5a0ext  sRNC-RelocationInfo-v5a0ext
        No value
        SRNC_RelocationInfo_v5a0ext_IEs
    rrc.sRNC_RelocationInfo_v5b0ext  sRNC-RelocationInfo-v5b0ext
        No value
        SRNC_RelocationInfo_v5b0ext_IEs
    rrc.sRNC_RelocationInfo_v5c0ext  sRNC-RelocationInfo-v5c0ext
        No value
        SRNC_RelocationInfo_v5c0ext_IEs
    rrc.sRNC_RelocationInfo_v690ext  sRNC-RelocationInfo-v690ext
        No value
        SRNC_RelocationInfo_v690ext_IEs
    rrc.sRNC_RelocationInfo_v6b0ext  sRNC-RelocationInfo-v6b0ext
        No value
        SRNC_RelocationInfo_v6b0ext_IEs
    rrc.sRNC_RelocationInfo_v770ext  sRNC-RelocationInfo-v770ext
        No value
        SRNC_RelocationInfo_v770ext_IEs
    rrc.sRNC_RelocationInfo_v7e0ext  sRNC-RelocationInfo-v7e0ext
        No value
        SRNC_RelocationInfo_v7e0ext_IEs
    rrc.sRNC_RelocationInfo_v7f0ext  sRNC-RelocationInfo-v7f0ext
        No value
        SRNC_RelocationInfo_v7f0ext_IEs
    rrc.sRNC_RelocationInfo_v860ext  sRNC-RelocationInfo-v860ext
        No value
        SRNC_RelocationInfo_v860ext_IEs
    rrc.s_Field  s-Field
        Unsigned 32-bit integer
    rrc.s_HCS_RAT  s-HCS-RAT
        Signed 32-bit integer
        S_SearchRXLEV
    rrc.s_Intersearch  s-Intersearch
        Signed 32-bit integer
        S_SearchQual
    rrc.s_Intrasearch  s-Intrasearch
        Signed 32-bit integer
        S_SearchQual
    rrc.s_Limit_SearchRAT  s-Limit-SearchRAT
        Signed 32-bit integer
        S_SearchQual
    rrc.s_PrioritySearch1  s-PrioritySearch1
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.s_PrioritySearch2  s-PrioritySearch2
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.s_RNTI  s-RNTI
        Byte array
    rrc.s_RNTI_2  s-RNTI-2
        Byte array
    rrc.s_SearchHCS  s-SearchHCS
        Signed 32-bit integer
        S_SearchRXLEV
    rrc.s_SearchRAT  s-SearchRAT
        Signed 32-bit integer
        S_SearchQual
    rrc.s_cpich_PowerOffset_Mimo  s-cpich-PowerOffset-Mimo
        Signed 32-bit integer
    rrc.s_offset  s-offset
        Unsigned 32-bit integer
        INTEGER_0_9
    rrc.sameAsCurrent  sameAsCurrent
        No value
    rrc.sameAsHS_SCCH  sameAsHS-SCCH
        No value
    rrc.sameAsLast  sameAsLast
        No value
    rrc.sameAsMIB_MultiPLMN_Id  sameAsMIB-MultiPLMN-Id
        Unsigned 32-bit integer
        INTEGER_1_5
    rrc.sameAsMIB_PLMN_Id  sameAsMIB-PLMN-Id
        No value
    rrc.sameAsUL  sameAsUL
        No value
    rrc.sameAsULTrCH  sameAsULTrCH
        No value
        UL_TransportChannelIdentity
    rrc.same_as_RB  same-as-RB
        Unsigned 32-bit integer
        RB_Identity
    rrc.satDataList  satDataList
        Unsigned 32-bit integer
    rrc.satHealth  satHealth
        Byte array
        BIT_STRING_SIZE_8
    rrc.satID  satID
        Unsigned 32-bit integer
    rrc.satId  satId
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.satMask  satMask
        Byte array
        BIT_STRING_SIZE_1_32
    rrc.sat_info_GLOkpList  sat-info-GLOkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_GLOkpList
    rrc.sat_info_MIDIkpList  sat-info-MIDIkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_MIDIkpList
    rrc.sat_info_NAVkpList  sat-info-NAVkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_NAVkpList
    rrc.sat_info_REDkpList  sat-info-REDkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_REDkpList
    rrc.sat_info_SBASecefList  sat-info-SBASecefList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_SBASecefList
    rrc.sat_info_kpList  sat-info-kpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_KpList
    rrc.satelliteID  satelliteID
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.satelliteInformationList  satelliteInformationList
        Unsigned 32-bit integer
        GANSSSatelliteInformationList
    rrc.satelliteStatus  satelliteStatus
        Unsigned 32-bit integer
    rrc.satellite_clock_modelList  satellite-clock-modelList
        Unsigned 32-bit integer
    rrc.satellitesListRelatedDataList  satellitesListRelatedDataList
        Unsigned 32-bit integer
    rrc.sbagYgDotDot  sbagYgDotDot
        Byte array
        BIT_STRING_SIZE_10
    rrc.sbasAccuracy  sbasAccuracy
        Byte array
        BIT_STRING_SIZE_4
    rrc.sbasAgf1  sbasAgf1
        Byte array
        BIT_STRING_SIZE_8
    rrc.sbasAgfo  sbasAgfo
        Byte array
        BIT_STRING_SIZE_12
    rrc.sbasAlmDataID  sbasAlmDataID
        Byte array
        BIT_STRING_SIZE_2
    rrc.sbasAlmHealth  sbasAlmHealth
        Byte array
        BIT_STRING_SIZE_8
    rrc.sbasAlmTo  sbasAlmTo
        Byte array
        BIT_STRING_SIZE_11
    rrc.sbasAlmXg  sbasAlmXg
        Byte array
        BIT_STRING_SIZE_15
    rrc.sbasAlmXgdot  sbasAlmXgdot
        Byte array
        BIT_STRING_SIZE_3
    rrc.sbasAlmYg  sbasAlmYg
        Byte array
        BIT_STRING_SIZE_15
    rrc.sbasAlmYgDot  sbasAlmYgDot
        Byte array
        BIT_STRING_SIZE_3
    rrc.sbasAlmZg  sbasAlmZg
        Byte array
        BIT_STRING_SIZE_9
    rrc.sbasAlmZgDot  sbasAlmZgDot
        Byte array
        BIT_STRING_SIZE_4
    rrc.sbasClockModel  sbasClockModel
        No value
    rrc.sbasECEF  sbasECEF
        No value
        NavModel_SBASecef
    rrc.sbasID  sbasID
        Unsigned 32-bit integer
        UE_Positioning_GANSS_SBAS_ID
    rrc.sbasId  sbasId
        Unsigned 32-bit integer
        UE_Positioning_GANSS_SBAS_ID
    rrc.sbasTo  sbasTo
        Byte array
        BIT_STRING_SIZE_13
    rrc.sbasXg  sbasXg
        Byte array
        BIT_STRING_SIZE_30
    rrc.sbasXgDot  sbasXgDot
        Byte array
        BIT_STRING_SIZE_17
    rrc.sbasXgDotDot  sbasXgDotDot
        Byte array
        BIT_STRING_SIZE_10
    rrc.sbasYg  sbasYg
        Byte array
        BIT_STRING_SIZE_30
    rrc.sbasYgDot  sbasYgDot
        Byte array
        BIT_STRING_SIZE_17
    rrc.sbasZg  sbasZg
        Byte array
        BIT_STRING_SIZE_25
    rrc.sbasZgDot  sbasZgDot
        Byte array
        BIT_STRING_SIZE_18
    rrc.sbasZgDotDot  sbasZgDotDot
        Byte array
        BIT_STRING_SIZE_10
    rrc.sbas_Ids  sbas-Ids
        Byte array
        BIT_STRING_SIZE_8
    rrc.sccpchIdentity  sccpchIdentity
        Unsigned 32-bit integer
        MBMS_SCCPCHIdentity
    rrc.sccpch_SystemInformationList  sccpch-SystemInformationList
        Unsigned 32-bit integer
        SCCPCH_SystemInformationList_HCR_VHCR_r7
    rrc.sccpch_SystemInformation_MBMS  sccpch-SystemInformation-MBMS
        Unsigned 32-bit integer
    rrc.sccpch_TFCS  sccpch-TFCS
        Unsigned 32-bit integer
        TFCS
    rrc.scheduledTransmissionGrantInfo  scheduledTransmissionGrantInfo
        No value
    rrc.scheduling  scheduling
        No value
    rrc.schedulingInfo  schedulingInfo
        No value
        SchedulingInformation
    rrc.schedulingInfoConfiguration  schedulingInfoConfiguration
        No value
        E_DPDCH_SchedulingInfoConfiguration
    rrc.schedulingPeriod_1024_Offset  schedulingPeriod-1024-Offset
        Unsigned 32-bit integer
        INTEGER_0_1023
    rrc.schedulingPeriod_128_Offset  schedulingPeriod-128-Offset
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.schedulingPeriod_256_Offset  schedulingPeriod-256-Offset
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.schedulingPeriod_32_Offset  schedulingPeriod-32-Offset
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.schedulingPeriod_512_Offset  schedulingPeriod-512-Offset
        Unsigned 32-bit integer
        INTEGER_0_511
    rrc.schedulingPeriod_64_Offset  schedulingPeriod-64-Offset
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.schedulingTransmConfiguration  schedulingTransmConfiguration
        No value
        E_DPDCH_SchedulingTransmConfiguration
    rrc.scramblingCode  scramblingCode
        Unsigned 32-bit integer
        UL_ScramblingCode
    rrc.scramblingCodeChange  scramblingCodeChange
        Unsigned 32-bit integer
    rrc.scramblingCodeNumber  scramblingCodeNumber
        Unsigned 32-bit integer
        UL_ScramblingCode
    rrc.scramblingCodeType  scramblingCodeType
        Unsigned 32-bit integer
    rrc.sctd_Indicator  sctd-Indicator
        Boolean
        BOOLEAN
    rrc.searchWindowSize  searchWindowSize
        Unsigned 32-bit integer
        OTDOA_SearchWindowSize
    rrc.secondCPICH_Pattern  secondCPICH-Pattern
        Unsigned 32-bit integer
    rrc.secondChannelisationCode  secondChannelisationCode
        Unsigned 32-bit integer
        HS_ChannelisationCode_LCR
    rrc.secondFrequencyInfo  secondFrequencyInfo
        No value
        FrequencyInfoTDD
    rrc.secondInterleavingMode  secondInterleavingMode
        Unsigned 32-bit integer
    rrc.secondaryCCPCHInfo_MBMS  secondaryCCPCHInfo-MBMS
        No value
        SecondaryCCPCHInfo_MBMS_r6
    rrc.secondaryCCPCHPwrOffsetDiff  secondaryCCPCHPwrOffsetDiff
        Unsigned 32-bit integer
        MBMS_SCCPCHPwrOffsetDiff
    rrc.secondaryCCPCH_Info  secondaryCCPCH-Info
        No value
    rrc.secondaryCCPCH_InfoDiff  secondaryCCPCH-InfoDiff
        No value
        SecondaryCCPCHInfoDiff_MBMS
    rrc.secondaryCCPCH_LCR_Extensions  secondaryCCPCH-LCR-Extensions
        No value
        SecondaryCCPCH_Info_LCR_r4_ext
    rrc.secondaryCPICH_Info  secondaryCPICH-Info
        No value
    rrc.secondaryCellMIMOparameters  secondaryCellMIMOparameters
        Unsigned 32-bit integer
        SecondaryCellMIMOparametersFDD
    rrc.secondaryDL_ScramblingCode  secondaryDL-ScramblingCode
        Unsigned 32-bit integer
        SecondaryScramblingCode
    rrc.secondaryEDCH_Info_Common  secondaryEDCH-Info-Common
        No value
    rrc.secondaryScramblingCode  secondaryScramblingCode
        Unsigned 32-bit integer
    rrc.secondaryServingEDCHCell_Info  secondaryServingEDCHCell-Info
        No value
    rrc.secondary_E_RNTI  secondary-E-RNTI
        Byte array
        E_RNTI
    rrc.secondary_e_RGCH_CombinationInfoList  secondary-e-RGCH-CombinationInfoList
        Unsigned 32-bit integer
        E_RGCH_CombinationInfoList_r9
    rrc.secondary_tpc_CombinationInfoList  secondary-tpc-CombinationInfoList
        Unsigned 32-bit integer
        TPC_CombinationInfoList_r9
    rrc.securityCapability  securityCapability
        No value
    rrc.securityCapabilityIndication  securityCapabilityIndication
        Unsigned 32-bit integer
    rrc.securityModeCommand  securityModeCommand
        Unsigned 32-bit integer
    rrc.securityModeCommand_r3  securityModeCommand-r3
        No value
        SecurityModeCommand_r3_IEs
    rrc.securityModeCommand_r3_add_ext  securityModeCommand-r3-add-ext
        Byte array
        BIT_STRING
    rrc.securityModeCommand_r7  securityModeCommand-r7
        No value
        SecurityModeCommand_r7_IEs
    rrc.securityModeCommand_r7_add_ext  securityModeCommand-r7-add-ext
        Byte array
        BIT_STRING
    rrc.securityModeComplete  securityModeComplete
        No value
    rrc.securityModeComplete_r3_add_ext  securityModeComplete-r3-add-ext
        Byte array
        BIT_STRING
    rrc.securityModeFailure  securityModeFailure
        No value
    rrc.securityModeFailure_r3_add_ext  securityModeFailure-r3-add-ext
        Byte array
        BIT_STRING
    rrc.seed  seed
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.segCount  segCount
        Unsigned 32-bit integer
    rrc.seg_Count  seg-Count
        Unsigned 32-bit integer
        SegCount
    rrc.segmentIndex  segmentIndex
        Unsigned 32-bit integer
    rrc.segmentationIndication  segmentationIndication
        Boolean
        BOOLEAN
    rrc.semistaticTF_Information  semistaticTF-Information
        No value
    rrc.serialNumber  serialNumber
        Byte array
        OCTET_STRING_SIZE_2
    rrc.serviceIdentity  serviceIdentity
        Byte array
        OCTET_STRING_SIZE_3
    rrc.serviceSchedulingInfoList  serviceSchedulingInfoList
        Unsigned 32-bit integer
        MBMS_ServiceSchedulingInfoList_r6
    rrc.servingCellChangeMACreset  servingCellChangeMACreset
        Boolean
    rrc.servingCellChangeMsgType  servingCellChangeMsgType
        Unsigned 32-bit integer
    rrc.servingCellChangeParameters  servingCellChangeParameters
        No value
    rrc.servingCellChangeTrId  servingCellChangeTrId
        Unsigned 32-bit integer
    rrc.servingEDCH_RL_indicator  servingEDCH-RL-indicator
        Boolean
        BOOLEAN
    rrc.servingGrant  servingGrant
        No value
    rrc.servingHSDSCH_RL_indicator  servingHSDSCH-RL-indicator
        Boolean
        BOOLEAN
    rrc.serving_HSDSCH_CellInformation  serving-HSDSCH-CellInformation
        No value
    rrc.setsWithDifferentValueTag  setsWithDifferentValueTag
        Unsigned 32-bit integer
        PredefinedConfigSetsWithDifferentValueTag
    rrc.setup  setup
        Unsigned 32-bit integer
        MeasurementType
    rrc.sf128  sf128
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.sf16  sf16
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.sf1Revd  sf1Revd
        No value
        SubFrame1Reserved
    rrc.sf256  sf256
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.sf32  sf32
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.sf4  sf4
        Unsigned 32-bit integer
        INTEGER_0_3
    rrc.sf512  sf512
        Unsigned 32-bit integer
        INTEGER_0_511
    rrc.sf64  sf64
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.sf8  sf8
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.sf_AndCodeNumber  sf-AndCodeNumber
        Unsigned 32-bit integer
        SF512_AndCodeNumber
    rrc.sfd128  sfd128
        Unsigned 32-bit integer
        PilotBits128
    rrc.sfd16  sfd16
        No value
    rrc.sfd256  sfd256
        Unsigned 32-bit integer
        PilotBits256
    rrc.sfd32  sfd32
        No value
    rrc.sfd4  sfd4
        No value
    rrc.sfd512  sfd512
        No value
    rrc.sfd64  sfd64
        No value
    rrc.sfd8  sfd8
        No value
    rrc.sfn  sfn
        Unsigned 32-bit integer
        INTEGER_0_4095
    rrc.sfnNum  sfnNum
        Unsigned 32-bit integer
        INTEGER_0_1
    rrc.sfn_Offset  sfn-Offset
        Unsigned 32-bit integer
        INTEGER_0_4095
    rrc.sfn_Offset_Validity  sfn-Offset-Validity
        Unsigned 32-bit integer
    rrc.sfn_Prime  sfn-Prime
        Unsigned 32-bit integer
    rrc.sfn_SFN_Drift  sfn-SFN-Drift
        Unsigned 32-bit integer
    rrc.sfn_SFN_OTD_Type  sfn-SFN-OTD-Type
        Unsigned 32-bit integer
    rrc.sfn_SFN_ObsTimeDifference  sfn-SFN-ObsTimeDifference
        Unsigned 32-bit integer
    rrc.sfn_SFN_ObsTimeDifference2  sfn-SFN-ObsTimeDifference2
        Unsigned 32-bit integer
    rrc.sfn_SFN_RelTimeDifference  sfn-SFN-RelTimeDifference
        No value
        SFN_SFN_RelTimeDifference1
    rrc.sfn_TimeInfo  sfn-TimeInfo
        No value
    rrc.sfn_sfnType2Capability  sfn-sfnType2Capability
        Unsigned 32-bit integer
    rrc.sfn_sfn_Reltimedifference  sfn-sfn-Reltimedifference
        Unsigned 32-bit integer
        INTEGER_0_38399
    rrc.sfn_tow_Uncertainty  sfn-tow-Uncertainty
        Unsigned 32-bit integer
    rrc.sharedChannelIndicator  sharedChannelIndicator
        Boolean
        BOOLEAN
    rrc.shortTransmissionID  shortTransmissionID
        Unsigned 32-bit integer
        MBMS_ShortTransmissionID
    rrc.sib12indicator  sib12indicator
        Boolean
        BOOLEAN
    rrc.sib4indicator  sib4indicator
        Boolean
        BOOLEAN
    rrc.sib6indicator  sib6indicator
        Boolean
        BOOLEAN
    rrc.sibOccurIdentity  sibOccurIdentity
        Unsigned 32-bit integer
    rrc.sibOccurValueTag  sibOccurValueTag
        Unsigned 32-bit integer
    rrc.sibSb_ReferenceList  sibSb-ReferenceList
        Unsigned 32-bit integer
    rrc.sibSb_Type  sibSb-Type
        Unsigned 32-bit integer
        SIBSb_TypeAndTag
    rrc.sib_Data_fixed  sib-Data-fixed
        Byte array
    rrc.sib_Data_variable  sib-Data-variable
        Byte array
    rrc.sib_Pos  sib-Pos
        Unsigned 32-bit integer
    rrc.sib_PosOffsetInfo  sib-PosOffsetInfo
        Unsigned 32-bit integer
        SibOFF_List
    rrc.sib_ReferenceList  sib-ReferenceList
        Unsigned 32-bit integer
    rrc.sib_ReferenceListFACH  sib-ReferenceListFACH
        Unsigned 32-bit integer
    rrc.sib_Type  sib-Type
        Unsigned 32-bit integer
    rrc.sid  sid
        Byte array
    rrc.signalledGainFactors  signalledGainFactors
        No value
    rrc.signallingConnectionRelIndication  signallingConnectionRelIndication
        Unsigned 32-bit integer
        CN_DomainIdentity
    rrc.signallingConnectionRelease  signallingConnectionRelease
        Unsigned 32-bit integer
    rrc.signallingConnectionReleaseIndication  signallingConnectionReleaseIndication
        No value
    rrc.signallingConnectionReleaseIndicationCause  signallingConnectionReleaseIndicationCause
        Unsigned 32-bit integer
    rrc.signallingConnectionReleaseIndication_r3_add_ext  signallingConnectionReleaseIndication-r3-add-ext
        Byte array
        BIT_STRING
    rrc.signallingConnectionReleaseIndication_v860ext  signallingConnectionReleaseIndication-v860ext
        No value
    rrc.signallingConnectionRelease_r3  signallingConnectionRelease-r3
        No value
        SignallingConnectionRelease_r3_IEs
    rrc.signallingConnectionRelease_r3_add_ext  signallingConnectionRelease-r3-add-ext
        Byte array
        BIT_STRING
    rrc.signallingMethod  signallingMethod
        Unsigned 32-bit integer
    rrc.signalsAvailable  signalsAvailable
        Byte array
        BIT_STRING_SIZE_8
    rrc.signature0  signature0
        Boolean
    rrc.signature1  signature1
        Boolean
    rrc.signature10  signature10
        Boolean
    rrc.signature11  signature11
        Boolean
    rrc.signature12  signature12
        Boolean
    rrc.signature13  signature13
        Boolean
    rrc.signature14  signature14
        Boolean
    rrc.signature15  signature15
        Boolean
    rrc.signature2  signature2
        Boolean
    rrc.signature3  signature3
        Boolean
    rrc.signature4  signature4
        Boolean
    rrc.signature5  signature5
        Boolean
    rrc.signature6  signature6
        Boolean
    rrc.signature7  signature7
        Boolean
    rrc.signature8  signature8
        Boolean
    rrc.signature9  signature9
        Boolean
    rrc.signatureSequence  signatureSequence
        Unsigned 32-bit integer
        E_HICH_RGCH_SignatureSequence
    rrc.signatureSequenceGroupIndex  signatureSequenceGroupIndex
        Unsigned 32-bit integer
        INTEGER_0_19
    rrc.simultaneousSCCPCH_DPCH_DPDCH_Reception  simultaneousSCCPCH-DPCH-DPDCH-Reception
        Boolean
        BOOLEAN
    rrc.single_GERANIu_Message  single-GERANIu-Message
        No value
    rrc.single_GSM_Message  single-GSM-Message
        No value
        T_single_GSM_Message_r3
    rrc.sir_MeasurementResults  sir-MeasurementResults
        Unsigned 32-bit integer
        SIR_MeasurementList
    rrc.sir_TFCS_List  sir-TFCS-List
        Unsigned 32-bit integer
    rrc.sir_TimeslotList  sir-TimeslotList
        Unsigned 32-bit integer
    rrc.size1  size1
        No value
    rrc.size16  size16
        No value
    rrc.size2  size2
        No value
    rrc.size4  size4
        No value
    rrc.size8  size8
        No value
    rrc.sizeType1  sizeType1
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.sizeType2  sizeType2
        No value
    rrc.sizeType3  sizeType3
        No value
    rrc.sizeType4  sizeType4
        No value
    rrc.slotFormat4  slotFormat4
        Unsigned 32-bit integer
    rrc.small  small
        Unsigned 32-bit integer
        INTEGER_2_17
    rrc.snpl_ReportType  snpl-ReportType
        Unsigned 32-bit integer
    rrc.softComb_TimingOffset  softComb-TimingOffset
        Unsigned 32-bit integer
        MBMS_SoftComb_TimingOffset
    rrc.softSlope  softSlope
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.some  some
        Unsigned 32-bit integer
        MBMS_SelectedServicesListFull
    rrc.spare  spare
        No value
    rrc.spare0  spare0
        Boolean
    rrc.spare1  spare1
        No value
    rrc.spare10  spare10
        No value
    rrc.spare11  spare11
        No value
    rrc.spare12  spare12
        Boolean
    rrc.spare13  spare13
        Boolean
    rrc.spare14  spare14
        Boolean
    rrc.spare15  spare15
        Boolean
    rrc.spare2  spare2
        No value
    rrc.spare3  spare3
        No value
    rrc.spare4  spare4
        No value
    rrc.spare5  spare5
        No value
    rrc.spare6  spare6
        No value
    rrc.spare7  spare7
        No value
    rrc.spare8  spare8
        No value
    rrc.spare9  spare9
        No value
    rrc.specialBurstScheduling  specialBurstScheduling
        Unsigned 32-bit integer
    rrc.specificationMode  specificationMode
        Unsigned 32-bit integer
    rrc.speedDependentScalingFactor  speedDependentScalingFactor
        Unsigned 32-bit integer
    rrc.splitType  splitType
        Unsigned 32-bit integer
    rrc.spreadingFactor  spreadingFactor
        Unsigned 32-bit integer
        SF_PDSCH
    rrc.spreadingFactorAndPilot  spreadingFactorAndPilot
        Unsigned 32-bit integer
        SF512_AndPilot
    rrc.sps_Information_TDD128  sps-Information-TDD128
        No value
        SPS_Information_TDD128_r8
    rrc.sr_vcc_Info  sr-vcc-Info
        No value
    rrc.sr_vcc_SecurityRABInfo  sr-vcc-SecurityRABInfo
        No value
        SR_VCC_SecurityRABInfo_v860ext
    rrc.srb1_MappingInfo  srb1-MappingInfo
        No value
        CommonRBMappingInfo
    rrc.srb_InformationList  srb-InformationList
        Unsigned 32-bit integer
        SRB_InformationSetupList
    rrc.srb_InformationSetupList  srb-InformationSetupList
        Unsigned 32-bit integer
    rrc.srb_SpecificIntegrityProtInfo  srb-SpecificIntegrityProtInfo
        Unsigned 32-bit integer
        SRB_SpecificIntegrityProtInfoList
    rrc.srncRelocation  srncRelocation
        Unsigned 32-bit integer
        SRNC_RelocationInfo_r3
    rrc.srnc_Identity  srnc-Identity
        Byte array
    rrc.srnc_RelocationInfo_v820ext  srnc-RelocationInfo-v820ext
        No value
        SRNC_RelocationInfo_v820ext_IEs
    rrc.srns_t_305  srns-t-305
        Unsigned 32-bit integer
        T_305
    rrc.ss_TPC_Symbols  ss-TPC-Symbols
        Unsigned 32-bit integer
    rrc.ssdt_UL_r4  ssdt-UL-r4
        Unsigned 32-bit integer
        SSDT_UL
    rrc.standaloneLocMethodsSupported  standaloneLocMethodsSupported
        Boolean
        BOOLEAN
    rrc.start  start
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.startCode  startCode
        Unsigned 32-bit integer
        HS_ChannelisationCode_LCR
    rrc.startIntegrityProtection  startIntegrityProtection
        No value
    rrc.startList  startList
        Unsigned 32-bit integer
    rrc.startPSC  startPSC
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.startPosition  startPosition
        Unsigned 32-bit integer
        INTEGER_0_10
    rrc.startRestart  startRestart
        Unsigned 32-bit integer
        CipheringAlgorithm
    rrc.startValueForCiphering_v3a0ext  startValueForCiphering-v3a0ext
        Byte array
        START_Value
    rrc.startValueForCiphering_v3b0ext  startValueForCiphering-v3b0ext
        Unsigned 32-bit integer
        STARTList2
    rrc.start_CS  start-CS
        Byte array
        START_Value
    rrc.start_PS  start-PS
        Byte array
        START_Value
    rrc.start_Value  start-Value
        Byte array
    rrc.start_code  start-code
        Unsigned 32-bit integer
        HS_ChannelisationCode_LCR
    rrc.startingARFCN  startingARFCN
        Unsigned 32-bit integer
        BCCH_ARFCN
    rrc.starting_E_RNTI  starting-E-RNTI
        Byte array
        E_RNTI
    rrc.stateOfRRC  stateOfRRC
        Unsigned 32-bit integer
    rrc.stateOfRRC_Procedure  stateOfRRC-Procedure
        Unsigned 32-bit integer
    rrc.status  status
        Unsigned 32-bit integer
    rrc.statusFlag  statusFlag
        Unsigned 32-bit integer
    rrc.statusHealth  statusHealth
        Unsigned 32-bit integer
        DiffCorrectionStatus
    rrc.stdOfOTDOA_Measurements  stdOfOTDOA-Measurements
        Byte array
        BIT_STRING_SIZE_5
    rrc.stdResolution  stdResolution
        Byte array
        BIT_STRING_SIZE_2
    rrc.stepSize  stepSize
        Unsigned 32-bit integer
        INTEGER_1_8
    rrc.stopCode  stopCode
        Unsigned 32-bit integer
        HS_ChannelisationCode_LCR
    rrc.stop_code  stop-code
        Unsigned 32-bit integer
        HS_ChannelisationCode_LCR
    rrc.storedCompressedModeInfo  storedCompressedModeInfo
        No value
    rrc.storedTGP_SequenceList  storedTGP-SequenceList
        Unsigned 32-bit integer
    rrc.storedWithDifferentValueTag  storedWithDifferentValueTag
        Unsigned 32-bit integer
        PredefinedConfigValueTag
    rrc.storedWithValueTagSameAsPrevius  storedWithValueTagSameAsPrevius
        No value
    rrc.storm_flag_five  storm-flag-five
        Boolean
        BOOLEAN
    rrc.storm_flag_four  storm-flag-four
        Boolean
        BOOLEAN
    rrc.storm_flag_one  storm-flag-one
        Boolean
        BOOLEAN
    rrc.storm_flag_three  storm-flag-three
        Boolean
        BOOLEAN
    rrc.storm_flag_two  storm-flag-two
        Boolean
        BOOLEAN
    rrc.sttdIndication  sttdIndication
        Unsigned 32-bit integer
    rrc.sttd_Indicator  sttd-Indicator
        Boolean
        BOOLEAN
    rrc.subCh0  subCh0
        Boolean
    rrc.subCh1  subCh1
        Boolean
    rrc.subCh10  subCh10
        Boolean
    rrc.subCh11  subCh11
        Boolean
    rrc.subCh12  subCh12
        Boolean
    rrc.subCh13  subCh13
        Boolean
    rrc.subCh14  subCh14
        Boolean
    rrc.subCh15  subCh15
        Boolean
    rrc.subCh2  subCh2
        Boolean
    rrc.subCh3  subCh3
        Boolean
    rrc.subCh4  subCh4
        Boolean
    rrc.subCh5  subCh5
        Boolean
    rrc.subCh6  subCh6
        Boolean
    rrc.subCh7  subCh7
        Boolean
    rrc.subCh8  subCh8
        Boolean
    rrc.subCh9  subCh9
        Boolean
    rrc.subFrameNumber  subFrameNumber
        Unsigned 32-bit integer
        INTEGER_0_4
    rrc.subchannelSize  subchannelSize
        Unsigned 32-bit integer
    rrc.subchannels  subchannels
        Unsigned 32-bit integer
    rrc.subframeNum  subframeNum
        Unsigned 32-bit integer
        INTEGER_0_1
    rrc.subsequentSegment  subsequentSegment
        No value
    rrc.sulCodeIndex0  sulCodeIndex0
        Boolean
    rrc.sulCodeIndex1  sulCodeIndex1
        Boolean
    rrc.sulCodeIndex2  sulCodeIndex2
        Boolean
    rrc.sulCodeIndex3  sulCodeIndex3
        Boolean
    rrc.sulCodeIndex4  sulCodeIndex4
        Boolean
    rrc.sulCodeIndex5  sulCodeIndex5
        Boolean
    rrc.sulCodeIndex6  sulCodeIndex6
        Boolean
    rrc.sulCodeIndex7  sulCodeIndex7
        Boolean
    rrc.supportCellSpecificTxDiversityinDC_Operation  supportCellSpecificTxDiversityinDC-Operation
        Unsigned 32-bit integer
    rrc.supportEDPDCHPowerInterpolation  supportEDPDCHPowerInterpolation
        Unsigned 32-bit integer
    rrc.supportEUTRA_FDD  supportEUTRA-FDD
        Boolean
        BOOLEAN
    rrc.supportEUTRA_TDD  supportEUTRA-TDD
        Boolean
        BOOLEAN
    rrc.supportForCSVoiceoverHSPA  supportForCSVoiceoverHSPA
        Unsigned 32-bit integer
    rrc.supportForChangeOfUE_Capability  supportForChangeOfUE-Capability
        Boolean
        BOOLEAN
    rrc.supportForEDPCCHPowerBoosting  supportForEDPCCHPowerBoosting
        Unsigned 32-bit integer
    rrc.supportForE_FDPCH  supportForE-FDPCH
        Unsigned 32-bit integer
    rrc.supportForFDPCH  supportForFDPCH
        Unsigned 32-bit integer
    rrc.supportForIPDL  supportForIPDL
        Boolean
        BOOLEAN
    rrc.supportForPriorityReselectionInUTRAN  supportForPriorityReselectionInUTRAN
        Unsigned 32-bit integer
    rrc.supportForRfc2507  supportForRfc2507
        Unsigned 32-bit integer
    rrc.supportForRfc3095  supportForRfc3095
        Unsigned 32-bit integer
    rrc.supportForRfc3095ContextRelocation  supportForRfc3095ContextRelocation
        Boolean
        BOOLEAN
    rrc.supportForSF_512  supportForSF-512
        Boolean
        BOOLEAN
    rrc.supportForSIB11bis  supportForSIB11bis
        Unsigned 32-bit integer
    rrc.supportForTwoDRXSchemesInPCH  supportForTwoDRXSchemesInPCH
        Unsigned 32-bit integer
    rrc.supportForUE_GANSS_CarrierPhaseMeasurement  supportForUE-GANSS-CarrierPhaseMeasurement
        Boolean
        BOOLEAN
    rrc.supportForUE_GANSS_TimingOfCellFrames  supportForUE-GANSS-TimingOfCellFrames
        Boolean
        BOOLEAN
    rrc.supportForUE_GPS_TimingOfCellFrames  supportForUE-GPS-TimingOfCellFrames
        Boolean
        BOOLEAN
    rrc.supportOf8PSK  supportOf8PSK
        Boolean
        BOOLEAN
    rrc.supportOfCSG  supportOfCSG
        Unsigned 32-bit integer
    rrc.supportOfCommonEDCH  supportOfCommonEDCH
        Unsigned 32-bit integer
    rrc.supportOfControlChannelDRXOperation  supportOfControlChannelDRXOperation
        Unsigned 32-bit integer
    rrc.supportOfDualCellMIMO  supportOfDualCellMIMO
        Unsigned 32-bit integer
    rrc.supportOfEUTRAFDD  supportOfEUTRAFDD
        Unsigned 32-bit integer
    rrc.supportOfEUTRATDD  supportOfEUTRATDD
        Unsigned 32-bit integer
    rrc.supportOfE_UtraProximityIndication  supportOfE-UtraProximityIndication
        Unsigned 32-bit integer
    rrc.supportOfE_UtraSIAcquisitionForHO  supportOfE-UtraSIAcquisitionForHO
        Unsigned 32-bit integer
    rrc.supportOfGSM  supportOfGSM
        Boolean
        BOOLEAN
    rrc.supportOfHS_DSCHDRXOperation  supportOfHS-DSCHDRXOperation
        Unsigned 32-bit integer
    rrc.supportOfHandoverToGAN  supportOfHandoverToGAN
        Unsigned 32-bit integer
    rrc.supportOfHsdschDrxOperation  supportOfHsdschDrxOperation
        Unsigned 32-bit integer
    rrc.supportOfInterFreqProximityIndication  supportOfInterFreqProximityIndication
        Unsigned 32-bit integer
    rrc.supportOfInterFreqSIAcquisitionForHO  supportOfInterFreqSIAcquisitionForHO
        Unsigned 32-bit integer
    rrc.supportOfInterRATHOToEUTRAFDD  supportOfInterRATHOToEUTRAFDD
        Unsigned 32-bit integer
    rrc.supportOfInterRATHOToEUTRATDD  supportOfInterRATHOToEUTRATDD
        Unsigned 32-bit integer
    rrc.supportOfInter_RAT_PS_Handover  supportOfInter-RAT-PS-Handover
        Unsigned 32-bit integer
        T_supportOfInter_RAT_PS_Handover
    rrc.supportOfIntraFreqProximityIndication  supportOfIntraFreqProximityIndication
        Unsigned 32-bit integer
    rrc.supportOfIntraFreqSIAcquisitionForHO  supportOfIntraFreqSIAcquisitionForHO
        Unsigned 32-bit integer
    rrc.supportOfMACiis  supportOfMACiis
        Unsigned 32-bit integer
    rrc.supportOfMimoOnlySingleStream  supportOfMimoOnlySingleStream
        Unsigned 32-bit integer
    rrc.supportOfMulticarrier  supportOfMulticarrier
        Boolean
        BOOLEAN
    rrc.supportOfPDSCH  supportOfPDSCH
        Boolean
        BOOLEAN
    rrc.supportOfPSHandoverToGAN  supportOfPSHandoverToGAN
        Unsigned 32-bit integer
    rrc.supportOfPUSCH  supportOfPUSCH
        Boolean
        BOOLEAN
    rrc.supportOfSFModeForHSPDSCHDualStream  supportOfSFModeForHSPDSCHDualStream
        Unsigned 32-bit integer
    rrc.supportOfSPSOperation  supportOfSPSOperation
        Unsigned 32-bit integer
    rrc.supportOfTargetCellPreConfig  supportOfTargetCellPreConfig
        Unsigned 32-bit integer
    rrc.supportOfTwoLogicalChannel  supportOfTwoLogicalChannel
        Boolean
        BOOLEAN
    rrc.supportOfUTRAN_ToGERAN_NACC  supportOfUTRAN-ToGERAN-NACC
        Boolean
        BOOLEAN
    rrc.supportOfenhancedTS0  supportOfenhancedTS0
        Unsigned 32-bit integer
    rrc.support_hsdschReception_CellFach  support-hsdschReception-CellFach
        Unsigned 32-bit integer
        T_support_hsdschReception_CellFach
    rrc.support_hsdschReception_CellUraPch  support-hsdschReception-CellUraPch
        Unsigned 32-bit integer
        T_support_hsdschReception_CellUraPch
    rrc.supported  supported
        Unsigned 32-bit integer
        HSDSCH_physical_layer_category
    rrc.supportofTxDivOnNonMIMOChannel  supportofTxDivOnNonMIMOChannel
        Unsigned 32-bit integer
    rrc.svHealth  svHealth
        Byte array
        BIT_STRING_SIZE_6
    rrc.svID  svID
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.svId  svId
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.sv_GlobalHealth  sv-GlobalHealth
        Byte array
        BIT_STRING_SIZE_364
    rrc.syncCase  syncCase
        Unsigned 32-bit integer
    rrc.syncCase1  syncCase1
        No value
    rrc.syncCase2  syncCase2
        No value
    rrc.sync_UL_CodesBitmap  sync-UL-CodesBitmap
        Byte array
    rrc.sync_UL_Codes_Bitmap  sync-UL-Codes-Bitmap
        Byte array
    rrc.sync_UL_Info  sync-UL-Info
        No value
        SYNC_UL_Info_r4
    rrc.sync_UL_InfoForE_RUCCH  sync-UL-InfoForE-RUCCH
        No value
    rrc.sync_UL_Procedure  sync-UL-Procedure
        No value
        SYNC_UL_Procedure_r4
    rrc.synchronisationParameters  synchronisationParameters
        No value
        SynchronisationParameters_r4
    rrc.sysInfoType1  sysInfoType1
        Unsigned 32-bit integer
        PLMN_ValueTag
    rrc.sysInfoType11  sysInfoType11
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType11_v4b0ext  sysInfoType11-v4b0ext
        No value
        SysInfoType11_v4b0ext_IEs
    rrc.sysInfoType11_v590ext  sysInfoType11-v590ext
        No value
        SysInfoType11_v590ext_IEs
    rrc.sysInfoType11_v690ext  sysInfoType11-v690ext
        No value
        SysInfoType11_v690ext_IEs
    rrc.sysInfoType11_v6b0ext  sysInfoType11-v6b0ext
        No value
        SysInfoType11_v6b0ext_IEs
    rrc.sysInfoType11_v770ext  sysInfoType11-v770ext
        No value
        SysInfoType11_v770ext_IEs
    rrc.sysInfoType11_v7b0ext  sysInfoType11-v7b0ext
        No value
        SysInfoType11_v7b0ext_IEs
    rrc.sysInfoType11_v860ext  sysInfoType11-v860ext
        No value
        SysInfoType11_v860ext_IEs
    rrc.sysInfoType11bis_v7b0ext  sysInfoType11bis-v7b0ext
        No value
        SysInfoType11bis_v7b0ext_IEs
    rrc.sysInfoType11bis_v860ext  sysInfoType11bis-v860ext
        No value
        SysInfoType11bis_v860ext_IEs
    rrc.sysInfoType12  sysInfoType12
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType12_v4b0ext  sysInfoType12-v4b0ext
        No value
        SysInfoType12_v4b0ext_IEs
    rrc.sysInfoType12_v590ext  sysInfoType12-v590ext
        No value
        SysInfoType12_v590ext_IEs
    rrc.sysInfoType12_v690ext  sysInfoType12-v690ext
        No value
        SysInfoType12_v690ext_IEs
    rrc.sysInfoType12_v6b0ext  sysInfoType12-v6b0ext
        No value
        SysInfoType12_v6b0ext_IEs
    rrc.sysInfoType12_v7b0ext  sysInfoType12-v7b0ext
        No value
        SysInfoType12_v7b0ext_IEs
    rrc.sysInfoType13  sysInfoType13
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType13_1  sysInfoType13-1
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType13_2  sysInfoType13-2
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType13_3  sysInfoType13-3
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType13_4  sysInfoType13-4
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType13_v3a0ext  sysInfoType13-v3a0ext
        No value
        SysInfoType13_v3a0ext_IEs
    rrc.sysInfoType13_v4b0ext  sysInfoType13-v4b0ext
        No value
        SysInfoType13_v4b0ext_IEs
    rrc.sysInfoType13_v770ext  sysInfoType13-v770ext
        No value
        SysInfoType13_v770ext_IEs
    rrc.sysInfoType14  sysInfoType14
        No value
    rrc.sysInfoType15  sysInfoType15
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType15_1  sysInfoType15-1
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType15_1_v920ext  sysInfoType15-1-v920ext
        No value
        SysInfoType15_1_v920ext_IEs
    rrc.sysInfoType15_1bis_v920ext  sysInfoType15-1bis-v920ext
        No value
        SysInfoType15_1bis_v920ext_IEs
    rrc.sysInfoType15_2  sysInfoType15-2
        No value
        SIBOccurrenceIdentityAndValueTag
    rrc.sysInfoType15_3  sysInfoType15-3
        No value
        SIBOccurrenceIdentityAndValueTag
    rrc.sysInfoType15_3bis_v860ext  sysInfoType15-3bis-v860ext
        No value
        SysInfoType15_3bis_v860ext_IEs
    rrc.sysInfoType15_4  sysInfoType15-4
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType15_4_v3a0ext  sysInfoType15-4-v3a0ext
        No value
    rrc.sysInfoType15_4_v4b0ext  sysInfoType15-4-v4b0ext
        No value
    rrc.sysInfoType15_5  sysInfoType15-5
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType15_5_v3a0ext  sysInfoType15-5-v3a0ext
        No value
    rrc.sysInfoType15_5_v770ext  sysInfoType15-5-v770ext
        No value
        SysInfoType15_5_v770ext_IEs
    rrc.sysInfoType15_v4b0ext  sysInfoType15-v4b0ext
        No value
        SysInfoType15_v4b0ext_IEs
    rrc.sysInfoType15_v770ext  sysInfoType15-v770ext
        No value
        SysInfoType15_v770ext_IEs
    rrc.sysInfoType15bis_v860ext  sysInfoType15bis-v860ext
        No value
        SysInfoType15bis_v860ext_IEs
    rrc.sysInfoType16  sysInfoType16
        No value
        PredefinedConfigIdentityAndValueTag
    rrc.sysInfoType16_v770ext  sysInfoType16-v770ext
        No value
        SysInfoType16_v770ext_IEs
    rrc.sysInfoType16_v920ext  sysInfoType16-v920ext
        No value
        SysInfoType16_v920ext_IEs
    rrc.sysInfoType17  sysInfoType17
        No value
    rrc.sysInfoType17_v4b0ext  sysInfoType17-v4b0ext
        No value
        SysInfoType17_v4b0ext_IEs
    rrc.sysInfoType17_v590ext  sysInfoType17-v590ext
        No value
        SysInfoType17_v590ext_IEs
    rrc.sysInfoType17_v770ext  sysInfoType17-v770ext
        No value
        SysInfoType17_v770ext_IEs
    rrc.sysInfoType18  sysInfoType18
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType18_v6b0ext  sysInfoType18-v6b0ext
        No value
    rrc.sysInfoType18_v860ext  sysInfoType18-v860ext
        No value
    rrc.sysInfoType19_v920ext  sysInfoType19-v920ext
        No value
    rrc.sysInfoType1_v3a0ext  sysInfoType1-v3a0ext
        No value
        SysInfoType1_v3a0ext_IEs
    rrc.sysInfoType1_v860ext  sysInfoType1-v860ext
        No value
        SysInfoType1_v860ext_IEs
    rrc.sysInfoType2  sysInfoType2
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType3  sysInfoType3
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType3_v4b0ext  sysInfoType3-v4b0ext
        No value
        SysInfoType3_v4b0ext_IEs
    rrc.sysInfoType3_v590ext  sysInfoType3-v590ext
        No value
    rrc.sysInfoType3_v5c0ext  sysInfoType3-v5c0ext
        No value
        SysInfoType3_v5c0ext_IEs
    rrc.sysInfoType3_v670ext  sysInfoType3-v670ext
        No value
    rrc.sysInfoType3_v770ext  sysInfoType3-v770ext
        No value
        SysInfoType3_v770ext_IEs
    rrc.sysInfoType3_v830ext  sysInfoType3-v830ext
        No value
        SysInfoType3_v830ext_IEs
    rrc.sysInfoType3_v860ext  sysInfoType3-v860ext
        No value
        SysInfoType3_v860ext_IEs
    rrc.sysInfoType3_v870ext  sysInfoType3-v870ext
        No value
        SysInfoType3_v870ext_IEs
    rrc.sysInfoType3_v920ext  sysInfoType3-v920ext
        No value
        SysInfoType3_v920ext_IEs
    rrc.sysInfoType4  sysInfoType4
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType4_v4b0ext  sysInfoType4-v4b0ext
        No value
        SysInfoType4_v4b0ext_IEs
    rrc.sysInfoType4_v590ext  sysInfoType4-v590ext
        No value
    rrc.sysInfoType4_v5b0ext  sysInfoType4-v5b0ext
        No value
        SysInfoType4_v5b0ext_IEs
    rrc.sysInfoType4_v5c0ext  sysInfoType4-v5c0ext
        No value
        SysInfoType4_v5c0ext_IEs
    rrc.sysInfoType5  sysInfoType5
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType5_v4b0ext  sysInfoType5-v4b0ext
        No value
        SysInfoType5_v4b0ext_IEs
    rrc.sysInfoType5_v590ext  sysInfoType5-v590ext
        No value
        SysInfoType5_v590ext_IEs
    rrc.sysInfoType5_v650ext  sysInfoType5-v650ext
        No value
        SysInfoType5_v650ext_IEs
    rrc.sysInfoType5_v680ext  sysInfoType5-v680ext
        No value
        SysInfoType5_v680ext_IEs
    rrc.sysInfoType5_v690ext  sysInfoType5-v690ext
        No value
        SysInfoType5_v690ext_IEs
    rrc.sysInfoType5_v770ext  sysInfoType5-v770ext
        No value
        SysInfoType5_v770ext_IEs
    rrc.sysInfoType5_v860ext  sysInfoType5-v860ext
        No value
        SysInfoType5_v860ext_IEs
    rrc.sysInfoType5_v890ext  sysInfoType5-v890ext
        No value
        SysInfoType5_v890ext_IEs
    rrc.sysInfoType5bis  sysInfoType5bis
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType6  sysInfoType6
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoType6_v4b0ext  sysInfoType6-v4b0ext
        No value
        SysInfoType6_v4b0ext_IEs
    rrc.sysInfoType6_v590ext  sysInfoType6-v590ext
        No value
        SysInfoType6_v590ext_IEs
    rrc.sysInfoType6_v650ext  sysInfoType6-v650ext
        No value
        SysInfoType6_v650ext_IEs
    rrc.sysInfoType6_v690ext  sysInfoType6-v690ext
        No value
        SysInfoType6_v690ext_IEs
    rrc.sysInfoType6_v770ext  sysInfoType6-v770ext
        No value
        SysInfoType6_v770ext_IEs
    rrc.sysInfoType7  sysInfoType7
        No value
    rrc.sysInfoTypeSB1  sysInfoTypeSB1
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoTypeSB1_v6b0ext  sysInfoTypeSB1-v6b0ext
        No value
    rrc.sysInfoTypeSB1_v860ext  sysInfoTypeSB1-v860ext
        No value
    rrc.sysInfoTypeSB2  sysInfoTypeSB2
        Unsigned 32-bit integer
        CellValueTag
    rrc.sysInfoTypeSB2_v6b0ext  sysInfoTypeSB2-v6b0ext
        No value
    rrc.sysInfoTypeSB2_v860ext  sysInfoTypeSB2-v860ext
        No value
    rrc.systemInfoType11bis  systemInfoType11bis
        No value
    rrc.systemInfoType15_1bis  systemInfoType15-1bis
        No value
    rrc.systemInfoType15_2bis  systemInfoType15-2bis
        No value
    rrc.systemInfoType15_2ter  systemInfoType15-2ter
        No value
    rrc.systemInfoType15_3bis  systemInfoType15-3bis
        No value
    rrc.systemInfoType15_6  systemInfoType15-6
        No value
    rrc.systemInfoType15_7  systemInfoType15-7
        No value
    rrc.systemInfoType15_8  systemInfoType15-8
        No value
    rrc.systemInfoType15bis  systemInfoType15bis
        No value
    rrc.systemInfoType19  systemInfoType19
        No value
    rrc.systemInfoType20  systemInfoType20
        No value
    rrc.systemInformation  systemInformation
        No value
        SystemInformation_FACH
    rrc.systemInformationChangeIndication  systemInformationChangeIndication
        No value
    rrc.systemInformationChangeIndication_r3_add_ext  systemInformationChangeIndication-r3-add-ext
        Byte array
        BIT_STRING
    rrc.systemInformationChangeIndication_v860ext  systemInformationChangeIndication-v860ext
        No value
        SystemInformationChangeIndication_v860ext_IEs
    rrc.systemSpecificCapUpdateReq  systemSpecificCapUpdateReq
        Unsigned 32-bit integer
        SystemSpecificCapUpdateReq_v590ext
    rrc.systemSpecificCapUpdateReqList  systemSpecificCapUpdateReqList
        Unsigned 32-bit integer
    rrc.t120  t120
        No value
        N_CR_T_CRMaxHyst
    rrc.t180  t180
        No value
        N_CR_T_CRMaxHyst
    rrc.t1_ReleaseTimer  t1-ReleaseTimer
        Unsigned 32-bit integer
    rrc.t240  t240
        No value
        N_CR_T_CRMaxHyst
    rrc.t30  t30
        No value
        N_CR_T_CRMaxHyst
    rrc.t314_expired  t314-expired
        Boolean
        BOOLEAN
    rrc.t315_expired  t315-expired
        Boolean
        BOOLEAN
    rrc.t60  t60
        No value
        N_CR_T_CRMaxHyst
    rrc.tDD_MBSFNInformation  tDD-MBSFNInformation
        Unsigned 32-bit integer
    rrc.tDMLength  tDMLength
        Unsigned 32-bit integer
        INTEGER_1_8
    rrc.tDMOffset  tDMOffset
        Unsigned 32-bit integer
        INTEGER_0_8
    rrc.tDMPeriod  tDMPeriod
        Unsigned 32-bit integer
        INTEGER_2_9
    rrc.tMSIofdifferentPLMN  tMSIofdifferentPLMN
        No value
    rrc.tMSIofsamePLMN  tMSIofsamePLMN
        No value
    rrc.tS0_Indicator  tS0-Indicator
        Unsigned 32-bit integer
    rrc.tS_Number  tS-Number
        Unsigned 32-bit integer
        INTEGER_0_14
    rrc.tS_number  tS-number
        Unsigned 32-bit integer
        INTEGER_0_14
    rrc.tToeLimit  tToeLimit
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.t_300  t-300
        Unsigned 32-bit integer
    rrc.t_301  t-301
        Unsigned 32-bit integer
    rrc.t_302  t-302
        Unsigned 32-bit integer
    rrc.t_304  t-304
        Unsigned 32-bit integer
    rrc.t_305  t-305
        Unsigned 32-bit integer
    rrc.t_307  t-307
        Unsigned 32-bit integer
    rrc.t_308  t-308
        Unsigned 32-bit integer
    rrc.t_309  t-309
        Unsigned 32-bit integer
    rrc.t_310  t-310
        Unsigned 32-bit integer
    rrc.t_311  t-311
        Unsigned 32-bit integer
    rrc.t_312  t-312
        Unsigned 32-bit integer
    rrc.t_313  t-313
        Unsigned 32-bit integer
    rrc.t_314  t-314
        Unsigned 32-bit integer
    rrc.t_315  t-315
        Unsigned 32-bit integer
    rrc.t_316  t-316
        Unsigned 32-bit integer
    rrc.t_317  t-317
        Unsigned 32-bit integer
    rrc.t_318  t-318
        Unsigned 32-bit integer
    rrc.t_321  t-321
        Unsigned 32-bit integer
    rrc.t_322  t-322
        Unsigned 32-bit integer
    rrc.t_323  t-323
        Unsigned 32-bit integer
    rrc.t_ADV  t-ADV
        Unsigned 32-bit integer
        INTEGER_0_2047
    rrc.t_ADVinfo  t-ADVinfo
        No value
    rrc.t_Barred  t-Barred
        Unsigned 32-bit integer
    rrc.t_CPCH  t-CPCH
        Unsigned 32-bit integer
    rrc.t_CRMaxHyst  t-CRMaxHyst
        Unsigned 32-bit integer
    rrc.t_CR_Max  t-CR-Max
        Unsigned 32-bit integer
        T_CRMax
    rrc.t_GD  t-GD
        Byte array
        BIT_STRING_SIZE_8
    rrc.t_RUCCH  t-RUCCH
        Unsigned 32-bit integer
        T_t_RUCCH
    rrc.t_Reselection_S  t-Reselection-S
        Unsigned 32-bit integer
    rrc.t_Reselection_S_FACH  t-Reselection-S-FACH
        Unsigned 32-bit integer
        T_Reselection_S_Fine
    rrc.t_Reselection_S_PCH  t-Reselection-S-PCH
        Unsigned 32-bit integer
        T_Reselection_S
    rrc.t_SCHED  t-SCHED
        Unsigned 32-bit integer
        T_t_SCHED
    rrc.t_SI  t-SI
        Unsigned 32-bit integer
        T_t_SI
    rrc.t_SI_nst  t-SI-nst
        Unsigned 32-bit integer
        T_t_SI_nst
    rrc.t_WAIT  t-WAIT
        Unsigned 32-bit integer
        T_t_WAIT
    rrc.t_adv  t-adv
        Unsigned 32-bit integer
        T_t_adv
    rrc.t_oa  t-oa
        Byte array
        BIT_STRING_SIZE_8
    rrc.t_oc  t-oc
        Byte array
        BIT_STRING_SIZE_16
    rrc.t_oe  t-oe
        Byte array
        BIT_STRING_SIZE_16
    rrc.t_ot  t-ot
        Byte array
        BIT_STRING_SIZE_8
    rrc.t_ot_utc  t-ot-utc
        Byte array
        BIT_STRING_SIZE_8
    rrc.t_toeLimit  t-toeLimit
        Unsigned 32-bit integer
        INTEGER_0_10
    rrc.tadd_EcIo  tadd-EcIo
        Unsigned 32-bit integer
        INTEGER_0_63
    rrc.targetCellPreconfigInfo  targetCellPreconfigInfo
        No value
    rrc.tauC  tauC
        Byte array
        BIT_STRING_SIZE_32
    rrc.tcomp_EcIo  tcomp-EcIo
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.tcp_SPACE  tcp-SPACE
        Unsigned 32-bit integer
        INTEGER_3_255
    rrc.tctf_Presence  tctf-Presence
        Unsigned 32-bit integer
        MBMS_TCTF_Presence
    rrc.tdd  tdd
        No value
    rrc.tdd128  tdd128
        No value
    rrc.tdd128RF_Capability  tdd128RF-Capability
        Unsigned 32-bit integer
        RadioFrequencyBandTDDList_r7
    rrc.tdd128SpecificInfo  tdd128SpecificInfo
        No value
    rrc.tdd128_Measurements  tdd128-Measurements
        Boolean
        BOOLEAN
    rrc.tdd128_PhysChCapability  tdd128-PhysChCapability
        No value
    rrc.tdd128_RF_Capability  tdd128-RF-Capability
        Unsigned 32-bit integer
        RadioFrequencyBandTDDList
    rrc.tdd128_UMTS_Frequency_List  tdd128-UMTS-Frequency-List
        Unsigned 32-bit integer
        TDD_UMTS_Frequency_List
    rrc.tdd128_edch  tdd128-edch
        Unsigned 32-bit integer
    rrc.tdd128_hspdsch  tdd128-hspdsch
        Unsigned 32-bit integer
    rrc.tdd348_tdd768  tdd348-tdd768
        No value
    rrc.tdd384  tdd384
        No value
    rrc.tdd384RF_Capability  tdd384RF-Capability
        Unsigned 32-bit integer
        RadioFrequencyBandTDDList_r7
    rrc.tdd384_768  tdd384-768
        No value
    rrc.tdd384_Measurements  tdd384-Measurements
        Boolean
        BOOLEAN
    rrc.tdd384_PhysChCapability  tdd384-PhysChCapability
        No value
    rrc.tdd384_RF_Capability  tdd384-RF-Capability
        Unsigned 32-bit integer
    rrc.tdd384_UMTS_Frequency_List  tdd384-UMTS-Frequency-List
        Unsigned 32-bit integer
        TDD_UMTS_Frequency_List
    rrc.tdd384_edch  tdd384-edch
        Unsigned 32-bit integer
    rrc.tdd384_hspdsch  tdd384-hspdsch
        Unsigned 32-bit integer
    rrc.tdd384_tdd768  tdd384-tdd768
        No value
    rrc.tdd768  tdd768
        No value
    rrc.tdd768RF_Capability  tdd768RF-Capability
        No value
    rrc.tdd768SpecificInfo  tdd768SpecificInfo
        No value
    rrc.tdd768_RF_Capability  tdd768-RF-Capability
        Unsigned 32-bit integer
    rrc.tdd768_hspdsch  tdd768-hspdsch
        Unsigned 32-bit integer
    rrc.tddOption  tddOption
        Unsigned 32-bit integer
    rrc.tddPhysChCapability  tddPhysChCapability
        No value
    rrc.tddPhysChCapability_128  tddPhysChCapability-128
        No value
    rrc.tddPhysChCapability_384  tddPhysChCapability-384
        No value
    rrc.tddPhysChCapability_768  tddPhysChCapability-768
        No value
    rrc.tddRF_Capability  tddRF-Capability
        No value
    rrc.tdd_CapabilityExt  tdd-CapabilityExt
        No value
    rrc.tdd_Measurements  tdd-Measurements
        Boolean
        BOOLEAN
    rrc.tdd_UMTS_Frequency_List  tdd-UMTS-Frequency-List
        Unsigned 32-bit integer
    rrc.tdd_edch_PhysicalLayerCategory  tdd-edch-PhysicalLayerCategory
        Unsigned 32-bit integer
        INTEGER_1_6
    rrc.technologySpecificInfo  technologySpecificInfo
        Unsigned 32-bit integer
    rrc.temporaryOffset1  temporaryOffset1
        Unsigned 32-bit integer
    rrc.temporaryOffset2  temporaryOffset2
        Unsigned 32-bit integer
    rrc.teop  teop
        Byte array
        BIT_STRING_SIZE_16
    rrc.tfc_ControlDuration  tfc-ControlDuration
        Unsigned 32-bit integer
    rrc.tfc_Subset  tfc-Subset
        Unsigned 32-bit integer
    rrc.tfc_SubsetList  tfc-SubsetList
        Unsigned 32-bit integer
    rrc.tfci  tfci
        Unsigned 32-bit integer
        INTEGER_0_1023
    rrc.tfci_Coding  tfci-Coding
        Unsigned 32-bit integer
    rrc.tfci_Existence  tfci-Existence
        Boolean
        BOOLEAN
    rrc.tfci_Field1_Information  tfci-Field1-Information
        Unsigned 32-bit integer
        ExplicitTFCS_Configuration
    rrc.tfci_Field2  tfci-Field2
        Unsigned 32-bit integer
        MaxTFCI_Field2Value
    rrc.tfci_Field2_Information  tfci-Field2-Information
        Unsigned 32-bit integer
    rrc.tfci_Field2_Length  tfci-Field2-Length
        Unsigned 32-bit integer
        INTEGER_1_10
    rrc.tfci_Range  tfci-Range
        Unsigned 32-bit integer
        TFCI_RangeList
    rrc.tfcs  tfcs
        Unsigned 32-bit integer
    rrc.tfcsAdd  tfcsAdd
        No value
        TFCS_ReconfAdd
    rrc.tfcsRemoval  tfcsRemoval
        Unsigned 32-bit integer
        TFCS_RemovalList
    rrc.tfcs_ID  tfcs-ID
        No value
        TFCS_Identity
    rrc.tfcs_Identity  tfcs-Identity
        No value
    rrc.tfcs_InfoForDSCH  tfcs-InfoForDSCH
        Unsigned 32-bit integer
    rrc.tfcs_SignallingMode  tfcs-SignallingMode
        Unsigned 32-bit integer
    rrc.tfs_SignallingMode  tfs-SignallingMode
        Unsigned 32-bit integer
    rrc.tgcfn  tgcfn
        Unsigned 32-bit integer
    rrc.tgd  tgd
        Unsigned 32-bit integer
    rrc.tgl1  tgl1
        Unsigned 32-bit integer
        TGL
    rrc.tgl2  tgl2
        Unsigned 32-bit integer
        TGL
    rrc.tgmp  tgmp
        Unsigned 32-bit integer
    rrc.tgp_SequenceList  tgp-SequenceList
        Unsigned 32-bit integer
    rrc.tgp_SequenceShortList  tgp-SequenceShortList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxTGPS_OF_TGP_SequenceShort
    rrc.tgpl1  tgpl1
        Unsigned 32-bit integer
        TGPL
    rrc.tgprc  tgprc
        Unsigned 32-bit integer
    rrc.tgps_ConfigurationParams  tgps-ConfigurationParams
        No value
    rrc.tgps_Reconfiguration_CFN  tgps-Reconfiguration-CFN
        Unsigned 32-bit integer
    rrc.tgps_Status  tgps-Status
        Unsigned 32-bit integer
    rrc.tgpsi  tgpsi
        Unsigned 32-bit integer
    rrc.tgsn  tgsn
        Unsigned 32-bit integer
    rrc.threeIndexStepThreshold  threeIndexStepThreshold
        Unsigned 32-bit integer
        INTEGER_0_37
    rrc.threholdNonUsedFrequency_deltaList  threholdNonUsedFrequency-deltaList
        Unsigned 32-bit integer
    rrc.threholdUsedFrequency_delta  threholdUsedFrequency-delta
        Signed 32-bit integer
        DeltaRSCP
    rrc.threshServingLow  threshServingLow
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.threshServingLow2  threshServingLow2
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.threshXhigh  threshXhigh
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.threshXhigh2  threshXhigh2
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.threshXlow  threshXlow
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.threshXlow2  threshXlow2
        Unsigned 32-bit integer
        INTEGER_0_31
    rrc.thresholdOtherSystem  thresholdOtherSystem
        Signed 32-bit integer
        Threshold
    rrc.thresholdOwnSystem  thresholdOwnSystem
        Signed 32-bit integer
        Threshold
    rrc.thresholdSFN_GPS_TOW_us  thresholdSFN-GPS-TOW-us
        Unsigned 32-bit integer
    rrc.thresholdUsedFrequency  thresholdUsedFrequency
        Signed 32-bit integer
    rrc.timeDurationBeforeRetry  timeDurationBeforeRetry
        Unsigned 32-bit integer
    rrc.timeForDRXCycle2  timeForDRXCycle2
        Unsigned 32-bit integer
        T_319
    rrc.timeInfo  timeInfo
        No value
    rrc.timeSlot  timeSlot
        Unsigned 32-bit integer
        INTEGER_1_5
    rrc.timeSlotList  timeSlotList
        Unsigned 32-bit integer
        MBSFN_TDDInformation
    rrc.timeSlotNumber  timeSlotNumber
        Unsigned 32-bit integer
    rrc.timeToTrigger  timeToTrigger
        Unsigned 32-bit integer
    rrc.timerBasedExplicit  timerBasedExplicit
        No value
        ExplicitDiscard
    rrc.timerBasedNoExplicit  timerBasedNoExplicit
        Unsigned 32-bit integer
        NoExplicitDiscard
    rrc.timerDiscard  timerDiscard
        Unsigned 32-bit integer
    rrc.timerMRW  timerMRW
        Unsigned 32-bit integer
    rrc.timerPoll  timerPoll
        Unsigned 32-bit integer
    rrc.timerPollPeriodic  timerPollPeriodic
        Unsigned 32-bit integer
    rrc.timerPollProhibit  timerPollProhibit
        Unsigned 32-bit integer
    rrc.timerRST  timerRST
        Unsigned 32-bit integer
    rrc.timerStatusPeriodic  timerStatusPeriodic
        Unsigned 32-bit integer
    rrc.timerStatusProhibit  timerStatusProhibit
        Unsigned 32-bit integer
    rrc.timer_DAR  timer-DAR
        Unsigned 32-bit integer
        TimerDAR_r6
    rrc.timer_OSD  timer-OSD
        Unsigned 32-bit integer
        TimerOSD_r6
    rrc.timeslot  timeslot
        Unsigned 32-bit integer
        TimeslotNumber
    rrc.timeslotBitmap  timeslotBitmap
        Byte array
        BIT_STRING_SIZE_7
    rrc.timeslotISCP  timeslotISCP
        Unsigned 32-bit integer
        TimeslotISCP_List
    rrc.timeslotISCP_List  timeslotISCP-List
        Unsigned 32-bit integer
    rrc.timeslotISCP_reportingIndicator  timeslotISCP-reportingIndicator
        Boolean
        BOOLEAN
    rrc.timeslotInfo  timeslotInfo
        Byte array
        BIT_STRING_SIZE_5
    rrc.timeslotInfoList  timeslotInfoList
        Unsigned 32-bit integer
    rrc.timeslotList  timeslotList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxTS_1_OF_DownlinkAdditionalTimeslots
    rrc.timeslotListWithISCP  timeslotListWithISCP
        Unsigned 32-bit integer
    rrc.timeslotNumber  timeslotNumber
        Unsigned 32-bit integer
    rrc.timeslotResourceRelatedInfo  timeslotResourceRelatedInfo
        Byte array
        BIT_STRING_SIZE_5
    rrc.timeslotSync2  timeslotSync2
        Unsigned 32-bit integer
    rrc.timing  timing
        Unsigned 32-bit integer
    rrc.timingAdvance  timingAdvance
        Unsigned 32-bit integer
        UL_TimingAdvanceControl
    rrc.timingMaintainedSynchInd  timingMaintainedSynchInd
        Unsigned 32-bit integer
    rrc.timingOfCellFrames  timingOfCellFrames
        Unsigned 32-bit integer
        INTEGER_0_3999999
    rrc.timingOffset  timingOffset
        Unsigned 32-bit integer
    rrc.timingmaintainedsynchind  timingmaintainedsynchind
        Unsigned 32-bit integer
    rrc.tlm_Message  tlm-Message
        Byte array
        BIT_STRING_SIZE_14
    rrc.tlm_Reserved  tlm-Reserved
        Byte array
        BIT_STRING_SIZE_2
    rrc.tm  tm
        Unsigned 32-bit integer
        INTEGER_0_38399
    rrc.tm_SignallingMode  tm-SignallingMode
        Unsigned 32-bit integer
    rrc.tmsi  tmsi
        Byte array
        TMSI_GSM_MAP
    rrc.tmsi_DS_41  tmsi-DS-41
        Byte array
    rrc.tmsi_GSM_MAP  tmsi-GSM-MAP
        Byte array
    rrc.tmsi_and_LAI  tmsi-and-LAI
        No value
        TMSI_and_LAI_GSM_MAP
    rrc.toHandoverRAB_Info  toHandoverRAB-Info
        No value
        RAB_Info
    rrc.toe_nav  toe-nav
        Byte array
        BIT_STRING_SIZE_14
    rrc.totalAM_RLCMemoryExceeds10kB  totalAM-RLCMemoryExceeds10kB
        Boolean
        BOOLEAN
    rrc.totalCRC  totalCRC
        Unsigned 32-bit integer
        INTEGER_1_512
    rrc.totalRLC_AM_BufferSize  totalRLC-AM-BufferSize
        Unsigned 32-bit integer
    rrc.tpcCommandTargetRate  tpcCommandTargetRate
        Unsigned 32-bit integer
        TPC_CommandTargetRate
    rrc.tpc_CombinationIndex  tpc-CombinationIndex
        Unsigned 32-bit integer
    rrc.tpc_CombinationInfoList  tpc-CombinationInfoList
        Unsigned 32-bit integer
    rrc.tpc_StepSize  tpc-StepSize
        Unsigned 32-bit integer
        TPC_StepSizeTDD
    rrc.tpc_StepSizeTDD  tpc-StepSizeTDD
        Unsigned 32-bit integer
    rrc.tpc_Step_Size  tpc-Step-Size
        Unsigned 32-bit integer
    rrc.tpc_step_size  tpc-step-size
        Unsigned 32-bit integer
    rrc.trackingAreaCode  trackingAreaCode
        Byte array
        BIT_STRING_SIZE_16
    rrc.trafficVolume  trafficVolume
        Unsigned 32-bit integer
        TrafficVolumeMeasuredResultsList
    rrc.trafficVolumeEventIdentity  trafficVolumeEventIdentity
        Unsigned 32-bit integer
        TrafficVolumeEventType
    rrc.trafficVolumeEventResults  trafficVolumeEventResults
        No value
    rrc.trafficVolumeIndicator  trafficVolumeIndicator
        Unsigned 32-bit integer
    rrc.trafficVolumeMeasQuantity  trafficVolumeMeasQuantity
        Unsigned 32-bit integer
    rrc.trafficVolumeMeasSysInfo  trafficVolumeMeasSysInfo
        No value
    rrc.trafficVolumeMeasuredResultsList  trafficVolumeMeasuredResultsList
        Unsigned 32-bit integer
    rrc.trafficVolumeMeasurement  trafficVolumeMeasurement
        No value
    rrc.trafficVolumeMeasurementID  trafficVolumeMeasurementID
        Unsigned 32-bit integer
        MeasurementIdentity
    rrc.trafficVolumeMeasurementObjectList  trafficVolumeMeasurementObjectList
        Unsigned 32-bit integer
    rrc.trafficVolumeReportRequest  trafficVolumeReportRequest
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.trafficVolumeReportingCriteria  trafficVolumeReportingCriteria
        No value
    rrc.trafficVolumeReportingQuantity  trafficVolumeReportingQuantity
        No value
    rrc.transChCriteriaList  transChCriteriaList
        Unsigned 32-bit integer
    rrc.transmissionGrantType  transmissionGrantType
        Unsigned 32-bit integer
    rrc.transmissionProbability  transmissionProbability
        Unsigned 32-bit integer
    rrc.transmissionRLC_Discard  transmissionRLC-Discard
        Unsigned 32-bit integer
    rrc.transmissionTOW  transmissionTOW
        Unsigned 32-bit integer
        GPS_TOW_1sec
    rrc.transmissionTimeInterval  transmissionTimeInterval
        Unsigned 32-bit integer
    rrc.transmissionTimeValidity  transmissionTimeValidity
        Unsigned 32-bit integer
    rrc.transmissionWindowSize  transmissionWindowSize
        Unsigned 32-bit integer
    rrc.transmittedPowerThreshold  transmittedPowerThreshold
        Signed 32-bit integer
    rrc.transpCHInformation  transpCHInformation
        Unsigned 32-bit integer
        MBMS_TrCHInformation_CurrList
    rrc.transpCh_CombiningStatus  transpCh-CombiningStatus
        Boolean
        BOOLEAN
    rrc.transpCh_Identity  transpCh-Identity
        Unsigned 32-bit integer
        INTEGER_1_maxFACHPCH
    rrc.transpCh_Info  transpCh-Info
        Unsigned 32-bit integer
        MBMS_CommonTrChIdentity
    rrc.transpCh_InfoCommonForAllTrCh  transpCh-InfoCommonForAllTrCh
        Unsigned 32-bit integer
        MBMS_CommonCCTrChIdentity
    rrc.transportBlockSizeList  transportBlockSizeList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_2_OF_TransportBlockSizeIndex
    rrc.transportChannelCapability  transportChannelCapability
        No value
    rrc.transportChannelIdentity  transportChannelIdentity
        Unsigned 32-bit integer
    rrc.transportChannelReconfiguration  transportChannelReconfiguration
        Unsigned 32-bit integer
    rrc.transportChannelReconfigurationComplete  transportChannelReconfigurationComplete
        No value
    rrc.transportChannelReconfigurationComplete_r3_add_ext  transportChannelReconfigurationComplete-r3-add-ext
        Byte array
        BIT_STRING
    rrc.transportChannelReconfigurationComplete_v770ext  transportChannelReconfigurationComplete-v770ext
        No value
        TransportChannelReconfigurationComplete_v770ext_IEs
    rrc.transportChannelReconfigurationFailure  transportChannelReconfigurationFailure
        No value
    rrc.transportChannelReconfigurationFailure_r3_add_ext  transportChannelReconfigurationFailure-r3-add-ext
        Byte array
        BIT_STRING
    rrc.transportChannelReconfiguration_r3  transportChannelReconfiguration-r3
        No value
        TransportChannelReconfiguration_r3_IEs
    rrc.transportChannelReconfiguration_r3_add_ext  transportChannelReconfiguration-r3-add-ext
        Byte array
        BIT_STRING
    rrc.transportChannelReconfiguration_r4  transportChannelReconfiguration-r4
        No value
        TransportChannelReconfiguration_r4_IEs
    rrc.transportChannelReconfiguration_r4_add_ext  transportChannelReconfiguration-r4-add-ext
        Byte array
        BIT_STRING
    rrc.transportChannelReconfiguration_r5  transportChannelReconfiguration-r5
        No value
        TransportChannelReconfiguration_r5_IEs
    rrc.transportChannelReconfiguration_r5_add_ext  transportChannelReconfiguration-r5-add-ext
        Byte array
        BIT_STRING
    rrc.transportChannelReconfiguration_r6  transportChannelReconfiguration-r6
        No value
        TransportChannelReconfiguration_r6_IEs
    rrc.transportChannelReconfiguration_r6_add_ext  transportChannelReconfiguration-r6-add-ext
        Byte array
        BIT_STRING
    rrc.transportChannelReconfiguration_r7  transportChannelReconfiguration-r7
        No value
        TransportChannelReconfiguration_r7_IEs
    rrc.transportChannelReconfiguration_r7_add_ext  transportChannelReconfiguration-r7-add-ext
        Byte array
        BIT_STRING
    rrc.transportChannelReconfiguration_r8  transportChannelReconfiguration-r8
        No value
        TransportChannelReconfiguration_r8_IEs
    rrc.transportChannelReconfiguration_r8_add_ext  transportChannelReconfiguration-r8-add-ext
        Byte array
        BIT_STRING
    rrc.transportChannelReconfiguration_r9  transportChannelReconfiguration-r9
        No value
        TransportChannelReconfiguration_r9_IEs
    rrc.transportChannelReconfiguration_r9_add_ext  transportChannelReconfiguration-r9-add-ext
        Byte array
        BIT_STRING
    rrc.transportChannelReconfiguration_v3a0ext  transportChannelReconfiguration-v3a0ext
        No value
    rrc.transportChannelReconfiguration_v4b0ext  transportChannelReconfiguration-v4b0ext
        No value
        TransportChannelReconfiguration_v4b0ext_IEs
    rrc.transportChannelReconfiguration_v590ext  transportChannelReconfiguration-v590ext
        No value
        TransportChannelReconfiguration_v590ext_IEs
    rrc.transportChannelReconfiguration_v690ext  transportChannelReconfiguration-v690ext
        No value
        TransportChannelReconfiguration_v690ext_IEs
    rrc.transportChannelReconfiguration_v6b0ext  transportChannelReconfiguration-v6b0ext
        No value
        TransportChannelReconfiguration_v6b0ext_IEs
    rrc.transportChannelReconfiguration_v770ext  transportChannelReconfiguration-v770ext
        No value
        TransportChannelReconfiguration_v770ext_IEs
    rrc.transportChannelReconfiguration_v780ext  transportChannelReconfiguration-v780ext
        No value
        TransportChannelReconfiguration_v780ext_IEs
    rrc.transportChannelReconfiguration_v7d0ext  transportChannelReconfiguration-v7d0ext
        No value
        TransportChannelReconfiguration_v7d0ext_IEs
    rrc.transportChannelReconfiguration_v7f0ext  transportChannelReconfiguration-v7f0ext
        No value
        TransportChannelReconfiguration_v7f0ext_IEs
    rrc.transportChannelReconfiguration_v7g0ext  transportChannelReconfiguration-v7g0ext
        No value
        TransportChannelReconfiguration_v7g0ext_IEs
    rrc.transportChannelReconfiguration_v890ext  transportChannelReconfiguration-v890ext
        No value
        TransportChannelReconfiguration_v890ext_IEs
    rrc.transportChannelReconfiguration_v8a0ext  transportChannelReconfiguration-v8a0ext
        No value
        TransportChannelReconfiguration_v8a0ext_IEs
    rrc.transportFormatCombinationControl  transportFormatCombinationControl
        No value
    rrc.transportFormatCombinationControlFailure  transportFormatCombinationControlFailure
        No value
    rrc.transportFormatCombinationControlFailure_r3_add_ext  transportFormatCombinationControlFailure-r3-add-ext
        Byte array
        BIT_STRING
    rrc.transportFormatCombinationControl_r3_add_ext  transportFormatCombinationControl-r3-add-ext
        Byte array
        BIT_STRING
    rrc.transportFormatCombinationSet  transportFormatCombinationSet
        Unsigned 32-bit integer
        TFCS
    rrc.transportFormatSet  transportFormatSet
        Unsigned 32-bit integer
    rrc.transportformatcombinationcontrol_v820ext  transportformatcombinationcontrol-v820ext
        No value
        TransportFormatCombinationControl_v820ext_IEs
    rrc.treconfirmAbort  treconfirmAbort
        Unsigned 32-bit integer
    rrc.triggeringCondition  triggeringCondition
        Unsigned 32-bit integer
        TriggeringCondition2
    rrc.ts_Number  ts-Number
        Unsigned 32-bit integer
        INTEGER_0_14
    rrc.tsn_Length  tsn-Length
        Unsigned 32-bit integer
    rrc.tstd_Indicator  tstd-Indicator
        Boolean
        BOOLEAN
    rrc.tti  tti
        Unsigned 32-bit integer
    rrc.tti10  tti10
        Unsigned 32-bit integer
        CommonDynamicTF_InfoList
    rrc.tti20  tti20
        Unsigned 32-bit integer
        CommonDynamicTF_InfoList
    rrc.tti40  tti40
        Unsigned 32-bit integer
        CommonDynamicTF_InfoList
    rrc.tti5  tti5
        Unsigned 32-bit integer
        CommonDynamicTF_InfoList
    rrc.tti80  tti80
        Unsigned 32-bit integer
        CommonDynamicTF_InfoList
    rrc.turbo  turbo
        No value
    rrc.turboDecodingSupport  turboDecodingSupport
        Unsigned 32-bit integer
        TurboSupport
    rrc.turboEncodingSupport  turboEncodingSupport
        Unsigned 32-bit integer
        TurboSupport
    rrc.tutran_ganss_driftRate  tutran-ganss-driftRate
        Unsigned 32-bit integer
    rrc.twoIndexStepThreshold  twoIndexStepThreshold
        Unsigned 32-bit integer
        INTEGER_0_37
    rrc.twoLogicalChannels  twoLogicalChannels
        No value
        UL_LogicalChannelMappingList
    rrc.txRxFrequencySeparation  txRxFrequencySeparation
        Unsigned 32-bit integer
    rrc.tx_DiversityIndicator  tx-DiversityIndicator
        Boolean
        BOOLEAN
    rrc.tx_DiversityMode  tx-DiversityMode
        Unsigned 32-bit integer
    rrc.tx_InterruptionAfterTrigger  tx-InterruptionAfterTrigger
        Unsigned 32-bit integer
    rrc.type1  type1
        Unsigned 32-bit integer
    rrc.type2  type2
        No value
    rrc.type3  type3
        No value
    rrc.uESpecificBehaviourInformation1idle  uESpecificBehaviourInformation1idle
        Byte array
    rrc.uESpecificBehaviourInformation1interRAT  uESpecificBehaviourInformation1interRAT
        Byte array
    rrc.uE_RX_TX_TimeDifferenceType2Info  uE-RX-TX-TimeDifferenceType2Info
        No value
    rrc.uE_SecurityInformation  uE-SecurityInformation
        Unsigned 32-bit integer
    rrc.uRNTI_Group  uRNTI-Group
        Unsigned 32-bit integer
        U_RNTI_Group
    rrc.uTRA  uTRA
        No value
    rrc.uTRACSGProximityDetec  uTRACSGProximityDetec
        Unsigned 32-bit integer
    rrc.u_RNTI  u-RNTI
        No value
    rrc.u_RNTI_BitMaskIndex_b1  u-RNTI-BitMaskIndex-b1
        Byte array
        BIT_STRING_SIZE_31
    rrc.u_RNTI_BitMaskIndex_b10  u-RNTI-BitMaskIndex-b10
        Byte array
        BIT_STRING_SIZE_22
    rrc.u_RNTI_BitMaskIndex_b11  u-RNTI-BitMaskIndex-b11
        Byte array
        BIT_STRING_SIZE_21
    rrc.u_RNTI_BitMaskIndex_b12  u-RNTI-BitMaskIndex-b12
        Byte array
        BIT_STRING_SIZE_20
    rrc.u_RNTI_BitMaskIndex_b13  u-RNTI-BitMaskIndex-b13
        Byte array
        BIT_STRING_SIZE_19
    rrc.u_RNTI_BitMaskIndex_b14  u-RNTI-BitMaskIndex-b14
        Byte array
        BIT_STRING_SIZE_18
    rrc.u_RNTI_BitMaskIndex_b15  u-RNTI-BitMaskIndex-b15
        Byte array
        BIT_STRING_SIZE_17
    rrc.u_RNTI_BitMaskIndex_b16  u-RNTI-BitMaskIndex-b16
        Byte array
        BIT_STRING_SIZE_16
    rrc.u_RNTI_BitMaskIndex_b17  u-RNTI-BitMaskIndex-b17
        Byte array
        BIT_STRING_SIZE_15
    rrc.u_RNTI_BitMaskIndex_b18  u-RNTI-BitMaskIndex-b18
        Byte array
        BIT_STRING_SIZE_14
    rrc.u_RNTI_BitMaskIndex_b19  u-RNTI-BitMaskIndex-b19
        Byte array
        BIT_STRING_SIZE_13
    rrc.u_RNTI_BitMaskIndex_b2  u-RNTI-BitMaskIndex-b2
        Byte array
        BIT_STRING_SIZE_30
    rrc.u_RNTI_BitMaskIndex_b20  u-RNTI-BitMaskIndex-b20
        Byte array
        BIT_STRING_SIZE_12
    rrc.u_RNTI_BitMaskIndex_b21  u-RNTI-BitMaskIndex-b21
        Byte array
        BIT_STRING_SIZE_11
    rrc.u_RNTI_BitMaskIndex_b22  u-RNTI-BitMaskIndex-b22
        Byte array
        BIT_STRING_SIZE_10
    rrc.u_RNTI_BitMaskIndex_b23  u-RNTI-BitMaskIndex-b23
        Byte array
        BIT_STRING_SIZE_9
    rrc.u_RNTI_BitMaskIndex_b24  u-RNTI-BitMaskIndex-b24
        Byte array
        BIT_STRING_SIZE_8
    rrc.u_RNTI_BitMaskIndex_b25  u-RNTI-BitMaskIndex-b25
        Byte array
        BIT_STRING_SIZE_7
    rrc.u_RNTI_BitMaskIndex_b26  u-RNTI-BitMaskIndex-b26
        Byte array
        BIT_STRING_SIZE_6
    rrc.u_RNTI_BitMaskIndex_b27  u-RNTI-BitMaskIndex-b27
        Byte array
        BIT_STRING_SIZE_5
    rrc.u_RNTI_BitMaskIndex_b28  u-RNTI-BitMaskIndex-b28
        Byte array
        BIT_STRING_SIZE_4
    rrc.u_RNTI_BitMaskIndex_b29  u-RNTI-BitMaskIndex-b29
        Byte array
        BIT_STRING_SIZE_3
    rrc.u_RNTI_BitMaskIndex_b3  u-RNTI-BitMaskIndex-b3
        Byte array
        BIT_STRING_SIZE_29
    rrc.u_RNTI_BitMaskIndex_b30  u-RNTI-BitMaskIndex-b30
        Byte array
        BIT_STRING_SIZE_2
    rrc.u_RNTI_BitMaskIndex_b31  u-RNTI-BitMaskIndex-b31
        Byte array
        BIT_STRING_SIZE_1
    rrc.u_RNTI_BitMaskIndex_b4  u-RNTI-BitMaskIndex-b4
        Byte array
        BIT_STRING_SIZE_28
    rrc.u_RNTI_BitMaskIndex_b5  u-RNTI-BitMaskIndex-b5
        Byte array
        BIT_STRING_SIZE_27
    rrc.u_RNTI_BitMaskIndex_b6  u-RNTI-BitMaskIndex-b6
        Byte array
        BIT_STRING_SIZE_26
    rrc.u_RNTI_BitMaskIndex_b7  u-RNTI-BitMaskIndex-b7
        Byte array
        BIT_STRING_SIZE_25
    rrc.u_RNTI_BitMaskIndex_b8  u-RNTI-BitMaskIndex-b8
        Byte array
        BIT_STRING_SIZE_24
    rrc.u_RNTI_BitMaskIndex_b9  u-RNTI-BitMaskIndex-b9
        Byte array
        BIT_STRING_SIZE_23
    rrc.uarfcn  uarfcn
        Unsigned 32-bit integer
    rrc.uarfcn_Carrier  uarfcn-Carrier
        Unsigned 32-bit integer
        UARFCN
    rrc.uarfcn_DL  uarfcn-DL
        Unsigned 32-bit integer
        UARFCN
    rrc.uarfcn_HS_SCCH_Rx  uarfcn-HS-SCCH-Rx
        Unsigned 32-bit integer
        UARFCN
    rrc.uarfcn_Nt  uarfcn-Nt
        Unsigned 32-bit integer
        UARFCN
    rrc.uarfcn_UL  uarfcn-UL
        Unsigned 32-bit integer
        UARFCN
    rrc.ucsm_Info  ucsm-Info
        No value
    rrc.udre  udre
        Unsigned 32-bit integer
    rrc.udreGrowthRate  udreGrowthRate
        Unsigned 32-bit integer
    rrc.udreValidityTime  udreValidityTime
        Unsigned 32-bit integer
    rrc.ueAssisted  ueAssisted
        No value
    rrc.ueBased  ueBased
        No value
    rrc.ueCapabilityContainer  ueCapabilityContainer
        Byte array
    rrc.ueCapabilityContainer_RSC  ueCapabilityContainer-RSC
        Byte array
    rrc.ueCapabilityContainer_UCI  ueCapabilityContainer-UCI
        Byte array
    rrc.ueCapabilityEnquiry  ueCapabilityEnquiry
        Unsigned 32-bit integer
    rrc.ueCapabilityEnquiry_r3  ueCapabilityEnquiry-r3
        No value
        UECapabilityEnquiry_r3_IEs
    rrc.ueCapabilityEnquiry_r3_add_ext  ueCapabilityEnquiry-r3-add-ext
        Byte array
        BIT_STRING
    rrc.ueCapabilityEnquiry_v4b0ext  ueCapabilityEnquiry-v4b0ext
        No value
        UECapabilityEnquiry_v4b0ext_IEs
    rrc.ueCapabilityEnquiry_v590ext  ueCapabilityEnquiry-v590ext
        No value
        UECapabilityEnquiry_v590ext_IEs
    rrc.ueCapabilityEnquiry_v770ext  ueCapabilityEnquiry-v770ext
        No value
        UECapabilityEnquiry_v770ext_IEs
    rrc.ueCapabilityEnquiry_v860ext  ueCapabilityEnquiry-v860ext
        No value
        UECapabilityEnquiry_v860ext_IEs
    rrc.ueCapabilityIndication  ueCapabilityIndication
        Unsigned 32-bit integer
    rrc.ueCapabilityInformation  ueCapabilityInformation
        No value
    rrc.ueCapabilityInformationConfirm  ueCapabilityInformationConfirm
        Unsigned 32-bit integer
    rrc.ueCapabilityInformationConfirm_r3  ueCapabilityInformationConfirm-r3
        No value
        UECapabilityInformationConfirm_r3_IEs
    rrc.ueCapabilityInformationConfirm_r3_add_ext  ueCapabilityInformationConfirm-r3-add-ext
        Byte array
        BIT_STRING
    rrc.ueCapabilityInformationConfirm_v770ext  ueCapabilityInformationConfirm-v770ext
        No value
        UECapabilityInformationConfirm_v770ext_IEs
    rrc.ueCapabilityInformation_r3_add_ext  ueCapabilityInformation-r3-add-ext
        Byte array
    rrc.ueCapabilityInformation_v370ext  ueCapabilityInformation-v370ext
        No value
    rrc.ueCapabilityInformation_v380ext  ueCapabilityInformation-v380ext
        No value
        UECapabilityInformation_v380ext_IEs
    rrc.ueCapabilityInformation_v3a0ext  ueCapabilityInformation-v3a0ext
        No value
        UECapabilityInformation_v3a0ext_IEs
    rrc.ueCapabilityInformation_v4b0ext  ueCapabilityInformation-v4b0ext
        No value
    rrc.ueCapabilityInformation_v590ext  ueCapabilityInformation-v590ext
        No value
    rrc.ueCapabilityInformation_v5c0ext  ueCapabilityInformation-v5c0ext
        No value
    rrc.ueCapabilityInformation_v650ext  ueCapabilityInformation-v650ext
        No value
        UECapabilityInformation_v650ext_IEs
    rrc.ueCapabilityInformation_v680ext  ueCapabilityInformation-v680ext
        No value
        UECapabilityInformation_v680ext_IEs
    rrc.ueCapabilityInformation_v690ext  ueCapabilityInformation-v690ext
        No value
        UECapabilityInformation_v690ext_IEs
    rrc.ueCapabilityInformation_v7e0ext  ueCapabilityInformation-v7e0ext
        No value
        UECapabilityInformation_v7e0ext_IEs
    rrc.ueCapabilityInformation_v7f0ext  ueCapabilityInformation-v7f0ext
        No value
        UECapabilityInformation_v7f0ext_IEs
    rrc.ueInternalMeasuredResults  ueInternalMeasuredResults
        No value
        UE_InternalMeasuredResults_v770ext
    rrc.ueMobilityStateIndicator  ueMobilityStateIndicator
        Unsigned 32-bit integer
        High_MobilityDetected
    rrc.uePositiningGANSSsbasID  uePositiningGANSSsbasID
        Unsigned 32-bit integer
        UE_Positioning_GANSS_SBAS_ID
    rrc.uePositioningDGANSSCorrections  uePositioningDGANSSCorrections
        No value
        UE_Positioning_DGANSSCorrections
    rrc.uePositioningGANSSAddNavigationModels  uePositioningGANSSAddNavigationModels
        No value
        UE_Positioning_GANSS_AddNavigationModels
    rrc.uePositioningGANSSAddUTCModels  uePositioningGANSSAddUTCModels
        No value
        UE_Positioning_GANSS_AddUTCModels
    rrc.uePositioningGANSSAlmanac  uePositioningGANSSAlmanac
        No value
        UE_Positioning_GANSS_Almanac
    rrc.uePositioningGANSSAuxiliaryInfo  uePositioningGANSSAuxiliaryInfo
        Unsigned 32-bit integer
        UE_Positioning_GANSS_AuxiliaryInfo
    rrc.uePositioningGANSSDataBitAssistance  uePositioningGANSSDataBitAssistance
        No value
        UE_Positioning_GANSS_Data_Bit_Assistance
    rrc.uePositioningGANSSNavigationModel  uePositioningGANSSNavigationModel
        No value
        UE_Positioning_GANSS_NavigationModel
    rrc.uePositioningGANSSRealTimeIntegrity  uePositioningGANSSRealTimeIntegrity
        Unsigned 32-bit integer
        UE_Positioning_GANSS_RealTimeIntegrity
    rrc.uePositioningGANSSReferenceMeasurementInfo  uePositioningGANSSReferenceMeasurementInfo
        No value
        UE_Positioning_GANSS_ReferenceMeasurementInfo
    rrc.uePositioningGANSSUTCModel  uePositioningGANSSUTCModel
        No value
        UE_Positioning_GANSS_UTCModel
    rrc.uePositioningGanssAddIonoModel  uePositioningGanssAddIonoModel
        No value
        UE_Positioning_GANSS_AddIonoModel
    rrc.uePositioningGanssEarthOrientationPara  uePositioningGanssEarthOrientationPara
        No value
        UE_Positioning_GANSS_EarthOrientPara
    rrc.uePositioningGanssIonosphericModel  uePositioningGanssIonosphericModel
        No value
        UE_Positioning_GANSS_IonosphericModel
    rrc.uePositioningGanssReferencePosition  uePositioningGanssReferencePosition
        No value
        ReferenceLocationGANSS
    rrc.ueSpecificMidamble  ueSpecificMidamble
        Unsigned 32-bit integer
        INTEGER_0_15
    rrc.ue_BasedOTDOA_Supported  ue-BasedOTDOA-Supported
        Boolean
        BOOLEAN
    rrc.ue_CapabilityContainer  ue-CapabilityContainer
        Unsigned 32-bit integer
    rrc.ue_ConnTimersAndConstants  ue-ConnTimersAndConstants
        No value
    rrc.ue_ConnTimersAndConstants_v3a0ext  ue-ConnTimersAndConstants-v3a0ext
        No value
    rrc.ue_EUTRA_Capability  ue-EUTRA-Capability
        Byte array
        OCTET_STRING
    rrc.ue_GANSSPositioning_Capability  ue-GANSSPositioning-Capability
        No value
    rrc.ue_GANSSPositioning_Capability_v860ext  ue-GANSSPositioning-Capability-v860ext
        No value
        UE_GANSSPositioning_Capability_v860ext_IEs
    rrc.ue_GANSSTimingOfCellFrames  ue-GANSSTimingOfCellFrames
        No value
    rrc.ue_GPSTimingOfCell  ue-GPSTimingOfCell
        No value
    rrc.ue_GrantMonitoring_InactivityThreshold  ue-GrantMonitoring-InactivityThreshold
        Unsigned 32-bit integer
    rrc.ue_HistoryInformation  ue-HistoryInformation
        No value
    rrc.ue_IdleTimersAndConstants  ue-IdleTimersAndConstants
        No value
    rrc.ue_IdleTimersAndConstants_v3a0ext  ue-IdleTimersAndConstants-v3a0ext
        No value
    rrc.ue_InactivityPeriod  ue-InactivityPeriod
        Unsigned 32-bit integer
        INTEGER_1_120
    rrc.ue_Inactivity_Period  ue-Inactivity-Period
        Unsigned 32-bit integer
        INTEGER_1_120
    rrc.ue_InternalEventParamList  ue-InternalEventParamList
        Unsigned 32-bit integer
    rrc.ue_InternalEventResults  ue-InternalEventResults
        Unsigned 32-bit integer
    rrc.ue_InternalMeasQuantity  ue-InternalMeasQuantity
        No value
    rrc.ue_InternalMeasuredResults  ue-InternalMeasuredResults
        No value
    rrc.ue_InternalMeasurement  ue-InternalMeasurement
        No value
    rrc.ue_InternalMeasurementID  ue-InternalMeasurementID
        Unsigned 32-bit integer
        MeasurementIdentity
    rrc.ue_InternalReportingCriteria  ue-InternalReportingCriteria
        No value
    rrc.ue_InternalReportingQuantity  ue-InternalReportingQuantity
        No value
    rrc.ue_MultiModeRAT_Capability  ue-MultiModeRAT-Capability
        No value
    rrc.ue_PositioningCapability  ue-PositioningCapability
        No value
        UE_PositioningCapability_v770ext
    rrc.ue_PositioningCapabilityExt_v380  ue-PositioningCapabilityExt-v380
        No value
    rrc.ue_PositioningCapabilityExt_v3a0  ue-PositioningCapabilityExt-v3a0
        No value
    rrc.ue_PositioningCapabilityExt_v3g0  ue-PositioningCapabilityExt-v3g0
        No value
    rrc.ue_Positioning_GANSS_AddIonoModel  ue-Positioning-GANSS-AddIonoModel
        No value
    rrc.ue_Positioning_GANSS_AddUTCModels  ue-Positioning-GANSS-AddUTCModels
        No value
    rrc.ue_Positioning_GANSS_Almanac  ue-Positioning-GANSS-Almanac
        No value
        UE_Positioning_GANSS_Almanac_v860ext
    rrc.ue_Positioning_GANSS_AuxiliaryInfo  ue-Positioning-GANSS-AuxiliaryInfo
        Unsigned 32-bit integer
    rrc.ue_Positioning_GANSS_EarthOrientationPara  ue-Positioning-GANSS-EarthOrientationPara
        No value
        UE_Positioning_GANSS_EarthOrientPara
    rrc.ue_Positioning_GPS_AssistanceData  ue-Positioning-GPS-AssistanceData
        No value
        UE_Positioning_GPS_AssistanceData_v770ext
    rrc.ue_Positioning_GPS_ReferenceTime  ue-Positioning-GPS-ReferenceTime
        No value
        UE_Positioning_GPS_ReferenceTime_v770ext
    rrc.ue_Positioning_GPS_ReferenceTimeUncertainty  ue-Positioning-GPS-ReferenceTimeUncertainty
        Unsigned 32-bit integer
    rrc.ue_Positioning_IPDL_Parameters_TDDList_r4_ext  ue-Positioning-IPDL-Parameters-TDDList-r4-ext
        Unsigned 32-bit integer
    rrc.ue_Positioning_IPDL_Parameters_TDD_r4_ext  ue-Positioning-IPDL-Parameters-TDD-r4-ext
        No value
    rrc.ue_Positioning_LastKnownPos  ue-Positioning-LastKnownPos
        No value
    rrc.ue_Positioning_Measurement_v390ext  ue-Positioning-Measurement-v390ext
        No value
    rrc.ue_Positioning_OTDOA_AssistanceData_UEB_ext  ue-Positioning-OTDOA-AssistanceData-UEB-ext
        No value
    rrc.ue_Positioning_OTDOA_AssistanceData_r4ext  ue-Positioning-OTDOA-AssistanceData-r4ext
        No value
    rrc.ue_Positioning_OTDOA_MeasuredResults  ue-Positioning-OTDOA-MeasuredResults
        No value
        UE_Positioning_OTDOA_MeasuredResultsTDD_ext
    rrc.ue_Positioning_OTDOA_Measurement_v390ext  ue-Positioning-OTDOA-Measurement-v390ext
        No value
    rrc.ue_Positioning_OTDOA_Quality  ue-Positioning-OTDOA-Quality
        No value
    rrc.ue_PowerClass  ue-PowerClass
        Unsigned 32-bit integer
    rrc.ue_RATSpecificCapability  ue-RATSpecificCapability
        Unsigned 32-bit integer
        InterRAT_UE_RadioAccessCapabilityList
    rrc.ue_RATSpecificCapability_v590ext  ue-RATSpecificCapability-v590ext
        No value
        InterRAT_UE_RadioAccessCapability_v590ext
    rrc.ue_RATSpecificCapability_v690ext  ue-RATSpecificCapability-v690ext
        No value
        InterRAT_UE_RadioAccessCapability_v690ext
    rrc.ue_RATSpecificCapability_v860ext  ue-RATSpecificCapability-v860ext
        No value
        InterRAT_UE_RadioAccessCapability_v860ext
    rrc.ue_RX_TX_ReportEntryList  ue-RX-TX-ReportEntryList
        Unsigned 32-bit integer
    rrc.ue_RX_TX_TimeDifference  ue-RX-TX-TimeDifference
        Boolean
        BOOLEAN
    rrc.ue_RX_TX_TimeDifferenceThreshold  ue-RX-TX-TimeDifferenceThreshold
        Unsigned 32-bit integer
    rrc.ue_RX_TX_TimeDifferenceType1  ue-RX-TX-TimeDifferenceType1
        Unsigned 32-bit integer
    rrc.ue_RX_TX_TimeDifferenceType2  ue-RX-TX-TimeDifferenceType2
        Unsigned 32-bit integer
    rrc.ue_RX_TX_TimeDifferenceType2Info  ue-RX-TX-TimeDifferenceType2Info
        No value
    rrc.ue_RadioAccessCapabBandCombList  ue-RadioAccessCapabBandCombList
        Unsigned 32-bit integer
    rrc.ue_RadioAccessCapabBandFDDList  ue-RadioAccessCapabBandFDDList
        Unsigned 32-bit integer
    rrc.ue_RadioAccessCapabBandFDDList2  ue-RadioAccessCapabBandFDDList2
        Unsigned 32-bit integer
    rrc.ue_RadioAccessCapabBandFDDList3  ue-RadioAccessCapabBandFDDList3
        Unsigned 32-bit integer
    rrc.ue_RadioAccessCapabBandFDDList_ext  ue-RadioAccessCapabBandFDDList-ext
        Unsigned 32-bit integer
    rrc.ue_RadioAccessCapability  ue-RadioAccessCapability
        No value
        UE_RadioAccessCapability_v7e0ext
    rrc.ue_RadioAccessCapabilityComp  ue-RadioAccessCapabilityComp
        No value
    rrc.ue_RadioAccessCapabilityComp2  ue-RadioAccessCapabilityComp2
        No value
    rrc.ue_RadioAccessCapabilityComp_TDD128  ue-RadioAccessCapabilityComp-TDD128
        No value
        UE_RadioAccessCapabilityComp_TDD128_v7f0ext
    rrc.ue_RadioAccessCapabilityInfo  ue-RadioAccessCapabilityInfo
        No value
        UE_RadioAccessCapabilityInfo_v770ext
    rrc.ue_RadioAccessCapabilityInfo_TDD128  ue-RadioAccessCapabilityInfo-TDD128
        No value
        UE_RadioAccessCapabilityComp_TDD128
    rrc.ue_RadioAccessCapability_ext  ue-RadioAccessCapability-ext
        Unsigned 32-bit integer
        UE_RadioAccessCapabBandFDDList
    rrc.ue_RadioAccessCapability_v370ext  ue-RadioAccessCapability-v370ext
        No value
    rrc.ue_RadioAccessCapability_v380ext  ue-RadioAccessCapability-v380ext
        No value
    rrc.ue_RadioAccessCapability_v3a0ext  ue-RadioAccessCapability-v3a0ext
        No value
    rrc.ue_RadioAccessCapability_v3g0ext  ue-RadioAccessCapability-v3g0ext
        No value
    rrc.ue_RadioAccessCapability_v4b0ext  ue-RadioAccessCapability-v4b0ext
        No value
    rrc.ue_RadioAccessCapability_v590ext  ue-RadioAccessCapability-v590ext
        No value
    rrc.ue_RadioAccessCapability_v5c0ext  ue-RadioAccessCapability-v5c0ext
        No value
    rrc.ue_RadioAccessCapability_v650ext  ue-RadioAccessCapability-v650ext
        No value
    rrc.ue_RadioAccessCapability_v680ext  ue-RadioAccessCapability-v680ext
        No value
    rrc.ue_RadioAccessCapability_v690ext  ue-RadioAccessCapability-v690ext
        No value
    rrc.ue_RadioAccessCapability_v6b0ext  ue-RadioAccessCapability-v6b0ext
        No value
        UE_RadioAccessCapability_v6b0ext_IEs
    rrc.ue_RadioAccessCapability_v6e0ext  ue-RadioAccessCapability-v6e0ext
        No value
        UE_RadioAccessCapability_v6e0ext_IEs
    rrc.ue_RadioAccessCapability_v770ext  ue-RadioAccessCapability-v770ext
        No value
        UE_RadioAccessCapability_v770ext_IEs
    rrc.ue_RadioAccessCapability_v790ext  ue-RadioAccessCapability-v790ext
        No value
        UE_RadioAccessCapability_v790ext_IEs
    rrc.ue_RadioAccessCapability_v860ext  ue-RadioAccessCapability-v860ext
        No value
        UE_RadioAccessCapability_v860ext_IEs
    rrc.ue_RadioAccessCapability_v880ext  ue-RadioAccessCapability-v880ext
        No value
        UE_RadioAccessCapability_v880ext_IEs
    rrc.ue_RadioAccessCapability_v890ext  ue-RadioAccessCapability-v890ext
        No value
        UE_RadioAccessCapability_v890ext_IEs
    rrc.ue_RadioAccessCapability_v920ext  ue-RadioAccessCapability-v920ext
        No value
        UE_RadioAccessCapability_v920ext_IEs
    rrc.ue_RadioCapabilityFDDUpdateRequirement  ue-RadioCapabilityFDDUpdateRequirement
        Boolean
        BOOLEAN
    rrc.ue_RadioCapabilityFDDUpdateRequirement_FDD  ue-RadioCapabilityFDDUpdateRequirement-FDD
        Boolean
        BOOLEAN
    rrc.ue_RadioCapabilityTDDUpdateRequirement  ue-RadioCapabilityTDDUpdateRequirement
        Boolean
        BOOLEAN
    rrc.ue_RadioCapabilityTDDUpdateRequirement_TDD128  ue-RadioCapabilityTDDUpdateRequirement-TDD128
        Boolean
        BOOLEAN
    rrc.ue_RadioCapabilityTDDUpdateRequirement_TDD384  ue-RadioCapabilityTDDUpdateRequirement-TDD384
        Boolean
        BOOLEAN
    rrc.ue_RadioCapabilityTDDUpdateRequirement_TDD768  ue-RadioCapabilityTDDUpdateRequirement-TDD768
        Boolean
        BOOLEAN
    rrc.ue_RadioCapabilityUpdateRequirement_TDD128  ue-RadioCapabilityUpdateRequirement-TDD128
        Boolean
        BOOLEAN
    rrc.ue_SecurityInformation2  ue-SecurityInformation2
        No value
    rrc.ue_SpecificCapabilityInformation  ue-SpecificCapabilityInformation
        Unsigned 32-bit integer
        UE_SpecificCapabilityInformation_LCRTDD
    rrc.ue_State  ue-State
        Unsigned 32-bit integer
    rrc.ue_SystemSpecificSecurityCap  ue-SystemSpecificSecurityCap
        Unsigned 32-bit integer
        InterRAT_UE_SecurityCapList
    rrc.ue_TransmittedPower  ue-TransmittedPower
        Boolean
        BOOLEAN
    rrc.ue_TransmittedPowerFDD  ue-TransmittedPowerFDD
        Unsigned 32-bit integer
        UE_TransmittedPower
    rrc.ue_TransmittedPowerTDD_List  ue-TransmittedPowerTDD-List
        Unsigned 32-bit integer
    rrc.ue_dpcch_Burst1  ue-dpcch-Burst1
        Unsigned 32-bit integer
        UE_DPCCH_Burst
    rrc.ue_dpcch_Burst2  ue-dpcch-Burst2
        Unsigned 32-bit integer
        UE_DPCCH_Burst
    rrc.ue_drx_Cycle  ue-drx-Cycle
        Unsigned 32-bit integer
    rrc.ue_drx_Cycle_InactivityThreshold  ue-drx-Cycle-InactivityThreshold
        Unsigned 32-bit integer
    rrc.ue_drx_GrantMonitoring  ue-drx-GrantMonitoring
        Boolean
        BOOLEAN
    rrc.ue_dtx_Cycle1_10ms  ue-dtx-Cycle1-10ms
        Unsigned 32-bit integer
    rrc.ue_dtx_Cycle1_2ms  ue-dtx-Cycle1-2ms
        Unsigned 32-bit integer
    rrc.ue_dtx_Cycle2_10ms  ue-dtx-Cycle2-10ms
        Unsigned 32-bit integer
    rrc.ue_dtx_Cycle2_2ms  ue-dtx-Cycle2-2ms
        Unsigned 32-bit integer
    rrc.ue_dtx_cycle2DefaultSG  ue-dtx-cycle2DefaultSG
        Unsigned 32-bit integer
        INTEGER_0_38
    rrc.ue_dtx_cycle2InactivityThreshold  ue-dtx-cycle2InactivityThreshold
        Unsigned 32-bit integer
    rrc.ue_dtx_drx_Offset  ue-dtx-drx-Offset
        Unsigned 32-bit integer
    rrc.ue_dtx_long_preamble_length  ue-dtx-long-preamble-length
        Unsigned 32-bit integer
    rrc.ue_hspa_identities  ue-hspa-identities
        No value
        UE_HSPA_Identities_r6
    rrc.ue_positioniing_MeasuredResults  ue-positioniing-MeasuredResults
        No value
        UE_Positioning_MeasuredResults
    rrc.ue_positioning_Capability  ue-positioning-Capability
        No value
    rrc.ue_positioning_Error  ue-positioning-Error
        No value
    rrc.ue_positioning_GANSS_AddNavigationModels  ue-positioning-GANSS-AddNavigationModels
        No value
    rrc.ue_positioning_GANSS_Almanac  ue-positioning-GANSS-Almanac
        No value
    rrc.ue_positioning_GANSS_AssistanceData  ue-positioning-GANSS-AssistanceData
        No value
    rrc.ue_positioning_GANSS_AssistanceData_v860ext  ue-positioning-GANSS-AssistanceData-v860ext
        No value
    rrc.ue_positioning_GANSS_AssistanceData_v920ext  ue-positioning-GANSS-AssistanceData-v920ext
        No value
    rrc.ue_positioning_GANSS_DGANSS_Corrections  ue-positioning-GANSS-DGANSS-Corrections
        No value
        UE_Positioning_DGANSSCorrections
    rrc.ue_positioning_GANSS_DataBitAssistance  ue-positioning-GANSS-DataBitAssistance
        No value
        UE_Positioning_GANSS_Data_Bit_Assistance
    rrc.ue_positioning_GANSS_DataCipheringInfo  ue-positioning-GANSS-DataCipheringInfo
        No value
        UE_Positioning_CipherParameters
    rrc.ue_positioning_GANSS_IonosphericModel  ue-positioning-GANSS-IonosphericModel
        No value
    rrc.ue_positioning_GANSS_ReferenceMeasurementInformation  ue-positioning-GANSS-ReferenceMeasurementInformation
        No value
        UE_Positioning_GANSS_ReferenceMeasurementInfo
    rrc.ue_positioning_GANSS_ReferencePosition  ue-positioning-GANSS-ReferencePosition
        No value
        ReferenceLocationGANSS
    rrc.ue_positioning_GANSS_ReferenceTime  ue-positioning-GANSS-ReferenceTime
        No value
    rrc.ue_positioning_GANSS_TOD  ue-positioning-GANSS-TOD
        Unsigned 32-bit integer
        INTEGER_0_86399
    rrc.ue_positioning_GANSS_TimeModels  ue-positioning-GANSS-TimeModels
        Unsigned 32-bit integer
    rrc.ue_positioning_GANSS_UTC_Model  ue-positioning-GANSS-UTC-Model
        No value
        UE_Positioning_GANSS_UTCModel
    rrc.ue_positioning_GANSS_additionalAssistanceDataRequest  ue-positioning-GANSS-additionalAssistanceDataRequest
        No value
    rrc.ue_positioning_GANSS_navigationModel  ue-positioning-GANSS-navigationModel
        No value
    rrc.ue_positioning_GANSS_realTimeIntegrity  ue-positioning-GANSS-realTimeIntegrity
        Unsigned 32-bit integer
    rrc.ue_positioning_GPS_AcquisitionAssistance  ue-positioning-GPS-AcquisitionAssistance
        No value
    rrc.ue_positioning_GPS_Almanac  ue-positioning-GPS-Almanac
        No value
    rrc.ue_positioning_GPS_AssistanceData  ue-positioning-GPS-AssistanceData
        No value
    rrc.ue_positioning_GPS_AssistanceData_v920ext  ue-positioning-GPS-AssistanceData-v920ext
        No value
    rrc.ue_positioning_GPS_CipherParameters  ue-positioning-GPS-CipherParameters
        No value
        UE_Positioning_CipherParameters
    rrc.ue_positioning_GPS_DGPS_Corrections  ue-positioning-GPS-DGPS-Corrections
        No value
    rrc.ue_positioning_GPS_IonosphericModel  ue-positioning-GPS-IonosphericModel
        No value
    rrc.ue_positioning_GPS_Measurement  ue-positioning-GPS-Measurement
        No value
        UE_Positioning_GPS_MeasurementResults
    rrc.ue_positioning_GPS_NavigationModel  ue-positioning-GPS-NavigationModel
        No value
    rrc.ue_positioning_GPS_Real_timeIntegrity  ue-positioning-GPS-Real-timeIntegrity
        Unsigned 32-bit integer
        BadSatList
    rrc.ue_positioning_GPS_ReferenceLocation  ue-positioning-GPS-ReferenceLocation
        No value
        ReferenceLocation
    rrc.ue_positioning_GPS_ReferenceTime  ue-positioning-GPS-ReferenceTime
        No value
    rrc.ue_positioning_GPS_UTC_Model  ue-positioning-GPS-UTC-Model
        No value
    rrc.ue_positioning_GPS_additionalAssistanceDataRequest  ue-positioning-GPS-additionalAssistanceDataRequest
        No value
    rrc.ue_positioning_Ganss_MeasuredResults  ue-positioning-Ganss-MeasuredResults
        No value
    rrc.ue_positioning_Ganss_MeasurementResults  ue-positioning-Ganss-MeasurementResults
        No value
        UE_Positioning_GANSS_MeasuredResults_v860ext
    rrc.ue_positioning_IPDL_Paremeters  ue-positioning-IPDL-Paremeters
        No value
        UE_Positioning_IPDL_Parameters
    rrc.ue_positioning_MeasuredResults  ue-positioning-MeasuredResults
        No value
    rrc.ue_positioning_MeasuredResults_v390ext  ue-positioning-MeasuredResults-v390ext
        No value
    rrc.ue_positioning_Measurement  ue-positioning-Measurement
        No value
    rrc.ue_positioning_MeasurementEventResults  ue-positioning-MeasurementEventResults
        Unsigned 32-bit integer
    rrc.ue_positioning_OTDOA_AssistanceData  ue-positioning-OTDOA-AssistanceData
        No value
    rrc.ue_positioning_OTDOA_AssistanceData_UEB  ue-positioning-OTDOA-AssistanceData-UEB
        No value
    rrc.ue_positioning_OTDOA_CipherParameters  ue-positioning-OTDOA-CipherParameters
        No value
        UE_Positioning_CipherParameters
    rrc.ue_positioning_OTDOA_Measurement  ue-positioning-OTDOA-Measurement
        No value
    rrc.ue_positioning_OTDOA_NeighbourCellList  ue-positioning-OTDOA-NeighbourCellList
        Unsigned 32-bit integer
    rrc.ue_positioning_OTDOA_NeighbourCellList_UEB  ue-positioning-OTDOA-NeighbourCellList-UEB
        Unsigned 32-bit integer
    rrc.ue_positioning_OTDOA_NeighbourCellList_UEB_ext  ue-positioning-OTDOA-NeighbourCellList-UEB-ext
        Unsigned 32-bit integer
    rrc.ue_positioning_OTDOA_ReferenceCellInfo  ue-positioning-OTDOA-ReferenceCellInfo
        No value
    rrc.ue_positioning_OTDOA_ReferenceCellInfo_UEB  ue-positioning-OTDOA-ReferenceCellInfo-UEB
        No value
    rrc.ue_positioning_OTDOA_ReferenceCellInfo_UEB_ext  ue-positioning-OTDOA-ReferenceCellInfo-UEB-ext
        No value
    rrc.ue_positioning_PositionEstimateInfo  ue-positioning-PositionEstimateInfo
        No value
    rrc.ue_positioning_ReportingCriteria  ue-positioning-ReportingCriteria
        Unsigned 32-bit integer
        UE_Positioning_EventParamList
    rrc.ue_positioning_ReportingQuantity  ue-positioning-ReportingQuantity
        No value
    rrc.ue_positioning_ReportingQuantity_v390ext  ue-positioning-ReportingQuantity-v390ext
        No value
    rrc.ue_specificCapabilityInformation  ue-specificCapabilityInformation
        Unsigned 32-bit integer
        UE_SpecificCapabilityInformation_LCRTDD
    rrc.uea0  uea0
        Boolean
    rrc.uea1  uea1
        Boolean
    rrc.uea2  uea2
        Boolean
    rrc.uia1  uia1
        Boolean
    rrc.uia2  uia2
        Boolean
    rrc.ul  ul
        Unsigned 32-bit integer
        UL_CompressedModeMethod
    rrc.ul_16QAM_Config  ul-16QAM-Config
        No value
    rrc.ul_16QAM_Settings  ul-16QAM-Settings
        No value
    rrc.ul_AMR_Rate  ul-AMR-Rate
        Unsigned 32-bit integer
    rrc.ul_AM_RLC_Mode  ul-AM-RLC-Mode
        No value
    rrc.ul_AddReconfTrChInfoList  ul-AddReconfTrChInfoList
        Unsigned 32-bit integer
        UL_AddReconfTransChInfoList
    rrc.ul_AddReconfTransChInfoList  ul-AddReconfTransChInfoList
        Unsigned 32-bit integer
    rrc.ul_CCTrCHList  ul-CCTrCHList
        Unsigned 32-bit integer
    rrc.ul_CCTrCHListToRemove  ul-CCTrCHListToRemove
        Unsigned 32-bit integer
    rrc.ul_CCTrCH_TimeslotsCodes  ul-CCTrCH-TimeslotsCodes
        No value
        UplinkTimeslotsCodes
    rrc.ul_CCTrChTPCList  ul-CCTrChTPCList
        Unsigned 32-bit integer
    rrc.ul_ChannelRequirement  ul-ChannelRequirement
        Unsigned 32-bit integer
    rrc.ul_CommonTransChInfo  ul-CommonTransChInfo
        No value
    rrc.ul_CounterSynchronisationInfo  ul-CounterSynchronisationInfo
        No value
    rrc.ul_DL_Mode  ul-DL-Mode
        Unsigned 32-bit integer
    rrc.ul_DPCCH_SlotFormat  ul-DPCCH-SlotFormat
        Unsigned 32-bit integer
    rrc.ul_DPCCHscramblingCode  ul-DPCCHscramblingCode
        Unsigned 32-bit integer
        UL_ScramblingCode
    rrc.ul_DPCCHscramblingCodeType  ul-DPCCHscramblingCodeType
        Unsigned 32-bit integer
        ScramblingCodeType
    rrc.ul_DPCH_CodeInfoForCommonEDCH  ul-DPCH-CodeInfoForCommonEDCH
        No value
    rrc.ul_DPCH_Info  ul-DPCH-Info
        No value
        UL_DPCH_Info_r6
    rrc.ul_DPCH_InfoPredef  ul-DPCH-InfoPredef
        No value
    rrc.ul_DPCH_PowerControlInfo  ul-DPCH-PowerControlInfo
        Unsigned 32-bit integer
    rrc.ul_DPCHpowerControlInfoForCommonEDCH  ul-DPCHpowerControlInfoForCommonEDCH
        No value
    rrc.ul_EDCH_Information  ul-EDCH-Information
        No value
        UL_EDCH_Information_r6
    rrc.ul_HFN  ul-HFN
        Byte array
        BIT_STRING_SIZE_20_25
    rrc.ul_IntegProtActivationInfo  ul-IntegProtActivationInfo
        No value
        IntegrityProtActivationInfo
    rrc.ul_Interference  ul-Interference
        Signed 32-bit integer
    rrc.ul_InterferenceForCommonEDCH  ul-InterferenceForCommonEDCH
        Signed 32-bit integer
        UL_Interference
    rrc.ul_LogicalChannelMapping  ul-LogicalChannelMapping
        Unsigned 32-bit integer
        SEQUENCE_SIZE_maxLoCHperRLC_OF_UL_LogicalChannelMapping
    rrc.ul_LogicalChannelMappings  ul-LogicalChannelMappings
        Unsigned 32-bit integer
    rrc.ul_MAC_HeaderType  ul-MAC-HeaderType
        Unsigned 32-bit integer
    rrc.ul_MeasurementsFDD  ul-MeasurementsFDD
        Boolean
        BOOLEAN
    rrc.ul_MeasurementsGSM  ul-MeasurementsGSM
        Boolean
        BOOLEAN
    rrc.ul_MeasurementsMC  ul-MeasurementsMC
        Boolean
        BOOLEAN
    rrc.ul_MeasurementsTDD  ul-MeasurementsTDD
        Boolean
        BOOLEAN
    rrc.ul_OL_PC_Signalling  ul-OL-PC-Signalling
        Unsigned 32-bit integer
    rrc.ul_RFC3095  ul-RFC3095
        No value
        UL_RFC3095_r4
    rrc.ul_RFC3095_Context  ul-RFC3095-Context
        No value
    rrc.ul_RFC3095_Context_Relocation  ul-RFC3095-Context-Relocation
        Boolean
        BOOLEAN
    rrc.ul_RLC_Mode  ul-RLC-Mode
        Unsigned 32-bit integer
    rrc.ul_RRC_HFN  ul-RRC-HFN
        Byte array
        BIT_STRING_SIZE_28
    rrc.ul_RRC_SequenceNumber  ul-RRC-SequenceNumber
        Unsigned 32-bit integer
        RRC_MessageSequenceNumber
    rrc.ul_SecondaryCellInfoFDD  ul-SecondaryCellInfoFDD
        Unsigned 32-bit integer
    rrc.ul_SynchronisationParameters  ul-SynchronisationParameters
        No value
        UL_SynchronisationParameters_r4
    rrc.ul_TFCS  ul-TFCS
        Unsigned 32-bit integer
        TFCS
    rrc.ul_TFCS_Identity  ul-TFCS-Identity
        No value
        TFCS_Identity
    rrc.ul_TM_RLC_Mode  ul-TM-RLC-Mode
        No value
    rrc.ul_TS_ChannelisationCodeList  ul-TS-ChannelisationCodeList
        Unsigned 32-bit integer
    rrc.ul_TS_Channelisation_Code  ul-TS-Channelisation-Code
        Unsigned 32-bit integer
        UL_TS_ChannelisationCode
    rrc.ul_TargetSIR  ul-TargetSIR
        Unsigned 32-bit integer
    rrc.ul_TimeslotInterference  ul-TimeslotInterference
        Signed 32-bit integer
        TDD_UL_Interference
    rrc.ul_TimingAdvance  ul-TimingAdvance
        Unsigned 32-bit integer
    rrc.ul_TrCH_Type  ul-TrCH-Type
        Unsigned 32-bit integer
    rrc.ul_TransChCapability  ul-TransChCapability
        No value
    rrc.ul_TransChInfoList  ul-TransChInfoList
        Unsigned 32-bit integer
        UL_AddReconfTransChInfoList
    rrc.ul_TransportChannelIdentity  ul-TransportChannelIdentity
        Unsigned 32-bit integer
        TransportChannelIdentity
    rrc.ul_TransportChannelType  ul-TransportChannelType
        Unsigned 32-bit integer
    rrc.ul_UM_RLC_Mode  ul-UM-RLC-Mode
        No value
    rrc.ul_and_dl  ul-and-dl
        No value
    rrc.ul_controlledTrChList  ul-controlledTrChList
        Unsigned 32-bit integer
    rrc.ul_curr_time  ul-curr-time
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrc.ul_dataVolumeHistory  ul-dataVolumeHistory
        No value
        DataVolumeHistory
    rrc.ul_deletedTransChInfoList  ul-deletedTransChInfoList
        Unsigned 32-bit integer
    rrc.ul_mode  ul-mode
        Unsigned 32-bit integer
    rrc.ul_ref_ir  ul-ref-ir
        Byte array
        OCTET_STRING_SIZE_1_3000
    rrc.ul_ref_sn_1  ul-ref-sn-1
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrc.ul_ref_time  ul-ref-time
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrc.ul_syn_offset_id  ul-syn-offset-id
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrc.ul_syn_slope_ts  ul-syn-slope-ts
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrc.ul_target_SIR  ul-target-SIR
        Signed 32-bit integer
        INTEGER_M22_40
    rrc.ul_transportChannelCausingEvent  ul-transportChannelCausingEvent
        Unsigned 32-bit integer
        UL_TrCH_Identity
    rrc.ul_transportChannelID  ul-transportChannelID
        Unsigned 32-bit integer
        UL_TrCH_Identity
    rrc.uncertaintyAltitude  uncertaintyAltitude
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.uncertaintyCode  uncertaintyCode
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.uncertaintySemiMajor  uncertaintySemiMajor
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.uncertaintySemiMinor  uncertaintySemiMinor
        Unsigned 32-bit integer
        INTEGER_0_127
    rrc.unmodifiedServiceList  unmodifiedServiceList
        Unsigned 32-bit integer
        MBMS_UnmodifiedServiceList_r6
    rrc.unspecified  unspecified
        No value
    rrc.unsupported  unsupported
        No value
    rrc.unsupportedMeasurement  unsupportedMeasurement
        No value
    rrc.upPCHpositionInfo  upPCHpositionInfo
        Unsigned 32-bit integer
        UpPCHposition_LCR
    rrc.up_Ipdl_Parameters_TDD  up-Ipdl-Parameters-TDD
        No value
        UE_Positioning_IPDL_Parameters_TDD_r4_ext
    rrc.up_Measurement  up-Measurement
        No value
        UE_Positioning_Measurement_r4
    rrc.uplinkCompressedMode  uplinkCompressedMode
        No value
        CompressedModeMeasCapability
    rrc.uplinkCompressedMode_LCR  uplinkCompressedMode-LCR
        No value
        CompressedModeMeasCapability_LCR_r4
    rrc.uplinkDirectTransfer  uplinkDirectTransfer
        No value
    rrc.uplinkDirectTransfer_r3_add_ext  uplinkDirectTransfer-r3-add-ext
        Byte array
        BIT_STRING
    rrc.uplinkDirectTransfer_v690ext  uplinkDirectTransfer-v690ext
        No value
        UplinkDirectTransfer_v690ext_IEs
    rrc.uplinkDirectTransfer_v7g0ext  uplinkDirectTransfer-v7g0ext
        No value
        UplinkDirectTransfer_v7g0ext_IEs
    rrc.uplinkPhysChCapability  uplinkPhysChCapability
        No value
        UL_PhysChCapabilityFDD
    rrc.uplinkPhysicalChannelControl  uplinkPhysicalChannelControl
        Unsigned 32-bit integer
    rrc.uplinkPhysicalChannelControl_r3  uplinkPhysicalChannelControl-r3
        No value
        UplinkPhysicalChannelControl_r3_IEs
    rrc.uplinkPhysicalChannelControl_r3_add_ext  uplinkPhysicalChannelControl-r3-add-ext
        Byte array
        BIT_STRING
    rrc.uplinkPhysicalChannelControl_r4  uplinkPhysicalChannelControl-r4
        No value
        UplinkPhysicalChannelControl_r4_IEs
    rrc.uplinkPhysicalChannelControl_r4_add_ext  uplinkPhysicalChannelControl-r4-add-ext
        Byte array
        BIT_STRING
    rrc.uplinkPhysicalChannelControl_r5  uplinkPhysicalChannelControl-r5
        No value
        UplinkPhysicalChannelControl_r5_IEs
    rrc.uplinkPhysicalChannelControl_r5_add_ext  uplinkPhysicalChannelControl-r5-add-ext
        Byte array
        BIT_STRING
    rrc.uplinkPhysicalChannelControl_r7  uplinkPhysicalChannelControl-r7
        No value
        UplinkPhysicalChannelControl_r7_IEs
    rrc.uplinkPhysicalChannelControl_r7_add_ext  uplinkPhysicalChannelControl-r7-add-ext
        Byte array
        BIT_STRING
    rrc.uplinkPhysicalChannelControl_v690ext  uplinkPhysicalChannelControl-v690ext
        No value
        UplinkPhysicalChannelControl_v690ext_IEs
    rrc.uplinkPhysicalChannelControl_v6a0ext  uplinkPhysicalChannelControl-v6a0ext
        No value
        UplinkPhysicalChannelControl_v6a0ext_IEs
    rrc.uplinkPysicalChannelControl_v4b0ext  uplinkPysicalChannelControl-v4b0ext
        No value
        UplinkPhysicalChannelControl_v4b0ext_IEs
    rrc.uplink_DPCCHSlotFormatInformation  uplink-DPCCHSlotFormatInformation
        Unsigned 32-bit integer
        Uplink_DPCCH_Slot_Format_Information
    rrc.upperLimit  upperLimit
        Unsigned 32-bit integer
    rrc.uraIndex  uraIndex
        Byte array
        BIT_STRING_SIZE_4
    rrc.uraUpdate  uraUpdate
        No value
    rrc.uraUpdateConfirm  uraUpdateConfirm
        Unsigned 32-bit integer
    rrc.uraUpdateConfirm_CCCH_r3  uraUpdateConfirm-CCCH-r3
        No value
        URAUpdateConfirm_CCCH_r3_IEs
    rrc.uraUpdateConfirm_CCCH_r3_add_ext  uraUpdateConfirm-CCCH-r3-add-ext
        Byte array
        BIT_STRING
    rrc.uraUpdateConfirm_r3  uraUpdateConfirm-r3
        No value
        URAUpdateConfirm_r3_IEs
    rrc.uraUpdateConfirm_r3_add_ext  uraUpdateConfirm-r3-add-ext
        Byte array
        BIT_STRING
    rrc.uraUpdateConfirm_r5  uraUpdateConfirm-r5
        No value
        URAUpdateConfirm_r5_IEs
    rrc.uraUpdateConfirm_r7  uraUpdateConfirm-r7
        No value
        URAUpdateConfirm_r7_IEs
    rrc.uraUpdateConfirm_r7_add_ext  uraUpdateConfirm-r7-add-ext
        Byte array
        BIT_STRING
    rrc.uraUpdateConfirm_v690ext  uraUpdateConfirm-v690ext
        No value
        URAUpdateConfirm_v690ext_IEs
    rrc.uraUpdateConfirm_v860ext  uraUpdateConfirm-v860ext
        No value
        URAUpdateConfirm_v860ext_IEs
    rrc.uraUpdate_r3_add_ext  uraUpdate-r3-add-ext
        Byte array
    rrc.uraUpdate_v770ext  uraUpdate-v770ext
        No value
        UraUpdate_v770ext_IEs
    rrc.uraUpdate_v7e0ext  uraUpdate-v7e0ext
        No value
        URAUpdate_v7e0ext_IEs
    rrc.uraUpdate_v860ext  uraUpdate-v860ext
        No value
        URAUpdate_v860ext_IEs
    rrc.ura_Identity  ura-Identity
        Byte array
    rrc.ura_IdentityList  ura-IdentityList
        Unsigned 32-bit integer
    rrc.ura_UpdateCause  ura-UpdateCause
        Unsigned 32-bit integer
    rrc.usch  usch
        Unsigned 32-bit integer
        TransportChannelIdentity
    rrc.usch_TFCS  usch-TFCS
        Unsigned 32-bit integer
        TFCS
    rrc.usch_TFS  usch-TFS
        Unsigned 32-bit integer
        TransportFormatSet
    rrc.usch_TransportChannelIdentity  usch-TransportChannelIdentity
        Unsigned 32-bit integer
        TransportChannelIdentity
    rrc.usch_TransportChannelsInfo  usch-TransportChannelsInfo
        Unsigned 32-bit integer
    rrc.useCIO  useCIO
        Boolean
        BOOLEAN
    rrc.useSpecialValueOfHEField  useSpecialValueOfHEField
        Unsigned 32-bit integer
    rrc.use_of_HCS  use-of-HCS
        Unsigned 32-bit integer
    rrc.usedFreqThreshold  usedFreqThreshold
        Signed 32-bit integer
        Threshold
    rrc.usedFreqW  usedFreqW
        Unsigned 32-bit integer
        W
    rrc.utcA0  utcA0
        Byte array
        BIT_STRING_SIZE_16
    rrc.utcA0wnt  utcA0wnt
        Byte array
        BIT_STRING_SIZE_32
    rrc.utcA1  utcA1
        Byte array
        BIT_STRING_SIZE_13
    rrc.utcA1wnt  utcA1wnt
        Byte array
        BIT_STRING_SIZE_24
    rrc.utcA2  utcA2
        Byte array
        BIT_STRING_SIZE_7
    rrc.utcDN  utcDN
        Byte array
        BIT_STRING_SIZE_4
    rrc.utcDeltaTls  utcDeltaTls
        Byte array
        BIT_STRING_SIZE_8
    rrc.utcDeltaTlsf  utcDeltaTlsf
        Byte array
        BIT_STRING_SIZE_8
    rrc.utcModel1  utcModel1
        No value
        UTCmodelSet1
    rrc.utcModel2  utcModel2
        No value
        UTCmodelSet2
    rrc.utcModel3  utcModel3
        No value
        UTCmodelSet3
    rrc.utcModelID  utcModelID
        Unsigned 32-bit integer
        INTEGER_0_7
    rrc.utcModelRequest  utcModelRequest
        Boolean
        BOOLEAN
    rrc.utcStandardID  utcStandardID
        Byte array
        BIT_STRING_SIZE_3
    rrc.utcTot  utcTot
        Byte array
        BIT_STRING_SIZE_16
    rrc.utcWNlsf  utcWNlsf
        Byte array
        BIT_STRING_SIZE_8
    rrc.utcWNot  utcWNot
        Byte array
        BIT_STRING_SIZE_13
    rrc.utcWNt  utcWNt
        Byte array
        BIT_STRING_SIZE_8
    rrc.utraFDD  utraFDD
        Unsigned 32-bit integer
    rrc.utraFDD_item  utraFDD item
        No value
    rrc.utraTDD  utraTDD
        Unsigned 32-bit integer
    rrc.utraTDD_item  utraTDD item
        No value
    rrc.utra_CarrierRSSI  utra-CarrierRSSI
        Unsigned 32-bit integer
    rrc.utra_Carrier_RSSI  utra-Carrier-RSSI
        Boolean
        BOOLEAN
    rrc.utra_PriorityInfoList  utra-PriorityInfoList
        No value
    rrc.utra_PriorityInfoList_v920ext  utra-PriorityInfoList-v920ext
        No value
    rrc.utra_ServingCell  utra-ServingCell
        No value
    rrc.utranMobilityInformation  utranMobilityInformation
        Unsigned 32-bit integer
    rrc.utranMobilityInformationConfirm  utranMobilityInformationConfirm
        No value
    rrc.utranMobilityInformationConfirm_r3_add_ext  utranMobilityInformationConfirm-r3-add-ext
        Byte array
        BIT_STRING
    rrc.utranMobilityInformationConfirm_v770ext  utranMobilityInformationConfirm-v770ext
        No value
        UTRANMobilityInformationConfirm_v770ext_IEs
    rrc.utranMobilityInformationFailure  utranMobilityInformationFailure
        No value
    rrc.utranMobilityInformationFailure_r3_add_ext  utranMobilityInformationFailure-r3-add-ext
        Byte array
        BIT_STRING
    rrc.utranMobilityInformation_r3  utranMobilityInformation-r3
        No value
        UTRANMobilityInformation_r3_IEs
    rrc.utranMobilityInformation_r3_add_ext  utranMobilityInformation-r3-add-ext
        Byte array
        BIT_STRING
    rrc.utranMobilityInformation_r5  utranMobilityInformation-r5
        No value
        UTRANMobilityInformation_r5_IEs
    rrc.utranMobilityInformation_r7  utranMobilityInformation-r7
        No value
        UTRANMobilityInformation_r7_IEs
    rrc.utranMobilityInformation_r7_add_ext  utranMobilityInformation-r7-add-ext
        Byte array
        BIT_STRING
    rrc.utranMobilityInformation_v3a0ext  utranMobilityInformation-v3a0ext
        No value
        UTRANMobilityInformation_v3a0ext_IEs
    rrc.utranMobilityInformation_v690ext  utranMobilityInformation-v690ext
        No value
        UtranMobilityInformation_v690ext_IEs
    rrc.utranMobilityInformation_v860ext  utranMobilityInformation-v860ext
        No value
        UTRANMobilityInformation_v860ext1_IEs
    rrc.utran_DRX_CycleLengthCoeff  utran-DRX-CycleLengthCoeff
        Unsigned 32-bit integer
        UTRAN_DRX_CycleLengthCoefficient
    rrc.utran_EstimatedQuality  utran-EstimatedQuality
        Boolean
        BOOLEAN
    rrc.utran_FDD_FrequencyList  utran-FDD-FrequencyList
        Unsigned 32-bit integer
    rrc.utran_GANSSReferenceTimeResult  utran-GANSSReferenceTimeResult
        No value
        UTRAN_GANSSReferenceTime
    rrc.utran_GPSReferenceTime  utran-GPSReferenceTime
        No value
    rrc.utran_GPSReferenceTimeResult  utran-GPSReferenceTimeResult
        No value
    rrc.utran_GPSTimingOfCell  utran-GPSTimingOfCell
        No value
    rrc.utran_GPS_DriftRate  utran-GPS-DriftRate
        Unsigned 32-bit integer
    rrc.utran_GroupIdentity  utran-GroupIdentity
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxURNTI_Group_OF_GroupIdentityWithReleaseInformation
    rrc.utran_Identity  utran-Identity
        No value
    rrc.utran_SingleUE_Identity  utran-SingleUE-Identity
        No value
    rrc.utran_TDD_FrequencyList  utran-TDD-FrequencyList
        Unsigned 32-bit integer
    rrc.utran_ganssreferenceTime  utran-ganssreferenceTime
        No value
    rrc.v370NonCriticalExtensions  v370NonCriticalExtensions
        No value
    rrc.v380NonCriticalExtensions  v380NonCriticalExtensions
        No value
    rrc.v390NonCriticalExtensions  v390NonCriticalExtensions
        Unsigned 32-bit integer
    rrc.v390nonCriticalExtensions  v390nonCriticalExtensions
        No value
    rrc.v3a0NonCriticalExtensions  v3a0NonCriticalExtensions
        No value
    rrc.v3aoNonCriticalExtensions  v3aoNonCriticalExtensions
        No value
    rrc.v3b0NonCriticalExtensions  v3b0NonCriticalExtensions
        No value
    rrc.v3c0NonCriticalExtensions  v3c0NonCriticalExtensions
        No value
    rrc.v3d0NonCriticalExtensions  v3d0NonCriticalExtensions
        No value
    rrc.v3g0NonCriticalExtensions  v3g0NonCriticalExtensions
        No value
    rrc.v4b0NonCriticalExtensions  v4b0NonCriticalExtensions
        No value
    rrc.v4b0NonCriticalExtenstions  v4b0NonCriticalExtenstions
        No value
    rrc.v4d0NonCriticalExtensions  v4d0NonCriticalExtensions
        No value
    rrc.v590NonCriticalExtension  v590NonCriticalExtension
        No value
    rrc.v590NonCriticalExtensions  v590NonCriticalExtensions
        No value
    rrc.v590NonCriticalExtenstions  v590NonCriticalExtenstions
        No value
    rrc.v5a0NonCriticalExtensions  v5a0NonCriticalExtensions
        No value
    rrc.v5b0NonCriticalExtension  v5b0NonCriticalExtension
        No value
    rrc.v5b0NonCriticalExtensions  v5b0NonCriticalExtensions
        No value
    rrc.v5c0NonCriticalExtension  v5c0NonCriticalExtension
        No value
    rrc.v5c0NonCriticalExtensions  v5c0NonCriticalExtensions
        No value
    rrc.v5c0NoncriticalExtension  v5c0NoncriticalExtension
        No value
    rrc.v5d0NonCriticalExtenstions  v5d0NonCriticalExtenstions
        No value
    rrc.v650NonCriticalExtensions  v650NonCriticalExtensions
        No value
    rrc.v650nonCriticalExtensions  v650nonCriticalExtensions
        No value
    rrc.v670NonCriticalExtension  v670NonCriticalExtension
        No value
    rrc.v680NonCriticalExtensions  v680NonCriticalExtensions
        No value
    rrc.v690NonCriticalExtensions  v690NonCriticalExtensions
        No value
    rrc.v690nonCriticalExtensions  v690nonCriticalExtensions
        No value
    rrc.v6a0NonCriticalExtensions  v6a0NonCriticalExtensions
        No value
    rrc.v6b0NonCriticalExtensions  v6b0NonCriticalExtensions
        No value
    rrc.v6e0NonCriticalExtensions  v6e0NonCriticalExtensions
        No value
    rrc.v6f0NonCriticalExtensions  v6f0NonCriticalExtensions
        No value
    rrc.v770NonCriticalExtension  v770NonCriticalExtension
        No value
    rrc.v770NonCriticalExtensions  v770NonCriticalExtensions
        No value
    rrc.v780NonCriticalExtensions  v780NonCriticalExtensions
        No value
    rrc.v790NonCriticalExtensions  v790NonCriticalExtensions
        No value
    rrc.v790nonCriticalExtensions  v790nonCriticalExtensions
        No value
    rrc.v7b0NonCriticalExtensions  v7b0NonCriticalExtensions
        No value
    rrc.v7c0NonCriticalExtensions  v7c0NonCriticalExtensions
        No value
    rrc.v7d0NonCriticalExtensions  v7d0NonCriticalExtensions
        No value
    rrc.v7e0NonCriticalExtensions  v7e0NonCriticalExtensions
        No value
    rrc.v7f0NonCriticalExtensions  v7f0NonCriticalExtensions
        No value
    rrc.v7g0NonCriticalExtensions  v7g0NonCriticalExtensions
        No value
    rrc.v820NonCriticalExtensions  v820NonCriticalExtensions
        No value
    rrc.v830NonCriticalExtension  v830NonCriticalExtension
        No value
    rrc.v860NonCriticalExtension  v860NonCriticalExtension
        No value
    rrc.v860NonCriticalExtensions  v860NonCriticalExtensions
        No value
    rrc.v860NonCriticalExtentions  v860NonCriticalExtentions
        No value
    rrc.v860nonCriticalExtentions  v860nonCriticalExtentions
        No value
    rrc.v870NonCriticalExtension  v870NonCriticalExtension
        No value
    rrc.v880NonCriticalExtensions  v880NonCriticalExtensions
        No value
    rrc.v890NonCriticalExtensions  v890NonCriticalExtensions
        No value
    rrc.v890NoncriticalExtensions  v890NoncriticalExtensions
        No value
    rrc.v8a0NonCriticalExtensions  v8a0NonCriticalExtensions
        No value
    rrc.v900NonCriticalExtension  v900NonCriticalExtension
        No value
    rrc.v920NonCriticalExtension  v920NonCriticalExtension
        No value
    rrc.v920NonCriticalExtensions  v920NonCriticalExtensions
        No value
    rrc.validity_CellPCH_UraPCH  validity-CellPCH-UraPCH
        Unsigned 32-bit integer
    rrc.value  value
        Unsigned 32-bit integer
        INTEGER_0_38
    rrc.valueTagInfo  valueTagInfo
        Unsigned 32-bit integer
    rrc.valueTagList  valueTagList
        Unsigned 32-bit integer
        PredefinedConfigValueTagList
    rrc.variableBitMapOfARFCNs  variableBitMapOfARFCNs
        Byte array
        OCTET_STRING_SIZE_1_16
    rrc.varianceOfRLC_BufferPayload  varianceOfRLC-BufferPayload
        Unsigned 32-bit integer
        TimeInterval
    rrc.velocityEstimate  velocityEstimate
        Unsigned 32-bit integer
    rrc.velocityRequested  velocityRequested
        Unsigned 32-bit integer
    rrc.verifiedBSIC  verifiedBSIC
        Unsigned 32-bit integer
        INTEGER_0_maxCellMeas
    rrc.version  version
        Unsigned 32-bit integer
    rrc.verticalAccuracy  verticalAccuracy
        Byte array
        UE_Positioning_Accuracy
    rrc.verticalSpeed  verticalSpeed
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.verticalSpeedDirection  verticalSpeedDirection
        Unsigned 32-bit integer
    rrc.verticalUncertaintySpeed  verticalUncertaintySpeed
        Unsigned 32-bit integer
        INTEGER_0_255
    rrc.vertical_Accuracy  vertical-Accuracy
        Byte array
        UE_Positioning_Accuracy
    rrc.w  w
        Unsigned 32-bit integer
    rrc.w_n_lsf_utc  w-n-lsf-utc
        Byte array
        BIT_STRING_SIZE_8
    rrc.w_n_t_utc  w-n-t-utc
        Byte array
        BIT_STRING_SIZE_8
    rrc.waitTime  waitTime
        Unsigned 32-bit integer
    rrc.warningType  warningType
        Byte array
        OCTET_STRING_SIZE_1_2
    rrc.wholeGPS_Chips  wholeGPS-Chips
        Unsigned 32-bit integer
        INTEGER_0_1022
    rrc.wi  wi
        Unsigned 32-bit integer
        Wi_LCR
    rrc.widowSize_DAR  widowSize-DAR
        Unsigned 32-bit integer
        WindowSizeDAR_r6
    rrc.windowSize_OSD  windowSize-OSD
        Unsigned 32-bit integer
        WindowSizeOSD_r6
    rrc.withinActSetAndOrMonitoredUsedFreqOrVirtualActSetAndOrMonitoredNonUsedFreq  withinActSetAndOrMonitoredUsedFreqOrVirtualActSetAndOrMonitoredNonUsedFreq
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType2
    rrc.withinActSetOrVirtualActSet_InterRATcells  withinActSetOrVirtualActSet-InterRATcells
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType2
    rrc.withinActiveAndOrMonitoredUsedFreq  withinActiveAndOrMonitoredUsedFreq
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType1
    rrc.withinActiveSet  withinActiveSet
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType1
    rrc.withinDetectedSetUsedFreq  withinDetectedSetUsedFreq
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType1
    rrc.withinMonitoredAndOrDetectedUsedFreq  withinMonitoredAndOrDetectedUsedFreq
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType1
    rrc.withinMonitoredAndOrVirtualActiveSetNonUsedFreq  withinMonitoredAndOrVirtualActiveSetNonUsedFreq
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType1
    rrc.withinMonitoredSetNonUsedFreq  withinMonitoredSetNonUsedFreq
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType1
    rrc.withinMonitoredSetUsedFreq  withinMonitoredSetUsedFreq
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType1
    rrc.withinVirtualActSet  withinVirtualActSet
        Unsigned 32-bit integer
        MaxNumberOfReportingCellsType1
    rrc.wn_a  wn-a
        Byte array
        BIT_STRING_SIZE_8
    rrc.wn_lsf  wn-lsf
        Byte array
        BIT_STRING_SIZE_8
    rrc.wn_t  wn-t
        Byte array
        BIT_STRING_SIZE_8
    rrc.zero  zero
        No value

Radio Resource LCS Protocol (RRLP) (rrlp)

    rrlp.AcquisElement  AcquisElement
        No value
    rrlp.AlmanacElement  AlmanacElement
        No value
    rrlp.BadSignalElement  BadSignalElement
        No value
    rrlp.DGANSSExtensionSgnElement  DGANSSExtensionSgnElement
        No value
    rrlp.DGANSSExtensionSgnTypeElement  DGANSSExtensionSgnTypeElement
        No value
    rrlp.DGANSSSgnElement  DGANSSSgnElement
        No value
    rrlp.DGPSExtensionSatElement  DGPSExtensionSatElement
        No value
    rrlp.GANSSAdditionalAssistanceChoicesForOneGANSS  GANSSAdditionalAssistanceChoicesForOneGANSS
        No value
    rrlp.GANSSAlmanacElement  GANSSAlmanacElement
        Unsigned 32-bit integer
    rrlp.GANSSAssistanceForOneGANSS  GANSSAssistanceForOneGANSS
        No value
    rrlp.GANSSDataBit  GANSSDataBit
        Unsigned 32-bit integer
    rrlp.GANSSDataBitsSgnElement  GANSSDataBitsSgnElement
        No value
    rrlp.GANSSDeltaElementList_item  GANSSDeltaElementList item
        Byte array
        OCTET_STRING_SIZE_1_49
    rrlp.GANSSEphemerisDeltaEpoch  GANSSEphemerisDeltaEpoch
        No value
    rrlp.GANSSGenericAssistDataElement  GANSSGenericAssistDataElement
        No value
    rrlp.GANSSPositionMethod  GANSSPositionMethod
        No value
    rrlp.GANSSRefMeasurementElement  GANSSRefMeasurementElement
        No value
    rrlp.GANSSReferenceOrbit  GANSSReferenceOrbit
        No value
    rrlp.GANSSSatelliteElement  GANSSSatelliteElement
        No value
    rrlp.GANSSTimeModelElement  GANSSTimeModelElement
        No value
    rrlp.GANSS_ID1_element  GANSS-ID1-element
        No value
    rrlp.GANSS_ID3_element  GANSS-ID3-element
        No value
    rrlp.GANSS_MsrElement  GANSS-MsrElement
        No value
    rrlp.GANSS_MsrSetElement  GANSS-MsrSetElement
        No value
    rrlp.GANSS_SgnElement  GANSS-SgnElement
        No value
    rrlp.GANSS_SgnTypeElement  GANSS-SgnTypeElement
        No value
    rrlp.GPSDeltaElementList_item  GPSDeltaElementList item
        Byte array
        OCTET_STRING_SIZE_1_47
    rrlp.GPSEphemerisDeltaEpoch  GPSEphemerisDeltaEpoch
        No value
    rrlp.GPSReferenceOrbit  GPSReferenceOrbit
        No value
    rrlp.GPSTOWAssistElement  GPSTOWAssistElement
        No value
    rrlp.GPS_MsrElement  GPS-MsrElement
        No value
    rrlp.GPS_MsrSetElement  GPS-MsrSetElement
        No value
    rrlp.GanssDataBitsElement  GanssDataBitsElement
        No value
    rrlp.MsrAssistBTS  MsrAssistBTS
        No value
    rrlp.MsrAssistBTS_R98_ExpOTD  MsrAssistBTS-R98-ExpOTD
        No value
    rrlp.NavModelElement  NavModelElement
        No value
    rrlp.OTD_FirstSetMsrs  OTD-FirstSetMsrs
        No value
    rrlp.OTD_MsrElementRest  OTD-MsrElementRest
        No value
    rrlp.OTD_MsrsOfOtherSets  OTD-MsrsOfOtherSets
        Unsigned 32-bit integer
    rrlp.PDU  PDU
        No value
    rrlp.PrivateExtension  PrivateExtension
        No value
    rrlp.ReferenceIdentityType  ReferenceIdentityType
        Unsigned 32-bit integer
    rrlp.SatElement  SatElement
        No value
    rrlp.SatelliteID  SatelliteID
        Unsigned 32-bit integer
    rrlp.SgnTypeElement  SgnTypeElement
        No value
    rrlp.StandardClockModelElement  StandardClockModelElement
        No value
    rrlp.SystemInfoAssistBTS  SystemInfoAssistBTS
        Unsigned 32-bit integer
    rrlp.SystemInfoAssistBTS_R98_ExpOTD  SystemInfoAssistBTS-R98-ExpOTD
        Unsigned 32-bit integer
    rrlp.accuracy  accuracy
        Unsigned 32-bit integer
    rrlp.acquisAssist  acquisAssist
        No value
    rrlp.acquisList  acquisList
        Unsigned 32-bit integer
        SeqOfAcquisElement
    rrlp.acquisitionAssistance  acquisitionAssistance
        Boolean
    rrlp.addIonosphericModel  addIonosphericModel
        Boolean
    rrlp.addUTCmodel  addUTCmodel
        Boolean
    rrlp.add_GPS_AssistData  add-GPS-AssistData
        No value
    rrlp.add_GPS_controlHeader  add-GPS-controlHeader
        No value
    rrlp.addionalAngle  addionalAngle
        No value
        AddionalAngleFields
    rrlp.addionalDoppler  addionalDoppler
        No value
        AddionalDopplerFields
    rrlp.additionalAngle  additionalAngle
        No value
        AddionalAngleFields
    rrlp.additionalAssistanceData  additionalAssistanceData
        No value
    rrlp.additionalDoppler  additionalDoppler
        No value
        AdditionalDopplerFields
    rrlp.adr  adr
        Unsigned 32-bit integer
        INTEGER_0_33554431
    rrlp.af0  af0
        Signed 32-bit integer
        INTEGER_M2097152_2097151
    rrlp.af1  af1
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.af2  af2
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.ai0  ai0
        Unsigned 32-bit integer
        INTEGER_0_4095
    rrlp.ai1  ai1
        Unsigned 32-bit integer
        INTEGER_0_4095
    rrlp.ai2  ai2
        Unsigned 32-bit integer
        INTEGER_0_4095
    rrlp.alamanacToa  alamanacToa
        Unsigned 32-bit integer
        INTEGER_0_255
    rrlp.alamanacWNa  alamanacWNa
        Unsigned 32-bit integer
        INTEGER_0_255
    rrlp.alert  alert
        Unsigned 32-bit integer
        AlertFlag
    rrlp.alfa0  alfa0
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.alfa1  alfa1
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.alfa2  alfa2
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.alfa3  alfa3
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.almanac  almanac
        No value
    rrlp.almanacAF0  almanacAF0
        Signed 32-bit integer
        INTEGER_M1024_1023
    rrlp.almanacAF1  almanacAF1
        Signed 32-bit integer
        INTEGER_M1024_1023
    rrlp.almanacAPowerHalf  almanacAPowerHalf
        Unsigned 32-bit integer
        INTEGER_0_16777215
    rrlp.almanacE  almanacE
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrlp.almanacKsii  almanacKsii
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.almanacList  almanacList
        Unsigned 32-bit integer
        SeqOfAlmanacElement
    rrlp.almanacM0  almanacM0
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.almanacOmega0  almanacOmega0
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.almanacOmegaDot  almanacOmegaDot
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.almanacSVhealth  almanacSVhealth
        Unsigned 32-bit integer
        INTEGER_0_255
    rrlp.almanacW  almanacW
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.antiSpoof  antiSpoof
        Unsigned 32-bit integer
        AntiSpoofFlag
    rrlp.assistanceData  assistanceData
        No value
    rrlp.assistanceDataAck  assistanceDataAck
        No value
    rrlp.assistanceNeeded  assistanceNeeded
        No value
    rrlp.assistanceSupported  assistanceSupported
        No value
    rrlp.auxiliaryInformation  auxiliaryInformation
        Boolean
    rrlp.azimuth  azimuth
        Unsigned 32-bit integer
        INTEGER_0_31
    rrlp.b1  b1
        Signed 32-bit integer
        INTEGER_M1024_1023
    rrlp.b2  b2
        Signed 32-bit integer
        INTEGER_M512_511
    rrlp.badSVID  badSVID
        Unsigned 32-bit integer
        SVID
    rrlp.badSignalID  badSignalID
        Byte array
        GANSSSignals
    rrlp.bcchCarrier  bcchCarrier
        Unsigned 32-bit integer
    rrlp.beta0  beta0
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.beta1  beta1
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.beta2  beta2
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.beta3  beta3
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.bitNumber  bitNumber
        Unsigned 32-bit integer
    rrlp.bitsize_delta_cic  bitsize-delta-cic
        Unsigned 32-bit integer
        INTEGER_1_16
    rrlp.bitsize_delta_cis  bitsize-delta-cis
        Unsigned 32-bit integer
        INTEGER_1_16
    rrlp.bitsize_delta_crc  bitsize-delta-crc
        Unsigned 32-bit integer
        INTEGER_1_16
    rrlp.bitsize_delta_crs  bitsize-delta-crs
        Unsigned 32-bit integer
        INTEGER_1_16
    rrlp.bitsize_delta_cuc  bitsize-delta-cuc
        Unsigned 32-bit integer
        INTEGER_1_16
    rrlp.bitsize_delta_cus  bitsize-delta-cus
        Unsigned 32-bit integer
        INTEGER_1_16
    rrlp.bitsize_delta_deltaN  bitsize-delta-deltaN
        Unsigned 32-bit integer
        INTEGER_1_16
    rrlp.bitsize_delta_e  bitsize-delta-e
        Unsigned 32-bit integer
        INTEGER_1_32
    rrlp.bitsize_delta_i0  bitsize-delta-i0
        Unsigned 32-bit integer
        INTEGER_1_32
    rrlp.bitsize_delta_idot  bitsize-delta-idot
        Unsigned 32-bit integer
        INTEGER_1_14
    rrlp.bitsize_delta_m0  bitsize-delta-m0
        Unsigned 32-bit integer
        INTEGER_1_32
    rrlp.bitsize_delta_omega  bitsize-delta-omega
        Unsigned 32-bit integer
        INTEGER_1_32
    rrlp.bitsize_delta_omega0  bitsize-delta-omega0
        Unsigned 32-bit integer
        INTEGER_1_32
    rrlp.bitsize_delta_omegadot  bitsize-delta-omegadot
        Unsigned 32-bit integer
        INTEGER_1_24
    rrlp.bitsize_delta_sqrtA  bitsize-delta-sqrtA
        Unsigned 32-bit integer
        INTEGER_1_32
    rrlp.bitsize_delta_tgd  bitsize-delta-tgd
        Unsigned 32-bit integer
        INTEGER_1_10
    rrlp.bitsize_delta_tgd1  bitsize-delta-tgd1
        Unsigned 32-bit integer
        INTEGER_1_10
    rrlp.bitsize_delta_tgd2  bitsize-delta-tgd2
        Unsigned 32-bit integer
        INTEGER_1_10
    rrlp.bsic  bsic
        Unsigned 32-bit integer
    rrlp.bsicAndCarrier  bsicAndCarrier
        No value
    rrlp.btsPosition  btsPosition
        Byte array
    rrlp.cNo  cNo
        Unsigned 32-bit integer
        INTEGER_0_63
    rrlp.calcAssistanceBTS  calcAssistanceBTS
        No value
    rrlp.carrier  carrier
        Unsigned 32-bit integer
        BCCHCarrier
    rrlp.carrierQualityInd  carrierQualityInd
        Unsigned 32-bit integer
        INTEGER_0_3
    rrlp.channelNumber  channelNumber
        Signed 32-bit integer
        INTEGER_M7_13
    rrlp.ci  ci
        Unsigned 32-bit integer
        CellID
    rrlp.ciAndLAC  ciAndLAC
        No value
        CellIDAndLAC
    rrlp.cnavAdot  cnavAdot
        Signed 32-bit integer
        INTEGER_M16777216_16777215
    rrlp.cnavAf0  cnavAf0
        Signed 32-bit integer
        INTEGER_M33554432_33554431
    rrlp.cnavAf1  cnavAf1
        Signed 32-bit integer
        INTEGER_M524288_524287
    rrlp.cnavAf2  cnavAf2
        Signed 32-bit integer
        INTEGER_M512_511
    rrlp.cnavCic  cnavCic
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.cnavCis  cnavCis
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.cnavClockModel  cnavClockModel
        No value
    rrlp.cnavCrc  cnavCrc
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.cnavCrs  cnavCrs
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.cnavCuc  cnavCuc
        Signed 32-bit integer
        INTEGER_M1048576_1048575
    rrlp.cnavCus  cnavCus
        Signed 32-bit integer
        INTEGER_M1048576_1048575
    rrlp.cnavDeltaA  cnavDeltaA
        Signed 32-bit integer
        INTEGER_M33554432_33554431
    rrlp.cnavDeltaNo  cnavDeltaNo
        Signed 32-bit integer
        INTEGER_M65536_65535
    rrlp.cnavDeltaNoDot  cnavDeltaNoDot
        Signed 32-bit integer
        INTEGER_M4194304_4194303
    rrlp.cnavDeltaOmegaDot  cnavDeltaOmegaDot
        Signed 32-bit integer
        INTEGER_M65536_65535
    rrlp.cnavE  cnavE
        Unsigned 32-bit integer
    rrlp.cnavISCl1ca  cnavISCl1ca
        Signed 32-bit integer
        INTEGER_M4096_4095
    rrlp.cnavISCl1cd  cnavISCl1cd
        Signed 32-bit integer
        INTEGER_M4096_4095
    rrlp.cnavISCl1cp  cnavISCl1cp
        Signed 32-bit integer
        INTEGER_M4096_4095
    rrlp.cnavISCl2c  cnavISCl2c
        Signed 32-bit integer
        INTEGER_M4096_4095
    rrlp.cnavISCl5i5  cnavISCl5i5
        Signed 32-bit integer
        INTEGER_M4096_4095
    rrlp.cnavISCl5q5  cnavISCl5q5
        Signed 32-bit integer
        INTEGER_M4096_4095
    rrlp.cnavIo  cnavIo
        Signed 32-bit integer
    rrlp.cnavIoDot  cnavIoDot
        Signed 32-bit integer
        INTEGER_M16384_16383
    rrlp.cnavKeplerianSet  cnavKeplerianSet
        No value
        NavModel_CNAVKeplerianSet
    rrlp.cnavMo  cnavMo
        Signed 32-bit integer
    rrlp.cnavOMEGA0  cnavOMEGA0
        Signed 32-bit integer
    rrlp.cnavOmega  cnavOmega
        Signed 32-bit integer
    rrlp.cnavTgd  cnavTgd
        Signed 32-bit integer
        INTEGER_M4096_4095
    rrlp.cnavToc  cnavToc
        Unsigned 32-bit integer
        INTEGER_0_2015
    rrlp.cnavTop  cnavTop
        Unsigned 32-bit integer
        INTEGER_0_2015
    rrlp.cnavURA0  cnavURA0
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.cnavURA1  cnavURA1
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.cnavURA2  cnavURA2
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.cnavURAindex  cnavURAindex
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.codePhase  codePhase
        Unsigned 32-bit integer
        INTEGER_0_1022
    rrlp.codePhaseRMSError  codePhaseRMSError
        Unsigned 32-bit integer
        INTEGER_0_63
    rrlp.codePhaseSearchWindow  codePhaseSearchWindow
        Unsigned 32-bit integer
        INTEGER_0_15
    rrlp.commonGANSSAssistance  commonGANSSAssistance
        Byte array
    rrlp.component  component
        Unsigned 32-bit integer
        RRLP_Component
    rrlp.controlHeader  controlHeader
        No value
    rrlp.dGPScorrections  dGPScorrections
        Boolean
    rrlp.dataID  dataID
        Byte array
        BIT_STRING_SIZE_2
    rrlp.databitassistance  databitassistance
        Boolean
    rrlp.deltaGANSSTOD  deltaGANSSTOD
        Unsigned 32-bit integer
        INTEGER_0_127
    rrlp.deltaPseudoRangeCor2  deltaPseudoRangeCor2
        Signed 32-bit integer
        INTEGER_M127_127
    rrlp.deltaPseudoRangeCor3  deltaPseudoRangeCor3
        Signed 32-bit integer
        INTEGER_M127_127
    rrlp.deltaRangeRateCor2  deltaRangeRateCor2
        Signed 32-bit integer
        INTEGER_M7_7
    rrlp.deltaRangeRateCor3  deltaRangeRateCor3
        Signed 32-bit integer
        INTEGER_M7_7
    rrlp.deltaTow  deltaTow
        Unsigned 32-bit integer
        INTEGER_0_127
    rrlp.deltaUT1  deltaUT1
        Signed 32-bit integer
        INTEGER_M1073741824_1073741823
    rrlp.deltaUT1dot  deltaUT1dot
        Signed 32-bit integer
        INTEGER_M262144_262143
    rrlp.dganssExtensionSgnList  dganssExtensionSgnList
        Unsigned 32-bit integer
        SeqOfDGANSSExtensionSgnElement
    rrlp.dganssRefTime  dganssRefTime
        Unsigned 32-bit integer
        INTEGER_0_119
    rrlp.dganssSgnList  dganssSgnList
        Unsigned 32-bit integer
        SeqOfDGANSSSgnElement
    rrlp.dgpsCorrections  dgpsCorrections
        No value
    rrlp.dgpsCorrectionsValidityPeriod  dgpsCorrectionsValidityPeriod
        Unsigned 32-bit integer
    rrlp.differentialCorrections  differentialCorrections
        Boolean
    rrlp.doppler  doppler
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.doppler0  doppler0
        Signed 32-bit integer
        INTEGER_M2048_2047
    rrlp.doppler1  doppler1
        Unsigned 32-bit integer
        INTEGER_0_63
    rrlp.dopplerUncertainty  dopplerUncertainty
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.e-otd  e-otd
        Boolean
    rrlp.earthOrientationParam  earthOrientationParam
        Boolean
    rrlp.ecefSBASAlmanac  ecefSBASAlmanac
        No value
        Almanac_ECEFsbasAlmanacSet
    rrlp.egnos  egnos
        Boolean
    rrlp.elevation  elevation
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.environmentCharacter  environmentCharacter
        Unsigned 32-bit integer
    rrlp.eotd  eotd
        Boolean
    rrlp.eotdQuality  eotdQuality
        No value
    rrlp.ephemAF0  ephemAF0
        Signed 32-bit integer
        INTEGER_M2097152_2097151
    rrlp.ephemAF1  ephemAF1
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.ephemAF2  ephemAF2
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.ephemAODA  ephemAODA
        Unsigned 32-bit integer
        INTEGER_0_31
    rrlp.ephemAPowerHalf  ephemAPowerHalf
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrlp.ephemCic  ephemCic
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.ephemCis  ephemCis
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.ephemCodeOnL2  ephemCodeOnL2
        Unsigned 32-bit integer
        INTEGER_0_3
    rrlp.ephemCrc  ephemCrc
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.ephemCrs  ephemCrs
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.ephemCuc  ephemCuc
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.ephemCus  ephemCus
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.ephemDeltaN  ephemDeltaN
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.ephemE  ephemE
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrlp.ephemFitFlag  ephemFitFlag
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.ephemI0  ephemI0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.ephemIDot  ephemIDot
        Signed 32-bit integer
        INTEGER_M8192_8191
    rrlp.ephemIODC  ephemIODC
        Unsigned 32-bit integer
        INTEGER_0_1023
    rrlp.ephemL2Pflag  ephemL2Pflag
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.ephemM0  ephemM0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.ephemOmegaA0  ephemOmegaA0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.ephemOmegaADot  ephemOmegaADot
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.ephemSF1Rsvd  ephemSF1Rsvd
        No value
        EphemerisSubframe1Reserved
    rrlp.ephemSVhealth  ephemSVhealth
        Unsigned 32-bit integer
        INTEGER_0_63
    rrlp.ephemTgd  ephemTgd
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.ephemToc  ephemToc
        Unsigned 32-bit integer
        INTEGER_0_37799
    rrlp.ephemToe  ephemToe
        Unsigned 32-bit integer
        INTEGER_0_37799
    rrlp.ephemURA  ephemURA
        Unsigned 32-bit integer
        INTEGER_0_15
    rrlp.ephemW  ephemW
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.ephemerisDeltaScales  ephemerisDeltaScales
        No value
        GANSSEphemerisDeltaScales
    rrlp.ephemerisDeltaSizes  ephemerisDeltaSizes
        No value
        GANSSEphemerisDeltaBitSizes
    rrlp.ephemerisExtension  ephemerisExtension
        Boolean
    rrlp.ephemerisExtensionCheck  ephemerisExtensionCheck
        Boolean
    rrlp.ephemerisExtensionDuration  ephemerisExtensionDuration
        Unsigned 32-bit integer
        INTEGER_1_512
    rrlp.errorCause  errorCause
        Unsigned 32-bit integer
        ErrorCodes
    rrlp.eventOccured  eventOccured
        Byte array
        BIT_STRING_SIZE_64
    rrlp.expOTDUncertainty  expOTDUncertainty
        Unsigned 32-bit integer
    rrlp.expOTDuncertainty  expOTDuncertainty
        Unsigned 32-bit integer
    rrlp.expectedOTD  expectedOTD
        Unsigned 32-bit integer
    rrlp.extId  extId
        Object Identifier
        OBJECT_IDENTIFIER
    rrlp.extType  extType
        No value
    rrlp.extended_reference  extended-reference
        No value
    rrlp.extensionContainer  extensionContainer
        No value
    rrlp.fineRTD  fineRTD
        Unsigned 32-bit integer
    rrlp.fixType  fixType
        Unsigned 32-bit integer
    rrlp.fracChips  fracChips
        Unsigned 32-bit integer
        INTEGER_0_1024
    rrlp.frameDrift  frameDrift
        Signed 32-bit integer
    rrlp.frameNumber  frameNumber
        Unsigned 32-bit integer
    rrlp.futureEventNoted  futureEventNoted
        Byte array
        BIT_STRING_SIZE_64
    rrlp.gANSSAdditionalAssistanceChoices  gANSSAdditionalAssistanceChoices
        Unsigned 32-bit integer
    rrlp.gANSSAssistance  gANSSAssistance
        Byte array
    rrlp.gANSSAssistanceSet  gANSSAssistanceSet
        No value
    rrlp.gANSSPositionMethods  gANSSPositionMethods
        Unsigned 32-bit integer
    rrlp.gANSSPositioningMethodTypes  gANSSPositioningMethodTypes
        Byte array
    rrlp.gANSSSignals  gANSSSignals
        Byte array
    rrlp.gagan  gagan
        Boolean
    rrlp.galileo  galileo
        Boolean
    rrlp.gannsOrbitModelChoice  gannsOrbitModelChoice
        Byte array
        GANSSModelID
    rrlp.ganss  ganss
        Boolean
    rrlp.ganssAddIonosphericModel  ganssAddIonosphericModel
        No value
    rrlp.ganssAddUTCModel  ganssAddUTCModel
        Unsigned 32-bit integer
    rrlp.ganssAdditionalUTCModelChoice  ganssAdditionalUTCModelChoice
        Byte array
        GANSSModelID
    rrlp.ganssAlmanacList  ganssAlmanacList
        Unsigned 32-bit integer
        SeqOfGANSSAlmanacElement
    rrlp.ganssAlmanacModel  ganssAlmanacModel
        No value
    rrlp.ganssAlmanacModelChoice  ganssAlmanacModelChoice
        Byte array
        GANSSModelID
    rrlp.ganssAssistanceData  ganssAssistanceData
        Byte array
    rrlp.ganssAuxiliaryInfo  ganssAuxiliaryInfo
        Unsigned 32-bit integer
        GANSSAuxiliaryInformation
    rrlp.ganssBadSignalList  ganssBadSignalList
        Unsigned 32-bit integer
        SeqOfBadSignalElement
    rrlp.ganssBeginTime  ganssBeginTime
        No value
        GANSSEphemerisExtensionTime
    rrlp.ganssCarrierPhaseMeasurementRequest  ganssCarrierPhaseMeasurementRequest
        No value
    rrlp.ganssClockModel  ganssClockModel
        Unsigned 32-bit integer
    rrlp.ganssClockModelChoice  ganssClockModelChoice
        Byte array
        GANSSModelID
    rrlp.ganssCodePhaseAmbiguity  ganssCodePhaseAmbiguity
        Unsigned 32-bit integer
        INTEGER_0_127
    rrlp.ganssCommonAssistData  ganssCommonAssistData
        No value
    rrlp.ganssDataBitAssist  ganssDataBitAssist
        No value
    rrlp.ganssDataBits  ganssDataBits
        Unsigned 32-bit integer
        SeqOf_GANSSDataBits
    rrlp.ganssDataBitsSatList  ganssDataBitsSatList
        Unsigned 32-bit integer
        SeqOfGanssDataBitsElement
    rrlp.ganssDataBitsSgnList  ganssDataBitsSgnList
        Unsigned 32-bit integer
        Seq_OfGANSSDataBitsSgn
    rrlp.ganssDay  ganssDay
        Unsigned 32-bit integer
        INTEGER_0_8191
    rrlp.ganssDeltaElementList  ganssDeltaElementList
        Unsigned 32-bit integer
    rrlp.ganssDeltaEpochHeader  ganssDeltaEpochHeader
        No value
    rrlp.ganssDiffCorrections  ganssDiffCorrections
        No value
    rrlp.ganssDiffCorrectionsValidityPeriod  ganssDiffCorrectionsValidityPeriod
        Unsigned 32-bit integer
    rrlp.ganssEarthOrientParam  ganssEarthOrientParam
        No value
    rrlp.ganssEndTime  ganssEndTime
        No value
        GANSSEphemerisExtensionTime
    rrlp.ganssEphExtDay  ganssEphExtDay
        Unsigned 32-bit integer
        INTEGER_0_8191
    rrlp.ganssEphExtTOD  ganssEphExtTOD
        Unsigned 32-bit integer
        GANSSTOD
    rrlp.ganssEphemerisExtCheck  ganssEphemerisExtCheck
        No value
        GANSSEphemerisExtensionCheck
    rrlp.ganssEphemerisExtension  ganssEphemerisExtension
        No value
    rrlp.ganssEphemerisHeader  ganssEphemerisHeader
        No value
        GANSSEphemerisExtensionHeader
    rrlp.ganssGenericAssistDataList  ganssGenericAssistDataList
        Unsigned 32-bit integer
        SeqOfGANSSGenericAssistDataElement
    rrlp.ganssID  ganssID
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.ganssID1  ganssID1
        Unsigned 32-bit integer
        GANSS_ID1
    rrlp.ganssID3  ganssID3
        Unsigned 32-bit integer
        GANSS_ID3
    rrlp.ganssIonoModel  ganssIonoModel
        No value
        GANSSIonosphereModel
    rrlp.ganssIonoStormFlags  ganssIonoStormFlags
        No value
    rrlp.ganssIonosphericModel  ganssIonosphericModel
        No value
    rrlp.ganssLocationInfo  ganssLocationInfo
        No value
    rrlp.ganssMeasureInfo  ganssMeasureInfo
        No value
    rrlp.ganssMsrSetList  ganssMsrSetList
        Unsigned 32-bit integer
        SeqOfGANSS_MsrSetElement
    rrlp.ganssMultiFreqMeasurementRequest  ganssMultiFreqMeasurementRequest
        No value
    rrlp.ganssNavigationModel  ganssNavigationModel
        No value
        GANSSNavModel
    rrlp.ganssOrbitModel  ganssOrbitModel
        Unsigned 32-bit integer
    rrlp.ganssPositionMethod  ganssPositionMethod
        Byte array
        GANSSPositioningMethod
    rrlp.ganssRealTimeIntegrity  ganssRealTimeIntegrity
        No value
    rrlp.ganssRefLocation  ganssRefLocation
        No value
    rrlp.ganssRefMeasAssistList  ganssRefMeasAssistList
        Unsigned 32-bit integer
        SeqOfGANSSRefMeasurementElement
    rrlp.ganssRefMeasurementAssist  ganssRefMeasurementAssist
        No value
    rrlp.ganssRefTimeInfo  ganssRefTimeInfo
        No value
    rrlp.ganssReferenceSet  ganssReferenceSet
        Unsigned 32-bit integer
        SeqOfGANSSRefOrbit
    rrlp.ganssReferenceTime  ganssReferenceTime
        No value
    rrlp.ganssSatEventsInfo  ganssSatEventsInfo
        No value
    rrlp.ganssSatelliteList  ganssSatelliteList
        Unsigned 32-bit integer
        SeqOfGANSSSatelliteElement
    rrlp.ganssSignalID  ganssSignalID
        Unsigned 32-bit integer
    rrlp.ganssSignalType  ganssSignalType
        Unsigned 32-bit integer
        GANSSSignalID
    rrlp.ganssStatusHealth  ganssStatusHealth
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.ganssTOD  ganssTOD
        Unsigned 32-bit integer
    rrlp.ganssTODFrac  ganssTODFrac
        Unsigned 32-bit integer
        INTEGER_0_16384
    rrlp.ganssTODGSMTimeAssociationMeasurementRequest  ganssTODGSMTimeAssociationMeasurementRequest
        No value
    rrlp.ganssTODUncertainty  ganssTODUncertainty
        Unsigned 32-bit integer
    rrlp.ganssTOD_GSMTimeAssociation  ganssTOD-GSMTimeAssociation
        No value
    rrlp.ganssTODm  ganssTODm
        Unsigned 32-bit integer
    rrlp.ganssTimeID  ganssTimeID
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.ganssTimeModel  ganssTimeModel
        Unsigned 32-bit integer
        SeqOfGANSSTimeModel
    rrlp.ganssTimeModelRefTime  ganssTimeModelRefTime
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrlp.ganssUTCModel  ganssUTCModel
        No value
    rrlp.ganssUtcA0  ganssUtcA0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.ganssUtcA1  ganssUtcA1
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.ganssUtcDN  ganssUtcDN
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.ganssUtcDeltaTls  ganssUtcDeltaTls
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.ganssUtcDeltaTlsf  ganssUtcDeltaTlsf
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.ganssUtcTot  ganssUtcTot
        Unsigned 32-bit integer
        INTEGER_0_255
    rrlp.ganssUtcWNlsf  ganssUtcWNlsf
        Unsigned 32-bit integer
        INTEGER_0_255
    rrlp.ganssUtcWNt  ganssUtcWNt
        Unsigned 32-bit integer
        INTEGER_0_255
    rrlp.ganss_AssistData  ganss-AssistData
        No value
    rrlp.ganss_MsrElementList  ganss-MsrElementList
        Unsigned 32-bit integer
        SeqOfGANSS_MsrElement
    rrlp.ganss_SgnList  ganss-SgnList
        Unsigned 32-bit integer
        SeqOfGANSS_SgnElement
    rrlp.ganss_SgnTypeList  ganss-SgnTypeList
        Unsigned 32-bit integer
        SeqOfGANSS_SgnTypeElement
    rrlp.ganss_controlHeader  ganss-controlHeader
        No value
    rrlp.ganssephemerisDeltasMatrix  ganssephemerisDeltasMatrix
        Unsigned 32-bit integer
        GANSSEphemerisDeltaMatrix
    rrlp.gloAlmCA  gloAlmCA
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.gloAlmDeltaIa  gloAlmDeltaIa
        Signed 32-bit integer
        INTEGER_M131072_131071
    rrlp.gloAlmDeltaTA  gloAlmDeltaTA
        Signed 32-bit integer
        INTEGER_M2097152_2097151
    rrlp.gloAlmDeltaTdotA  gloAlmDeltaTdotA
        Signed 32-bit integer
        INTEGER_M64_63
    rrlp.gloAlmEpsilonA  gloAlmEpsilonA
        Unsigned 32-bit integer
        INTEGER_0_32767
    rrlp.gloAlmHA  gloAlmHA
        Unsigned 32-bit integer
        INTEGER_0_31
    rrlp.gloAlmLambdaA  gloAlmLambdaA
        Signed 32-bit integer
        INTEGER_M1048576_1048575
    rrlp.gloAlmMA  gloAlmMA
        Byte array
        BIT_STRING_SIZE_2
    rrlp.gloAlmNA  gloAlmNA
        Unsigned 32-bit integer
        INTEGER_1_1461
    rrlp.gloAlmOmegaA  gloAlmOmegaA
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.gloAlmTauA  gloAlmTauA
        Signed 32-bit integer
        INTEGER_M512_511
    rrlp.gloAlmnA  gloAlmnA
        Unsigned 32-bit integer
        INTEGER_1_24
    rrlp.gloAlmtlambdaA  gloAlmtlambdaA
        Unsigned 32-bit integer
        INTEGER_0_2097151
    rrlp.gloDeltaTau  gloDeltaTau
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.gloEn  gloEn
        Unsigned 32-bit integer
        INTEGER_0_31
    rrlp.gloGamma  gloGamma
        Signed 32-bit integer
        INTEGER_M1024_1023
    rrlp.gloM  gloM
        Unsigned 32-bit integer
        INTEGER_0_3
    rrlp.gloP1  gloP1
        Byte array
        BIT_STRING_SIZE_2
    rrlp.gloP2  gloP2
        Boolean
        BOOLEAN
    rrlp.gloTau  gloTau
        Signed 32-bit integer
        INTEGER_M2097152_2097151
    rrlp.gloX  gloX
        Signed 32-bit integer
        INTEGER_M67108864_67108863
    rrlp.gloXdot  gloXdot
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.gloXdotdot  gloXdotdot
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.gloY  gloY
        Signed 32-bit integer
        INTEGER_M67108864_67108863
    rrlp.gloYdot  gloYdot
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.gloYdotdot  gloYdotdot
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.gloZ  gloZ
        Signed 32-bit integer
        INTEGER_M67108864_67108863
    rrlp.gloZdot  gloZdot
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.gloZdotdot  gloZdotdot
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.glonass  glonass
        Boolean
    rrlp.glonassClockModel  glonassClockModel
        No value
    rrlp.glonassECEF  glonassECEF
        No value
        NavModel_GLONASSecef
    rrlp.gnssTOID  gnssTOID
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.gps  gps
        Boolean
    rrlp.gpsAssistance  gpsAssistance
        Byte array
    rrlp.gpsAssistanceData  gpsAssistanceData
        Byte array
    rrlp.gpsBeginTime  gpsBeginTime
        No value
        GPSEphemerisExtensionTime
    rrlp.gpsBitNumber  gpsBitNumber
        Unsigned 32-bit integer
        INTEGER_0_3
    rrlp.gpsClockModel  gpsClockModel
        No value
    rrlp.gpsDeltaElementList  gpsDeltaElementList
        Unsigned 32-bit integer
    rrlp.gpsDeltaEpochHeader  gpsDeltaEpochHeader
        No value
    rrlp.gpsEndTime  gpsEndTime
        No value
        GPSEphemerisExtensionTime
    rrlp.gpsEphemerisExtension  gpsEphemerisExtension
        No value
    rrlp.gpsEphemerisExtensionCheck  gpsEphemerisExtensionCheck
        No value
    rrlp.gpsEphemerisHeader  gpsEphemerisHeader
        No value
        GPSEphemerisExtensionHeader
    rrlp.gpsMsrSetList  gpsMsrSetList
        Unsigned 32-bit integer
        SeqOfGPS_MsrSetElement
    rrlp.gpsOrbitModel  gpsOrbitModel
        No value
        ReferenceNavModel
    rrlp.gpsReferenceSet  gpsReferenceSet
        Unsigned 32-bit integer
        SeqOfGPSRefOrbit
    rrlp.gpsReferenceTimeUncertainty  gpsReferenceTimeUncertainty
        Unsigned 32-bit integer
    rrlp.gpsSatEventsInfo  gpsSatEventsInfo
        No value
    rrlp.gpsTOW  gpsTOW
        Unsigned 32-bit integer
        INTEGER_0_14399999
    rrlp.gpsTOW23b  gpsTOW23b
        Unsigned 32-bit integer
    rrlp.gpsTime  gpsTime
        No value
    rrlp.gpsTimeAssistanceMeasurementRequest  gpsTimeAssistanceMeasurementRequest
        No value
    rrlp.gpsTowAssist  gpsTowAssist
        Unsigned 32-bit integer
    rrlp.gpsTowSubms  gpsTowSubms
        Unsigned 32-bit integer
        INTEGER_0_9999
    rrlp.gpsWeek  gpsWeek
        Unsigned 32-bit integer
    rrlp.gps_AssistData  gps-AssistData
        No value
    rrlp.gps_MeasureInfo  gps-MeasureInfo
        No value
    rrlp.gps_msrList  gps-msrList
        Unsigned 32-bit integer
        SeqOfGPS_MsrElement
    rrlp.gpsephemerisDeltaMatrix  gpsephemerisDeltaMatrix
        Unsigned 32-bit integer
    rrlp.gsmTime  gsmTime
        No value
    rrlp.identityNotPresent  identityNotPresent
        No value
        OTD_Measurement
    rrlp.identityPresent  identityPresent
        No value
        OTD_MeasurementWithID
    rrlp.intCodePhase  intCodePhase
        Unsigned 32-bit integer
        INTEGER_0_19
    rrlp.integerCodePhase  integerCodePhase
        Unsigned 32-bit integer
        INTEGER_0_127
    rrlp.iod  iod
        Unsigned 32-bit integer
        INTEGER_0_1023
    rrlp.iodMSB  iodMSB
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.ioda  ioda
        Unsigned 32-bit integer
        INTEGER_0_3
    rrlp.iode  iode
        Unsigned 32-bit integer
        INTEGER_0_239
    rrlp.ionoModel  ionoModel
        No value
        IonosphericModel
    rrlp.ionoStormFlag1  ionoStormFlag1
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.ionoStormFlag2  ionoStormFlag2
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.ionoStormFlag3  ionoStormFlag3
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.ionoStormFlag4  ionoStormFlag4
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.ionoStormFlag5  ionoStormFlag5
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.ionosphericModel  ionosphericModel
        No value
    rrlp.kepAlmanacAF0  kepAlmanacAF0
        Signed 32-bit integer
        INTEGER_M8192_8191
    rrlp.kepAlmanacAF1  kepAlmanacAF1
        Signed 32-bit integer
        INTEGER_M1024_1023
    rrlp.kepAlmanacAPowerHalf  kepAlmanacAPowerHalf
        Signed 32-bit integer
        INTEGER_M65536_65535
    rrlp.kepAlmanacDeltaI  kepAlmanacDeltaI
        Signed 32-bit integer
        INTEGER_M1024_1023
    rrlp.kepAlmanacE  kepAlmanacE
        Unsigned 32-bit integer
        INTEGER_0_2047
    rrlp.kepAlmanacM0  kepAlmanacM0
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.kepAlmanacOmega0  kepAlmanacOmega0
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.kepAlmanacOmegaDot  kepAlmanacOmegaDot
        Signed 32-bit integer
        INTEGER_M1024_1023
    rrlp.kepAlmanacW  kepAlmanacW
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.kepSVHealth  kepSVHealth
        Unsigned 32-bit integer
        INTEGER_0_15
    rrlp.keplerAPowerHalf  keplerAPowerHalf
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrlp.keplerCic  keplerCic
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.keplerCis  keplerCis
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.keplerCrc  keplerCrc
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.keplerCrs  keplerCrs
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.keplerCuc  keplerCuc
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.keplerCus  keplerCus
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.keplerDeltaN  keplerDeltaN
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.keplerE  keplerE
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrlp.keplerI0  keplerI0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.keplerIDot  keplerIDot
        Signed 32-bit integer
        INTEGER_M8192_8191
    rrlp.keplerM0  keplerM0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.keplerOmega0  keplerOmega0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.keplerOmegaDot  keplerOmegaDot
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.keplerToe  keplerToe
        Unsigned 32-bit integer
        INTEGER_0_16383
    rrlp.keplerW  keplerW
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.keplerianAlmanacSet  keplerianAlmanacSet
        No value
        Almanac_KeplerianSet
    rrlp.keplerianGLONASS  keplerianGLONASS
        No value
        Almanac_GlonassAlmanacSet
    rrlp.keplerianMidiAlmanac  keplerianMidiAlmanac
        No value
        Almanac_MidiAlmanacSet
    rrlp.keplerianNAVAlmanac  keplerianNAVAlmanac
        No value
        Almanac_NAVKeplerianSet
    rrlp.keplerianReducedAlmanac  keplerianReducedAlmanac
        No value
        Almanac_ReducedKeplerianSet
    rrlp.keplerianSet  keplerianSet
        No value
        NavModel_KeplerianSet
    rrlp.kp  kp
        Byte array
        BIT_STRING_SIZE_2
    rrlp.locErrorReason  locErrorReason
        Unsigned 32-bit integer
    rrlp.locationError  locationError
        No value
    rrlp.locationInfo  locationInfo
        No value
    rrlp.masas  masas
        Boolean
    rrlp.measureResponseTime  measureResponseTime
        Unsigned 32-bit integer
    rrlp.methodType  methodType
        Unsigned 32-bit integer
    rrlp.midiAlmDeltaI  midiAlmDeltaI
        Signed 32-bit integer
        INTEGER_M1024_1023
    rrlp.midiAlmE  midiAlmE
        Unsigned 32-bit integer
        INTEGER_0_2047
    rrlp.midiAlmL1Health  midiAlmL1Health
        Boolean
        BOOLEAN
    rrlp.midiAlmL2Health  midiAlmL2Health
        Boolean
        BOOLEAN
    rrlp.midiAlmL5Health  midiAlmL5Health
        Boolean
        BOOLEAN
    rrlp.midiAlmMo  midiAlmMo
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.midiAlmOmega  midiAlmOmega
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.midiAlmOmega0  midiAlmOmega0
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.midiAlmOmegaDot  midiAlmOmegaDot
        Signed 32-bit integer
        INTEGER_M1024_1023
    rrlp.midiAlmSqrtA  midiAlmSqrtA
        Unsigned 32-bit integer
        INTEGER_0_131071
    rrlp.midiAlmaf0  midiAlmaf0
        Signed 32-bit integer
        INTEGER_M1024_1023
    rrlp.midiAlmaf1  midiAlmaf1
        Signed 32-bit integer
        INTEGER_M512_511
    rrlp.model1  model1
        Boolean
    rrlp.model2  model2
        Boolean
    rrlp.model3  model3
        Boolean
    rrlp.model4  model4
        Boolean
    rrlp.model5  model5
        Boolean
    rrlp.model6  model6
        Boolean
    rrlp.model7  model7
        Boolean
    rrlp.model8  model8
        Boolean
    rrlp.modernizedGPS  modernizedGPS
        Boolean
    rrlp.moreAssDataToBeSent  moreAssDataToBeSent
        Unsigned 32-bit integer
    rrlp.mpathDet  mpathDet
        Unsigned 32-bit integer
        MpathIndic
    rrlp.mpathIndic  mpathIndic
        Unsigned 32-bit integer
    rrlp.msAssisted  msAssisted
        No value
        AccuracyOpt
    rrlp.msAssistedEOTD  msAssistedEOTD
        Boolean
    rrlp.msAssistedGPS  msAssistedGPS
        Boolean
    rrlp.msAssistedPref  msAssistedPref
        Unsigned 32-bit integer
        Accuracy
    rrlp.msBased  msBased
        Unsigned 32-bit integer
        Accuracy
    rrlp.msBasedEOTD  msBasedEOTD
        Boolean
    rrlp.msBasedGPS  msBasedGPS
        Boolean
    rrlp.msBasedPref  msBasedPref
        Unsigned 32-bit integer
        Accuracy
    rrlp.msrAssistData  msrAssistData
        No value
    rrlp.msrAssistData_R98_ExpOTD  msrAssistData-R98-ExpOTD
        No value
    rrlp.msrAssistList  msrAssistList
        Unsigned 32-bit integer
        SeqOfMsrAssistBTS
    rrlp.msrAssistList_R98_ExpOTD  msrAssistList-R98-ExpOTD
        Unsigned 32-bit integer
        SeqOfMsrAssistBTS_R98_ExpOTD
    rrlp.msrPositionReq  msrPositionReq
        No value
        MsrPosition_Req
    rrlp.msrPositionRsp  msrPositionRsp
        No value
        MsrPosition_Rsp
    rrlp.multiFrameCarrier  multiFrameCarrier
        No value
    rrlp.multiFrameOffset  multiFrameOffset
        Unsigned 32-bit integer
    rrlp.multipleMeasurementSets  multipleMeasurementSets
        Byte array
    rrlp.multipleSets  multipleSets
        No value
    rrlp.nA  nA
        Unsigned 32-bit integer
        INTEGER_1_1461
    rrlp.navAPowerHalf  navAPowerHalf
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrlp.navAlmDeltaI  navAlmDeltaI
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.navAlmE  navAlmE
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrlp.navAlmMo  navAlmMo
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.navAlmOMEGADOT  navAlmOMEGADOT
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.navAlmOMEGAo  navAlmOMEGAo
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.navAlmOmega  navAlmOmega
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.navAlmSVHealth  navAlmSVHealth
        Unsigned 32-bit integer
        INTEGER_0_255
    rrlp.navAlmSqrtA  navAlmSqrtA
        Unsigned 32-bit integer
        INTEGER_0_16777215
    rrlp.navAlmaf0  navAlmaf0
        Signed 32-bit integer
        INTEGER_M1024_1023
    rrlp.navAlmaf1  navAlmaf1
        Signed 32-bit integer
        INTEGER_M1024_1023
    rrlp.navCic  navCic
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.navCis  navCis
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.navClockModel  navClockModel
        No value
    rrlp.navCrc  navCrc
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.navCrs  navCrs
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.navCuc  navCuc
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.navCus  navCus
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.navDeltaN  navDeltaN
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.navE  navE
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rrlp.navFitFlag  navFitFlag
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.navI0  navI0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.navIDot  navIDot
        Signed 32-bit integer
        INTEGER_M8192_8191
    rrlp.navKeplerianSet  navKeplerianSet
        No value
        NavModel_NAVKeplerianSet
    rrlp.navM0  navM0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.navModelList  navModelList
        Unsigned 32-bit integer
        SeqOfNavModelElement
    rrlp.navOmega  navOmega
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.navOmegaA0  navOmegaA0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.navOmegaADot  navOmegaADot
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.navTgd  navTgd
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.navToc  navToc
        Unsigned 32-bit integer
        INTEGER_0_37799
    rrlp.navToe  navToe
        Unsigned 32-bit integer
        INTEGER_0_37799
    rrlp.navURA  navURA
        Unsigned 32-bit integer
        INTEGER_0_15
    rrlp.navaf0  navaf0
        Signed 32-bit integer
        INTEGER_M2097152_2097151
    rrlp.navaf1  navaf1
        Signed 32-bit integer
        INTEGER_M32768_32767
    rrlp.navaf2  navaf2
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.navigationModel  navigationModel
        No value
    rrlp.navigationmodel  navigationmodel
        Boolean
    rrlp.nborTimeSlot  nborTimeSlot
        Unsigned 32-bit integer
        ModuloTimeSlot
    rrlp.nbrOfMeasurements  nbrOfMeasurements
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.nbrOfReferenceBTSs  nbrOfReferenceBTSs
        Unsigned 32-bit integer
        INTEGER_1_3
    rrlp.nbrOfSets  nbrOfSets
        Unsigned 32-bit integer
        INTEGER_2_3
    rrlp.neighborIdentity  neighborIdentity
        Unsigned 32-bit integer
    rrlp.newNaviModelUC  newNaviModelUC
        No value
        UncompressedEphemeris
    rrlp.newSatelliteAndModelUC  newSatelliteAndModelUC
        No value
        UncompressedEphemeris
    rrlp.nonBroadcastIndFlag  nonBroadcastIndFlag
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.nonGANSSpositionMethods  nonGANSSpositionMethods
        Byte array
    rrlp.notPresent  notPresent
        No value
    rrlp.numOfMeasurements  numOfMeasurements
        Unsigned 32-bit integer
    rrlp.oldSatelliteAndModel  oldSatelliteAndModel
        No value
    rrlp.otdMsrFirstSets  otdMsrFirstSets
        No value
        OTD_MsrElementFirst
    rrlp.otdMsrFirstSets_R98_Ext  otdMsrFirstSets-R98-Ext
        No value
        OTD_MsrElementFirst_R98_Ext
    rrlp.otdMsrRestSets  otdMsrRestSets
        Unsigned 32-bit integer
        SeqOfOTD_MsrElementRest
    rrlp.otdValue  otdValue
        Unsigned 32-bit integer
    rrlp.otd_FirstSetMsrs  otd-FirstSetMsrs
        Unsigned 32-bit integer
        SeqOfOTD_FirstSetMsrs
    rrlp.otd_FirstSetMsrs_R98_Ext  otd-FirstSetMsrs-R98-Ext
        Unsigned 32-bit integer
        SeqOfOTD_FirstSetMsrs_R98_Ext
    rrlp.otd_MeasureInfo  otd-MeasureInfo
        No value
    rrlp.otd_MeasureInfo_5_Ext  otd-MeasureInfo-5-Ext
        Unsigned 32-bit integer
    rrlp.otd_MeasureInfo_R98_Ext  otd-MeasureInfo-R98-Ext
        No value
    rrlp.otd_MsrsOfOtherSets  otd-MsrsOfOtherSets
        Unsigned 32-bit integer
        SeqOfOTD_MsrsOfOtherSets
    rrlp.pcs_Extensions  pcs-Extensions
        No value
    rrlp.pmX  pmX
        Signed 32-bit integer
        INTEGER_M1048576_1048575
    rrlp.pmXdot  pmXdot
        Signed 32-bit integer
        INTEGER_M16384_16383
    rrlp.pmY  pmY
        Signed 32-bit integer
        INTEGER_M1048576_1048575
    rrlp.pmYdot  pmYdot
        Signed 32-bit integer
        INTEGER_M16384_16383
    rrlp.posCapabilities  posCapabilities
        No value
    rrlp.posCapabilityReq  posCapabilityReq
        No value
        PosCapability_Req
    rrlp.posCapabilityRsp  posCapabilityRsp
        No value
        PosCapability_Rsp
    rrlp.posData  posData
        Byte array
        PositionData
    rrlp.posEstimate  posEstimate
        Byte array
        Ext_GeographicalInformation
    rrlp.positionInstruct  positionInstruct
        No value
    rrlp.positionMethod  positionMethod
        Unsigned 32-bit integer
    rrlp.present  present
        No value
        AssistBTSData
    rrlp.privateExtensionList  privateExtensionList
        Unsigned 32-bit integer
    rrlp.protocolError  protocolError
        No value
    rrlp.pseuRangeRMSErr  pseuRangeRMSErr
        Unsigned 32-bit integer
        INTEGER_0_63
    rrlp.pseudoRangeCor  pseudoRangeCor
        Signed 32-bit integer
        INTEGER_M2047_2047
    rrlp.qzss  qzss
        Boolean
    rrlp.rangeRateCor  rangeRateCor
        Signed 32-bit integer
        INTEGER_M127_127
    rrlp.realTimeIntegrity  realTimeIntegrity
        Unsigned 32-bit integer
        SeqOf_BadSatelliteSet
    rrlp.redAlmDeltaA  redAlmDeltaA
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.redAlmL1Health  redAlmL1Health
        Boolean
        BOOLEAN
    rrlp.redAlmL2Health  redAlmL2Health
        Boolean
        BOOLEAN
    rrlp.redAlmL5Health  redAlmL5Health
        Boolean
        BOOLEAN
    rrlp.redAlmOmega0  redAlmOmega0
        Signed 32-bit integer
        INTEGER_M64_63
    rrlp.redAlmPhi0  redAlmPhi0
        Signed 32-bit integer
        INTEGER_M64_63
    rrlp.refBTSList  refBTSList
        Unsigned 32-bit integer
        SeqOfReferenceIdentityType
    rrlp.refFrame  refFrame
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrlp.refFrameNumber  refFrameNumber
        Unsigned 32-bit integer
        INTEGER_0_42431
    rrlp.refLocation  refLocation
        No value
    rrlp.refQuality  refQuality
        Unsigned 32-bit integer
    rrlp.referenceAssistData  referenceAssistData
        No value
    rrlp.referenceCI  referenceCI
        Unsigned 32-bit integer
        CellID
    rrlp.referenceFN  referenceFN
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrlp.referenceFNMSB  referenceFNMSB
        Unsigned 32-bit integer
        INTEGER_0_63
    rrlp.referenceFrame  referenceFrame
        No value
    rrlp.referenceFrameMSB  referenceFrameMSB
        Unsigned 32-bit integer
        INTEGER_0_63
    rrlp.referenceIdentity  referenceIdentity
        No value
    rrlp.referenceLAC  referenceLAC
        Unsigned 32-bit integer
        LAC
    rrlp.referenceLocation  referenceLocation
        Boolean
    rrlp.referenceMeasurementInformation  referenceMeasurementInformation
        Boolean
    rrlp.referenceNumber  referenceNumber
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.referenceRelation  referenceRelation
        Unsigned 32-bit integer
    rrlp.referenceTime  referenceTime
        No value
    rrlp.referenceTimeSlot  referenceTimeSlot
        Unsigned 32-bit integer
        ModuloTimeSlot
    rrlp.referenceWGS84  referenceWGS84
        No value
    rrlp.rel5_AssistanceData_Extension  rel5-AssistanceData-Extension
        No value
    rrlp.rel5_MsrPosition_Req_extension  rel5-MsrPosition-Req-extension
        No value
    rrlp.rel7_AssistanceData_Extension  rel7-AssistanceData-Extension
        No value
    rrlp.rel7_MsrPosition_Req_extension  rel7-MsrPosition-Req-extension
        No value
    rrlp.rel98_AssistanceData_Extension  rel98-AssistanceData-Extension
        No value
    rrlp.rel98_Ext_ExpOTD  rel98-Ext-ExpOTD
        No value
    rrlp.rel98_MsrPosition_Req_extension  rel98-MsrPosition-Req-extension
        No value
    rrlp.rel_5_MsrPosition_Rsp_Extension  rel-5-MsrPosition-Rsp-Extension
        No value
    rrlp.rel_5_ProtocolError_Extension  rel-5-ProtocolError-Extension
        No value
    rrlp.rel_7_MsrPosition_Rsp_Extension  rel-7-MsrPosition-Rsp-Extension
        No value
    rrlp.rel_98_Ext_MeasureInfo  rel-98-Ext-MeasureInfo
        No value
        T_rel_98_Ext_MeasureInfo
    rrlp.rel_98_MsrPosition_Rsp_Extension  rel-98-MsrPosition-Rsp-Extension
        No value
    rrlp.relativeAlt  relativeAlt
        Signed 32-bit integer
    rrlp.relativeEast  relativeEast
        Signed 32-bit integer
        RelDistance
    rrlp.relativeNorth  relativeNorth
        Signed 32-bit integer
        RelDistance
    rrlp.requestIndex  requestIndex
        Unsigned 32-bit integer
    rrlp.requiredResponseTime  requiredResponseTime
        Unsigned 32-bit integer
    rrlp.reserved1  reserved1
        Unsigned 32-bit integer
        INTEGER_0_8388607
    rrlp.reserved2  reserved2
        Unsigned 32-bit integer
        INTEGER_0_16777215
    rrlp.reserved3  reserved3
        Unsigned 32-bit integer
        INTEGER_0_16777215
    rrlp.reserved4  reserved4
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrlp.roughRTD  roughRTD
        Unsigned 32-bit integer
    rrlp.satList  satList
        Unsigned 32-bit integer
        SeqOfSatElement
    rrlp.satStatus  satStatus
        Unsigned 32-bit integer
    rrlp.satelliteID  satelliteID
        Unsigned 32-bit integer
    rrlp.sbagYgDotDot  sbagYgDotDot
        Signed 32-bit integer
        INTEGER_M512_511
    rrlp.sbas  sbas
        Boolean
    rrlp.sbasAccuracy  sbasAccuracy
        Byte array
        BIT_STRING_SIZE_4
    rrlp.sbasAgf1  sbasAgf1
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.sbasAgfo  sbasAgfo
        Signed 32-bit integer
        INTEGER_M2048_2047
    rrlp.sbasAlmDataID  sbasAlmDataID
        Unsigned 32-bit integer
        INTEGER_0_3
    rrlp.sbasAlmHealth  sbasAlmHealth
        Byte array
        BIT_STRING_SIZE_8
    rrlp.sbasAlmTo  sbasAlmTo
        Unsigned 32-bit integer
        INTEGER_0_2047
    rrlp.sbasAlmXg  sbasAlmXg
        Signed 32-bit integer
        INTEGER_M16384_16383
    rrlp.sbasAlmXgdot  sbasAlmXgdot
        Signed 32-bit integer
        INTEGER_M4_3
    rrlp.sbasAlmYg  sbasAlmYg
        Signed 32-bit integer
        INTEGER_M16384_16383
    rrlp.sbasAlmYgDot  sbasAlmYgDot
        Signed 32-bit integer
        INTEGER_M4_3
    rrlp.sbasAlmZg  sbasAlmZg
        Signed 32-bit integer
        INTEGER_M256_255
    rrlp.sbasAlmZgDot  sbasAlmZgDot
        Signed 32-bit integer
        INTEGER_M8_7
    rrlp.sbasClockModel  sbasClockModel
        No value
    rrlp.sbasECEF  sbasECEF
        No value
        NavModel_SBASecef
    rrlp.sbasID  sbasID
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.sbasTo  sbasTo
        Unsigned 32-bit integer
        INTEGER_0_5399
    rrlp.sbasXg  sbasXg
        Signed 32-bit integer
        INTEGER_M536870912_536870911
    rrlp.sbasXgDot  sbasXgDot
        Signed 32-bit integer
        INTEGER_M65536_65535
    rrlp.sbasXgDotDot  sbasXgDotDot
        Signed 32-bit integer
        INTEGER_M512_511
    rrlp.sbasYg  sbasYg
        Signed 32-bit integer
        INTEGER_M536870912_536870911
    rrlp.sbasYgDot  sbasYgDot
        Signed 32-bit integer
        INTEGER_M65536_65535
    rrlp.sbasZg  sbasZg
        Signed 32-bit integer
        INTEGER_M16777216_16777215
    rrlp.sbasZgDot  sbasZgDot
        Signed 32-bit integer
        INTEGER_M131072_131071
    rrlp.sbasZgDotDot  sbasZgDotDot
        Signed 32-bit integer
        INTEGER_M512_511
    rrlp.scale_delta_cic  scale-delta-cic
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_cis  scale-delta-cis
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_crc  scale-delta-crc
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_crs  scale-delta-crs
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_cuc  scale-delta-cuc
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_cus  scale-delta-cus
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_deltaN  scale-delta-deltaN
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_e  scale-delta-e
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_i0  scale-delta-i0
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_idot  scale-delta-idot
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_m0  scale-delta-m0
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_omega  scale-delta-omega
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_omega0  scale-delta-omega0
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_omegadot  scale-delta-omegadot
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_sqrtA  scale-delta-sqrtA
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_tgd  scale-delta-tgd
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_tgd1  scale-delta-tgd1
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.scale_delta_tgd2  scale-delta-tgd2
        Signed 32-bit integer
        INTEGER_M16_15
    rrlp.sgnTypeList  sgnTypeList
        Unsigned 32-bit integer
        SeqOfSgnTypeElement
    rrlp.signal1  signal1
        Boolean
    rrlp.signal2  signal2
        Boolean
    rrlp.signal3  signal3
        Boolean
    rrlp.signal4  signal4
        Boolean
    rrlp.signal5  signal5
        Boolean
    rrlp.signal6  signal6
        Boolean
    rrlp.signal7  signal7
        Boolean
    rrlp.signal8  signal8
        Boolean
    rrlp.signalsAvailable  signalsAvailable
        Byte array
        GANSSSignals
    rrlp.smlc_code  smlc-code
        Unsigned 32-bit integer
        INTEGER_0_63
    rrlp.specificGANSSAssistance  specificGANSSAssistance
        Unsigned 32-bit integer
    rrlp.stanClockAF0  stanClockAF0
        Signed 32-bit integer
        INTEGER_M134217728_134217727
    rrlp.stanClockAF1  stanClockAF1
        Signed 32-bit integer
        INTEGER_M131072_131071
    rrlp.stanClockAF2  stanClockAF2
        Signed 32-bit integer
        INTEGER_M2048_2047
    rrlp.stanClockTgd  stanClockTgd
        Signed 32-bit integer
        INTEGER_M512_511
    rrlp.stanClockToc  stanClockToc
        Unsigned 32-bit integer
        INTEGER_0_16383
    rrlp.stanModelID  stanModelID
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.standalone  standalone
        Boolean
    rrlp.standaloneGPS  standaloneGPS
        Boolean
    rrlp.standardClockModelList  standardClockModelList
        Unsigned 32-bit integer
        SeqOfStandardClockModelElement
    rrlp.stationaryIndication  stationaryIndication
        Unsigned 32-bit integer
        INTEGER_0_1
    rrlp.status  status
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.stdOfEOTD  stdOfEOTD
        Unsigned 32-bit integer
        INTEGER_0_31
    rrlp.stdResolution  stdResolution
        Unsigned 32-bit integer
    rrlp.svHealth  svHealth
        Byte array
        BIT_STRING_SIZE_5
    rrlp.svHealthMSB  svHealthMSB
        Byte array
        BIT_STRING_SIZE_1
    rrlp.svID  svID
        Unsigned 32-bit integer
    rrlp.svid  svid
        Unsigned 32-bit integer
        SatelliteID
    rrlp.systemInfoAssistData  systemInfoAssistData
        No value
    rrlp.systemInfoAssistData_R98_ExpOTD  systemInfoAssistData-R98-ExpOTD
        No value
    rrlp.systemInfoAssistList  systemInfoAssistList
        Unsigned 32-bit integer
        SeqOfSystemInfoAssistBTS
    rrlp.systemInfoAssistListR98_ExpOTD  systemInfoAssistListR98-ExpOTD
        Unsigned 32-bit integer
        SeqOfSystemInfoAssistBTS_R98_ExpOTD
    rrlp.systemInfoIndex  systemInfoIndex
        Unsigned 32-bit integer
    rrlp.tA0  tA0
        Signed 32-bit integer
    rrlp.tA1  tA1
        Signed 32-bit integer
    rrlp.tA2  tA2
        Signed 32-bit integer
    rrlp.taCorrection  taCorrection
        Unsigned 32-bit integer
        INTEGER_0_960
    rrlp.tauC  tauC
        Signed 32-bit integer
    rrlp.teop  teop
        Unsigned 32-bit integer
        INTEGER_0_65535
    rrlp.tgd  tgd
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.threeDLocation  threeDLocation
        Byte array
        Ext_GeographicalInformation
    rrlp.timeAssistanceMeasurements  timeAssistanceMeasurements
        No value
        GPSTimeAssistanceMeasurements
    rrlp.timeAtEstimation  timeAtEstimation
        No value
        GANSSEphemerisExtensionTime
    rrlp.timeModelGNSS-GNSS  timeModelGNSS-GNSS
        Boolean
    rrlp.timeModelGNSS-UTC  timeModelGNSS-UTC
        Boolean
    rrlp.timeRelation  timeRelation
        No value
    rrlp.timeSlot  timeSlot
        Unsigned 32-bit integer
    rrlp.timeSlotScheme  timeSlotScheme
        Unsigned 32-bit integer
    rrlp.timeofEstimation  timeofEstimation
        No value
        GPSEphemerisExtensionTime
    rrlp.tlmRsvdBits  tlmRsvdBits
        Unsigned 32-bit integer
        TLMReservedBits
    rrlp.tlmWord  tlmWord
        Unsigned 32-bit integer
    rrlp.toa  toa
        Unsigned 32-bit integer
        INTEGER_0_255
    rrlp.toaMeasurementsOfRef  toaMeasurementsOfRef
        No value
        TOA_MeasurementsOfRef
    rrlp.transaction_ID  transaction-ID
        Unsigned 32-bit integer
        INTEGER_0_262143
    rrlp.uTCmodel  uTCmodel
        Boolean
    rrlp.udre  udre
        Unsigned 32-bit integer
        INTEGER_0_3
    rrlp.udreGrowthRate  udreGrowthRate
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.udreValidityTime  udreValidityTime
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.ulPseudoSegInd  ulPseudoSegInd
        Unsigned 32-bit integer
    rrlp.useMultipleSets  useMultipleSets
        Unsigned 32-bit integer
    rrlp.utcA0  utcA0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rrlp.utcA0wnt  utcA0wnt
        Signed 32-bit integer
    rrlp.utcA1  utcA1
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.utcA1wnt  utcA1wnt
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rrlp.utcA2  utcA2
        Signed 32-bit integer
        INTEGER_M64_63
    rrlp.utcDN  utcDN
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.utcDeltaTls  utcDeltaTls
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.utcDeltaTlsf  utcDeltaTlsf
        Signed 32-bit integer
        INTEGER_M128_127
    rrlp.utcModel  utcModel
        No value
    rrlp.utcModel2  utcModel2
        No value
        UTCmodelSet2
    rrlp.utcModel3  utcModel3
        No value
        UTCmodelSet3
    rrlp.utcModel4  utcModel4
        No value
        UTCmodelSet4
    rrlp.utcStandardID  utcStandardID
        Unsigned 32-bit integer
        INTEGER_0_7
    rrlp.utcTot  utcTot
        Unsigned 32-bit integer
        INTEGER_0_255
    rrlp.utcWNlsf  utcWNlsf
        Unsigned 32-bit integer
        INTEGER_0_255
    rrlp.utcWNot  utcWNot
        Unsigned 32-bit integer
        INTEGER_0_8191
    rrlp.utcWNt  utcWNt
        Unsigned 32-bit integer
        INTEGER_0_255
    rrlp.validityPeriod  validityPeriod
        Unsigned 32-bit integer
        INTEGER_1_8
    rrlp.velEstimate  velEstimate
        Byte array
        VelocityEstimate
    rrlp.velocityRequested  velocityRequested
        No value
    rrlp.waas  waas
        Boolean
    rrlp.weekNumber  weekNumber
        Unsigned 32-bit integer
        INTEGER_0_8191
    rrlp.wholeChips  wholeChips
        Unsigned 32-bit integer
        INTEGER_0_1022

Radio Signalling Link (RSL) (rsl)

    rsl.T_bit  T bit
        Boolean
    rsl.a1_0  A1
        Boolean
    rsl.a1_1  A1
        Boolean
    rsl.a2_0  A1
        Boolean
    rsl.a3a2  A3A2
        Unsigned 8-bit integer
    rsl.acc_del  Access Delay
        Unsigned 8-bit integer
    rsl.act_timing_adv  Actual Timing Advance
        Unsigned 8-bit integer
    rsl.alg_id  Algorithm Identifier
        Unsigned 8-bit integer
    rsl.bs_power  Power Level
        Unsigned 8-bit integer
    rsl.cause  Cause
        Unsigned 8-bit integer
    rsl.cbch_load_type  CBCH Load Type
        Boolean
    rsl.ch_ind  Channel Ind
        Unsigned 8-bit integer
    rsl.ch_needed  Channel Needed
        Unsigned 8-bit integer
    rsl.ch_no_Cbits  C-bits
        Unsigned 8-bit integer
    rsl.ch_no_TN  Time slot number (TN)
        Unsigned 8-bit integer
    rsl.ch_type  channel type
        Unsigned 8-bit integer
    rsl.class  Class
        Unsigned 8-bit integer
    rsl.cm_dtxd  DTXd
        Boolean
    rsl.cm_dtxu  DTXu
        Boolean
    rsl.cmd  Command
        Unsigned 16-bit integer
    rsl.data_rte  Data rate
        Unsigned 8-bit integer
    rsl.delay_ind  Delay IND
        Unsigned 8-bit integer
    rsl.dtxd  DTXd
        Boolean
    rsl.emlpp_prio  eMLPP Priority
        Unsigned 8-bit integer
    rsl.epc_mode  EPC mode
        Boolean
    rsl.extension_bit  Extension
        Boolean
    rsl.fpc_epc_mode  FPC-EPC mode
        Boolean
    rsl.ho_ref  Hand-over reference
        Unsigned 8-bit integer
    rsl.ie_id  Element identifier
        Unsigned 8-bit integer
    rsl.ie_length  Length
        Unsigned 16-bit integer
    rsl.interf_band  Interf Band
        Unsigned 8-bit integer
    rsl.key  KEY
        Byte array
    rsl.meas_res_no  Measurement result number
        Unsigned 8-bit integer
    rsl.ms_fpc  FPC/EPC
        Boolean
    rsl.ms_power_lev  MS power level
        Unsigned 8-bit integer
    rsl.msg_dsc  Message discriminator
        Unsigned 8-bit integer
    rsl.msg_type  Message type
        Unsigned 8-bit integer
    rsl.na  Not applicable (NA)
        Boolean
    rsl.paging_grp  Paging Group
        Unsigned 8-bit integer
    rsl.paging_load  Paging Buffer Space
        Unsigned 16-bit integer
    rsl.phy_ctx  Physical Context
        Byte array
    rsl.prio  Priority
        Unsigned 8-bit integer
    rsl.ra_if_data_rte  Radio interface data rate
        Unsigned 8-bit integer
    rsl.rach_acc_cnt  RACH Access Count
        Unsigned 16-bit integer
    rsl.rach_busy_cnt  RACH Busy Count
        Unsigned 16-bit integer
    rsl.rach_slot_cnt  RACH Slot Count
        Unsigned 16-bit integer
    rsl.rbit  R
        Boolean
    rsl.rel_mode  Release Mode
        Unsigned 8-bit integer
    rsl.req_ref_T1prim  T1'
        Unsigned 8-bit integer
    rsl.req_ref_T2  T2
        Unsigned 8-bit integer
    rsl.req_ref_T3  T3
        Unsigned 16-bit integer
    rsl.req_ref_ra  Random Access Information (RA)
        Unsigned 8-bit integer
    rsl.rtd  Round Trip Delay (RTD)
        Unsigned 8-bit integer
    rsl.rxlev_full_up  RXLEV.FULL.up
        Unsigned 8-bit integer
    rsl.rxlev_sub_up  RXLEV.SUB.up
        Unsigned 8-bit integer
    rsl.rxqual_full_up  RXQUAL.FULL.up
        Unsigned 8-bit integer
    rsl.rxqual_sub_up  RXQUAL.SUB.up
        Unsigned 8-bit integer
    rsl.sapi  SAPI
        Unsigned 8-bit integer
    rsl.sg_slt_cnt  Message Slot Count
        Unsigned 8-bit integer
    rsl.speech_coding_alg  Speech coding algorithm
        Unsigned 8-bit integer
    rsl.speech_or_data  Speech or data indicator
        Unsigned 8-bit integer
    rsl.sys_info_type  System Info Type
        Unsigned 8-bit integer
    rsl.t_nt_bit  Transparent indication
        Boolean
    rsl.tfo  TFO
        Boolean
    rsl.timing_adv  Timing Advance
        Unsigned 8-bit integer
    rsl.timing_offset  Timing Offset
        Unsigned 8-bit integer

Radius Protocol (radius)

    radius.3Com_Connect_Id  3Com-Connect_Id
        Unsigned 32-bit integer
    radius.3Com_Connect_Id.len  Length
        Unsigned 8-bit integer
        3Com-Connect_Id Length
    radius.3Com_Encryption_Type  3Com-Encryption-Type
        String
    radius.3Com_Encryption_Type.len  Length
        Unsigned 8-bit integer
        3Com-Encryption-Type Length
    radius.3Com_End_Date  3Com-End-Date
        String
    radius.3Com_End_Date.len  Length
        Unsigned 8-bit integer
        3Com-End-Date Length
    radius.3Com_Ip_Host_Addr  3Com-Ip-Host-Addr
        String
    radius.3Com_Ip_Host_Addr.len  Length
        Unsigned 8-bit integer
        3Com-Ip-Host-Addr Length
    radius.3Com_Mobility_Profile  3Com-Mobility-Profile
        String
    radius.3Com_Mobility_Profile.len  Length
        Unsigned 8-bit integer
        3Com-Mobility-Profile Length
    radius.3Com_NAS_Startup_Timestamp  3Com-NAS-Startup-Timestamp
        Unsigned 32-bit integer
    radius.3Com_NAS_Startup_Timestamp.len  Length
        Unsigned 8-bit integer
        3Com-NAS-Startup-Timestamp Length
    radius.3Com_Product_ID  3Com-Product-ID
        String
    radius.3Com_Product_ID.len  Length
        Unsigned 8-bit integer
        3Com-Product-ID Length
    radius.3Com_SSID  3Com-SSID
        String
    radius.3Com_SSID.len  Length
        Unsigned 8-bit integer
        3Com-SSID Length
    radius.3Com_Time_Of_Day  3Com-Time-Of-Day
        String
    radius.3Com_Time_Of_Day.len  Length
        Unsigned 8-bit integer
        3Com-Time-Of-Day Length
    radius.3Com_URL  3Com-URL
        String
    radius.3Com_URL.len  Length
        Unsigned 8-bit integer
        3Com-URL Length
    radius.3Com_User_Access_Level  3Com-User-Access-Level
        Unsigned 32-bit integer
    radius.3Com_User_Access_Level.len  Length
        Unsigned 8-bit integer
        3Com-User-Access-Level Length
    radius.3Com_VLAN_Name  3Com-VLAN-Name
        String
    radius.3Com_VLAN_Name.len  Length
        Unsigned 8-bit integer
        3Com-VLAN-Name Length
    radius.3GGP_IMEISV  3GGP-IMEISV
        Byte array
    radius.3GGP_IMEISV.len  Length
        Unsigned 8-bit integer
        3GGP-IMEISV Length
    radius.3GPP2_Accounting_Container  3GPP2-Accounting-Container
        Byte array
    radius.3GPP2_Accounting_Container.len  Length
        Unsigned 8-bit integer
        3GPP2-Accounting-Container Length
    radius.3GPP2_Accounting_Mode  3GPP2-Accounting-Mode
        Unsigned 32-bit integer
    radius.3GPP2_Accounting_Mode.len  Length
        Unsigned 8-bit integer
        3GPP2-Accounting-Mode Length
    radius.3GPP2_Acct_Stop_Trigger  3GPP2-Acct-Stop-Trigger
        Unsigned 32-bit integer
    radius.3GPP2_Acct_Stop_Trigger.len  Length
        Unsigned 8-bit integer
        3GPP2-Acct-Stop-Trigger Length
    radius.3GPP2_Active_Time  3GPP2-Active-Time
        Unsigned 32-bit integer
    radius.3GPP2_Active_Time.len  Length
        Unsigned 8-bit integer
        3GPP2-Active-Time Length
    radius.3GPP2_Airlink_Priority  3GPP2-Airlink-Priority
        Unsigned 32-bit integer
    radius.3GPP2_Airlink_Priority.len  Length
        Unsigned 8-bit integer
        3GPP2-Airlink-Priority Length
    radius.3GPP2_Airlink_Record_Type  3GPP2-Airlink-Record-Type
        Unsigned 32-bit integer
    radius.3GPP2_Airlink_Record_Type.len  Length
        Unsigned 8-bit integer
        3GPP2-Airlink-Record-Type Length
    radius.3GPP2_Airlink_Sequence_Number  3GPP2-Airlink-Sequence-Number
        Unsigned 32-bit integer
    radius.3GPP2_Airlink_Sequence_Number.len  Length
        Unsigned 8-bit integer
        3GPP2-Airlink-Sequence-Number Length
    radius.3GPP2_Allowed_Diffserv_Marking  3GPP2-Allowed-Diffserv-Marking
        Byte array
    radius.3GPP2_Allowed_Diffserv_Marking.len  Length
        Unsigned 8-bit integer
        3GPP2-Allowed-Diffserv-Marking Length
    radius.3GPP2_Allowed_Persistent_TFTs  3GPP2-Allowed-Persistent-TFTs
        Unsigned 32-bit integer
    radius.3GPP2_Allowed_Persistent_TFTs.len  Length
        Unsigned 8-bit integer
        3GPP2-Allowed-Persistent-TFTs Length
    radius.3GPP2_Always_On  3GPP2-Always-On
        Unsigned 32-bit integer
    radius.3GPP2_Always_On.len  Length
        Unsigned 8-bit integer
        3GPP2-Always-On Length
    radius.3GPP2_Authorized_Flow_Profile_IDs  3GPP2-Authorized-Flow-Profile-IDs
        Byte array
    radius.3GPP2_Authorized_Flow_Profile_IDs.len  Length
        Unsigned 8-bit integer
        3GPP2-Authorized-Flow-Profile-IDs Length
    radius.3GPP2_BSID  3GPP2-BSID
        String
    radius.3GPP2_BSID.len  Length
        Unsigned 8-bit integer
        3GPP2-BSID Length
    radius.3GPP2_Bad_PPP_Frame_Count  3GPP2-Bad-PPP-Frame-Count
        Unsigned 32-bit integer
    radius.3GPP2_Bad_PPP_Frame_Count.len  Length
        Unsigned 8-bit integer
        3GPP2-Bad-PPP-Frame-Count Length
    radius.3GPP2_Begin_Session  3GPP2-Begin-Session
        Unsigned 32-bit integer
    radius.3GPP2_Begin_Session.len  Length
        Unsigned 8-bit integer
        3GPP2-Begin-Session Length
    radius.3GPP2_Carrier_ID  3GPP2-Carrier-ID
        Byte array
    radius.3GPP2_Carrier_ID.len  Length
        Unsigned 8-bit integer
        3GPP2-Carrier-ID Length
    radius.3GPP2_Compulsory_Tunnel_Indicator  3GPP2-Compulsory-Tunnel-Indicator
        Unsigned 32-bit integer
    radius.3GPP2_Compulsory_Tunnel_Indicator.len  Length
        Unsigned 8-bit integer
        3GPP2-Compulsory-Tunnel-Indicator Length
    radius.3GPP2_Correlation_Id  3GPP2-Correlation-Id
        String
    radius.3GPP2_Correlation_Id.len  Length
        Unsigned 8-bit integer
        3GPP2-Correlation-Id Length
    radius.3GPP2_DCCH_Frame_Size  3GPP2-DCCH-Frame-Size
        Unsigned 32-bit integer
    radius.3GPP2_DCCH_Frame_Size.len  Length
        Unsigned 8-bit integer
        3GPP2-DCCH-Frame-Size Length
    radius.3GPP2_DNS_Server_IP_Address  3GPP2-DNS-Server-IP-Address
        Byte array
    radius.3GPP2_DNS_Server_IP_Address.len  Length
        Unsigned 8-bit integer
        3GPP2-DNS-Server-IP-Address Length
    radius.3GPP2_DNS_Update_Capability  3GPP2-DNS-Update-Capability
        Unsigned 32-bit integer
    radius.3GPP2_DNS_Update_Capability.len  Length
        Unsigned 8-bit integer
        3GPP2-DNS-Update-Capability Length
    radius.3GPP2_DNS_Update_Required  3GPP2-DNS-Update-Required
        Unsigned 32-bit integer
    radius.3GPP2_DNS_Update_Required.len  Length
        Unsigned 8-bit integer
        3GPP2-DNS-Update-Required Length
    radius.3GPP2_Diffserv_Class_Option  3GPP2-Diffserv-Class-Option
        Unsigned 32-bit integer
    radius.3GPP2_Diffserv_Class_Option.len  Length
        Unsigned 8-bit integer
        3GPP2-Diffserv-Class-Option Length
    radius.3GPP2_Disconnect_Reason  3GPP2-Disconnect-Reason
        Unsigned 32-bit integer
    radius.3GPP2_Disconnect_Reason.len  Length
        Unsigned 8-bit integer
        3GPP2-Disconnect-Reason Length
    radius.3GPP2_ESN  3GPP2-ESN
        String
    radius.3GPP2_ESN.len  Length
        Unsigned 8-bit integer
        3GPP2-ESN Length
    radius.3GPP2_FCH_Frame_Size  3GPP2-FCH-Frame-Size
        Unsigned 32-bit integer
    radius.3GPP2_FCH_Frame_Size.len  Length
        Unsigned 8-bit integer
        3GPP2-FCH-Frame-Size Length
    radius.3GPP2_Filter_Rule  3GPP2-Filter-Rule
        String
    radius.3GPP2_Filter_Rule.len  Length
        Unsigned 8-bit integer
        3GPP2-Filter-Rule Length
    radius.3GPP2_Filtered_Octet_Count_Originating  3GPP2-Filtered-Octet-Count-Originating
        Unsigned 32-bit integer
    radius.3GPP2_Filtered_Octet_Count_Originating.len  Length
        Unsigned 8-bit integer
        3GPP2-Filtered-Octet-Count-Originating Length
    radius.3GPP2_Filtered_Octet_Count_Terminating  3GPP2-Filtered-Octet-Count-Terminating
        Unsigned 32-bit integer
    radius.3GPP2_Filtered_Octet_Count_Terminating.len  Length
        Unsigned 8-bit integer
        3GPP2-Filtered-Octet-Count-Terminating Length
    radius.3GPP2_Flow_ID_Parameter  3GPP2-Flow-ID-Parameter
        Byte array
    radius.3GPP2_Flow_ID_Parameter.len  Length
        Unsigned 8-bit integer
        3GPP2-Flow-ID-Parameter Length
    radius.3GPP2_Flow_Status  3GPP2-Flow-Status
        Unsigned 32-bit integer
    radius.3GPP2_Flow_Status.len  Length
        Unsigned 8-bit integer
        3GPP2-Flow-Status Length
    radius.3GPP2_Foreign_Agent_Address  3GPP2-Foreign-Agent-Address
        IPv4 address
    radius.3GPP2_Foreign_Agent_Address.len  Length
        Unsigned 8-bit integer
        3GPP2-Foreign-Agent-Address Length
    radius.3GPP2_Forward_DCCH_Mux_Option  3GPP2-Forward-DCCH-Mux-Option
        Unsigned 32-bit integer
    radius.3GPP2_Forward_DCCH_Mux_Option.len  Length
        Unsigned 8-bit integer
        3GPP2-Forward-DCCH-Mux-Option Length
    radius.3GPP2_Forward_DCCH_RC  3GPP2-Forward-DCCH-RC
        Unsigned 32-bit integer
    radius.3GPP2_Forward_DCCH_RC.len  Length
        Unsigned 8-bit integer
        3GPP2-Forward-DCCH-RC Length
    radius.3GPP2_Forward_FCH_Mux_Option  3GPP2-Forward-FCH-Mux-Option
        Unsigned 32-bit integer
    radius.3GPP2_Forward_FCH_Mux_Option.len  Length
        Unsigned 8-bit integer
        3GPP2-Forward-FCH-Mux-Option Length
    radius.3GPP2_Forward_FCH_RC  3GPP2-Forward-FCH-RC
        Unsigned 32-bit integer
    radius.3GPP2_Forward_FCH_RC.len  Length
        Unsigned 8-bit integer
        3GPP2-Forward-FCH-RC Length
    radius.3GPP2_Forward_PDCH_RC  3GPP2-Forward-PDCH-RC
        Unsigned 32-bit integer
    radius.3GPP2_Forward_PDCH_RC.len  Length
        Unsigned 8-bit integer
        3GPP2-Forward-PDCH-RC Length
    radius.3GPP2_Forward_Traffic_Type  3GPP2-Forward-Traffic-Type
        Unsigned 32-bit integer
    radius.3GPP2_Forward_Traffic_Type.len  Length
        Unsigned 8-bit integer
        3GPP2-Forward-Traffic-Type Length
    radius.3GPP2_GMT_Time_Zone_Offset  3GPP2-GMT-Time-Zone-Offset
        Unsigned 32-bit integer
    radius.3GPP2_GMT_Time_Zone_Offset.len  Length
        Unsigned 8-bit integer
        3GPP2-GMT-Time-Zone-Offset Length
    radius.3GPP2_Granted_QoS_Parameters  3GPP2-Granted-QoS-Parameters
        Byte array
    radius.3GPP2_Granted_QoS_Parameters.len  Length
        Unsigned 8-bit integer
        3GPP2-Granted-QoS-Parameters Length
    radius.3GPP2_HAAA_MIP6_HA_Protocol_Capblty_Ind  3GPP2-HAAA-MIP6-HA-Protocol-Capblty-Ind
        Unsigned 32-bit integer
    radius.3GPP2_HAAA_MIP6_HA_Protocol_Capblty_Ind.len  Length
        Unsigned 8-bit integer
        3GPP2-HAAA-MIP6-HA-Protocol-Capblty-Ind Length
    radius.3GPP2_HA_Authorised  3GPP2-HA-Authorised
        Unsigned 32-bit integer
    radius.3GPP2_HA_Authorised.len  Length
        Unsigned 8-bit integer
        3GPP2-HA-Authorised Length
    radius.3GPP2_HA_Request  3GPP2-HA-Request
        Unsigned 32-bit integer
    radius.3GPP2_HA_Request.len  Length
        Unsigned 8-bit integer
        3GPP2-HA-Request Length
    radius.3GPP2_HTTP_Redirection_Rule  3GPP2-HTTP-Redirection-Rule
        String
    radius.3GPP2_HTTP_Redirection_Rule.len  Length
        Unsigned 8-bit integer
        3GPP2-HTTP-Redirection-Rule Length
    radius.3GPP2_Home_Agent_IP_Address  3GPP2-Home-Agent-IP-Address
        Byte array
    radius.3GPP2_Home_Agent_IP_Address.len  Length
        Unsigned 8-bit integer
        3GPP2-Home-Agent-IP-Address Length
    radius.3GPP2_Home_Agent_Not_Authorized  3GPP2-Home-Agent-Not-Authorized
        Unsigned 32-bit integer
    radius.3GPP2_Home_Agent_Not_Authorized.len  Length
        Unsigned 8-bit integer
        3GPP2-Home-Agent-Not-Authorized Length
    radius.3GPP2_Hot_Line_Accounting_Information  3GPP2-Hot-Line-Accounting-Information
        String
    radius.3GPP2_Hot_Line_Accounting_Information.len  Length
        Unsigned 8-bit integer
        3GPP2-Hot-Line-Accounting-Information Length
    radius.3GPP2_Hot_Line_Capability  3GPP2-Hot-Line-Capability
        Unsigned 32-bit integer
    radius.3GPP2_Hot_Line_Capability.len  Length
        Unsigned 8-bit integer
        3GPP2-Hot-Line-Capability Length
    radius.3GPP2_IP_QoS  3GPP2-IP-QoS
        Unsigned 32-bit integer
    radius.3GPP2_IP_QoS.len  Length
        Unsigned 8-bit integer
        3GPP2-IP-QoS Length
    radius.3GPP2_IP_Redirection_Rule  3GPP2-IP-Redirection-Rule
        String
    radius.3GPP2_IP_Redirection_Rule.len  Length
        Unsigned 8-bit integer
        3GPP2-IP-Redirection-Rule Length
    radius.3GPP2_IP_Technology  3GPP2-IP-Technology
        Unsigned 32-bit integer
    radius.3GPP2_IP_Technology.len  Length
        Unsigned 8-bit integer
        3GPP2-IP-Technology Length
    radius.3GPP2_IP_Ver_Authorised  3GPP2-IP-Ver-Authorised
        Unsigned 32-bit integer
    radius.3GPP2_IP_Ver_Authorised.len  Length
        Unsigned 8-bit integer
        3GPP2-IP-Ver-Authorised Length
    radius.3GPP2_Ike_Preshared_Secret_Request  3GPP2-Ike-Preshared-Secret-Request
        Unsigned 32-bit integer
    radius.3GPP2_Ike_Preshared_Secret_Request.len  Length
        Unsigned 8-bit integer
        3GPP2-Ike-Preshared-Secret-Request Length
    radius.3GPP2_Inbound_Mobile_IP_Sig_Octets  3GPP2-Inbound-Mobile-IP-Sig-Octets
        Unsigned 32-bit integer
    radius.3GPP2_Inbound_Mobile_IP_Sig_Octets.len  Length
        Unsigned 8-bit integer
        3GPP2-Inbound-Mobile-IP-Sig-Octets Length
    radius.3GPP2_Inter_User_Priority  3GPP2-Inter-User-Priority
        Unsigned 32-bit integer
    radius.3GPP2_Inter_User_Priority.len  Length
        Unsigned 8-bit integer
        3GPP2-Inter-User-Priority Length
    radius.3GPP2_KeyID  3GPP2-KeyID
        String
    radius.3GPP2_KeyID.len  Length
        Unsigned 8-bit integer
        3GPP2-KeyID Length
    radius.3GPP2_Last_User_Activity_Time  3GPP2-Last-User-Activity-Time
        Unsigned 32-bit integer
    radius.3GPP2_Last_User_Activity_Time.len  Length
        Unsigned 8-bit integer
        3GPP2-Last-User-Activity-Time Length
    radius.3GPP2_MEID  3GPP2-MEID
        String
    radius.3GPP2_MEID.len  Length
        Unsigned 8-bit integer
        3GPP2-MEID Length
    radius.3GPP2_MIP6_Authenticator  3GPP2-MIP6-Authenticator
        Byte array
    radius.3GPP2_MIP6_Authenticator.len  Length
        Unsigned 8-bit integer
        3GPP2-MIP6-Authenticator Length
    radius.3GPP2_MIP6_Care_of_Address  3GPP2-MIP6-Care-of-Address
        IPv6 address
    radius.3GPP2_MIP6_Care_of_Address.len  Length
        Unsigned 8-bit integer
        3GPP2-MIP6-Care-of-Address Length
    radius.3GPP2_MIP6_HA_Local_Assignment_Capblty  3GPP2-MIP6-HA-Local-Assignment-Capblty
        Unsigned 32-bit integer
    radius.3GPP2_MIP6_HA_Local_Assignment_Capblty.len  Length
        Unsigned 8-bit integer
        3GPP2-MIP6-HA-Local-Assignment-Capblty Length
    radius.3GPP2_MIP6_HOA_Received_From_BU  3GPP2-MIP6-HOA-Received-From-BU
        IPv6 address
    radius.3GPP2_MIP6_HOA_Received_From_BU.len  Length
        Unsigned 8-bit integer
        3GPP2-MIP6-HOA-Received-From-BU Length
    radius.3GPP2_MIP6_Home_Agent_Address_Attr_B  3GPP2-MIP6-Home-Agent-Address-Attr-B
        IPv6 address
    radius.3GPP2_MIP6_Home_Agent_Address_Attr_B.len  Length
        Unsigned 8-bit integer
        3GPP2-MIP6-Home-Agent-Address-Attr-B Length
    radius.3GPP2_MIP6_Home_Agent_Address_From_BU  3GPP2-MIP6-Home-Agent-Address-From-BU
        IPv6 address
    radius.3GPP2_MIP6_Home_Agent_Address_From_BU.len  Length
        Unsigned 8-bit integer
        3GPP2-MIP6-Home-Agent-Address-From-BU Length
    radius.3GPP2_MIP6_Home_Link_Prefix_Attr_A  3GPP2-MIP6-Home-Link-Prefix-Attr-A
        Byte array
    radius.3GPP2_MIP6_Home_Link_Prefix_Attr_A.len  Length
        Unsigned 8-bit integer
        3GPP2-MIP6-Home-Link-Prefix-Attr-A Length
    radius.3GPP2_MIP6_MAC_Mobility_Data  3GPP2-MIP6-MAC-Mobility-Data
        Byte array
    radius.3GPP2_MIP6_MAC_Mobility_Data.len  Length
        Unsigned 8-bit integer
        3GPP2-MIP6-MAC-Mobility-Data Length
    radius.3GPP2_MIP6_Mesg_ID  3GPP2-MIP6-Mesg-ID
        Byte array
    radius.3GPP2_MIP6_Mesg_ID.len  Length
        Unsigned 8-bit integer
        3GPP2-MIP6-Mesg-ID Length
    radius.3GPP2_MIP6_Session_Key  3GPP2-MIP6-Session-Key
        Byte array
    radius.3GPP2_MIP6_Session_Key.len  Length
        Unsigned 8-bit integer
        3GPP2-MIP6-Session-Key Length
    radius.3GPP2_MIP_Lifetime  3GPP2-MIP-Lifetime
        Byte array
    radius.3GPP2_MIP_Lifetime.len  Length
        Unsigned 8-bit integer
        3GPP2-MIP-Lifetime Length
    radius.3GPP2_MIPv4_Mesg_Id  3GPP2-MIPv4-Mesg-Id
        String
    radius.3GPP2_MIPv4_Mesg_Id.len  Length
        Unsigned 8-bit integer
        3GPP2-MIPv4-Mesg-Id Length
    radius.3GPP2_MN_AAA_Removal_Indication  3GPP2-MN-AAA-Removal-Indication
        Unsigned 32-bit integer
    radius.3GPP2_MN_AAA_Removal_Indication.len  Length
        Unsigned 8-bit integer
        3GPP2-MN-AAA-Removal-Indication Length
    radius.3GPP2_MN_HA_SPI  3GPP2-MN-HA-SPI
        Unsigned 32-bit integer
    radius.3GPP2_MN_HA_SPI.len  Length
        Unsigned 8-bit integer
        3GPP2-MN-HA-SPI Length
    radius.3GPP2_MN_HA_Shared_Key  3GPP2-MN-HA-Shared-Key
        String
    radius.3GPP2_MN_HA_Shared_Key.len  Length
        Unsigned 8-bit integer
        3GPP2-MN-HA-Shared-Key Length
    radius.3GPP2_Max_Authorized_Aggr_Bandwidth  3GPP2-Max-Authorized-Aggr-Bandwidth
        Unsigned 32-bit integer
    radius.3GPP2_Max_Authorized_Aggr_Bandwidth.len  Length
        Unsigned 8-bit integer
        3GPP2-Max-Authorized-Aggr-Bandwidth Length
    radius.3GPP2_Maximum_Per_Flow_Priority  3GPP2-Maximum-Per-Flow-Priority
        Unsigned 32-bit integer
    radius.3GPP2_Maximum_Per_Flow_Priority.len  Length
        Unsigned 8-bit integer
        3GPP2-Maximum-Per-Flow-Priority Length
    radius.3GPP2_Module_Orig_Term_Indicator  3GPP2-Module-Orig-Term-Indicator
        Unsigned 32-bit integer
    radius.3GPP2_Module_Orig_Term_Indicator.len  Length
        Unsigned 8-bit integer
        3GPP2-Module-Orig-Term-Indicator Length
    radius.3GPP2_Number_Active_Transitions  3GPP2-Number-Active-Transitions
        Unsigned 32-bit integer
    radius.3GPP2_Number_Active_Transitions.len  Length
        Unsigned 8-bit integer
        3GPP2-Number-Active-Transitions Length
    radius.3GPP2_Originating_Number_SDBs  3GPP2-Originating-Number-SDBs
        Unsigned 32-bit integer
    radius.3GPP2_Originating_Number_SDBs.len  Length
        Unsigned 8-bit integer
        3GPP2-Originating-Number-SDBs Length
    radius.3GPP2_Originating_SDB_OCtet_Count  3GPP2-Originating-SDB-OCtet-Count
        Unsigned 32-bit integer
    radius.3GPP2_Originating_SDB_OCtet_Count.len  Length
        Unsigned 8-bit integer
        3GPP2-Originating-SDB-OCtet-Count Length
    radius.3GPP2_Outbound_Mobile_IP_Sig_Octets  3GPP2-Outbound-Mobile-IP-Sig-Octets
        Unsigned 32-bit integer
    radius.3GPP2_Outbound_Mobile_IP_Sig_Octets.len  Length
        Unsigned 8-bit integer
        3GPP2-Outbound-Mobile-IP-Sig-Octets Length
    radius.3GPP2_PCF_IP_Address  3GPP2-PCF-IP-Address
        IPv4 address
    radius.3GPP2_PCF_IP_Address.len  Length
        Unsigned 8-bit integer
        3GPP2-PCF-IP-Address Length
    radius.3GPP2_PrePaid_Tariff_Switching  3GPP2-PrePaid-Tariff-Switching
        Byte array
    radius.3GPP2_PrePaid_Tariff_Switching.len  Length
        Unsigned 8-bit integer
        3GPP2-PrePaid-Tariff-Switching Length
    radius.3GPP2_Pre_Shared_Secret  3GPP2-Pre-Shared-Secret
        String
    radius.3GPP2_Pre_Shared_Secret.len  Length
        Unsigned 8-bit integer
        3GPP2-Pre-Shared-Secret Length
    radius.3GPP2_Prepaid_Acct_Quota  3GPP2-Prepaid-Acct-Quota
        Byte array
    radius.3GPP2_Prepaid_Acct_Quota.len  Length
        Unsigned 8-bit integer
        3GPP2-Prepaid-Acct-Quota Length
    radius.3GPP2_Prepaid_acct_Capability  3GPP2-Prepaid-acct-Capability
        Byte array
    radius.3GPP2_Prepaid_acct_Capability.len  Length
        Unsigned 8-bit integer
        3GPP2-Prepaid-acct-Capability Length
    radius.3GPP2_RN_Packet_Data_Inactivity_Timer  3GPP2-RN-Packet-Data-Inactivity-Timer
        Unsigned 32-bit integer
    radius.3GPP2_RN_Packet_Data_Inactivity_Timer.len  Length
        Unsigned 8-bit integer
        3GPP2-RN-Packet-Data-Inactivity-Timer Length
    radius.3GPP2_RSVP_Inbound_Octet_Count  3GPP2-RSVP-Inbound-Octet-Count
        Unsigned 32-bit integer
    radius.3GPP2_RSVP_Inbound_Octet_Count.len  Length
        Unsigned 8-bit integer
        3GPP2-RSVP-Inbound-Octet-Count Length
    radius.3GPP2_RSVP_Inbound_Packet_Count  3GPP2-RSVP-Inbound-Packet-Count
        Unsigned 32-bit integer
    radius.3GPP2_RSVP_Inbound_Packet_Count.len  Length
        Unsigned 8-bit integer
        3GPP2-RSVP-Inbound-Packet-Count Length
    radius.3GPP2_RSVP_Outbound_Octet_Count  3GPP2-RSVP-Outbound-Octet-Count
        Unsigned 32-bit integer
    radius.3GPP2_RSVP_Outbound_Octet_Count.len  Length
        Unsigned 8-bit integer
        3GPP2-RSVP-Outbound-Octet-Count Length
    radius.3GPP2_RSVP_Outbound_Packet_Count  3GPP2-RSVP-Outbound-Packet-Count
        Unsigned 32-bit integer
    radius.3GPP2_RSVP_Outbound_Packet_Count.len  Length
        Unsigned 8-bit integer
        3GPP2-RSVP-Outbound-Packet-Count Length
    radius.3GPP2_Received_HDLC_Octets  3GPP2-Received-HDLC-Octets
        Unsigned 32-bit integer
    radius.3GPP2_Received_HDLC_Octets.len  Length
        Unsigned 8-bit integer
        3GPP2-Received-HDLC-Octets Length
    radius.3GPP2_Release_Indicator  3GPP2-Release-Indicator
        Unsigned 32-bit integer
    radius.3GPP2_Release_Indicator.len  Length
        Unsigned 8-bit integer
        3GPP2-Release-Indicator Length
    radius.3GPP2_Remote_Address_Table_Index  3GPP2-Remote-Address-Table-Index
        Byte array
    radius.3GPP2_Remote_Address_Table_Index.len  Length
        Unsigned 8-bit integer
        3GPP2-Remote-Address-Table-Index Length
    radius.3GPP2_Remote_IP_Address  3GPP2-Remote-IP-Address
        Byte array
    radius.3GPP2_Remote_IP_Address.len  Length
        Unsigned 8-bit integer
        3GPP2-Remote-IP-Address Length
    radius.3GPP2_Remote_IPv4_Addr_Octet_Count  3GPP2-Remote-IPv4-Addr-Octet-Count
        Byte array
    radius.3GPP2_Remote_IPv4_Addr_Octet_Count.len  Length
        Unsigned 8-bit integer
        3GPP2-Remote-IPv4-Addr-Octet-Count Length
    radius.3GPP2_Remote_IPv6_Address  3GPP2-Remote-IPv6-Address
        Byte array
    radius.3GPP2_Remote_IPv6_Address.len  Length
        Unsigned 8-bit integer
        3GPP2-Remote-IPv6-Address Length
    radius.3GPP2_Remote_IPv6_Octet_Count  3GPP2-Remote-IPv6-Octet-Count
        Byte array
    radius.3GPP2_Remote_IPv6_Octet_Count.len  Length
        Unsigned 8-bit integer
        3GPP2-Remote-IPv6-Octet-Count Length
    radius.3GPP2_Reverse  3GPP2-Reverse
        Unsigned 32-bit integer
    radius.3GPP2_Reverse.len  Length
        Unsigned 8-bit integer
        3GPP2-Reverse Length
    radius.3GPP2_Reverse_DCCH_Mux_Option  3GPP2-Reverse-DCCH-Mux-Option
        Unsigned 32-bit integer
    radius.3GPP2_Reverse_DCCH_Mux_Option.len  Length
        Unsigned 8-bit integer
        3GPP2-Reverse-DCCH-Mux-Option Length
    radius.3GPP2_Reverse_DHHC_RC  3GPP2-Reverse-DHHC-RC
        Unsigned 32-bit integer
    radius.3GPP2_Reverse_DHHC_RC.len  Length
        Unsigned 8-bit integer
        3GPP2-Reverse-DHHC-RC Length
    radius.3GPP2_Reverse_FCH_Mux_Option  3GPP2-Reverse-FCH-Mux-Option
        Unsigned 32-bit integer
    radius.3GPP2_Reverse_FCH_Mux_Option.len  Length
        Unsigned 8-bit integer
        3GPP2-Reverse-FCH-Mux-Option Length
    radius.3GPP2_Reverse_FCH_RC  3GPP2-Reverse-FCH-RC
        Unsigned 32-bit integer
    radius.3GPP2_Reverse_FCH_RC.len  Length
        Unsigned 8-bit integer
        3GPP2-Reverse-FCH-RC Length
    radius.3GPP2_Reverse_Traffic_Type  3GPP2-Reverse-Traffic-Type
        Unsigned 32-bit integer
    radius.3GPP2_Reverse_Traffic_Type.len  Length
        Unsigned 8-bit integer
        3GPP2-Reverse-Traffic-Type Length
    radius.3GPP2_Reverse_Tunnel_Spec  3GPP2-Reverse-Tunnel-Spec
        Unsigned 32-bit integer
    radius.3GPP2_Reverse_Tunnel_Spec.len  Length
        Unsigned 8-bit integer
        3GPP2-Reverse-Tunnel-Spec Length
    radius.3GPP2_S_Key  3GPP2-S-Key
        Byte array
    radius.3GPP2_S_Key.len  Length
        Unsigned 8-bit integer
        3GPP2-S-Key Length
    radius.3GPP2_S_Lifetime  3GPP2-S-Lifetime
        Date/Time stamp
    radius.3GPP2_S_Lifetime.len  Length
        Unsigned 8-bit integer
        3GPP2-S-Lifetime Length
    radius.3GPP2_S_Request  3GPP2-S-Request
        Unsigned 32-bit integer
    radius.3GPP2_S_Request.len  Length
        Unsigned 8-bit integer
        3GPP2-S-Request Length
    radius.3GPP2_Security_Level  3GPP2-Security-Level
        Unsigned 32-bit integer
    radius.3GPP2_Security_Level.len  Length
        Unsigned 8-bit integer
        3GPP2-Security-Level Length
    radius.3GPP2_Service_Option  3GPP2-Service-Option
        Unsigned 32-bit integer
    radius.3GPP2_Service_Option.len  Length
        Unsigned 8-bit integer
        3GPP2-Service-Option Length
    radius.3GPP2_Service_Option_Profile  3GPP2-Service-Option-Profile
        Byte array
    radius.3GPP2_Service_Option_Profile.len  Length
        Unsigned 8-bit integer
        3GPP2-Service-Option-Profile Length
    radius.3GPP2_Service_Reference_Id  3GPP2-Service-Reference-Id
        Byte array
    radius.3GPP2_Service_Reference_Id.len  Length
        Unsigned 8-bit integer
        3GPP2-Service-Reference-Id Length
    radius.3GPP2_Session_Continue  3GPP2-Session-Continue
        Unsigned 32-bit integer
    radius.3GPP2_Session_Continue.len  Length
        Unsigned 8-bit integer
        3GPP2-Session-Continue Length
    radius.3GPP2_Session_Termination_Capability  3GPP2-Session-Termination-Capability
        Unsigned 32-bit integer
    radius.3GPP2_Session_Termination_Capability.len  Length
        Unsigned 8-bit integer
        3GPP2-Session-Termination-Capability Length
    radius.3GPP2_Subnet  3GPP2-Subnet
        Byte array
    radius.3GPP2_Subnet.len  Length
        Unsigned 8-bit integer
        3GPP2-Subnet Length
    radius.3GPP2_Terminating_Number_SDBs  3GPP2-Terminating-Number-SDBs
        Unsigned 32-bit integer
    radius.3GPP2_Terminating_Number_SDBs.len  Length
        Unsigned 8-bit integer
        3GPP2-Terminating-Number-SDBs Length
    radius.3GPP2_Terminating_SDB_Octet_Count  3GPP2-Terminating-SDB-Octet-Count
        Unsigned 32-bit integer
    radius.3GPP2_Terminating_SDB_Octet_Count.len  Length
        Unsigned 8-bit integer
        3GPP2-Terminating-SDB-Octet-Count Length
    radius.3GPP2_User_Id  3GPP2-User-Id
        Unsigned 32-bit integer
    radius.3GPP2_User_Id.len  Length
        Unsigned 8-bit integer
        3GPP2-User-Id Length
    radius.3GPP2_VAAA_Assigned_MIP6_HA  3GPP2-VAAA-Assigned-MIP6-HA
        IPv6 address
    radius.3GPP2_VAAA_Assigned_MIP6_HA.len  Length
        Unsigned 8-bit integer
        3GPP2-VAAA-Assigned-MIP6-HA Length
    radius.3GPP2_VAAA_Assigned_MIP6_HL  3GPP2-VAAA-Assigned-MIP6-HL
        Byte array
    radius.3GPP2_VAAA_Assigned_MIP6_HL.len  Length
        Unsigned 8-bit integer
        3GPP2-VAAA-Assigned-MIP6-HL Length
    radius.3GPP2_VAAA_MIP6_HA_Protocol_Capblty_Ind  3GPP2-VAAA-MIP6-HA-Protocol-Capblty-Ind
        Unsigned 32-bit integer
    radius.3GPP2_VAAA_MIP6_HA_Protocol_Capblty_Ind.len  Length
        Unsigned 8-bit integer
        3GPP2-VAAA-MIP6-HA-Protocol-Capblty-Ind Length
    radius.3GPP_Allocate_IP_Type  3GPP-Allocate-IP-Type
        Unsigned 32-bit integer
    radius.3GPP_Allocate_IP_Type.len  Length
        Unsigned 8-bit integer
        3GPP-Allocate-IP-Type Length
    radius.3GPP_Camel_Charging_Info  3GPP-Camel-Charging-Info
        Byte array
    radius.3GPP_Camel_Charging_Info.len  Length
        Unsigned 8-bit integer
        3GPP-Camel-Charging-Info Length
    radius.3GPP_Charging_Characteristics  3GPP-Charging-Characteristics
        String
    radius.3GPP_Charging_Characteristics.len  Length
        Unsigned 8-bit integer
        3GPP-Charging-Characteristics Length
    radius.3GPP_Charging_Gateway_Address  3GPP-Charging-Gateway-Address
        IPv4 address
    radius.3GPP_Charging_Gateway_Address.len  Length
        Unsigned 8-bit integer
        3GPP-Charging-Gateway-Address Length
    radius.3GPP_Charging_Gateway_IPv6_Address  3GPP-Charging-Gateway-IPv6-Address
        IPv6 address
    radius.3GPP_Charging_Gateway_IPv6_Address.len  Length
        Unsigned 8-bit integer
        3GPP-Charging-Gateway-IPv6-Address Length
    radius.3GPP_Charging_ID  3GPP-Charging-ID
        Unsigned 32-bit integer
    radius.3GPP_Charging_ID.len  Length
        Unsigned 8-bit integer
        3GPP-Charging-ID Length
    radius.3GPP_GGSN_Address  3GPP-GGSN-Address
        IPv4 address
    radius.3GPP_GGSN_Address.len  Length
        Unsigned 8-bit integer
        3GPP-GGSN-Address Length
    radius.3GPP_GGSN_IPv6_Address  3GPP-GGSN-IPv6-Address
        IPv6 address
    radius.3GPP_GGSN_IPv6_Address.len  Length
        Unsigned 8-bit integer
        3GPP-GGSN-IPv6-Address Length
    radius.3GPP_GGSN_MCC_MNC  3GPP-GGSN-MCC-MNC
        String
    radius.3GPP_GGSN_MCC_MNC.len  Length
        Unsigned 8-bit integer
        3GPP-GGSN-MCC-MNC Length
    radius.3GPP_GPRS_Negotiated_QoS_profile  3GPP-GPRS-Negotiated-QoS-profile
        String
    radius.3GPP_GPRS_Negotiated_QoS_profile.len  Length
        Unsigned 8-bit integer
        3GPP-GPRS-Negotiated-QoS-profile Length
    radius.3GPP_IMSI  3GPP-IMSI
        String
    radius.3GPP_IMSI.len  Length
        Unsigned 8-bit integer
        3GPP-IMSI Length
    radius.3GPP_IMSI_MCC_MNC  3GPP-IMSI-MCC-MNC
        String
    radius.3GPP_IMSI_MCC_MNC.len  Length
        Unsigned 8-bit integer
        3GPP-IMSI-MCC-MNC Length
    radius.3GPP_IPv6_DNS_Servers  3GPP-IPv6-DNS-Servers
        Byte array
    radius.3GPP_IPv6_DNS_Servers.len  Length
        Unsigned 8-bit integer
        3GPP-IPv6-DNS-Servers Length
    radius.3GPP_MS_TimeZone  3GPP-MS-TimeZone
        Byte array
    radius.3GPP_MS_TimeZone.len  Length
        Unsigned 8-bit integer
        3GPP-MS-TimeZone Length
    radius.3GPP_NSAPI  3GPP-NSAPI
        String
    radius.3GPP_NSAPI.len  Length
        Unsigned 8-bit integer
        3GPP-NSAPI Length
    radius.3GPP_Negotiated_DSCP  3GPP-Negotiated-DSCP
        Unsigned 32-bit integer
    radius.3GPP_Negotiated_DSCP.len  Length
        Unsigned 8-bit integer
        3GPP-Negotiated-DSCP Length
    radius.3GPP_PDP_Type  3GPP-PDP-Type
        Unsigned 32-bit integer
    radius.3GPP_PDP_Type.len  Length
        Unsigned 8-bit integer
        3GPP-PDP-Type Length
    radius.3GPP_Packet_Filter  3GPP-Packet-Filter
        Byte array
    radius.3GPP_Packet_Filter.len  Length
        Unsigned 8-bit integer
        3GPP-Packet-Filter Length
    radius.3GPP_RAT_Type  3GPP-RAT-Type
        Unsigned 32-bit integer
    radius.3GPP_RAT_Type.len  Length
        Unsigned 8-bit integer
        3GPP-RAT-Type Length
    radius.3GPP_SGSN_Address  3GPP-SGSN-Address
        IPv4 address
    radius.3GPP_SGSN_Address.len  Length
        Unsigned 8-bit integer
        3GPP-SGSN-Address Length
    radius.3GPP_SGSN_IPv6_Address  3GPP-SGSN-IPv6-Address
        IPv6 address
    radius.3GPP_SGSN_IPv6_Address.len  Length
        Unsigned 8-bit integer
        3GPP-SGSN-IPv6-Address Length
    radius.3GPP_SGSN_MCC_MNC  3GPP-SGSN-MCC-MNC
        String
    radius.3GPP_SGSN_MCC_MNC.len  Length
        Unsigned 8-bit integer
        3GPP-SGSN-MCC-MNC Length
    radius.3GPP_Selection_Mode  3GPP-Selection-Mode
        String
    radius.3GPP_Selection_Mode.len  Length
        Unsigned 8-bit integer
        3GPP-Selection-Mode Length
    radius.3GPP_Session_Stop_Indicator  3GPP-Session-Stop-Indicator
        Byte array
    radius.3GPP_Session_Stop_Indicator.len  Length
        Unsigned 8-bit integer
        3GPP-Session-Stop-Indicator Length
    radius.3GPP_Teardown_Indicator  3GPP-Teardown-Indicator
        Byte array
    radius.3GPP_Teardown_Indicator.len  Length
        Unsigned 8-bit integer
        3GPP-Teardown-Indicator Length
    radius.3GPP_User_Location_Info  3GPP-User-Location-Info
        Byte array
    radius.3GPP_User_Location_Info.len  Length
        Unsigned 8-bit integer
        3GPP-User-Location-Info Length
    radius.AAT_ATM_Direct  AAT-ATM-Direct
        String
    radius.AAT_ATM_Direct.len  Length
        Unsigned 8-bit integer
        AAT-ATM-Direct Length
    radius.AAT_ATM_Traffic_Profile  AAT-ATM-Traffic-Profile
        String
    radius.AAT_ATM_Traffic_Profile.len  Length
        Unsigned 8-bit integer
        AAT-ATM-Traffic-Profile Length
    radius.AAT_ATM_VCI  AAT-ATM-VCI
        Unsigned 32-bit integer
    radius.AAT_ATM_VCI.len  Length
        Unsigned 8-bit integer
        AAT-ATM-VCI Length
    radius.AAT_ATM_VPI  AAT-ATM-VPI
        Unsigned 32-bit integer
    radius.AAT_ATM_VPI.len  Length
        Unsigned 8-bit integer
        AAT-ATM-VPI Length
    radius.AAT_Assign_IP_Pool  AAT-Assign-IP-Pool
        Unsigned 32-bit integer
    radius.AAT_Assign_IP_Pool.len  Length
        Unsigned 8-bit integer
        AAT-Assign-IP-Pool Length
    radius.AAT_Auth_Type  AAT-Auth-Type
        Unsigned 32-bit integer
    radius.AAT_Auth_Type.len  Length
        Unsigned 8-bit integer
        AAT-Auth-Type Length
    radius.AAT_Client_Assign_DNS  AAT-Client-Assign-DNS
        Unsigned 32-bit integer
    radius.AAT_Client_Assign_DNS.len  Length
        Unsigned 8-bit integer
        AAT-Client-Assign-DNS Length
    radius.AAT_Client_Primary_DNS  AAT-Client-Primary-DNS
        IPv4 address
    radius.AAT_Client_Primary_DNS.len  Length
        Unsigned 8-bit integer
        AAT-Client-Primary-DNS Length
    radius.AAT_Client_Primary_WINS_NBNS  AAT-Client-Primary-WINS-NBNS
        IPv4 address
    radius.AAT_Client_Primary_WINS_NBNS.len  Length
        Unsigned 8-bit integer
        AAT-Client-Primary-WINS-NBNS Length
    radius.AAT_Client_Secondary_DNS  AAT-Client-Secondary-DNS
        IPv4 address
    radius.AAT_Client_Secondary_DNS.len  Length
        Unsigned 8-bit integer
        AAT-Client-Secondary-DNS Length
    radius.AAT_Client_Secondary_WINS_NBNS  AAT-Client-Secondary-WINS-NBNS
        IPv4 address
    radius.AAT_Client_Secondary_WINS_NBNS.len  Length
        Unsigned 8-bit integer
        AAT-Client-Secondary-WINS-NBNS Length
    radius.AAT_Data_Filter  AAT-Data-Filter
        String
    radius.AAT_Data_Filter.len  Length
        Unsigned 8-bit integer
        AAT-Data-Filter Length
    radius.AAT_FR_Direct  AAT-FR-Direct
        Unsigned 32-bit integer
    radius.AAT_FR_Direct.len  Length
        Unsigned 8-bit integer
        AAT-FR-Direct Length
    radius.AAT_FR_Direct_DLCI  AAT-FR-Direct-DLCI
        Unsigned 32-bit integer
    radius.AAT_FR_Direct_DLCI.len  Length
        Unsigned 8-bit integer
        AAT-FR-Direct-DLCI Length
    radius.AAT_FR_Direct_Profile  AAT-FR-Direct-Profile
        String
    radius.AAT_FR_Direct_Profile.len  Length
        Unsigned 8-bit integer
        AAT-FR-Direct-Profile Length
    radius.AAT_Filter  AAT-Filter
        String
    radius.AAT_Filter.len  Length
        Unsigned 8-bit integer
        AAT-Filter Length
    radius.AAT_Home_Agent_Password  AAT-Home-Agent-Password
        String
    radius.AAT_Home_Agent_Password.len  Length
        Unsigned 8-bit integer
        AAT-Home-Agent-Password Length
    radius.AAT_Home_Agent_UDP_Port  AAT-Home-Agent-UDP-Port
        Unsigned 32-bit integer
    radius.AAT_Home_Agent_UDP_Port.len  Length
        Unsigned 8-bit integer
        AAT-Home-Agent-UDP-Port Length
    radius.AAT_Home_Network_Name  AAT-Home-Network-Name
        String
    radius.AAT_Home_Network_Name.len  Length
        Unsigned 8-bit integer
        AAT-Home-Network-Name Length
    radius.AAT_IP_Direct  AAT-IP-Direct
        IPv4 address
    radius.AAT_IP_Direct.len  Length
        Unsigned 8-bit integer
        AAT-IP-Direct Length
    radius.AAT_IP_Pool_Definition  AAT-IP-Pool-Definition
        String
    radius.AAT_IP_Pool_Definition.len  Length
        Unsigned 8-bit integer
        AAT-IP-Pool-Definition Length
    radius.AAT_IP_TOS  AAT-IP-TOS
        Unsigned 32-bit integer
    radius.AAT_IP_TOS.len  Length
        Unsigned 8-bit integer
        AAT-IP-TOS Length
    radius.AAT_IP_TOS_Apply_To  AAT-IP-TOS-Apply-To
        Unsigned 32-bit integer
    radius.AAT_IP_TOS_Apply_To.len  Length
        Unsigned 8-bit integer
        AAT-IP-TOS-Apply-To Length
    radius.AAT_IP_TOS_Precedence  AAT-IP-TOS-Precedence
        Unsigned 32-bit integer
    radius.AAT_IP_TOS_Precedence.len  Length
        Unsigned 8-bit integer
        AAT-IP-TOS-Precedence Length
    radius.AAT_Input_Octets_Diff  AAT-Input-Octets-Diff
        Unsigned 32-bit integer
    radius.AAT_Input_Octets_Diff.len  Length
        Unsigned 8-bit integer
        AAT-Input-Octets-Diff Length
    radius.AAT_MCast_Client  AAT-MCast-Client
        Unsigned 32-bit integer
    radius.AAT_MCast_Client.len  Length
        Unsigned 8-bit integer
        AAT-MCast-Client Length
    radius.AAT_Modem_Answer_String  AAT-Modem-Answer-String
        String
    radius.AAT_Modem_Answer_String.len  Length
        Unsigned 8-bit integer
        AAT-Modem-Answer-String Length
    radius.AAT_Modem_Port_No  AAT-Modem-Port-No
        Unsigned 32-bit integer
    radius.AAT_Modem_Port_No.len  Length
        Unsigned 8-bit integer
        AAT-Modem-Port-No Length
    radius.AAT_Modem_Shelf_No  AAT-Modem-Shelf-No
        Unsigned 32-bit integer
    radius.AAT_Modem_Shelf_No.len  Length
        Unsigned 8-bit integer
        AAT-Modem-Shelf-No Length
    radius.AAT_Modem_Slot_No  AAT-Modem-Slot-No
        Unsigned 32-bit integer
    radius.AAT_Modem_Slot_No.len  Length
        Unsigned 8-bit integer
        AAT-Modem-Slot-No Length
    radius.AAT_Output_Octets_Diff  AAT-Output-Octets-Diff
        Unsigned 32-bit integer
    radius.AAT_Output_Octets_Diff.len  Length
        Unsigned 8-bit integer
        AAT-Output-Octets-Diff Length
    radius.AAT_PPP_Address  AAT-PPP-Address
        IPv4 address
    radius.AAT_PPP_Address.len  Length
        Unsigned 8-bit integer
        AAT-PPP-Address Length
    radius.AAT_PPP_Netmask  AAT-PPP-Netmask
        IPv4 address
    radius.AAT_PPP_Netmask.len  Length
        Unsigned 8-bit integer
        AAT-PPP-Netmask Length
    radius.AAT_Primary_Home_Agent  AAT-Primary-Home-Agent
        String
    radius.AAT_Primary_Home_Agent.len  Length
        Unsigned 8-bit integer
        AAT-Primary-Home-Agent Length
    radius.AAT_Qoa  AAT-Qoa
        Unsigned 32-bit integer
    radius.AAT_Qoa.len  Length
        Unsigned 8-bit integer
        AAT-Qoa Length
    radius.AAT_Qos  AAT-Qos
        Unsigned 32-bit integer
    radius.AAT_Qos.len  Length
        Unsigned 8-bit integer
        AAT-Qos Length
    radius.AAT_Require_Auth  AAT-Require-Auth
        Unsigned 32-bit integer
    radius.AAT_Require_Auth.len  Length
        Unsigned 8-bit integer
        AAT-Require-Auth Length
    radius.AAT_Secondary_Home_Agent  AAT-Secondary-Home-Agent
        String
    radius.AAT_Secondary_Home_Agent.len  Length
        Unsigned 8-bit integer
        AAT-Secondary-Home-Agent Length
    radius.AAT_Source_IP_Check  AAT-Source-IP-Check
        Unsigned 32-bit integer
    radius.AAT_Source_IP_Check.len  Length
        Unsigned 8-bit integer
        AAT-Source-IP-Check Length
    radius.AAT_User_MAC_Address  AAT-User-MAC-Address
        String
    radius.AAT_User_MAC_Address.len  Length
        Unsigned 8-bit integer
        AAT-User-MAC-Address Length
    radius.AAT_Vrouter_Name  AAT-Vrouter-Name
        String
    radius.AAT_Vrouter_Name.len  Length
        Unsigned 8-bit integer
        AAT-Vrouter-Name Length
    radius.ACL_Definition  ACL-Definition
        String
    radius.ACL_Definition.len  Length
        Unsigned 8-bit integer
        ACL-Definition Length
    radius.ADSL_Agent_Circuit_Id  ADSL-Agent-Circuit-Id
        String
    radius.ADSL_Agent_Circuit_Id.len  Length
        Unsigned 8-bit integer
        ADSL-Agent-Circuit-Id Length
    radius.ADSL_Agent_Remote_Id  ADSL-Agent-Remote-Id
        String
    radius.ADSL_Agent_Remote_Id.len  Length
        Unsigned 8-bit integer
        ADSL-Agent-Remote-Id Length
    radius.APC_Outlets  APC-Outlets
        String
    radius.APC_Outlets.len  Length
        Unsigned 8-bit integer
        APC-Outlets Length
    radius.APC_Service_Type  APC-Service-Type
        Unsigned 32-bit integer
    radius.APC_Service_Type.len  Length
        Unsigned 8-bit integer
        APC-Service-Type Length
    radius.ARAP_Challenge_Response  ARAP-Challenge-Response
        Byte array
    radius.ARAP_Challenge_Response.len  Length
        Unsigned 8-bit integer
        ARAP-Challenge-Response Length
    radius.ARAP_Features  ARAP-Features
        Byte array
    radius.ARAP_Features.len  Length
        Unsigned 8-bit integer
        ARAP-Features Length
    radius.ARAP_Password  ARAP-Password
        Byte array
    radius.ARAP_Password.len  Length
        Unsigned 8-bit integer
        ARAP-Password Length
    radius.ARAP_Security  ARAP-Security
        Unsigned 32-bit integer
    radius.ARAP_Security.len  Length
        Unsigned 8-bit integer
        ARAP-Security Length
    radius.ARAP_Security_Data  ARAP-Security-Data
        String
    radius.ARAP_Security_Data.len  Length
        Unsigned 8-bit integer
        ARAP-Security-Data Length
    radius.ARAP_Zone_Access  ARAP-Zone-Access
        Unsigned 32-bit integer
    radius.ARAP_Zone_Access.len  Length
        Unsigned 8-bit integer
        ARAP-Zone-Access Length
    radius.Acc_Access_Community  Acc-Access-Community
        Unsigned 32-bit integer
    radius.Acc_Access_Community.len  Length
        Unsigned 8-bit integer
        Acc-Access-Community Length
    radius.Acc_Access_Partition  Acc-Access-Partition
        String
    radius.Acc_Access_Partition.len  Length
        Unsigned 8-bit integer
        Acc-Access-Partition Length
    radius.Acc_Acct_On_Off_Reason  Acc-Acct-On-Off-Reason
        Unsigned 32-bit integer
    radius.Acc_Acct_On_Off_Reason.len  Length
        Unsigned 8-bit integer
        Acc-Acct-On-Off-Reason Length
    radius.Acc_Ace_Token  Acc-Ace-Token
        String
    radius.Acc_Ace_Token.len  Length
        Unsigned 8-bit integer
        Acc-Ace-Token Length
    radius.Acc_Ace_Token_Ttl  Acc-Ace-Token-Ttl
        Unsigned 32-bit integer
    radius.Acc_Ace_Token_Ttl.len  Length
        Unsigned 8-bit integer
        Acc-Ace-Token-Ttl Length
    radius.Acc_Apsm_Oversubscribed  Acc-Apsm-Oversubscribed
        Unsigned 32-bit integer
    radius.Acc_Apsm_Oversubscribed.len  Length
        Unsigned 8-bit integer
        Acc-Apsm-Oversubscribed Length
    radius.Acc_Bridging_Support  Acc-Bridging-Support
        Unsigned 32-bit integer
    radius.Acc_Bridging_Support.len  Length
        Unsigned 8-bit integer
        Acc-Bridging-Support Length
    radius.Acc_Callback_CBCP_Type  Acc-Callback-CBCP-Type
        Unsigned 32-bit integer
    radius.Acc_Callback_CBCP_Type.len  Length
        Unsigned 8-bit integer
        Acc-Callback-CBCP-Type Length
    radius.Acc_Callback_Delay  Acc-Callback-Delay
        Unsigned 32-bit integer
    radius.Acc_Callback_Delay.len  Length
        Unsigned 8-bit integer
        Acc-Callback-Delay Length
    radius.Acc_Callback_Mode  Acc-Callback-Mode
        Unsigned 32-bit integer
    radius.Acc_Callback_Mode.len  Length
        Unsigned 8-bit integer
        Acc-Callback-Mode Length
    radius.Acc_Callback_Num_Valid  Acc-Callback-Num-Valid
        String
    radius.Acc_Callback_Num_Valid.len  Length
        Unsigned 8-bit integer
        Acc-Callback-Num-Valid Length
    radius.Acc_Calling_Station_Category  Acc-Calling-Station-Category
        Unsigned 32-bit integer
    radius.Acc_Calling_Station_Category.len  Length
        Unsigned 8-bit integer
        Acc-Calling-Station-Category Length
    radius.Acc_Ccp_Option  Acc-Ccp-Option
        Unsigned 32-bit integer
    radius.Acc_Ccp_Option.len  Length
        Unsigned 8-bit integer
        Acc-Ccp-Option Length
    radius.Acc_Clearing_Cause  Acc-Clearing-Cause
        Unsigned 32-bit integer
    radius.Acc_Clearing_Cause.len  Length
        Unsigned 8-bit integer
        Acc-Clearing-Cause Length
    radius.Acc_Clearing_Location  Acc-Clearing-Location
        Unsigned 32-bit integer
    radius.Acc_Clearing_Location.len  Length
        Unsigned 8-bit integer
        Acc-Clearing-Location Length
    radius.Acc_Connect_Rx_Speed  Acc-Connect-Rx-Speed
        Unsigned 32-bit integer
    radius.Acc_Connect_Rx_Speed.len  Length
        Unsigned 8-bit integer
        Acc-Connect-Rx-Speed Length
    radius.Acc_Connect_Tx_Speed  Acc-Connect-Tx-Speed
        Unsigned 32-bit integer
    radius.Acc_Connect_Tx_Speed.len  Length
        Unsigned 8-bit integer
        Acc-Connect-Tx-Speed Length
    radius.Acc_Customer_Id  Acc-Customer-Id
        String
    radius.Acc_Customer_Id.len  Length
        Unsigned 8-bit integer
        Acc-Customer-Id Length
    radius.Acc_Dial_Port_Index  Acc-Dial-Port-Index
        Unsigned 32-bit integer
    radius.Acc_Dial_Port_Index.len  Length
        Unsigned 8-bit integer
        Acc-Dial-Port-Index Length
    radius.Acc_Dialout_Auth_Mode  Acc-Dialout-Auth-Mode
        Unsigned 32-bit integer
    radius.Acc_Dialout_Auth_Mode.len  Length
        Unsigned 8-bit integer
        Acc-Dialout-Auth-Mode Length
    radius.Acc_Dialout_Auth_Password  Acc-Dialout-Auth-Password
        String
    radius.Acc_Dialout_Auth_Password.len  Length
        Unsigned 8-bit integer
        Acc-Dialout-Auth-Password Length
    radius.Acc_Dialout_Auth_Username  Acc-Dialout-Auth-Username
        String
    radius.Acc_Dialout_Auth_Username.len  Length
        Unsigned 8-bit integer
        Acc-Dialout-Auth-Username Length
    radius.Acc_Dns_Server_Pri  Acc-Dns-Server-Pri
        IPv4 address
    radius.Acc_Dns_Server_Pri.len  Length
        Unsigned 8-bit integer
        Acc-Dns-Server-Pri Length
    radius.Acc_Dns_Server_Sec  Acc-Dns-Server-Sec
        IPv4 address
    radius.Acc_Dns_Server_Sec.len  Length
        Unsigned 8-bit integer
        Acc-Dns-Server-Sec Length
    radius.Acc_Igmp_Admin_State  Acc-Igmp-Admin-State
        Unsigned 32-bit integer
    radius.Acc_Igmp_Admin_State.len  Length
        Unsigned 8-bit integer
        Acc-Igmp-Admin-State Length
    radius.Acc_Igmp_Version  Acc-Igmp-Version
        Unsigned 32-bit integer
    radius.Acc_Igmp_Version.len  Length
        Unsigned 8-bit integer
        Acc-Igmp-Version Length
    radius.Acc_Input_Errors  Acc-Input-Errors
        Unsigned 32-bit integer
    radius.Acc_Input_Errors.len  Length
        Unsigned 8-bit integer
        Acc-Input-Errors Length
    radius.Acc_Ip_Compression  Acc-Ip-Compression
        Unsigned 32-bit integer
    radius.Acc_Ip_Compression.len  Length
        Unsigned 8-bit integer
        Acc-Ip-Compression Length
    radius.Acc_Ip_Gateway_Pri  Acc-Ip-Gateway-Pri
        IPv4 address
    radius.Acc_Ip_Gateway_Pri.len  Length
        Unsigned 8-bit integer
        Acc-Ip-Gateway-Pri Length
    radius.Acc_Ip_Gateway_Sec  Acc-Ip-Gateway-Sec
        IPv4 address
    radius.Acc_Ip_Gateway_Sec.len  Length
        Unsigned 8-bit integer
        Acc-Ip-Gateway-Sec Length
    radius.Acc_Ip_Pool_Name  Acc-Ip-Pool-Name
        String
    radius.Acc_Ip_Pool_Name.len  Length
        Unsigned 8-bit integer
        Acc-Ip-Pool-Name Length
    radius.Acc_Ipx_Compression  Acc-Ipx-Compression
        Unsigned 32-bit integer
    radius.Acc_Ipx_Compression.len  Length
        Unsigned 8-bit integer
        Acc-Ipx-Compression Length
    radius.Acc_Location_Id  Acc-Location-Id
        String
    radius.Acc_Location_Id.len  Length
        Unsigned 8-bit integer
        Acc-Location-Id Length
    radius.Acc_ML_Call_Threshold  Acc-ML-Call-Threshold
        Unsigned 32-bit integer
    radius.Acc_ML_Call_Threshold.len  Length
        Unsigned 8-bit integer
        Acc-ML-Call-Threshold Length
    radius.Acc_ML_Clear_Threshold  Acc-ML-Clear-Threshold
        Unsigned 32-bit integer
    radius.Acc_ML_Clear_Threshold.len  Length
        Unsigned 8-bit integer
        Acc-ML-Clear-Threshold Length
    radius.Acc_ML_Damping_Factor  Acc-ML-Damping-Factor
        Unsigned 32-bit integer
    radius.Acc_ML_Damping_Factor.len  Length
        Unsigned 8-bit integer
        Acc-ML-Damping-Factor Length
    radius.Acc_ML_MLX_Admin_State  Acc-ML-MLX-Admin-State
        Unsigned 32-bit integer
    radius.Acc_ML_MLX_Admin_State.len  Length
        Unsigned 8-bit integer
        Acc-ML-MLX-Admin-State Length
    radius.Acc_MN_HA_Secret  Acc-MN-HA-Secret
        String
    radius.Acc_MN_HA_Secret.len  Length
        Unsigned 8-bit integer
        Acc-MN-HA-Secret Length
    radius.Acc_Modem_Error_Protocol  Acc-Modem-Error-Protocol
        String
    radius.Acc_Modem_Error_Protocol.len  Length
        Unsigned 8-bit integer
        Acc-Modem-Error-Protocol Length
    radius.Acc_Modem_Modulation_Type  Acc-Modem-Modulation-Type
        String
    radius.Acc_Modem_Modulation_Type.len  Length
        Unsigned 8-bit integer
        Acc-Modem-Modulation-Type Length
    radius.Acc_Nbns_Server_Pri  Acc-Nbns-Server-Pri
        IPv4 address
    radius.Acc_Nbns_Server_Pri.len  Length
        Unsigned 8-bit integer
        Acc-Nbns-Server-Pri Length
    radius.Acc_Nbns_Server_Sec  Acc-Nbns-Server-Sec
        IPv4 address
    radius.Acc_Nbns_Server_Sec.len  Length
        Unsigned 8-bit integer
        Acc-Nbns-Server-Sec Length
    radius.Acc_Output_Errors  Acc-Output-Errors
        Unsigned 32-bit integer
    radius.Acc_Output_Errors.len  Length
        Unsigned 8-bit integer
        Acc-Output-Errors Length
    radius.Acc_Reason_Code  Acc-Reason-Code
        Unsigned 32-bit integer
    radius.Acc_Reason_Code.len  Length
        Unsigned 8-bit integer
        Acc-Reason-Code Length
    radius.Acc_Request_Type  Acc-Request-Type
        Unsigned 32-bit integer
    radius.Acc_Request_Type.len  Length
        Unsigned 8-bit integer
        Acc-Request-Type Length
    radius.Acc_Route_Policy  Acc-Route-Policy
        Unsigned 32-bit integer
    radius.Acc_Route_Policy.len  Length
        Unsigned 8-bit integer
        Acc-Route-Policy Length
    radius.Acc_Service_Profile  Acc-Service-Profile
        String
    radius.Acc_Service_Profile.len  Length
        Unsigned 8-bit integer
        Acc-Service-Profile Length
    radius.Acc_Tunnel_Port  Acc-Tunnel-Port
        Unsigned 32-bit integer
    radius.Acc_Tunnel_Port.len  Length
        Unsigned 8-bit integer
        Acc-Tunnel-Port Length
    radius.Acc_Tunnel_Secret  Acc-Tunnel-Secret
        String
    radius.Acc_Tunnel_Secret.len  Length
        Unsigned 8-bit integer
        Acc-Tunnel-Secret Length
    radius.Acc_Vpsm_Reject_Cause  Acc-Vpsm-Reject-Cause
        Unsigned 32-bit integer
    radius.Acc_Vpsm_Reject_Cause.len  Length
        Unsigned 8-bit integer
        Acc-Vpsm-Reject-Cause Length
    radius.Access_Loop_Encapsulation  Access-Loop-Encapsulation
        Byte array
    radius.Access_Loop_Encapsulation.len  Length
        Unsigned 8-bit integer
        Access-Loop-Encapsulation Length
    radius.Acct_Authentic  Acct-Authentic
        Unsigned 32-bit integer
    radius.Acct_Authentic.len  Length
        Unsigned 8-bit integer
        Acct-Authentic Length
    radius.Acct_Delay_Time  Acct-Delay-Time
        Unsigned 32-bit integer
    radius.Acct_Delay_Time.len  Length
        Unsigned 8-bit integer
        Acct-Delay-Time Length
    radius.Acct_Dyn_Ac_Ent  Acct-Dyn-Ac-Ent
        String
    radius.Acct_Dyn_Ac_Ent.len  Length
        Unsigned 8-bit integer
        Acct-Dyn-Ac-Ent Length
    radius.Acct_Input_Gigawords  Acct-Input-Gigawords
        Unsigned 32-bit integer
    radius.Acct_Input_Gigawords.len  Length
        Unsigned 8-bit integer
        Acct-Input-Gigawords Length
    radius.Acct_Input_Octets  Acct-Input-Octets
        Unsigned 32-bit integer
    radius.Acct_Input_Octets.len  Length
        Unsigned 8-bit integer
        Acct-Input-Octets Length
    radius.Acct_Input_Octets_64  Acct-Input-Octets-64
        Byte array
    radius.Acct_Input_Octets_64.len  Length
        Unsigned 8-bit integer
        Acct-Input-Octets-64 Length
    radius.Acct_Input_Packets  Acct-Input-Packets
        Unsigned 32-bit integer
    radius.Acct_Input_Packets.len  Length
        Unsigned 8-bit integer
        Acct-Input-Packets Length
    radius.Acct_Input_Packets_64  Acct-Input-Packets-64
        Byte array
    radius.Acct_Input_Packets_64.len  Length
        Unsigned 8-bit integer
        Acct-Input-Packets-64 Length
    radius.Acct_Interim_Interval  Acct-Interim-Interval
        Unsigned 32-bit integer
    radius.Acct_Interim_Interval.len  Length
        Unsigned 8-bit integer
        Acct-Interim-Interval Length
    radius.Acct_Link_Count  Acct-Link-Count
        Unsigned 32-bit integer
    radius.Acct_Link_Count.len  Length
        Unsigned 8-bit integer
        Acct-Link-Count Length
    radius.Acct_Mcast_In_Octets  Acct-Mcast-In-Octets
        Unsigned 32-bit integer
    radius.Acct_Mcast_In_Octets.len  Length
        Unsigned 8-bit integer
        Acct-Mcast-In-Octets Length
    radius.Acct_Mcast_In_Octets_64  Acct-Mcast-In-Octets-64
        Byte array
    radius.Acct_Mcast_In_Octets_64.len  Length
        Unsigned 8-bit integer
        Acct-Mcast-In-Octets-64 Length
    radius.Acct_Mcast_In_Packets  Acct-Mcast-In-Packets
        Unsigned 32-bit integer
    radius.Acct_Mcast_In_Packets.len  Length
        Unsigned 8-bit integer
        Acct-Mcast-In-Packets Length
    radius.Acct_Mcast_In_Packets_64  Acct-Mcast-In-Packets-64
        Byte array
    radius.Acct_Mcast_In_Packets_64.len  Length
        Unsigned 8-bit integer
        Acct-Mcast-In-Packets-64 Length
    radius.Acct_Mcast_Out_Octets  Acct-Mcast-Out-Octets
        Unsigned 32-bit integer
    radius.Acct_Mcast_Out_Octets.len  Length
        Unsigned 8-bit integer
        Acct-Mcast-Out-Octets Length
    radius.Acct_Mcast_Out_Octets_64  Acct-Mcast-Out-Octets-64
        Byte array
    radius.Acct_Mcast_Out_Octets_64.len  Length
        Unsigned 8-bit integer
        Acct-Mcast-Out-Octets-64 Length
    radius.Acct_Mcast_Out_Packets  Acct-Mcast-Out-Packets
        Unsigned 32-bit integer
    radius.Acct_Mcast_Out_Packets.len  Length
        Unsigned 8-bit integer
        Acct-Mcast-Out-Packets Length
    radius.Acct_Mcast_Out_Packets_64  Acct-Mcast-Out-Packets-64
        Byte array
    radius.Acct_Mcast_Out_Packets_64.len  Length
        Unsigned 8-bit integer
        Acct-Mcast-Out-Packets-64 Length
    radius.Acct_Multi_Session_Id  Acct-Multi-Session-Id
        String
    radius.Acct_Multi_Session_Id.len  Length
        Unsigned 8-bit integer
        Acct-Multi-Session-Id Length
    radius.Acct_Output_Gigawords  Acct-Output-Gigawords
        Unsigned 32-bit integer
    radius.Acct_Output_Gigawords.len  Length
        Unsigned 8-bit integer
        Acct-Output-Gigawords Length
    radius.Acct_Output_Octets  Acct-Output-Octets
        Unsigned 32-bit integer
    radius.Acct_Output_Octets.len  Length
        Unsigned 8-bit integer
        Acct-Output-Octets Length
    radius.Acct_Output_Octets_64  Acct-Output-Octets-64
        Byte array
    radius.Acct_Output_Octets_64.len  Length
        Unsigned 8-bit integer
        Acct-Output-Octets-64 Length
    radius.Acct_Output_Packets  Acct-Output-Packets
        Unsigned 32-bit integer
    radius.Acct_Output_Packets.len  Length
        Unsigned 8-bit integer
        Acct-Output-Packets Length
    radius.Acct_Output_Packets_64  Acct-Output-Packets-64
        Byte array
    radius.Acct_Output_Packets_64.len  Length
        Unsigned 8-bit integer
        Acct-Output-Packets-64 Length
    radius.Acct_Session_Gigawords  Acct-Session-Gigawords
        Unsigned 32-bit integer
    radius.Acct_Session_Gigawords.len  Length
        Unsigned 8-bit integer
        Acct-Session-Gigawords Length
    radius.Acct_Session_Id  Acct-Session-Id
        String
    radius.Acct_Session_Id.len  Length
        Unsigned 8-bit integer
        Acct-Session-Id Length
    radius.Acct_Session_Input_Gigawords  Acct-Session-Input-Gigawords
        Unsigned 32-bit integer
    radius.Acct_Session_Input_Gigawords.len  Length
        Unsigned 8-bit integer
        Acct-Session-Input-Gigawords Length
    radius.Acct_Session_Input_Octets  Acct-Session-Input-Octets
        Unsigned 32-bit integer
    radius.Acct_Session_Input_Octets.len  Length
        Unsigned 8-bit integer
        Acct-Session-Input-Octets Length
    radius.Acct_Session_Octets  Acct-Session-Octets
        Unsigned 32-bit integer
    radius.Acct_Session_Octets.len  Length
        Unsigned 8-bit integer
        Acct-Session-Octets Length
    radius.Acct_Session_Output_Gigawords  Acct-Session-Output-Gigawords
        Unsigned 32-bit integer
    radius.Acct_Session_Output_Gigawords.len  Length
        Unsigned 8-bit integer
        Acct-Session-Output-Gigawords Length
    radius.Acct_Session_Output_Octets  Acct-Session-Output-Octets
        Unsigned 32-bit integer
    radius.Acct_Session_Output_Octets.len  Length
        Unsigned 8-bit integer
        Acct-Session-Output-Octets Length
    radius.Acct_Session_Time  Acct-Session-Time
        Unsigned 32-bit integer
    radius.Acct_Session_Time.len  Length
        Unsigned 8-bit integer
        Acct-Session-Time Length
    radius.Acct_Status_Type  Acct-Status-Type
        Unsigned 32-bit integer
    radius.Acct_Status_Type.len  Length
        Unsigned 8-bit integer
        Acct-Status-Type Length
    radius.Acct_Terminate_Cause  Acct-Terminate-Cause
        Unsigned 32-bit integer
    radius.Acct_Terminate_Cause.len  Length
        Unsigned 8-bit integer
        Acct-Terminate-Cause Length
    radius.Acct_Tunnel_Connection  Acct-Tunnel-Connection
        String
    radius.Acct_Tunnel_Connection.len  Length
        Unsigned 8-bit integer
        Acct-Tunnel-Connection Length
    radius.Acct_Tunnel_Packets_Lost  Acct-Tunnel-Packets-Lost
        Unsigned 32-bit integer
    radius.Acct_Tunnel_Packets_Lost.len  Length
        Unsigned 8-bit integer
        Acct-Tunnel-Packets-Lost Length
    radius.Acct_Update_Reason  Acct-Update-Reason
        Unsigned 32-bit integer
    radius.Acct_Update_Reason.len  Length
        Unsigned 8-bit integer
        Acct-Update-Reason Length
    radius.Actual_Data_Rate_Downstream  Actual-Data-Rate-Downstream
        Unsigned 32-bit integer
    radius.Actual_Data_Rate_Downstream.len  Length
        Unsigned 8-bit integer
        Actual-Data-Rate-Downstream Length
    radius.Actual_Data_Rate_Upstream  Actual-Data-Rate-Upstream
        Unsigned 32-bit integer
    radius.Actual_Data_Rate_Upstream.len  Length
        Unsigned 8-bit integer
        Actual-Data-Rate-Upstream Length
    radius.Actual_Interleaving_Delay_Downstream  Actual-Interleaving-Delay-Downstream
        Unsigned 32-bit integer
    radius.Actual_Interleaving_Delay_Downstream.len  Length
        Unsigned 8-bit integer
        Actual-Interleaving-Delay-Downstream Length
    radius.Actual_Interleaving_Delay_Upstream  Actual-Interleaving-Delay-Upstream
        Unsigned 32-bit integer
    radius.Actual_Interleaving_Delay_Upstream.len  Length
        Unsigned 8-bit integer
        Actual-Interleaving-Delay-Upstream Length
    radius.Agent_Circuit_Id  Agent-Circuit-Id
        String
    radius.Agent_Circuit_Id.len  Length
        Unsigned 8-bit integer
        Agent-Circuit-Id Length
    radius.Agent_Remote_Id  Agent-Remote-Id
        String
    radius.Agent_Remote_Id.len  Length
        Unsigned 8-bit integer
        Agent-Remote-Id Length
    radius.Airespace_8021p_Tag  Airespace-8021p-Tag
        Unsigned 32-bit integer
    radius.Airespace_8021p_Tag.len  Length
        Unsigned 8-bit integer
        Airespace-8021p-Tag Length
    radius.Airespace_ACL_Name  Airespace-ACL-Name
        String
    radius.Airespace_ACL_Name.len  Length
        Unsigned 8-bit integer
        Airespace-ACL-Name Length
    radius.Airespace_DSCP  Airespace-DSCP
        Unsigned 32-bit integer
    radius.Airespace_DSCP.len  Length
        Unsigned 8-bit integer
        Airespace-DSCP Length
    radius.Airespace_Interface_Name  Airespace-Interface-Name
        String
    radius.Airespace_Interface_Name.len  Length
        Unsigned 8-bit integer
        Airespace-Interface-Name Length
    radius.Airespace_QOS_Level  Airespace-QOS-Level
        Unsigned 32-bit integer
    radius.Airespace_QOS_Level.len  Length
        Unsigned 8-bit integer
        Airespace-QOS-Level Length
    radius.Airespace_Wlan_Id  Airespace-Wlan-Id
        Unsigned 32-bit integer
    radius.Airespace_Wlan_Id.len  Length
        Unsigned 8-bit integer
        Airespace-Wlan-Id Length
    radius.Alteon_Client_IP_Address  Alteon-Client-IP-Address
        IPv4 address
    radius.Alteon_Client_IP_Address.len  Length
        Unsigned 8-bit integer
        Alteon-Client-IP-Address Length
    radius.Alteon_Client_Netmask  Alteon-Client-Netmask
        IPv4 address
    radius.Alteon_Client_Netmask.len  Length
        Unsigned 8-bit integer
        Alteon-Client-Netmask Length
    radius.Alteon_Domain_Name  Alteon-Domain-Name
        String
    radius.Alteon_Domain_Name.len  Length
        Unsigned 8-bit integer
        Alteon-Domain-Name Length
    radius.Alteon_Group_Mapping  Alteon-Group-Mapping
        String
    radius.Alteon_Group_Mapping.len  Length
        Unsigned 8-bit integer
        Alteon-Group-Mapping Length
    radius.Alteon_Primary_DNS_Server  Alteon-Primary-DNS-Server
        IPv4 address
    radius.Alteon_Primary_DNS_Server.len  Length
        Unsigned 8-bit integer
        Alteon-Primary-DNS-Server Length
    radius.Alteon_Primary_NBNS_Server  Alteon-Primary-NBNS-Server
        IPv4 address
    radius.Alteon_Primary_NBNS_Server.len  Length
        Unsigned 8-bit integer
        Alteon-Primary-NBNS-Server Length
    radius.Alteon_Secondary_DNS_Server  Alteon-Secondary-DNS-Server
        IPv4 address
    radius.Alteon_Secondary_DNS_Server.len  Length
        Unsigned 8-bit integer
        Alteon-Secondary-DNS-Server Length
    radius.Alteon_Secondary_NBNS_Server  Alteon-Secondary-NBNS-Server
        IPv4 address
    radius.Alteon_Secondary_NBNS_Server.len  Length
        Unsigned 8-bit integer
        Alteon-Secondary-NBNS-Server Length
    radius.Alteon_Service_Type  Alteon-Service-Type
        Unsigned 32-bit integer
    radius.Alteon_Service_Type.len  Length
        Unsigned 8-bit integer
        Alteon-Service-Type Length
    radius.Alteon_VPN_Id  Alteon-VPN-Id
        Unsigned 32-bit integer
    radius.Alteon_VPN_Id.len  Length
        Unsigned 8-bit integer
        Alteon-VPN-Id Length
    radius.Alvariaon_VSA_100  Alvariaon-VSA-100
        String
    radius.Alvariaon_VSA_100.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-100 Length
    radius.Alvariaon_VSA_101  Alvariaon-VSA-101
        String
    radius.Alvariaon_VSA_101.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-101 Length
    radius.Alvariaon_VSA_102  Alvariaon-VSA-102
        String
    radius.Alvariaon_VSA_102.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-102 Length
    radius.Alvariaon_VSA_103  Alvariaon-VSA-103
        String
    radius.Alvariaon_VSA_103.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-103 Length
    radius.Alvariaon_VSA_104  Alvariaon-VSA-104
        String
    radius.Alvariaon_VSA_104.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-104 Length
    radius.Alvariaon_VSA_105  Alvariaon-VSA-105
        String
    radius.Alvariaon_VSA_105.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-105 Length
    radius.Alvariaon_VSA_106  Alvariaon-VSA-106
        String
    radius.Alvariaon_VSA_106.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-106 Length
    radius.Alvariaon_VSA_107  Alvariaon-VSA-107
        String
    radius.Alvariaon_VSA_107.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-107 Length
    radius.Alvariaon_VSA_108  Alvariaon-VSA-108
        String
    radius.Alvariaon_VSA_108.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-108 Length
    radius.Alvariaon_VSA_109  Alvariaon-VSA-109
        String
    radius.Alvariaon_VSA_109.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-109 Length
    radius.Alvariaon_VSA_110  Alvariaon-VSA-110
        String
    radius.Alvariaon_VSA_110.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-110 Length
    radius.Alvariaon_VSA_111  Alvariaon-VSA-111
        String
    radius.Alvariaon_VSA_111.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-111 Length
    radius.Alvariaon_VSA_112  Alvariaon-VSA-112
        String
    radius.Alvariaon_VSA_112.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-112 Length
    radius.Alvariaon_VSA_113  Alvariaon-VSA-113
        String
    radius.Alvariaon_VSA_113.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-113 Length
    radius.Alvariaon_VSA_114  Alvariaon-VSA-114
        String
    radius.Alvariaon_VSA_114.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-114 Length
    radius.Alvariaon_VSA_115  Alvariaon-VSA-115
        String
    radius.Alvariaon_VSA_115.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-115 Length
    radius.Alvariaon_VSA_116  Alvariaon-VSA-116
        String
    radius.Alvariaon_VSA_116.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-116 Length
    radius.Alvariaon_VSA_117  Alvariaon-VSA-117
        String
    radius.Alvariaon_VSA_117.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-117 Length
    radius.Alvariaon_VSA_118  Alvariaon-VSA-118
        String
    radius.Alvariaon_VSA_118.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-118 Length
    radius.Alvariaon_VSA_119  Alvariaon-VSA-119
        String
    radius.Alvariaon_VSA_119.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-119 Length
    radius.Alvariaon_VSA_12  Alvariaon-VSA-12
        String
    radius.Alvariaon_VSA_12.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-12 Length
    radius.Alvariaon_VSA_120  Alvariaon-VSA-120
        String
    radius.Alvariaon_VSA_120.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-120 Length
    radius.Alvariaon_VSA_121  Alvariaon-VSA-121
        String
    radius.Alvariaon_VSA_121.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-121 Length
    radius.Alvariaon_VSA_122  Alvariaon-VSA-122
        String
    radius.Alvariaon_VSA_122.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-122 Length
    radius.Alvariaon_VSA_123  Alvariaon-VSA-123
        String
    radius.Alvariaon_VSA_123.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-123 Length
    radius.Alvariaon_VSA_124  Alvariaon-VSA-124
        String
    radius.Alvariaon_VSA_124.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-124 Length
    radius.Alvariaon_VSA_125  Alvariaon-VSA-125
        String
    radius.Alvariaon_VSA_125.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-125 Length
    radius.Alvariaon_VSA_126  Alvariaon-VSA-126
        String
    radius.Alvariaon_VSA_126.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-126 Length
    radius.Alvariaon_VSA_127  Alvariaon-VSA-127
        String
    radius.Alvariaon_VSA_127.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-127 Length
    radius.Alvariaon_VSA_128  Alvariaon-VSA-128
        String
    radius.Alvariaon_VSA_128.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-128 Length
    radius.Alvariaon_VSA_129  Alvariaon-VSA-129
        String
    radius.Alvariaon_VSA_129.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-129 Length
    radius.Alvariaon_VSA_13  Alvariaon-VSA-13
        String
    radius.Alvariaon_VSA_13.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-13 Length
    radius.Alvariaon_VSA_130  Alvariaon-VSA-130
        String
    radius.Alvariaon_VSA_130.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-130 Length
    radius.Alvariaon_VSA_131  Alvariaon-VSA-131
        String
    radius.Alvariaon_VSA_131.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-131 Length
    radius.Alvariaon_VSA_132  Alvariaon-VSA-132
        String
    radius.Alvariaon_VSA_132.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-132 Length
    radius.Alvariaon_VSA_133  Alvariaon-VSA-133
        String
    radius.Alvariaon_VSA_133.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-133 Length
    radius.Alvariaon_VSA_134  Alvariaon-VSA-134
        String
    radius.Alvariaon_VSA_134.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-134 Length
    radius.Alvariaon_VSA_135  Alvariaon-VSA-135
        String
    radius.Alvariaon_VSA_135.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-135 Length
    radius.Alvariaon_VSA_136  Alvariaon-VSA-136
        String
    radius.Alvariaon_VSA_136.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-136 Length
    radius.Alvariaon_VSA_137  Alvariaon-VSA-137
        String
    radius.Alvariaon_VSA_137.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-137 Length
    radius.Alvariaon_VSA_138  Alvariaon-VSA-138
        String
    radius.Alvariaon_VSA_138.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-138 Length
    radius.Alvariaon_VSA_139  Alvariaon-VSA-139
        String
    radius.Alvariaon_VSA_139.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-139 Length
    radius.Alvariaon_VSA_14  Alvariaon-VSA-14
        String
    radius.Alvariaon_VSA_14.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-14 Length
    radius.Alvariaon_VSA_140  Alvariaon-VSA-140
        String
    radius.Alvariaon_VSA_140.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-140 Length
    radius.Alvariaon_VSA_141  Alvariaon-VSA-141
        String
    radius.Alvariaon_VSA_141.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-141 Length
    radius.Alvariaon_VSA_142  Alvariaon-VSA-142
        String
    radius.Alvariaon_VSA_142.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-142 Length
    radius.Alvariaon_VSA_143  Alvariaon-VSA-143
        String
    radius.Alvariaon_VSA_143.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-143 Length
    radius.Alvariaon_VSA_144  Alvariaon-VSA-144
        String
    radius.Alvariaon_VSA_144.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-144 Length
    radius.Alvariaon_VSA_145  Alvariaon-VSA-145
        String
    radius.Alvariaon_VSA_145.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-145 Length
    radius.Alvariaon_VSA_146  Alvariaon-VSA-146
        String
    radius.Alvariaon_VSA_146.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-146 Length
    radius.Alvariaon_VSA_147  Alvariaon-VSA-147
        String
    radius.Alvariaon_VSA_147.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-147 Length
    radius.Alvariaon_VSA_148  Alvariaon-VSA-148
        String
    radius.Alvariaon_VSA_148.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-148 Length
    radius.Alvariaon_VSA_149  Alvariaon-VSA-149
        String
    radius.Alvariaon_VSA_149.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-149 Length
    radius.Alvariaon_VSA_15  Alvariaon-VSA-15
        String
    radius.Alvariaon_VSA_15.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-15 Length
    radius.Alvariaon_VSA_150  Alvariaon-VSA-150
        String
    radius.Alvariaon_VSA_150.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-150 Length
    radius.Alvariaon_VSA_151  Alvariaon-VSA-151
        String
    radius.Alvariaon_VSA_151.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-151 Length
    radius.Alvariaon_VSA_152  Alvariaon-VSA-152
        String
    radius.Alvariaon_VSA_152.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-152 Length
    radius.Alvariaon_VSA_153  Alvariaon-VSA-153
        String
    radius.Alvariaon_VSA_153.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-153 Length
    radius.Alvariaon_VSA_154  Alvariaon-VSA-154
        String
    radius.Alvariaon_VSA_154.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-154 Length
    radius.Alvariaon_VSA_155  Alvariaon-VSA-155
        String
    radius.Alvariaon_VSA_155.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-155 Length
    radius.Alvariaon_VSA_156  Alvariaon-VSA-156
        String
    radius.Alvariaon_VSA_156.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-156 Length
    radius.Alvariaon_VSA_157  Alvariaon-VSA-157
        String
    radius.Alvariaon_VSA_157.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-157 Length
    radius.Alvariaon_VSA_158  Alvariaon-VSA-158
        String
    radius.Alvariaon_VSA_158.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-158 Length
    radius.Alvariaon_VSA_159  Alvariaon-VSA-159
        String
    radius.Alvariaon_VSA_159.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-159 Length
    radius.Alvariaon_VSA_16  Alvariaon-VSA-16
        String
    radius.Alvariaon_VSA_16.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-16 Length
    radius.Alvariaon_VSA_160  Alvariaon-VSA-160
        String
    radius.Alvariaon_VSA_160.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-160 Length
    radius.Alvariaon_VSA_161  Alvariaon-VSA-161
        String
    radius.Alvariaon_VSA_161.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-161 Length
    radius.Alvariaon_VSA_162  Alvariaon-VSA-162
        String
    radius.Alvariaon_VSA_162.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-162 Length
    radius.Alvariaon_VSA_163  Alvariaon-VSA-163
        String
    radius.Alvariaon_VSA_163.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-163 Length
    radius.Alvariaon_VSA_164  Alvariaon-VSA-164
        String
    radius.Alvariaon_VSA_164.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-164 Length
    radius.Alvariaon_VSA_165  Alvariaon-VSA-165
        String
    radius.Alvariaon_VSA_165.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-165 Length
    radius.Alvariaon_VSA_166  Alvariaon-VSA-166
        String
    radius.Alvariaon_VSA_166.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-166 Length
    radius.Alvariaon_VSA_167  Alvariaon-VSA-167
        String
    radius.Alvariaon_VSA_167.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-167 Length
    radius.Alvariaon_VSA_168  Alvariaon-VSA-168
        String
    radius.Alvariaon_VSA_168.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-168 Length
    radius.Alvariaon_VSA_169  Alvariaon-VSA-169
        String
    radius.Alvariaon_VSA_169.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-169 Length
    radius.Alvariaon_VSA_17  Alvariaon-VSA-17
        String
    radius.Alvariaon_VSA_17.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-17 Length
    radius.Alvariaon_VSA_170  Alvariaon-VSA-170
        String
    radius.Alvariaon_VSA_170.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-170 Length
    radius.Alvariaon_VSA_171  Alvariaon-VSA-171
        String
    radius.Alvariaon_VSA_171.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-171 Length
    radius.Alvariaon_VSA_172  Alvariaon-VSA-172
        String
    radius.Alvariaon_VSA_172.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-172 Length
    radius.Alvariaon_VSA_173  Alvariaon-VSA-173
        String
    radius.Alvariaon_VSA_173.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-173 Length
    radius.Alvariaon_VSA_174  Alvariaon-VSA-174
        String
    radius.Alvariaon_VSA_174.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-174 Length
    radius.Alvariaon_VSA_175  Alvariaon-VSA-175
        String
    radius.Alvariaon_VSA_175.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-175 Length
    radius.Alvariaon_VSA_176  Alvariaon-VSA-176
        String
    radius.Alvariaon_VSA_176.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-176 Length
    radius.Alvariaon_VSA_177  Alvariaon-VSA-177
        String
    radius.Alvariaon_VSA_177.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-177 Length
    radius.Alvariaon_VSA_178  Alvariaon-VSA-178
        String
    radius.Alvariaon_VSA_178.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-178 Length
    radius.Alvariaon_VSA_179  Alvariaon-VSA-179
        String
    radius.Alvariaon_VSA_179.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-179 Length
    radius.Alvariaon_VSA_18  Alvariaon-VSA-18
        String
    radius.Alvariaon_VSA_18.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-18 Length
    radius.Alvariaon_VSA_180  Alvariaon-VSA-180
        String
    radius.Alvariaon_VSA_180.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-180 Length
    radius.Alvariaon_VSA_181  Alvariaon-VSA-181
        String
    radius.Alvariaon_VSA_181.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-181 Length
    radius.Alvariaon_VSA_182  Alvariaon-VSA-182
        String
    radius.Alvariaon_VSA_182.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-182 Length
    radius.Alvariaon_VSA_183  Alvariaon-VSA-183
        String
    radius.Alvariaon_VSA_183.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-183 Length
    radius.Alvariaon_VSA_184  Alvariaon-VSA-184
        String
    radius.Alvariaon_VSA_184.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-184 Length
    radius.Alvariaon_VSA_185  Alvariaon-VSA-185
        String
    radius.Alvariaon_VSA_185.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-185 Length
    radius.Alvariaon_VSA_186  Alvariaon-VSA-186
        String
    radius.Alvariaon_VSA_186.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-186 Length
    radius.Alvariaon_VSA_187  Alvariaon-VSA-187
        String
    radius.Alvariaon_VSA_187.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-187 Length
    radius.Alvariaon_VSA_188  Alvariaon-VSA-188
        String
    radius.Alvariaon_VSA_188.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-188 Length
    radius.Alvariaon_VSA_189  Alvariaon-VSA-189
        String
    radius.Alvariaon_VSA_189.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-189 Length
    radius.Alvariaon_VSA_19  Alvariaon-VSA-19
        String
    radius.Alvariaon_VSA_19.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-19 Length
    radius.Alvariaon_VSA_190  Alvariaon-VSA-190
        String
    radius.Alvariaon_VSA_190.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-190 Length
    radius.Alvariaon_VSA_191  Alvariaon-VSA-191
        String
    radius.Alvariaon_VSA_191.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-191 Length
    radius.Alvariaon_VSA_192  Alvariaon-VSA-192
        String
    radius.Alvariaon_VSA_192.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-192 Length
    radius.Alvariaon_VSA_193  Alvariaon-VSA-193
        String
    radius.Alvariaon_VSA_193.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-193 Length
    radius.Alvariaon_VSA_194  Alvariaon-VSA-194
        String
    radius.Alvariaon_VSA_194.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-194 Length
    radius.Alvariaon_VSA_195  Alvariaon-VSA-195
        String
    radius.Alvariaon_VSA_195.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-195 Length
    radius.Alvariaon_VSA_196  Alvariaon-VSA-196
        String
    radius.Alvariaon_VSA_196.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-196 Length
    radius.Alvariaon_VSA_197  Alvariaon-VSA-197
        String
    radius.Alvariaon_VSA_197.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-197 Length
    radius.Alvariaon_VSA_198  Alvariaon-VSA-198
        String
    radius.Alvariaon_VSA_198.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-198 Length
    radius.Alvariaon_VSA_199  Alvariaon-VSA-199
        String
    radius.Alvariaon_VSA_199.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-199 Length
    radius.Alvariaon_VSA_20  Alvariaon-VSA-20
        String
    radius.Alvariaon_VSA_20.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-20 Length
    radius.Alvariaon_VSA_200  Alvariaon-VSA-200
        String
    radius.Alvariaon_VSA_200.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-200 Length
    radius.Alvariaon_VSA_201  Alvariaon-VSA-201
        String
    radius.Alvariaon_VSA_201.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-201 Length
    radius.Alvariaon_VSA_202  Alvariaon-VSA-202
        String
    radius.Alvariaon_VSA_202.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-202 Length
    radius.Alvariaon_VSA_203  Alvariaon-VSA-203
        String
    radius.Alvariaon_VSA_203.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-203 Length
    radius.Alvariaon_VSA_204  Alvariaon-VSA-204
        String
    radius.Alvariaon_VSA_204.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-204 Length
    radius.Alvariaon_VSA_205  Alvariaon-VSA-205
        String
    radius.Alvariaon_VSA_205.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-205 Length
    radius.Alvariaon_VSA_206  Alvariaon-VSA-206
        String
    radius.Alvariaon_VSA_206.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-206 Length
    radius.Alvariaon_VSA_207  Alvariaon-VSA-207
        String
    radius.Alvariaon_VSA_207.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-207 Length
    radius.Alvariaon_VSA_208  Alvariaon-VSA-208
        String
    radius.Alvariaon_VSA_208.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-208 Length
    radius.Alvariaon_VSA_209  Alvariaon-VSA-209
        String
    radius.Alvariaon_VSA_209.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-209 Length
    radius.Alvariaon_VSA_21  Alvariaon-VSA-21
        String
    radius.Alvariaon_VSA_21.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-21 Length
    radius.Alvariaon_VSA_210  Alvariaon-VSA-210
        String
    radius.Alvariaon_VSA_210.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-210 Length
    radius.Alvariaon_VSA_211  Alvariaon-VSA-211
        String
    radius.Alvariaon_VSA_211.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-211 Length
    radius.Alvariaon_VSA_212  Alvariaon-VSA-212
        String
    radius.Alvariaon_VSA_212.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-212 Length
    radius.Alvariaon_VSA_213  Alvariaon-VSA-213
        String
    radius.Alvariaon_VSA_213.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-213 Length
    radius.Alvariaon_VSA_214  Alvariaon-VSA-214
        String
    radius.Alvariaon_VSA_214.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-214 Length
    radius.Alvariaon_VSA_215  Alvariaon-VSA-215
        String
    radius.Alvariaon_VSA_215.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-215 Length
    radius.Alvariaon_VSA_216  Alvariaon-VSA-216
        String
    radius.Alvariaon_VSA_216.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-216 Length
    radius.Alvariaon_VSA_217  Alvariaon-VSA-217
        String
    radius.Alvariaon_VSA_217.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-217 Length
    radius.Alvariaon_VSA_218  Alvariaon-VSA-218
        String
    radius.Alvariaon_VSA_218.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-218 Length
    radius.Alvariaon_VSA_219  Alvariaon-VSA-219
        String
    radius.Alvariaon_VSA_219.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-219 Length
    radius.Alvariaon_VSA_22  Alvariaon-VSA-22
        String
    radius.Alvariaon_VSA_22.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-22 Length
    radius.Alvariaon_VSA_220  Alvariaon-VSA-220
        String
    radius.Alvariaon_VSA_220.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-220 Length
    radius.Alvariaon_VSA_221  Alvariaon-VSA-221
        String
    radius.Alvariaon_VSA_221.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-221 Length
    radius.Alvariaon_VSA_222  Alvariaon-VSA-222
        String
    radius.Alvariaon_VSA_222.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-222 Length
    radius.Alvariaon_VSA_223  Alvariaon-VSA-223
        String
    radius.Alvariaon_VSA_223.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-223 Length
    radius.Alvariaon_VSA_224  Alvariaon-VSA-224
        String
    radius.Alvariaon_VSA_224.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-224 Length
    radius.Alvariaon_VSA_225  Alvariaon-VSA-225
        String
    radius.Alvariaon_VSA_225.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-225 Length
    radius.Alvariaon_VSA_226  Alvariaon-VSA-226
        String
    radius.Alvariaon_VSA_226.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-226 Length
    radius.Alvariaon_VSA_227  Alvariaon-VSA-227
        String
    radius.Alvariaon_VSA_227.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-227 Length
    radius.Alvariaon_VSA_228  Alvariaon-VSA-228
        String
    radius.Alvariaon_VSA_228.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-228 Length
    radius.Alvariaon_VSA_229  Alvariaon-VSA-229
        String
    radius.Alvariaon_VSA_229.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-229 Length
    radius.Alvariaon_VSA_23  Alvariaon-VSA-23
        String
    radius.Alvariaon_VSA_23.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-23 Length
    radius.Alvariaon_VSA_230  Alvariaon-VSA-230
        String
    radius.Alvariaon_VSA_230.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-230 Length
    radius.Alvariaon_VSA_231  Alvariaon-VSA-231
        String
    radius.Alvariaon_VSA_231.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-231 Length
    radius.Alvariaon_VSA_232  Alvariaon-VSA-232
        String
    radius.Alvariaon_VSA_232.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-232 Length
    radius.Alvariaon_VSA_233  Alvariaon-VSA-233
        String
    radius.Alvariaon_VSA_233.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-233 Length
    radius.Alvariaon_VSA_234  Alvariaon-VSA-234
        String
    radius.Alvariaon_VSA_234.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-234 Length
    radius.Alvariaon_VSA_235  Alvariaon-VSA-235
        String
    radius.Alvariaon_VSA_235.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-235 Length
    radius.Alvariaon_VSA_236  Alvariaon-VSA-236
        String
    radius.Alvariaon_VSA_236.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-236 Length
    radius.Alvariaon_VSA_237  Alvariaon-VSA-237
        String
    radius.Alvariaon_VSA_237.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-237 Length
    radius.Alvariaon_VSA_238  Alvariaon-VSA-238
        String
    radius.Alvariaon_VSA_238.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-238 Length
    radius.Alvariaon_VSA_239  Alvariaon-VSA-239
        String
    radius.Alvariaon_VSA_239.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-239 Length
    radius.Alvariaon_VSA_24  Alvariaon-VSA-24
        String
    radius.Alvariaon_VSA_24.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-24 Length
    radius.Alvariaon_VSA_240  Alvariaon-VSA-240
        String
    radius.Alvariaon_VSA_240.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-240 Length
    radius.Alvariaon_VSA_241  Alvariaon-VSA-241
        String
    radius.Alvariaon_VSA_241.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-241 Length
    radius.Alvariaon_VSA_242  Alvariaon-VSA-242
        String
    radius.Alvariaon_VSA_242.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-242 Length
    radius.Alvariaon_VSA_243  Alvariaon-VSA-243
        String
    radius.Alvariaon_VSA_243.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-243 Length
    radius.Alvariaon_VSA_244  Alvariaon-VSA-244
        String
    radius.Alvariaon_VSA_244.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-244 Length
    radius.Alvariaon_VSA_245  Alvariaon-VSA-245
        String
    radius.Alvariaon_VSA_245.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-245 Length
    radius.Alvariaon_VSA_246  Alvariaon-VSA-246
        String
    radius.Alvariaon_VSA_246.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-246 Length
    radius.Alvariaon_VSA_247  Alvariaon-VSA-247
        String
    radius.Alvariaon_VSA_247.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-247 Length
    radius.Alvariaon_VSA_248  Alvariaon-VSA-248
        String
    radius.Alvariaon_VSA_248.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-248 Length
    radius.Alvariaon_VSA_249  Alvariaon-VSA-249
        String
    radius.Alvariaon_VSA_249.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-249 Length
    radius.Alvariaon_VSA_25  Alvariaon-VSA-25
        String
    radius.Alvariaon_VSA_25.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-25 Length
    radius.Alvariaon_VSA_250  Alvariaon-VSA-250
        String
    radius.Alvariaon_VSA_250.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-250 Length
    radius.Alvariaon_VSA_251  Alvariaon-VSA-251
        String
    radius.Alvariaon_VSA_251.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-251 Length
    radius.Alvariaon_VSA_252  Alvariaon-VSA-252
        String
    radius.Alvariaon_VSA_252.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-252 Length
    radius.Alvariaon_VSA_253  Alvariaon-VSA-253
        String
    radius.Alvariaon_VSA_253.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-253 Length
    radius.Alvariaon_VSA_254  Alvariaon-VSA-254
        String
    radius.Alvariaon_VSA_254.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-254 Length
    radius.Alvariaon_VSA_255  Alvariaon-VSA-255
        String
    radius.Alvariaon_VSA_255.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-255 Length
    radius.Alvariaon_VSA_26  Alvariaon-VSA-26
        String
    radius.Alvariaon_VSA_26.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-26 Length
    radius.Alvariaon_VSA_27  Alvariaon-VSA-27
        String
    radius.Alvariaon_VSA_27.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-27 Length
    radius.Alvariaon_VSA_28  Alvariaon-VSA-28
        String
    radius.Alvariaon_VSA_28.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-28 Length
    radius.Alvariaon_VSA_29  Alvariaon-VSA-29
        String
    radius.Alvariaon_VSA_29.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-29 Length
    radius.Alvariaon_VSA_30  Alvariaon-VSA-30
        String
    radius.Alvariaon_VSA_30.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-30 Length
    radius.Alvariaon_VSA_31  Alvariaon-VSA-31
        String
    radius.Alvariaon_VSA_31.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-31 Length
    radius.Alvariaon_VSA_32  Alvariaon-VSA-32
        String
    radius.Alvariaon_VSA_32.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-32 Length
    radius.Alvariaon_VSA_33  Alvariaon-VSA-33
        String
    radius.Alvariaon_VSA_33.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-33 Length
    radius.Alvariaon_VSA_34  Alvariaon-VSA-34
        String
    radius.Alvariaon_VSA_34.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-34 Length
    radius.Alvariaon_VSA_35  Alvariaon-VSA-35
        String
    radius.Alvariaon_VSA_35.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-35 Length
    radius.Alvariaon_VSA_36  Alvariaon-VSA-36
        String
    radius.Alvariaon_VSA_36.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-36 Length
    radius.Alvariaon_VSA_37  Alvariaon-VSA-37
        String
    radius.Alvariaon_VSA_37.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-37 Length
    radius.Alvariaon_VSA_38  Alvariaon-VSA-38
        String
    radius.Alvariaon_VSA_38.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-38 Length
    radius.Alvariaon_VSA_39  Alvariaon-VSA-39
        String
    radius.Alvariaon_VSA_39.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-39 Length
    radius.Alvariaon_VSA_40  Alvariaon-VSA-40
        String
    radius.Alvariaon_VSA_40.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-40 Length
    radius.Alvariaon_VSA_41  Alvariaon-VSA-41
        String
    radius.Alvariaon_VSA_41.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-41 Length
    radius.Alvariaon_VSA_42  Alvariaon-VSA-42
        String
    radius.Alvariaon_VSA_42.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-42 Length
    radius.Alvariaon_VSA_43  Alvariaon-VSA-43
        String
    radius.Alvariaon_VSA_43.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-43 Length
    radius.Alvariaon_VSA_44  Alvariaon-VSA-44
        String
    radius.Alvariaon_VSA_44.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-44 Length
    radius.Alvariaon_VSA_45  Alvariaon-VSA-45
        String
    radius.Alvariaon_VSA_45.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-45 Length
    radius.Alvariaon_VSA_46  Alvariaon-VSA-46
        String
    radius.Alvariaon_VSA_46.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-46 Length
    radius.Alvariaon_VSA_47  Alvariaon-VSA-47
        String
    radius.Alvariaon_VSA_47.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-47 Length
    radius.Alvariaon_VSA_48  Alvariaon-VSA-48
        String
    radius.Alvariaon_VSA_48.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-48 Length
    radius.Alvariaon_VSA_49  Alvariaon-VSA-49
        String
    radius.Alvariaon_VSA_49.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-49 Length
    radius.Alvariaon_VSA_50  Alvariaon-VSA-50
        String
    radius.Alvariaon_VSA_50.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-50 Length
    radius.Alvariaon_VSA_51  Alvariaon-VSA-51
        String
    radius.Alvariaon_VSA_51.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-51 Length
    radius.Alvariaon_VSA_52  Alvariaon-VSA-52
        String
    radius.Alvariaon_VSA_52.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-52 Length
    radius.Alvariaon_VSA_53  Alvariaon-VSA-53
        String
    radius.Alvariaon_VSA_53.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-53 Length
    radius.Alvariaon_VSA_54  Alvariaon-VSA-54
        String
    radius.Alvariaon_VSA_54.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-54 Length
    radius.Alvariaon_VSA_55  Alvariaon-VSA-55
        String
    radius.Alvariaon_VSA_55.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-55 Length
    radius.Alvariaon_VSA_56  Alvariaon-VSA-56
        String
    radius.Alvariaon_VSA_56.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-56 Length
    radius.Alvariaon_VSA_57  Alvariaon-VSA-57
        String
    radius.Alvariaon_VSA_57.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-57 Length
    radius.Alvariaon_VSA_58  Alvariaon-VSA-58
        String
    radius.Alvariaon_VSA_58.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-58 Length
    radius.Alvariaon_VSA_59  Alvariaon-VSA-59
        String
    radius.Alvariaon_VSA_59.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-59 Length
    radius.Alvariaon_VSA_60  Alvariaon-VSA-60
        String
    radius.Alvariaon_VSA_60.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-60 Length
    radius.Alvariaon_VSA_61  Alvariaon-VSA-61
        String
    radius.Alvariaon_VSA_61.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-61 Length
    radius.Alvariaon_VSA_62  Alvariaon-VSA-62
        String
    radius.Alvariaon_VSA_62.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-62 Length
    radius.Alvariaon_VSA_63  Alvariaon-VSA-63
        String
    radius.Alvariaon_VSA_63.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-63 Length
    radius.Alvariaon_VSA_64  Alvariaon-VSA-64
        String
    radius.Alvariaon_VSA_64.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-64 Length
    radius.Alvariaon_VSA_65  Alvariaon-VSA-65
        String
    radius.Alvariaon_VSA_65.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-65 Length
    radius.Alvariaon_VSA_66  Alvariaon-VSA-66
        String
    radius.Alvariaon_VSA_66.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-66 Length
    radius.Alvariaon_VSA_67  Alvariaon-VSA-67
        String
    radius.Alvariaon_VSA_67.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-67 Length
    radius.Alvariaon_VSA_68  Alvariaon-VSA-68
        String
    radius.Alvariaon_VSA_68.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-68 Length
    radius.Alvariaon_VSA_69  Alvariaon-VSA-69
        String
    radius.Alvariaon_VSA_69.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-69 Length
    radius.Alvariaon_VSA_70  Alvariaon-VSA-70
        String
    radius.Alvariaon_VSA_70.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-70 Length
    radius.Alvariaon_VSA_71  Alvariaon-VSA-71
        String
    radius.Alvariaon_VSA_71.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-71 Length
    radius.Alvariaon_VSA_72  Alvariaon-VSA-72
        String
    radius.Alvariaon_VSA_72.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-72 Length
    radius.Alvariaon_VSA_73  Alvariaon-VSA-73
        String
    radius.Alvariaon_VSA_73.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-73 Length
    radius.Alvariaon_VSA_74  Alvariaon-VSA-74
        String
    radius.Alvariaon_VSA_74.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-74 Length
    radius.Alvariaon_VSA_75  Alvariaon-VSA-75
        String
    radius.Alvariaon_VSA_75.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-75 Length
    radius.Alvariaon_VSA_76  Alvariaon-VSA-76
        String
    radius.Alvariaon_VSA_76.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-76 Length
    radius.Alvariaon_VSA_77  Alvariaon-VSA-77
        String
    radius.Alvariaon_VSA_77.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-77 Length
    radius.Alvariaon_VSA_78  Alvariaon-VSA-78
        String
    radius.Alvariaon_VSA_78.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-78 Length
    radius.Alvariaon_VSA_79  Alvariaon-VSA-79
        String
    radius.Alvariaon_VSA_79.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-79 Length
    radius.Alvariaon_VSA_80  Alvariaon-VSA-80
        String
    radius.Alvariaon_VSA_80.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-80 Length
    radius.Alvariaon_VSA_81  Alvariaon-VSA-81
        String
    radius.Alvariaon_VSA_81.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-81 Length
    radius.Alvariaon_VSA_82  Alvariaon-VSA-82
        String
    radius.Alvariaon_VSA_82.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-82 Length
    radius.Alvariaon_VSA_83  Alvariaon-VSA-83
        String
    radius.Alvariaon_VSA_83.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-83 Length
    radius.Alvariaon_VSA_84  Alvariaon-VSA-84
        String
    radius.Alvariaon_VSA_84.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-84 Length
    radius.Alvariaon_VSA_85  Alvariaon-VSA-85
        String
    radius.Alvariaon_VSA_85.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-85 Length
    radius.Alvariaon_VSA_86  Alvariaon-VSA-86
        String
    radius.Alvariaon_VSA_86.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-86 Length
    radius.Alvariaon_VSA_87  Alvariaon-VSA-87
        String
    radius.Alvariaon_VSA_87.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-87 Length
    radius.Alvariaon_VSA_88  Alvariaon-VSA-88
        String
    radius.Alvariaon_VSA_88.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-88 Length
    radius.Alvariaon_VSA_89  Alvariaon-VSA-89
        String
    radius.Alvariaon_VSA_89.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-89 Length
    radius.Alvariaon_VSA_90  Alvariaon-VSA-90
        String
    radius.Alvariaon_VSA_90.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-90 Length
    radius.Alvariaon_VSA_91  Alvariaon-VSA-91
        String
    radius.Alvariaon_VSA_91.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-91 Length
    radius.Alvariaon_VSA_92  Alvariaon-VSA-92
        String
    radius.Alvariaon_VSA_92.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-92 Length
    radius.Alvariaon_VSA_93  Alvariaon-VSA-93
        String
    radius.Alvariaon_VSA_93.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-93 Length
    radius.Alvariaon_VSA_94  Alvariaon-VSA-94
        String
    radius.Alvariaon_VSA_94.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-94 Length
    radius.Alvariaon_VSA_95  Alvariaon-VSA-95
        String
    radius.Alvariaon_VSA_95.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-95 Length
    radius.Alvariaon_VSA_96  Alvariaon-VSA-96
        String
    radius.Alvariaon_VSA_96.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-96 Length
    radius.Alvariaon_VSA_97  Alvariaon-VSA-97
        String
    radius.Alvariaon_VSA_97.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-97 Length
    radius.Alvariaon_VSA_98  Alvariaon-VSA-98
        String
    radius.Alvariaon_VSA_98.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-98 Length
    radius.Alvariaon_VSA_99  Alvariaon-VSA-99
        String
    radius.Alvariaon_VSA_99.len  Length
        Unsigned 8-bit integer
        Alvariaon-VSA-99 Length
    radius.Annex_Acct_Servers  Annex-Acct-Servers
        String
    radius.Annex_Acct_Servers.len  Length
        Unsigned 8-bit integer
        Annex-Acct-Servers Length
    radius.Annex_Addr_Resolution_Protocol  Annex-Addr-Resolution-Protocol
        Unsigned 32-bit integer
    radius.Annex_Addr_Resolution_Protocol.len  Length
        Unsigned 8-bit integer
        Annex-Addr-Resolution-Protocol Length
    radius.Annex_Addr_Resolution_Servers  Annex-Addr-Resolution-Servers
        String
    radius.Annex_Addr_Resolution_Servers.len  Length
        Unsigned 8-bit integer
        Annex-Addr-Resolution-Servers Length
    radius.Annex_Audit_Level  Annex-Audit-Level
        Unsigned 32-bit integer
    radius.Annex_Audit_Level.len  Length
        Unsigned 8-bit integer
        Annex-Audit-Level Length
    radius.Annex_Authen_Servers  Annex-Authen-Servers
        String
    radius.Annex_Authen_Servers.len  Length
        Unsigned 8-bit integer
        Annex-Authen-Servers Length
    radius.Annex_Begin_Modulation  Annex-Begin-Modulation
        String
    radius.Annex_Begin_Modulation.len  Length
        Unsigned 8-bit integer
        Annex-Begin-Modulation Length
    radius.Annex_Begin_Receive_Line_Level  Annex-Begin-Receive-Line-Level
        Unsigned 32-bit integer
    radius.Annex_Begin_Receive_Line_Level.len  Length
        Unsigned 8-bit integer
        Annex-Begin-Receive-Line-Level Length
    radius.Annex_CLI_Command  Annex-CLI-Command
        String
    radius.Annex_CLI_Command.len  Length
        Unsigned 8-bit integer
        Annex-CLI-Command Length
    radius.Annex_CLI_Filter  Annex-CLI-Filter
        String
    radius.Annex_CLI_Filter.len  Length
        Unsigned 8-bit integer
        Annex-CLI-Filter Length
    radius.Annex_Callback_Portlist  Annex-Callback-Portlist
        Unsigned 32-bit integer
    radius.Annex_Callback_Portlist.len  Length
        Unsigned 8-bit integer
        Annex-Callback-Portlist Length
    radius.Annex_Compression_Protocol  Annex-Compression-Protocol
        String
    radius.Annex_Compression_Protocol.len  Length
        Unsigned 8-bit integer
        Annex-Compression-Protocol Length
    radius.Annex_Connect_Progress  Annex-Connect-Progress
        Unsigned 32-bit integer
    radius.Annex_Connect_Progress.len  Length
        Unsigned 8-bit integer
        Annex-Connect-Progress Length
    radius.Annex_Disconnect_Reason  Annex-Disconnect-Reason
        Unsigned 32-bit integer
    radius.Annex_Disconnect_Reason.len  Length
        Unsigned 8-bit integer
        Annex-Disconnect-Reason Length
    radius.Annex_Domain_Name  Annex-Domain-Name
        String
    radius.Annex_Domain_Name.len  Length
        Unsigned 8-bit integer
        Annex-Domain-Name Length
    radius.Annex_EDO  Annex-EDO
        String
    radius.Annex_EDO.len  Length
        Unsigned 8-bit integer
        Annex-EDO Length
    radius.Annex_End_Modulation  Annex-End-Modulation
        String
    radius.Annex_End_Modulation.len  Length
        Unsigned 8-bit integer
        Annex-End-Modulation Length
    radius.Annex_End_Receive_Line_Level  Annex-End-Receive-Line-Level
        Unsigned 32-bit integer
    radius.Annex_End_Receive_Line_Level.len  Length
        Unsigned 8-bit integer
        Annex-End-Receive-Line-Level Length
    radius.Annex_Error_Correction_Prot  Annex-Error-Correction-Prot
        String
    radius.Annex_Error_Correction_Prot.len  Length
        Unsigned 8-bit integer
        Annex-Error-Correction-Prot Length
    radius.Annex_Filter  Annex-Filter
        String
    radius.Annex_Filter.len  Length
        Unsigned 8-bit integer
        Annex-Filter Length
    radius.Annex_Gwy_Selection_Mode  Annex-Gwy-Selection-Mode
        Unsigned 32-bit integer
    radius.Annex_Gwy_Selection_Mode.len  Length
        Unsigned 8-bit integer
        Annex-Gwy-Selection-Mode Length
    radius.Annex_Host_Allow  Annex-Host-Allow
        String
    radius.Annex_Host_Allow.len  Length
        Unsigned 8-bit integer
        Annex-Host-Allow Length
    radius.Annex_Host_Restrict  Annex-Host-Restrict
        String
    radius.Annex_Host_Restrict.len  Length
        Unsigned 8-bit integer
        Annex-Host-Restrict Length
    radius.Annex_Input_Filter  Annex-Input-Filter
        String
    radius.Annex_Input_Filter.len  Length
        Unsigned 8-bit integer
        Annex-Input-Filter Length
    radius.Annex_Keypress_Timeout  Annex-Keypress-Timeout
        Unsigned 32-bit integer
    radius.Annex_Keypress_Timeout.len  Length
        Unsigned 8-bit integer
        Annex-Keypress-Timeout Length
    radius.Annex_Local_IP_Address  Annex-Local-IP-Address
        IPv4 address
    radius.Annex_Local_IP_Address.len  Length
        Unsigned 8-bit integer
        Annex-Local-IP-Address Length
    radius.Annex_Local_Username  Annex-Local-Username
        String
    radius.Annex_Local_Username.len  Length
        Unsigned 8-bit integer
        Annex-Local-Username Length
    radius.Annex_Logical_Channel_Number  Annex-Logical-Channel-Number
        Unsigned 32-bit integer
    radius.Annex_Logical_Channel_Number.len  Length
        Unsigned 8-bit integer
        Annex-Logical-Channel-Number Length
    radius.Annex_MRRU  Annex-MRRU
        Unsigned 32-bit integer
    radius.Annex_MRRU.len  Length
        Unsigned 8-bit integer
        Annex-MRRU Length
    radius.Annex_Maximum_Call_Duration  Annex-Maximum-Call-Duration
        Unsigned 32-bit integer
    radius.Annex_Maximum_Call_Duration.len  Length
        Unsigned 8-bit integer
        Annex-Maximum-Call-Duration Length
    radius.Annex_Modem_Disc_Reason  Annex-Modem-Disc-Reason
        Unsigned 32-bit integer
    radius.Annex_Modem_Disc_Reason.len  Length
        Unsigned 8-bit integer
        Annex-Modem-Disc-Reason Length
    radius.Annex_Multicast_Rate_Limit  Annex-Multicast-Rate-Limit
        Unsigned 32-bit integer
    radius.Annex_Multicast_Rate_Limit.len  Length
        Unsigned 8-bit integer
        Annex-Multicast-Rate-Limit Length
    radius.Annex_Multilink_Id  Annex-Multilink-Id
        Unsigned 32-bit integer
    radius.Annex_Multilink_Id.len  Length
        Unsigned 8-bit integer
        Annex-Multilink-Id Length
    radius.Annex_Num_In_Multilink  Annex-Num-In-Multilink
        Unsigned 32-bit integer
    radius.Annex_Num_In_Multilink.len  Length
        Unsigned 8-bit integer
        Annex-Num-In-Multilink Length
    radius.Annex_Output_Filter  Annex-Output-Filter
        String
    radius.Annex_Output_Filter.len  Length
        Unsigned 8-bit integer
        Annex-Output-Filter Length
    radius.Annex_PPP_Trace_Level  Annex-PPP-Trace-Level
        Unsigned 32-bit integer
    radius.Annex_PPP_Trace_Level.len  Length
        Unsigned 8-bit integer
        Annex-PPP-Trace-Level Length
    radius.Annex_Pool_Id  Annex-Pool-Id
        Unsigned 32-bit integer
    radius.Annex_Pool_Id.len  Length
        Unsigned 8-bit integer
        Annex-Pool-Id Length
    radius.Annex_Port  Annex-Port
        Unsigned 32-bit integer
    radius.Annex_Port.len  Length
        Unsigned 8-bit integer
        Annex-Port Length
    radius.Annex_Pre_Input_Octets  Annex-Pre-Input-Octets
        Unsigned 32-bit integer
    radius.Annex_Pre_Input_Octets.len  Length
        Unsigned 8-bit integer
        Annex-Pre-Input-Octets Length
    radius.Annex_Pre_Input_Packets  Annex-Pre-Input-Packets
        Unsigned 32-bit integer
    radius.Annex_Pre_Input_Packets.len  Length
        Unsigned 8-bit integer
        Annex-Pre-Input-Packets Length
    radius.Annex_Pre_Output_Octets  Annex-Pre-Output-Octets
        Unsigned 32-bit integer
    radius.Annex_Pre_Output_Octets.len  Length
        Unsigned 8-bit integer
        Annex-Pre-Output-Octets Length
    radius.Annex_Pre_Output_Packets  Annex-Pre-Output-Packets
        Unsigned 32-bit integer
    radius.Annex_Pre_Output_Packets.len  Length
        Unsigned 8-bit integer
        Annex-Pre-Output-Packets Length
    radius.Annex_Primary_DNS_Server  Annex-Primary-DNS-Server
        IPv4 address
    radius.Annex_Primary_DNS_Server.len  Length
        Unsigned 8-bit integer
        Annex-Primary-DNS-Server Length
    radius.Annex_Primary_NBNS_Server  Annex-Primary-NBNS-Server
        IPv4 address
    radius.Annex_Primary_NBNS_Server.len  Length
        Unsigned 8-bit integer
        Annex-Primary-NBNS-Server Length
    radius.Annex_Product_Name  Annex-Product-Name
        String
    radius.Annex_Product_Name.len  Length
        Unsigned 8-bit integer
        Annex-Product-Name Length
    radius.Annex_Rate_Reneg_Req_Rcvd  Annex-Rate-Reneg-Req-Rcvd
        Unsigned 32-bit integer
    radius.Annex_Rate_Reneg_Req_Rcvd.len  Length
        Unsigned 8-bit integer
        Annex-Rate-Reneg-Req-Rcvd Length
    radius.Annex_Rate_Reneg_Req_Sent  Annex-Rate-Reneg-Req-Sent
        Unsigned 32-bit integer
    radius.Annex_Rate_Reneg_Req_Sent.len  Length
        Unsigned 8-bit integer
        Annex-Rate-Reneg-Req-Sent Length
    radius.Annex_Re_CHAP_Timeout  Annex-Re-CHAP-Timeout
        Unsigned 32-bit integer
    radius.Annex_Re_CHAP_Timeout.len  Length
        Unsigned 8-bit integer
        Annex-Re-CHAP-Timeout Length
    radius.Annex_Receive_Speed  Annex-Receive-Speed
        Unsigned 32-bit integer
    radius.Annex_Receive_Speed.len  Length
        Unsigned 8-bit integer
        Annex-Receive-Speed Length
    radius.Annex_Retrain_Requests_Rcvd  Annex-Retrain-Requests-Rcvd
        Unsigned 32-bit integer
    radius.Annex_Retrain_Requests_Rcvd.len  Length
        Unsigned 8-bit integer
        Annex-Retrain-Requests-Rcvd Length
    radius.Annex_Retrain_Requests_Sent  Annex-Retrain-Requests-Sent
        Unsigned 32-bit integer
    radius.Annex_Retrain_Requests_Sent.len  Length
        Unsigned 8-bit integer
        Annex-Retrain-Requests-Sent Length
    radius.Annex_Retransmitted_Packets  Annex-Retransmitted-Packets
        Unsigned 32-bit integer
    radius.Annex_Retransmitted_Packets.len  Length
        Unsigned 8-bit integer
        Annex-Retransmitted-Packets Length
    radius.Annex_SW_Version  Annex-SW-Version
        String
    radius.Annex_SW_Version.len  Length
        Unsigned 8-bit integer
        Annex-SW-Version Length
    radius.Annex_Sec_Profile_Index  Annex-Sec-Profile-Index
        Unsigned 32-bit integer
    radius.Annex_Sec_Profile_Index.len  Length
        Unsigned 8-bit integer
        Annex-Sec-Profile-Index Length
    radius.Annex_Secondary_DNS_Server  Annex-Secondary-DNS-Server
        IPv4 address
    radius.Annex_Secondary_DNS_Server.len  Length
        Unsigned 8-bit integer
        Annex-Secondary-DNS-Server Length
    radius.Annex_Secondary_NBNS_Server  Annex-Secondary-NBNS-Server
        IPv4 address
    radius.Annex_Secondary_NBNS_Server.len  Length
        Unsigned 8-bit integer
        Annex-Secondary-NBNS-Server Length
    radius.Annex_Secondary_Srv_Endpoint  Annex-Secondary-Srv-Endpoint
        String
    radius.Annex_Secondary_Srv_Endpoint.len  Length
        Unsigned 8-bit integer
        Annex-Secondary-Srv-Endpoint Length
    radius.Annex_Signal_to_Noise_Ratio  Annex-Signal-to-Noise-Ratio
        Unsigned 32-bit integer
    radius.Annex_Signal_to_Noise_Ratio.len  Length
        Unsigned 8-bit integer
        Annex-Signal-to-Noise-Ratio Length
    radius.Annex_Syslog_Tap  Annex-Syslog-Tap
        Unsigned 32-bit integer
    radius.Annex_Syslog_Tap.len  Length
        Unsigned 8-bit integer
        Annex-Syslog-Tap Length
    radius.Annex_System_Disc_Reason  Annex-System-Disc-Reason
        Unsigned 32-bit integer
    radius.Annex_System_Disc_Reason.len  Length
        Unsigned 8-bit integer
        Annex-System-Disc-Reason Length
    radius.Annex_Transmit_Speed  Annex-Transmit-Speed
        Unsigned 32-bit integer
    radius.Annex_Transmit_Speed.len  Length
        Unsigned 8-bit integer
        Annex-Transmit-Speed Length
    radius.Annex_Transmitted_Packets  Annex-Transmitted-Packets
        Unsigned 32-bit integer
    radius.Annex_Transmitted_Packets.len  Length
        Unsigned 8-bit integer
        Annex-Transmitted-Packets Length
    radius.Annex_Tunnel_Authen_Mode  Annex-Tunnel-Authen-Mode
        Unsigned 32-bit integer
    radius.Annex_Tunnel_Authen_Mode.len  Length
        Unsigned 8-bit integer
        Annex-Tunnel-Authen-Mode Length
    radius.Annex_Tunnel_Authen_Type  Annex-Tunnel-Authen-Type
        Unsigned 32-bit integer
    radius.Annex_Tunnel_Authen_Type.len  Length
        Unsigned 8-bit integer
        Annex-Tunnel-Authen-Type Length
    radius.Annex_Unauthenticated_Time  Annex-Unauthenticated-Time
        Unsigned 32-bit integer
    radius.Annex_Unauthenticated_Time.len  Length
        Unsigned 8-bit integer
        Annex-Unauthenticated-Time Length
    radius.Annex_User_Level  Annex-User-Level
        Unsigned 32-bit integer
    radius.Annex_User_Level.len  Length
        Unsigned 8-bit integer
        Annex-User-Level Length
    radius.Annex_User_Server_Location  Annex-User-Server-Location
        Unsigned 32-bit integer
    radius.Annex_User_Server_Location.len  Length
        Unsigned 8-bit integer
        Annex-User-Server-Location Length
    radius.Annex_Wan_Number  Annex-Wan-Number
        Unsigned 32-bit integer
    radius.Annex_Wan_Number.len  Length
        Unsigned 8-bit integer
        Annex-Wan-Number Length
    radius.Aruba_Admin_Role  Aruba-Admin-Role
        String
    radius.Aruba_Admin_Role.len  Length
        Unsigned 8-bit integer
        Aruba-Admin-Role Length
    radius.Aruba_Essid_Name  Aruba-Essid-Name
        String
    radius.Aruba_Essid_Name.len  Length
        Unsigned 8-bit integer
        Aruba-Essid-Name Length
    radius.Aruba_Location_Id  Aruba-Location-Id
        String
    radius.Aruba_Location_Id.len  Length
        Unsigned 8-bit integer
        Aruba-Location-Id Length
    radius.Aruba_Port_Identifier  Aruba-Port-Identifier
        String
    radius.Aruba_Port_Identifier.len  Length
        Unsigned 8-bit integer
        Aruba-Port-Identifier Length
    radius.Aruba_Priv_Admin_User  Aruba-Priv-Admin-User
        Unsigned 32-bit integer
    radius.Aruba_Priv_Admin_User.len  Length
        Unsigned 8-bit integer
        Aruba-Priv-Admin-User Length
    radius.Aruba_Template_User  Aruba-Template-User
        String
    radius.Aruba_Template_User.len  Length
        Unsigned 8-bit integer
        Aruba-Template-User Length
    radius.Aruba_User_Role  Aruba-User-Role
        String
    radius.Aruba_User_Role.len  Length
        Unsigned 8-bit integer
        Aruba-User-Role Length
    radius.Aruba_User_Vlan  Aruba-User-Vlan
        Unsigned 32-bit integer
    radius.Aruba_User_Vlan.len  Length
        Unsigned 8-bit integer
        Aruba-User-Vlan Length
    radius.Ascend_ATM_Connect_Group  Ascend-ATM-Connect-Group
        Unsigned 32-bit integer
    radius.Ascend_ATM_Connect_Group.len  Length
        Unsigned 8-bit integer
        Ascend-ATM-Connect-Group Length
    radius.Ascend_ATM_Connect_Vci  Ascend-ATM-Connect-Vci
        Unsigned 32-bit integer
    radius.Ascend_ATM_Connect_Vci.len  Length
        Unsigned 8-bit integer
        Ascend-ATM-Connect-Vci Length
    radius.Ascend_ATM_Connect_Vpi  Ascend-ATM-Connect-Vpi
        Unsigned 32-bit integer
    radius.Ascend_ATM_Connect_Vpi.len  Length
        Unsigned 8-bit integer
        Ascend-ATM-Connect-Vpi Length
    radius.Ascend_ATM_Direct  Ascend-ATM-Direct
        Unsigned 32-bit integer
    radius.Ascend_ATM_Direct.len  Length
        Unsigned 8-bit integer
        Ascend-ATM-Direct Length
    radius.Ascend_ATM_Direct_Profile  Ascend-ATM-Direct-Profile
        String
    radius.Ascend_ATM_Direct_Profile.len  Length
        Unsigned 8-bit integer
        Ascend-ATM-Direct-Profile Length
    radius.Ascend_ATM_Fault_Management  Ascend-ATM-Fault-Management
        Unsigned 32-bit integer
    radius.Ascend_ATM_Fault_Management.len  Length
        Unsigned 8-bit integer
        Ascend-ATM-Fault-Management Length
    radius.Ascend_ATM_Group  Ascend-ATM-Group
        Unsigned 32-bit integer
    radius.Ascend_ATM_Group.len  Length
        Unsigned 8-bit integer
        Ascend-ATM-Group Length
    radius.Ascend_ATM_Loopback_Cell_Loss  Ascend-ATM-Loopback-Cell-Loss
        Unsigned 32-bit integer
    radius.Ascend_ATM_Loopback_Cell_Loss.len  Length
        Unsigned 8-bit integer
        Ascend-ATM-Loopback-Cell-Loss Length
    radius.Ascend_ATM_Vci  Ascend-ATM-Vci
        Unsigned 32-bit integer
    radius.Ascend_ATM_Vci.len  Length
        Unsigned 8-bit integer
        Ascend-ATM-Vci Length
    radius.Ascend_ATM_Vpi  Ascend-ATM-Vpi
        Unsigned 32-bit integer
    radius.Ascend_ATM_Vpi.len  Length
        Unsigned 8-bit integer
        Ascend-ATM-Vpi Length
    radius.Ascend_Access_Intercept_LEA  Ascend-Access-Intercept-LEA
        String
    radius.Ascend_Access_Intercept_LEA.len  Length
        Unsigned 8-bit integer
        Ascend-Access-Intercept-LEA Length
    radius.Ascend_Access_Intercept_Log  Ascend-Access-Intercept-Log
        String
    radius.Ascend_Access_Intercept_Log.len  Length
        Unsigned 8-bit integer
        Ascend-Access-Intercept-Log Length
    radius.Ascend_Add_Seconds  Ascend-Add-Seconds
        Unsigned 32-bit integer
    radius.Ascend_Add_Seconds.len  Length
        Unsigned 8-bit integer
        Ascend-Add-Seconds Length
    radius.Ascend_Appletalk_Peer_Mode  Ascend-Appletalk-Peer-Mode
        Unsigned 32-bit integer
    radius.Ascend_Appletalk_Peer_Mode.len  Length
        Unsigned 8-bit integer
        Ascend-Appletalk-Peer-Mode Length
    radius.Ascend_Appletalk_Route  Ascend-Appletalk-Route
        String
    radius.Ascend_Appletalk_Route.len  Length
        Unsigned 8-bit integer
        Ascend-Appletalk-Route Length
    radius.Ascend_Ara_PW  Ascend-Ara-PW
        String
    radius.Ascend_Ara_PW.len  Length
        Unsigned 8-bit integer
        Ascend-Ara-PW Length
    radius.Ascend_Assign_IP_Client  Ascend-Assign-IP-Client
        IPv4 address
    radius.Ascend_Assign_IP_Client.len  Length
        Unsigned 8-bit integer
        Ascend-Assign-IP-Client Length
    radius.Ascend_Assign_IP_Global_Pool  Ascend-Assign-IP-Global-Pool
        String
    radius.Ascend_Assign_IP_Global_Pool.len  Length
        Unsigned 8-bit integer
        Ascend-Assign-IP-Global-Pool Length
    radius.Ascend_Assign_IP_Pool  Ascend-Assign-IP-Pool
        Unsigned 32-bit integer
    radius.Ascend_Assign_IP_Pool.len  Length
        Unsigned 8-bit integer
        Ascend-Assign-IP-Pool Length
    radius.Ascend_Assign_IP_Server  Ascend-Assign-IP-Server
        IPv4 address
    radius.Ascend_Assign_IP_Server.len  Length
        Unsigned 8-bit integer
        Ascend-Assign-IP-Server Length
    radius.Ascend_Auth_Delay  Ascend-Auth-Delay
        Unsigned 32-bit integer
    radius.Ascend_Auth_Delay.len  Length
        Unsigned 8-bit integer
        Ascend-Auth-Delay Length
    radius.Ascend_Auth_Type  Ascend-Auth-Type
        Unsigned 32-bit integer
    radius.Ascend_Auth_Type.len  Length
        Unsigned 8-bit integer
        Ascend-Auth-Type Length
    radius.Ascend_Authen_Alias  Ascend-Authen-Alias
        String
    radius.Ascend_Authen_Alias.len  Length
        Unsigned 8-bit integer
        Ascend-Authen-Alias Length
    radius.Ascend_BACP_Enable  Ascend-BACP-Enable
        Unsigned 32-bit integer
    radius.Ascend_BACP_Enable.len  Length
        Unsigned 8-bit integer
        Ascend-BACP-Enable Length
    radius.Ascend_BIR_Bridge_Group  Ascend-BIR-Bridge-Group
        Unsigned 32-bit integer
    radius.Ascend_BIR_Bridge_Group.len  Length
        Unsigned 8-bit integer
        Ascend-BIR-Bridge-Group Length
    radius.Ascend_BIR_Enable  Ascend-BIR-Enable
        Unsigned 32-bit integer
    radius.Ascend_BIR_Enable.len  Length
        Unsigned 8-bit integer
        Ascend-BIR-Enable Length
    radius.Ascend_BIR_Proxy  Ascend-BIR-Proxy
        Unsigned 32-bit integer
    radius.Ascend_BIR_Proxy.len  Length
        Unsigned 8-bit integer
        Ascend-BIR-Proxy Length
    radius.Ascend_Backup  Ascend-Backup
        String
    radius.Ascend_Backup.len  Length
        Unsigned 8-bit integer
        Ascend-Backup Length
    radius.Ascend_Base_Channel_Count  Ascend-Base-Channel-Count
        Unsigned 32-bit integer
    radius.Ascend_Base_Channel_Count.len  Length
        Unsigned 8-bit integer
        Ascend-Base-Channel-Count Length
    radius.Ascend_Bi_Directional_Auth  Ascend-Bi-Directional-Auth
        Unsigned 32-bit integer
    radius.Ascend_Bi_Directional_Auth.len  Length
        Unsigned 8-bit integer
        Ascend-Bi-Directional-Auth Length
    radius.Ascend_Billing_Number  Ascend-Billing-Number
        String
    radius.Ascend_Billing_Number.len  Length
        Unsigned 8-bit integer
        Ascend-Billing-Number Length
    radius.Ascend_Bridge  Ascend-Bridge
        Unsigned 32-bit integer
    radius.Ascend_Bridge.len  Length
        Unsigned 8-bit integer
        Ascend-Bridge Length
    radius.Ascend_Bridge_Address  Ascend-Bridge-Address
        String
    radius.Ascend_Bridge_Address.len  Length
        Unsigned 8-bit integer
        Ascend-Bridge-Address Length
    radius.Ascend_Bridge_Non_PPPoE  Ascend-Bridge-Non-PPPoE
        Unsigned 32-bit integer
    radius.Ascend_Bridge_Non_PPPoE.len  Length
        Unsigned 8-bit integer
        Ascend-Bridge-Non-PPPoE Length
    radius.Ascend_CBCP_Delay  Ascend-CBCP-Delay
        Unsigned 32-bit integer
    radius.Ascend_CBCP_Delay.len  Length
        Unsigned 8-bit integer
        Ascend-CBCP-Delay Length
    radius.Ascend_CBCP_Enable  Ascend-CBCP-Enable
        Unsigned 32-bit integer
    radius.Ascend_CBCP_Enable.len  Length
        Unsigned 8-bit integer
        Ascend-CBCP-Enable Length
    radius.Ascend_CBCP_Mode  Ascend-CBCP-Mode
        Unsigned 32-bit integer
    radius.Ascend_CBCP_Mode.len  Length
        Unsigned 8-bit integer
        Ascend-CBCP-Mode Length
    radius.Ascend_CBCP_Trunk_Group  Ascend-CBCP-Trunk-Group
        Unsigned 32-bit integer
    radius.Ascend_CBCP_Trunk_Group.len  Length
        Unsigned 8-bit integer
        Ascend-CBCP-Trunk-Group Length
    radius.Ascend_CIR_Timer  Ascend-CIR-Timer
        Unsigned 32-bit integer
    radius.Ascend_CIR_Timer.len  Length
        Unsigned 8-bit integer
        Ascend-CIR-Timer Length
    radius.Ascend_Cache_Refresh  Ascend-Cache-Refresh
        Unsigned 32-bit integer
    radius.Ascend_Cache_Refresh.len  Length
        Unsigned 8-bit integer
        Ascend-Cache-Refresh Length
    radius.Ascend_Cache_Time  Ascend-Cache-Time
        Unsigned 32-bit integer
    radius.Ascend_Cache_Time.len  Length
        Unsigned 8-bit integer
        Ascend-Cache-Time Length
    radius.Ascend_Call_Attempt_Limit  Ascend-Call-Attempt-Limit
        Unsigned 32-bit integer
    radius.Ascend_Call_Attempt_Limit.len  Length
        Unsigned 8-bit integer
        Ascend-Call-Attempt-Limit Length
    radius.Ascend_Call_Block_Duration  Ascend-Call-Block-Duration
        Unsigned 32-bit integer
    radius.Ascend_Call_Block_Duration.len  Length
        Unsigned 8-bit integer
        Ascend-Call-Block-Duration Length
    radius.Ascend_Call_By_Call  Ascend-Call-By-Call
        Unsigned 32-bit integer
    radius.Ascend_Call_By_Call.len  Length
        Unsigned 8-bit integer
        Ascend-Call-By-Call Length
    radius.Ascend_Call_Direction  Ascend-Call-Direction
        Unsigned 32-bit integer
    radius.Ascend_Call_Direction.len  Length
        Unsigned 8-bit integer
        Ascend-Call-Direction Length
    radius.Ascend_Call_Filter  Ascend-Call-Filter
        Byte array
    radius.Ascend_Call_Filter.len  Length
        Unsigned 8-bit integer
        Ascend-Call-Filter Length
    radius.Ascend_Call_Type  Ascend-Call-Type
        Unsigned 32-bit integer
    radius.Ascend_Call_Type.len  Length
        Unsigned 8-bit integer
        Ascend-Call-Type Length
    radius.Ascend_Callback  Ascend-Callback
        Unsigned 32-bit integer
    radius.Ascend_Callback.len  Length
        Unsigned 8-bit integer
        Ascend-Callback Length
    radius.Ascend_Callback_Delay  Ascend-Callback-Delay
        Unsigned 32-bit integer
    radius.Ascend_Callback_Delay.len  Length
        Unsigned 8-bit integer
        Ascend-Callback-Delay Length
    radius.Ascend_Calling_Id_Number_Plan  Ascend-Calling-Id-Number-Plan
        Unsigned 32-bit integer
    radius.Ascend_Calling_Id_Number_Plan.len  Length
        Unsigned 8-bit integer
        Ascend-Calling-Id-Number-Plan Length
    radius.Ascend_Calling_Id_Presentatn  Ascend-Calling-Id-Presentatn
        Unsigned 32-bit integer
    radius.Ascend_Calling_Id_Presentatn.len  Length
        Unsigned 8-bit integer
        Ascend-Calling-Id-Presentatn Length
    radius.Ascend_Calling_Id_Screening  Ascend-Calling-Id-Screening
        Unsigned 32-bit integer
    radius.Ascend_Calling_Id_Screening.len  Length
        Unsigned 8-bit integer
        Ascend-Calling-Id-Screening Length
    radius.Ascend_Calling_Id_Type_Of_Num  Ascend-Calling-Id-Type-Of-Num
        Unsigned 32-bit integer
    radius.Ascend_Calling_Id_Type_Of_Num.len  Length
        Unsigned 8-bit integer
        Ascend-Calling-Id-Type-Of-Num Length
    radius.Ascend_Calling_Subaddress  Ascend-Calling-Subaddress
        String
    radius.Ascend_Calling_Subaddress.len  Length
        Unsigned 8-bit integer
        Ascend-Calling-Subaddress Length
    radius.Ascend_Ckt_Type  Ascend-Ckt-Type
        Unsigned 32-bit integer
    radius.Ascend_Ckt_Type.len  Length
        Unsigned 8-bit integer
        Ascend-Ckt-Type Length
    radius.Ascend_Client_Assign_DNS  Ascend-Client-Assign-DNS
        Unsigned 32-bit integer
    radius.Ascend_Client_Assign_DNS.len  Length
        Unsigned 8-bit integer
        Ascend-Client-Assign-DNS Length
    radius.Ascend_Client_Assign_WINS  Ascend-Client-Assign-WINS
        Unsigned 32-bit integer
    radius.Ascend_Client_Assign_WINS.len  Length
        Unsigned 8-bit integer
        Ascend-Client-Assign-WINS Length
    radius.Ascend_Client_Gateway  Ascend-Client-Gateway
        IPv4 address
    radius.Ascend_Client_Gateway.len  Length
        Unsigned 8-bit integer
        Ascend-Client-Gateway Length
    radius.Ascend_Client_Primary_DNS  Ascend-Client-Primary-DNS
        IPv4 address
    radius.Ascend_Client_Primary_DNS.len  Length
        Unsigned 8-bit integer
        Ascend-Client-Primary-DNS Length
    radius.Ascend_Client_Primary_WINS  Ascend-Client-Primary-WINS
        IPv4 address
    radius.Ascend_Client_Primary_WINS.len  Length
        Unsigned 8-bit integer
        Ascend-Client-Primary-WINS Length
    radius.Ascend_Client_Secondary_DNS  Ascend-Client-Secondary-DNS
        IPv4 address
    radius.Ascend_Client_Secondary_DNS.len  Length
        Unsigned 8-bit integer
        Ascend-Client-Secondary-DNS Length
    radius.Ascend_Client_Secondary_WINS  Ascend-Client-Secondary-WINS
        IPv4 address
    radius.Ascend_Client_Secondary_WINS.len  Length
        Unsigned 8-bit integer
        Ascend-Client-Secondary-WINS Length
    radius.Ascend_Connect_Progress  Ascend-Connect-Progress
        Unsigned 32-bit integer
    radius.Ascend_Connect_Progress.len  Length
        Unsigned 8-bit integer
        Ascend-Connect-Progress Length
    radius.Ascend_DBA_Monitor  Ascend-DBA-Monitor
        Unsigned 32-bit integer
    radius.Ascend_DBA_Monitor.len  Length
        Unsigned 8-bit integer
        Ascend-DBA-Monitor Length
    radius.Ascend_DHCP_Maximum_Leases  Ascend-DHCP-Maximum-Leases
        Unsigned 32-bit integer
    radius.Ascend_DHCP_Maximum_Leases.len  Length
        Unsigned 8-bit integer
        Ascend-DHCP-Maximum-Leases Length
    radius.Ascend_DHCP_Pool_Number  Ascend-DHCP-Pool-Number
        Unsigned 32-bit integer
    radius.Ascend_DHCP_Pool_Number.len  Length
        Unsigned 8-bit integer
        Ascend-DHCP-Pool-Number Length
    radius.Ascend_DHCP_Reply  Ascend-DHCP-Reply
        Unsigned 32-bit integer
    radius.Ascend_DHCP_Reply.len  Length
        Unsigned 8-bit integer
        Ascend-DHCP-Reply Length
    radius.Ascend_Data_Filter  Ascend-Data-Filter
        Byte array
    radius.Ascend_Data_Filter.len  Length
        Unsigned 8-bit integer
        Ascend-Data-Filter Length
    radius.Ascend_Data_Rate  Ascend-Data-Rate
        Unsigned 32-bit integer
    radius.Ascend_Data_Rate.len  Length
        Unsigned 8-bit integer
        Ascend-Data-Rate Length
    radius.Ascend_Data_Svc  Ascend-Data-Svc
        Unsigned 32-bit integer
    radius.Ascend_Data_Svc.len  Length
        Unsigned 8-bit integer
        Ascend-Data-Svc Length
    radius.Ascend_Dec_Channel_Count  Ascend-Dec-Channel-Count
        Unsigned 32-bit integer
    radius.Ascend_Dec_Channel_Count.len  Length
        Unsigned 8-bit integer
        Ascend-Dec-Channel-Count Length
    radius.Ascend_Destination_Nas_Port  Ascend-Destination-Nas-Port
        Unsigned 32-bit integer
    radius.Ascend_Destination_Nas_Port.len  Length
        Unsigned 8-bit integer
        Ascend-Destination-Nas-Port Length
    radius.Ascend_Dial_Number  Ascend-Dial-Number
        String
    radius.Ascend_Dial_Number.len  Length
        Unsigned 8-bit integer
        Ascend-Dial-Number Length
    radius.Ascend_Dialed_Number  Ascend-Dialed-Number
        String
    radius.Ascend_Dialed_Number.len  Length
        Unsigned 8-bit integer
        Ascend-Dialed-Number Length
    radius.Ascend_Dialout_Allowed  Ascend-Dialout-Allowed
        Unsigned 32-bit integer
    radius.Ascend_Dialout_Allowed.len  Length
        Unsigned 8-bit integer
        Ascend-Dialout-Allowed Length
    radius.Ascend_Disconnect_Cause  Ascend-Disconnect-Cause
        Unsigned 32-bit integer
    radius.Ascend_Disconnect_Cause.len  Length
        Unsigned 8-bit integer
        Ascend-Disconnect-Cause Length
    radius.Ascend_Dropped_Octets  Ascend-Dropped-Octets
        Unsigned 32-bit integer
    radius.Ascend_Dropped_Octets.len  Length
        Unsigned 8-bit integer
        Ascend-Dropped-Octets Length
    radius.Ascend_Dropped_Packets  Ascend-Dropped-Packets
        Unsigned 32-bit integer
    radius.Ascend_Dropped_Packets.len  Length
        Unsigned 8-bit integer
        Ascend-Dropped-Packets Length
    radius.Ascend_Dsl_CIR_Recv_Limit  Ascend-Dsl-CIR-Recv-Limit
        Unsigned 32-bit integer
    radius.Ascend_Dsl_CIR_Recv_Limit.len  Length
        Unsigned 8-bit integer
        Ascend-Dsl-CIR-Recv-Limit Length
    radius.Ascend_Dsl_CIR_Xmit_Limit  Ascend-Dsl-CIR-Xmit-Limit
        Unsigned 32-bit integer
    radius.Ascend_Dsl_CIR_Xmit_Limit.len  Length
        Unsigned 8-bit integer
        Ascend-Dsl-CIR-Xmit-Limit Length
    radius.Ascend_Dsl_Downstream_Limit  Ascend-Dsl-Downstream-Limit
        Unsigned 32-bit integer
    radius.Ascend_Dsl_Downstream_Limit.len  Length
        Unsigned 8-bit integer
        Ascend-Dsl-Downstream-Limit Length
    radius.Ascend_Dsl_Rate_Mode  Ascend-Dsl-Rate-Mode
        Unsigned 32-bit integer
    radius.Ascend_Dsl_Rate_Mode.len  Length
        Unsigned 8-bit integer
        Ascend-Dsl-Rate-Mode Length
    radius.Ascend_Dsl_Rate_Type  Ascend-Dsl-Rate-Type
        Unsigned 32-bit integer
    radius.Ascend_Dsl_Rate_Type.len  Length
        Unsigned 8-bit integer
        Ascend-Dsl-Rate-Type Length
    radius.Ascend_Dsl_Upstream_Limit  Ascend-Dsl-Upstream-Limit
        Unsigned 32-bit integer
    radius.Ascend_Dsl_Upstream_Limit.len  Length
        Unsigned 8-bit integer
        Ascend-Dsl-Upstream-Limit Length
    radius.Ascend_Egress_Enabled  Ascend-Egress-Enabled
        Unsigned 32-bit integer
    radius.Ascend_Egress_Enabled.len  Length
        Unsigned 8-bit integer
        Ascend-Egress-Enabled Length
    radius.Ascend_Endpoint_Disc  Ascend-Endpoint-Disc
        String
    radius.Ascend_Endpoint_Disc.len  Length
        Unsigned 8-bit integer
        Ascend-Endpoint-Disc Length
    radius.Ascend_Event_Type  Ascend-Event-Type
        Unsigned 32-bit integer
    radius.Ascend_Event_Type.len  Length
        Unsigned 8-bit integer
        Ascend-Event-Type Length
    radius.Ascend_Expect_Callback  Ascend-Expect-Callback
        Unsigned 32-bit integer
    radius.Ascend_Expect_Callback.len  Length
        Unsigned 8-bit integer
        Ascend-Expect-Callback Length
    radius.Ascend_FCP_Parameter  Ascend-FCP-Parameter
        String
    radius.Ascend_FCP_Parameter.len  Length
        Unsigned 8-bit integer
        Ascend-FCP-Parameter Length
    radius.Ascend_FR_08_Mode  Ascend-FR-08-Mode
        Unsigned 32-bit integer
    radius.Ascend_FR_08_Mode.len  Length
        Unsigned 8-bit integer
        Ascend-FR-08-Mode Length
    radius.Ascend_FR_Circuit_Name  Ascend-FR-Circuit-Name
        String
    radius.Ascend_FR_Circuit_Name.len  Length
        Unsigned 8-bit integer
        Ascend-FR-Circuit-Name Length
    radius.Ascend_FR_DCE_N392  Ascend-FR-DCE-N392
        Unsigned 32-bit integer
    radius.Ascend_FR_DCE_N392.len  Length
        Unsigned 8-bit integer
        Ascend-FR-DCE-N392 Length
    radius.Ascend_FR_DCE_N393  Ascend-FR-DCE-N393
        Unsigned 32-bit integer
    radius.Ascend_FR_DCE_N393.len  Length
        Unsigned 8-bit integer
        Ascend-FR-DCE-N393 Length
    radius.Ascend_FR_DLCI  Ascend-FR-DLCI
        Unsigned 32-bit integer
    radius.Ascend_FR_DLCI.len  Length
        Unsigned 8-bit integer
        Ascend-FR-DLCI Length
    radius.Ascend_FR_DTE_N392  Ascend-FR-DTE-N392
        Unsigned 32-bit integer
    radius.Ascend_FR_DTE_N392.len  Length
        Unsigned 8-bit integer
        Ascend-FR-DTE-N392 Length
    radius.Ascend_FR_DTE_N393  Ascend-FR-DTE-N393
        Unsigned 32-bit integer
    radius.Ascend_FR_DTE_N393.len  Length
        Unsigned 8-bit integer
        Ascend-FR-DTE-N393 Length
    radius.Ascend_FR_Direct  Ascend-FR-Direct
        Unsigned 32-bit integer
    radius.Ascend_FR_Direct.len  Length
        Unsigned 8-bit integer
        Ascend-FR-Direct Length
    radius.Ascend_FR_Direct_DLCI  Ascend-FR-Direct-DLCI
        Unsigned 32-bit integer
    radius.Ascend_FR_Direct_DLCI.len  Length
        Unsigned 8-bit integer
        Ascend-FR-Direct-DLCI Length
    radius.Ascend_FR_Direct_Profile  Ascend-FR-Direct-Profile
        String
    radius.Ascend_FR_Direct_Profile.len  Length
        Unsigned 8-bit integer
        Ascend-FR-Direct-Profile Length
    radius.Ascend_FR_LinkUp  Ascend-FR-LinkUp
        Unsigned 32-bit integer
    radius.Ascend_FR_LinkUp.len  Length
        Unsigned 8-bit integer
        Ascend-FR-LinkUp Length
    radius.Ascend_FR_Link_Mgt  Ascend-FR-Link-Mgt
        Unsigned 32-bit integer
    radius.Ascend_FR_Link_Mgt.len  Length
        Unsigned 8-bit integer
        Ascend-FR-Link-Mgt Length
    radius.Ascend_FR_Link_Status_DLCI  Ascend-FR-Link-Status-DLCI
        Unsigned 32-bit integer
    radius.Ascend_FR_Link_Status_DLCI.len  Length
        Unsigned 8-bit integer
        Ascend-FR-Link-Status-DLCI Length
    radius.Ascend_FR_N391  Ascend-FR-N391
        Unsigned 32-bit integer
    radius.Ascend_FR_N391.len  Length
        Unsigned 8-bit integer
        Ascend-FR-N391 Length
    radius.Ascend_FR_Nailed_Grp  Ascend-FR-Nailed-Grp
        Unsigned 32-bit integer
    radius.Ascend_FR_Nailed_Grp.len  Length
        Unsigned 8-bit integer
        Ascend-FR-Nailed-Grp Length
    radius.Ascend_FR_Profile_Name  Ascend-FR-Profile-Name
        String
    radius.Ascend_FR_Profile_Name.len  Length
        Unsigned 8-bit integer
        Ascend-FR-Profile-Name Length
    radius.Ascend_FR_SVC_Addr  Ascend-FR-SVC-Addr
        String
    radius.Ascend_FR_SVC_Addr.len  Length
        Unsigned 8-bit integer
        Ascend-FR-SVC-Addr Length
    radius.Ascend_FR_T391  Ascend-FR-T391
        Unsigned 32-bit integer
    radius.Ascend_FR_T391.len  Length
        Unsigned 8-bit integer
        Ascend-FR-T391 Length
    radius.Ascend_FR_T392  Ascend-FR-T392
        Unsigned 32-bit integer
    radius.Ascend_FR_T392.len  Length
        Unsigned 8-bit integer
        Ascend-FR-T392 Length
    radius.Ascend_FR_Type  Ascend-FR-Type
        Unsigned 32-bit integer
    radius.Ascend_FR_Type.len  Length
        Unsigned 8-bit integer
        Ascend-FR-Type Length
    radius.Ascend_FT1_Caller  Ascend-FT1-Caller
        Unsigned 32-bit integer
    radius.Ascend_FT1_Caller.len  Length
        Unsigned 8-bit integer
        Ascend-FT1-Caller Length
    radius.Ascend_Filter  Ascend-Filter
        String
    radius.Ascend_Filter.len  Length
        Unsigned 8-bit integer
        Ascend-Filter Length
    radius.Ascend_Filter_Required  Ascend-Filter-Required
        Unsigned 32-bit integer
    radius.Ascend_Filter_Required.len  Length
        Unsigned 8-bit integer
        Ascend-Filter-Required Length
    radius.Ascend_First_Dest  Ascend-First-Dest
        IPv4 address
    radius.Ascend_First_Dest.len  Length
        Unsigned 8-bit integer
        Ascend-First-Dest Length
    radius.Ascend_Force_56  Ascend-Force-56
        Unsigned 32-bit integer
    radius.Ascend_Force_56.len  Length
        Unsigned 8-bit integer
        Ascend-Force-56 Length
    radius.Ascend_Global_Call_Id  Ascend-Global-Call-Id
        String
    radius.Ascend_Global_Call_Id.len  Length
        Unsigned 8-bit integer
        Ascend-Global-Call-Id Length
    radius.Ascend_Group  Ascend-Group
        String
    radius.Ascend_Group.len  Length
        Unsigned 8-bit integer
        Ascend-Group Length
    radius.Ascend_H323_Conference_Id  Ascend-H323-Conference-Id
        Unsigned 32-bit integer
    radius.Ascend_H323_Conference_Id.len  Length
        Unsigned 8-bit integer
        Ascend-H323-Conference-Id Length
    radius.Ascend_H323_Dialed_Time  Ascend-H323-Dialed-Time
        Unsigned 32-bit integer
    radius.Ascend_H323_Dialed_Time.len  Length
        Unsigned 8-bit integer
        Ascend-H323-Dialed-Time Length
    radius.Ascend_H323_Fegw_Address  Ascend-H323-Fegw-Address
        IPv4 address
    radius.Ascend_H323_Fegw_Address.len  Length
        Unsigned 8-bit integer
        Ascend-H323-Fegw-Address Length
    radius.Ascend_H323_Gatekeeper  Ascend-H323-Gatekeeper
        IPv4 address
    radius.Ascend_H323_Gatekeeper.len  Length
        Unsigned 8-bit integer
        Ascend-H323-Gatekeeper Length
    radius.Ascend_Handle_IPX  Ascend-Handle-IPX
        Unsigned 32-bit integer
    radius.Ascend_Handle_IPX.len  Length
        Unsigned 8-bit integer
        Ascend-Handle-IPX Length
    radius.Ascend_History_Weigh_Type  Ascend-History-Weigh-Type
        Unsigned 32-bit integer
    radius.Ascend_History_Weigh_Type.len  Length
        Unsigned 8-bit integer
        Ascend-History-Weigh-Type Length
    radius.Ascend_Home_Agent_IP_Addr  Ascend-Home-Agent-IP-Addr
        IPv4 address
    radius.Ascend_Home_Agent_IP_Addr.len  Length
        Unsigned 8-bit integer
        Ascend-Home-Agent-IP-Addr Length
    radius.Ascend_Home_Agent_Password  Ascend-Home-Agent-Password
        String
    radius.Ascend_Home_Agent_Password.len  Length
        Unsigned 8-bit integer
        Ascend-Home-Agent-Password Length
    radius.Ascend_Home_Agent_UDP_Port  Ascend-Home-Agent-UDP-Port
        Unsigned 32-bit integer
    radius.Ascend_Home_Agent_UDP_Port.len  Length
        Unsigned 8-bit integer
        Ascend-Home-Agent-UDP-Port Length
    radius.Ascend_Home_Network_Name  Ascend-Home-Network-Name
        String
    radius.Ascend_Home_Network_Name.len  Length
        Unsigned 8-bit integer
        Ascend-Home-Network-Name Length
    radius.Ascend_Host_Info  Ascend-Host-Info
        String
    radius.Ascend_Host_Info.len  Length
        Unsigned 8-bit integer
        Ascend-Host-Info Length
    radius.Ascend_IF_Netmask  Ascend-IF-Netmask
        IPv4 address
    radius.Ascend_IF_Netmask.len  Length
        Unsigned 8-bit integer
        Ascend-IF-Netmask Length
    radius.Ascend_IPSEC_Profile  Ascend-IPSEC-Profile
        String
    radius.Ascend_IPSEC_Profile.len  Length
        Unsigned 8-bit integer
        Ascend-IPSEC-Profile Length
    radius.Ascend_IPX_Alias  Ascend-IPX-Alias
        Unsigned 32-bit integer
    radius.Ascend_IPX_Alias.len  Length
        Unsigned 8-bit integer
        Ascend-IPX-Alias Length
    radius.Ascend_IPX_Header_Compression  Ascend-IPX-Header-Compression
        Unsigned 32-bit integer
    radius.Ascend_IPX_Header_Compression.len  Length
        Unsigned 8-bit integer
        Ascend-IPX-Header-Compression Length
    radius.Ascend_IPX_Node_Addr  Ascend-IPX-Node-Addr
        String
    radius.Ascend_IPX_Node_Addr.len  Length
        Unsigned 8-bit integer
        Ascend-IPX-Node-Addr Length
    radius.Ascend_IPX_Peer_Mode  Ascend-IPX-Peer-Mode
        Unsigned 32-bit integer
    radius.Ascend_IPX_Peer_Mode.len  Length
        Unsigned 8-bit integer
        Ascend-IPX-Peer-Mode Length
    radius.Ascend_IPX_Route  Ascend-IPX-Route
        String
    radius.Ascend_IPX_Route.len  Length
        Unsigned 8-bit integer
        Ascend-IPX-Route Length
    radius.Ascend_IP_Direct  Ascend-IP-Direct
        IPv4 address
    radius.Ascend_IP_Direct.len  Length
        Unsigned 8-bit integer
        Ascend-IP-Direct Length
    radius.Ascend_IP_Pool_Chaining  Ascend-IP-Pool-Chaining
        Unsigned 32-bit integer
    radius.Ascend_IP_Pool_Chaining.len  Length
        Unsigned 8-bit integer
        Ascend-IP-Pool-Chaining Length
    radius.Ascend_IP_Pool_Definition  Ascend-IP-Pool-Definition
        String
    radius.Ascend_IP_Pool_Definition.len  Length
        Unsigned 8-bit integer
        Ascend-IP-Pool-Definition Length
    radius.Ascend_IP_TOS  Ascend-IP-TOS
        Unsigned 32-bit integer
    radius.Ascend_IP_TOS.len  Length
        Unsigned 8-bit integer
        Ascend-IP-TOS Length
    radius.Ascend_IP_TOS_Apply_To  Ascend-IP-TOS-Apply-To
        Unsigned 32-bit integer
    radius.Ascend_IP_TOS_Apply_To.len  Length
        Unsigned 8-bit integer
        Ascend-IP-TOS-Apply-To Length
    radius.Ascend_IP_TOS_Precedence  Ascend-IP-TOS-Precedence
        Unsigned 32-bit integer
    radius.Ascend_IP_TOS_Precedence.len  Length
        Unsigned 8-bit integer
        Ascend-IP-TOS-Precedence Length
    radius.Ascend_Idle_Limit  Ascend-Idle-Limit
        Unsigned 32-bit integer
    radius.Ascend_Idle_Limit.len  Length
        Unsigned 8-bit integer
        Ascend-Idle-Limit Length
    radius.Ascend_Inc_Channel_Count  Ascend-Inc-Channel-Count
        Unsigned 32-bit integer
    radius.Ascend_Inc_Channel_Count.len  Length
        Unsigned 8-bit integer
        Ascend-Inc-Channel-Count Length
    radius.Ascend_Inter_Arrival_Jitter  Ascend-Inter-Arrival-Jitter
        Unsigned 32-bit integer
    radius.Ascend_Inter_Arrival_Jitter.len  Length
        Unsigned 8-bit integer
        Ascend-Inter-Arrival-Jitter Length
    radius.Ascend_Link_Compression  Ascend-Link-Compression
        Unsigned 32-bit integer
    radius.Ascend_Link_Compression.len  Length
        Unsigned 8-bit integer
        Ascend-Link-Compression Length
    radius.Ascend_MPP_Idle_Percent  Ascend-MPP-Idle-Percent
        Unsigned 32-bit integer
    radius.Ascend_MPP_Idle_Percent.len  Length
        Unsigned 8-bit integer
        Ascend-MPP-Idle-Percent Length
    radius.Ascend_MTU  Ascend-MTU
        Unsigned 32-bit integer
    radius.Ascend_MTU.len  Length
        Unsigned 8-bit integer
        Ascend-MTU Length
    radius.Ascend_Max_Shared_Users  Ascend-Max-Shared-Users
        Unsigned 32-bit integer
    radius.Ascend_Max_Shared_Users.len  Length
        Unsigned 8-bit integer
        Ascend-Max-Shared-Users Length
    radius.Ascend_Maximum_Call_Duration  Ascend-Maximum-Call-Duration
        Unsigned 32-bit integer
    radius.Ascend_Maximum_Call_Duration.len  Length
        Unsigned 8-bit integer
        Ascend-Maximum-Call-Duration Length
    radius.Ascend_Maximum_Channels  Ascend-Maximum-Channels
        Unsigned 32-bit integer
    radius.Ascend_Maximum_Channels.len  Length
        Unsigned 8-bit integer
        Ascend-Maximum-Channels Length
    radius.Ascend_Maximum_Time  Ascend-Maximum-Time
        Unsigned 32-bit integer
    radius.Ascend_Maximum_Time.len  Length
        Unsigned 8-bit integer
        Ascend-Maximum-Time Length
    radius.Ascend_Menu_Item  Ascend-Menu-Item
        String
    radius.Ascend_Menu_Item.len  Length
        Unsigned 8-bit integer
        Ascend-Menu-Item Length
    radius.Ascend_Menu_Selector  Ascend-Menu-Selector
        String
    radius.Ascend_Menu_Selector.len  Length
        Unsigned 8-bit integer
        Ascend-Menu-Selector Length
    radius.Ascend_Metric  Ascend-Metric
        Unsigned 32-bit integer
    radius.Ascend_Metric.len  Length
        Unsigned 8-bit integer
        Ascend-Metric Length
    radius.Ascend_Minimum_Channels  Ascend-Minimum-Channels
        Unsigned 32-bit integer
    radius.Ascend_Minimum_Channels.len  Length
        Unsigned 8-bit integer
        Ascend-Minimum-Channels Length
    radius.Ascend_Modem_PortNo  Ascend-Modem-PortNo
        Unsigned 32-bit integer
    radius.Ascend_Modem_PortNo.len  Length
        Unsigned 8-bit integer
        Ascend-Modem-PortNo Length
    radius.Ascend_Modem_ShelfNo  Ascend-Modem-ShelfNo
        Unsigned 32-bit integer
    radius.Ascend_Modem_ShelfNo.len  Length
        Unsigned 8-bit integer
        Ascend-Modem-ShelfNo Length
    radius.Ascend_Modem_SlotNo  Ascend-Modem-SlotNo
        Unsigned 32-bit integer
    radius.Ascend_Modem_SlotNo.len  Length
        Unsigned 8-bit integer
        Ascend-Modem-SlotNo Length
    radius.Ascend_Multicast_Client  Ascend-Multicast-Client
        Unsigned 32-bit integer
    radius.Ascend_Multicast_Client.len  Length
        Unsigned 8-bit integer
        Ascend-Multicast-Client Length
    radius.Ascend_Multicast_GLeave_Delay  Ascend-Multicast-GLeave-Delay
        Unsigned 32-bit integer
    radius.Ascend_Multicast_GLeave_Delay.len  Length
        Unsigned 8-bit integer
        Ascend-Multicast-GLeave-Delay Length
    radius.Ascend_Multicast_Rate_Limit  Ascend-Multicast-Rate-Limit
        Unsigned 32-bit integer
    radius.Ascend_Multicast_Rate_Limit.len  Length
        Unsigned 8-bit integer
        Ascend-Multicast-Rate-Limit Length
    radius.Ascend_Multilink_ID  Ascend-Multilink-ID
        Unsigned 32-bit integer
    radius.Ascend_Multilink_ID.len  Length
        Unsigned 8-bit integer
        Ascend-Multilink-ID Length
    radius.Ascend_NAS_Port_Format  Ascend-NAS-Port-Format
        Unsigned 32-bit integer
    radius.Ascend_NAS_Port_Format.len  Length
        Unsigned 8-bit integer
        Ascend-NAS-Port-Format Length
    radius.Ascend_Netware_timeout  Ascend-Netware-timeout
        Unsigned 32-bit integer
    radius.Ascend_Netware_timeout.len  Length
        Unsigned 8-bit integer
        Ascend-Netware-timeout Length
    radius.Ascend_Num_In_Multilink  Ascend-Num-In-Multilink
        Unsigned 32-bit integer
    radius.Ascend_Num_In_Multilink.len  Length
        Unsigned 8-bit integer
        Ascend-Num-In-Multilink Length
    radius.Ascend_Number_Sessions  Ascend-Number-Sessions
        String
    radius.Ascend_Number_Sessions.len  Length
        Unsigned 8-bit integer
        Ascend-Number-Sessions Length
    radius.Ascend_Numbering_Plan_ID  Ascend-Numbering-Plan-ID
        Unsigned 32-bit integer
    radius.Ascend_Numbering_Plan_ID.len  Length
        Unsigned 8-bit integer
        Ascend-Numbering-Plan-ID Length
    radius.Ascend_Owner_IP_Addr  Ascend-Owner-IP-Addr
        IPv4 address
    radius.Ascend_Owner_IP_Addr.len  Length
        Unsigned 8-bit integer
        Ascend-Owner-IP-Addr Length
    radius.Ascend_PPP_Address  Ascend-PPP-Address
        IPv4 address
    radius.Ascend_PPP_Address.len  Length
        Unsigned 8-bit integer
        Ascend-PPP-Address Length
    radius.Ascend_PPP_Async_Map  Ascend-PPP-Async-Map
        Unsigned 32-bit integer
    radius.Ascend_PPP_Async_Map.len  Length
        Unsigned 8-bit integer
        Ascend-PPP-Async-Map Length
    radius.Ascend_PPP_VJ_1172  Ascend-PPP-VJ-1172
        Unsigned 32-bit integer
    radius.Ascend_PPP_VJ_1172.len  Length
        Unsigned 8-bit integer
        Ascend-PPP-VJ-1172 Length
    radius.Ascend_PPP_VJ_Slot_Comp  Ascend-PPP-VJ-Slot-Comp
        Unsigned 32-bit integer
    radius.Ascend_PPP_VJ_Slot_Comp.len  Length
        Unsigned 8-bit integer
        Ascend-PPP-VJ-Slot-Comp Length
    radius.Ascend_PPPoE_Enable  Ascend-PPPoE-Enable
        Unsigned 32-bit integer
    radius.Ascend_PPPoE_Enable.len  Length
        Unsigned 8-bit integer
        Ascend-PPPoE-Enable Length
    radius.Ascend_PRI_Number_Type  Ascend-PRI-Number-Type
        Unsigned 32-bit integer
    radius.Ascend_PRI_Number_Type.len  Length
        Unsigned 8-bit integer
        Ascend-PRI-Number-Type Length
    radius.Ascend_PW_Lifetime  Ascend-PW-Lifetime
        Unsigned 32-bit integer
    radius.Ascend_PW_Lifetime.len  Length
        Unsigned 8-bit integer
        Ascend-PW-Lifetime Length
    radius.Ascend_PW_Warntime  Ascend-PW-Warntime
        Unsigned 32-bit integer
    radius.Ascend_PW_Warntime.len  Length
        Unsigned 8-bit integer
        Ascend-PW-Warntime Length
    radius.Ascend_Port_Redir_Portnum  Ascend-Port-Redir-Portnum
        Unsigned 32-bit integer
    radius.Ascend_Port_Redir_Portnum.len  Length
        Unsigned 8-bit integer
        Ascend-Port-Redir-Portnum Length
    radius.Ascend_Port_Redir_Protocol  Ascend-Port-Redir-Protocol
        Unsigned 32-bit integer
    radius.Ascend_Port_Redir_Protocol.len  Length
        Unsigned 8-bit integer
        Ascend-Port-Redir-Protocol Length
    radius.Ascend_Port_Redir_Server  Ascend-Port-Redir-Server
        IPv4 address
    radius.Ascend_Port_Redir_Server.len  Length
        Unsigned 8-bit integer
        Ascend-Port-Redir-Server Length
    radius.Ascend_PreSession_Time  Ascend-PreSession-Time
        Unsigned 32-bit integer
    radius.Ascend_PreSession_Time.len  Length
        Unsigned 8-bit integer
        Ascend-PreSession-Time Length
    radius.Ascend_Pre_Input_Octets  Ascend-Pre-Input-Octets
        Unsigned 32-bit integer
    radius.Ascend_Pre_Input_Octets.len  Length
        Unsigned 8-bit integer
        Ascend-Pre-Input-Octets Length
    radius.Ascend_Pre_Input_Packets  Ascend-Pre-Input-Packets
        Unsigned 32-bit integer
    radius.Ascend_Pre_Input_Packets.len  Length
        Unsigned 8-bit integer
        Ascend-Pre-Input-Packets Length
    radius.Ascend_Pre_Output_Octets  Ascend-Pre-Output-Octets
        Unsigned 32-bit integer
    radius.Ascend_Pre_Output_Octets.len  Length
        Unsigned 8-bit integer
        Ascend-Pre-Output-Octets Length
    radius.Ascend_Pre_Output_Packets  Ascend-Pre-Output-Packets
        Unsigned 32-bit integer
    radius.Ascend_Pre_Output_Packets.len  Length
        Unsigned 8-bit integer
        Ascend-Pre-Output-Packets Length
    radius.Ascend_Preempt_Limit  Ascend-Preempt-Limit
        Unsigned 32-bit integer
    radius.Ascend_Preempt_Limit.len  Length
        Unsigned 8-bit integer
        Ascend-Preempt-Limit Length
    radius.Ascend_Primary_Home_Agent  Ascend-Primary-Home-Agent
        String
    radius.Ascend_Primary_Home_Agent.len  Length
        Unsigned 8-bit integer
        Ascend-Primary-Home-Agent Length
    radius.Ascend_Private_Route  Ascend-Private-Route
        String
    radius.Ascend_Private_Route.len  Length
        Unsigned 8-bit integer
        Ascend-Private-Route Length
    radius.Ascend_Private_Route_Required  Ascend-Private-Route-Required
        Unsigned 32-bit integer
    radius.Ascend_Private_Route_Required.len  Length
        Unsigned 8-bit integer
        Ascend-Private-Route-Required Length
    radius.Ascend_Private_Route_Table_ID  Ascend-Private-Route-Table-ID
        String
    radius.Ascend_Private_Route_Table_ID.len  Length
        Unsigned 8-bit integer
        Ascend-Private-Route-Table-ID Length
    radius.Ascend_QOS_Downstream  Ascend-QOS-Downstream
        String
    radius.Ascend_QOS_Downstream.len  Length
        Unsigned 8-bit integer
        Ascend-QOS-Downstream Length
    radius.Ascend_QOS_Upstream  Ascend-QOS-Upstream
        String
    radius.Ascend_QOS_Upstream.len  Length
        Unsigned 8-bit integer
        Ascend-QOS-Upstream Length
    radius.Ascend_Receive_Secret  Ascend-Receive-Secret
        String
    radius.Ascend_Receive_Secret.len  Length
        Unsigned 8-bit integer
        Ascend-Receive-Secret Length
    radius.Ascend_Recv_Name  Ascend-Recv-Name
        String
    radius.Ascend_Recv_Name.len  Length
        Unsigned 8-bit integer
        Ascend-Recv-Name Length
    radius.Ascend_Redirect_Number  Ascend-Redirect-Number
        String
    radius.Ascend_Redirect_Number.len  Length
        Unsigned 8-bit integer
        Ascend-Redirect-Number Length
    radius.Ascend_Remote_Addr  Ascend-Remote-Addr
        IPv4 address
    radius.Ascend_Remote_Addr.len  Length
        Unsigned 8-bit integer
        Ascend-Remote-Addr Length
    radius.Ascend_Remote_FW  Ascend-Remote-FW
        String
    radius.Ascend_Remote_FW.len  Length
        Unsigned 8-bit integer
        Ascend-Remote-FW Length
    radius.Ascend_Remove_Seconds  Ascend-Remove-Seconds
        Unsigned 32-bit integer
    radius.Ascend_Remove_Seconds.len  Length
        Unsigned 8-bit integer
        Ascend-Remove-Seconds Length
    radius.Ascend_Require_Auth  Ascend-Require-Auth
        Unsigned 32-bit integer
    radius.Ascend_Require_Auth.len  Length
        Unsigned 8-bit integer
        Ascend-Require-Auth Length
    radius.Ascend_Route_Appletalk  Ascend-Route-Appletalk
        Unsigned 32-bit integer
    radius.Ascend_Route_Appletalk.len  Length
        Unsigned 8-bit integer
        Ascend-Route-Appletalk Length
    radius.Ascend_Route_IP  Ascend-Route-IP
        Unsigned 32-bit integer
    radius.Ascend_Route_IP.len  Length
        Unsigned 8-bit integer
        Ascend-Route-IP Length
    radius.Ascend_Route_IPX  Ascend-Route-IPX
        Unsigned 32-bit integer
    radius.Ascend_Route_IPX.len  Length
        Unsigned 8-bit integer
        Ascend-Route-IPX Length
    radius.Ascend_SVC_Enabled  Ascend-SVC-Enabled
        Unsigned 32-bit integer
    radius.Ascend_SVC_Enabled.len  Length
        Unsigned 8-bit integer
        Ascend-SVC-Enabled Length
    radius.Ascend_Secondary_Home_Agent  Ascend-Secondary-Home-Agent
        String
    radius.Ascend_Secondary_Home_Agent.len  Length
        Unsigned 8-bit integer
        Ascend-Secondary-Home-Agent Length
    radius.Ascend_Seconds_Of_History  Ascend-Seconds-Of-History
        Unsigned 32-bit integer
    radius.Ascend_Seconds_Of_History.len  Length
        Unsigned 8-bit integer
        Ascend-Seconds-Of-History Length
    radius.Ascend_Send_Auth  Ascend-Send-Auth
        Unsigned 32-bit integer
    radius.Ascend_Send_Auth.len  Length
        Unsigned 8-bit integer
        Ascend-Send-Auth Length
    radius.Ascend_Send_Passwd  Ascend-Send-Passwd
        String
    radius.Ascend_Send_Passwd.len  Length
        Unsigned 8-bit integer
        Ascend-Send-Passwd Length
    radius.Ascend_Send_Secret  Ascend-Send-Secret
        String
    radius.Ascend_Send_Secret.len  Length
        Unsigned 8-bit integer
        Ascend-Send-Secret Length
    radius.Ascend_Service_Type  Ascend-Service-Type
        Unsigned 32-bit integer
    radius.Ascend_Service_Type.len  Length
        Unsigned 8-bit integer
        Ascend-Service-Type Length
    radius.Ascend_Session_Svr_Key  Ascend-Session-Svr-Key
        String
    radius.Ascend_Session_Svr_Key.len  Length
        Unsigned 8-bit integer
        Ascend-Session-Svr-Key Length
    radius.Ascend_Session_Type  Ascend-Session-Type
        Unsigned 32-bit integer
    radius.Ascend_Session_Type.len  Length
        Unsigned 8-bit integer
        Ascend-Session-Type Length
    radius.Ascend_Shared_Profile_Enable  Ascend-Shared-Profile-Enable
        Unsigned 32-bit integer
    radius.Ascend_Shared_Profile_Enable.len  Length
        Unsigned 8-bit integer
        Ascend-Shared-Profile-Enable Length
    radius.Ascend_Source_Auth  Ascend-Source-Auth
        String
    radius.Ascend_Source_Auth.len  Length
        Unsigned 8-bit integer
        Ascend-Source-Auth Length
    radius.Ascend_Source_IP_Check  Ascend-Source-IP-Check
        Unsigned 32-bit integer
    radius.Ascend_Source_IP_Check.len  Length
        Unsigned 8-bit integer
        Ascend-Source-IP-Check Length
    radius.Ascend_TS_Idle_Limit  Ascend-TS-Idle-Limit
        Unsigned 32-bit integer
    radius.Ascend_TS_Idle_Limit.len  Length
        Unsigned 8-bit integer
        Ascend-TS-Idle-Limit Length
    radius.Ascend_TS_Idle_Mode  Ascend-TS-Idle-Mode
        Unsigned 32-bit integer
    radius.Ascend_TS_Idle_Mode.len  Length
        Unsigned 8-bit integer
        Ascend-TS-Idle-Mode Length
    radius.Ascend_Target_Util  Ascend-Target-Util
        Unsigned 32-bit integer
    radius.Ascend_Target_Util.len  Length
        Unsigned 8-bit integer
        Ascend-Target-Util Length
    radius.Ascend_Telnet_Profile  Ascend-Telnet-Profile
        String
    radius.Ascend_Telnet_Profile.len  Length
        Unsigned 8-bit integer
        Ascend-Telnet-Profile Length
    radius.Ascend_Temporary_Rtes  Ascend-Temporary-Rtes
        Unsigned 32-bit integer
    radius.Ascend_Temporary_Rtes.len  Length
        Unsigned 8-bit integer
        Ascend-Temporary-Rtes Length
    radius.Ascend_Third_Prompt  Ascend-Third-Prompt
        String
    radius.Ascend_Third_Prompt.len  Length
        Unsigned 8-bit integer
        Ascend-Third-Prompt Length
    radius.Ascend_Token_Expiry  Ascend-Token-Expiry
        Unsigned 32-bit integer
    radius.Ascend_Token_Expiry.len  Length
        Unsigned 8-bit integer
        Ascend-Token-Expiry Length
    radius.Ascend_Token_Idle  Ascend-Token-Idle
        Unsigned 32-bit integer
    radius.Ascend_Token_Idle.len  Length
        Unsigned 8-bit integer
        Ascend-Token-Idle Length
    radius.Ascend_Token_Immediate  Ascend-Token-Immediate
        Unsigned 32-bit integer
    radius.Ascend_Token_Immediate.len  Length
        Unsigned 8-bit integer
        Ascend-Token-Immediate Length
    radius.Ascend_Traffic_Shaper  Ascend-Traffic-Shaper
        Unsigned 32-bit integer
    radius.Ascend_Traffic_Shaper.len  Length
        Unsigned 8-bit integer
        Ascend-Traffic-Shaper Length
    radius.Ascend_Transit_Number  Ascend-Transit-Number
        String
    radius.Ascend_Transit_Number.len  Length
        Unsigned 8-bit integer
        Ascend-Transit-Number Length
    radius.Ascend_Tunnel_VRouter_Name  Ascend-Tunnel-VRouter-Name
        String
    radius.Ascend_Tunnel_VRouter_Name.len  Length
        Unsigned 8-bit integer
        Ascend-Tunnel-VRouter-Name Length
    radius.Ascend_Tunneling_Protocol  Ascend-Tunneling-Protocol
        Unsigned 32-bit integer
    radius.Ascend_Tunneling_Protocol.len  Length
        Unsigned 8-bit integer
        Ascend-Tunneling-Protocol Length
    radius.Ascend_UU_Info  Ascend-UU-Info
        String
    radius.Ascend_UU_Info.len  Length
        Unsigned 8-bit integer
        Ascend-UU-Info Length
    radius.Ascend_User_Acct_Base  Ascend-User-Acct-Base
        Unsigned 32-bit integer
    radius.Ascend_User_Acct_Base.len  Length
        Unsigned 8-bit integer
        Ascend-User-Acct-Base Length
    radius.Ascend_User_Acct_Host  Ascend-User-Acct-Host
        IPv4 address
    radius.Ascend_User_Acct_Host.len  Length
        Unsigned 8-bit integer
        Ascend-User-Acct-Host Length
    radius.Ascend_User_Acct_Key  Ascend-User-Acct-Key
        String
    radius.Ascend_User_Acct_Key.len  Length
        Unsigned 8-bit integer
        Ascend-User-Acct-Key Length
    radius.Ascend_User_Acct_Port  Ascend-User-Acct-Port
        Unsigned 32-bit integer
    radius.Ascend_User_Acct_Port.len  Length
        Unsigned 8-bit integer
        Ascend-User-Acct-Port Length
    radius.Ascend_User_Acct_Time  Ascend-User-Acct-Time
        Unsigned 32-bit integer
    radius.Ascend_User_Acct_Time.len  Length
        Unsigned 8-bit integer
        Ascend-User-Acct-Time Length
    radius.Ascend_User_Acct_Type  Ascend-User-Acct-Type
        Unsigned 32-bit integer
    radius.Ascend_User_Acct_Type.len  Length
        Unsigned 8-bit integer
        Ascend-User-Acct-Type Length
    radius.Ascend_VRouter_Name  Ascend-VRouter-Name
        String
    radius.Ascend_VRouter_Name.len  Length
        Unsigned 8-bit integer
        Ascend-VRouter-Name Length
    radius.Ascend_X25_Cug  Ascend-X25-Cug
        String
    radius.Ascend_X25_Cug.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Cug Length
    radius.Ascend_X25_Nui  Ascend-X25-Nui
        String
    radius.Ascend_X25_Nui.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Nui Length
    radius.Ascend_X25_Nui_Password_Prompt  Ascend-X25-Nui-Password-Prompt
        String
    radius.Ascend_X25_Nui_Password_Prompt.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Nui-Password-Prompt Length
    radius.Ascend_X25_Nui_Prompt  Ascend-X25-Nui-Prompt
        String
    radius.Ascend_X25_Nui_Prompt.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Nui-Prompt Length
    radius.Ascend_X25_Pad_Alias_1  Ascend-X25-Pad-Alias-1
        String
    radius.Ascend_X25_Pad_Alias_1.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Pad-Alias-1 Length
    radius.Ascend_X25_Pad_Alias_2  Ascend-X25-Pad-Alias-2
        String
    radius.Ascend_X25_Pad_Alias_2.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Pad-Alias-2 Length
    radius.Ascend_X25_Pad_Alias_3  Ascend-X25-Pad-Alias-3
        String
    radius.Ascend_X25_Pad_Alias_3.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Pad-Alias-3 Length
    radius.Ascend_X25_Pad_Banner  Ascend-X25-Pad-Banner
        String
    radius.Ascend_X25_Pad_Banner.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Pad-Banner Length
    radius.Ascend_X25_Pad_Prompt  Ascend-X25-Pad-Prompt
        String
    radius.Ascend_X25_Pad_Prompt.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Pad-Prompt Length
    radius.Ascend_X25_Pad_X3_Parameters  Ascend-X25-Pad-X3-Parameters
        String
    radius.Ascend_X25_Pad_X3_Parameters.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Pad-X3-Parameters Length
    radius.Ascend_X25_Pad_X3_Profile  Ascend-X25-Pad-X3-Profile
        Unsigned 32-bit integer
    radius.Ascend_X25_Pad_X3_Profile.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Pad-X3-Profile Length
    radius.Ascend_X25_Profile_Name  Ascend-X25-Profile-Name
        String
    radius.Ascend_X25_Profile_Name.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Profile-Name Length
    radius.Ascend_X25_Reverse_Charging  Ascend-X25-Reverse-Charging
        Unsigned 32-bit integer
    radius.Ascend_X25_Reverse_Charging.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Reverse-Charging Length
    radius.Ascend_X25_Rpoa  Ascend-X25-Rpoa
        String
    radius.Ascend_X25_Rpoa.len  Length
        Unsigned 8-bit integer
        Ascend-X25-Rpoa Length
    radius.Ascend_X25_X121_Address  Ascend-X25-X121-Address
        String
    radius.Ascend_X25_X121_Address.len  Length
        Unsigned 8-bit integer
        Ascend-X25-X121-Address Length
    radius.Ascend_Xmit_Rate  Ascend-Xmit-Rate
        Unsigned 32-bit integer
    radius.Ascend_Xmit_Rate.len  Length
        Unsigned 8-bit integer
        Ascend-Xmit-Rate Length
    radius.Assigned_IP_Address  Assigned-IP-Address
        IPv4 address
    radius.Assigned_IP_Address.len  Length
        Unsigned 8-bit integer
        Assigned-IP-Address Length
    radius.Asterisk_AMA_Flags  Asterisk-AMA-Flags
        String
    radius.Asterisk_AMA_Flags.len  Length
        Unsigned 8-bit integer
        Asterisk-AMA-Flags Length
    radius.Asterisk_Acc_Code  Asterisk-Acc-Code
        String
    radius.Asterisk_Acc_Code.len  Length
        Unsigned 8-bit integer
        Asterisk-Acc-Code Length
    radius.Asterisk_Answer_Time  Asterisk-Answer-Time
        String
    radius.Asterisk_Answer_Time.len  Length
        Unsigned 8-bit integer
        Asterisk-Answer-Time Length
    radius.Asterisk_Bill_Sec  Asterisk-Bill-Sec
        Unsigned 32-bit integer
    radius.Asterisk_Bill_Sec.len  Length
        Unsigned 8-bit integer
        Asterisk-Bill-Sec Length
    radius.Asterisk_Chan  Asterisk-Chan
        String
    radius.Asterisk_Chan.len  Length
        Unsigned 8-bit integer
        Asterisk-Chan Length
    radius.Asterisk_Clid  Asterisk-Clid
        String
    radius.Asterisk_Clid.len  Length
        Unsigned 8-bit integer
        Asterisk-Clid Length
    radius.Asterisk_Disposition  Asterisk-Disposition
        String
    radius.Asterisk_Disposition.len  Length
        Unsigned 8-bit integer
        Asterisk-Disposition Length
    radius.Asterisk_Dst  Asterisk-Dst
        String
    radius.Asterisk_Dst.len  Length
        Unsigned 8-bit integer
        Asterisk-Dst Length
    radius.Asterisk_Dst_Chan  Asterisk-Dst-Chan
        String
    radius.Asterisk_Dst_Chan.len  Length
        Unsigned 8-bit integer
        Asterisk-Dst-Chan Length
    radius.Asterisk_Dst_Ctx  Asterisk-Dst-Ctx
        String
    radius.Asterisk_Dst_Ctx.len  Length
        Unsigned 8-bit integer
        Asterisk-Dst-Ctx Length
    radius.Asterisk_Duration  Asterisk-Duration
        Unsigned 32-bit integer
    radius.Asterisk_Duration.len  Length
        Unsigned 8-bit integer
        Asterisk-Duration Length
    radius.Asterisk_End_Time  Asterisk-End-Time
        String
    radius.Asterisk_End_Time.len  Length
        Unsigned 8-bit integer
        Asterisk-End-Time Length
    radius.Asterisk_Last_App  Asterisk-Last-App
        String
    radius.Asterisk_Last_App.len  Length
        Unsigned 8-bit integer
        Asterisk-Last-App Length
    radius.Asterisk_Last_Data  Asterisk-Last-Data
        String
    radius.Asterisk_Last_Data.len  Length
        Unsigned 8-bit integer
        Asterisk-Last-Data Length
    radius.Asterisk_Src  Asterisk-Src
        String
    radius.Asterisk_Src.len  Length
        Unsigned 8-bit integer
        Asterisk-Src Length
    radius.Asterisk_Start_Time  Asterisk-Start-Time
        String
    radius.Asterisk_Start_Time.len  Length
        Unsigned 8-bit integer
        Asterisk-Start-Time Length
    radius.Asterisk_Unique_ID  Asterisk-Unique-ID
        String
    radius.Asterisk_Unique_ID.len  Length
        Unsigned 8-bit integer
        Asterisk-Unique-ID Length
    radius.Asterisk_User_Field  Asterisk-User-Field
        String
    radius.Asterisk_User_Field.len  Length
        Unsigned 8-bit integer
        Asterisk-User-Field Length
    radius.Attainable_Data_Rate_Downstream  Attainable-Data-Rate-Downstream
        Unsigned 32-bit integer
    radius.Attainable_Data_Rate_Downstream.len  Length
        Unsigned 8-bit integer
        Attainable-Data-Rate-Downstream Length
    radius.Attainable_Data_Rate_Upstream  Attainable-Data-Rate-Upstream
        Unsigned 32-bit integer
    radius.Attainable_Data_Rate_Upstream.len  Length
        Unsigned 8-bit integer
        Attainable-Data-Rate-Upstream Length
    radius.Azaire_APN  Azaire-APN
        String
    radius.Azaire_APN.len  Length
        Unsigned 8-bit integer
        Azaire-APN Length
    radius.Azaire_APN_OI  Azaire-APN-OI
        String
    radius.Azaire_APN_OI.len  Length
        Unsigned 8-bit integer
        Azaire-APN-OI Length
    radius.Azaire_APN_Resolution_Req  Azaire-APN-Resolution-Req
        Unsigned 32-bit integer
    radius.Azaire_APN_Resolution_Req.len  Length
        Unsigned 8-bit integer
        Azaire-APN-Resolution-Req Length
    radius.Azaire_Auth_Type  Azaire-Auth-Type
        Unsigned 32-bit integer
    radius.Azaire_Auth_Type.len  Length
        Unsigned 8-bit integer
        Azaire-Auth-Type Length
    radius.Azaire_Brand_Code  Azaire-Brand-Code
        String
    radius.Azaire_Brand_Code.len  Length
        Unsigned 8-bit integer
        Azaire-Brand-Code Length
    radius.Azaire_Client_Local_IP  Azaire-Client-Local-IP
        IPv4 address
    radius.Azaire_Client_Local_IP.len  Length
        Unsigned 8-bit integer
        Azaire-Client-Local-IP Length
    radius.Azaire_Gn_User_Name  Azaire-Gn-User-Name
        String
    radius.Azaire_Gn_User_Name.len  Length
        Unsigned 8-bit integer
        Azaire-Gn-User-Name Length
    radius.Azaire_IMSI  Azaire-IMSI
        Byte array
    radius.Azaire_IMSI.len  Length
        Unsigned 8-bit integer
        Azaire-IMSI Length
    radius.Azaire_MSISDN  Azaire-MSISDN
        Byte array
    radius.Azaire_MSISDN.len  Length
        Unsigned 8-bit integer
        Azaire-MSISDN Length
    radius.Azaire_NAS_Type  Azaire-NAS-Type
        Unsigned 32-bit integer
    radius.Azaire_NAS_Type.len  Length
        Unsigned 8-bit integer
        Azaire-NAS-Type Length
    radius.Azaire_Policy_Name  Azaire-Policy-Name
        String
    radius.Azaire_Policy_Name.len  Length
        Unsigned 8-bit integer
        Azaire-Policy-Name Length
    radius.Azaire_QoS  Azaire-QoS
        Byte array
    radius.Azaire_QoS.len  Length
        Unsigned 8-bit integer
        Azaire-QoS Length
    radius.Azaire_Selection_Mode  Azaire-Selection-Mode
        Unsigned 32-bit integer
    radius.Azaire_Selection_Mode.len  Length
        Unsigned 8-bit integer
        Azaire-Selection-Mode Length
    radius.Azaire_Start_Time  Azaire-Start-Time
        Byte array
    radius.Azaire_Start_Time.len  Length
        Unsigned 8-bit integer
        Azaire-Start-Time Length
    radius.Azaire_Status  Azaire-Status
        Unsigned 32-bit integer
    radius.Azaire_Status.len  Length
        Unsigned 8-bit integer
        Azaire-Status Length
    radius.Azaire_Triplets  Azaire-Triplets
        Byte array
    radius.Azaire_Triplets.len  Length
        Unsigned 8-bit integer
        Azaire-Triplets Length
    radius.BG_Aging_Time  BG-Aging-Time
        String
    radius.BG_Aging_Time.len  Length
        Unsigned 8-bit integer
        BG-Aging-Time Length
    radius.BG_Cct_Addr_Max  BG-Cct-Addr-Max
        Unsigned 32-bit integer
    radius.BG_Cct_Addr_Max.len  Length
        Unsigned 8-bit integer
        BG-Cct-Addr-Max Length
    radius.BG_Path_Cost  BG-Path-Cost
        String
    radius.BG_Path_Cost.len  Length
        Unsigned 8-bit integer
        BG-Path-Cost Length
    radius.BG_Span_Dis  BG-Span-Dis
        String
    radius.BG_Span_Dis.len  Length
        Unsigned 8-bit integer
        BG-Span-Dis Length
    radius.BG_Trans_BPDU  BG-Trans-BPDU
        String
    radius.BG_Trans_BPDU.len  Length
        Unsigned 8-bit integer
        BG-Trans-BPDU Length
    radius.BinTec_biboDialTable  BinTec-biboDialTable
        String
    radius.BinTec_biboDialTable.len  Length
        Unsigned 8-bit integer
        BinTec-biboDialTable Length
    radius.BinTec_biboPPPTable  BinTec-biboPPPTable
        String
    radius.BinTec_biboPPPTable.len  Length
        Unsigned 8-bit integer
        BinTec-biboPPPTable Length
    radius.BinTec_ipExtIfTable  BinTec-ipExtIfTable
        String
    radius.BinTec_ipExtIfTable.len  Length
        Unsigned 8-bit integer
        BinTec-ipExtIfTable Length
    radius.BinTec_ipExtRtTable  BinTec-ipExtRtTable
        String
    radius.BinTec_ipExtRtTable.len  Length
        Unsigned 8-bit integer
        BinTec-ipExtRtTable Length
    radius.BinTec_ipFilterTable  BinTec-ipFilterTable
        String
    radius.BinTec_ipFilterTable.len  Length
        Unsigned 8-bit integer
        BinTec-ipFilterTable Length
    radius.BinTec_ipNatPresetTable  BinTec-ipNatPresetTable
        String
    radius.BinTec_ipNatPresetTable.len  Length
        Unsigned 8-bit integer
        BinTec-ipNatPresetTable Length
    radius.BinTec_ipQoSTable  BinTec-ipQoSTable
        String
    radius.BinTec_ipQoSTable.len  Length
        Unsigned 8-bit integer
        BinTec-ipQoSTable Length
    radius.BinTec_ipRouteTable  BinTec-ipRouteTable
        String
    radius.BinTec_ipRouteTable.len  Length
        Unsigned 8-bit integer
        BinTec-ipRouteTable Length
    radius.BinTec_ipxCircTable  BinTec-ipxCircTable
        String
    radius.BinTec_ipxCircTable.len  Length
        Unsigned 8-bit integer
        BinTec-ipxCircTable Length
    radius.BinTec_ipxStaticRouteTable  BinTec-ipxStaticRouteTable
        String
    radius.BinTec_ipxStaticRouteTable.len  Length
        Unsigned 8-bit integer
        BinTec-ipxStaticRouteTable Length
    radius.BinTec_ipxStaticServTable  BinTec-ipxStaticServTable
        String
    radius.BinTec_ipxStaticServTable.len  Length
        Unsigned 8-bit integer
        BinTec-ipxStaticServTable Length
    radius.BinTec_ospfIfTable  BinTec-ospfIfTable
        String
    radius.BinTec_ospfIfTable.len  Length
        Unsigned 8-bit integer
        BinTec-ospfIfTable Length
    radius.BinTec_pppExtIfTable  BinTec-pppExtIfTable
        String
    radius.BinTec_pppExtIfTable.len  Length
        Unsigned 8-bit integer
        BinTec-pppExtIfTable Length
    radius.BinTec_qosIfTable  BinTec-qosIfTable
        String
    radius.BinTec_qosIfTable.len  Length
        Unsigned 8-bit integer
        BinTec-qosIfTable Length
    radius.BinTec_qosPolicyTable  BinTec-qosPolicyTable
        String
    radius.BinTec_qosPolicyTable.len  Length
        Unsigned 8-bit integer
        BinTec-qosPolicyTable Length
    radius.BinTec_ripCircTable  BinTec-ripCircTable
        String
    radius.BinTec_ripCircTable.len  Length
        Unsigned 8-bit integer
        BinTec-ripCircTable Length
    radius.BinTec_sapCircTable  BinTec-sapCircTable
        String
    radius.BinTec_sapCircTable.len  Length
        Unsigned 8-bit integer
        BinTec-sapCircTable Length
    radius.Bind_Auth_Context  Bind-Auth-Context
        String
    radius.Bind_Auth_Context.len  Length
        Unsigned 8-bit integer
        Bind-Auth-Context Length
    radius.Bind_Auth_Max_Sessions  Bind-Auth-Max-Sessions
        Unsigned 32-bit integer
    radius.Bind_Auth_Max_Sessions.len  Length
        Unsigned 8-bit integer
        Bind-Auth-Max-Sessions Length
    radius.Bind_Auth_Protocol  Bind-Auth-Protocol
        Unsigned 32-bit integer
    radius.Bind_Auth_Protocol.len  Length
        Unsigned 8-bit integer
        Bind-Auth-Protocol Length
    radius.Bind_Auth_Service_Grp  Bind-Auth-Service-Grp
        String
    radius.Bind_Auth_Service_Grp.len  Length
        Unsigned 8-bit integer
        Bind-Auth-Service-Grp Length
    radius.Bind_Bypass_Bypass  Bind-Bypass-Bypass
        String
    radius.Bind_Bypass_Bypass.len  Length
        Unsigned 8-bit integer
        Bind-Bypass-Bypass Length
    radius.Bind_Bypass_Context  Bind-Bypass-Context
        String
    radius.Bind_Bypass_Context.len  Length
        Unsigned 8-bit integer
        Bind-Bypass-Context Length
    radius.Bind_Dot1q_Port  Bind-Dot1q-Port
        Unsigned 32-bit integer
    radius.Bind_Dot1q_Port.len  Length
        Unsigned 8-bit integer
        Bind-Dot1q-Port Length
    radius.Bind_Dot1q_Slot  Bind-Dot1q-Slot
        Unsigned 32-bit integer
    radius.Bind_Dot1q_Slot.len  Length
        Unsigned 8-bit integer
        Bind-Dot1q-Slot Length
    radius.Bind_Dot1q_Vlan_Tag_Id  Bind-Dot1q-Vlan-Tag-Id
        Unsigned 32-bit integer
    radius.Bind_Dot1q_Vlan_Tag_Id.len  Length
        Unsigned 8-bit integer
        Bind-Dot1q-Vlan-Tag-Id Length
    radius.Bind_Int_Context  Bind-Int-Context
        String
    radius.Bind_Int_Context.len  Length
        Unsigned 8-bit integer
        Bind-Int-Context Length
    radius.Bind_Int_Interface_Name  Bind-Int-Interface-Name
        String
    radius.Bind_Int_Interface_Name.len  Length
        Unsigned 8-bit integer
        Bind-Int-Interface-Name Length
    radius.Bind_L2TP_Flow_Control  Bind-L2TP-Flow-Control
        Unsigned 32-bit integer
    radius.Bind_L2TP_Flow_Control.len  Length
        Unsigned 8-bit integer
        Bind-L2TP-Flow-Control Length
    radius.Bind_L2TP_Tunnel_Name  Bind-L2TP-Tunnel-Name
        String
    radius.Bind_L2TP_Tunnel_Name.len  Length
        Unsigned 8-bit integer
        Bind-L2TP-Tunnel-Name Length
    radius.Bind_Ses_Context  Bind-Ses-Context
        String
    radius.Bind_Ses_Context.len  Length
        Unsigned 8-bit integer
        Bind-Ses-Context Length
    radius.Bind_Sub_Password  Bind-Sub-Password
        String
    radius.Bind_Sub_Password.len  Length
        Unsigned 8-bit integer
        Bind-Sub-Password Length
    radius.Bind_Sub_User_At_Context  Bind-Sub-User-At-Context
        String
    radius.Bind_Sub_User_At_Context.len  Length
        Unsigned 8-bit integer
        Bind-Sub-User-At-Context Length
    radius.Bind_Tun_Context  Bind-Tun-Context
        String
    radius.Bind_Tun_Context.len  Length
        Unsigned 8-bit integer
        Bind-Tun-Context Length
    radius.Bind_Type  Bind-Type
        Unsigned 32-bit integer
    radius.Bind_Type.len  Length
        Unsigned 8-bit integer
        Bind-Type Length
    radius.Breezecom_Attr1  Breezecom-Attr1
        String
    radius.Breezecom_Attr1.len  Length
        Unsigned 8-bit integer
        Breezecom-Attr1 Length
    radius.Breezecom_Attr10  Breezecom-Attr10
        String
    radius.Breezecom_Attr10.len  Length
        Unsigned 8-bit integer
        Breezecom-Attr10 Length
    radius.Breezecom_Attr11  Breezecom-Attr11
        String
    radius.Breezecom_Attr11.len  Length
        Unsigned 8-bit integer
        Breezecom-Attr11 Length
    radius.Breezecom_Attr2  Breezecom-Attr2
        String
    radius.Breezecom_Attr2.len  Length
        Unsigned 8-bit integer
        Breezecom-Attr2 Length
    radius.Breezecom_Attr3  Breezecom-Attr3
        String
    radius.Breezecom_Attr3.len  Length
        Unsigned 8-bit integer
        Breezecom-Attr3 Length
    radius.Breezecom_Attr4  Breezecom-Attr4
        String
    radius.Breezecom_Attr4.len  Length
        Unsigned 8-bit integer
        Breezecom-Attr4 Length
    radius.Breezecom_Attr5  Breezecom-Attr5
        String
    radius.Breezecom_Attr5.len  Length
        Unsigned 8-bit integer
        Breezecom-Attr5 Length
    radius.Breezecom_Attr6  Breezecom-Attr6
        String
    radius.Breezecom_Attr6.len  Length
        Unsigned 8-bit integer
        Breezecom-Attr6 Length
    radius.Breezecom_Attr7  Breezecom-Attr7
        String
    radius.Breezecom_Attr7.len  Length
        Unsigned 8-bit integer
        Breezecom-Attr7 Length
    radius.Breezecom_Attr8  Breezecom-Attr8
        String
    radius.Breezecom_Attr8.len  Length
        Unsigned 8-bit integer
        Breezecom-Attr8 Length
    radius.Breezecom_Attr9  Breezecom-Attr9
        String
    radius.Breezecom_Attr9.len  Length
        Unsigned 8-bit integer
        Breezecom-Attr9 Length
    radius.Bridge_Group  Bridge-Group
        String
    radius.Bridge_Group.len  Length
        Unsigned 8-bit integer
        Bridge-Group Length
    radius.CBBSM_Bandwidth  CBBSM-Bandwidth
        Unsigned 32-bit integer
    radius.CBBSM_Bandwidth.len  Length
        Unsigned 8-bit integer
        CBBSM-Bandwidth Length
    radius.CES_Group  CES-Group
        String
    radius.CES_Group.len  Length
        Unsigned 8-bit integer
        CES-Group Length
    radius.CHAP_Challenge  CHAP-Challenge
        Byte array
    radius.CHAP_Challenge.len  Length
        Unsigned 8-bit integer
        CHAP-Challenge Length
    radius.CHAP_Password  CHAP-Password
        Byte array
    radius.CHAP_Password.len  Length
        Unsigned 8-bit integer
        CHAP-Password Length
    radius.CVPN3000_Access_Hours  CVPN3000-Access-Hours
        String
    radius.CVPN3000_Access_Hours.len  Length
        Unsigned 8-bit integer
        CVPN3000-Access-Hours Length
    radius.CVPN3000_Allow_Alpha_Only_Passwords  CVPN3000-Allow-Alpha-Only-Passwords
        Unsigned 32-bit integer
    radius.CVPN3000_Allow_Alpha_Only_Passwords.len  Length
        Unsigned 8-bit integer
        CVPN3000-Allow-Alpha-Only-Passwords Length
    radius.CVPN3000_Allow_Network_Extension_Mode  CVPN3000-Allow-Network-Extension-Mode
        Unsigned 32-bit integer
    radius.CVPN3000_Allow_Network_Extension_Mode.len  Length
        Unsigned 8-bit integer
        CVPN3000-Allow-Network-Extension-Mode Length
    radius.CVPN3000_Auth_Server_Password  CVPN3000-Auth-Server-Password
        String
    radius.CVPN3000_Auth_Server_Password.len  Length
        Unsigned 8-bit integer
        CVPN3000-Auth-Server-Password Length
    radius.CVPN3000_Auth_Server_Priority  CVPN3000-Auth-Server-Priority
        Unsigned 32-bit integer
    radius.CVPN3000_Auth_Server_Priority.len  Length
        Unsigned 8-bit integer
        CVPN3000-Auth-Server-Priority Length
    radius.CVPN3000_Auth_Server_Type  CVPN3000-Auth-Server-Type
        Unsigned 32-bit integer
    radius.CVPN3000_Auth_Server_Type.len  Length
        Unsigned 8-bit integer
        CVPN3000-Auth-Server-Type Length
    radius.CVPN3000_Authd_User_Idle_Timeout  CVPN3000-Authd-User-Idle-Timeout
        Unsigned 32-bit integer
    radius.CVPN3000_Authd_User_Idle_Timeout.len  Length
        Unsigned 8-bit integer
        CVPN3000-Authd-User-Idle-Timeout Length
    radius.CVPN3000_Cisco_IP_Phone_Bypass  CVPN3000-Cisco-IP-Phone-Bypass
        Unsigned 32-bit integer
    radius.CVPN3000_Cisco_IP_Phone_Bypass.len  Length
        Unsigned 8-bit integer
        CVPN3000-Cisco-IP-Phone-Bypass Length
    radius.CVPN3000_DHCP_Network_Scope  CVPN3000-DHCP-Network-Scope
        IPv4 address
    radius.CVPN3000_DHCP_Network_Scope.len  Length
        Unsigned 8-bit integer
        CVPN3000-DHCP-Network-Scope Length
    radius.CVPN3000_Group_Name  CVPN3000-Group-Name
        Unsigned 32-bit integer
    radius.CVPN3000_Group_Name.len  Length
        Unsigned 8-bit integer
        CVPN3000-Group-Name Length
    radius.CVPN3000_IE_Proxy_Bypass_Local  CVPN3000-IE-Proxy-Bypass-Local
        Unsigned 32-bit integer
    radius.CVPN3000_IE_Proxy_Bypass_Local.len  Length
        Unsigned 8-bit integer
        CVPN3000-IE-Proxy-Bypass-Local Length
    radius.CVPN3000_IE_Proxy_Exception_List  CVPN3000-IE-Proxy-Exception-List
        String
    radius.CVPN3000_IE_Proxy_Exception_List.len  Length
        Unsigned 8-bit integer
        CVPN3000-IE-Proxy-Exception-List Length
    radius.CVPN3000_IE_Proxy_Server  CVPN3000-IE-Proxy-Server
        IPv4 address
    radius.CVPN3000_IE_Proxy_Server.len  Length
        Unsigned 8-bit integer
        CVPN3000-IE-Proxy-Server Length
    radius.CVPN3000_IE_Proxy_Server_Policy  CVPN3000-IE-Proxy-Server-Policy
        Unsigned 32-bit integer
    radius.CVPN3000_IE_Proxy_Server_Policy.len  Length
        Unsigned 8-bit integer
        CVPN3000-IE-Proxy-Server-Policy Length
    radius.CVPN3000_IKE_Keep_Alives  CVPN3000-IKE-Keep-Alives
        Unsigned 32-bit integer
    radius.CVPN3000_IKE_Keep_Alives.len  Length
        Unsigned 8-bit integer
        CVPN3000-IKE-Keep-Alives Length
    radius.CVPN3000_IKE_Keepalive_Retry_Interval  CVPN3000-IKE-Keepalive-Retry-Interval
        Unsigned 32-bit integer
    radius.CVPN3000_IKE_Keepalive_Retry_Interval.len  Length
        Unsigned 8-bit integer
        CVPN3000-IKE-Keepalive-Retry-Interval Length
    radius.CVPN3000_IPSec_Allow_Passwd_Store  CVPN3000-IPSec-Allow-Passwd-Store
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Allow_Passwd_Store.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Allow-Passwd-Store Length
    radius.CVPN3000_IPSec_Auth_On_Rekey  CVPN3000-IPSec-Auth-On-Rekey
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Auth_On_Rekey.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Auth-On-Rekey Length
    radius.CVPN3000_IPSec_Authentication  CVPN3000-IPSec-Authentication
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Authentication.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Authentication Length
    radius.CVPN3000_IPSec_Authorization_Required  CVPN3000-IPSec-Authorization-Required
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Authorization_Required.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Authorization-Required Length
    radius.CVPN3000_IPSec_Authorization_Type  CVPN3000-IPSec-Authorization-Type
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Authorization_Type.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Authorization-Type Length
    radius.CVPN3000_IPSec_Backup_Server_List  CVPN3000-IPSec-Backup-Server-List
        String
    radius.CVPN3000_IPSec_Backup_Server_List.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Backup-Server-List Length
    radius.CVPN3000_IPSec_Backup_Servers  CVPN3000-IPSec-Backup-Servers
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Backup_Servers.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Backup-Servers Length
    radius.CVPN3000_IPSec_Banner1  CVPN3000-IPSec-Banner1
        String
    radius.CVPN3000_IPSec_Banner1.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Banner1 Length
    radius.CVPN3000_IPSec_Banner2  CVPN3000-IPSec-Banner2
        String
    radius.CVPN3000_IPSec_Banner2.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Banner2 Length
    radius.CVPN3000_IPSec_Client_Fw_Filter_Name  CVPN3000-IPSec-Client-Fw-Filter-Name
        String
    radius.CVPN3000_IPSec_Client_Fw_Filter_Name.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Client-Fw-Filter-Name Length
    radius.CVPN3000_IPSec_Client_Fw_Filter_Opt  CVPN3000-IPSec-Client-Fw-Filter-Opt
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Client_Fw_Filter_Opt.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Client-Fw-Filter-Opt Length
    radius.CVPN3000_IPSec_Confidence_Level  CVPN3000-IPSec-Confidence-Level
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Confidence_Level.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Confidence-Level Length
    radius.CVPN3000_IPSec_DN_Field  CVPN3000-IPSec-DN-Field
        String
    radius.CVPN3000_IPSec_DN_Field.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-DN-Field Length
    radius.CVPN3000_IPSec_Default_Domain  CVPN3000-IPSec-Default-Domain
        String
    radius.CVPN3000_IPSec_Default_Domain.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Default-Domain Length
    radius.CVPN3000_IPSec_Group_Name  CVPN3000-IPSec-Group-Name
        String
    radius.CVPN3000_IPSec_Group_Name.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Group-Name Length
    radius.CVPN3000_IPSec_IKE_Peer_ID_Check  CVPN3000-IPSec-IKE-Peer-ID-Check
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_IKE_Peer_ID_Check.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-IKE-Peer-ID-Check Length
    radius.CVPN3000_IPSec_IP_Compression  CVPN3000-IPSec-IP-Compression
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_IP_Compression.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-IP-Compression Length
    radius.CVPN3000_IPSec_LTL_Keepalives  CVPN3000-IPSec-LTL-Keepalives
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_LTL_Keepalives.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-LTL-Keepalives Length
    radius.CVPN3000_IPSec_Mode_Config  CVPN3000-IPSec-Mode-Config
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Mode_Config.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Mode-Config Length
    radius.CVPN3000_IPSec_Over_UDP  CVPN3000-IPSec-Over-UDP
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Over_UDP.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Over-UDP Length
    radius.CVPN3000_IPSec_Over_UDP_Port  CVPN3000-IPSec-Over-UDP-Port
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Over_UDP_Port.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Over-UDP-Port Length
    radius.CVPN3000_IPSec_Reqrd_Client_Fw_Cap  CVPN3000-IPSec-Reqrd-Client-Fw-Cap
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Reqrd_Client_Fw_Cap.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Reqrd-Client-Fw-Cap Length
    radius.CVPN3000_IPSec_Sec_Association  CVPN3000-IPSec-Sec-Association
        String
    radius.CVPN3000_IPSec_Sec_Association.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Sec-Association Length
    radius.CVPN3000_IPSec_Split_DNS_Names  CVPN3000-IPSec-Split-DNS-Names
        String
    radius.CVPN3000_IPSec_Split_DNS_Names.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Split-DNS-Names Length
    radius.CVPN3000_IPSec_Split_Tunnel_List  CVPN3000-IPSec-Split-Tunnel-List
        String
    radius.CVPN3000_IPSec_Split_Tunnel_List.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Split-Tunnel-List Length
    radius.CVPN3000_IPSec_Split_Tunneling_Policy  CVPN3000-IPSec-Split-Tunneling-Policy
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Split_Tunneling_Policy.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Split-Tunneling-Policy Length
    radius.CVPN3000_IPSec_Tunnel_Type  CVPN3000-IPSec-Tunnel-Type
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_Tunnel_Type.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-Tunnel-Type Length
    radius.CVPN3000_IPSec_User_Group_Lock  CVPN3000-IPSec-User-Group-Lock
        Unsigned 32-bit integer
    radius.CVPN3000_IPSec_User_Group_Lock.len  Length
        Unsigned 8-bit integer
        CVPN3000-IPSec-User-Group-Lock Length
    radius.CVPN3000_L2TP_Encryption  CVPN3000-L2TP-Encryption
        Unsigned 32-bit integer
    radius.CVPN3000_L2TP_Encryption.len  Length
        Unsigned 8-bit integer
        CVPN3000-L2TP-Encryption Length
    radius.CVPN3000_L2TP_MPPC_Compression  CVPN3000-L2TP-MPPC-Compression
        Unsigned 32-bit integer
    radius.CVPN3000_L2TP_MPPC_Compression.len  Length
        Unsigned 8-bit integer
        CVPN3000-L2TP-MPPC-Compression Length
    radius.CVPN3000_L2TP_Min_Auth_Protocol  CVPN3000-L2TP-Min-Auth-Protocol
        Unsigned 32-bit integer
    radius.CVPN3000_L2TP_Min_Auth_Protocol.len  Length
        Unsigned 8-bit integer
        CVPN3000-L2TP-Min-Auth-Protocol Length
    radius.CVPN3000_LEAP_Bypass  CVPN3000-LEAP-Bypass
        Unsigned 32-bit integer
    radius.CVPN3000_LEAP_Bypass.len  Length
        Unsigned 8-bit integer
        CVPN3000-LEAP-Bypass Length
    radius.CVPN3000_MS_Client_Icpt_DHCP_Conf_Msg  CVPN3000-MS-Client-Icpt-DHCP-Conf-Msg
        Unsigned 32-bit integer
    radius.CVPN3000_MS_Client_Icpt_DHCP_Conf_Msg.len  Length
        Unsigned 8-bit integer
        CVPN3000-MS-Client-Icpt-DHCP-Conf-Msg Length
    radius.CVPN3000_MS_Client_Subnet_Mask  CVPN3000-MS-Client-Subnet-Mask
        IPv4 address
    radius.CVPN3000_MS_Client_Subnet_Mask.len  Length
        Unsigned 8-bit integer
        CVPN3000-MS-Client-Subnet-Mask Length
    radius.CVPN3000_Min_Password_Length  CVPN3000-Min-Password-Length
        Unsigned 32-bit integer
    radius.CVPN3000_Min_Password_Length.len  Length
        Unsigned 8-bit integer
        CVPN3000-Min-Password-Length Length
    radius.CVPN3000_NAC_Default_ACL  CVPN3000-NAC-Default-ACL
        String
    radius.CVPN3000_NAC_Default_ACL.len  Length
        Unsigned 8-bit integer
        CVPN3000-NAC-Default-ACL Length
    radius.CVPN3000_NAC_Enable  CVPN3000-NAC-Enable
        Unsigned 32-bit integer
    radius.CVPN3000_NAC_Enable.len  Length
        Unsigned 8-bit integer
        CVPN3000-NAC-Enable Length
    radius.CVPN3000_NAC_Revalidation_Timer  CVPN3000-NAC-Revalidation-Timer
        Unsigned 32-bit integer
    radius.CVPN3000_NAC_Revalidation_Timer.len  Length
        Unsigned 8-bit integer
        CVPN3000-NAC-Revalidation-Timer Length
    radius.CVPN3000_NAC_Status_Query_Timer  CVPN3000-NAC-Status-Query-Timer
        Unsigned 32-bit integer
    radius.CVPN3000_NAC_Status_Query_Timer.len  Length
        Unsigned 8-bit integer
        CVPN3000-NAC-Status-Query-Timer Length
    radius.CVPN3000_PPTP_Encryption  CVPN3000-PPTP-Encryption
        Unsigned 32-bit integer
    radius.CVPN3000_PPTP_Encryption.len  Length
        Unsigned 8-bit integer
        CVPN3000-PPTP-Encryption Length
    radius.CVPN3000_PPTP_MPPC_Compression  CVPN3000-PPTP-MPPC-Compression
        Unsigned 32-bit integer
    radius.CVPN3000_PPTP_MPPC_Compression.len  Length
        Unsigned 8-bit integer
        CVPN3000-PPTP-MPPC-Compression Length
    radius.CVPN3000_PPTP_Min_Auth_Protocol  CVPN3000-PPTP-Min-Auth-Protocol
        Unsigned 32-bit integer
    radius.CVPN3000_PPTP_Min_Auth_Protocol.len  Length
        Unsigned 8-bit integer
        CVPN3000-PPTP-Min-Auth-Protocol Length
    radius.CVPN3000_Partition_Max_Sessions  CVPN3000-Partition-Max-Sessions
        Unsigned 32-bit integer
    radius.CVPN3000_Partition_Max_Sessions.len  Length
        Unsigned 8-bit integer
        CVPN3000-Partition-Max-Sessions Length
    radius.CVPN3000_Partition_Mobile_IP_Address  CVPN3000-Partition-Mobile-IP-Address
        IPv4 address
    radius.CVPN3000_Partition_Mobile_IP_Address.len  Length
        Unsigned 8-bit integer
        CVPN3000-Partition-Mobile-IP-Address Length
    radius.CVPN3000_Partition_Mobile_IP_Key  CVPN3000-Partition-Mobile-IP-Key
        String
    radius.CVPN3000_Partition_Mobile_IP_Key.len  Length
        Unsigned 8-bit integer
        CVPN3000-Partition-Mobile-IP-Key Length
    radius.CVPN3000_Partition_Mobile_IP_SPI  CVPN3000-Partition-Mobile-IP-SPI
        Unsigned 32-bit integer
    radius.CVPN3000_Partition_Mobile_IP_SPI.len  Length
        Unsigned 8-bit integer
        CVPN3000-Partition-Mobile-IP-SPI Length
    radius.CVPN3000_Partition_Premise_Router  CVPN3000-Partition-Premise-Router
        IPv4 address
    radius.CVPN3000_Partition_Premise_Router.len  Length
        Unsigned 8-bit integer
        CVPN3000-Partition-Premise-Router Length
    radius.CVPN3000_Partition_Primary_DHCP  CVPN3000-Partition-Primary-DHCP
        IPv4 address
    radius.CVPN3000_Partition_Primary_DHCP.len  Length
        Unsigned 8-bit integer
        CVPN3000-Partition-Primary-DHCP Length
    radius.CVPN3000_Partition_Secondary_DHCP  CVPN3000-Partition-Secondary-DHCP
        IPv4 address
    radius.CVPN3000_Partition_Secondary_DHCP.len  Length
        Unsigned 8-bit integer
        CVPN3000-Partition-Secondary-DHCP Length
    radius.CVPN3000_Perfect_Forward_Secrecy_Enable  CVPN3000-Perfect-Forward-Secrecy-Enable
        Unsigned 32-bit integer
    radius.CVPN3000_Perfect_Forward_Secrecy_Enable.len  Length
        Unsigned 8-bit integer
        CVPN3000-Perfect-Forward-Secrecy-Enable Length
    radius.CVPN3000_Port_Forwarding_Name  CVPN3000-Port-Forwarding-Name
        String
    radius.CVPN3000_Port_Forwarding_Name.len  Length
        Unsigned 8-bit integer
        CVPN3000-Port-Forwarding-Name Length
    radius.CVPN3000_Primary_DNS  CVPN3000-Primary-DNS
        IPv4 address
    radius.CVPN3000_Primary_DNS.len  Length
        Unsigned 8-bit integer
        CVPN3000-Primary-DNS Length
    radius.CVPN3000_Primary_WINS  CVPN3000-Primary-WINS
        IPv4 address
    radius.CVPN3000_Primary_WINS.len  Length
        Unsigned 8-bit integer
        CVPN3000-Primary-WINS Length
    radius.CVPN3000_Priority_On_SEP  CVPN3000-Priority-On-SEP
        Unsigned 32-bit integer
    radius.CVPN3000_Priority_On_SEP.len  Length
        Unsigned 8-bit integer
        CVPN3000-Priority-On-SEP Length
    radius.CVPN3000_Reqrd_Client_Fw_Description  CVPN3000-Reqrd-Client-Fw-Description
        String
    radius.CVPN3000_Reqrd_Client_Fw_Description.len  Length
        Unsigned 8-bit integer
        CVPN3000-Reqrd-Client-Fw-Description Length
    radius.CVPN3000_Reqrd_Client_Fw_Product_Code  CVPN3000-Reqrd-Client-Fw-Product-Code
        Unsigned 32-bit integer
    radius.CVPN3000_Reqrd_Client_Fw_Product_Code.len  Length
        Unsigned 8-bit integer
        CVPN3000-Reqrd-Client-Fw-Product-Code Length
    radius.CVPN3000_Reqrd_Client_Fw_Vendor_Code  CVPN3000-Reqrd-Client-Fw-Vendor-Code
        Unsigned 32-bit integer
    radius.CVPN3000_Reqrd_Client_Fw_Vendor_Code.len  Length
        Unsigned 8-bit integer
        CVPN3000-Reqrd-Client-Fw-Vendor-Code Length
    radius.CVPN3000_Request_Auth_Vector  CVPN3000-Request-Auth-Vector
        String
    radius.CVPN3000_Request_Auth_Vector.len  Length
        Unsigned 8-bit integer
        CVPN3000-Request-Auth-Vector Length
    radius.CVPN3000_Require_HW_Client_Auth  CVPN3000-Require-HW-Client-Auth
        Unsigned 32-bit integer
    radius.CVPN3000_Require_HW_Client_Auth.len  Length
        Unsigned 8-bit integer
        CVPN3000-Require-HW-Client-Auth Length
    radius.CVPN3000_Require_Individual_User_Auth  CVPN3000-Require-Individual-User-Auth
        Unsigned 32-bit integer
    radius.CVPN3000_Require_Individual_User_Auth.len  Length
        Unsigned 8-bit integer
        CVPN3000-Require-Individual-User-Auth Length
    radius.CVPN3000_SEP_Card_Assignment  CVPN3000-SEP-Card-Assignment
        Unsigned 32-bit integer
    radius.CVPN3000_SEP_Card_Assignment.len  Length
        Unsigned 8-bit integer
        CVPN3000-SEP-Card-Assignment Length
    radius.CVPN3000_Secondary_DNS  CVPN3000-Secondary-DNS
        IPv4 address
    radius.CVPN3000_Secondary_DNS.len  Length
        Unsigned 8-bit integer
        CVPN3000-Secondary-DNS Length
    radius.CVPN3000_Secondary_WINS  CVPN3000-Secondary-WINS
        IPv4 address
    radius.CVPN3000_Secondary_WINS.len  Length
        Unsigned 8-bit integer
        CVPN3000-Secondary-WINS Length
    radius.CVPN3000_Simultaneous_Logins  CVPN3000-Simultaneous-Logins
        Unsigned 32-bit integer
    radius.CVPN3000_Simultaneous_Logins.len  Length
        Unsigned 8-bit integer
        CVPN3000-Simultaneous-Logins Length
    radius.CVPN3000_Strip_Realm  CVPN3000-Strip-Realm
        Unsigned 32-bit integer
    radius.CVPN3000_Strip_Realm.len  Length
        Unsigned 8-bit integer
        CVPN3000-Strip-Realm Length
    radius.CVPN3000_Tunneling_Protocols  CVPN3000-Tunneling-Protocols
        Unsigned 32-bit integer
    radius.CVPN3000_Tunneling_Protocols.len  Length
        Unsigned 8-bit integer
        CVPN3000-Tunneling-Protocols Length
    radius.CVPN3000_Use_Client_Address  CVPN3000-Use-Client-Address
        Unsigned 32-bit integer
    radius.CVPN3000_Use_Client_Address.len  Length
        Unsigned 8-bit integer
        CVPN3000-Use-Client-Address Length
    radius.CVPN3000_User_Auth_Server_Name  CVPN3000-User-Auth-Server-Name
        String
    radius.CVPN3000_User_Auth_Server_Name.len  Length
        Unsigned 8-bit integer
        CVPN3000-User-Auth-Server-Name Length
    radius.CVPN3000_User_Auth_Server_Port  CVPN3000-User-Auth-Server-Port
        Unsigned 32-bit integer
    radius.CVPN3000_User_Auth_Server_Port.len  Length
        Unsigned 8-bit integer
        CVPN3000-User-Auth-Server-Port Length
    radius.CVPN3000_User_Auth_Server_Secret  CVPN3000-User-Auth-Server-Secret
        String
    radius.CVPN3000_User_Auth_Server_Secret.len  Length
        Unsigned 8-bit integer
        CVPN3000-User-Auth-Server-Secret Length
    radius.CVPN3000_WebVPN_Apply_ACL  CVPN3000-WebVPN-Apply-ACL
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_Apply_ACL.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-Apply-ACL Length
    radius.CVPN3000_WebVPN_Auto_Applet_Downld_Enb  CVPN3000-WebVPN-Auto-Applet-Downld-Enb
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_Auto_Applet_Downld_Enb.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-Auto-Applet-Downld-Enb Length
    radius.CVPN3000_WebVPN_Citrix_Metaframe_Enable  CVPN3000-WebVPN-Citrix-Metaframe-Enable
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_Citrix_Metaframe_Enable.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-Citrix-Metaframe-Enable Length
    radius.CVPN3000_WebVPN_Content_Filter  CVPN3000-WebVPN-Content-Filter
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_Content_Filter.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-Content-Filter Length
    radius.CVPN3000_WebVPN_Enable_functions  CVPN3000-WebVPN-Enable-functions
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_Enable_functions.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-Enable-functions Length
    radius.CVPN3000_WebVPN_Exchange_Addr  CVPN3000-WebVPN-Exchange-Addr
        String
    radius.CVPN3000_WebVPN_Exchange_Addr.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-Exchange-Addr Length
    radius.CVPN3000_WebVPN_Exchange_NETBIOS_name  CVPN3000-WebVPN-Exchange-NETBIOS-name
        String
    radius.CVPN3000_WebVPN_Exchange_NETBIOS_name.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-Exchange-NETBIOS-name Length
    radius.CVPN3000_WebVPN_File_Access_Enable  CVPN3000-WebVPN-File-Access-Enable
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_File_Access_Enable.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-File-Access-Enable Length
    radius.CVPN3000_WebVPN_File_Svr_Brwsing_Enable  CVPN3000-WebVPN-File-Svr-Brwsing-Enable
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_File_Svr_Brwsing_Enable.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-File-Svr-Brwsing-Enable Length
    radius.CVPN3000_WebVPN_File_Svr_Entry_Enable  CVPN3000-WebVPN-File-Svr-Entry-Enable
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_File_Svr_Entry_Enable.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-File-Svr-Entry-Enable Length
    radius.CVPN3000_WebVPN_Outlook_Exch_Proxy_Enb  CVPN3000-WebVPN-Outlook-Exch-Proxy-Enb
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_Outlook_Exch_Proxy_Enb.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-Outlook-Exch-Proxy-Enb Length
    radius.CVPN3000_WebVPN_Port_Forwarding_Enable  CVPN3000-WebVPN-Port-Forwarding-Enable
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_Port_Forwarding_Enable.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-Port-Forwarding-Enable Length
    radius.CVPN3000_WebVPN_Port_Fwding_HTTP_Proxy  CVPN3000-WebVPN-Port-Fwding-HTTP-Proxy
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_Port_Fwding_HTTP_Proxy.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-Port-Fwding-HTTP-Proxy Length
    radius.CVPN3000_WebVPN_SSL_VPN_Client_Enable  CVPN3000-WebVPN-SSL-VPN-Client-Enable
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_SSL_VPN_Client_Enable.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-SSL-VPN-Client-Enable Length
    radius.CVPN3000_WebVPN_SSL_VPN_Client_Keep_Ins  CVPN3000-WebVPN-SSL-VPN-Client-Keep-Ins
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_SSL_VPN_Client_Keep_Ins.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-SSL-VPN-Client-Keep-Ins Length
    radius.CVPN3000_WebVPN_SSL_VPN_Client_Required  CVPN3000-WebVPN-SSL-VPN-Client-Required
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_SSL_VPN_Client_Required.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-SSL-VPN-Client-Required Length
    radius.CVPN3000_WebVPN_URL_Entry_Enable  CVPN3000-WebVPN-URL-Entry-Enable
        Unsigned 32-bit integer
    radius.CVPN3000_WebVPN_URL_Entry_Enable.len  Length
        Unsigned 8-bit integer
        CVPN3000-WebVPN-URL-Entry-Enable Length
    radius.CVPN5000_Client_Assigned_IP  CVPN5000-Client-Assigned-IP
        String
    radius.CVPN5000_Client_Assigned_IP.len  Length
        Unsigned 8-bit integer
        CVPN5000-Client-Assigned-IP Length
    radius.CVPN5000_Client_Assigned_IPX  CVPN5000-Client-Assigned-IPX
        Unsigned 32-bit integer
    radius.CVPN5000_Client_Assigned_IPX.len  Length
        Unsigned 8-bit integer
        CVPN5000-Client-Assigned-IPX Length
    radius.CVPN5000_Client_Real_IP  CVPN5000-Client-Real-IP
        String
    radius.CVPN5000_Client_Real_IP.len  Length
        Unsigned 8-bit integer
        CVPN5000-Client-Real-IP Length
    radius.CVPN5000_Echo  CVPN5000-Echo
        Unsigned 32-bit integer
    radius.CVPN5000_Echo.len  Length
        Unsigned 8-bit integer
        CVPN5000-Echo Length
    radius.CVPN5000_Tunnel_Throughput  CVPN5000-Tunnel-Throughput
        Unsigned 32-bit integer
    radius.CVPN5000_Tunnel_Throughput.len  Length
        Unsigned 8-bit integer
        CVPN5000-Tunnel-Throughput Length
    radius.CVPN5000_VPN_GroupInfo  CVPN5000-VPN-GroupInfo
        String
    radius.CVPN5000_VPN_GroupInfo.len  Length
        Unsigned 8-bit integer
        CVPN5000-VPN-GroupInfo Length
    radius.CVPN5000_VPN_Password  CVPN5000-VPN-Password
        String
    radius.CVPN5000_VPN_Password.len  Length
        Unsigned 8-bit integer
        CVPN5000-VPN-Password Length
    radius.CW_ARQ_Token  CW-ARQ-Token
        String
    radius.CW_ARQ_Token.len  Length
        Unsigned 8-bit integer
        CW-ARQ-Token Length
    radius.CW_Account_Id  CW-Account-Id
        String
    radius.CW_Account_Id.len  Length
        Unsigned 8-bit integer
        CW-Account-Id Length
    radius.CW_Acct_Balance_Decr_Curr  CW-Acct-Balance-Decr-Curr
        Unsigned 32-bit integer
    radius.CW_Acct_Balance_Decr_Curr.len  Length
        Unsigned 8-bit integer
        CW-Acct-Balance-Decr-Curr Length
    radius.CW_Acct_Balance_Start_Amt  CW-Acct-Balance-Start-Amt
        Unsigned 32-bit integer
    radius.CW_Acct_Balance_Start_Amt.len  Length
        Unsigned 8-bit integer
        CW-Acct-Balance-Start-Amt Length
    radius.CW_Acct_Balance_Start_Curr  CW-Acct-Balance-Start-Curr
        Unsigned 32-bit integer
    radius.CW_Acct_Balance_Start_Curr.len  Length
        Unsigned 8-bit integer
        CW-Acct-Balance-Start-Curr Length
    radius.CW_Acct_Balance_Start_Dec  CW-Acct-Balance-Start-Dec
        Unsigned 32-bit integer
    radius.CW_Acct_Balance_Start_Dec.len  Length
        Unsigned 8-bit integer
        CW-Acct-Balance-Start-Dec Length
    radius.CW_Acct_Identification_Code  CW-Acct-Identification-Code
        Unsigned 32-bit integer
    radius.CW_Acct_Identification_Code.len  Length
        Unsigned 8-bit integer
        CW-Acct-Identification-Code Length
    radius.CW_Acct_Type  CW-Acct-Type
        Unsigned 32-bit integer
    radius.CW_Acct_Type.len  Length
        Unsigned 8-bit integer
        CW-Acct-Type Length
    radius.CW_Audio_Bytes_In_Frame  CW-Audio-Bytes-In-Frame
        Unsigned 32-bit integer
    radius.CW_Audio_Bytes_In_Frame.len  Length
        Unsigned 8-bit integer
        CW-Audio-Bytes-In-Frame Length
    radius.CW_Audio_Packets_In_Frame  CW-Audio-Packets-In-Frame
        Unsigned 32-bit integer
    radius.CW_Audio_Packets_In_Frame.len  Length
        Unsigned 8-bit integer
        CW-Audio-Packets-In-Frame Length
    radius.CW_Audio_Packets_Lost  CW-Audio-Packets-Lost
        Unsigned 32-bit integer
    radius.CW_Audio_Packets_Lost.len  Length
        Unsigned 8-bit integer
        CW-Audio-Packets-Lost Length
    radius.CW_Audio_Packets_Received  CW-Audio-Packets-Received
        Unsigned 32-bit integer
    radius.CW_Audio_Packets_Received.len  Length
        Unsigned 8-bit integer
        CW-Audio-Packets-Received Length
    radius.CW_Audio_Packets_Sent  CW-Audio-Packets-Sent
        Unsigned 32-bit integer
    radius.CW_Audio_Packets_Sent.len  Length
        Unsigned 8-bit integer
        CW-Audio-Packets-Sent Length
    radius.CW_Audio_Signal_In_Packet  CW-Audio-Signal-In-Packet
        Unsigned 32-bit integer
    radius.CW_Audio_Signal_In_Packet.len  Length
        Unsigned 8-bit integer
        CW-Audio-Signal-In-Packet Length
    radius.CW_Authentication_Fail_Cnt  CW-Authentication-Fail-Cnt
        Unsigned 32-bit integer
    radius.CW_Authentication_Fail_Cnt.len  Length
        Unsigned 8-bit integer
        CW-Authentication-Fail-Cnt Length
    radius.CW_Call_Durn_Connect_Disc  CW-Call-Durn-Connect-Disc
        Unsigned 32-bit integer
    radius.CW_Call_Durn_Connect_Disc.len  Length
        Unsigned 8-bit integer
        CW-Call-Durn-Connect-Disc Length
    radius.CW_Call_End_Time_Msec  CW-Call-End-Time-Msec
        Unsigned 32-bit integer
    radius.CW_Call_End_Time_Msec.len  Length
        Unsigned 8-bit integer
        CW-Call-End-Time-Msec Length
    radius.CW_Call_End_Time_Sec  CW-Call-End-Time-Sec
        String
    radius.CW_Call_End_Time_Sec.len  Length
        Unsigned 8-bit integer
        CW-Call-End-Time-Sec Length
    radius.CW_Call_Identifier  CW-Call-Identifier
        String
    radius.CW_Call_Identifier.len  Length
        Unsigned 8-bit integer
        CW-Call-Identifier Length
    radius.CW_Call_Model  CW-Call-Model
        Unsigned 32-bit integer
    radius.CW_Call_Model.len  Length
        Unsigned 8-bit integer
        CW-Call-Model Length
    radius.CW_Call_Plan_Id  CW-Call-Plan-Id
        Unsigned 32-bit integer
    radius.CW_Call_Plan_Id.len  Length
        Unsigned 8-bit integer
        CW-Call-Plan-Id Length
    radius.CW_Call_Start_Ingr_GW_Msec  CW-Call-Start-Ingr-GW-Msec
        Unsigned 32-bit integer
    radius.CW_Call_Start_Ingr_GW_Msec.len  Length
        Unsigned 8-bit integer
        CW-Call-Start-Ingr-GW-Msec Length
    radius.CW_Call_Start_Ingr_GW_Sec  CW-Call-Start-Ingr-GW-Sec
        String
    radius.CW_Call_Start_Ingr_GW_Sec.len  Length
        Unsigned 8-bit integer
        CW-Call-Start-Ingr-GW-Sec Length
    radius.CW_Call_Start_Time_Ans_Msec  CW-Call-Start-Time-Ans-Msec
        Unsigned 32-bit integer
    radius.CW_Call_Start_Time_Ans_Msec.len  Length
        Unsigned 8-bit integer
        CW-Call-Start-Time-Ans-Msec Length
    radius.CW_Call_Start_Time_Ans_Sec  CW-Call-Start-Time-Ans-Sec
        String
    radius.CW_Call_Start_Time_Ans_Sec.len  Length
        Unsigned 8-bit integer
        CW-Call-Start-Time-Ans-Sec Length
    radius.CW_Call_Termination_Cause  CW-Call-Termination-Cause
        Unsigned 32-bit integer
    radius.CW_Call_Termination_Cause.len  Length
        Unsigned 8-bit integer
        CW-Call-Termination-Cause Length
    radius.CW_Call_Type  CW-Call-Type
        Unsigned 32-bit integer
    radius.CW_Call_Type.len  Length
        Unsigned 8-bit integer
        CW-Call-Type Length
    radius.CW_Cld_Party_E164_Number  CW-Cld-Party-E164-Number
        String
    radius.CW_Cld_Party_E164_Number.len  Length
        Unsigned 8-bit integer
        CW-Cld-Party-E164-Number Length
    radius.CW_Cld_Party_E164_Type  CW-Cld-Party-E164-Type
        Unsigned 32-bit integer
    radius.CW_Cld_Party_E164_Type.len  Length
        Unsigned 8-bit integer
        CW-Cld-Party-E164-Type Length
    radius.CW_Cld_Party_Trans_DNS  CW-Cld-Party-Trans-DNS
        String
    radius.CW_Cld_Party_Trans_DNS.len  Length
        Unsigned 8-bit integer
        CW-Cld-Party-Trans-DNS Length
    radius.CW_Cld_Party_Trans_IP  CW-Cld-Party-Trans-IP
        IPv4 address
    radius.CW_Cld_Party_Trans_IP.len  Length
        Unsigned 8-bit integer
        CW-Cld-Party-Trans-IP Length
    radius.CW_Cld_Party_Trans_Port  CW-Cld-Party-Trans-Port
        Unsigned 32-bit integer
    radius.CW_Cld_Party_Trans_Port.len  Length
        Unsigned 8-bit integer
        CW-Cld-Party-Trans-Port Length
    radius.CW_Cld_Party_Trans_Protocol  CW-Cld-Party-Trans-Protocol
        Unsigned 32-bit integer
    radius.CW_Cld_Party_Trans_Protocol.len  Length
        Unsigned 8-bit integer
        CW-Cld-Party-Trans-Protocol Length
    radius.CW_Clg_Party_E164_Number  CW-Clg-Party-E164-Number
        String
    radius.CW_Clg_Party_E164_Number.len  Length
        Unsigned 8-bit integer
        CW-Clg-Party-E164-Number Length
    radius.CW_Clg_Party_E164_Type  CW-Clg-Party-E164-Type
        Unsigned 32-bit integer
    radius.CW_Clg_Party_E164_Type.len  Length
        Unsigned 8-bit integer
        CW-Clg-Party-E164-Type Length
    radius.CW_Clg_Party_Trans_DNS  CW-Clg-Party-Trans-DNS
        String
    radius.CW_Clg_Party_Trans_DNS.len  Length
        Unsigned 8-bit integer
        CW-Clg-Party-Trans-DNS Length
    radius.CW_Clg_Party_Trans_IP  CW-Clg-Party-Trans-IP
        IPv4 address
    radius.CW_Clg_Party_Trans_IP.len  Length
        Unsigned 8-bit integer
        CW-Clg-Party-Trans-IP Length
    radius.CW_Clg_Party_Trans_Port  CW-Clg-Party-Trans-Port
        Unsigned 32-bit integer
    radius.CW_Clg_Party_Trans_Port.len  Length
        Unsigned 8-bit integer
        CW-Clg-Party-Trans-Port Length
    radius.CW_Clg_Party_Trans_Protocol  CW-Clg-Party-Trans-Protocol
        Unsigned 32-bit integer
    radius.CW_Clg_Party_Trans_Protocol.len  Length
        Unsigned 8-bit integer
        CW-Clg-Party-Trans-Protocol Length
    radius.CW_Codec_Type  CW-Codec-Type
        Unsigned 32-bit integer
    radius.CW_Codec_Type.len  Length
        Unsigned 8-bit integer
        CW-Codec-Type Length
    radius.CW_Egr_Gtkpr_Trans_DNS  CW-Egr-Gtkpr-Trans-DNS
        String
    radius.CW_Egr_Gtkpr_Trans_DNS.len  Length
        Unsigned 8-bit integer
        CW-Egr-Gtkpr-Trans-DNS Length
    radius.CW_Egr_Gtkpr_Trans_IP  CW-Egr-Gtkpr-Trans-IP
        IPv4 address
    radius.CW_Egr_Gtkpr_Trans_IP.len  Length
        Unsigned 8-bit integer
        CW-Egr-Gtkpr-Trans-IP Length
    radius.CW_Egr_Gtkpr_Trans_Port  CW-Egr-Gtkpr-Trans-Port
        Unsigned 32-bit integer
    radius.CW_Egr_Gtkpr_Trans_Port.len  Length
        Unsigned 8-bit integer
        CW-Egr-Gtkpr-Trans-Port Length
    radius.CW_Egr_Gtkpr_Trans_Protocol  CW-Egr-Gtkpr-Trans-Protocol
        Unsigned 32-bit integer
    radius.CW_Egr_Gtkpr_Trans_Protocol.len  Length
        Unsigned 8-bit integer
        CW-Egr-Gtkpr-Trans-Protocol Length
    radius.CW_Egr_Gway_Trans_DNS  CW-Egr-Gway-Trans-DNS
        String
    radius.CW_Egr_Gway_Trans_DNS.len  Length
        Unsigned 8-bit integer
        CW-Egr-Gway-Trans-DNS Length
    radius.CW_Egr_Gway_Trans_IP  CW-Egr-Gway-Trans-IP
        IPv4 address
    radius.CW_Egr_Gway_Trans_IP.len  Length
        Unsigned 8-bit integer
        CW-Egr-Gway-Trans-IP Length
    radius.CW_Egr_Gway_Trans_Port  CW-Egr-Gway-Trans-Port
        Unsigned 32-bit integer
    radius.CW_Egr_Gway_Trans_Port.len  Length
        Unsigned 8-bit integer
        CW-Egr-Gway-Trans-Port Length
    radius.CW_Egr_Gway_Trans_Protocol  CW-Egr-Gway-Trans-Protocol
        Unsigned 32-bit integer
    radius.CW_Egr_Gway_Trans_Protocol.len  Length
        Unsigned 8-bit integer
        CW-Egr-Gway-Trans-Protocol Length
    radius.CW_Ingr_Gtkpr_Trans_DNS  CW-Ingr-Gtkpr-Trans-DNS
        String
    radius.CW_Ingr_Gtkpr_Trans_DNS.len  Length
        Unsigned 8-bit integer
        CW-Ingr-Gtkpr-Trans-DNS Length
    radius.CW_Ingr_Gtkpr_Trans_IP  CW-Ingr-Gtkpr-Trans-IP
        IPv4 address
    radius.CW_Ingr_Gtkpr_Trans_IP.len  Length
        Unsigned 8-bit integer
        CW-Ingr-Gtkpr-Trans-IP Length
    radius.CW_Ingr_Gtkpr_Trans_Port  CW-Ingr-Gtkpr-Trans-Port
        Unsigned 32-bit integer
    radius.CW_Ingr_Gtkpr_Trans_Port.len  Length
        Unsigned 8-bit integer
        CW-Ingr-Gtkpr-Trans-Port Length
    radius.CW_Ingr_Gtkpr_Trans_Protocol  CW-Ingr-Gtkpr-Trans-Protocol
        Unsigned 32-bit integer
    radius.CW_Ingr_Gtkpr_Trans_Protocol.len  Length
        Unsigned 8-bit integer
        CW-Ingr-Gtkpr-Trans-Protocol Length
    radius.CW_Ingr_Gway_E164_Number  CW-Ingr-Gway-E164-Number
        String
    radius.CW_Ingr_Gway_E164_Number.len  Length
        Unsigned 8-bit integer
        CW-Ingr-Gway-E164-Number Length
    radius.CW_Ingr_Gway_E164_Type  CW-Ingr-Gway-E164-Type
        Unsigned 32-bit integer
    radius.CW_Ingr_Gway_E164_Type.len  Length
        Unsigned 8-bit integer
        CW-Ingr-Gway-E164-Type Length
    radius.CW_Ingr_Gway_Trans_DNS  CW-Ingr-Gway-Trans-DNS
        String
    radius.CW_Ingr_Gway_Trans_DNS.len  Length
        Unsigned 8-bit integer
        CW-Ingr-Gway-Trans-DNS Length
    radius.CW_Ingr_Gway_Trans_IP  CW-Ingr-Gway-Trans-IP
        IPv4 address
    radius.CW_Ingr_Gway_Trans_IP.len  Length
        Unsigned 8-bit integer
        CW-Ingr-Gway-Trans-IP Length
    radius.CW_Ingr_Gway_Trans_Port  CW-Ingr-Gway-Trans-Port
        Unsigned 32-bit integer
    radius.CW_Ingr_Gway_Trans_Port.len  Length
        Unsigned 8-bit integer
        CW-Ingr-Gway-Trans-Port Length
    radius.CW_Ingr_Gway_Trans_Protocol  CW-Ingr-Gway-Trans-Protocol
        Unsigned 32-bit integer
    radius.CW_Ingr_Gway_Trans_Protocol.len  Length
        Unsigned 8-bit integer
        CW-Ingr-Gway-Trans-Protocol Length
    radius.CW_LRQ_Token  CW-LRQ-Token
        String
    radius.CW_LRQ_Token.len  Length
        Unsigned 8-bit integer
        CW-LRQ-Token Length
    radius.CW_Local_MG_RTP_DNS  CW-Local-MG-RTP-DNS
        String
    radius.CW_Local_MG_RTP_DNS.len  Length
        Unsigned 8-bit integer
        CW-Local-MG-RTP-DNS Length
    radius.CW_Local_MG_RTP_IP  CW-Local-MG-RTP-IP
        IPv4 address
    radius.CW_Local_MG_RTP_IP.len  Length
        Unsigned 8-bit integer
        CW-Local-MG-RTP-IP Length
    radius.CW_Local_MG_RTP_Port  CW-Local-MG-RTP-Port
        Unsigned 32-bit integer
    radius.CW_Local_MG_RTP_Port.len  Length
        Unsigned 8-bit integer
        CW-Local-MG-RTP-Port Length
    radius.CW_Local_MG_RTP_Protocol  CW-Local-MG-RTP-Protocol
        Unsigned 32-bit integer
    radius.CW_Local_MG_RTP_Protocol.len  Length
        Unsigned 8-bit integer
        CW-Local-MG-RTP-Protocol Length
    radius.CW_Local_Sig_Trans_DNS  CW-Local-Sig-Trans-DNS
        String
    radius.CW_Local_Sig_Trans_DNS.len  Length
        Unsigned 8-bit integer
        CW-Local-Sig-Trans-DNS Length
    radius.CW_Local_Sig_Trans_IP  CW-Local-Sig-Trans-IP
        IPv4 address
    radius.CW_Local_Sig_Trans_IP.len  Length
        Unsigned 8-bit integer
        CW-Local-Sig-Trans-IP Length
    radius.CW_Local_Sig_Trans_Port  CW-Local-Sig-Trans-Port
        Unsigned 32-bit integer
    radius.CW_Local_Sig_Trans_Port.len  Length
        Unsigned 8-bit integer
        CW-Local-Sig-Trans-Port Length
    radius.CW_Local_Sig_Trans_Protocol  CW-Local-Sig-Trans-Protocol
        Unsigned 32-bit integer
    radius.CW_Local_Sig_Trans_Protocol.len  Length
        Unsigned 8-bit integer
        CW-Local-Sig-Trans-Protocol Length
    radius.CW_MGC_Id  CW-MGC-Id
        Unsigned 32-bit integer
    radius.CW_MGC_Id.len  Length
        Unsigned 8-bit integer
        CW-MGC-Id Length
    radius.CW_MG_Id  CW-MG-Id
        Unsigned 32-bit integer
    radius.CW_MG_Id.len  Length
        Unsigned 8-bit integer
        CW-MG-Id Length
    radius.CW_Num_Call_Attempt_Session  CW-Num-Call-Attempt-Session
        Unsigned 32-bit integer
    radius.CW_Num_Call_Attempt_Session.len  Length
        Unsigned 8-bit integer
        CW-Num-Call-Attempt-Session Length
    radius.CW_OSP_Source_Device  CW-OSP-Source-Device
        String
    radius.CW_OSP_Source_Device.len  Length
        Unsigned 8-bit integer
        CW-OSP-Source-Device Length
    radius.CW_Orig_Line_Identifier  CW-Orig-Line-Identifier
        Unsigned 32-bit integer
    radius.CW_Orig_Line_Identifier.len  Length
        Unsigned 8-bit integer
        CW-Orig-Line-Identifier Length
    radius.CW_PSTN_Interface_Number  CW-PSTN-Interface-Number
        Unsigned 32-bit integer
    radius.CW_PSTN_Interface_Number.len  Length
        Unsigned 8-bit integer
        CW-PSTN-Interface-Number Length
    radius.CW_Port_Id_For_Call  CW-Port-Id-For-Call
        Unsigned 32-bit integer
    radius.CW_Port_Id_For_Call.len  Length
        Unsigned 8-bit integer
        CW-Port-Id-For-Call Length
    radius.CW_Protocol_Transport  CW-Protocol-Transport
        Unsigned 32-bit integer
    radius.CW_Protocol_Transport.len  Length
        Unsigned 8-bit integer
        CW-Protocol-Transport Length
    radius.CW_Rate_Plan_Id  CW-Rate-Plan-Id
        Unsigned 32-bit integer
    radius.CW_Rate_Plan_Id.len  Length
        Unsigned 8-bit integer
        CW-Rate-Plan-Id Length
    radius.CW_Remote_MG_RTP_DNS  CW-Remote-MG-RTP-DNS
        String
    radius.CW_Remote_MG_RTP_DNS.len  Length
        Unsigned 8-bit integer
        CW-Remote-MG-RTP-DNS Length
    radius.CW_Remote_MG_RTP_IP  CW-Remote-MG-RTP-IP
        IPv4 address
    radius.CW_Remote_MG_RTP_IP.len  Length
        Unsigned 8-bit integer
        CW-Remote-MG-RTP-IP Length
    radius.CW_Remote_MG_RTP_Port  CW-Remote-MG-RTP-Port
        Unsigned 32-bit integer
    radius.CW_Remote_MG_RTP_Port.len  Length
        Unsigned 8-bit integer
        CW-Remote-MG-RTP-Port Length
    radius.CW_Remote_MG_RTP_Protocol  CW-Remote-MG-RTP-Protocol
        Unsigned 32-bit integer
    radius.CW_Remote_MG_RTP_Protocol.len  Length
        Unsigned 8-bit integer
        CW-Remote-MG-RTP-Protocol Length
    radius.CW_Remote_Sig_Trans_DNS  CW-Remote-Sig-Trans-DNS
        String
    radius.CW_Remote_Sig_Trans_DNS.len  Length
        Unsigned 8-bit integer
        CW-Remote-Sig-Trans-DNS Length
    radius.CW_Remote_Sig_Trans_IP  CW-Remote-Sig-Trans-IP
        IPv4 address
    radius.CW_Remote_Sig_Trans_IP.len  Length
        Unsigned 8-bit integer
        CW-Remote-Sig-Trans-IP Length
    radius.CW_Remote_Sig_Trans_Port  CW-Remote-Sig-Trans-Port
        Unsigned 32-bit integer
    radius.CW_Remote_Sig_Trans_Port.len  Length
        Unsigned 8-bit integer
        CW-Remote-Sig-Trans-Port Length
    radius.CW_Remote_Sig_Trans_Protocol  CW-Remote-Sig-Trans-Protocol
        Unsigned 32-bit integer
    radius.CW_Remote_Sig_Trans_Protocol.len  Length
        Unsigned 8-bit integer
        CW-Remote-Sig-Trans-Protocol Length
    radius.CW_SS7_CIC  CW-SS7-CIC
        Unsigned 32-bit integer
    radius.CW_SS7_CIC.len  Length
        Unsigned 8-bit integer
        CW-SS7-CIC Length
    radius.CW_SS7_Destn_Ptcode_Address  CW-SS7-Destn-Ptcode-Address
        Unsigned 32-bit integer
    radius.CW_SS7_Destn_Ptcode_Address.len  Length
        Unsigned 8-bit integer
        CW-SS7-Destn-Ptcode-Address Length
    radius.CW_SS7_Destn_Ptcode_Type  CW-SS7-Destn-Ptcode-Type
        Unsigned 32-bit integer
    radius.CW_SS7_Destn_Ptcode_Type.len  Length
        Unsigned 8-bit integer
        CW-SS7-Destn-Ptcode-Type Length
    radius.CW_SS7_Orig_Ptcode_Address  CW-SS7-Orig-Ptcode-Address
        Unsigned 32-bit integer
    radius.CW_SS7_Orig_Ptcode_Address.len  Length
        Unsigned 8-bit integer
        CW-SS7-Orig-Ptcode-Address Length
    radius.CW_SS7_Orig_Ptcode_Type  CW-SS7-Orig-Ptcode-Type
        Unsigned 32-bit integer
    radius.CW_SS7_Orig_Ptcode_Type.len  Length
        Unsigned 8-bit integer
        CW-SS7-Orig-Ptcode-Type Length
    radius.CW_Service_Type  CW-Service-Type
        Unsigned 32-bit integer
    radius.CW_Service_Type.len  Length
        Unsigned 8-bit integer
        CW-Service-Type Length
    radius.CW_Session_Id  CW-Session-Id
        String
    radius.CW_Session_Id.len  Length
        Unsigned 8-bit integer
        CW-Session-Id Length
    radius.CW_Session_Sequence_End  CW-Session-Sequence-End
        Unsigned 32-bit integer
    radius.CW_Session_Sequence_End.len  Length
        Unsigned 8-bit integer
        CW-Session-Sequence-End Length
    radius.CW_Session_Sequence_Num  CW-Session-Sequence-Num
        Unsigned 32-bit integer
    radius.CW_Session_Sequence_Num.len  Length
        Unsigned 8-bit integer
        CW-Session-Sequence-Num Length
    radius.CW_Signaling_Protocol  CW-Signaling-Protocol
        Unsigned 32-bit integer
    radius.CW_Signaling_Protocol.len  Length
        Unsigned 8-bit integer
        CW-Signaling-Protocol Length
    radius.CW_Slot_Id_For_Call  CW-Slot-Id-For-Call
        Unsigned 32-bit integer
    radius.CW_Slot_Id_For_Call.len  Length
        Unsigned 8-bit integer
        CW-Slot-Id-For-Call Length
    radius.CW_Source_Identifier  CW-Source-Identifier
        Unsigned 32-bit integer
    radius.CW_Source_Identifier.len  Length
        Unsigned 8-bit integer
        CW-Source-Identifier Length
    radius.CW_Token_Status  CW-Token-Status
        Unsigned 32-bit integer
    radius.CW_Token_Status.len  Length
        Unsigned 8-bit integer
        CW-Token-Status Length
    radius.CW_Trans_Cld_Party_E164_Num  CW-Trans-Cld-Party-E164-Num
        String
    radius.CW_Trans_Cld_Party_E164_Num.len  Length
        Unsigned 8-bit integer
        CW-Trans-Cld-Party-E164-Num Length
    radius.CW_Trans_Cld_Party_E164_Type  CW-Trans-Cld-Party-E164-Type
        Unsigned 32-bit integer
    radius.CW_Trans_Cld_Party_E164_Type.len  Length
        Unsigned 8-bit integer
        CW-Trans-Cld-Party-E164-Type Length
    radius.CW_Version_Id  CW-Version-Id
        Unsigned 32-bit integer
    radius.CW_Version_Id.len  Length
        Unsigned 8-bit integer
        CW-Version-Id Length
    radius.CableLabs_AM_Opaque_Data  CableLabs-AM-Opaque-Data
        Unsigned 32-bit integer
    radius.CableLabs_AM_Opaque_Data.len  Length
        Unsigned 8-bit integer
        CableLabs-AM-Opaque-Data Length
    radius.CableLabs_Account_Code  CableLabs-Account-Code
        String
    radius.CableLabs_Account_Code.len  Length
        Unsigned 8-bit integer
        CableLabs-Account-Code Length
    radius.CableLabs_Alerting_Signal  CableLabs-Alerting-Signal
        Unsigned 32-bit integer
    radius.CableLabs_Alerting_Signal.len  Length
        Unsigned 8-bit integer
        CableLabs-Alerting-Signal Length
    radius.CableLabs_Application_Manager_ID  CableLabs-Application-Manager-ID
        Unsigned 32-bit integer
    radius.CableLabs_Application_Manager_ID.len  Length
        Unsigned 8-bit integer
        CableLabs-Application-Manager-ID Length
    radius.CableLabs_Authorization_Code  CableLabs-Authorization-Code
        String
    radius.CableLabs_Authorization_Code.len  Length
        Unsigned 8-bit integer
        CableLabs-Authorization-Code Length
    radius.CableLabs_Billing_Type  CableLabs-Billing-Type
        Unsigned 32-bit integer
    radius.CableLabs_Billing_Type.len  Length
        Unsigned 8-bit integer
        CableLabs-Billing-Type Length
    radius.CableLabs_CCC_ID  CableLabs-CCC-ID
        Byte array
    radius.CableLabs_CCC_ID.len  Length
        Unsigned 8-bit integer
        CableLabs-CCC-ID Length
    radius.CableLabs_Call_Termination_Cause  CableLabs-Call-Termination-Cause
        Byte array
    radius.CableLabs_Call_Termination_Cause.len  Length
        Unsigned 8-bit integer
        CableLabs-Call-Termination-Cause Length
    radius.CableLabs_Called_Party_NP_Source  CableLabs-Called-Party-NP-Source
        Unsigned 32-bit integer
    radius.CableLabs_Called_Party_NP_Source.len  Length
        Unsigned 8-bit integer
        CableLabs-Called-Party-NP-Source Length
    radius.CableLabs_Called_Party_Number  CableLabs-Called-Party-Number
        String
    radius.CableLabs_Called_Party_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Called-Party-Number Length
    radius.CableLabs_Calling_Party_NP_Source  CableLabs-Calling-Party-NP-Source
        Unsigned 32-bit integer
    radius.CableLabs_Calling_Party_NP_Source.len  Length
        Unsigned 8-bit integer
        CableLabs-Calling-Party-NP-Source Length
    radius.CableLabs_Calling_Party_Number  CableLabs-Calling-Party-Number
        String
    radius.CableLabs_Calling_Party_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Calling-Party-Number Length
    radius.CableLabs_Carrier_Identification_Code  CableLabs-Carrier-Identification-Code
        String
    radius.CableLabs_Carrier_Identification_Code.len  Length
        Unsigned 8-bit integer
        CableLabs-Carrier-Identification-Code Length
    radius.CableLabs_Channel_State  CableLabs-Channel-State
        Unsigned 32-bit integer
    radius.CableLabs_Channel_State.len  Length
        Unsigned 8-bit integer
        CableLabs-Channel-State Length
    radius.CableLabs_Charge_Number  CableLabs-Charge-Number
        String
    radius.CableLabs_Charge_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Charge-Number Length
    radius.CableLabs_Communicating_Party  CableLabs-Communicating-Party
        Byte array
    radius.CableLabs_Communicating_Party.len  Length
        Unsigned 8-bit integer
        CableLabs-Communicating-Party Length
    radius.CableLabs_Database_ID  CableLabs-Database-ID
        String
    radius.CableLabs_Database_ID.len  Length
        Unsigned 8-bit integer
        CableLabs-Database-ID Length
    radius.CableLabs_Dial_Around_Code  CableLabs-Dial-Around-Code
        String
    radius.CableLabs_Dial_Around_Code.len  Length
        Unsigned 8-bit integer
        CableLabs-Dial-Around-Code Length
    radius.CableLabs_Dialed_Digits  CableLabs-Dialed-Digits
        String
    radius.CableLabs_Dialed_Digits.len  Length
        Unsigned 8-bit integer
        CableLabs-Dialed-Digits Length
    radius.CableLabs_Direction_indicator  CableLabs-Direction-indicator
        Unsigned 32-bit integer
    radius.CableLabs_Direction_indicator.len  Length
        Unsigned 8-bit integer
        CableLabs-Direction-indicator Length
    radius.CableLabs_El_Surveillance_DF_Security  CableLabs-El-Surveillance-DF-Security
        Byte array
    radius.CableLabs_El_Surveillance_DF_Security.len  Length
        Unsigned 8-bit integer
        CableLabs-El-Surveillance-DF-Security Length
    radius.CableLabs_Electronic_Surveillance_Ind  CableLabs-Electronic-Surveillance-Ind
        Byte array
    radius.CableLabs_Electronic_Surveillance_Ind.len  Length
        Unsigned 8-bit integer
        CableLabs-Electronic-Surveillance-Ind Length
    radius.CableLabs_Element_Requesting_QoS  CableLabs-Element-Requesting-QoS
        Unsigned 32-bit integer
    radius.CableLabs_Element_Requesting_QoS.len  Length
        Unsigned 8-bit integer
        CableLabs-Element-Requesting-QoS Length
    radius.CableLabs_Error_Description  CableLabs-Error-Description
        String
    radius.CableLabs_Error_Description.len  Length
        Unsigned 8-bit integer
        CableLabs-Error-Description Length
    radius.CableLabs_Event_Message  CableLabs-Event-Message
        Byte array
    radius.CableLabs_Event_Message.len  Length
        Unsigned 8-bit integer
        CableLabs-Event-Message Length
    radius.CableLabs_Financial_Entity_ID  CableLabs-Financial-Entity-ID
        String
    radius.CableLabs_Financial_Entity_ID.len  Length
        Unsigned 8-bit integer
        CableLabs-Financial-Entity-ID Length
    radius.CableLabs_First_Call_Calling_Party_Num  CableLabs-First-Call-Calling-Party-Num
        String
    radius.CableLabs_First_Call_Calling_Party_Num.len  Length
        Unsigned 8-bit integer
        CableLabs-First-Call-Calling-Party-Num Length
    radius.CableLabs_Flow_Direction  CableLabs-Flow-Direction
        Unsigned 32-bit integer
    radius.CableLabs_Flow_Direction.len  Length
        Unsigned 8-bit integer
        CableLabs-Flow-Direction Length
    radius.CableLabs_Forwarded_Number  CableLabs-Forwarded-Number
        String
    radius.CableLabs_Forwarded_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Forwarded-Number Length
    radius.CableLabs_Gate_Time_Info  CableLabs-Gate-Time-Info
        Unsigned 32-bit integer
    radius.CableLabs_Gate_Time_Info.len  Length
        Unsigned 8-bit integer
        CableLabs-Gate-Time-Info Length
    radius.CableLabs_Gate_Usage_Info  CableLabs-Gate-Usage-Info
        Unsigned 32-bit integer
    radius.CableLabs_Gate_Usage_Info.len  Length
        Unsigned 8-bit integer
        CableLabs-Gate-Usage-Info Length
    radius.CableLabs_IPv6_Subscriber_ID  CableLabs-IPv6-Subscriber-ID
        IPv6 address
    radius.CableLabs_IPv6_Subscriber_ID.len  Length
        Unsigned 8-bit integer
        CableLabs-IPv6-Subscriber-ID Length
    radius.CableLabs_Intl_Code  CableLabs-Intl-Code
        String
    radius.CableLabs_Intl_Code.len  Length
        Unsigned 8-bit integer
        CableLabs-Intl-Code Length
    radius.CableLabs_Joined_Party  CableLabs-Joined-Party
        Byte array
    radius.CableLabs_Joined_Party.len  Length
        Unsigned 8-bit integer
        CableLabs-Joined-Party Length
    radius.CableLabs_Jurisdiction_Info_Parameter  CableLabs-Jurisdiction-Info-Parameter
        String
    radius.CableLabs_Jurisdiction_Info_Parameter.len  Length
        Unsigned 8-bit integer
        CableLabs-Jurisdiction-Info-Parameter Length
    radius.CableLabs_Local_XR_Block  CableLabs-Local-XR-Block
        String
    radius.CableLabs_Local_XR_Block.len  Length
        Unsigned 8-bit integer
        CableLabs-Local-XR-Block Length
    radius.CableLabs_Location_Routing_Number  CableLabs-Location-Routing-Number
        String
    radius.CableLabs_Location_Routing_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Location-Routing-Number Length
    radius.CableLabs_MTA_Endpoint_Name  CableLabs-MTA-Endpoint-Name
        String
    radius.CableLabs_MTA_Endpoint_Name.len  Length
        Unsigned 8-bit integer
        CableLabs-MTA-Endpoint-Name Length
    radius.CableLabs_MTA_UDP_Portnum  CableLabs-MTA-UDP-Portnum
        Unsigned 32-bit integer
    radius.CableLabs_MTA_UDP_Portnum.len  Length
        Unsigned 8-bit integer
        CableLabs-MTA-UDP-Portnum Length
    radius.CableLabs_Misc_Signaling_Information  CableLabs-Misc-Signaling-Information
        String
    radius.CableLabs_Misc_Signaling_Information.len  Length
        Unsigned 8-bit integer
        CableLabs-Misc-Signaling-Information Length
    radius.CableLabs_Policy_Decision_Status  CableLabs-Policy-Decision-Status
        Unsigned 32-bit integer
    radius.CableLabs_Policy_Decision_Status.len  Length
        Unsigned 8-bit integer
        CableLabs-Policy-Decision-Status Length
    radius.CableLabs_Policy_Deleted_Reason  CableLabs-Policy-Deleted-Reason
        Unsigned 32-bit integer
    radius.CableLabs_Policy_Deleted_Reason.len  Length
        Unsigned 8-bit integer
        CableLabs-Policy-Deleted-Reason Length
    radius.CableLabs_Policy_Denied_Reason  CableLabs-Policy-Denied-Reason
        Unsigned 32-bit integer
    radius.CableLabs_Policy_Denied_Reason.len  Length
        Unsigned 8-bit integer
        CableLabs-Policy-Denied-Reason Length
    radius.CableLabs_Policy_Update_Reason  CableLabs-Policy-Update-Reason
        Unsigned 32-bit integer
    radius.CableLabs_Policy_Update_Reason.len  Length
        Unsigned 8-bit integer
        CableLabs-Policy-Update-Reason Length
    radius.CableLabs_Ported_In_Called_Number  CableLabs-Ported-In-Called-Number
        Unsigned 32-bit integer
    radius.CableLabs_Ported_In_Called_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Ported-In-Called-Number Length
    radius.CableLabs_Ported_In_Calling_Number  CableLabs-Ported-In-Calling-Number
        Unsigned 32-bit integer
    radius.CableLabs_Ported_In_Calling_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Ported-In-Calling-Number Length
    radius.CableLabs_QoS_Descriptor  CableLabs-QoS-Descriptor
        Byte array
    radius.CableLabs_QoS_Descriptor.len  Length
        Unsigned 8-bit integer
        CableLabs-QoS-Descriptor Length
    radius.CableLabs_QoS_Release_Reason  CableLabs-QoS-Release-Reason
        Unsigned 32-bit integer
    radius.CableLabs_QoS_Release_Reason.len  Length
        Unsigned 8-bit integer
        CableLabs-QoS-Release-Reason Length
    radius.CableLabs_Query_Type  CableLabs-Query-Type
        Unsigned 32-bit integer
    radius.CableLabs_Query_Type.len  Length
        Unsigned 8-bit integer
        CableLabs-Query-Type Length
    radius.CableLabs_RTCP_Data  CableLabs-RTCP-Data
        String
    radius.CableLabs_RTCP_Data.len  Length
        Unsigned 8-bit integer
        CableLabs-RTCP-Data Length
    radius.CableLabs_Redirected_From_Info  CableLabs-Redirected-From-Info
        Byte array
    radius.CableLabs_Redirected_From_Info.len  Length
        Unsigned 8-bit integer
        CableLabs-Redirected-From-Info Length
    radius.CableLabs_Redirected_From_Party_Number  CableLabs-Redirected-From-Party-Number
        String
    radius.CableLabs_Redirected_From_Party_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Redirected-From-Party-Number Length
    radius.CableLabs_Redirected_To_Party_Number  CableLabs-Redirected-To-Party-Number
        String
    radius.CableLabs_Redirected_To_Party_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Redirected-To-Party-Number Length
    radius.CableLabs_Related_Call_Billing_Crl_ID  CableLabs-Related-Call-Billing-Crl-ID
        Byte array
    radius.CableLabs_Related_Call_Billing_Crl_ID.len  Length
        Unsigned 8-bit integer
        CableLabs-Related-Call-Billing-Crl-ID Length
    radius.CableLabs_Remote_XR_Block  CableLabs-Remote-XR-Block
        String
    radius.CableLabs_Remote_XR_Block.len  Length
        Unsigned 8-bit integer
        CableLabs-Remote-XR-Block Length
    radius.CableLabs_Removed_Party  CableLabs-Removed-Party
        Byte array
    radius.CableLabs_Removed_Party.len  Length
        Unsigned 8-bit integer
        CableLabs-Removed-Party Length
    radius.CableLabs_Reserved  CableLabs-Reserved
        Byte array
    radius.CableLabs_Reserved.len  Length
        Unsigned 8-bit integer
        CableLabs-Reserved Length
    radius.CableLabs_Returned_Number  CableLabs-Returned-Number
        String
    radius.CableLabs_Returned_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Returned-Number Length
    radius.CableLabs_Routing_Number  CableLabs-Routing-Number
        String
    radius.CableLabs_Routing_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Routing-Number Length
    radius.CableLabs_SDP_Downstream  CableLabs-SDP-Downstream
        String
    radius.CableLabs_SDP_Downstream.len  Length
        Unsigned 8-bit integer
        CableLabs-SDP-Downstream Length
    radius.CableLabs_SDP_Upstream  CableLabs-SDP-Upstream
        String
    radius.CableLabs_SDP_Upstream.len  Length
        Unsigned 8-bit integer
        CableLabs-SDP-Upstream Length
    radius.CableLabs_SF_ID  CableLabs-SF-ID
        Unsigned 32-bit integer
    radius.CableLabs_SF_ID.len  Length
        Unsigned 8-bit integer
        CableLabs-SF-ID Length
    radius.CableLabs_Second_Call_Calling_Party_Num  CableLabs-Second-Call-Calling-Party-Num
        String
    radius.CableLabs_Second_Call_Calling_Party_Num.len  Length
        Unsigned 8-bit integer
        CableLabs-Second-Call-Calling-Party-Num Length
    radius.CableLabs_Service_Name  CableLabs-Service-Name
        String
    radius.CableLabs_Service_Name.len  Length
        Unsigned 8-bit integer
        CableLabs-Service-Name Length
    radius.CableLabs_Signal_Type  CableLabs-Signal-Type
        Unsigned 32-bit integer
    radius.CableLabs_Signal_Type.len  Length
        Unsigned 8-bit integer
        CableLabs-Signal-Type Length
    radius.CableLabs_Signaled_From_Number  CableLabs-Signaled-From-Number
        String
    radius.CableLabs_Signaled_From_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Signaled-From-Number Length
    radius.CableLabs_Signaled_To_Number  CableLabs-Signaled-To-Number
        String
    radius.CableLabs_Signaled_To_Number.len  Length
        Unsigned 8-bit integer
        CableLabs-Signaled-To-Number Length
    radius.CableLabs_Subject_Audible_Signal  CableLabs-Subject-Audible-Signal
        Unsigned 32-bit integer
    radius.CableLabs_Subject_Audible_Signal.len  Length
        Unsigned 8-bit integer
        CableLabs-Subject-Audible-Signal Length
    radius.CableLabs_Subscriber_ID  CableLabs-Subscriber-ID
        Unsigned 32-bit integer
    radius.CableLabs_Subscriber_ID.len  Length
        Unsigned 8-bit integer
        CableLabs-Subscriber-ID Length
    radius.CableLabs_Switch_Hook_Flash  CableLabs-Switch-Hook-Flash
        String
    radius.CableLabs_Switch_Hook_Flash.len  Length
        Unsigned 8-bit integer
        CableLabs-Switch-Hook-Flash Length
    radius.CableLabs_Terminal_Display_Info  CableLabs-Terminal-Display-Info
        Byte array
    radius.CableLabs_Terminal_Display_Info.len  Length
        Unsigned 8-bit integer
        CableLabs-Terminal-Display-Info Length
    radius.CableLabs_Time_Adjustment  CableLabs-Time-Adjustment
        Byte array
    radius.CableLabs_Time_Adjustment.len  Length
        Unsigned 8-bit integer
        CableLabs-Time-Adjustment Length
    radius.CableLabs_Time_Usage_Limit  CableLabs-Time-Usage-Limit
        Unsigned 32-bit integer
    radius.CableLabs_Time_Usage_Limit.len  Length
        Unsigned 8-bit integer
        CableLabs-Time-Usage-Limit Length
    radius.CableLabs_Translation_Input  CableLabs-Translation-Input
        String
    radius.CableLabs_Translation_Input.len  Length
        Unsigned 8-bit integer
        CableLabs-Translation-Input Length
    radius.CableLabs_Trunk_Group_ID  CableLabs-Trunk-Group-ID
        Byte array
    radius.CableLabs_Trunk_Group_ID.len  Length
        Unsigned 8-bit integer
        CableLabs-Trunk-Group-ID Length
    radius.CableLabs_User_ID  CableLabs-User-ID
        String
    radius.CableLabs_User_ID.len  Length
        Unsigned 8-bit integer
        CableLabs-User-ID Length
    radius.CableLabs_User_Input  CableLabs-User-Input
        String
    radius.CableLabs_User_Input.len  Length
        Unsigned 8-bit integer
        CableLabs-User-Input Length
    radius.CableLabs_Volume_Usage_Limit  CableLabs-Volume-Usage-Limit
        Unsigned 32-bit integer
    radius.CableLabs_Volume_Usage_Limit.len  Length
        Unsigned 8-bit integer
        CableLabs-Volume-Usage-Limit Length
    radius.Cabletron_Protocol_Callable  Cabletron-Protocol-Callable
        Unsigned 32-bit integer
    radius.Cabletron_Protocol_Callable.len  Length
        Unsigned 8-bit integer
        Cabletron-Protocol-Callable Length
    radius.Cabletron_Protocol_Enable  Cabletron-Protocol-Enable
        Unsigned 32-bit integer
    radius.Cabletron_Protocol_Enable.len  Length
        Unsigned 8-bit integer
        Cabletron-Protocol-Enable Length
    radius.Callback_Id  Callback-Id
        String
    radius.Callback_Id.len  Length
        Unsigned 8-bit integer
        Callback-Id Length
    radius.Callback_Number  Callback-Number
        String
    radius.Callback_Number.len  Length
        Unsigned 8-bit integer
        Callback-Number Length
    radius.Called_Station_Id  Called-Station-Id
        String
    radius.Called_Station_Id.len  Length
        Unsigned 8-bit integer
        Called-Station-Id Length
    radius.Calling_Station_Id  Calling-Station-Id
        String
    radius.Calling_Station_Id.len  Length
        Unsigned 8-bit integer
        Calling-Station-Id Length
    radius.Char_Noecho  Char-Noecho
        Unsigned 32-bit integer
    radius.Char_Noecho.len  Length
        Unsigned 8-bit integer
        Char-Noecho Length
    radius.Chargeable_User_Identity  Chargeable-User-Identity
        String
    radius.Chargeable_User_Identity.len  Length
        Unsigned 8-bit integer
        Chargeable-User-Identity Length
    radius.ChilliSpot_Bandwidth_Max_Down  ChilliSpot-Bandwidth-Max-Down
        Unsigned 32-bit integer
    radius.ChilliSpot_Bandwidth_Max_Down.len  Length
        Unsigned 8-bit integer
        ChilliSpot-Bandwidth-Max-Down Length
    radius.ChilliSpot_Bandwidth_Max_Up  ChilliSpot-Bandwidth-Max-Up
        Unsigned 32-bit integer
    radius.ChilliSpot_Bandwidth_Max_Up.len  Length
        Unsigned 8-bit integer
        ChilliSpot-Bandwidth-Max-Up Length
    radius.ChilliSpot_Config  ChilliSpot-Config
        String
    radius.ChilliSpot_Config.len  Length
        Unsigned 8-bit integer
        ChilliSpot-Config Length
    radius.ChilliSpot_Interval  ChilliSpot-Interval
        Unsigned 32-bit integer
    radius.ChilliSpot_Interval.len  Length
        Unsigned 8-bit integer
        ChilliSpot-Interval Length
    radius.ChilliSpot_Lang  ChilliSpot-Lang
        String
    radius.ChilliSpot_Lang.len  Length
        Unsigned 8-bit integer
        ChilliSpot-Lang Length
    radius.ChilliSpot_MAC_Allowed  ChilliSpot-MAC-Allowed
        String
    radius.ChilliSpot_MAC_Allowed.len  Length
        Unsigned 8-bit integer
        ChilliSpot-MAC-Allowed Length
    radius.ChilliSpot_Max_Input_Octets  ChilliSpot-Max-Input-Octets
        Unsigned 32-bit integer
    radius.ChilliSpot_Max_Input_Octets.len  Length
        Unsigned 8-bit integer
        ChilliSpot-Max-Input-Octets Length
    radius.ChilliSpot_Max_Output_Octets  ChilliSpot-Max-Output-Octets
        Unsigned 32-bit integer
    radius.ChilliSpot_Max_Output_Octets.len  Length
        Unsigned 8-bit integer
        ChilliSpot-Max-Output-Octets Length
    radius.ChilliSpot_Max_Total_Octets  ChilliSpot-Max-Total-Octets
        Unsigned 32-bit integer
    radius.ChilliSpot_Max_Total_Octets.len  Length
        Unsigned 8-bit integer
        ChilliSpot-Max-Total-Octets Length
    radius.ChilliSpot_OriginalURL  ChilliSpot-OriginalURL
        String
    radius.ChilliSpot_OriginalURL.len  Length
        Unsigned 8-bit integer
        ChilliSpot-OriginalURL Length
    radius.ChilliSpot_UAM_Allowed  ChilliSpot-UAM-Allowed
        String
    radius.ChilliSpot_UAM_Allowed.len  Length
        Unsigned 8-bit integer
        ChilliSpot-UAM-Allowed Length
    radius.ChilliSpot_Version  ChilliSpot-Version
        String
    radius.ChilliSpot_Version.len  Length
        Unsigned 8-bit integer
        ChilliSpot-Version Length
    radius.Cisco_AVPair  Cisco-AVPair
        String
    radius.Cisco_AVPair.len  Length
        Unsigned 8-bit integer
        Cisco-AVPair Length
    radius.Cisco_Abort_Cause  Cisco-Abort-Cause
        String
    radius.Cisco_Abort_Cause.len  Length
        Unsigned 8-bit integer
        Cisco-Abort-Cause Length
    radius.Cisco_Account_Info  Cisco-Account-Info
        String
    radius.Cisco_Account_Info.len  Length
        Unsigned 8-bit integer
        Cisco-Account-Info Length
    radius.Cisco_Assign_IP_Pool  Cisco-Assign-IP-Pool
        Unsigned 32-bit integer
    radius.Cisco_Assign_IP_Pool.len  Length
        Unsigned 8-bit integer
        Cisco-Assign-IP-Pool Length
    radius.Cisco_Call_Filter  Cisco-Call-Filter
        Unsigned 32-bit integer
    radius.Cisco_Call_Filter.len  Length
        Unsigned 8-bit integer
        Cisco-Call-Filter Length
    radius.Cisco_Call_Type  Cisco-Call-Type
        String
    radius.Cisco_Call_Type.len  Length
        Unsigned 8-bit integer
        Cisco-Call-Type Length
    radius.Cisco_Command_Code  Cisco-Command-Code
        String
    radius.Cisco_Command_Code.len  Length
        Unsigned 8-bit integer
        Cisco-Command-Code Length
    radius.Cisco_Control_Info  Cisco-Control-Info
        String
    radius.Cisco_Control_Info.len  Length
        Unsigned 8-bit integer
        Cisco-Control-Info Length
    radius.Cisco_Data_Filter  Cisco-Data-Filter
        Unsigned 32-bit integer
    radius.Cisco_Data_Filter.len  Length
        Unsigned 8-bit integer
        Cisco-Data-Filter Length
    radius.Cisco_Data_Rate  Cisco-Data-Rate
        Unsigned 32-bit integer
    radius.Cisco_Data_Rate.len  Length
        Unsigned 8-bit integer
        Cisco-Data-Rate Length
    radius.Cisco_Disconnect_Cause  Cisco-Disconnect-Cause
        Unsigned 32-bit integer
    radius.Cisco_Disconnect_Cause.len  Length
        Unsigned 8-bit integer
        Cisco-Disconnect-Cause Length
    radius.Cisco_Email_Server_Ack_Flag  Cisco-Email-Server-Ack-Flag
        String
    radius.Cisco_Email_Server_Ack_Flag.len  Length
        Unsigned 8-bit integer
        Cisco-Email-Server-Ack-Flag Length
    radius.Cisco_Email_Server_Address  Cisco-Email-Server-Address
        String
    radius.Cisco_Email_Server_Address.len  Length
        Unsigned 8-bit integer
        Cisco-Email-Server-Address Length
    radius.Cisco_Fax_Account_Id_Origin  Cisco-Fax-Account-Id-Origin
        String
    radius.Cisco_Fax_Account_Id_Origin.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Account-Id-Origin Length
    radius.Cisco_Fax_Auth_Status  Cisco-Fax-Auth-Status
        String
    radius.Cisco_Fax_Auth_Status.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Auth-Status Length
    radius.Cisco_Fax_Connect_Speed  Cisco-Fax-Connect-Speed
        String
    radius.Cisco_Fax_Connect_Speed.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Connect-Speed Length
    radius.Cisco_Fax_Coverpage_Flag  Cisco-Fax-Coverpage-Flag
        String
    radius.Cisco_Fax_Coverpage_Flag.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Coverpage-Flag Length
    radius.Cisco_Fax_Dsn_Address  Cisco-Fax-Dsn-Address
        String
    radius.Cisco_Fax_Dsn_Address.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Dsn-Address Length
    radius.Cisco_Fax_Dsn_Flag  Cisco-Fax-Dsn-Flag
        String
    radius.Cisco_Fax_Dsn_Flag.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Dsn-Flag Length
    radius.Cisco_Fax_Mdn_Address  Cisco-Fax-Mdn-Address
        String
    radius.Cisco_Fax_Mdn_Address.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Mdn-Address Length
    radius.Cisco_Fax_Mdn_Flag  Cisco-Fax-Mdn-Flag
        String
    radius.Cisco_Fax_Mdn_Flag.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Mdn-Flag Length
    radius.Cisco_Fax_Modem_Time  Cisco-Fax-Modem-Time
        String
    radius.Cisco_Fax_Modem_Time.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Modem-Time Length
    radius.Cisco_Fax_Msg_Id  Cisco-Fax-Msg-Id
        String
    radius.Cisco_Fax_Msg_Id.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Msg-Id Length
    radius.Cisco_Fax_Pages  Cisco-Fax-Pages
        String
    radius.Cisco_Fax_Pages.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Pages Length
    radius.Cisco_Fax_Process_Abort_Flag  Cisco-Fax-Process-Abort-Flag
        String
    radius.Cisco_Fax_Process_Abort_Flag.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Process-Abort-Flag Length
    radius.Cisco_Fax_Recipient_Count  Cisco-Fax-Recipient-Count
        String
    radius.Cisco_Fax_Recipient_Count.len  Length
        Unsigned 8-bit integer
        Cisco-Fax-Recipient-Count Length
    radius.Cisco_Gateway_Id  Cisco-Gateway-Id
        String
    radius.Cisco_Gateway_Id.len  Length
        Unsigned 8-bit integer
        Cisco-Gateway-Id Length
    radius.Cisco_IP_Direct  Cisco-IP-Direct
        Unsigned 32-bit integer
    radius.Cisco_IP_Direct.len  Length
        Unsigned 8-bit integer
        Cisco-IP-Direct Length
    radius.Cisco_IP_Pool_Definition  Cisco-IP-Pool-Definition
        String
    radius.Cisco_IP_Pool_Definition.len  Length
        Unsigned 8-bit integer
        Cisco-IP-Pool-Definition Length
    radius.Cisco_Idle_Limit  Cisco-Idle-Limit
        Unsigned 32-bit integer
    radius.Cisco_Idle_Limit.len  Length
        Unsigned 8-bit integer
        Cisco-Idle-Limit Length
    radius.Cisco_Link_Compression  Cisco-Link-Compression
        Unsigned 32-bit integer
    radius.Cisco_Link_Compression.len  Length
        Unsigned 8-bit integer
        Cisco-Link-Compression Length
    radius.Cisco_Maximum_Channels  Cisco-Maximum-Channels
        Unsigned 32-bit integer
    radius.Cisco_Maximum_Channels.len  Length
        Unsigned 8-bit integer
        Cisco-Maximum-Channels Length
    radius.Cisco_Maximum_Time  Cisco-Maximum-Time
        Unsigned 32-bit integer
    radius.Cisco_Maximum_Time.len  Length
        Unsigned 8-bit integer
        Cisco-Maximum-Time Length
    radius.Cisco_Multilink_ID  Cisco-Multilink-ID
        Unsigned 32-bit integer
    radius.Cisco_Multilink_ID.len  Length
        Unsigned 8-bit integer
        Cisco-Multilink-ID Length
    radius.Cisco_NAS_Port  Cisco-NAS-Port
        String
    radius.Cisco_NAS_Port.len  Length
        Unsigned 8-bit integer
        Cisco-NAS-Port Length
    radius.Cisco_Num_In_Multilink  Cisco-Num-In-Multilink
        Unsigned 32-bit integer
    radius.Cisco_Num_In_Multilink.len  Length
        Unsigned 8-bit integer
        Cisco-Num-In-Multilink Length
    radius.Cisco_PPP_Async_Map  Cisco-PPP-Async-Map
        Unsigned 32-bit integer
    radius.Cisco_PPP_Async_Map.len  Length
        Unsigned 8-bit integer
        Cisco-PPP-Async-Map Length
    radius.Cisco_PPP_VJ_Slot_Comp  Cisco-PPP-VJ-Slot-Comp
        Unsigned 32-bit integer
    radius.Cisco_PPP_VJ_Slot_Comp.len  Length
        Unsigned 8-bit integer
        Cisco-PPP-VJ-Slot-Comp Length
    radius.Cisco_PW_Lifetime  Cisco-PW-Lifetime
        Unsigned 32-bit integer
    radius.Cisco_PW_Lifetime.len  Length
        Unsigned 8-bit integer
        Cisco-PW-Lifetime Length
    radius.Cisco_Policy_Down  Cisco-Policy-Down
        String
    radius.Cisco_Policy_Down.len  Length
        Unsigned 8-bit integer
        Cisco-Policy-Down Length
    radius.Cisco_Policy_Up  Cisco-Policy-Up
        String
    radius.Cisco_Policy_Up.len  Length
        Unsigned 8-bit integer
        Cisco-Policy-Up Length
    radius.Cisco_Port_Used  Cisco-Port-Used
        String
    radius.Cisco_Port_Used.len  Length
        Unsigned 8-bit integer
        Cisco-Port-Used Length
    radius.Cisco_PreSession_Time  Cisco-PreSession-Time
        Unsigned 32-bit integer
    radius.Cisco_PreSession_Time.len  Length
        Unsigned 8-bit integer
        Cisco-PreSession-Time Length
    radius.Cisco_Pre_Input_Octets  Cisco-Pre-Input-Octets
        Unsigned 32-bit integer
    radius.Cisco_Pre_Input_Octets.len  Length
        Unsigned 8-bit integer
        Cisco-Pre-Input-Octets Length
    radius.Cisco_Pre_Input_Packets  Cisco-Pre-Input-Packets
        Unsigned 32-bit integer
    radius.Cisco_Pre_Input_Packets.len  Length
        Unsigned 8-bit integer
        Cisco-Pre-Input-Packets Length
    radius.Cisco_Pre_Output_Octets  Cisco-Pre-Output-Octets
        Unsigned 32-bit integer
    radius.Cisco_Pre_Output_Octets.len  Length
        Unsigned 8-bit integer
        Cisco-Pre-Output-Octets Length
    radius.Cisco_Pre_Output_Packets  Cisco-Pre-Output-Packets
        Unsigned 32-bit integer
    radius.Cisco_Pre_Output_Packets.len  Length
        Unsigned 8-bit integer
        Cisco-Pre-Output-Packets Length
    radius.Cisco_Route_IP  Cisco-Route-IP
        Unsigned 32-bit integer
    radius.Cisco_Route_IP.len  Length
        Unsigned 8-bit integer
        Cisco-Route-IP Length
    radius.Cisco_Service_Info  Cisco-Service-Info
        String
    radius.Cisco_Service_Info.len  Length
        Unsigned 8-bit integer
        Cisco-Service-Info Length
    radius.Cisco_Target_Util  Cisco-Target-Util
        Unsigned 32-bit integer
    radius.Cisco_Target_Util.len  Length
        Unsigned 8-bit integer
        Cisco-Target-Util Length
    radius.Cisco_Xmit_Rate  Cisco-Xmit-Rate
        Unsigned 32-bit integer
    radius.Cisco_Xmit_Rate.len  Length
        Unsigned 8-bit integer
        Cisco-Xmit-Rate Length
    radius.Class  Class
        Byte array
    radius.Class.len  Length
        Unsigned 8-bit integer
        Class Length
    radius.Clavister_User_Group  Clavister-User-Group
        String
    radius.Clavister_User_Group.len  Length
        Unsigned 8-bit integer
        Clavister-User-Group Length
    radius.Client_DNS_Pri  Client-DNS-Pri
        IPv4 address
    radius.Client_DNS_Pri.len  Length
        Unsigned 8-bit integer
        Client-DNS-Pri Length
    radius.Client_DNS_Sec  Client-DNS-Sec
        IPv4 address
    radius.Client_DNS_Sec.len  Length
        Unsigned 8-bit integer
        Client-DNS-Sec Length
    radius.Client_NBNS_Pri  Client-NBNS-Pri
        IPv4 address
    radius.Client_NBNS_Pri.len  Length
        Unsigned 8-bit integer
        Client-NBNS-Pri Length
    radius.Client_NBNS_Sec  Client-NBNS-Sec
        IPv4 address
    radius.Client_NBNS_Sec.len  Length
        Unsigned 8-bit integer
        Client-NBNS-Sec Length
    radius.Colubris_AVPair  Colubris-AVPair
        String
    radius.Colubris_AVPair.len  Length
        Unsigned 8-bit integer
        Colubris-AVPair Length
    radius.Colubris_Intercept  Colubris-Intercept
        Unsigned 32-bit integer
    radius.Colubris_Intercept.len  Length
        Unsigned 8-bit integer
        Colubris-Intercept Length
    radius.Configuration_Token  Configuration-Token
        String
    radius.Configuration_Token.len  Length
        Unsigned 8-bit integer
        Configuration-Token Length
    radius.Connect_Info  Connect-Info
        String
    radius.Connect_Info.len  Length
        Unsigned 8-bit integer
        Connect-Info Length
    radius.Context_Name  Context-Name
        String
    radius.Context_Name.len  Length
        Unsigned 8-bit integer
        Context-Name Length
    radius.Cosine-Vci  Cosine-VCI
        Unsigned 16-bit integer
    radius.Cosine-Vpi  Cosine-VPI
        Unsigned 16-bit integer
    radius.Cosine_Address_Pool_Name  Cosine-Address-Pool-Name
        String
    radius.Cosine_Address_Pool_Name.len  Length
        Unsigned 8-bit integer
        Cosine-Address-Pool-Name Length
    radius.Cosine_CLI_User_Permission_ID  Cosine-CLI-User-Permission-ID
        String
    radius.Cosine_CLI_User_Permission_ID.len  Length
        Unsigned 8-bit integer
        Cosine-CLI-User-Permission-ID Length
    radius.Cosine_Connection_Profile_Name  Cosine-Connection-Profile-Name
        String
    radius.Cosine_Connection_Profile_Name.len  Length
        Unsigned 8-bit integer
        Cosine-Connection-Profile-Name Length
    radius.Cosine_DLCI  Cosine-DLCI
        Unsigned 32-bit integer
    radius.Cosine_DLCI.len  Length
        Unsigned 8-bit integer
        Cosine-DLCI Length
    radius.Cosine_DS_Byte  Cosine-DS-Byte
        Unsigned 32-bit integer
    radius.Cosine_DS_Byte.len  Length
        Unsigned 8-bit integer
        Cosine-DS-Byte Length
    radius.Cosine_Enterprise_ID  Cosine-Enterprise-ID
        String
    radius.Cosine_Enterprise_ID.len  Length
        Unsigned 8-bit integer
        Cosine-Enterprise-ID Length
    radius.Cosine_LNS_IP_Address  Cosine-LNS-IP-Address
        IPv4 address
    radius.Cosine_LNS_IP_Address.len  Length
        Unsigned 8-bit integer
        Cosine-LNS-IP-Address Length
    radius.Cosine_VPI_VCI  Cosine-VPI-VCI
        Byte array
    radius.Cosine_VPI_VCI.len  Length
        Unsigned 8-bit integer
        Cosine-VPI-VCI Length
    radius.DHCP_Max_Leases  DHCP-Max-Leases
        Unsigned 32-bit integer
    radius.DHCP_Max_Leases.len  Length
        Unsigned 8-bit integer
        DHCP-Max-Leases Length
    radius.Delegated_IPv6_Prefix  Delegated-IPv6-Prefix
        Byte array
    radius.Delegated_IPv6_Prefix.len  Length
        Unsigned 8-bit integer
        Delegated-IPv6-Prefix Length
    radius.Digest_Attributes  Digest-Attributes
        Byte array
    radius.Digest_Attributes.len  Length
        Unsigned 8-bit integer
        Digest-Attributes Length
    radius.Digest_Response  Digest-Response
        String
    radius.Digest_Response.len  Length
        Unsigned 8-bit integer
        Digest-Response Length
    radius.EAP_Key_Name  EAP-Key-Name
        String
    radius.EAP_Key_Name.len  Length
        Unsigned 8-bit integer
        EAP-Key-Name Length
    radius.EAP_Message  EAP-Message
        Byte array
    radius.EAP_Message.len  Length
        Unsigned 8-bit integer
        EAP-Message Length
    radius.ERX_Acc_Aggr_Cir_Id_Asc  ERX-Acc-Aggr-Cir-Id-Asc
        String
    radius.ERX_Acc_Aggr_Cir_Id_Asc.len  Length
        Unsigned 8-bit integer
        ERX-Acc-Aggr-Cir-Id-Asc Length
    radius.ERX_Acc_Aggr_Cir_Id_Bin  ERX-Acc-Aggr-Cir-Id-Bin
        Byte array
    radius.ERX_Acc_Aggr_Cir_Id_Bin.len  Length
        Unsigned 8-bit integer
        ERX-Acc-Aggr-Cir-Id-Bin Length
    radius.ERX_Acc_Loop_Cir_Id  ERX-Acc-Loop-Cir-Id
        String
    radius.ERX_Acc_Loop_Cir_Id.len  Length
        Unsigned 8-bit integer
        ERX-Acc-Loop-Cir-Id Length
    radius.ERX_Act_Data_Rate_Dn  ERX-Act-Data-Rate-Dn
        Unsigned 32-bit integer
    radius.ERX_Act_Data_Rate_Dn.len  Length
        Unsigned 8-bit integer
        ERX-Act-Data-Rate-Dn Length
    radius.ERX_Act_Data_Rate_Up  ERX-Act-Data-Rate-Up
        Unsigned 32-bit integer
    radius.ERX_Act_Data_Rate_Up.len  Length
        Unsigned 8-bit integer
        ERX-Act-Data-Rate-Up Length
    radius.ERX_Act_Interlv_Delay_Dn  ERX-Act-Interlv-Delay-Dn
        Unsigned 32-bit integer
    radius.ERX_Act_Interlv_Delay_Dn.len  Length
        Unsigned 8-bit integer
        ERX-Act-Interlv-Delay-Dn Length
    radius.ERX_Act_Interlv_Delay_Up  ERX-Act-Interlv-Delay-Up
        Unsigned 32-bit integer
    radius.ERX_Act_Interlv_Delay_Up.len  Length
        Unsigned 8-bit integer
        ERX-Act-Interlv-Delay-Up Length
    radius.ERX_Address_Pool_Name  ERX-Address-Pool-Name
        String
    radius.ERX_Address_Pool_Name.len  Length
        Unsigned 8-bit integer
        ERX-Address-Pool-Name Length
    radius.ERX_Alternate_Cli_Access_Level  ERX-Alternate-Cli-Access-Level
        String
    radius.ERX_Alternate_Cli_Access_Level.len  Length
        Unsigned 8-bit integer
        ERX-Alternate-Cli-Access-Level Length
    radius.ERX_Alternate_Cli_Vrouter_Name  ERX-Alternate-Cli-Vrouter-Name
        String
    radius.ERX_Alternate_Cli_Vrouter_Name.len  Length
        Unsigned 8-bit integer
        ERX-Alternate-Cli-Vrouter-Name Length
    radius.ERX_Atm_MBS  ERX-Atm-MBS
        Unsigned 32-bit integer
    radius.ERX_Atm_MBS.len  Length
        Unsigned 8-bit integer
        ERX-Atm-MBS Length
    radius.ERX_Atm_PCR  ERX-Atm-PCR
        Unsigned 32-bit integer
    radius.ERX_Atm_PCR.len  Length
        Unsigned 8-bit integer
        ERX-Atm-PCR Length
    radius.ERX_Atm_SCR  ERX-Atm-SCR
        Unsigned 32-bit integer
    radius.ERX_Atm_SCR.len  Length
        Unsigned 8-bit integer
        ERX-Atm-SCR Length
    radius.ERX_Atm_Service_Category  ERX-Atm-Service-Category
        Unsigned 32-bit integer
    radius.ERX_Atm_Service_Category.len  Length
        Unsigned 8-bit integer
        ERX-Atm-Service-Category Length
    radius.ERX_Att_Data_Rate_Dn  ERX-Att-Data-Rate-Dn
        Unsigned 32-bit integer
    radius.ERX_Att_Data_Rate_Dn.len  Length
        Unsigned 8-bit integer
        ERX-Att-Data-Rate-Dn Length
    radius.ERX_Att_Data_Rate_Up  ERX-Att-Data-Rate-Up
        Unsigned 32-bit integer
    radius.ERX_Att_Data_Rate_Up.len  Length
        Unsigned 8-bit integer
        ERX-Att-Data-Rate-Up Length
    radius.ERX_Bearer_Type  ERX-Bearer-Type
        Unsigned 32-bit integer
    radius.ERX_Bearer_Type.len  Length
        Unsigned 8-bit integer
        ERX-Bearer-Type Length
    radius.ERX_Cli_Allow_All_VR_Access  ERX-Cli-Allow-All-VR-Access
        Unsigned 32-bit integer
    radius.ERX_Cli_Allow_All_VR_Access.len  Length
        Unsigned 8-bit integer
        ERX-Cli-Allow-All-VR-Access Length
    radius.ERX_Cli_Initial_Access_Level  ERX-Cli-Initial-Access-Level
        String
    radius.ERX_Cli_Initial_Access_Level.len  Length
        Unsigned 8-bit integer
        ERX-Cli-Initial-Access-Level Length
    radius.ERX_DF_Bit  ERX-DF-Bit
        Unsigned 32-bit integer
    radius.ERX_DF_Bit.len  Length
        Unsigned 8-bit integer
        ERX-DF-Bit Length
    radius.ERX_DSL_Line_State  ERX-DSL-Line-State
        Unsigned 32-bit integer
    radius.ERX_DSL_Line_State.len  Length
        Unsigned 8-bit integer
        ERX-DSL-Line-State Length
    radius.ERX_DSL_Type  ERX-DSL-Type
        Unsigned 32-bit integer
    radius.ERX_DSL_Type.len  Length
        Unsigned 8-bit integer
        ERX-DSL-Type Length
    radius.ERX_Dhcp_Gi_Address  ERX-Dhcp-Gi-Address
        IPv4 address
    radius.ERX_Dhcp_Gi_Address.len  Length
        Unsigned 8-bit integer
        ERX-Dhcp-Gi-Address Length
    radius.ERX_Dhcp_Mac_Addr  ERX-Dhcp-Mac-Addr
        String
    radius.ERX_Dhcp_Mac_Addr.len  Length
        Unsigned 8-bit integer
        ERX-Dhcp-Mac-Addr Length
    radius.ERX_Dhcp_Options  ERX-Dhcp-Options
        String
    radius.ERX_Dhcp_Options.len  Length
        Unsigned 8-bit integer
        ERX-Dhcp-Options Length
    radius.ERX_Dial_Out_Number  ERX-Dial-Out-Number
        String
    radius.ERX_Dial_Out_Number.len  Length
        Unsigned 8-bit integer
        ERX-Dial-Out-Number Length
    radius.ERX_DownStream_Calc_Rate  ERX-DownStream-Calc-Rate
        Unsigned 32-bit integer
    radius.ERX_DownStream_Calc_Rate.len  Length
        Unsigned 8-bit integer
        ERX-DownStream-Calc-Rate Length
    radius.ERX_Egress_Policy_Name  ERX-Egress-Policy-Name
        String
    radius.ERX_Egress_Policy_Name.len  Length
        Unsigned 8-bit integer
        ERX-Egress-Policy-Name Length
    radius.ERX_Egress_Statistics  ERX-Egress-Statistics
        Unsigned 32-bit integer
    radius.ERX_Egress_Statistics.len  Length
        Unsigned 8-bit integer
        ERX-Egress-Statistics Length
    radius.ERX_Framed_Ip_Route_Tag  ERX-Framed-Ip-Route-Tag
        String
    radius.ERX_Framed_Ip_Route_Tag.len  Length
        Unsigned 8-bit integer
        ERX-Framed-Ip-Route-Tag Length
    radius.ERX_IGMP_Access_Name  ERX-IGMP-Access-Name
        String
    radius.ERX_IGMP_Access_Name.len  Length
        Unsigned 8-bit integer
        ERX-IGMP-Access-Name Length
    radius.ERX_IGMP_Access_Src_Name  ERX-IGMP-Access-Src-Name
        String
    radius.ERX_IGMP_Access_Src_Name.len  Length
        Unsigned 8-bit integer
        ERX-IGMP-Access-Src-Name Length
    radius.ERX_IGMP_Explicit_Tracking  ERX-IGMP-Explicit-Tracking
        Unsigned 32-bit integer
    radius.ERX_IGMP_Explicit_Tracking.len  Length
        Unsigned 8-bit integer
        ERX-IGMP-Explicit-Tracking Length
    radius.ERX_IGMP_Immediate_Leave  ERX-IGMP-Immediate-Leave
        Unsigned 32-bit integer
    radius.ERX_IGMP_Immediate_Leave.len  Length
        Unsigned 8-bit integer
        ERX-IGMP-Immediate-Leave Length
    radius.ERX_IGMP_Max_Resp_Time  ERX-IGMP-Max-Resp-Time
        Unsigned 32-bit integer
    radius.ERX_IGMP_Max_Resp_Time.len  Length
        Unsigned 8-bit integer
        ERX-IGMP-Max-Resp-Time Length
    radius.ERX_IGMP_No_Tracking_V2_Grps  ERX-IGMP-No-Tracking-V2-Grps
        Unsigned 32-bit integer
    radius.ERX_IGMP_No_Tracking_V2_Grps.len  Length
        Unsigned 8-bit integer
        ERX-IGMP-No-Tracking-V2-Grps Length
    radius.ERX_IGMP_OIF_Map_Name  ERX-IGMP-OIF-Map-Name
        String
    radius.ERX_IGMP_OIF_Map_Name.len  Length
        Unsigned 8-bit integer
        ERX-IGMP-OIF-Map-Name Length
    radius.ERX_IGMP_Query_Interval  ERX-IGMP-Query-Interval
        Unsigned 32-bit integer
    radius.ERX_IGMP_Query_Interval.len  Length
        Unsigned 8-bit integer
        ERX-IGMP-Query-Interval Length
    radius.ERX_IGMP_Version  ERX-IGMP-Version
        Unsigned 32-bit integer
    radius.ERX_IGMP_Version.len  Length
        Unsigned 8-bit integer
        ERX-IGMP-Version Length
    radius.ERX_IP_Block_Multicast  ERX-IP-Block-Multicast
        Unsigned 32-bit integer
    radius.ERX_IP_Block_Multicast.len  Length
        Unsigned 8-bit integer
        ERX-IP-Block-Multicast Length
    radius.ERX_IP_Mcast_Adm_Bw_Limit  ERX-IP-Mcast-Adm-Bw-Limit
        Unsigned 32-bit integer
    radius.ERX_IP_Mcast_Adm_Bw_Limit.len  Length
        Unsigned 8-bit integer
        ERX-IP-Mcast-Adm-Bw-Limit Length
    radius.ERX_IPv6_Mcast_Adm_Bw_Limit  ERX-IPv6-Mcast-Adm-Bw-Limit
        Unsigned 32-bit integer
    radius.ERX_IPv6_Mcast_Adm_Bw_Limit.len  Length
        Unsigned 8-bit integer
        ERX-IPv6-Mcast-Adm-Bw-Limit Length
    radius.ERX_IPv6_NdRa_Prefix  ERX-IPv6-NdRa-Prefix
        Byte array
    radius.ERX_IPv6_NdRa_Prefix.len  Length
        Unsigned 8-bit integer
        ERX-IPv6-NdRa-Prefix Length
    radius.ERX_Igmp_Enable  ERX-Igmp-Enable
        Unsigned 32-bit integer
    radius.ERX_Igmp_Enable.len  Length
        Unsigned 8-bit integer
        ERX-Igmp-Enable Length
    radius.ERX_Ingress_Policy_Name  ERX-Ingress-Policy-Name
        String
    radius.ERX_Ingress_Policy_Name.len  Length
        Unsigned 8-bit integer
        ERX-Ingress-Policy-Name Length
    radius.ERX_Ingress_Statistics  ERX-Ingress-Statistics
        Unsigned 32-bit integer
    radius.ERX_Ingress_Statistics.len  Length
        Unsigned 8-bit integer
        ERX-Ingress-Statistics Length
    radius.ERX_Input_Gigapkts  ERX-Input-Gigapkts
        Unsigned 32-bit integer
    radius.ERX_Input_Gigapkts.len  Length
        Unsigned 8-bit integer
        ERX-Input-Gigapkts Length
    radius.ERX_Interface_Desc  ERX-Interface-Desc
        String
    radius.ERX_Interface_Desc.len  Length
        Unsigned 8-bit integer
        ERX-Interface-Desc Length
    radius.ERX_IpV6_Local_Interface  ERX-IpV6-Local-Interface
        String
    radius.ERX_IpV6_Local_Interface.len  Length
        Unsigned 8-bit integer
        ERX-IpV6-Local-Interface Length
    radius.ERX_IpV6_Virtual_Router  ERX-IpV6-Virtual-Router
        String
    radius.ERX_IpV6_Virtual_Router.len  Length
        Unsigned 8-bit integer
        ERX-IpV6-Virtual-Router Length
    radius.ERX_Ipv6_Primary_Dns  ERX-Ipv6-Primary-Dns
        IPv6 address
    radius.ERX_Ipv6_Primary_Dns.len  Length
        Unsigned 8-bit integer
        ERX-Ipv6-Primary-Dns Length
    radius.ERX_Ipv6_Secondary_Dns  ERX-Ipv6-Secondary-Dns
        IPv6 address
    radius.ERX_Ipv6_Secondary_Dns.len  Length
        Unsigned 8-bit integer
        ERX-Ipv6-Secondary-Dns Length
    radius.ERX_L2TP_Resynch_Method  ERX-L2TP-Resynch-Method
        Unsigned 32-bit integer
    radius.ERX_L2TP_Resynch_Method.len  Length
        Unsigned 8-bit integer
        ERX-L2TP-Resynch-Method Length
    radius.ERX_L2c_Down_Stream_Data  ERX-L2c-Down-Stream-Data
        String
    radius.ERX_L2c_Down_Stream_Data.len  Length
        Unsigned 8-bit integer
        ERX-L2c-Down-Stream-Data Length
    radius.ERX_L2c_Up_Stream_Data  ERX-L2c-Up-Stream-Data
        String
    radius.ERX_L2c_Up_Stream_Data.len  Length
        Unsigned 8-bit integer
        ERX-L2c-Up-Stream-Data Length
    radius.ERX_L2tp_Recv_Window_Size  ERX-L2tp-Recv-Window-Size
        Unsigned 32-bit integer
    radius.ERX_L2tp_Recv_Window_Size.len  Length
        Unsigned 8-bit integer
        ERX-L2tp-Recv-Window-Size Length
    radius.ERX_LI_Action  ERX-LI-Action
        Unsigned 32-bit integer
    radius.ERX_LI_Action.len  Length
        Unsigned 8-bit integer
        ERX-LI-Action Length
    radius.ERX_Local_Loopback_Interface  ERX-Local-Loopback-Interface
        String
    radius.ERX_Local_Loopback_Interface.len  Length
        Unsigned 8-bit integer
        ERX-Local-Loopback-Interface Length
    radius.ERX_MLD_Access_Name  ERX-MLD-Access-Name
        String
    radius.ERX_MLD_Access_Name.len  Length
        Unsigned 8-bit integer
        ERX-MLD-Access-Name Length
    radius.ERX_MLD_Access_Src_Name  ERX-MLD-Access-Src-Name
        String
    radius.ERX_MLD_Access_Src_Name.len  Length
        Unsigned 8-bit integer
        ERX-MLD-Access-Src-Name Length
    radius.ERX_MLD_Explicit_Tracking  ERX-MLD-Explicit-Tracking
        Unsigned 32-bit integer
    radius.ERX_MLD_Explicit_Tracking.len  Length
        Unsigned 8-bit integer
        ERX-MLD-Explicit-Tracking Length
    radius.ERX_MLD_Immediate_Leave  ERX-MLD-Immediate-Leave
        Unsigned 32-bit integer
    radius.ERX_MLD_Immediate_Leave.len  Length
        Unsigned 8-bit integer
        ERX-MLD-Immediate-Leave Length
    radius.ERX_MLD_Max_Resp_Time  ERX-MLD-Max-Resp-Time
        Unsigned 32-bit integer
    radius.ERX_MLD_Max_Resp_Time.len  Length
        Unsigned 8-bit integer
        ERX-MLD-Max-Resp-Time Length
    radius.ERX_MLD_No_Tracking_V1_Grps  ERX-MLD-No-Tracking-V1-Grps
        Unsigned 32-bit integer
    radius.ERX_MLD_No_Tracking_V1_Grps.len  Length
        Unsigned 8-bit integer
        ERX-MLD-No-Tracking-V1-Grps Length
    radius.ERX_MLD_OIF_Map_Name  ERX-MLD-OIF-Map-Name
        String
    radius.ERX_MLD_OIF_Map_Name.len  Length
        Unsigned 8-bit integer
        ERX-MLD-OIF-Map-Name Length
    radius.ERX_MLD_Query_Interval  ERX-MLD-Query-Interval
        Unsigned 32-bit integer
    radius.ERX_MLD_Query_Interval.len  Length
        Unsigned 8-bit integer
        ERX-MLD-Query-Interval Length
    radius.ERX_MLD_Version  ERX-MLD-Version
        Unsigned 32-bit integer
    radius.ERX_MLD_Version.len  Length
        Unsigned 8-bit integer
        ERX-MLD-Version Length
    radius.ERX_MLPPP_Bundle_Name  ERX-MLPPP-Bundle-Name
        String
    radius.ERX_MLPPP_Bundle_Name.len  Length
        Unsigned 8-bit integer
        ERX-MLPPP-Bundle-Name Length
    radius.ERX_Max_Clients_Per_Interface  ERX-Max-Clients-Per-Interface
        Unsigned 32-bit integer
    radius.ERX_Max_Clients_Per_Interface.len  Length
        Unsigned 8-bit integer
        ERX-Max-Clients-Per-Interface Length
    radius.ERX_Max_Data_Rate_Dn  ERX-Max-Data-Rate-Dn
        Unsigned 32-bit integer
    radius.ERX_Max_Data_Rate_Dn.len  Length
        Unsigned 8-bit integer
        ERX-Max-Data-Rate-Dn Length
    radius.ERX_Max_Data_Rate_Up  ERX-Max-Data-Rate-Up
        Unsigned 32-bit integer
    radius.ERX_Max_Data_Rate_Up.len  Length
        Unsigned 8-bit integer
        ERX-Max-Data-Rate-Up Length
    radius.ERX_Max_Interlv_Delay_Dn  ERX-Max-Interlv-Delay-Dn
        Unsigned 32-bit integer
    radius.ERX_Max_Interlv_Delay_Dn.len  Length
        Unsigned 8-bit integer
        ERX-Max-Interlv-Delay-Dn Length
    radius.ERX_Max_Interlv_Delay_Up  ERX-Max-Interlv-Delay-Up
        Unsigned 32-bit integer
    radius.ERX_Max_Interlv_Delay_Up.len  Length
        Unsigned 8-bit integer
        ERX-Max-Interlv-Delay-Up Length
    radius.ERX_Maximum_BPS  ERX-Maximum-BPS
        Unsigned 32-bit integer
    radius.ERX_Maximum_BPS.len  Length
        Unsigned 8-bit integer
        ERX-Maximum-BPS Length
    radius.ERX_Med_Dev_Handle  ERX-Med-Dev-Handle
        Byte array
    radius.ERX_Med_Dev_Handle.len  Length
        Unsigned 8-bit integer
        ERX-Med-Dev-Handle Length
    radius.ERX_Med_Ip_Address  ERX-Med-Ip-Address
        IPv4 address
    radius.ERX_Med_Ip_Address.len  Length
        Unsigned 8-bit integer
        ERX-Med-Ip-Address Length
    radius.ERX_Med_Port_Number  ERX-Med-Port-Number
        Unsigned 32-bit integer
    radius.ERX_Med_Port_Number.len  Length
        Unsigned 8-bit integer
        ERX-Med-Port-Number Length
    radius.ERX_Min_Data_Rate_Dn  ERX-Min-Data-Rate-Dn
        Unsigned 32-bit integer
    radius.ERX_Min_Data_Rate_Dn.len  Length
        Unsigned 8-bit integer
        ERX-Min-Data-Rate-Dn Length
    radius.ERX_Min_Data_Rate_Up  ERX-Min-Data-Rate-Up
        Unsigned 32-bit integer
    radius.ERX_Min_Data_Rate_Up.len  Length
        Unsigned 8-bit integer
        ERX-Min-Data-Rate-Up Length
    radius.ERX_Min_LP_Data_Rate_Dn  ERX-Min-LP-Data-Rate-Dn
        Unsigned 32-bit integer
    radius.ERX_Min_LP_Data_Rate_Dn.len  Length
        Unsigned 8-bit integer
        ERX-Min-LP-Data-Rate-Dn Length
    radius.ERX_Min_LP_Data_Rate_Up  ERX-Min-LP-Data-Rate-Up
        Unsigned 32-bit integer
    radius.ERX_Min_LP_Data_Rate_Up.len  Length
        Unsigned 8-bit integer
        ERX-Min-LP-Data-Rate-Up Length
    radius.ERX_Minimum_BPS  ERX-Minimum-BPS
        Unsigned 32-bit integer
    radius.ERX_Minimum_BPS.len  Length
        Unsigned 8-bit integer
        ERX-Minimum-BPS Length
    radius.ERX_Mobile_IP_Access_Control  ERX-Mobile-IP-Access-Control
        String
    radius.ERX_Mobile_IP_Access_Control.len  Length
        Unsigned 8-bit integer
        ERX-Mobile-IP-Access-Control Length
    radius.ERX_Mobile_IP_Algorithm  ERX-Mobile-IP-Algorithm
        Unsigned 32-bit integer
    radius.ERX_Mobile_IP_Algorithm.len  Length
        Unsigned 8-bit integer
        ERX-Mobile-IP-Algorithm Length
    radius.ERX_Mobile_IP_Key  ERX-Mobile-IP-Key
        String
    radius.ERX_Mobile_IP_Key.len  Length
        Unsigned 8-bit integer
        ERX-Mobile-IP-Key Length
    radius.ERX_Mobile_IP_Lifetime  ERX-Mobile-IP-Lifetime
        Unsigned 32-bit integer
    radius.ERX_Mobile_IP_Lifetime.len  Length
        Unsigned 8-bit integer
        ERX-Mobile-IP-Lifetime Length
    radius.ERX_Mobile_IP_Replay  ERX-Mobile-IP-Replay
        Unsigned 32-bit integer
    radius.ERX_Mobile_IP_Replay.len  Length
        Unsigned 8-bit integer
        ERX-Mobile-IP-Replay Length
    radius.ERX_Mobile_IP_SPI  ERX-Mobile-IP-SPI
        Unsigned 32-bit integer
    radius.ERX_Mobile_IP_SPI.len  Length
        Unsigned 8-bit integer
        ERX-Mobile-IP-SPI Length
    radius.ERX_Output_Gigapkts  ERX-Output-Gigapkts
        Unsigned 32-bit integer
    radius.ERX_Output_Gigapkts.len  Length
        Unsigned 8-bit integer
        ERX-Output-Gigapkts Length
    radius.ERX_PPP_Auth_Protocol  ERX-PPP-Auth-Protocol
        Unsigned 32-bit integer
    radius.ERX_PPP_Auth_Protocol.len  Length
        Unsigned 8-bit integer
        ERX-PPP-Auth-Protocol Length
    radius.ERX_PPP_Monitor_Ingress_Only  ERX-PPP-Monitor-Ingress-Only
        Unsigned 32-bit integer
    radius.ERX_PPP_Monitor_Ingress_Only.len  Length
        Unsigned 8-bit integer
        ERX-PPP-Monitor-Ingress-Only Length
    radius.ERX_PPP_Password  ERX-PPP-Password
        String
    radius.ERX_PPP_Password.len  Length
        Unsigned 8-bit integer
        ERX-PPP-Password Length
    radius.ERX_PPP_Username  ERX-PPP-Username
        String
    radius.ERX_PPP_Username.len  Length
        Unsigned 8-bit integer
        ERX-PPP-Username Length
    radius.ERX_Pppoe_Description  ERX-Pppoe-Description
        String
    radius.ERX_Pppoe_Description.len  Length
        Unsigned 8-bit integer
        ERX-Pppoe-Description Length
    radius.ERX_Pppoe_Max_Sessions  ERX-Pppoe-Max-Sessions
        Unsigned 32-bit integer
    radius.ERX_Pppoe_Max_Sessions.len  Length
        Unsigned 8-bit integer
        ERX-Pppoe-Max-Sessions Length
    radius.ERX_Pppoe_Url  ERX-Pppoe-Url
        String
    radius.ERX_Pppoe_Url.len  Length
        Unsigned 8-bit integer
        ERX-Pppoe-Url Length
    radius.ERX_Primary_Dns  ERX-Primary-Dns
        IPv4 address
    radius.ERX_Primary_Dns.len  Length
        Unsigned 8-bit integer
        ERX-Primary-Dns Length
    radius.ERX_Primary_Wins  ERX-Primary-Wins
        IPv4 address
    radius.ERX_Primary_Wins.len  Length
        Unsigned 8-bit integer
        ERX-Primary-Wins Length
    radius.ERX_Qos_Parameters  ERX-Qos-Parameters
        String
    radius.ERX_Qos_Parameters.len  Length
        Unsigned 8-bit integer
        ERX-Qos-Parameters Length
    radius.ERX_Qos_Profile_Interface_Type  ERX-Qos-Profile-Interface-Type
        Unsigned 32-bit integer
    radius.ERX_Qos_Profile_Interface_Type.len  Length
        Unsigned 8-bit integer
        ERX-Qos-Profile-Interface-Type Length
    radius.ERX_Qos_Profile_Name  ERX-Qos-Profile-Name
        String
    radius.ERX_Qos_Profile_Name.len  Length
        Unsigned 8-bit integer
        ERX-Qos-Profile-Name Length
    radius.ERX_Qos_Set_Name  ERX-Qos-Set-Name
        String
    radius.ERX_Qos_Set_Name.len  Length
        Unsigned 8-bit integer
        ERX-Qos-Set-Name Length
    radius.ERX_Radius_Client_Address  ERX-Radius-Client-Address
        IPv4 address
    radius.ERX_Radius_Client_Address.len  Length
        Unsigned 8-bit integer
        ERX-Radius-Client-Address Length
    radius.ERX_Redirect_VR_Name  ERX-Redirect-VR-Name
        String
    radius.ERX_Redirect_VR_Name.len  Length
        Unsigned 8-bit integer
        ERX-Redirect-VR-Name Length
    radius.ERX_Sa_Validate  ERX-Sa-Validate
        Unsigned 32-bit integer
    radius.ERX_Sa_Validate.len  Length
        Unsigned 8-bit integer
        ERX-Sa-Validate Length
    radius.ERX_Secondary_Dns  ERX-Secondary-Dns
        IPv4 address
    radius.ERX_Secondary_Dns.len  Length
        Unsigned 8-bit integer
        ERX-Secondary-Dns Length
    radius.ERX_Secondary_Wins  ERX-Secondary-Wins
        IPv4 address
    radius.ERX_Secondary_Wins.len  Length
        Unsigned 8-bit integer
        ERX-Secondary-Wins Length
    radius.ERX_Service_Acct_Interval  ERX-Service-Acct-Interval
        Unsigned 32-bit integer
    radius.ERX_Service_Acct_Interval.len  Length
        Unsigned 8-bit integer
        ERX-Service-Acct-Interval Length
    radius.ERX_Service_Acct_Interval.tag  Tag
        Unsigned 8-bit integer
        ERX-Service-Acct-Interval Tag
    radius.ERX_Service_Activate  ERX-Service-Activate
        String
    radius.ERX_Service_Activate.len  Length
        Unsigned 8-bit integer
        ERX-Service-Activate Length
    radius.ERX_Service_Activate.tag  Tag
        Unsigned 8-bit integer
        ERX-Service-Activate Tag
    radius.ERX_Service_Bundle  ERX-Service-Bundle
        String
    radius.ERX_Service_Bundle.len  Length
        Unsigned 8-bit integer
        ERX-Service-Bundle Length
    radius.ERX_Service_Deactivate  ERX-Service-Deactivate
        String
    radius.ERX_Service_Deactivate.len  Length
        Unsigned 8-bit integer
        ERX-Service-Deactivate Length
    radius.ERX_Service_Description  ERX-Service-Description
        String
    radius.ERX_Service_Description.len  Length
        Unsigned 8-bit integer
        ERX-Service-Description Length
    radius.ERX_Service_Session  ERX-Service-Session
        String
    radius.ERX_Service_Session.len  Length
        Unsigned 8-bit integer
        ERX-Service-Session Length
    radius.ERX_Service_Statistics  ERX-Service-Statistics
        Unsigned 32-bit integer
    radius.ERX_Service_Statistics.len  Length
        Unsigned 8-bit integer
        ERX-Service-Statistics Length
    radius.ERX_Service_Statistics.tag  Tag
        Unsigned 8-bit integer
        ERX-Service-Statistics Tag
    radius.ERX_Service_Timeout  ERX-Service-Timeout
        Unsigned 32-bit integer
    radius.ERX_Service_Timeout.len  Length
        Unsigned 8-bit integer
        ERX-Service-Timeout Length
    radius.ERX_Service_Timeout.tag  Tag
        Unsigned 8-bit integer
        ERX-Service-Timeout Tag
    radius.ERX_Service_Volume  ERX-Service-Volume
        Unsigned 32-bit integer
    radius.ERX_Service_Volume.len  Length
        Unsigned 8-bit integer
        ERX-Service-Volume Length
    radius.ERX_Service_Volume.tag  Tag
        Unsigned 8-bit integer
        ERX-Service-Volume Tag
    radius.ERX_Tunnel_Group  ERX-Tunnel-Group
        String
    radius.ERX_Tunnel_Group.len  Length
        Unsigned 8-bit integer
        ERX-Tunnel-Group Length
    radius.ERX_Tunnel_Interface_Id  ERX-Tunnel-Interface-Id
        String
    radius.ERX_Tunnel_Interface_Id.len  Length
        Unsigned 8-bit integer
        ERX-Tunnel-Interface-Id Length
    radius.ERX_Tunnel_Maximum_Sessions  ERX-Tunnel-Maximum-Sessions
        Unsigned 32-bit integer
    radius.ERX_Tunnel_Maximum_Sessions.len  Length
        Unsigned 8-bit integer
        ERX-Tunnel-Maximum-Sessions Length
    radius.ERX_Tunnel_Nas_Port_Method  ERX-Tunnel-Nas-Port-Method
        Unsigned 32-bit integer
    radius.ERX_Tunnel_Nas_Port_Method.len  Length
        Unsigned 8-bit integer
        ERX-Tunnel-Nas-Port-Method Length
    radius.ERX_Tunnel_Password  ERX-Tunnel-Password
        String
    radius.ERX_Tunnel_Password.len  Length
        Unsigned 8-bit integer
        ERX-Tunnel-Password Length
    radius.ERX_Tunnel_Switch_Profile  ERX-Tunnel-Switch-Profile
        String
    radius.ERX_Tunnel_Switch_Profile.len  Length
        Unsigned 8-bit integer
        ERX-Tunnel-Switch-Profile Length
    radius.ERX_Tunnel_Tos  ERX-Tunnel-Tos
        Unsigned 32-bit integer
    radius.ERX_Tunnel_Tos.len  Length
        Unsigned 8-bit integer
        ERX-Tunnel-Tos Length
    radius.ERX_Tunnel_Tx_Speed_Method  ERX-Tunnel-Tx-Speed-Method
        Unsigned 32-bit integer
    radius.ERX_Tunnel_Tx_Speed_Method.len  Length
        Unsigned 8-bit integer
        ERX-Tunnel-Tx-Speed-Method Length
    radius.ERX_Tunnel_Virtual_Router  ERX-Tunnel-Virtual-Router
        String
    radius.ERX_Tunnel_Virtual_Router.len  Length
        Unsigned 8-bit integer
        ERX-Tunnel-Virtual-Router Length
    radius.ERX_UpStream_Calc_Rate  ERX-UpStream-Calc-Rate
        Unsigned 32-bit integer
    radius.ERX_UpStream_Calc_Rate.len  Length
        Unsigned 8-bit integer
        ERX-UpStream-Calc-Rate Length
    radius.ERX_Virtual_Router_Name  ERX-Virtual-Router-Name
        String
    radius.ERX_Virtual_Router_Name.len  Length
        Unsigned 8-bit integer
        ERX-Virtual-Router-Name Length
    radius.Egress_VLANID  Egress-VLANID
        Unsigned 32-bit integer
    radius.Egress_VLANID.len  Length
        Unsigned 8-bit integer
        Egress-VLANID Length
    radius.Egress_VLAN_Name  Egress-VLAN-Name
        String
    radius.Egress_VLAN_Name.len  Length
        Unsigned 8-bit integer
        Egress-VLAN-Name Length
    radius.Epygi_AVPair  Epygi-AVPair
        String
    radius.Epygi_AVPair.len  Length
        Unsigned 8-bit integer
        Epygi-AVPair Length
    radius.Epygi_AccessType  Epygi-AccessType
        String
    radius.Epygi_AccessType.len  Length
        Unsigned 8-bit integer
        Epygi-AccessType Length
    radius.Epygi_CallDisconnectReason  Epygi-CallDisconnectReason
        Unsigned 32-bit integer
    radius.Epygi_CallDisconnectReason.len  Length
        Unsigned 8-bit integer
        Epygi-CallDisconnectReason Length
    radius.Epygi_CallInfo  Epygi-CallInfo
        String
    radius.Epygi_CallInfo.len  Length
        Unsigned 8-bit integer
        Epygi-CallInfo Length
    radius.Epygi_CallRedirectReason  Epygi-CallRedirectReason
        Unsigned 32-bit integer
    radius.Epygi_CallRedirectReason.len  Length
        Unsigned 8-bit integer
        Epygi-CallRedirectReason Length
    radius.Epygi_CallType  Epygi-CallType
        Unsigned 32-bit integer
    radius.Epygi_CallType.len  Length
        Unsigned 8-bit integer
        Epygi-CallType Length
    radius.Epygi_CalledPartyNumber  Epygi-CalledPartyNumber
        String
    radius.Epygi_CalledPartyNumber.len  Length
        Unsigned 8-bit integer
        Epygi-CalledPartyNumber Length
    radius.Epygi_CallingPartyNumber  Epygi-CallingPartyNumber
        String
    radius.Epygi_CallingPartyNumber.len  Length
        Unsigned 8-bit integer
        Epygi-CallingPartyNumber Length
    radius.Epygi_DateTimeConnect  Epygi-DateTimeConnect
        Unsigned 32-bit integer
    radius.Epygi_DateTimeConnect.len  Length
        Unsigned 8-bit integer
        Epygi-DateTimeConnect Length
    radius.Epygi_DateTimeDisconnect  Epygi-DateTimeDisconnect
        Unsigned 32-bit integer
    radius.Epygi_DateTimeDisconnect.len  Length
        Unsigned 8-bit integer
        Epygi-DateTimeDisconnect Length
    radius.Epygi_DateTimeOrigination  Epygi-DateTimeOrigination
        Unsigned 32-bit integer
    radius.Epygi_DateTimeOrigination.len  Length
        Unsigned 8-bit integer
        Epygi-DateTimeOrigination Length
    radius.Epygi_DestIpAddr  Epygi-DestIpAddr
        Unsigned 32-bit integer
    radius.Epygi_DestIpAddr.len  Length
        Unsigned 8-bit integer
        Epygi-DestIpAddr Length
    radius.Epygi_DestIpPort  Epygi-DestIpPort
        Unsigned 32-bit integer
    radius.Epygi_DestIpPort.len  Length
        Unsigned 8-bit integer
        Epygi-DestIpPort Length
    radius.Epygi_DeviceName  Epygi-DeviceName
        String
    radius.Epygi_DeviceName.len  Length
        Unsigned 8-bit integer
        Epygi-DeviceName Length
    radius.Epygi_Duration  Epygi-Duration
        Unsigned 32-bit integer
    radius.Epygi_Duration.len  Length
        Unsigned 8-bit integer
        Epygi-Duration Length
    radius.Epygi_FiadID  Epygi-FiadID
        String
    radius.Epygi_FiadID.len  Length
        Unsigned 8-bit integer
        Epygi-FiadID Length
    radius.Epygi_InDestRTP_IP  Epygi-InDestRTP_IP
        Unsigned 32-bit integer
    radius.Epygi_InDestRTP_IP.len  Length
        Unsigned 8-bit integer
        Epygi-InDestRTP_IP Length
    radius.Epygi_InDestRTP_port  Epygi-InDestRTP_port
        Unsigned 32-bit integer
    radius.Epygi_InDestRTP_port.len  Length
        Unsigned 8-bit integer
        Epygi-InDestRTP_port Length
    radius.Epygi_InRTP_Jitter  Epygi-InRTP_Jitter
        Unsigned 32-bit integer
    radius.Epygi_InRTP_Jitter.len  Length
        Unsigned 8-bit integer
        Epygi-InRTP_Jitter Length
    radius.Epygi_InRTP_Latency  Epygi-InRTP_Latency
        Unsigned 32-bit integer
    radius.Epygi_InRTP_Latency.len  Length
        Unsigned 8-bit integer
        Epygi-InRTP_Latency Length
    radius.Epygi_InRTP_Octets  Epygi-InRTP_Octets
        Unsigned 32-bit integer
    radius.Epygi_InRTP_Octets.len  Length
        Unsigned 8-bit integer
        Epygi-InRTP_Octets Length
    radius.Epygi_InRTP_PacketSize  Epygi-InRTP_PacketSize
        Unsigned 32-bit integer
    radius.Epygi_InRTP_PacketSize.len  Length
        Unsigned 8-bit integer
        Epygi-InRTP_PacketSize Length
    radius.Epygi_InRTP_Packets  Epygi-InRTP_Packets
        Unsigned 32-bit integer
    radius.Epygi_InRTP_Packets.len  Length
        Unsigned 8-bit integer
        Epygi-InRTP_Packets Length
    radius.Epygi_InRTP_PacketsDupl  Epygi-InRTP_PacketsDupl
        Unsigned 32-bit integer
    radius.Epygi_InRTP_PacketsDupl.len  Length
        Unsigned 8-bit integer
        Epygi-InRTP_PacketsDupl Length
    radius.Epygi_InRTP_PacketsLost  Epygi-InRTP_PacketsLost
        Unsigned 32-bit integer
    radius.Epygi_InRTP_PacketsLost.len  Length
        Unsigned 8-bit integer
        Epygi-InRTP_PacketsLost Length
    radius.Epygi_InRTP_Payload  Epygi-InRTP_Payload
        Unsigned 32-bit integer
    radius.Epygi_InRTP_Payload.len  Length
        Unsigned 8-bit integer
        Epygi-InRTP_Payload Length
    radius.Epygi_InSourceRTP_IP  Epygi-InSourceRTP_IP
        Unsigned 32-bit integer
    radius.Epygi_InSourceRTP_IP.len  Length
        Unsigned 8-bit integer
        Epygi-InSourceRTP_IP Length
    radius.Epygi_InSourceRTP_port  Epygi-InSourceRTP_port
        Unsigned 32-bit integer
    radius.Epygi_InSourceRTP_port.len  Length
        Unsigned 8-bit integer
        Epygi-InSourceRTP_port Length
    radius.Epygi_InterfaceName  Epygi-InterfaceName
        Unsigned 32-bit integer
    radius.Epygi_InterfaceName.len  Length
        Unsigned 8-bit integer
        Epygi-InterfaceName Length
    radius.Epygi_InterfaceNumber  Epygi-InterfaceNumber
        Unsigned 32-bit integer
    radius.Epygi_InterfaceNumber.len  Length
        Unsigned 8-bit integer
        Epygi-InterfaceNumber Length
    radius.Epygi_NAS_Port  Epygi-NAS-Port
        String
    radius.Epygi_NAS_Port.len  Length
        Unsigned 8-bit integer
        Epygi-NAS-Port Length
    radius.Epygi_OrigCallID  Epygi-OrigCallID
        String
    radius.Epygi_OrigCallID.len  Length
        Unsigned 8-bit integer
        Epygi-OrigCallID Length
    radius.Epygi_OrigIpAddr  Epygi-OrigIpAddr
        Unsigned 32-bit integer
    radius.Epygi_OrigIpAddr.len  Length
        Unsigned 8-bit integer
        Epygi-OrigIpAddr Length
    radius.Epygi_OrigIpPort  Epygi-OrigIpPort
        Unsigned 32-bit integer
    radius.Epygi_OrigIpPort.len  Length
        Unsigned 8-bit integer
        Epygi-OrigIpPort Length
    radius.Epygi_OutDestRTP_IP  Epygi-OutDestRTP_IP
        Unsigned 32-bit integer
    radius.Epygi_OutDestRTP_IP.len  Length
        Unsigned 8-bit integer
        Epygi-OutDestRTP_IP Length
    radius.Epygi_OutDestRTP_port  Epygi-OutDestRTP_port
        Unsigned 32-bit integer
    radius.Epygi_OutDestRTP_port.len  Length
        Unsigned 8-bit integer
        Epygi-OutDestRTP_port Length
    radius.Epygi_OutRTP_Octets  Epygi-OutRTP_Octets
        Unsigned 32-bit integer
    radius.Epygi_OutRTP_Octets.len  Length
        Unsigned 8-bit integer
        Epygi-OutRTP_Octets Length
    radius.Epygi_OutRTP_PacketSize  Epygi-OutRTP_PacketSize
        Unsigned 32-bit integer
    radius.Epygi_OutRTP_PacketSize.len  Length
        Unsigned 8-bit integer
        Epygi-OutRTP_PacketSize Length
    radius.Epygi_OutRTP_Packets  Epygi-OutRTP_Packets
        Unsigned 32-bit integer
    radius.Epygi_OutRTP_Packets.len  Length
        Unsigned 8-bit integer
        Epygi-OutRTP_Packets Length
    radius.Epygi_OutRTP_Payload  Epygi-OutRTP_Payload
        Unsigned 32-bit integer
    radius.Epygi_OutRTP_Payload.len  Length
        Unsigned 8-bit integer
        Epygi-OutRTP_Payload Length
    radius.Epygi_OutSourceRTP_IP  Epygi-OutSourceRTP_IP
        Unsigned 32-bit integer
    radius.Epygi_OutSourceRTP_IP.len  Length
        Unsigned 8-bit integer
        Epygi-OutSourceRTP_IP Length
    radius.Epygi_OutSourceRTP_port  Epygi-OutSourceRTP_port
        Unsigned 32-bit integer
    radius.Epygi_OutSourceRTP_port.len  Length
        Unsigned 8-bit integer
        Epygi-OutSourceRTP_port Length
    radius.Epygi_ParentCallID  Epygi-ParentCallID
        String
    radius.Epygi_ParentCallID.len  Length
        Unsigned 8-bit integer
        Epygi-ParentCallID Length
    radius.Epygi_PortID  Epygi-PortID
        String
    radius.Epygi_PortID.len  Length
        Unsigned 8-bit integer
        Epygi-PortID Length
    radius.Epygi_RegExpDate  Epygi-RegExpDate
        String
    radius.Epygi_RegExpDate.len  Length
        Unsigned 8-bit integer
        Epygi-RegExpDate Length
    radius.Epygi_TimeslotNumber  Epygi-TimeslotNumber
        Unsigned 32-bit integer
    radius.Epygi_TimeslotNumber.len  Length
        Unsigned 8-bit integer
        Epygi-TimeslotNumber Length
    radius.Epygi_h323_billing_model  Epygi-h323-billing-model
        String
    radius.Epygi_h323_billing_model.len  Length
        Unsigned 8-bit integer
        Epygi-h323-billing-model Length
    radius.Epygi_h323_call_origin  Epygi-h323-call-origin
        String
    radius.Epygi_h323_call_origin.len  Length
        Unsigned 8-bit integer
        Epygi-h323-call-origin Length
    radius.Epygi_h323_call_type  Epygi-h323-call-type
        String
    radius.Epygi_h323_call_type.len  Length
        Unsigned 8-bit integer
        Epygi-h323-call-type Length
    radius.Epygi_h323_conf_id  Epygi-h323-conf-id
        String
    radius.Epygi_h323_conf_id.len  Length
        Unsigned 8-bit integer
        Epygi-h323-conf-id Length
    radius.Epygi_h323_connect_time  Epygi-h323-connect-time
        String
    radius.Epygi_h323_connect_time.len  Length
        Unsigned 8-bit integer
        Epygi-h323-connect-time Length
    radius.Epygi_h323_credit_amount  Epygi-h323-credit-amount
        String
    radius.Epygi_h323_credit_amount.len  Length
        Unsigned 8-bit integer
        Epygi-h323-credit-amount Length
    radius.Epygi_h323_credit_time  Epygi-h323-credit-time
        String
    radius.Epygi_h323_credit_time.len  Length
        Unsigned 8-bit integer
        Epygi-h323-credit-time Length
    radius.Epygi_h323_currency  Epygi-h323-currency
        String
    radius.Epygi_h323_currency.len  Length
        Unsigned 8-bit integer
        Epygi-h323-currency Length
    radius.Epygi_h323_disconnect_cause  Epygi-h323-disconnect-cause
        String
    radius.Epygi_h323_disconnect_cause.len  Length
        Unsigned 8-bit integer
        Epygi-h323-disconnect-cause Length
    radius.Epygi_h323_disconnect_time  Epygi-h323-disconnect-time
        String
    radius.Epygi_h323_disconnect_time.len  Length
        Unsigned 8-bit integer
        Epygi-h323-disconnect-time Length
    radius.Epygi_h323_gw_id  Epygi-h323-gw-id
        String
    radius.Epygi_h323_gw_id.len  Length
        Unsigned 8-bit integer
        Epygi-h323-gw-id Length
    radius.Epygi_h323_incoming_conf_id  Epygi-h323-incoming-conf-id
        String
    radius.Epygi_h323_incoming_conf_id.len  Length
        Unsigned 8-bit integer
        Epygi-h323-incoming-conf-id Length
    radius.Epygi_h323_preferred_lang  Epygi-h323-preferred-lang
        String
    radius.Epygi_h323_preferred_lang.len  Length
        Unsigned 8-bit integer
        Epygi-h323-preferred-lang Length
    radius.Epygi_h323_prompt_id  Epygi-h323-prompt-id
        String
    radius.Epygi_h323_prompt_id.len  Length
        Unsigned 8-bit integer
        Epygi-h323-prompt-id Length
    radius.Epygi_h323_redirect_ip_address  Epygi-h323-redirect-ip-address
        String
    radius.Epygi_h323_redirect_ip_address.len  Length
        Unsigned 8-bit integer
        Epygi-h323-redirect-ip-address Length
    radius.Epygi_h323_redirect_number  Epygi-h323-redirect-number
        String
    radius.Epygi_h323_redirect_number.len  Length
        Unsigned 8-bit integer
        Epygi-h323-redirect-number Length
    radius.Epygi_h323_remote_address  Epygi-h323-remote-address
        String
    radius.Epygi_h323_remote_address.len  Length
        Unsigned 8-bit integer
        Epygi-h323-remote-address Length
    radius.Epygi_h323_return_code  Epygi-h323-return-code
        String
    radius.Epygi_h323_return_code.len  Length
        Unsigned 8-bit integer
        Epygi-h323-return-code Length
    radius.Epygi_h323_setup_time  Epygi-h323-setup-time
        String
    radius.Epygi_h323_setup_time.len  Length
        Unsigned 8-bit integer
        Epygi-h323-setup-time Length
    radius.Epygi_h323_time_and_day  Epygi-h323-time-and-day
        String
    radius.Epygi_h323_time_and_day.len  Length
        Unsigned 8-bit integer
        Epygi-h323-time-and-day Length
    radius.Epygi_h323_voice_quality  Epygi-h323-voice-quality
        String
    radius.Epygi_h323_voice_quality.len  Length
        Unsigned 8-bit integer
        Epygi-h323-voice-quality Length
    radius.Ericsson_ViG_Access_Agent_IP_Address  Ericsson-ViG-Access-Agent-IP-Address
        IPv4 address
    radius.Ericsson_ViG_Access_Agent_IP_Address.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Access-Agent-IP-Address Length
    radius.Ericsson_ViG_Access_Agent_name  Ericsson-ViG-Access-Agent-name
        String
    radius.Ericsson_ViG_Access_Agent_name.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Access-Agent-name Length
    radius.Ericsson_ViG_Access_Group_name  Ericsson-ViG-Access-Group-name
        String
    radius.Ericsson_ViG_Access_Group_name.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Access-Group-name Length
    radius.Ericsson_ViG_Access_type  Ericsson-ViG-Access-type
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Access_type.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Access-type Length
    radius.Ericsson_ViG_Account_error_reason  Ericsson-ViG-Account-error-reason
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Account_error_reason.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Account-error-reason Length
    radius.Ericsson_ViG_Alive_Indicator  Ericsson-ViG-Alive-Indicator
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Alive_Indicator.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Alive-Indicator Length
    radius.Ericsson_ViG_Allowed_bandwidth  Ericsson-ViG-Allowed-bandwidth
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Allowed_bandwidth.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Allowed-bandwidth Length
    radius.Ericsson_ViG_Auth_DataRequest  Ericsson-ViG-Auth-DataRequest
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Auth_DataRequest.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Auth-DataRequest Length
    radius.Ericsson_ViG_Authentication_type  Ericsson-ViG-Authentication-type
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Authentication_type.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Authentication-type Length
    radius.Ericsson_ViG_Balance  Ericsson-ViG-Balance
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Balance.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Balance Length
    radius.Ericsson_ViG_Business_Agreement_Name  Ericsson-ViG-Business-Agreement-Name
        String
    radius.Ericsson_ViG_Business_Agreement_Name.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Business-Agreement-Name Length
    radius.Ericsson_ViG_CPN_NP  Ericsson-ViG-CPN-NP
        Unsigned 32-bit integer
    radius.Ericsson_ViG_CPN_NP.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-CPN-NP Length
    radius.Ericsson_ViG_CPN_PI  Ericsson-ViG-CPN-PI
        Unsigned 32-bit integer
    radius.Ericsson_ViG_CPN_PI.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-CPN-PI Length
    radius.Ericsson_ViG_CPN_SI  Ericsson-ViG-CPN-SI
        Unsigned 32-bit integer
    radius.Ericsson_ViG_CPN_SI.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-CPN-SI Length
    radius.Ericsson_ViG_CPN_TON  Ericsson-ViG-CPN-TON
        Unsigned 32-bit integer
    radius.Ericsson_ViG_CPN_TON.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-CPN-TON Length
    radius.Ericsson_ViG_CPN_digits  Ericsson-ViG-CPN-digits
        String
    radius.Ericsson_ViG_CPN_digits.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-CPN-digits Length
    radius.Ericsson_ViG_Call_Role  Ericsson-ViG-Call-Role
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Call_Role.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Call-Role Length
    radius.Ericsson_ViG_Called_ID  Ericsson-ViG-Called-ID
        String
    radius.Ericsson_ViG_Called_ID.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Called-ID Length
    radius.Ericsson_ViG_Called_Usr_Group_ID  Ericsson-ViG-Called-Usr-Group-ID
        String
    radius.Ericsson_ViG_Called_Usr_Group_ID.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Called-Usr-Group-ID Length
    radius.Ericsson_ViG_Called_Usr_Sub_Group_ID  Ericsson-ViG-Called-Usr-Sub-Group-ID
        String
    radius.Ericsson_ViG_Called_Usr_Sub_Group_ID.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Called-Usr-Sub-Group-ID Length
    radius.Ericsson_ViG_Calling_Email_address  Ericsson-ViG-Calling-Email-address
        String
    radius.Ericsson_ViG_Calling_Email_address.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Calling-Email-address Length
    radius.Ericsson_ViG_Calling_H323Id  Ericsson-ViG-Calling-H323Id
        String
    radius.Ericsson_ViG_Calling_H323Id.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Calling-H323Id Length
    radius.Ericsson_ViG_Calling_ID  Ericsson-ViG-Calling-ID
        String
    radius.Ericsson_ViG_Calling_ID.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Calling-ID Length
    radius.Ericsson_ViG_Calling_User_Group_ID  Ericsson-ViG-Calling-User-Group-ID
        String
    radius.Ericsson_ViG_Calling_User_Group_ID.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Calling-User-Group-ID Length
    radius.Ericsson_ViG_Calling_Usr_Sub_Group_ID  Ericsson-ViG-Calling-Usr-Sub-Group-ID
        String
    radius.Ericsson_ViG_Calling_Usr_Sub_Group_ID.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Calling-Usr-Sub-Group-ID Length
    radius.Ericsson_ViG_Calling_e164_number  Ericsson-ViG-Calling-e164-number
        String
    radius.Ericsson_ViG_Calling_e164_number.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Calling-e164-number Length
    radius.Ericsson_ViG_Charging_Case  Ericsson-ViG-Charging-Case
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Charging_Case.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Charging-Case Length
    radius.Ericsson_ViG_Codec  Ericsson-ViG-Codec
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Codec.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Codec Length
    radius.Ericsson_ViG_Currency  Ericsson-ViG-Currency
        String
    radius.Ericsson_ViG_Currency.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Currency Length
    radius.Ericsson_ViG_Currency_Quote  Ericsson-ViG-Currency-Quote
        String
    radius.Ericsson_ViG_Currency_Quote.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Currency-Quote Length
    radius.Ericsson_ViG_Data_media_rec_backward  Ericsson-ViG-Data-media-rec-backward
        String
    radius.Ericsson_ViG_Data_media_rec_backward.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Data-media-rec-backward Length
    radius.Ericsson_ViG_Data_media_rec_forward  Ericsson-ViG-Data-media-rec-forward
        String
    radius.Ericsson_ViG_Data_media_rec_forward.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Data-media-rec-forward Length
    radius.Ericsson_ViG_Dialled_Email_address  Ericsson-ViG-Dialled-Email-address
        String
    radius.Ericsson_ViG_Dialled_Email_address.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Dialled-Email-address Length
    radius.Ericsson_ViG_Dialled_H323Id  Ericsson-ViG-Dialled-H323Id
        String
    radius.Ericsson_ViG_Dialled_H323Id.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Dialled-H323Id Length
    radius.Ericsson_ViG_Dialled_e164_number  Ericsson-ViG-Dialled-e164-number
        String
    radius.Ericsson_ViG_Dialled_e164_number.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Dialled-e164-number Length
    radius.Ericsson_ViG_Dialled_num_NP  Ericsson-ViG-Dialled-num-NP
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Dialled_num_NP.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Dialled-num-NP Length
    radius.Ericsson_ViG_Dialled_num_TON  Ericsson-ViG-Dialled-num-TON
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Dialled_num_TON.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Dialled-num-TON Length
    radius.Ericsson_ViG_Dialled_num_digits  Ericsson-ViG-Dialled-num-digits
        String
    radius.Ericsson_ViG_Dialled_num_digits.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Dialled-num-digits Length
    radius.Ericsson_ViG_Digest_Attributes  Ericsson-ViG-Digest-Attributes
        Byte array
    radius.Ericsson_ViG_Digest_Attributes.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Digest-Attributes Length
    radius.Ericsson_ViG_Digest_Response  Ericsson-ViG-Digest-Response
        String
    radius.Ericsson_ViG_Digest_Response.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Digest-Response Length
    radius.Ericsson_ViG_Emergency_Call_Indicator  Ericsson-ViG-Emergency-Call-Indicator
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Emergency_Call_Indicator.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Emergency-Call-Indicator Length
    radius.Ericsson_ViG_Endpoint_Type  Ericsson-ViG-Endpoint-Type
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Endpoint_Type.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Endpoint-Type Length
    radius.Ericsson_ViG_Fax_media_rec_backward  Ericsson-ViG-Fax-media-rec-backward
        String
    radius.Ericsson_ViG_Fax_media_rec_backward.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Fax-media-rec-backward Length
    radius.Ericsson_ViG_Fax_media_rec_forward  Ericsson-ViG-Fax-media-rec-forward
        String
    radius.Ericsson_ViG_Fax_media_rec_forward.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Fax-media-rec-forward Length
    radius.Ericsson_ViG_Global_unique_call_ID  Ericsson-ViG-Global-unique-call-ID
        String
    radius.Ericsson_ViG_Global_unique_call_ID.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Global-unique-call-ID Length
    radius.Ericsson_ViG_Global_unique_service_ID  Ericsson-ViG-Global-unique-service-ID
        String
    radius.Ericsson_ViG_Global_unique_service_ID.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Global-unique-service-ID Length
    radius.Ericsson_ViG_IPT_Time_Stamp  Ericsson-ViG-IPT-Time-Stamp
        Unsigned 32-bit integer
    radius.Ericsson_ViG_IPT_Time_Stamp.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-IPT-Time-Stamp Length
    radius.Ericsson_ViG_Interim_interval  Ericsson-ViG-Interim-interval
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Interim_interval.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Interim-interval Length
    radius.Ericsson_ViG_Internal_Rel_reason_orig  Ericsson-ViG-Internal-Rel-reason-orig
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Internal_Rel_reason_orig.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Internal-Rel-reason-orig Length
    radius.Ericsson_ViG_Internal_Rel_reason_val  Ericsson-ViG-Internal-Rel-reason-val
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Internal_Rel_reason_val.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Internal-Rel-reason-val Length
    radius.Ericsson_ViG_Layer_identity  Ericsson-ViG-Layer-identity
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Layer_identity.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Layer-identity Length
    radius.Ericsson_ViG_Major_protocol_version  Ericsson-ViG-Major-protocol-version
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Major_protocol_version.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Major-protocol-version Length
    radius.Ericsson_ViG_Media_channel_count  Ericsson-ViG-Media-channel-count
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Media_channel_count.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Media-channel-count Length
    radius.Ericsson_ViG_Minor_protocol_version  Ericsson-ViG-Minor-protocol-version
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Minor_protocol_version.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Minor-protocol-version Length
    radius.Ericsson_ViG_Proxy_IP_Address  Ericsson-ViG-Proxy-IP-Address
        IPv4 address
    radius.Ericsson_ViG_Proxy_IP_Address.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Proxy-IP-Address Length
    radius.Ericsson_ViG_QoS_Class  Ericsson-ViG-QoS-Class
        Unsigned 32-bit integer
    radius.Ericsson_ViG_QoS_Class.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-QoS-Class Length
    radius.Ericsson_ViG_Re_selection_counter  Ericsson-ViG-Re-selection-counter
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Re_selection_counter.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Re-selection-counter Length
    radius.Ericsson_ViG_Redirecting_num_NP  Ericsson-ViG-Redirecting-num-NP
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Redirecting_num_NP.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Redirecting-num-NP Length
    radius.Ericsson_ViG_Redirecting_num_PI  Ericsson-ViG-Redirecting-num-PI
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Redirecting_num_PI.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Redirecting-num-PI Length
    radius.Ericsson_ViG_Redirecting_num_RFD  Ericsson-ViG-Redirecting-num-RFD
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Redirecting_num_RFD.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Redirecting-num-RFD Length
    radius.Ericsson_ViG_Redirecting_num_TON  Ericsson-ViG-Redirecting-num-TON
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Redirecting_num_TON.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Redirecting-num-TON Length
    radius.Ericsson_ViG_Redirecting_num_digits  Ericsson-ViG-Redirecting-num-digits
        String
    radius.Ericsson_ViG_Redirecting_num_digits.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Redirecting-num-digits Length
    radius.Ericsson_ViG_Rel_cause_class  Ericsson-ViG-Rel-cause-class
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Rel_cause_class.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Rel-cause-class Length
    radius.Ericsson_ViG_Rel_cause_coding_std  Ericsson-ViG-Rel-cause-coding-std
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Rel_cause_coding_std.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Rel-cause-coding-std Length
    radius.Ericsson_ViG_Rel_cause_location  Ericsson-ViG-Rel-cause-location
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Rel_cause_location.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Rel-cause-location Length
    radius.Ericsson_ViG_Rel_cause_value  Ericsson-ViG-Rel-cause-value
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Rel_cause_value.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Rel-cause-value Length
    radius.Ericsson_ViG_Rel_reason  Ericsson-ViG-Rel-reason
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Rel_reason.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Rel-reason Length
    radius.Ericsson_ViG_Remote_SK_UA_IP_Address  Ericsson-ViG-Remote-SK-UA-IP-Address
        IPv4 address
    radius.Ericsson_ViG_Remote_SK_UA_IP_Address.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Remote-SK-UA-IP-Address Length
    radius.Ericsson_ViG_Requested_bandwidth  Ericsson-ViG-Requested-bandwidth
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Requested_bandwidth.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Requested-bandwidth Length
    radius.Ericsson_ViG_Routed_Email_address  Ericsson-ViG-Routed-Email-address
        String
    radius.Ericsson_ViG_Routed_Email_address.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Routed-Email-address Length
    radius.Ericsson_ViG_Routed_H323Id  Ericsson-ViG-Routed-H323Id
        String
    radius.Ericsson_ViG_Routed_H323Id.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Routed-H323Id Length
    radius.Ericsson_ViG_Routed_e164_number  Ericsson-ViG-Routed-e164-number
        String
    radius.Ericsson_ViG_Routed_e164_number.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Routed-e164-number Length
    radius.Ericsson_ViG_Routing_num_NP  Ericsson-ViG-Routing-num-NP
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Routing_num_NP.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Routing-num-NP Length
    radius.Ericsson_ViG_Routing_num_TON  Ericsson-ViG-Routing-num-TON
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Routing_num_TON.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Routing-num-TON Length
    radius.Ericsson_ViG_Routing_num_digits  Ericsson-ViG-Routing-num-digits
        String
    radius.Ericsson_ViG_Routing_num_digits.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Routing-num-digits Length
    radius.Ericsson_ViG_Routing_tariff  Ericsson-ViG-Routing-tariff
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Routing_tariff.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Routing-tariff Length
    radius.Ericsson_ViG_SA_IP_address  Ericsson-ViG-SA-IP-address
        IPv4 address
    radius.Ericsson_ViG_SA_IP_address.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-SA-IP-address Length
    radius.Ericsson_ViG_SK_IP_address  Ericsson-ViG-SK-IP-address
        IPv4 address
    radius.Ericsson_ViG_SK_IP_address.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-SK-IP-address Length
    radius.Ericsson_ViG_Sequence_Number  Ericsson-ViG-Sequence-Number
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Sequence_Number.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Sequence-Number Length
    radius.Ericsson_ViG_Service_Description  Ericsson-ViG-Service-Description
        String
    radius.Ericsson_ViG_Service_Description.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Service-Description Length
    radius.Ericsson_ViG_Service_Duration  Ericsson-ViG-Service-Duration
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Service_Duration.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Service-Duration Length
    radius.Ericsson_ViG_Service_Exe_Rslt_Desc  Ericsson-ViG-Service-Exe-Rslt-Desc
        String
    radius.Ericsson_ViG_Service_Exe_Rslt_Desc.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Service-Exe-Rslt-Desc Length
    radius.Ericsson_ViG_Service_Execution_Result  Ericsson-ViG-Service-Execution-Result
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Service_Execution_Result.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Service-Execution-Result Length
    radius.Ericsson_ViG_Service_ID  Ericsson-ViG-Service-ID
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Service_ID.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Service-ID Length
    radius.Ericsson_ViG_Service_Name  Ericsson-ViG-Service-Name
        String
    radius.Ericsson_ViG_Service_Name.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Service-Name Length
    radius.Ericsson_ViG_Service_Specific_Info  Ericsson-ViG-Service-Specific-Info
        String
    radius.Ericsson_ViG_Service_Specific_Info.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Service-Specific-Info Length
    radius.Ericsson_ViG_Session_ringing_duration  Ericsson-ViG-Session-ringing-duration
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Session_ringing_duration.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Session-ringing-duration Length
    radius.Ericsson_ViG_Session_routing_duration  Ericsson-ViG-Session-routing-duration
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Session_routing_duration.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Session-routing-duration Length
    radius.Ericsson_ViG_Site  Ericsson-ViG-Site
        String
    radius.Ericsson_ViG_Site.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Site Length
    radius.Ericsson_ViG_SiteKeeper_name  Ericsson-ViG-SiteKeeper-name
        String
    radius.Ericsson_ViG_SiteKeeper_name.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-SiteKeeper-name Length
    radius.Ericsson_ViG_TTL_Absolute  Ericsson-ViG-TTL-Absolute
        Unsigned 32-bit integer
    radius.Ericsson_ViG_TTL_Absolute.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-TTL-Absolute Length
    radius.Ericsson_ViG_TTL_Start_Event  Ericsson-ViG-TTL-Start-Event
        Unsigned 32-bit integer
    radius.Ericsson_ViG_TTL_Start_Event.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-TTL-Start-Event Length
    radius.Ericsson_ViG_TTL_relative  Ericsson-ViG-TTL-relative
        Unsigned 32-bit integer
    radius.Ericsson_ViG_TTL_relative.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-TTL-relative Length
    radius.Ericsson_ViG_Terminal_Type  Ericsson-ViG-Terminal-Type
        String
    radius.Ericsson_ViG_Terminal_Type.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Terminal-Type Length
    radius.Ericsson_ViG_Test_Call_Indicator  Ericsson-ViG-Test-Call-Indicator
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Test_Call_Indicator.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Test-Call-Indicator Length
    radius.Ericsson_ViG_Time_stamp_DST  Ericsson-ViG-Time-stamp-DST
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Time_stamp_DST.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Time-stamp-DST Length
    radius.Ericsson_ViG_Time_stamp_TZ  Ericsson-ViG-Time-stamp-TZ
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Time_stamp_TZ.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Time-stamp-TZ Length
    radius.Ericsson_ViG_Time_stamp_UTC  Ericsson-ViG-Time-stamp-UTC
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Time_stamp_UTC.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Time-stamp-UTC Length
    radius.Ericsson_ViG_Translated_ID  Ericsson-ViG-Translated-ID
        String
    radius.Ericsson_ViG_Translated_ID.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Translated-ID Length
    radius.Ericsson_ViG_Trusted_access  Ericsson-ViG-Trusted-access
        Unsigned 32-bit integer
    radius.Ericsson_ViG_Trusted_access.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Trusted-access Length
    radius.Ericsson_ViG_UA_IP_address  Ericsson-ViG-UA-IP-address
        IPv4 address
    radius.Ericsson_ViG_UA_IP_address.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-UA-IP-address Length
    radius.Ericsson_ViG_User_ID  Ericsson-ViG-User-ID
        String
    radius.Ericsson_ViG_User_ID.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-User-ID Length
    radius.Ericsson_ViG_User_Name_Info  Ericsson-ViG-User-Name-Info
        Unsigned 32-bit integer
    radius.Ericsson_ViG_User_Name_Info.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-User-Name-Info Length
    radius.Ericsson_ViG_User_agent_group_name  Ericsson-ViG-User-agent-group-name
        String
    radius.Ericsson_ViG_User_agent_group_name.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-User-agent-group-name Length
    radius.Ericsson_ViG_User_agent_name  Ericsson-ViG-User-agent-name
        String
    radius.Ericsson_ViG_User_agent_name.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-User-agent-name Length
    radius.Ericsson_ViG_User_name  Ericsson-ViG-User-name
        String
    radius.Ericsson_ViG_User_name.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-User-name Length
    radius.Ericsson_ViG_Video_media_rec_backward  Ericsson-ViG-Video-media-rec-backward
        String
    radius.Ericsson_ViG_Video_media_rec_backward.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Video-media-rec-backward Length
    radius.Ericsson_ViG_Video_media_rec_forward  Ericsson-ViG-Video-media-rec-forward
        String
    radius.Ericsson_ViG_Video_media_rec_forward.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Video-media-rec-forward Length
    radius.Ericsson_ViG_Voice_media_rec_backward  Ericsson-ViG-Voice-media-rec-backward
        String
    radius.Ericsson_ViG_Voice_media_rec_backward.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Voice-media-rec-backward Length
    radius.Ericsson_ViG_Voice_media_rec_forward  Ericsson-ViG-Voice-media-rec-forward
        String
    radius.Ericsson_ViG_Voice_media_rec_forward.len  Length
        Unsigned 8-bit integer
        Ericsson-ViG-Voice-media-rec-forward Length
    radius.Error_Cause  Error-Cause
        Unsigned 32-bit integer
    radius.Error_Cause.len  Length
        Unsigned 8-bit integer
        Error-Cause Length
    radius.Event_Timestamp  Event-Timestamp
        Date/Time stamp
    radius.Event_Timestamp.len  Length
        Unsigned 8-bit integer
        Event-Timestamp Length
    radius.Extreme_CLI_Authorization  Extreme-CLI-Authorization
        Unsigned 32-bit integer
    radius.Extreme_CLI_Authorization.len  Length
        Unsigned 8-bit integer
        Extreme-CLI-Authorization Length
    radius.Extreme_Netlogin_Only  Extreme-Netlogin-Only
        Unsigned 32-bit integer
    radius.Extreme_Netlogin_Only.len  Length
        Unsigned 8-bit integer
        Extreme-Netlogin-Only Length
    radius.Extreme_Netlogin_Url  Extreme-Netlogin-Url
        String
    radius.Extreme_Netlogin_Url.len  Length
        Unsigned 8-bit integer
        Extreme-Netlogin-Url Length
    radius.Extreme_Netlogin_Url_Desc  Extreme-Netlogin-Url-Desc
        String
    radius.Extreme_Netlogin_Url_Desc.len  Length
        Unsigned 8-bit integer
        Extreme-Netlogin-Url-Desc Length
    radius.Extreme_Netlogin_Vlan  Extreme-Netlogin-Vlan
        String
    radius.Extreme_Netlogin_Vlan.len  Length
        Unsigned 8-bit integer
        Extreme-Netlogin-Vlan Length
    radius.Extreme_Netlogin_Vlan_Tag  Extreme-Netlogin-Vlan-Tag
        Unsigned 32-bit integer
    radius.Extreme_Netlogin_Vlan_Tag.len  Length
        Unsigned 8-bit integer
        Extreme-Netlogin-Vlan-Tag Length
    radius.Extreme_Shell_Command  Extreme-Shell-Command
        String
    radius.Extreme_Shell_Command.len  Length
        Unsigned 8-bit integer
        Extreme-Shell-Command Length
    radius.Extreme_User_Location  Extreme-User-Location
        String
    radius.Extreme_User_Location.len  Length
        Unsigned 8-bit integer
        Extreme-User-Location Length
    radius.Filter_Id  Filter-Id
        String
    radius.Filter_Id.len  Length
        Unsigned 8-bit integer
        Filter-Id Length
    radius.Fortinet_Access_Profile  Fortinet-Access-Profile
        String
    radius.Fortinet_Access_Profile.len  Length
        Unsigned 8-bit integer
        Fortinet-Access-Profile Length
    radius.Fortinet_Client_IP_Address  Fortinet-Client-IP-Address
        IPv4 address
    radius.Fortinet_Client_IP_Address.len  Length
        Unsigned 8-bit integer
        Fortinet-Client-IP-Address Length
    radius.Fortinet_Client_IPv6_Address  Fortinet-Client-IPv6-Address
        Byte array
    radius.Fortinet_Client_IPv6_Address.len  Length
        Unsigned 8-bit integer
        Fortinet-Client-IPv6-Address Length
    radius.Fortinet_Group_Name  Fortinet-Group-Name
        String
    radius.Fortinet_Group_Name.len  Length
        Unsigned 8-bit integer
        Fortinet-Group-Name Length
    radius.Fortinet_Interface_Name  Fortinet-Interface-Name
        String
    radius.Fortinet_Interface_Name.len  Length
        Unsigned 8-bit integer
        Fortinet-Interface-Name Length
    radius.Fortinet_Vdom_Name  Fortinet-Vdom-Name
        String
    radius.Fortinet_Vdom_Name.len  Length
        Unsigned 8-bit integer
        Fortinet-Vdom-Name Length
    radius.Forward_Policy  Forward-Policy
        String
    radius.Forward_Policy.len  Length
        Unsigned 8-bit integer
        Forward-Policy Length
    radius.Foundry_Command_Exception_Flag  Foundry-Command-Exception-Flag
        Unsigned 32-bit integer
    radius.Foundry_Command_Exception_Flag.len  Length
        Unsigned 8-bit integer
        Foundry-Command-Exception-Flag Length
    radius.Foundry_Command_String  Foundry-Command-String
        String
    radius.Foundry_Command_String.len  Length
        Unsigned 8-bit integer
        Foundry-Command-String Length
    radius.Foundry_INM_Privilege  Foundry-INM-Privilege
        Unsigned 32-bit integer
    radius.Foundry_INM_Privilege.len  Length
        Unsigned 8-bit integer
        Foundry-INM-Privilege Length
    radius.Foundry_Privilege_Level  Foundry-Privilege-Level
        Unsigned 32-bit integer
    radius.Foundry_Privilege_Level.len  Length
        Unsigned 8-bit integer
        Foundry-Privilege-Level Length
    radius.Framed-IP-Address  Framed-IP-Address
        IPv4 address
    radius.Framed-IPX-Network  Framed-IPX-Network
        IPX network or server name
    radius.Framed_AppleTalk_Link  Framed-AppleTalk-Link
        Unsigned 32-bit integer
    radius.Framed_AppleTalk_Link.len  Length
        Unsigned 8-bit integer
        Framed-AppleTalk-Link Length
    radius.Framed_AppleTalk_Network  Framed-AppleTalk-Network
        Unsigned 32-bit integer
    radius.Framed_AppleTalk_Network.len  Length
        Unsigned 8-bit integer
        Framed-AppleTalk-Network Length
    radius.Framed_AppleTalk_Zone  Framed-AppleTalk-Zone
        String
    radius.Framed_AppleTalk_Zone.len  Length
        Unsigned 8-bit integer
        Framed-AppleTalk-Zone Length
    radius.Framed_Compression  Framed-Compression
        Unsigned 32-bit integer
    radius.Framed_Compression.len  Length
        Unsigned 8-bit integer
        Framed-Compression Length
    radius.Framed_IPX_Network  Framed-IPX-Network
        IPv4 address
    radius.Framed_IPX_Network.len  Length
        Unsigned 8-bit integer
        Framed-IPX-Network Length
    radius.Framed_IP_Address  Framed-IP-Address
        IPv4 address
    radius.Framed_IP_Address.len  Length
        Unsigned 8-bit integer
        Framed-IP-Address Length
    radius.Framed_IP_Netmask  Framed-IP-Netmask
        IPv4 address
    radius.Framed_IP_Netmask.len  Length
        Unsigned 8-bit integer
        Framed-IP-Netmask Length
    radius.Framed_IPv6_Pool  Framed-IPv6-Pool
        String
    radius.Framed_IPv6_Pool.len  Length
        Unsigned 8-bit integer
        Framed-IPv6-Pool Length
    radius.Framed_IPv6_Prefix  Framed-IPv6-Prefix
        Byte array
    radius.Framed_IPv6_Prefix.len  Length
        Unsigned 8-bit integer
        Framed-IPv6-Prefix Length
    radius.Framed_IPv6_Route  Framed-IPv6-Route
        String
    radius.Framed_IPv6_Route.len  Length
        Unsigned 8-bit integer
        Framed-IPv6-Route Length
    radius.Framed_Interface_Id  Framed-Interface-Id
        Byte array
    radius.Framed_Interface_Id.len  Length
        Unsigned 8-bit integer
        Framed-Interface-Id Length
    radius.Framed_MTU  Framed-MTU
        Unsigned 32-bit integer
    radius.Framed_MTU.len  Length
        Unsigned 8-bit integer
        Framed-MTU Length
    radius.Framed_Pool  Framed-Pool
        String
    radius.Framed_Pool.len  Length
        Unsigned 8-bit integer
        Framed-Pool Length
    radius.Framed_Protocol  Framed-Protocol
        Unsigned 32-bit integer
    radius.Framed_Protocol.len  Length
        Unsigned 8-bit integer
        Framed-Protocol Length
    radius.Framed_Route  Framed-Route
        String
    radius.Framed_Route.len  Length
        Unsigned 8-bit integer
        Framed-Route Length
    radius.Framed_Routing  Framed-Routing
        Unsigned 32-bit integer
    radius.Framed_Routing.len  Length
        Unsigned 8-bit integer
        Framed-Routing Length
    radius.FreeRADIUS_Proxied_To  FreeRADIUS-Proxied-To
        IPv4 address
    radius.FreeRADIUS_Proxied_To.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Proxied-To Length
    radius.FreeRADIUS_Queue_Len_Acct  FreeRADIUS-Queue-Len-Acct
        Unsigned 32-bit integer
    radius.FreeRADIUS_Queue_Len_Acct.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Queue-Len-Acct Length
    radius.FreeRADIUS_Queue_Len_Auth  FreeRADIUS-Queue-Len-Auth
        Unsigned 32-bit integer
    radius.FreeRADIUS_Queue_Len_Auth.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Queue-Len-Auth Length
    radius.FreeRADIUS_Queue_Len_Detail  FreeRADIUS-Queue-Len-Detail
        Unsigned 32-bit integer
    radius.FreeRADIUS_Queue_Len_Detail.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Queue-Len-Detail Length
    radius.FreeRADIUS_Queue_Len_Internal  FreeRADIUS-Queue-Len-Internal
        Unsigned 32-bit integer
    radius.FreeRADIUS_Queue_Len_Internal.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Queue-Len-Internal Length
    radius.FreeRADIUS_Queue_Len_Proxy  FreeRADIUS-Queue-Len-Proxy
        Unsigned 32-bit integer
    radius.FreeRADIUS_Queue_Len_Proxy.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Queue-Len-Proxy Length
    radius.FreeRADIUS_Server_EMA_USEC_Window_1  FreeRADIUS-Server-EMA-USEC-Window-1
        Unsigned 32-bit integer
    radius.FreeRADIUS_Server_EMA_USEC_Window_1.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Server-EMA-USEC-Window-1 Length
    radius.FreeRADIUS_Server_EMA_USEC_Window_10  FreeRADIUS-Server-EMA-USEC-Window-10
        Unsigned 32-bit integer
    radius.FreeRADIUS_Server_EMA_USEC_Window_10.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Server-EMA-USEC-Window-10 Length
    radius.FreeRADIUS_Server_EMA_Window  FreeRADIUS-Server-EMA-Window
        Unsigned 32-bit integer
    radius.FreeRADIUS_Server_EMA_Window.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Server-EMA-Window Length
    radius.FreeRADIUS_Statistics_Type  FreeRADIUS-Statistics-Type
        Unsigned 32-bit integer
    radius.FreeRADIUS_Statistics_Type.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Statistics-Type Length
    radius.FreeRADIUS_Stats_Client_IP_Address  FreeRADIUS-Stats-Client-IP-Address
        IPv4 address
    radius.FreeRADIUS_Stats_Client_IP_Address.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Stats-Client-IP-Address Length
    radius.FreeRADIUS_Stats_Client_Netmask  FreeRADIUS-Stats-Client-Netmask
        Unsigned 32-bit integer
    radius.FreeRADIUS_Stats_Client_Netmask.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Stats-Client-Netmask Length
    radius.FreeRADIUS_Stats_Client_Number  FreeRADIUS-Stats-Client-Number
        Unsigned 32-bit integer
    radius.FreeRADIUS_Stats_Client_Number.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Stats-Client-Number Length
    radius.FreeRADIUS_Stats_HUP_Time  FreeRADIUS-Stats-HUP-Time
        Date/Time stamp
    radius.FreeRADIUS_Stats_HUP_Time.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Stats-HUP-Time Length
    radius.FreeRADIUS_Stats_Server_IP_Address  FreeRADIUS-Stats-Server-IP-Address
        IPv4 address
    radius.FreeRADIUS_Stats_Server_IP_Address.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Stats-Server-IP-Address Length
    radius.FreeRADIUS_Stats_Server_Outstanding_Requests  FreeRADIUS-Stats-Server-Outstanding-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Stats_Server_Outstanding_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Stats-Server-Outstanding-Requests Length
    radius.FreeRADIUS_Stats_Server_Port  FreeRADIUS-Stats-Server-Port
        Unsigned 32-bit integer
    radius.FreeRADIUS_Stats_Server_Port.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Stats-Server-Port Length
    radius.FreeRADIUS_Stats_Server_State  FreeRADIUS-Stats-Server-State
        Unsigned 32-bit integer
    radius.FreeRADIUS_Stats_Server_State.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Stats-Server-State Length
    radius.FreeRADIUS_Stats_Server_Time_Of_Death  FreeRADIUS-Stats-Server-Time-Of-Death
        Date/Time stamp
    radius.FreeRADIUS_Stats_Server_Time_Of_Death.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Stats-Server-Time-Of-Death Length
    radius.FreeRADIUS_Stats_Server_Time_Of_Life  FreeRADIUS-Stats-Server-Time-Of-Life
        Date/Time stamp
    radius.FreeRADIUS_Stats_Server_Time_Of_Life.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Stats-Server-Time-Of-Life Length
    radius.FreeRADIUS_Stats_Start_Time  FreeRADIUS-Stats-Start-Time
        Date/Time stamp
    radius.FreeRADIUS_Stats_Start_Time.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Stats-Start-Time Length
    radius.FreeRADIUS_Total_Access_Accepts  FreeRADIUS-Total-Access-Accepts
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Access_Accepts.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Access-Accepts Length
    radius.FreeRADIUS_Total_Access_Challenges  FreeRADIUS-Total-Access-Challenges
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Access_Challenges.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Access-Challenges Length
    radius.FreeRADIUS_Total_Access_Rejects  FreeRADIUS-Total-Access-Rejects
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Access_Rejects.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Access-Rejects Length
    radius.FreeRADIUS_Total_Access_Requests  FreeRADIUS-Total-Access-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Access_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Access-Requests Length
    radius.FreeRADIUS_Total_Accounting_Requests  FreeRADIUS-Total-Accounting-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Accounting_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Accounting-Requests Length
    radius.FreeRADIUS_Total_Accounting_Responses  FreeRADIUS-Total-Accounting-Responses
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Accounting_Responses.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Accounting-Responses Length
    radius.FreeRADIUS_Total_Acct_Dropped_Requests  FreeRADIUS-Total-Acct-Dropped-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Acct_Dropped_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Acct-Dropped-Requests Length
    radius.FreeRADIUS_Total_Acct_Duplicate_Requests  FreeRADIUS-Total-Acct-Duplicate-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Acct_Duplicate_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Acct-Duplicate-Requests Length
    radius.FreeRADIUS_Total_Acct_Invalid_Requests  FreeRADIUS-Total-Acct-Invalid-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Acct_Invalid_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Acct-Invalid-Requests Length
    radius.FreeRADIUS_Total_Acct_Malformed_Requests  FreeRADIUS-Total-Acct-Malformed-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Acct_Malformed_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Acct-Malformed-Requests Length
    radius.FreeRADIUS_Total_Acct_Unknown_Types  FreeRADIUS-Total-Acct-Unknown-Types
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Acct_Unknown_Types.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Acct-Unknown-Types Length
    radius.FreeRADIUS_Total_Auth_Dropped_Requests  FreeRADIUS-Total-Auth-Dropped-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Auth_Dropped_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Auth-Dropped-Requests Length
    radius.FreeRADIUS_Total_Auth_Duplicate_Requests  FreeRADIUS-Total-Auth-Duplicate-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Auth_Duplicate_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Auth-Duplicate-Requests Length
    radius.FreeRADIUS_Total_Auth_Invalid_Requests  FreeRADIUS-Total-Auth-Invalid-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Auth_Invalid_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Auth-Invalid-Requests Length
    radius.FreeRADIUS_Total_Auth_Malformed_Requests  FreeRADIUS-Total-Auth-Malformed-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Auth_Malformed_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Auth-Malformed-Requests Length
    radius.FreeRADIUS_Total_Auth_Responses  FreeRADIUS-Total-Auth-Responses
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Auth_Responses.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Auth-Responses Length
    radius.FreeRADIUS_Total_Auth_Unknown_Types  FreeRADIUS-Total-Auth-Unknown-Types
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Auth_Unknown_Types.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Auth-Unknown-Types Length
    radius.FreeRADIUS_Total_Proxy_Access_Accepts  FreeRADIUS-Total-Proxy-Access-Accepts
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Access_Accepts.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Access-Accepts Length
    radius.FreeRADIUS_Total_Proxy_Access_Challenges  FreeRADIUS-Total-Proxy-Access-Challenges
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Access_Challenges.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Access-Challenges Length
    radius.FreeRADIUS_Total_Proxy_Access_Rejects  FreeRADIUS-Total-Proxy-Access-Rejects
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Access_Rejects.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Access-Rejects Length
    radius.FreeRADIUS_Total_Proxy_Access_Requests  FreeRADIUS-Total-Proxy-Access-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Access_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Access-Requests Length
    radius.FreeRADIUS_Total_Proxy_Accounting_Requests  FreeRADIUS-Total-Proxy-Accounting-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Accounting_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Accounting-Requests Length
    radius.FreeRADIUS_Total_Proxy_Accounting_Responses  FreeRADIUS-Total-Proxy-Accounting-Responses
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Accounting_Responses.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Accounting-Responses Length
    radius.FreeRADIUS_Total_Proxy_Acct_Dropped_Requests  FreeRADIUS-Total-Proxy-Acct-Dropped-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Acct_Dropped_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Acct-Dropped-Requests Length
    radius.FreeRADIUS_Total_Proxy_Acct_Duplicate_Requests  FreeRADIUS-Total-Proxy-Acct-Duplicate-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Acct_Duplicate_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Acct-Duplicate-Requests Length
    radius.FreeRADIUS_Total_Proxy_Acct_Invalid_Requests  FreeRADIUS-Total-Proxy-Acct-Invalid-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Acct_Invalid_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Acct-Invalid-Requests Length
    radius.FreeRADIUS_Total_Proxy_Acct_Malformed_Requests  FreeRADIUS-Total-Proxy-Acct-Malformed-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Acct_Malformed_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Acct-Malformed-Requests Length
    radius.FreeRADIUS_Total_Proxy_Acct_Unknown_Types  FreeRADIUS-Total-Proxy-Acct-Unknown-Types
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Acct_Unknown_Types.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Acct-Unknown-Types Length
    radius.FreeRADIUS_Total_Proxy_Auth_Dropped_Requests  FreeRADIUS-Total-Proxy-Auth-Dropped-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Auth_Dropped_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Auth-Dropped-Requests Length
    radius.FreeRADIUS_Total_Proxy_Auth_Duplicate_Requests  FreeRADIUS-Total-Proxy-Auth-Duplicate-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Auth_Duplicate_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Auth-Duplicate-Requests Length
    radius.FreeRADIUS_Total_Proxy_Auth_Invalid_Requests  FreeRADIUS-Total-Proxy-Auth-Invalid-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Auth_Invalid_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Auth-Invalid-Requests Length
    radius.FreeRADIUS_Total_Proxy_Auth_Malformed_Requests  FreeRADIUS-Total-Proxy-Auth-Malformed-Requests
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Auth_Malformed_Requests.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Auth-Malformed-Requests Length
    radius.FreeRADIUS_Total_Proxy_Auth_Responses  FreeRADIUS-Total-Proxy-Auth-Responses
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Auth_Responses.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Auth-Responses Length
    radius.FreeRADIUS_Total_Proxy_Auth_Unknown_Types  FreeRADIUS-Total-Proxy-Auth-Unknown-Types
        Unsigned 32-bit integer
    radius.FreeRADIUS_Total_Proxy_Auth_Unknown_Types.len  Length
        Unsigned 8-bit integer
        FreeRADIUS-Total-Proxy-Auth-Unknown-Types Length
    radius.Freeswitch_AMAFlags  Freeswitch-AMAFlags
        Unsigned 32-bit integer
    radius.Freeswitch_AMAFlags.len  Length
        Unsigned 8-bit integer
        Freeswitch-AMAFlags Length
    radius.Freeswitch_AVPair  Freeswitch-AVPair
        String
    radius.Freeswitch_AVPair.len  Length
        Unsigned 8-bit integer
        Freeswitch-AVPair Length
    radius.Freeswitch_Ani  Freeswitch-Ani
        String
    radius.Freeswitch_Ani.len  Length
        Unsigned 8-bit integer
        Freeswitch-Ani Length
    radius.Freeswitch_Aniii  Freeswitch-Aniii
        String
    radius.Freeswitch_Aniii.len  Length
        Unsigned 8-bit integer
        Freeswitch-Aniii Length
    radius.Freeswitch_Billusec  Freeswitch-Billusec
        Unsigned 32-bit integer
    radius.Freeswitch_Billusec.len  Length
        Unsigned 8-bit integer
        Freeswitch-Billusec Length
    radius.Freeswitch_CLID  Freeswitch-CLID
        String
    radius.Freeswitch_CLID.len  Length
        Unsigned 8-bit integer
        Freeswitch-CLID Length
    radius.Freeswitch_Callanswerdate  Freeswitch-Callanswerdate
        String
    radius.Freeswitch_Callanswerdate.len  Length
        Unsigned 8-bit integer
        Freeswitch-Callanswerdate Length
    radius.Freeswitch_Callenddate  Freeswitch-Callenddate
        String
    radius.Freeswitch_Callenddate.len  Length
        Unsigned 8-bit integer
        Freeswitch-Callenddate Length
    radius.Freeswitch_Callstartdate  Freeswitch-Callstartdate
        String
    radius.Freeswitch_Callstartdate.len  Length
        Unsigned 8-bit integer
        Freeswitch-Callstartdate Length
    radius.Freeswitch_Calltransferdate  Freeswitch-Calltransferdate
        String
    radius.Freeswitch_Calltransferdate.len  Length
        Unsigned 8-bit integer
        Freeswitch-Calltransferdate Length
    radius.Freeswitch_Context  Freeswitch-Context
        String
    radius.Freeswitch_Context.len  Length
        Unsigned 8-bit integer
        Freeswitch-Context Length
    radius.Freeswitch_Dialplan  Freeswitch-Dialplan
        String
    radius.Freeswitch_Dialplan.len  Length
        Unsigned 8-bit integer
        Freeswitch-Dialplan Length
    radius.Freeswitch_Disposition  Freeswitch-Disposition
        String
    radius.Freeswitch_Disposition.len  Length
        Unsigned 8-bit integer
        Freeswitch-Disposition Length
    radius.Freeswitch_Dst  Freeswitch-Dst
        String
    radius.Freeswitch_Dst.len  Length
        Unsigned 8-bit integer
        Freeswitch-Dst Length
    radius.Freeswitch_Dst_Channel  Freeswitch-Dst-Channel
        String
    radius.Freeswitch_Dst_Channel.len  Length
        Unsigned 8-bit integer
        Freeswitch-Dst-Channel Length
    radius.Freeswitch_Hangupcause  Freeswitch-Hangupcause
        Unsigned 32-bit integer
    radius.Freeswitch_Hangupcause.len  Length
        Unsigned 8-bit integer
        Freeswitch-Hangupcause Length
    radius.Freeswitch_Lastapp  Freeswitch-Lastapp
        String
    radius.Freeswitch_Lastapp.len  Length
        Unsigned 8-bit integer
        Freeswitch-Lastapp Length
    radius.Freeswitch_Lastdata  Freeswitch-Lastdata
        String
    radius.Freeswitch_Lastdata.len  Length
        Unsigned 8-bit integer
        Freeswitch-Lastdata Length
    radius.Freeswitch_RDNIS  Freeswitch-RDNIS
        String
    radius.Freeswitch_RDNIS.len  Length
        Unsigned 8-bit integer
        Freeswitch-RDNIS Length
    radius.Freeswitch_Signalbond  Freeswitch-Signalbond
        String
    radius.Freeswitch_Signalbond.len  Length
        Unsigned 8-bit integer
        Freeswitch-Signalbond Length
    radius.Freeswitch_Source  Freeswitch-Source
        String
    radius.Freeswitch_Source.len  Length
        Unsigned 8-bit integer
        Freeswitch-Source Length
    radius.Freeswitch_Src  Freeswitch-Src
        String
    radius.Freeswitch_Src.len  Length
        Unsigned 8-bit integer
        Freeswitch-Src Length
    radius.Freeswitch_Src_Channel  Freeswitch-Src-Channel
        String
    radius.Freeswitch_Src_Channel.len  Length
        Unsigned 8-bit integer
        Freeswitch-Src-Channel Length
    radius.Gandalf_Around_The_Corner  Gandalf-Around-The-Corner
        Unsigned 32-bit integer
    radius.Gandalf_Around_The_Corner.len  Length
        Unsigned 8-bit integer
        Gandalf-Around-The-Corner Length
    radius.Gandalf_Authentication_String  Gandalf-Authentication-String
        String
    radius.Gandalf_Authentication_String.len  Length
        Unsigned 8-bit integer
        Gandalf-Authentication-String Length
    radius.Gandalf_Calling_Line_ID_1  Gandalf-Calling-Line-ID-1
        String
    radius.Gandalf_Calling_Line_ID_1.len  Length
        Unsigned 8-bit integer
        Gandalf-Calling-Line-ID-1 Length
    radius.Gandalf_Calling_Line_ID_2  Gandalf-Calling-Line-ID-2
        String
    radius.Gandalf_Calling_Line_ID_2.len  Length
        Unsigned 8-bit integer
        Gandalf-Calling-Line-ID-2 Length
    radius.Gandalf_Channel_Group_Name_1  Gandalf-Channel-Group-Name-1
        String
    radius.Gandalf_Channel_Group_Name_1.len  Length
        Unsigned 8-bit integer
        Gandalf-Channel-Group-Name-1 Length
    radius.Gandalf_Channel_Group_Name_2  Gandalf-Channel-Group-Name-2
        String
    radius.Gandalf_Channel_Group_Name_2.len  Length
        Unsigned 8-bit integer
        Gandalf-Channel-Group-Name-2 Length
    radius.Gandalf_Compression_Status  Gandalf-Compression-Status
        Unsigned 32-bit integer
    radius.Gandalf_Compression_Status.len  Length
        Unsigned 8-bit integer
        Gandalf-Compression-Status Length
    radius.Gandalf_Dial_Prefix_Name_1  Gandalf-Dial-Prefix-Name-1
        String
    radius.Gandalf_Dial_Prefix_Name_1.len  Length
        Unsigned 8-bit integer
        Gandalf-Dial-Prefix-Name-1 Length
    radius.Gandalf_Dial_Prefix_Name_2  Gandalf-Dial-Prefix-Name-2
        String
    radius.Gandalf_Dial_Prefix_Name_2.len  Length
        Unsigned 8-bit integer
        Gandalf-Dial-Prefix-Name-2 Length
    radius.Gandalf_Fwd_Broadcast_In  Gandalf-Fwd-Broadcast-In
        Unsigned 32-bit integer
    radius.Gandalf_Fwd_Broadcast_In.len  Length
        Unsigned 8-bit integer
        Gandalf-Fwd-Broadcast-In Length
    radius.Gandalf_Fwd_Broadcast_Out  Gandalf-Fwd-Broadcast-Out
        Unsigned 32-bit integer
    radius.Gandalf_Fwd_Broadcast_Out.len  Length
        Unsigned 8-bit integer
        Gandalf-Fwd-Broadcast-Out Length
    radius.Gandalf_Fwd_Multicast_In  Gandalf-Fwd-Multicast-In
        Unsigned 32-bit integer
    radius.Gandalf_Fwd_Multicast_In.len  Length
        Unsigned 8-bit integer
        Gandalf-Fwd-Multicast-In Length
    radius.Gandalf_Fwd_Multicast_Out  Gandalf-Fwd-Multicast-Out
        Unsigned 32-bit integer
    radius.Gandalf_Fwd_Multicast_Out.len  Length
        Unsigned 8-bit integer
        Gandalf-Fwd-Multicast-Out Length
    radius.Gandalf_Fwd_Unicast_In  Gandalf-Fwd-Unicast-In
        Unsigned 32-bit integer
    radius.Gandalf_Fwd_Unicast_In.len  Length
        Unsigned 8-bit integer
        Gandalf-Fwd-Unicast-In Length
    radius.Gandalf_Fwd_Unicast_Out  Gandalf-Fwd-Unicast-Out
        Unsigned 32-bit integer
    radius.Gandalf_Fwd_Unicast_Out.len  Length
        Unsigned 8-bit integer
        Gandalf-Fwd-Unicast-Out Length
    radius.Gandalf_Hunt_Group  Gandalf-Hunt-Group
        String
    radius.Gandalf_Hunt_Group.len  Length
        Unsigned 8-bit integer
        Gandalf-Hunt-Group Length
    radius.Gandalf_IPX_Spoofing_State  Gandalf-IPX-Spoofing-State
        Unsigned 32-bit integer
    radius.Gandalf_IPX_Spoofing_State.len  Length
        Unsigned 8-bit integer
        Gandalf-IPX-Spoofing-State Length
    radius.Gandalf_IPX_Watchdog_Spoof  Gandalf-IPX-Watchdog-Spoof
        Unsigned 32-bit integer
    radius.Gandalf_IPX_Watchdog_Spoof.len  Length
        Unsigned 8-bit integer
        Gandalf-IPX-Watchdog-Spoof Length
    radius.Gandalf_Min_Outgoing_Bearer  Gandalf-Min-Outgoing-Bearer
        Unsigned 32-bit integer
    radius.Gandalf_Min_Outgoing_Bearer.len  Length
        Unsigned 8-bit integer
        Gandalf-Min-Outgoing-Bearer Length
    radius.Gandalf_Modem_Mode  Gandalf-Modem-Mode
        Unsigned 32-bit integer
    radius.Gandalf_Modem_Mode.len  Length
        Unsigned 8-bit integer
        Gandalf-Modem-Mode Length
    radius.Gandalf_Modem_Required_1  Gandalf-Modem-Required-1
        Unsigned 32-bit integer
    radius.Gandalf_Modem_Required_1.len  Length
        Unsigned 8-bit integer
        Gandalf-Modem-Required-1 Length
    radius.Gandalf_Modem_Required_2  Gandalf-Modem-Required-2
        Unsigned 32-bit integer
    radius.Gandalf_Modem_Required_2.len  Length
        Unsigned 8-bit integer
        Gandalf-Modem-Required-2 Length
    radius.Gandalf_Operational_Modes  Gandalf-Operational-Modes
        Unsigned 32-bit integer
    radius.Gandalf_Operational_Modes.len  Length
        Unsigned 8-bit integer
        Gandalf-Operational-Modes Length
    radius.Gandalf_PPP_Authentication  Gandalf-PPP-Authentication
        Unsigned 32-bit integer
    radius.Gandalf_PPP_Authentication.len  Length
        Unsigned 8-bit integer
        Gandalf-PPP-Authentication Length
    radius.Gandalf_PPP_NCP_Type  Gandalf-PPP-NCP-Type
        Unsigned 32-bit integer
    radius.Gandalf_PPP_NCP_Type.len  Length
        Unsigned 8-bit integer
        Gandalf-PPP-NCP-Type Length
    radius.Gandalf_Phone_Number_1  Gandalf-Phone-Number-1
        String
    radius.Gandalf_Phone_Number_1.len  Length
        Unsigned 8-bit integer
        Gandalf-Phone-Number-1 Length
    radius.Gandalf_Phone_Number_2  Gandalf-Phone-Number-2
        String
    radius.Gandalf_Phone_Number_2.len  Length
        Unsigned 8-bit integer
        Gandalf-Phone-Number-2 Length
    radius.Gandalf_Remote_LAN_Name  Gandalf-Remote-LAN-Name
        String
    radius.Gandalf_Remote_LAN_Name.len  Length
        Unsigned 8-bit integer
        Gandalf-Remote-LAN-Name Length
    radius.Gandalf_SAP_Group_Name_1  Gandalf-SAP-Group-Name-1
        String
    radius.Gandalf_SAP_Group_Name_1.len  Length
        Unsigned 8-bit integer
        Gandalf-SAP-Group-Name-1 Length
    radius.Gandalf_SAP_Group_Name_2  Gandalf-SAP-Group-Name-2
        String
    radius.Gandalf_SAP_Group_Name_2.len  Length
        Unsigned 8-bit integer
        Gandalf-SAP-Group-Name-2 Length
    radius.Gandalf_SAP_Group_Name_3  Gandalf-SAP-Group-Name-3
        String
    radius.Gandalf_SAP_Group_Name_3.len  Length
        Unsigned 8-bit integer
        Gandalf-SAP-Group-Name-3 Length
    radius.Gandalf_SAP_Group_Name_4  Gandalf-SAP-Group-Name-4
        String
    radius.Gandalf_SAP_Group_Name_4.len  Length
        Unsigned 8-bit integer
        Gandalf-SAP-Group-Name-4 Length
    radius.Gandalf_SAP_Group_Name_5  Gandalf-SAP-Group-Name-5
        String
    radius.Gandalf_SAP_Group_Name_5.len  Length
        Unsigned 8-bit integer
        Gandalf-SAP-Group-Name-5 Length
    radius.H3C_Connect_Id  H3C-Connect_Id
        Unsigned 32-bit integer
    radius.H3C_Connect_Id.len  Length
        Unsigned 8-bit integer
        H3C-Connect_Id Length
    radius.H3C_Ip_Host_Addr  H3C-Ip-Host-Addr
        String
    radius.H3C_Ip_Host_Addr.len  Length
        Unsigned 8-bit integer
        H3C-Ip-Host-Addr Length
    radius.H3C_NAS_Startup_Timestamp  H3C-NAS-Startup-Timestamp
        Unsigned 32-bit integer
    radius.H3C_NAS_Startup_Timestamp.len  Length
        Unsigned 8-bit integer
        H3C-NAS-Startup-Timestamp Length
    radius.H3C_Product_ID  H3C-Product-ID
        String
    radius.H3C_Product_ID.len  Length
        Unsigned 8-bit integer
        H3C-Product-ID Length
    radius.HP_Bandwidth_Max_Egress  HP-Bandwidth-Max-Egress
        Unsigned 32-bit integer
    radius.HP_Bandwidth_Max_Egress.len  Length
        Unsigned 8-bit integer
        HP-Bandwidth-Max-Egress Length
    radius.HP_Bandwidth_Max_Ingress  HP-Bandwidth-Max-Ingress
        Unsigned 32-bit integer
    radius.HP_Bandwidth_Max_Ingress.len  Length
        Unsigned 8-bit integer
        HP-Bandwidth-Max-Ingress Length
    radius.HP_Command_Exception  HP-Command-Exception
        Unsigned 32-bit integer
    radius.HP_Command_Exception.len  Length
        Unsigned 8-bit integer
        HP-Command-Exception Length
    radius.HP_Command_String  HP-Command-String
        String
    radius.HP_Command_String.len  Length
        Unsigned 8-bit integer
        HP-Command-String Length
    radius.HP_Cos  HP-Cos
        String
    radius.HP_Cos.len  Length
        Unsigned 8-bit integer
        HP-Cos Length
    radius.HP_EI_Status  HP-EI-Status
        String
    radius.HP_EI_Status.len  Length
        Unsigned 8-bit integer
        HP-EI-Status Length
    radius.HP_Ip_Filter_Raw  HP-Ip-Filter-Raw
        String
    radius.HP_Ip_Filter_Raw.len  Length
        Unsigned 8-bit integer
        HP-Ip-Filter-Raw Length
    radius.HP_Management_Protocol  HP-Management-Protocol
        Unsigned 32-bit integer
    radius.HP_Management_Protocol.len  Length
        Unsigned 8-bit integer
        HP-Management-Protocol Length
    radius.HP_Privilege_Level  HP-Privilege-Level
        Unsigned 32-bit integer
    radius.HP_Privilege_Level.len  Length
        Unsigned 8-bit integer
        HP-Privilege-Level Length
    radius.HTTP_Redirect_Profile_Name  HTTP-Redirect-Profile-Name
        String
    radius.HTTP_Redirect_Profile_Name.len  Length
        Unsigned 8-bit integer
        HTTP-Redirect-Profile-Name Length
    radius.Huawei_Access_Num  Huawei-Access-Num
        String
    radius.Huawei_Access_Num.len  Length
        Unsigned 8-bit integer
        Huawei-Access-Num Length
    radius.Huawei_Acct_Connection_Time  Huawei-Acct-Connection-Time
        Unsigned 32-bit integer
    radius.Huawei_Acct_Connection_Time.len  Length
        Unsigned 8-bit integer
        Huawei-Acct-Connection-Time Length
    radius.Huawei_Acct_Packet_Type  Huawei-Acct-Packet-Type
        Unsigned 32-bit integer
    radius.Huawei_Acct_Packet_Type.len  Length
        Unsigned 8-bit integer
        Huawei-Acct-Packet-Type Length
    radius.Huawei_Call_Reference  Huawei-Call-Reference
        Unsigned 32-bit integer
    radius.Huawei_Call_Reference.len  Length
        Unsigned 8-bit integer
        Huawei-Call-Reference Length
    radius.Huawei_Codec_Type  Huawei-Codec-Type
        Unsigned 32-bit integer
    radius.Huawei_Codec_Type.len  Length
        Unsigned 8-bit integer
        Huawei-Codec-Type Length
    radius.Huawei_Command  Huawei-Command
        Unsigned 32-bit integer
    radius.Huawei_Command.len  Length
        Unsigned 8-bit integer
        Huawei-Command Length
    radius.Huawei_Connect_ID  Huawei-Connect-ID
        Unsigned 32-bit integer
    radius.Huawei_Connect_ID.len  Length
        Unsigned 8-bit integer
        Huawei-Connect-ID Length
    radius.Huawei_Control_Identifier  Huawei-Control-Identifier
        Unsigned 32-bit integer
    radius.Huawei_Control_Identifier.len  Length
        Unsigned 8-bit integer
        Huawei-Control-Identifier Length
    radius.Huawei_Destnation_IP_Addr  Huawei-Destnation-IP-Addr
        String
    radius.Huawei_Destnation_IP_Addr.len  Length
        Unsigned 8-bit integer
        Huawei-Destnation-IP-Addr Length
    radius.Huawei_Destnation_Volume  Huawei-Destnation-Volume
        String
    radius.Huawei_Destnation_Volume.len  Length
        Unsigned 8-bit integer
        Huawei-Destnation-Volume Length
    radius.Huawei_Domain_Name  Huawei-Domain-Name
        String
    radius.Huawei_Domain_Name.len  Length
        Unsigned 8-bit integer
        Huawei-Domain-Name Length
    radius.Huawei_Dst_GK_ipaddr  Huawei-Dst-GK-ipaddr
        IPv4 address
    radius.Huawei_Dst_GK_ipaddr.len  Length
        Unsigned 8-bit integer
        Huawei-Dst-GK-ipaddr Length
    radius.Huawei_Dst_GW_ipaddr  Huawei-Dst-GW-ipaddr
        IPv4 address
    radius.Huawei_Dst_GW_ipaddr.len  Length
        Unsigned 8-bit integer
        Huawei-Dst-GW-ipaddr Length
    radius.Huawei_Error_Reason  Huawei-Error-Reason
        Unsigned 32-bit integer
    radius.Huawei_Error_Reason.len  Length
        Unsigned 8-bit integer
        Huawei-Error-Reason Length
    radius.Huawei_Exec_Privilege  Huawei-Exec-Privilege
        Unsigned 32-bit integer
    radius.Huawei_Exec_Privilege.len  Length
        Unsigned 8-bit integer
        Huawei-Exec-Privilege Length
    radius.Huawei_FTP_Directory  Huawei-FTP-Directory
        String
    radius.Huawei_FTP_Directory.len  Length
        Unsigned 8-bit integer
        Huawei-FTP-Directory Length
    radius.Huawei_HW_Portal_Mode  Huawei-HW-Portal-Mode
        Unsigned 32-bit integer
    radius.Huawei_HW_Portal_Mode.len  Length
        Unsigned 8-bit integer
        Huawei-HW-Portal-Mode Length
    radius.Huawei_IPHost_Addr  Huawei-IPHost-Addr
        String
    radius.Huawei_IPHost_Addr.len  Length
        Unsigned 8-bit integer
        Huawei-IPHost-Addr Length
    radius.Huawei_IP_Address  Huawei-IP-Address
        Unsigned 32-bit integer
    radius.Huawei_IP_Address.len  Length
        Unsigned 8-bit integer
        Huawei-IP-Address Length
    radius.Huawei_ISP_ID  Huawei-ISP-ID
        String
    radius.Huawei_ISP_ID.len  Length
        Unsigned 8-bit integer
        Huawei-ISP-ID Length
    radius.Huawei_In_Kb_After_T_Switch  Huawei-In-Kb-After-T-Switch
        Unsigned 32-bit integer
    radius.Huawei_In_Kb_After_T_Switch.len  Length
        Unsigned 8-bit integer
        Huawei-In-Kb-After-T-Switch Length
    radius.Huawei_In_Kb_Before_T_Switch  Huawei-In-Kb-Before-T-Switch
        Unsigned 32-bit integer
    radius.Huawei_In_Kb_Before_T_Switch.len  Length
        Unsigned 8-bit integer
        Huawei-In-Kb-Before-T-Switch Length
    radius.Huawei_In_Pkt_After_T_Switch  Huawei-In-Pkt-After-T-Switch
        Unsigned 32-bit integer
    radius.Huawei_In_Pkt_After_T_Switch.len  Length
        Unsigned 8-bit integer
        Huawei-In-Pkt-After-T-Switch Length
    radius.Huawei_In_Pkt_Before_T_Switch  Huawei-In-Pkt-Before-T-Switch
        Unsigned 32-bit integer
    radius.Huawei_In_Pkt_Before_T_Switch.len  Length
        Unsigned 8-bit integer
        Huawei-In-Pkt-Before-T-Switch Length
    radius.Huawei_Input_Average_Rate  Huawei-Input-Average-Rate
        Unsigned 32-bit integer
    radius.Huawei_Input_Average_Rate.len  Length
        Unsigned 8-bit integer
        Huawei-Input-Average-Rate Length
    radius.Huawei_Input_Peak_Rate  Huawei-Input-Peak-Rate
        Unsigned 32-bit integer
    radius.Huawei_Input_Peak_Rate.len  Length
        Unsigned 8-bit integer
        Huawei-Input-Peak-Rate Length
    radius.Huawei_Max_Users_Per_Logic_Port  Huawei-Max-Users-Per-Logic-Port
        Unsigned 32-bit integer
    radius.Huawei_Max_Users_Per_Logic_Port.len  Length
        Unsigned 8-bit integer
        Huawei-Max-Users-Per-Logic-Port Length
    radius.Huawei_Multicast_Receive_Group  Huawei-Multicast-Receive-Group
        IPv4 address
    radius.Huawei_Multicast_Receive_Group.len  Length
        Unsigned 8-bit integer
        Huawei-Multicast-Receive-Group Length
    radius.Huawei_Multicast_Source_Group  Huawei-Multicast-Source-Group
        String
    radius.Huawei_Multicast_Source_Group.len  Length
        Unsigned 8-bit integer
        Huawei-Multicast-Source-Group Length
    radius.Huawei_New_User_Name  Huawei-New-User-Name
        String
    radius.Huawei_New_User_Name.len  Length
        Unsigned 8-bit integer
        Huawei-New-User-Name Length
    radius.Huawei_ONLY_Account_Type  Huawei-ONLY-Account-Type
        Unsigned 32-bit integer
    radius.Huawei_ONLY_Account_Type.len  Length
        Unsigned 8-bit integer
        Huawei-ONLY-Account-Type Length
    radius.Huawei_Org_GK_ipaddr  Huawei-Org-GK-ipaddr
        IPv4 address
    radius.Huawei_Org_GK_ipaddr.len  Length
        Unsigned 8-bit integer
        Huawei-Org-GK-ipaddr Length
    radius.Huawei_Org_GW_ipaddr  Huawei-Org-GW-ipaddr
        IPv4 address
    radius.Huawei_Org_GW_ipaddr.len  Length
        Unsigned 8-bit integer
        Huawei-Org-GW-ipaddr Length
    radius.Huawei_Out_Kb_After_T_Switch  Huawei-Out-Kb-After-T-Switch
        Unsigned 32-bit integer
    radius.Huawei_Out_Kb_After_T_Switch.len  Length
        Unsigned 8-bit integer
        Huawei-Out-Kb-After-T-Switch Length
    radius.Huawei_Out_Kb_Before_T_Switch  Huawei-Out-Kb-Before-T-Switch
        Unsigned 32-bit integer
    radius.Huawei_Out_Kb_Before_T_Switch.len  Length
        Unsigned 8-bit integer
        Huawei-Out-Kb-Before-T-Switch Length
    radius.Huawei_Out_Pkt_After_T_Switch  Huawei-Out-Pkt-After-T-Switch
        Unsigned 32-bit integer
    radius.Huawei_Out_Pkt_After_T_Switch.len  Length
        Unsigned 8-bit integer
        Huawei-Out-Pkt-After-T-Switch Length
    radius.Huawei_Out_Pkt_Before_T_Switch  Huawei-Out-Pkt-Before-T-Switch
        Unsigned 32-bit integer
    radius.Huawei_Out_Pkt_Before_T_Switch.len  Length
        Unsigned 8-bit integer
        Huawei-Out-Pkt-Before-T-Switch Length
    radius.Huawei_Output_Average_Rate  Huawei-Output-Average-Rate
        Unsigned 32-bit integer
    radius.Huawei_Output_Average_Rate.len  Length
        Unsigned 8-bit integer
        Huawei-Output-Average-Rate Length
    radius.Huawei_Output_Peak_Rate  Huawei-Output-Peak-Rate
        Unsigned 32-bit integer
    radius.Huawei_Output_Peak_Rate.len  Length
        Unsigned 8-bit integer
        Huawei-Output-Peak-Rate Length
    radius.Huawei_PSTN_Port  Huawei-PSTN-Port
        Unsigned 32-bit integer
    radius.Huawei_PSTN_Port.len  Length
        Unsigned 8-bit integer
        Huawei-PSTN-Port Length
    radius.Huawei_Policy_Name  Huawei-Policy-Name
        String
    radius.Huawei_Policy_Name.len  Length
        Unsigned 8-bit integer
        Huawei-Policy-Name Length
    radius.Huawei_PortalURL  Huawei-PortalURL
        String
    radius.Huawei_PortalURL.len  Length
        Unsigned 8-bit integer
        Huawei-PortalURL Length
    radius.Huawei_Primary_DNS  Huawei-Primary-DNS
        IPv4 address
    radius.Huawei_Primary_DNS.len  Length
        Unsigned 8-bit integer
        Huawei-Primary-DNS Length
    radius.Huawei_Priority  Huawei-Priority
        Unsigned 32-bit integer
    radius.Huawei_Priority.len  Length
        Unsigned 8-bit integer
        Huawei-Priority Length
    radius.Huawei_Product_ID  Huawei-Product-ID
        String
    radius.Huawei_Product_ID.len  Length
        Unsigned 8-bit integer
        Huawei-Product-ID Length
    radius.Huawei_Qos_Profile_Name  Huawei-Qos-Profile-Name
        String
    radius.Huawei_Qos_Profile_Name.len  Length
        Unsigned 8-bit integer
        Huawei-Qos-Profile-Name Length
    radius.Huawei_Remain_Monney  Huawei-Remain-Monney
        Unsigned 32-bit integer
    radius.Huawei_Remain_Monney.len  Length
        Unsigned 8-bit integer
        Huawei-Remain-Monney Length
    radius.Huawei_Remain_Time  Huawei-Remain-Time
        Unsigned 32-bit integer
    radius.Huawei_Remain_Time.len  Length
        Unsigned 8-bit integer
        Huawei-Remain-Time Length
    radius.Huawei_Remanent_Volume  Huawei-Remanent-Volume
        Unsigned 32-bit integer
    radius.Huawei_Remanent_Volume.len  Length
        Unsigned 8-bit integer
        Huawei-Remanent-Volume Length
    radius.Huawei_Result_Code  Huawei-Result-Code
        Unsigned 32-bit integer
    radius.Huawei_Result_Code.len  Length
        Unsigned 8-bit integer
        Huawei-Result-Code Length
    radius.Huawei_Secondary_DNS  Huawei-Secondary-DNS
        IPv4 address
    radius.Huawei_Secondary_DNS.len  Length
        Unsigned 8-bit integer
        Huawei-Secondary-DNS Length
    radius.Huawei_Service_Chg_Cmd  Huawei-Service-Chg-Cmd
        Unsigned 32-bit integer
    radius.Huawei_Service_Chg_Cmd.len  Length
        Unsigned 8-bit integer
        Huawei-Service-Chg-Cmd Length
    radius.Huawei_Startup_Stamp  Huawei-Startup-Stamp
        Unsigned 32-bit integer
    radius.Huawei_Startup_Stamp.len  Length
        Unsigned 8-bit integer
        Huawei-Startup-Stamp Length
    radius.Huawei_Tariff_Switch_Interval  Huawei-Tariff-Switch-Interval
        Unsigned 32-bit integer
    radius.Huawei_Tariff_Switch_Interval.len  Length
        Unsigned 8-bit integer
        Huawei-Tariff-Switch-Interval Length
    radius.Huawei_Transfer_Num  Huawei-Transfer-Num
        String
    radius.Huawei_Transfer_Num.len  Length
        Unsigned 8-bit integer
        Huawei-Transfer-Num Length
    radius.Huawei_Transfer_Station_Id  Huawei-Transfer-Station-Id
        String
    radius.Huawei_Transfer_Station_Id.len  Length
        Unsigned 8-bit integer
        Huawei-Transfer-Station-Id Length
    radius.Huawei_Tunnel_Group_Name  Huawei-Tunnel-Group-Name
        String
    radius.Huawei_Tunnel_Group_Name.len  Length
        Unsigned 8-bit integer
        Huawei-Tunnel-Group-Name Length
    radius.Huawei_User_Multicast_Type  Huawei-User-Multicast-Type
        Unsigned 32-bit integer
    radius.Huawei_User_Multicast_Type.len  Length
        Unsigned 8-bit integer
        Huawei-User-Multicast-Type Length
    radius.Huawei_VPN_Instance  Huawei-VPN-Instance
        String
    radius.Huawei_VPN_Instance.len  Length
        Unsigned 8-bit integer
        Huawei-VPN-Instance Length
    radius.Huawei_Version  Huawei-Version
        String
    radius.Huawei_Version.len  Length
        Unsigned 8-bit integer
        Huawei-Version Length
    radius.Huawei_Voip_Service_Type  Huawei-Voip-Service-Type
        Unsigned 32-bit integer
    radius.Huawei_Voip_Service_Type.len  Length
        Unsigned 8-bit integer
        Huawei-Voip-Service-Type Length
    radius.IPU_IKE_Auth  IPU-IKE-Auth
        String
    radius.IPU_IKE_Auth.len  Length
        Unsigned 8-bit integer
        IPU-IKE-Auth Length
    radius.IPU_IKE_Cmd  IPU-IKE-Cmd
        String
    radius.IPU_IKE_Cmd.len  Length
        Unsigned 8-bit integer
        IPU-IKE-Cmd Length
    radius.IPU_IKE_Conf_Name  IPU-IKE-Conf-Name
        String
    radius.IPU_IKE_Conf_Name.len  Length
        Unsigned 8-bit integer
        IPU-IKE-Conf-Name Length
    radius.IPU_IKE_Local_Addr  IPU-IKE-Local-Addr
        IPv4 address
    radius.IPU_IKE_Local_Addr.len  Length
        Unsigned 8-bit integer
        IPU-IKE-Local-Addr Length
    radius.IPU_IKE_Remote_Addr  IPU-IKE-Remote-Addr
        IPv4 address
    radius.IPU_IKE_Remote_Addr.len  Length
        Unsigned 8-bit integer
        IPU-IKE-Remote-Addr Length
    radius.IPU_MIP_Alg_Mode  IPU-MIP-Alg-Mode
        Unsigned 32-bit integer
    radius.IPU_MIP_Alg_Mode.len  Length
        Unsigned 8-bit integer
        IPU-MIP-Alg-Mode Length
    radius.IPU_MIP_Alg_Type  IPU-MIP-Alg-Type
        Unsigned 32-bit integer
    radius.IPU_MIP_Alg_Type.len  Length
        Unsigned 8-bit integer
        IPU-MIP-Alg-Type Length
    radius.IPU_MIP_Key  IPU-MIP-Key
        String
    radius.IPU_MIP_Key.len  Length
        Unsigned 8-bit integer
        IPU-MIP-Key Length
    radius.IPU_MIP_Replay_Prot  IPU-MIP-Replay-Prot
        Unsigned 32-bit integer
    radius.IPU_MIP_Replay_Prot.len  Length
        Unsigned 8-bit integer
        IPU-MIP-Replay-Prot Length
    radius.IPU_MIP_Spi  IPU-MIP-Spi
        Unsigned 32-bit integer
    radius.IPU_MIP_Spi.len  Length
        Unsigned 8-bit integer
        IPU-MIP-Spi Length
    radius.IP_Interface_Name  IP-Interface-Name
        String
    radius.IP_Interface_Name.len  Length
        Unsigned 8-bit integer
        IP-Interface-Name Length
    radius.IP_TOS_Field  IP-TOS-Field
        Unsigned 32-bit integer
    radius.IP_TOS_Field.len  Length
        Unsigned 8-bit integer
        IP-TOS-Field Length
    radius.ITK_Acct_Serv_IP  ITK-Acct-Serv-IP
        IPv4 address
    radius.ITK_Acct_Serv_IP.len  Length
        Unsigned 8-bit integer
        ITK-Acct-Serv-IP Length
    radius.ITK_Acct_Serv_Prot  ITK-Acct-Serv-Prot
        Unsigned 32-bit integer
    radius.ITK_Acct_Serv_Prot.len  Length
        Unsigned 8-bit integer
        ITK-Acct-Serv-Prot Length
    radius.ITK_Auth_Req_Type  ITK-Auth-Req-Type
        String
    radius.ITK_Auth_Req_Type.len  Length
        Unsigned 8-bit integer
        ITK-Auth-Req-Type Length
    radius.ITK_Auth_Serv_IP  ITK-Auth-Serv-IP
        IPv4 address
    radius.ITK_Auth_Serv_IP.len  Length
        Unsigned 8-bit integer
        ITK-Auth-Serv-IP Length
    radius.ITK_Auth_Serv_Prot  ITK-Auth-Serv-Prot
        Unsigned 32-bit integer
    radius.ITK_Auth_Serv_Prot.len  Length
        Unsigned 8-bit integer
        ITK-Auth-Serv-Prot Length
    radius.ITK_Banner  ITK-Banner
        String
    radius.ITK_Banner.len  Length
        Unsigned 8-bit integer
        ITK-Banner Length
    radius.ITK_Channel_Binding  ITK-Channel-Binding
        Unsigned 32-bit integer
    radius.ITK_Channel_Binding.len  Length
        Unsigned 8-bit integer
        ITK-Channel-Binding Length
    radius.ITK_DDI  ITK-DDI
        String
    radius.ITK_DDI.len  Length
        Unsigned 8-bit integer
        ITK-DDI Length
    radius.ITK_Dest_No  ITK-Dest-No
        String
    radius.ITK_Dest_No.len  Length
        Unsigned 8-bit integer
        ITK-Dest-No Length
    radius.ITK_Dialout_Type  ITK-Dialout-Type
        Unsigned 32-bit integer
    radius.ITK_Dialout_Type.len  Length
        Unsigned 8-bit integer
        ITK-Dialout-Type Length
    radius.ITK_Filter_Rule  ITK-Filter-Rule
        String
    radius.ITK_Filter_Rule.len  Length
        Unsigned 8-bit integer
        ITK-Filter-Rule Length
    radius.ITK_Ftp_Auth_IP  ITK-Ftp-Auth-IP
        IPv4 address
    radius.ITK_Ftp_Auth_IP.len  Length
        Unsigned 8-bit integer
        ITK-Ftp-Auth-IP Length
    radius.ITK_IP_Pool  ITK-IP-Pool
        Unsigned 32-bit integer
    radius.ITK_IP_Pool.len  Length
        Unsigned 8-bit integer
        ITK-IP-Pool Length
    radius.ITK_ISDN_Prot  ITK-ISDN-Prot
        Unsigned 32-bit integer
    radius.ITK_ISDN_Prot.len  Length
        Unsigned 8-bit integer
        ITK-ISDN-Prot Length
    radius.ITK_Modem_Init_String  ITK-Modem-Init-String
        String
    radius.ITK_Modem_Init_String.len  Length
        Unsigned 8-bit integer
        ITK-Modem-Init-String Length
    radius.ITK_Modem_Pool_Id  ITK-Modem-Pool-Id
        Unsigned 32-bit integer
    radius.ITK_Modem_Pool_Id.len  Length
        Unsigned 8-bit integer
        ITK-Modem-Pool-Id Length
    radius.ITK_NAS_Name  ITK-NAS-Name
        String
    radius.ITK_NAS_Name.len  Length
        Unsigned 8-bit integer
        ITK-NAS-Name Length
    radius.ITK_PPP_Auth_Type  ITK-PPP-Auth-Type
        Unsigned 32-bit integer
    radius.ITK_PPP_Auth_Type.len  Length
        Unsigned 8-bit integer
        ITK-PPP-Auth-Type Length
    radius.ITK_PPP_Client_Server_Mode  ITK-PPP-Client-Server-Mode
        Unsigned 32-bit integer
    radius.ITK_PPP_Client_Server_Mode.len  Length
        Unsigned 8-bit integer
        ITK-PPP-Client-Server-Mode Length
    radius.ITK_PPP_Compression_Prot  ITK-PPP-Compression-Prot
        String
    radius.ITK_PPP_Compression_Prot.len  Length
        Unsigned 8-bit integer
        ITK-PPP-Compression-Prot Length
    radius.ITK_Password_Prompt  ITK-Password-Prompt
        String
    radius.ITK_Password_Prompt.len  Length
        Unsigned 8-bit integer
        ITK-Password-Prompt Length
    radius.ITK_Prompt  ITK-Prompt
        String
    radius.ITK_Prompt.len  Length
        Unsigned 8-bit integer
        ITK-Prompt Length
    radius.ITK_Provider_Id  ITK-Provider-Id
        Unsigned 32-bit integer
    radius.ITK_Provider_Id.len  Length
        Unsigned 8-bit integer
        ITK-Provider-Id Length
    radius.ITK_Start_Delay  ITK-Start-Delay
        Unsigned 32-bit integer
    radius.ITK_Start_Delay.len  Length
        Unsigned 8-bit integer
        ITK-Start-Delay Length
    radius.ITK_Tunnel_IP  ITK-Tunnel-IP
        IPv4 address
    radius.ITK_Tunnel_IP.len  Length
        Unsigned 8-bit integer
        ITK-Tunnel-IP Length
    radius.ITK_Tunnel_Prot  ITK-Tunnel-Prot
        Unsigned 32-bit integer
    radius.ITK_Tunnel_Prot.len  Length
        Unsigned 8-bit integer
        ITK-Tunnel-Prot Length
    radius.ITK_Usergroup  ITK-Usergroup
        Unsigned 32-bit integer
    radius.ITK_Usergroup.len  Length
        Unsigned 8-bit integer
        ITK-Usergroup Length
    radius.ITK_Username  ITK-Username
        String
    radius.ITK_Username.len  Length
        Unsigned 8-bit integer
        ITK-Username Length
    radius.ITK_Username_Prompt  ITK-Username-Prompt
        String
    radius.ITK_Username_Prompt.len  Length
        Unsigned 8-bit integer
        ITK-Username-Prompt Length
    radius.ITK_Users_Default_Entry  ITK-Users-Default-Entry
        String
    radius.ITK_Users_Default_Entry.len  Length
        Unsigned 8-bit integer
        ITK-Users-Default-Entry Length
    radius.ITK_Users_Default_Pw  ITK-Users-Default-Pw
        String
    radius.ITK_Users_Default_Pw.len  Length
        Unsigned 8-bit integer
        ITK-Users-Default-Pw Length
    radius.ITK_Welcome_Message  ITK-Welcome-Message
        String
    radius.ITK_Welcome_Message.len  Length
        Unsigned 8-bit integer
        ITK-Welcome-Message Length
    radius.IWF_Session  IWF-Session
        Byte array
    radius.IWF_Session.len  Length
        Unsigned 8-bit integer
        IWF-Session Length
    radius.Idle_Timeout  Idle-Timeout
        Unsigned 32-bit integer
    radius.Idle_Timeout.len  Length
        Unsigned 8-bit integer
        Idle-Timeout Length
    radius.Igmp_Service_Profile  Igmp-Service-Profile
        String
    radius.Igmp_Service_Profile.len  Length
        Unsigned 8-bit integer
        Igmp-Service-Profile Length
    radius.Infonet_Account_Number  Infonet-Account-Number
        String
    radius.Infonet_Account_Number.len  Length
        Unsigned 8-bit integer
        Infonet-Account-Number Length
    radius.Infonet_Config  Infonet-Config
        String
    radius.Infonet_Config.len  Length
        Unsigned 8-bit integer
        Infonet-Config Length
    radius.Infonet_LoginHost_Dest  Infonet-LoginHost-Dest
        String
    radius.Infonet_LoginHost_Dest.len  Length
        Unsigned 8-bit integer
        Infonet-LoginHost-Dest Length
    radius.Infonet_MCS_Country  Infonet-MCS-Country
        String
    radius.Infonet_MCS_Country.len  Length
        Unsigned 8-bit integer
        Infonet-MCS-Country Length
    radius.Infonet_MCS_Off_Peak  Infonet-MCS-Off-Peak
        String
    radius.Infonet_MCS_Off_Peak.len  Length
        Unsigned 8-bit integer
        Infonet-MCS-Off-Peak Length
    radius.Infonet_MCS_Overflow  Infonet-MCS-Overflow
        String
    radius.Infonet_MCS_Overflow.len  Length
        Unsigned 8-bit integer
        Infonet-MCS-Overflow Length
    radius.Infonet_MCS_Port  Infonet-MCS-Port
        String
    radius.Infonet_MCS_Port.len  Length
        Unsigned 8-bit integer
        Infonet-MCS-Port Length
    radius.Infonet_MCS_Port_Count  Infonet-MCS-Port-Count
        String
    radius.Infonet_MCS_Port_Count.len  Length
        Unsigned 8-bit integer
        Infonet-MCS-Port-Count Length
    radius.Infonet_MCS_Region  Infonet-MCS-Region
        String
    radius.Infonet_MCS_Region.len  Length
        Unsigned 8-bit integer
        Infonet-MCS-Region Length
    radius.Infonet_NAS_Location  Infonet-NAS-Location
        String
    radius.Infonet_NAS_Location.len  Length
        Unsigned 8-bit integer
        Infonet-NAS-Location Length
    radius.Infonet_Pool_Request  Infonet-Pool-Request
        String
    radius.Infonet_Pool_Request.len  Length
        Unsigned 8-bit integer
        Infonet-Pool-Request Length
    radius.Infonet_Proxy  Infonet-Proxy
        String
    radius.Infonet_Proxy.len  Length
        Unsigned 8-bit integer
        Infonet-Proxy Length
    radius.Infonet_Random_IP_Pool  Infonet-Random-IP-Pool
        String
    radius.Infonet_Random_IP_Pool.len  Length
        Unsigned 8-bit integer
        Infonet-Random-IP-Pool Length
    radius.Infonet_Realm_Type  Infonet-Realm-Type
        String
    radius.Infonet_Realm_Type.len  Length
        Unsigned 8-bit integer
        Infonet-Realm-Type Length
    radius.Infonet_Surcharge_Type  Infonet-Surcharge-Type
        Unsigned 32-bit integer
    radius.Infonet_Surcharge_Type.len  Length
        Unsigned 8-bit integer
        Infonet-Surcharge-Type Length
    radius.Infonet_Tunnel_Decision_IP  Infonet-Tunnel-Decision-IP
        String
    radius.Infonet_Tunnel_Decision_IP.len  Length
        Unsigned 8-bit integer
        Infonet-Tunnel-Decision-IP Length
    radius.Infonet_Type  Infonet-Type
        String
    radius.Infonet_Type.len  Length
        Unsigned 8-bit integer
        Infonet-Type Length
    radius.Ingress_Filters  Ingress-Filters
        Unsigned 32-bit integer
    radius.Ingress_Filters.len  Length
        Unsigned 8-bit integer
        Ingress-Filters Length
    radius.Initial_Modulation_Type  Initial-Modulation-Type
        Unsigned 32-bit integer
    radius.Initial_Modulation_Type.len  Length
        Unsigned 8-bit integer
        Initial-Modulation-Type Length
    radius.Ip_Address_Pool_Name  Ip-Address-Pool-Name
        String
    radius.Ip_Address_Pool_Name.len  Length
        Unsigned 8-bit integer
        Ip-Address-Pool-Name Length
    radius.Ip_Host_Addr  Ip-Host-Addr
        String
    radius.Ip_Host_Addr.len  Length
        Unsigned 8-bit integer
        Ip-Host-Addr Length
    radius.Issanni_IP_Pool_Name  Issanni-IP-Pool-Name
        String
    radius.Issanni_IP_Pool_Name.len  Length
        Unsigned 8-bit integer
        Issanni-IP-Pool-Name Length
    radius.Issanni_Interface_Name  Issanni-Interface-Name
        String
    radius.Issanni_Interface_Name.len  Length
        Unsigned 8-bit integer
        Issanni-Interface-Name Length
    radius.Issanni_NAT_Support  Issanni-NAT-Support
        String
    radius.Issanni_NAT_Support.len  Length
        Unsigned 8-bit integer
        Issanni-NAT-Support Length
    radius.Issanni_NAT_Type  Issanni-NAT-Type
        Unsigned 32-bit integer
    radius.Issanni_NAT_Type.len  Length
        Unsigned 8-bit integer
        Issanni-NAT-Type Length
    radius.Issanni_PPPoE_MOTM  Issanni-PPPoE-MOTM
        String
    radius.Issanni_PPPoE_MOTM.len  Length
        Unsigned 8-bit integer
        Issanni-PPPoE-MOTM Length
    radius.Issanni_PPPoE_URL  Issanni-PPPoE-URL
        String
    radius.Issanni_PPPoE_URL.len  Length
        Unsigned 8-bit integer
        Issanni-PPPoE-URL Length
    radius.Issanni_Pri_DNS  Issanni-Pri-DNS
        IPv4 address
    radius.Issanni_Pri_DNS.len  Length
        Unsigned 8-bit integer
        Issanni-Pri-DNS Length
    radius.Issanni_Pri_NBNS  Issanni-Pri-NBNS
        IPv4 address
    radius.Issanni_Pri_NBNS.len  Length
        Unsigned 8-bit integer
        Issanni-Pri-NBNS Length
    radius.Issanni_QOS_Class  Issanni-QOS-Class
        String
    radius.Issanni_QOS_Class.len  Length
        Unsigned 8-bit integer
        Issanni-QOS-Class Length
    radius.Issanni_Routing_Context  Issanni-Routing-Context
        String
    radius.Issanni_Routing_Context.len  Length
        Unsigned 8-bit integer
        Issanni-Routing-Context Length
    radius.Issanni_Sec_DNS  Issanni-Sec-DNS
        IPv4 address
    radius.Issanni_Sec_DNS.len  Length
        Unsigned 8-bit integer
        Issanni-Sec-DNS Length
    radius.Issanni_Sec_NBNS  Issanni-Sec-NBNS
        IPv4 address
    radius.Issanni_Sec_NBNS.len  Length
        Unsigned 8-bit integer
        Issanni-Sec-NBNS Length
    radius.Issanni_Service  Issanni-Service
        String
    radius.Issanni_Service.len  Length
        Unsigned 8-bit integer
        Issanni-Service Length
    radius.Issanni_SoftFlow_Template  Issanni-SoftFlow-Template
        String
    radius.Issanni_SoftFlow_Template.len  Length
        Unsigned 8-bit integer
        Issanni-SoftFlow-Template Length
    radius.Issanni_Traffic_Class  Issanni-Traffic-Class
        String
    radius.Issanni_Traffic_Class.len  Length
        Unsigned 8-bit integer
        Issanni-Traffic-Class Length
    radius.Issanni_Tunnel_Name  Issanni-Tunnel-Name
        String
    radius.Issanni_Tunnel_Name.len  Length
        Unsigned 8-bit integer
        Issanni-Tunnel-Name Length
    radius.Issanni_Tunnel_Type  Issanni-Tunnel-Type
        Unsigned 32-bit integer
    radius.Issanni_Tunnel_Type.len  Length
        Unsigned 8-bit integer
        Issanni-Tunnel-Type Length
    radius.JRadius_Proxy_Client  JRadius-Proxy-Client
        Byte array
    radius.JRadius_Proxy_Client.len  Length
        Unsigned 8-bit integer
        JRadius-Proxy-Client Length
    radius.JRadius_Request_Id  JRadius-Request-Id
        String
    radius.JRadius_Request_Id.len  Length
        Unsigned 8-bit integer
        JRadius-Request-Id Length
    radius.JRadius_Session_Id  JRadius-Session-Id
        String
    radius.JRadius_Session_Id.len  Length
        Unsigned 8-bit integer
        JRadius-Session-Id Length
    radius.Juniper_Allow_Commands  Juniper-Allow-Commands
        String
    radius.Juniper_Allow_Commands.len  Length
        Unsigned 8-bit integer
        Juniper-Allow-Commands Length
    radius.Juniper_Allow_Configuration  Juniper-Allow-Configuration
        String
    radius.Juniper_Allow_Configuration.len  Length
        Unsigned 8-bit integer
        Juniper-Allow-Configuration Length
    radius.Juniper_Deny_Commands  Juniper-Deny-Commands
        String
    radius.Juniper_Deny_Commands.len  Length
        Unsigned 8-bit integer
        Juniper-Deny-Commands Length
    radius.Juniper_Deny_Configuration  Juniper-Deny-Configuration
        String
    radius.Juniper_Deny_Configuration.len  Length
        Unsigned 8-bit integer
        Juniper-Deny-Configuration Length
    radius.Juniper_Local_User_Name  Juniper-Local-User-Name
        String
    radius.Juniper_Local_User_Name.len  Length
        Unsigned 8-bit integer
        Juniper-Local-User-Name Length
    radius.KarlNet_TurboCell_Name  KarlNet-TurboCell-Name
        String
    radius.KarlNet_TurboCell_Name.len  Length
        Unsigned 8-bit integer
        KarlNet-TurboCell-Name Length
    radius.KarlNet_TurboCell_OpMode  KarlNet-TurboCell-OpMode
        Unsigned 32-bit integer
    radius.KarlNet_TurboCell_OpMode.len  Length
        Unsigned 8-bit integer
        KarlNet-TurboCell-OpMode Length
    radius.KarlNet_TurboCell_OpState  KarlNet-TurboCell-OpState
        Unsigned 32-bit integer
    radius.KarlNet_TurboCell_OpState.len  Length
        Unsigned 8-bit integer
        KarlNet-TurboCell-OpState Length
    radius.KarlNet_TurboCell_TxRate  KarlNet-TurboCell-TxRate
        Unsigned 32-bit integer
    radius.KarlNet_TurboCell_TxRate.len  Length
        Unsigned 8-bit integer
        KarlNet-TurboCell-TxRate Length
    radius.LAC_Port  LAC-Port
        Unsigned 32-bit integer
    radius.LAC_Port.len  Length
        Unsigned 8-bit integer
        LAC-Port Length
    radius.LAC_Port_Type  LAC-Port-Type
        Unsigned 32-bit integer
    radius.LAC_Port_Type.len  Length
        Unsigned 8-bit integer
        LAC-Port-Type Length
    radius.LAC_Real_Port  LAC-Real-Port
        Unsigned 32-bit integer
    radius.LAC_Real_Port.len  Length
        Unsigned 8-bit integer
        LAC-Real-Port Length
    radius.LAC_Real_Port_Type  LAC-Real-Port-Type
        Unsigned 32-bit integer
    radius.LAC_Real_Port_Type.len  Length
        Unsigned 8-bit integer
        LAC-Real-Port-Type Length
    radius.LCS_Account_End  LCS-Account-End
        Unsigned 32-bit integer
    radius.LCS_Account_End.len  Length
        Unsigned 8-bit integer
        LCS-Account-End Length
    radius.LCS_Comment  LCS-Comment
        String
    radius.LCS_Comment.len  Length
        Unsigned 8-bit integer
        LCS-Comment Length
    radius.LCS_Mac_Address  LCS-Mac-Address
        String
    radius.LCS_Mac_Address.len  Length
        Unsigned 8-bit integer
        LCS-Mac-Address Length
    radius.LCS_PbSpotUserName  LCS-PbSpotUserName
        String
    radius.LCS_PbSpotUserName.len  Length
        Unsigned 8-bit integer
        LCS-PbSpotUserName Length
    radius.LCS_Redirection_URL  LCS-Redirection-URL
        String
    radius.LCS_Redirection_URL.len  Length
        Unsigned 8-bit integer
        LCS-Redirection-URL Length
    radius.LCS_RxRateLimit  LCS-RxRateLimit
        Unsigned 32-bit integer
    radius.LCS_RxRateLimit.len  Length
        Unsigned 8-bit integer
        LCS-RxRateLimit Length
    radius.LCS_Traffic_Limit  LCS-Traffic-Limit
        Unsigned 32-bit integer
    radius.LCS_Traffic_Limit.len  Length
        Unsigned 8-bit integer
        LCS-Traffic-Limit Length
    radius.LCS_TxRateLimit  LCS-TxRateLimit
        Unsigned 32-bit integer
    radius.LCS_TxRateLimit.len  Length
        Unsigned 8-bit integer
        LCS-TxRateLimit Length
    radius.LCS_WPA_Passphrase  LCS-WPA-Passphrase
        String
    radius.LCS_WPA_Passphrase.len  Length
        Unsigned 8-bit integer
        LCS-WPA-Passphrase Length
    radius.LE_Admin_Group  LE-Admin-Group
        String
    radius.LE_Admin_Group.len  Length
        Unsigned 8-bit integer
        LE-Admin-Group Length
    radius.LE_Advice_of_Charge  LE-Advice-of-Charge
        String
    radius.LE_Advice_of_Charge.len  Length
        Unsigned 8-bit integer
        LE-Advice-of-Charge Length
    radius.LE_Connect_Detail  LE-Connect-Detail
        String
    radius.LE_Connect_Detail.len  Length
        Unsigned 8-bit integer
        LE-Connect-Detail Length
    radius.LE_IPSec_Active_Profile  LE-IPSec-Active-Profile
        String
    radius.LE_IPSec_Active_Profile.len  Length
        Unsigned 8-bit integer
        LE-IPSec-Active-Profile Length
    radius.LE_IPSec_Deny_Action  LE-IPSec-Deny-Action
        Unsigned 32-bit integer
    radius.LE_IPSec_Deny_Action.len  Length
        Unsigned 8-bit integer
        LE-IPSec-Deny-Action Length
    radius.LE_IPSec_Log_Options  LE-IPSec-Log-Options
        Unsigned 32-bit integer
    radius.LE_IPSec_Log_Options.len  Length
        Unsigned 8-bit integer
        LE-IPSec-Log-Options Length
    radius.LE_IPSec_Outsource_Profile  LE-IPSec-Outsource-Profile
        String
    radius.LE_IPSec_Outsource_Profile.len  Length
        Unsigned 8-bit integer
        LE-IPSec-Outsource-Profile Length
    radius.LE_IPSec_Passive_Profile  LE-IPSec-Passive-Profile
        String
    radius.LE_IPSec_Passive_Profile.len  Length
        Unsigned 8-bit integer
        LE-IPSec-Passive-Profile Length
    radius.LE_IP_Gateway  LE-IP-Gateway
        IPv4 address
    radius.LE_IP_Gateway.len  Length
        Unsigned 8-bit integer
        LE-IP-Gateway Length
    radius.LE_IP_Pool  LE-IP-Pool
        String
    radius.LE_IP_Pool.len  Length
        Unsigned 8-bit integer
        LE-IP-Pool Length
    radius.LE_Modem_Info  LE-Modem-Info
        String
    radius.LE_Modem_Info.len  Length
        Unsigned 8-bit integer
        LE-Modem-Info Length
    radius.LE_Multicast_Client  LE-Multicast-Client
        Unsigned 32-bit integer
    radius.LE_Multicast_Client.len  Length
        Unsigned 8-bit integer
        LE-Multicast-Client Length
    radius.LE_NAT_Inmap  LE-NAT-Inmap
        String
    radius.LE_NAT_Inmap.len  Length
        Unsigned 8-bit integer
        LE-NAT-Inmap Length
    radius.LE_NAT_Log_Options  LE-NAT-Log-Options
        Unsigned 32-bit integer
    radius.LE_NAT_Log_Options.len  Length
        Unsigned 8-bit integer
        LE-NAT-Log-Options Length
    radius.LE_NAT_Other_Session_Timeout  LE-NAT-Other-Session-Timeout
        Unsigned 32-bit integer
    radius.LE_NAT_Other_Session_Timeout.len  Length
        Unsigned 8-bit integer
        LE-NAT-Other-Session-Timeout Length
    radius.LE_NAT_Outmap  LE-NAT-Outmap
        String
    radius.LE_NAT_Outmap.len  Length
        Unsigned 8-bit integer
        LE-NAT-Outmap Length
    radius.LE_NAT_Outsource_Inmap  LE-NAT-Outsource-Inmap
        String
    radius.LE_NAT_Outsource_Inmap.len  Length
        Unsigned 8-bit integer
        LE-NAT-Outsource-Inmap Length
    radius.LE_NAT_Outsource_Outmap  LE-NAT-Outsource-Outmap
        String
    radius.LE_NAT_Outsource_Outmap.len  Length
        Unsigned 8-bit integer
        LE-NAT-Outsource-Outmap Length
    radius.LE_NAT_Sess_Dir_Fail_Action  LE-NAT-Sess-Dir-Fail-Action
        Unsigned 32-bit integer
    radius.LE_NAT_Sess_Dir_Fail_Action.len  Length
        Unsigned 8-bit integer
        LE-NAT-Sess-Dir-Fail-Action Length
    radius.LE_NAT_TCP_Session_Timeout  LE-NAT-TCP-Session-Timeout
        Unsigned 32-bit integer
    radius.LE_NAT_TCP_Session_Timeout.len  Length
        Unsigned 8-bit integer
        LE-NAT-TCP-Session-Timeout Length
    radius.LE_Terminate_Detail  LE-Terminate-Detail
        String
    radius.LE_Terminate_Detail.len  Length
        Unsigned 8-bit integer
        LE-Terminate-Detail Length
    radius.Local_Web_Acct_Duration  Local-Web-Acct-Duration
        Unsigned 32-bit integer
    radius.Local_Web_Acct_Duration.len  Length
        Unsigned 8-bit integer
        Local-Web-Acct-Duration Length
    radius.Local_Web_Acct_Interim_Rx_Bytes  Local-Web-Acct-Interim-Rx-Bytes
        Unsigned 32-bit integer
    radius.Local_Web_Acct_Interim_Rx_Bytes.len  Length
        Unsigned 8-bit integer
        Local-Web-Acct-Interim-Rx-Bytes Length
    radius.Local_Web_Acct_Interim_Rx_Gigawords  Local-Web-Acct-Interim-Rx-Gigawords
        Unsigned 32-bit integer
    radius.Local_Web_Acct_Interim_Rx_Gigawords.len  Length
        Unsigned 8-bit integer
        Local-Web-Acct-Interim-Rx-Gigawords Length
    radius.Local_Web_Acct_Interim_Rx_Mgmt  Local-Web-Acct-Interim-Rx-Mgmt
        Unsigned 32-bit integer
    radius.Local_Web_Acct_Interim_Rx_Mgmt.len  Length
        Unsigned 8-bit integer
        Local-Web-Acct-Interim-Rx-Mgmt Length
    radius.Local_Web_Acct_Interim_Tx_Bytes  Local-Web-Acct-Interim-Tx-Bytes
        Unsigned 32-bit integer
    radius.Local_Web_Acct_Interim_Tx_Bytes.len  Length
        Unsigned 8-bit integer
        Local-Web-Acct-Interim-Tx-Bytes Length
    radius.Local_Web_Acct_Interim_Tx_Gigawords  Local-Web-Acct-Interim-Tx-Gigawords
        Unsigned 32-bit integer
    radius.Local_Web_Acct_Interim_Tx_Gigawords.len  Length
        Unsigned 8-bit integer
        Local-Web-Acct-Interim-Tx-Gigawords Length
    radius.Local_Web_Acct_Interim_Tx_Mgmt  Local-Web-Acct-Interim-Tx-Mgmt
        Unsigned 32-bit integer
    radius.Local_Web_Acct_Interim_Tx_Mgmt.len  Length
        Unsigned 8-bit integer
        Local-Web-Acct-Interim-Tx-Mgmt Length
    radius.Local_Web_Acct_Rx_Mgmt  Local-Web-Acct-Rx-Mgmt
        Unsigned 32-bit integer
    radius.Local_Web_Acct_Rx_Mgmt.len  Length
        Unsigned 8-bit integer
        Local-Web-Acct-Rx-Mgmt Length
    radius.Local_Web_Acct_Time  Local-Web-Acct-Time
        Unsigned 32-bit integer
    radius.Local_Web_Acct_Time.len  Length
        Unsigned 8-bit integer
        Local-Web-Acct-Time Length
    radius.Local_Web_Acct_Tx_Mgmt  Local-Web-Acct-Tx-Mgmt
        Unsigned 32-bit integer
    radius.Local_Web_Acct_Tx_Mgmt.len  Length
        Unsigned 8-bit integer
        Local-Web-Acct-Tx-Mgmt Length
    radius.Local_Web_Border_Router  Local-Web-Border-Router
        String
    radius.Local_Web_Border_Router.len  Length
        Unsigned 8-bit integer
        Local-Web-Border-Router Length
    radius.Local_Web_Client_Ip  Local-Web-Client-Ip
        String
    radius.Local_Web_Client_Ip.len  Length
        Unsigned 8-bit integer
        Local-Web-Client-Ip Length
    radius.Local_Web_Reauth_Counter  Local-Web-Reauth-Counter
        Unsigned 32-bit integer
    radius.Local_Web_Reauth_Counter.len  Length
        Unsigned 8-bit integer
        Local-Web-Reauth-Counter Length
    radius.Local_Web_Rx_Limit  Local-Web-Rx-Limit
        Unsigned 32-bit integer
    radius.Local_Web_Rx_Limit.len  Length
        Unsigned 8-bit integer
        Local-Web-Rx-Limit Length
    radius.Local_Web_Tx_Limit  Local-Web-Tx-Limit
        Unsigned 32-bit integer
    radius.Local_Web_Tx_Limit.len  Length
        Unsigned 8-bit integer
        Local-Web-Tx-Limit Length
    radius.Login-IP-Host  Login-IP-Host
        IPv4 address
    radius.Login_IP_Host  Login-IP-Host
        IPv4 address
    radius.Login_IP_Host.len  Length
        Unsigned 8-bit integer
        Login-IP-Host Length
    radius.Login_IPv6_Host  Login-IPv6-Host
        IPv6 address
    radius.Login_IPv6_Host.len  Length
        Unsigned 8-bit integer
        Login-IPv6-Host Length
    radius.Login_LAT_Group  Login-LAT-Group
        Byte array
    radius.Login_LAT_Group.len  Length
        Unsigned 8-bit integer
        Login-LAT-Group Length
    radius.Login_LAT_Node  Login-LAT-Node
        String
    radius.Login_LAT_Node.len  Length
        Unsigned 8-bit integer
        Login-LAT-Node Length
    radius.Login_LAT_Port  Login-LAT-Port
        String
    radius.Login_LAT_Port.len  Length
        Unsigned 8-bit integer
        Login-LAT-Port Length
    radius.Login_LAT_Service  Login-LAT-Service
        String
    radius.Login_LAT_Service.len  Length
        Unsigned 8-bit integer
        Login-LAT-Service Length
    radius.Login_Service  Login-Service
        Unsigned 32-bit integer
    radius.Login_Service.len  Length
        Unsigned 8-bit integer
        Login-Service Length
    radius.Login_TCP_Port  Login-TCP-Port
        Unsigned 32-bit integer
    radius.Login_TCP_Port.len  Length
        Unsigned 8-bit integer
        Login-TCP-Port Length
    radius.Lucent_ATM_Circuit_Name  Lucent-ATM-Circuit-Name
        String
    radius.Lucent_ATM_Circuit_Name.len  Length
        Unsigned 8-bit integer
        Lucent-ATM-Circuit-Name Length
    radius.Lucent_ATM_Connect_Group  Lucent-ATM-Connect-Group
        Unsigned 32-bit integer
    radius.Lucent_ATM_Connect_Group.len  Length
        Unsigned 8-bit integer
        Lucent-ATM-Connect-Group Length
    radius.Lucent_ATM_Connect_Vci  Lucent-ATM-Connect-Vci
        Unsigned 32-bit integer
    radius.Lucent_ATM_Connect_Vci.len  Length
        Unsigned 8-bit integer
        Lucent-ATM-Connect-Vci Length
    radius.Lucent_ATM_Connect_Vpi  Lucent-ATM-Connect-Vpi
        Unsigned 32-bit integer
    radius.Lucent_ATM_Connect_Vpi.len  Length
        Unsigned 8-bit integer
        Lucent-ATM-Connect-Vpi Length
    radius.Lucent_ATM_Direct  Lucent-ATM-Direct
        Unsigned 32-bit integer
    radius.Lucent_ATM_Direct.len  Length
        Unsigned 8-bit integer
        Lucent-ATM-Direct Length
    radius.Lucent_ATM_Direct_Profile  Lucent-ATM-Direct-Profile
        String
    radius.Lucent_ATM_Direct_Profile.len  Length
        Unsigned 8-bit integer
        Lucent-ATM-Direct-Profile Length
    radius.Lucent_ATM_Fault_Management  Lucent-ATM-Fault-Management
        Unsigned 32-bit integer
    radius.Lucent_ATM_Fault_Management.len  Length
        Unsigned 8-bit integer
        Lucent-ATM-Fault-Management Length
    radius.Lucent_ATM_Group  Lucent-ATM-Group
        Unsigned 32-bit integer
    radius.Lucent_ATM_Group.len  Length
        Unsigned 8-bit integer
        Lucent-ATM-Group Length
    radius.Lucent_ATM_Loopback_Cell_Loss  Lucent-ATM-Loopback-Cell-Loss
        Unsigned 32-bit integer
    radius.Lucent_ATM_Loopback_Cell_Loss.len  Length
        Unsigned 8-bit integer
        Lucent-ATM-Loopback-Cell-Loss Length
    radius.Lucent_ATM_Vci  Lucent-ATM-Vci
        Unsigned 32-bit integer
    radius.Lucent_ATM_Vci.len  Length
        Unsigned 8-bit integer
        Lucent-ATM-Vci Length
    radius.Lucent_ATM_Vpi  Lucent-ATM-Vpi
        Unsigned 32-bit integer
    radius.Lucent_ATM_Vpi.len  Length
        Unsigned 8-bit integer
        Lucent-ATM-Vpi Length
    radius.Lucent_AT_Answer_String  Lucent-AT-Answer-String
        String
    radius.Lucent_AT_Answer_String.len  Length
        Unsigned 8-bit integer
        Lucent-AT-Answer-String Length
    radius.Lucent_Absolute_Time  Lucent-Absolute-Time
        Unsigned 32-bit integer
    radius.Lucent_Absolute_Time.len  Length
        Unsigned 8-bit integer
        Lucent-Absolute-Time Length
    radius.Lucent_Access_Intercept_LEA  Lucent-Access-Intercept-LEA
        String
    radius.Lucent_Access_Intercept_LEA.len  Length
        Unsigned 8-bit integer
        Lucent-Access-Intercept-LEA Length
    radius.Lucent_Access_Intercept_Log  Lucent-Access-Intercept-Log
        String
    radius.Lucent_Access_Intercept_Log.len  Length
        Unsigned 8-bit integer
        Lucent-Access-Intercept-Log Length
    radius.Lucent_Add_Seconds  Lucent-Add-Seconds
        Unsigned 32-bit integer
    radius.Lucent_Add_Seconds.len  Length
        Unsigned 8-bit integer
        Lucent-Add-Seconds Length
    radius.Lucent_Appletalk_Peer_Mode  Lucent-Appletalk-Peer-Mode
        Unsigned 32-bit integer
    radius.Lucent_Appletalk_Peer_Mode.len  Length
        Unsigned 8-bit integer
        Lucent-Appletalk-Peer-Mode Length
    radius.Lucent_Appletalk_Route  Lucent-Appletalk-Route
        String
    radius.Lucent_Appletalk_Route.len  Length
        Unsigned 8-bit integer
        Lucent-Appletalk-Route Length
    radius.Lucent_Ara_PW  Lucent-Ara-PW
        String
    radius.Lucent_Ara_PW.len  Length
        Unsigned 8-bit integer
        Lucent-Ara-PW Length
    radius.Lucent_Assign_IP_Client  Lucent-Assign-IP-Client
        IPv4 address
    radius.Lucent_Assign_IP_Client.len  Length
        Unsigned 8-bit integer
        Lucent-Assign-IP-Client Length
    radius.Lucent_Assign_IP_Global_Pool  Lucent-Assign-IP-Global-Pool
        String
    radius.Lucent_Assign_IP_Global_Pool.len  Length
        Unsigned 8-bit integer
        Lucent-Assign-IP-Global-Pool Length
    radius.Lucent_Assign_IP_Pool  Lucent-Assign-IP-Pool
        Unsigned 32-bit integer
    radius.Lucent_Assign_IP_Pool.len  Length
        Unsigned 8-bit integer
        Lucent-Assign-IP-Pool Length
    radius.Lucent_Assign_IP_Server  Lucent-Assign-IP-Server
        IPv4 address
    radius.Lucent_Assign_IP_Server.len  Length
        Unsigned 8-bit integer
        Lucent-Assign-IP-Server Length
    radius.Lucent_Auth_Delay  Lucent-Auth-Delay
        Unsigned 32-bit integer
    radius.Lucent_Auth_Delay.len  Length
        Unsigned 8-bit integer
        Lucent-Auth-Delay Length
    radius.Lucent_Auth_Type  Lucent-Auth-Type
        Unsigned 32-bit integer
    radius.Lucent_Auth_Type.len  Length
        Unsigned 8-bit integer
        Lucent-Auth-Type Length
    radius.Lucent_Authen_Alias  Lucent-Authen-Alias
        String
    radius.Lucent_Authen_Alias.len  Length
        Unsigned 8-bit integer
        Lucent-Authen-Alias Length
    radius.Lucent_BACP_Enable  Lucent-BACP-Enable
        Unsigned 32-bit integer
    radius.Lucent_BACP_Enable.len  Length
        Unsigned 8-bit integer
        Lucent-BACP-Enable Length
    radius.Lucent_BIR_Bridge_Group  Lucent-BIR-Bridge-Group
        Unsigned 32-bit integer
    radius.Lucent_BIR_Bridge_Group.len  Length
        Unsigned 8-bit integer
        Lucent-BIR-Bridge-Group Length
    radius.Lucent_BIR_Enable  Lucent-BIR-Enable
        Unsigned 32-bit integer
    radius.Lucent_BIR_Enable.len  Length
        Unsigned 8-bit integer
        Lucent-BIR-Enable Length
    radius.Lucent_BIR_Proxy  Lucent-BIR-Proxy
        Unsigned 32-bit integer
    radius.Lucent_BIR_Proxy.len  Length
        Unsigned 8-bit integer
        Lucent-BIR-Proxy Length
    radius.Lucent_Backup  Lucent-Backup
        String
    radius.Lucent_Backup.len  Length
        Unsigned 8-bit integer
        Lucent-Backup Length
    radius.Lucent_Base_Channel_Count  Lucent-Base-Channel-Count
        Unsigned 32-bit integer
    radius.Lucent_Base_Channel_Count.len  Length
        Unsigned 8-bit integer
        Lucent-Base-Channel-Count Length
    radius.Lucent_Bi_Directional_Auth  Lucent-Bi-Directional-Auth
        Unsigned 32-bit integer
    radius.Lucent_Bi_Directional_Auth.len  Length
        Unsigned 8-bit integer
        Lucent-Bi-Directional-Auth Length
    radius.Lucent_Billing_Number  Lucent-Billing-Number
        String
    radius.Lucent_Billing_Number.len  Length
        Unsigned 8-bit integer
        Lucent-Billing-Number Length
    radius.Lucent_Bridge  Lucent-Bridge
        Unsigned 32-bit integer
    radius.Lucent_Bridge.len  Length
        Unsigned 8-bit integer
        Lucent-Bridge Length
    radius.Lucent_Bridge_Address  Lucent-Bridge-Address
        String
    radius.Lucent_Bridge_Address.len  Length
        Unsigned 8-bit integer
        Lucent-Bridge-Address Length
    radius.Lucent_Bridge_Non_PPPoE  Lucent-Bridge-Non-PPPoE
        Unsigned 32-bit integer
    radius.Lucent_Bridge_Non_PPPoE.len  Length
        Unsigned 8-bit integer
        Lucent-Bridge-Non-PPPoE Length
    radius.Lucent_CBCP_Delay  Lucent-CBCP-Delay
        Unsigned 32-bit integer
    radius.Lucent_CBCP_Delay.len  Length
        Unsigned 8-bit integer
        Lucent-CBCP-Delay Length
    radius.Lucent_CBCP_Enable  Lucent-CBCP-Enable
        Unsigned 32-bit integer
    radius.Lucent_CBCP_Enable.len  Length
        Unsigned 8-bit integer
        Lucent-CBCP-Enable Length
    radius.Lucent_CBCP_Mode  Lucent-CBCP-Mode
        Unsigned 32-bit integer
    radius.Lucent_CBCP_Mode.len  Length
        Unsigned 8-bit integer
        Lucent-CBCP-Mode Length
    radius.Lucent_CBCP_Trunk_Group  Lucent-CBCP-Trunk-Group
        Unsigned 32-bit integer
    radius.Lucent_CBCP_Trunk_Group.len  Length
        Unsigned 8-bit integer
        Lucent-CBCP-Trunk-Group Length
    radius.Lucent_CIR_Timer  Lucent-CIR-Timer
        Unsigned 32-bit integer
    radius.Lucent_CIR_Timer.len  Length
        Unsigned 8-bit integer
        Lucent-CIR-Timer Length
    radius.Lucent_Cache_Refresh  Lucent-Cache-Refresh
        Unsigned 32-bit integer
    radius.Lucent_Cache_Refresh.len  Length
        Unsigned 8-bit integer
        Lucent-Cache-Refresh Length
    radius.Lucent_Cache_Time  Lucent-Cache-Time
        Unsigned 32-bit integer
    radius.Lucent_Cache_Time.len  Length
        Unsigned 8-bit integer
        Lucent-Cache-Time Length
    radius.Lucent_Call_Attempt_Limit  Lucent-Call-Attempt-Limit
        Unsigned 32-bit integer
    radius.Lucent_Call_Attempt_Limit.len  Length
        Unsigned 8-bit integer
        Lucent-Call-Attempt-Limit Length
    radius.Lucent_Call_Block_Duration  Lucent-Call-Block-Duration
        Unsigned 32-bit integer
    radius.Lucent_Call_Block_Duration.len  Length
        Unsigned 8-bit integer
        Lucent-Call-Block-Duration Length
    radius.Lucent_Call_By_Call  Lucent-Call-By-Call
        Unsigned 32-bit integer
    radius.Lucent_Call_By_Call.len  Length
        Unsigned 8-bit integer
        Lucent-Call-By-Call Length
    radius.Lucent_Call_Direction  Lucent-Call-Direction
        Unsigned 32-bit integer
    radius.Lucent_Call_Direction.len  Length
        Unsigned 8-bit integer
        Lucent-Call-Direction Length
    radius.Lucent_Call_Filter  Lucent-Call-Filter
        Byte array
    radius.Lucent_Call_Filter.len  Length
        Unsigned 8-bit integer
        Lucent-Call-Filter Length
    radius.Lucent_Call_Type  Lucent-Call-Type
        Unsigned 32-bit integer
    radius.Lucent_Call_Type.len  Length
        Unsigned 8-bit integer
        Lucent-Call-Type Length
    radius.Lucent_Callback  Lucent-Callback
        Unsigned 32-bit integer
    radius.Lucent_Callback.len  Length
        Unsigned 8-bit integer
        Lucent-Callback Length
    radius.Lucent_Callback_Delay  Lucent-Callback-Delay
        Unsigned 32-bit integer
    radius.Lucent_Callback_Delay.len  Length
        Unsigned 8-bit integer
        Lucent-Callback-Delay Length
    radius.Lucent_Calling_Id_Numbering_Plan  Lucent-Calling-Id-Numbering-Plan
        Unsigned 32-bit integer
    radius.Lucent_Calling_Id_Numbering_Plan.len  Length
        Unsigned 8-bit integer
        Lucent-Calling-Id-Numbering-Plan Length
    radius.Lucent_Calling_Id_Presentation  Lucent-Calling-Id-Presentation
        Unsigned 32-bit integer
    radius.Lucent_Calling_Id_Presentation.len  Length
        Unsigned 8-bit integer
        Lucent-Calling-Id-Presentation Length
    radius.Lucent_Calling_Id_Screening  Lucent-Calling-Id-Screening
        Unsigned 32-bit integer
    radius.Lucent_Calling_Id_Screening.len  Length
        Unsigned 8-bit integer
        Lucent-Calling-Id-Screening Length
    radius.Lucent_Calling_Id_Type_Of_Number  Lucent-Calling-Id-Type-Of-Number
        Unsigned 32-bit integer
    radius.Lucent_Calling_Id_Type_Of_Number.len  Length
        Unsigned 8-bit integer
        Lucent-Calling-Id-Type-Of-Number Length
    radius.Lucent_Calling_Subaddress  Lucent-Calling-Subaddress
        String
    radius.Lucent_Calling_Subaddress.len  Length
        Unsigned 8-bit integer
        Lucent-Calling-Subaddress Length
    radius.Lucent_Ckt_Type  Lucent-Ckt-Type
        Unsigned 32-bit integer
    radius.Lucent_Ckt_Type.len  Length
        Unsigned 8-bit integer
        Lucent-Ckt-Type Length
    radius.Lucent_Client_Assign_DNS  Lucent-Client-Assign-DNS
        Unsigned 32-bit integer
    radius.Lucent_Client_Assign_DNS.len  Length
        Unsigned 8-bit integer
        Lucent-Client-Assign-DNS Length
    radius.Lucent_Client_Assign_WINS  Lucent-Client-Assign-WINS
        Unsigned 32-bit integer
    radius.Lucent_Client_Assign_WINS.len  Length
        Unsigned 8-bit integer
        Lucent-Client-Assign-WINS Length
    radius.Lucent_Client_Gateway  Lucent-Client-Gateway
        IPv4 address
    radius.Lucent_Client_Gateway.len  Length
        Unsigned 8-bit integer
        Lucent-Client-Gateway Length
    radius.Lucent_Client_Primary_DNS  Lucent-Client-Primary-DNS
        IPv4 address
    radius.Lucent_Client_Primary_DNS.len  Length
        Unsigned 8-bit integer
        Lucent-Client-Primary-DNS Length
    radius.Lucent_Client_Primary_WINS  Lucent-Client-Primary-WINS
        IPv4 address
    radius.Lucent_Client_Primary_WINS.len  Length
        Unsigned 8-bit integer
        Lucent-Client-Primary-WINS Length
    radius.Lucent_Client_Secondary_DNS  Lucent-Client-Secondary-DNS
        IPv4 address
    radius.Lucent_Client_Secondary_DNS.len  Length
        Unsigned 8-bit integer
        Lucent-Client-Secondary-DNS Length
    radius.Lucent_Client_Secondary_WINS  Lucent-Client-Secondary-WINS
        IPv4 address
    radius.Lucent_Client_Secondary_WINS.len  Length
        Unsigned 8-bit integer
        Lucent-Client-Secondary-WINS Length
    radius.Lucent_Compression_Protocol  Lucent-Compression-Protocol
        Unsigned 32-bit integer
    radius.Lucent_Compression_Protocol.len  Length
        Unsigned 8-bit integer
        Lucent-Compression-Protocol Length
    radius.Lucent_Configured_Rate_Dn_Max  Lucent-Configured-Rate-Dn-Max
        Unsigned 32-bit integer
    radius.Lucent_Configured_Rate_Dn_Max.len  Length
        Unsigned 8-bit integer
        Lucent-Configured-Rate-Dn-Max Length
    radius.Lucent_Configured_Rate_Dn_Min  Lucent-Configured-Rate-Dn-Min
        Unsigned 32-bit integer
    radius.Lucent_Configured_Rate_Dn_Min.len  Length
        Unsigned 8-bit integer
        Lucent-Configured-Rate-Dn-Min Length
    radius.Lucent_Configured_Rate_Up_Max  Lucent-Configured-Rate-Up-Max
        Unsigned 32-bit integer
    radius.Lucent_Configured_Rate_Up_Max.len  Length
        Unsigned 8-bit integer
        Lucent-Configured-Rate-Up-Max Length
    radius.Lucent_Configured_Rate_Up_Min  Lucent-Configured-Rate-Up-Min
        Unsigned 32-bit integer
    radius.Lucent_Configured_Rate_Up_Min.len  Length
        Unsigned 8-bit integer
        Lucent-Configured-Rate-Up-Min Length
    radius.Lucent_Connect_Progress  Lucent-Connect-Progress
        Unsigned 32-bit integer
    radius.Lucent_Connect_Progress.len  Length
        Unsigned 8-bit integer
        Lucent-Connect-Progress Length
    radius.Lucent_Connection_Time  Lucent-Connection-Time
        Unsigned 32-bit integer
    radius.Lucent_Connection_Time.len  Length
        Unsigned 8-bit integer
        Lucent-Connection-Time Length
    radius.Lucent_Cumulative_Hold_Time  Lucent-Cumulative-Hold-Time
        Unsigned 32-bit integer
    radius.Lucent_Cumulative_Hold_Time.len  Length
        Unsigned 8-bit integer
        Lucent-Cumulative-Hold-Time Length
    radius.Lucent_Current_Line_Quality  Lucent-Current-Line-Quality
        Unsigned 32-bit integer
    radius.Lucent_Current_Line_Quality.len  Length
        Unsigned 8-bit integer
        Lucent-Current-Line-Quality Length
    radius.Lucent_Current_Recv_Level  Lucent-Current-Recv-Level
        Unsigned 32-bit integer
    radius.Lucent_Current_Recv_Level.len  Length
        Unsigned 8-bit integer
        Lucent-Current-Recv-Level Length
    radius.Lucent_Current_SNR  Lucent-Current-SNR
        Unsigned 32-bit integer
    radius.Lucent_Current_SNR.len  Length
        Unsigned 8-bit integer
        Lucent-Current-SNR Length
    radius.Lucent_Current_Xmit_Level  Lucent-Current-Xmit-Level
        Unsigned 32-bit integer
    radius.Lucent_Current_Xmit_Level.len  Length
        Unsigned 8-bit integer
        Lucent-Current-Xmit-Level Length
    radius.Lucent_DBA_Monitor  Lucent-DBA-Monitor
        Unsigned 32-bit integer
    radius.Lucent_DBA_Monitor.len  Length
        Unsigned 8-bit integer
        Lucent-DBA-Monitor Length
    radius.Lucent_DHCP_Maximum_Leases  Lucent-DHCP-Maximum-Leases
        Unsigned 32-bit integer
    radius.Lucent_DHCP_Maximum_Leases.len  Length
        Unsigned 8-bit integer
        Lucent-DHCP-Maximum-Leases Length
    radius.Lucent_DHCP_Pool_Number  Lucent-DHCP-Pool-Number
        Unsigned 32-bit integer
    radius.Lucent_DHCP_Pool_Number.len  Length
        Unsigned 8-bit integer
        Lucent-DHCP-Pool-Number Length
    radius.Lucent_DHCP_Reply  Lucent-DHCP-Reply
        Unsigned 32-bit integer
    radius.Lucent_DHCP_Reply.len  Length
        Unsigned 8-bit integer
        Lucent-DHCP-Reply Length
    radius.Lucent_Data_Filter  Lucent-Data-Filter
        Byte array
    radius.Lucent_Data_Filter.len  Length
        Unsigned 8-bit integer
        Lucent-Data-Filter Length
    radius.Lucent_Data_Rate  Lucent-Data-Rate
        Unsigned 32-bit integer
    radius.Lucent_Data_Rate.len  Length
        Unsigned 8-bit integer
        Lucent-Data-Rate Length
    radius.Lucent_Data_Svc  Lucent-Data-Svc
        Unsigned 32-bit integer
    radius.Lucent_Data_Svc.len  Length
        Unsigned 8-bit integer
        Lucent-Data-Svc Length
    radius.Lucent_Dec_Channel_Count  Lucent-Dec-Channel-Count
        Unsigned 32-bit integer
    radius.Lucent_Dec_Channel_Count.len  Length
        Unsigned 8-bit integer
        Lucent-Dec-Channel-Count Length
    radius.Lucent_Destination_NAS_Port  Lucent-Destination-NAS-Port
        Unsigned 32-bit integer
    radius.Lucent_Destination_NAS_Port.len  Length
        Unsigned 8-bit integer
        Lucent-Destination-NAS-Port Length
    radius.Lucent_Dial_Number  Lucent-Dial-Number
        String
    radius.Lucent_Dial_Number.len  Length
        Unsigned 8-bit integer
        Lucent-Dial-Number Length
    radius.Lucent_Dialed_Number  Lucent-Dialed-Number
        String
    radius.Lucent_Dialed_Number.len  Length
        Unsigned 8-bit integer
        Lucent-Dialed-Number Length
    radius.Lucent_Dialout_Allowed  Lucent-Dialout-Allowed
        Unsigned 32-bit integer
    radius.Lucent_Dialout_Allowed.len  Length
        Unsigned 8-bit integer
        Lucent-Dialout-Allowed Length
    radius.Lucent_Disconnect_Cause  Lucent-Disconnect-Cause
        Unsigned 32-bit integer
    radius.Lucent_Disconnect_Cause.len  Length
        Unsigned 8-bit integer
        Lucent-Disconnect-Cause Length
    radius.Lucent_Dropped_Octets  Lucent-Dropped-Octets
        Unsigned 32-bit integer
    radius.Lucent_Dropped_Octets.len  Length
        Unsigned 8-bit integer
        Lucent-Dropped-Octets Length
    radius.Lucent_Dropped_Packets  Lucent-Dropped-Packets
        Unsigned 32-bit integer
    radius.Lucent_Dropped_Packets.len  Length
        Unsigned 8-bit integer
        Lucent-Dropped-Packets Length
    radius.Lucent_Ds3_CCVs  Lucent-Ds3-CCVs
        Unsigned 32-bit integer
    radius.Lucent_Ds3_CCVs.len  Length
        Unsigned 8-bit integer
        Lucent-Ds3-CCVs Length
    radius.Lucent_Ds3_CESs  Lucent-Ds3-CESs
        Unsigned 32-bit integer
    radius.Lucent_Ds3_CESs.len  Length
        Unsigned 8-bit integer
        Lucent-Ds3-CESs Length
    radius.Lucent_Ds3_CSESs  Lucent-Ds3-CSESs
        Unsigned 32-bit integer
    radius.Lucent_Ds3_CSESs.len  Length
        Unsigned 8-bit integer
        Lucent-Ds3-CSESs Length
    radius.Lucent_Ds3_F_Bit_Err  Lucent-Ds3-F-Bit-Err
        Unsigned 32-bit integer
    radius.Lucent_Ds3_F_Bit_Err.len  Length
        Unsigned 8-bit integer
        Lucent-Ds3-F-Bit-Err Length
    radius.Lucent_Ds3_LCVs  Lucent-Ds3-LCVs
        Unsigned 32-bit integer
    radius.Lucent_Ds3_LCVs.len  Length
        Unsigned 8-bit integer
        Lucent-Ds3-LCVs Length
    radius.Lucent_Ds3_LESs  Lucent-Ds3-LESs
        Unsigned 32-bit integer
    radius.Lucent_Ds3_LESs.len  Length
        Unsigned 8-bit integer
        Lucent-Ds3-LESs Length
    radius.Lucent_Ds3_PCVs  Lucent-Ds3-PCVs
        Unsigned 32-bit integer
    radius.Lucent_Ds3_PCVs.len  Length
        Unsigned 8-bit integer
        Lucent-Ds3-PCVs Length
    radius.Lucent_Ds3_PESs  Lucent-Ds3-PESs
        Unsigned 32-bit integer
    radius.Lucent_Ds3_PESs.len  Length
        Unsigned 8-bit integer
        Lucent-Ds3-PESs Length
    radius.Lucent_Ds3_PSESs  Lucent-Ds3-PSESs
        Unsigned 32-bit integer
    radius.Lucent_Ds3_PSESs.len  Length
        Unsigned 8-bit integer
        Lucent-Ds3-PSESs Length
    radius.Lucent_Ds3_P_Bit_Err  Lucent-Ds3-P-Bit-Err
        Unsigned 32-bit integer
    radius.Lucent_Ds3_P_Bit_Err.len  Length
        Unsigned 8-bit integer
        Lucent-Ds3-P-Bit-Err Length
    radius.Lucent_Ds3_SEFs  Lucent-Ds3-SEFs
        Unsigned 32-bit integer
    radius.Lucent_Ds3_SEFs.len  Length
        Unsigned 8-bit integer
        Lucent-Ds3-SEFs Length
    radius.Lucent_Ds3_UASs  Lucent-Ds3-UASs
        Unsigned 32-bit integer
    radius.Lucent_Ds3_UASs.len  Length
        Unsigned 8-bit integer
        Lucent-Ds3-UASs Length
    radius.Lucent_Dsl_Atuc_Chan_Corrected_Blks  Lucent-Dsl-Atuc-Chan-Corrected-Blks
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Chan_Corrected_Blks.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Chan-Corrected-Blks Length
    radius.Lucent_Dsl_Atuc_Chan_Recd_Blks  Lucent-Dsl-Atuc-Chan-Recd-Blks
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Chan_Recd_Blks.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Chan-Recd-Blks Length
    radius.Lucent_Dsl_Atuc_Chan_Uncorrect_Blks  Lucent-Dsl-Atuc-Chan-Uncorrect-Blks
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Chan_Uncorrect_Blks.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Chan-Uncorrect-Blks Length
    radius.Lucent_Dsl_Atuc_Chan_Xmit_Blks  Lucent-Dsl-Atuc-Chan-Xmit-Blks
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Chan_Xmit_Blks.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Chan-Xmit-Blks Length
    radius.Lucent_Dsl_Atuc_Curr_Atn_Dn  Lucent-Dsl-Atuc-Curr-Atn-Dn
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Curr_Atn_Dn.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Curr-Atn-Dn Length
    radius.Lucent_Dsl_Atuc_Curr_Atn_Up  Lucent-Dsl-Atuc-Curr-Atn-Up
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Curr_Atn_Up.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Curr-Atn-Up Length
    radius.Lucent_Dsl_Atuc_Curr_Attainable_Rate_Dn  Lucent-Dsl-Atuc-Curr-Attainable-Rate-Dn
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Curr_Attainable_Rate_Dn.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Curr-Attainable-Rate-Dn Length
    radius.Lucent_Dsl_Atuc_Curr_Attainable_Rate_Up  Lucent-Dsl-Atuc-Curr-Attainable-Rate-Up
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Curr_Attainable_Rate_Up.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Curr-Attainable-Rate-Up Length
    radius.Lucent_Dsl_Atuc_Curr_Output_Pwr_Dn  Lucent-Dsl-Atuc-Curr-Output-Pwr-Dn
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Curr_Output_Pwr_Dn.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Curr-Output-Pwr-Dn Length
    radius.Lucent_Dsl_Atuc_Curr_Output_Pwr_Up  Lucent-Dsl-Atuc-Curr-Output-Pwr-Up
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Curr_Output_Pwr_Up.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Curr-Output-Pwr-Up Length
    radius.Lucent_Dsl_Atuc_Curr_Snr_Mgn_D  Lucent-Dsl-Atuc-Curr-Snr-Mgn-D
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Curr_Snr_Mgn_D.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Curr-Snr-Mgn-D Length
    radius.Lucent_Dsl_Atuc_Curr_Snr_Mgn_Up  Lucent-Dsl-Atuc-Curr-Snr-Mgn-Up
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Curr_Snr_Mgn_Up.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Curr-Snr-Mgn-Up Length
    radius.Lucent_Dsl_Atuc_PS_Failed_Fast_Retrains  Lucent-Dsl-Atuc-PS-Failed-Fast-Retrains
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_PS_Failed_Fast_Retrains.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-PS-Failed-Fast-Retrains Length
    radius.Lucent_Dsl_Atuc_PS_Fast_Retrains  Lucent-Dsl-Atuc-PS-Fast-Retrains
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_PS_Fast_Retrains.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-PS-Fast-Retrains Length
    radius.Lucent_Dsl_Atuc_Perf_ESs  Lucent-Dsl-Atuc-Perf-ESs
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Perf_ESs.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Perf-ESs Length
    radius.Lucent_Dsl_Atuc_Perf_Inits  Lucent-Dsl-Atuc-Perf-Inits
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Perf_Inits.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Perf-Inits Length
    radius.Lucent_Dsl_Atuc_Perf_Lofs  Lucent-Dsl-Atuc-Perf-Lofs
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Perf_Lofs.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Perf-Lofs Length
    radius.Lucent_Dsl_Atuc_Perf_Lols  Lucent-Dsl-Atuc-Perf-Lols
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Perf_Lols.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Perf-Lols Length
    radius.Lucent_Dsl_Atuc_Perf_Loss  Lucent-Dsl-Atuc-Perf-Loss
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Perf_Loss.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Perf-Loss Length
    radius.Lucent_Dsl_Atuc_Perf_Lprs  Lucent-Dsl-Atuc-Perf-Lprs
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Atuc_Perf_Lprs.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Atuc-Perf-Lprs Length
    radius.Lucent_Dsl_CIR_Recv_Limit  Lucent-Dsl-CIR-Recv-Limit
        Unsigned 32-bit integer
    radius.Lucent_Dsl_CIR_Recv_Limit.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-CIR-Recv-Limit Length
    radius.Lucent_Dsl_CIR_Xmit_Limit  Lucent-Dsl-CIR-Xmit-Limit
        Unsigned 32-bit integer
    radius.Lucent_Dsl_CIR_Xmit_Limit.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-CIR-Xmit-Limit Length
    radius.Lucent_Dsl_Code_Violations  Lucent-Dsl-Code-Violations
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Code_Violations.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Code-Violations Length
    radius.Lucent_Dsl_Curr_Dn_Rate  Lucent-Dsl-Curr-Dn-Rate
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Curr_Dn_Rate.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Curr-Dn-Rate Length
    radius.Lucent_Dsl_Curr_Up_Rate  Lucent-Dsl-Curr-Up-Rate
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Curr_Up_Rate.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Curr-Up-Rate Length
    radius.Lucent_Dsl_Downstream_Limit  Lucent-Dsl-Downstream-Limit
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Downstream_Limit.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Downstream-Limit Length
    radius.Lucent_Dsl_If_Index  Lucent-Dsl-If-Index
        Unsigned 32-bit integer
    radius.Lucent_Dsl_If_Index.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-If-Index Length
    radius.Lucent_Dsl_Oper_Status  Lucent-Dsl-Oper-Status
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Oper_Status.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Oper-Status Length
    radius.Lucent_Dsl_Physical_Channel  Lucent-Dsl-Physical-Channel
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Physical_Channel.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Physical-Channel Length
    radius.Lucent_Dsl_Physical_Line  Lucent-Dsl-Physical-Line
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Physical_Line.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Physical-Line Length
    radius.Lucent_Dsl_Physical_Slot  Lucent-Dsl-Physical-Slot
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Physical_Slot.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Physical-Slot Length
    radius.Lucent_Dsl_Rate_Mode  Lucent-Dsl-Rate-Mode
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Rate_Mode.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Rate-Mode Length
    radius.Lucent_Dsl_Rate_Type  Lucent-Dsl-Rate-Type
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Rate_Type.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Rate-Type Length
    radius.Lucent_Dsl_Related_If_Index  Lucent-Dsl-Related-If-Index
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Related_If_Index.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Related-If-Index Length
    radius.Lucent_Dsl_Related_Port  Lucent-Dsl-Related-Port
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Related_Port.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Related-Port Length
    radius.Lucent_Dsl_Related_Slot  Lucent-Dsl-Related-Slot
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Related_Slot.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Related-Slot Length
    radius.Lucent_Dsl_Sparing_Role  Lucent-Dsl-Sparing-Role
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Sparing_Role.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Sparing-Role Length
    radius.Lucent_Dsl_Upstream_Limit  Lucent-Dsl-Upstream-Limit
        Unsigned 32-bit integer
    radius.Lucent_Dsl_Upstream_Limit.len  Length
        Unsigned 8-bit integer
        Lucent-Dsl-Upstream-Limit Length
    radius.Lucent_Egress_Enabled  Lucent-Egress-Enabled
        Unsigned 32-bit integer
    radius.Lucent_Egress_Enabled.len  Length
        Unsigned 8-bit integer
        Lucent-Egress-Enabled Length
    radius.Lucent_Endpoint_Disc  Lucent-Endpoint-Disc
        Byte array
    radius.Lucent_Endpoint_Disc.len  Length
        Unsigned 8-bit integer
        Lucent-Endpoint-Disc Length
    radius.Lucent_Error_Correction_Protocol  Lucent-Error-Correction-Protocol
        Unsigned 32-bit integer
    radius.Lucent_Error_Correction_Protocol.len  Length
        Unsigned 8-bit integer
        Lucent-Error-Correction-Protocol Length
    radius.Lucent_Event_Type  Lucent-Event-Type
        Unsigned 32-bit integer
    radius.Lucent_Event_Type.len  Length
        Unsigned 8-bit integer
        Lucent-Event-Type Length
    radius.Lucent_Expect_Callback  Lucent-Expect-Callback
        Unsigned 32-bit integer
    radius.Lucent_Expect_Callback.len  Length
        Unsigned 8-bit integer
        Lucent-Expect-Callback Length
    radius.Lucent_FCP_Parameter  Lucent-FCP-Parameter
        String
    radius.Lucent_FCP_Parameter.len  Length
        Unsigned 8-bit integer
        Lucent-FCP-Parameter Length
    radius.Lucent_FR_08_Mode  Lucent-FR-08-Mode
        Unsigned 32-bit integer
    radius.Lucent_FR_08_Mode.len  Length
        Unsigned 8-bit integer
        Lucent-FR-08-Mode Length
    radius.Lucent_FR_Circuit_Name  Lucent-FR-Circuit-Name
        String
    radius.Lucent_FR_Circuit_Name.len  Length
        Unsigned 8-bit integer
        Lucent-FR-Circuit-Name Length
    radius.Lucent_FR_DCE_N392  Lucent-FR-DCE-N392
        Unsigned 32-bit integer
    radius.Lucent_FR_DCE_N392.len  Length
        Unsigned 8-bit integer
        Lucent-FR-DCE-N392 Length
    radius.Lucent_FR_DCE_N393  Lucent-FR-DCE-N393
        Unsigned 32-bit integer
    radius.Lucent_FR_DCE_N393.len  Length
        Unsigned 8-bit integer
        Lucent-FR-DCE-N393 Length
    radius.Lucent_FR_DLCI  Lucent-FR-DLCI
        Unsigned 32-bit integer
    radius.Lucent_FR_DLCI.len  Length
        Unsigned 8-bit integer
        Lucent-FR-DLCI Length
    radius.Lucent_FR_DTE_N392  Lucent-FR-DTE-N392
        Unsigned 32-bit integer
    radius.Lucent_FR_DTE_N392.len  Length
        Unsigned 8-bit integer
        Lucent-FR-DTE-N392 Length
    radius.Lucent_FR_DTE_N393  Lucent-FR-DTE-N393
        Unsigned 32-bit integer
    radius.Lucent_FR_DTE_N393.len  Length
        Unsigned 8-bit integer
        Lucent-FR-DTE-N393 Length
    radius.Lucent_FR_Direct  Lucent-FR-Direct
        Unsigned 32-bit integer
    radius.Lucent_FR_Direct.len  Length
        Unsigned 8-bit integer
        Lucent-FR-Direct Length
    radius.Lucent_FR_Direct_DLCI  Lucent-FR-Direct-DLCI
        Unsigned 32-bit integer
    radius.Lucent_FR_Direct_DLCI.len  Length
        Unsigned 8-bit integer
        Lucent-FR-Direct-DLCI Length
    radius.Lucent_FR_Direct_Profile  Lucent-FR-Direct-Profile
        String
    radius.Lucent_FR_Direct_Profile.len  Length
        Unsigned 8-bit integer
        Lucent-FR-Direct-Profile Length
    radius.Lucent_FR_LinkUp  Lucent-FR-LinkUp
        Unsigned 32-bit integer
    radius.Lucent_FR_LinkUp.len  Length
        Unsigned 8-bit integer
        Lucent-FR-LinkUp Length
    radius.Lucent_FR_Link_Mgt  Lucent-FR-Link-Mgt
        Unsigned 32-bit integer
    radius.Lucent_FR_Link_Mgt.len  Length
        Unsigned 8-bit integer
        Lucent-FR-Link-Mgt Length
    radius.Lucent_FR_Link_Status_DLCI  Lucent-FR-Link-Status-DLCI
        Unsigned 32-bit integer
    radius.Lucent_FR_Link_Status_DLCI.len  Length
        Unsigned 8-bit integer
        Lucent-FR-Link-Status-DLCI Length
    radius.Lucent_FR_N391  Lucent-FR-N391
        Unsigned 32-bit integer
    radius.Lucent_FR_N391.len  Length
        Unsigned 8-bit integer
        Lucent-FR-N391 Length
    radius.Lucent_FR_Nailed_Grp  Lucent-FR-Nailed-Grp
        Unsigned 32-bit integer
    radius.Lucent_FR_Nailed_Grp.len  Length
        Unsigned 8-bit integer
        Lucent-FR-Nailed-Grp Length
    radius.Lucent_FR_Profile_Name  Lucent-FR-Profile-Name
        String
    radius.Lucent_FR_Profile_Name.len  Length
        Unsigned 8-bit integer
        Lucent-FR-Profile-Name Length
    radius.Lucent_FR_SVC_Addr  Lucent-FR-SVC-Addr
        String
    radius.Lucent_FR_SVC_Addr.len  Length
        Unsigned 8-bit integer
        Lucent-FR-SVC-Addr Length
    radius.Lucent_FR_T391  Lucent-FR-T391
        Unsigned 32-bit integer
    radius.Lucent_FR_T391.len  Length
        Unsigned 8-bit integer
        Lucent-FR-T391 Length
    radius.Lucent_FR_T392  Lucent-FR-T392
        Unsigned 32-bit integer
    radius.Lucent_FR_T392.len  Length
        Unsigned 8-bit integer
        Lucent-FR-T392 Length
    radius.Lucent_FR_Type  Lucent-FR-Type
        Unsigned 32-bit integer
    radius.Lucent_FR_Type.len  Length
        Unsigned 8-bit integer
        Lucent-FR-Type Length
    radius.Lucent_FT1_Caller  Lucent-FT1-Caller
        Unsigned 32-bit integer
    radius.Lucent_FT1_Caller.len  Length
        Unsigned 8-bit integer
        Lucent-FT1-Caller Length
    radius.Lucent_Filter  Lucent-Filter
        String
    radius.Lucent_Filter.len  Length
        Unsigned 8-bit integer
        Lucent-Filter Length
    radius.Lucent_Filter_Required  Lucent-Filter-Required
        Unsigned 32-bit integer
    radius.Lucent_Filter_Required.len  Length
        Unsigned 8-bit integer
        Lucent-Filter-Required Length
    radius.Lucent_First_Dest  Lucent-First-Dest
        IPv4 address
    radius.Lucent_First_Dest.len  Length
        Unsigned 8-bit integer
        Lucent-First-Dest Length
    radius.Lucent_First_Level_User  Lucent-First-Level-User
        String
    radius.Lucent_First_Level_User.len  Length
        Unsigned 8-bit integer
        Lucent-First-Level-User Length
    radius.Lucent_Force_56  Lucent-Force-56
        Unsigned 32-bit integer
    radius.Lucent_Force_56.len  Length
        Unsigned 8-bit integer
        Lucent-Force-56 Length
    radius.Lucent_Fr05_Enabled  Lucent-Fr05-Enabled
        Unsigned 32-bit integer
    radius.Lucent_Fr05_Enabled.len  Length
        Unsigned 8-bit integer
        Lucent-Fr05-Enabled Length
    radius.Lucent_Fr05_Traffic_Shaper  Lucent-Fr05-Traffic-Shaper
        Unsigned 32-bit integer
    radius.Lucent_Fr05_Traffic_Shaper.len  Length
        Unsigned 8-bit integer
        Lucent-Fr05-Traffic-Shaper Length
    radius.Lucent_Fr05_Vci  Lucent-Fr05-Vci
        Unsigned 32-bit integer
    radius.Lucent_Fr05_Vci.len  Length
        Unsigned 8-bit integer
        Lucent-Fr05-Vci Length
    radius.Lucent_Fr05_Vpi  Lucent-Fr05-Vpi
        Unsigned 32-bit integer
    radius.Lucent_Fr05_Vpi.len  Length
        Unsigned 8-bit integer
        Lucent-Fr05-Vpi Length
    radius.Lucent_Global_Call_Id  Lucent-Global-Call-Id
        String
    radius.Lucent_Global_Call_Id.len  Length
        Unsigned 8-bit integer
        Lucent-Global-Call-Id Length
    radius.Lucent_Group  Lucent-Group
        String
    radius.Lucent_Group.len  Length
        Unsigned 8-bit integer
        Lucent-Group Length
    radius.Lucent_H323_Conference_Id  Lucent-H323-Conference-Id
        Unsigned 32-bit integer
    radius.Lucent_H323_Conference_Id.len  Length
        Unsigned 8-bit integer
        Lucent-H323-Conference-Id Length
    radius.Lucent_H323_Destination_NAS_ID  Lucent-H323-Destination-NAS-ID
        IPv4 address
    radius.Lucent_H323_Destination_NAS_ID.len  Length
        Unsigned 8-bit integer
        Lucent-H323-Destination-NAS-ID Length
    radius.Lucent_H323_Dialed_Time  Lucent-H323-Dialed-Time
        Unsigned 32-bit integer
    radius.Lucent_H323_Dialed_Time.len  Length
        Unsigned 8-bit integer
        Lucent-H323-Dialed-Time Length
    radius.Lucent_H323_Gatekeeper  Lucent-H323-Gatekeeper
        IPv4 address
    radius.Lucent_H323_Gatekeeper.len  Length
        Unsigned 8-bit integer
        Lucent-H323-Gatekeeper Length
    radius.Lucent_Handle_IPX  Lucent-Handle-IPX
        Unsigned 32-bit integer
    radius.Lucent_Handle_IPX.len  Length
        Unsigned 8-bit integer
        Lucent-Handle-IPX Length
    radius.Lucent_History_Weigh_Type  Lucent-History-Weigh-Type
        Unsigned 32-bit integer
    radius.Lucent_History_Weigh_Type.len  Length
        Unsigned 8-bit integer
        Lucent-History-Weigh-Type Length
    radius.Lucent_Home_Agent_IP_Addr  Lucent-Home-Agent-IP-Addr
        IPv4 address
    radius.Lucent_Home_Agent_IP_Addr.len  Length
        Unsigned 8-bit integer
        Lucent-Home-Agent-IP-Addr Length
    radius.Lucent_Home_Agent_Password  Lucent-Home-Agent-Password
        String
    radius.Lucent_Home_Agent_Password.len  Length
        Unsigned 8-bit integer
        Lucent-Home-Agent-Password Length
    radius.Lucent_Home_Agent_UDP_Port  Lucent-Home-Agent-UDP-Port
        Unsigned 32-bit integer
    radius.Lucent_Home_Agent_UDP_Port.len  Length
        Unsigned 8-bit integer
        Lucent-Home-Agent-UDP-Port Length
    radius.Lucent_Home_Network_Name  Lucent-Home-Network-Name
        String
    radius.Lucent_Home_Network_Name.len  Length
        Unsigned 8-bit integer
        Lucent-Home-Network-Name Length
    radius.Lucent_Host_Info  Lucent-Host-Info
        String
    radius.Lucent_Host_Info.len  Length
        Unsigned 8-bit integer
        Lucent-Host-Info Length
    radius.Lucent_Http_Redirect_Port  Lucent-Http-Redirect-Port
        Unsigned 32-bit integer
    radius.Lucent_Http_Redirect_Port.len  Length
        Unsigned 8-bit integer
        Lucent-Http-Redirect-Port Length
    radius.Lucent_Http_Redirect_URL  Lucent-Http-Redirect-URL
        String
    radius.Lucent_Http_Redirect_URL.len  Length
        Unsigned 8-bit integer
        Lucent-Http-Redirect-URL Length
    radius.Lucent_IF_Netmask  Lucent-IF-Netmask
        IPv4 address
    radius.Lucent_IF_Netmask.len  Length
        Unsigned 8-bit integer
        Lucent-IF-Netmask Length
    radius.Lucent_IPSEC_Profile  Lucent-IPSEC-Profile
        String
    radius.Lucent_IPSEC_Profile.len  Length
        Unsigned 8-bit integer
        Lucent-IPSEC-Profile Length
    radius.Lucent_IPX_Alias  Lucent-IPX-Alias
        Unsigned 32-bit integer
    radius.Lucent_IPX_Alias.len  Length
        Unsigned 8-bit integer
        Lucent-IPX-Alias Length
    radius.Lucent_IPX_Header_Compression  Lucent-IPX-Header-Compression
        Unsigned 32-bit integer
    radius.Lucent_IPX_Header_Compression.len  Length
        Unsigned 8-bit integer
        Lucent-IPX-Header-Compression Length
    radius.Lucent_IPX_Node_Addr  Lucent-IPX-Node-Addr
        String
    radius.Lucent_IPX_Node_Addr.len  Length
        Unsigned 8-bit integer
        Lucent-IPX-Node-Addr Length
    radius.Lucent_IPX_Peer_Mode  Lucent-IPX-Peer-Mode
        Unsigned 32-bit integer
    radius.Lucent_IPX_Peer_Mode.len  Length
        Unsigned 8-bit integer
        Lucent-IPX-Peer-Mode Length
    radius.Lucent_IPX_Route  Lucent-IPX-Route
        String
    radius.Lucent_IPX_Route.len  Length
        Unsigned 8-bit integer
        Lucent-IPX-Route Length
    radius.Lucent_IP_DSCP  Lucent-IP-DSCP
        Unsigned 32-bit integer
    radius.Lucent_IP_DSCP.len  Length
        Unsigned 8-bit integer
        Lucent-IP-DSCP Length
    radius.Lucent_IP_Direct  Lucent-IP-Direct
        IPv4 address
    radius.Lucent_IP_Direct.len  Length
        Unsigned 8-bit integer
        Lucent-IP-Direct Length
    radius.Lucent_IP_OUTGOING_DSCP  Lucent-IP-OUTGOING-DSCP
        Unsigned 32-bit integer
    radius.Lucent_IP_OUTGOING_DSCP.len  Length
        Unsigned 8-bit integer
        Lucent-IP-OUTGOING-DSCP Length
    radius.Lucent_IP_OUTGOING_TOS  Lucent-IP-OUTGOING-TOS
        Unsigned 32-bit integer
    radius.Lucent_IP_OUTGOING_TOS.len  Length
        Unsigned 8-bit integer
        Lucent-IP-OUTGOING-TOS Length
    radius.Lucent_IP_OUTGOING_TOS_Precedence  Lucent-IP-OUTGOING-TOS-Precedence
        Unsigned 32-bit integer
    radius.Lucent_IP_OUTGOING_TOS_Precedence.len  Length
        Unsigned 8-bit integer
        Lucent-IP-OUTGOING-TOS-Precedence Length
    radius.Lucent_IP_Pool_Chaining  Lucent-IP-Pool-Chaining
        Unsigned 32-bit integer
    radius.Lucent_IP_Pool_Chaining.len  Length
        Unsigned 8-bit integer
        Lucent-IP-Pool-Chaining Length
    radius.Lucent_IP_Pool_Definition  Lucent-IP-Pool-Definition
        String
    radius.Lucent_IP_Pool_Definition.len  Length
        Unsigned 8-bit integer
        Lucent-IP-Pool-Definition Length
    radius.Lucent_IP_Source_If  Lucent-IP-Source-If
        String
    radius.Lucent_IP_Source_If.len  Length
        Unsigned 8-bit integer
        Lucent-IP-Source-If Length
    radius.Lucent_IP_TOS  Lucent-IP-TOS
        Unsigned 32-bit integer
    radius.Lucent_IP_TOS.len  Length
        Unsigned 8-bit integer
        Lucent-IP-TOS Length
    radius.Lucent_IP_TOS_Apply_To  Lucent-IP-TOS-Apply-To
        Unsigned 32-bit integer
    radius.Lucent_IP_TOS_Apply_To.len  Length
        Unsigned 8-bit integer
        Lucent-IP-TOS-Apply-To Length
    radius.Lucent_IP_TOS_Precedence  Lucent-IP-TOS-Precedence
        Unsigned 32-bit integer
    radius.Lucent_IP_TOS_Precedence.len  Length
        Unsigned 8-bit integer
        Lucent-IP-TOS-Precedence Length
    radius.Lucent_Idle_Limit  Lucent-Idle-Limit
        Unsigned 32-bit integer
    radius.Lucent_Idle_Limit.len  Length
        Unsigned 8-bit integer
        Lucent-Idle-Limit Length
    radius.Lucent_Inc_Channel_Count  Lucent-Inc-Channel-Count
        Unsigned 32-bit integer
    radius.Lucent_Inc_Channel_Count.len  Length
        Unsigned 8-bit integer
        Lucent-Inc-Channel-Count Length
    radius.Lucent_Inter_Arrival_Jitter  Lucent-Inter-Arrival-Jitter
        Unsigned 32-bit integer
    radius.Lucent_Inter_Arrival_Jitter.len  Length
        Unsigned 8-bit integer
        Lucent-Inter-Arrival-Jitter Length
    radius.Lucent_L2TP_DCI_Direction  Lucent-L2TP-DCI-Direction
        Unsigned 32-bit integer
    radius.Lucent_L2TP_DCI_Direction.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-DCI-Direction Length
    radius.Lucent_L2TP_DCI_Disconnect_Code  Lucent-L2TP-DCI-Disconnect-Code
        Unsigned 32-bit integer
    radius.Lucent_L2TP_DCI_Disconnect_Code.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-DCI-Disconnect-Code Length
    radius.Lucent_L2TP_DCI_Message  Lucent-L2TP-DCI-Message
        String
    radius.Lucent_L2TP_DCI_Message.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-DCI-Message Length
    radius.Lucent_L2TP_DCI_Protocol_Number  Lucent-L2TP-DCI-Protocol-Number
        Unsigned 32-bit integer
    radius.Lucent_L2TP_DCI_Protocol_Number.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-DCI-Protocol-Number Length
    radius.Lucent_L2TP_Disconnect_Scenario  Lucent-L2TP-Disconnect-Scenario
        Unsigned 32-bit integer
    radius.Lucent_L2TP_Disconnect_Scenario.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-Disconnect-Scenario Length
    radius.Lucent_L2TP_Peer_Connect_Progress  Lucent-L2TP-Peer-Connect-Progress
        Unsigned 32-bit integer
    radius.Lucent_L2TP_Peer_Connect_Progress.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-Peer-Connect-Progress Length
    radius.Lucent_L2TP_Peer_Disconnect_Cause  Lucent-L2TP-Peer-Disconnect-Cause
        Unsigned 32-bit integer
    radius.Lucent_L2TP_Peer_Disconnect_Cause.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-Peer-Disconnect-Cause Length
    radius.Lucent_L2TP_Q931_Advisory_Message  Lucent-L2TP-Q931-Advisory-Message
        String
    radius.Lucent_L2TP_Q931_Advisory_Message.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-Q931-Advisory-Message Length
    radius.Lucent_L2TP_Q931_Cause_Code  Lucent-L2TP-Q931-Cause-Code
        Unsigned 32-bit integer
    radius.Lucent_L2TP_Q931_Cause_Code.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-Q931-Cause-Code Length
    radius.Lucent_L2TP_Q931_Cause_Message  Lucent-L2TP-Q931-Cause-Message
        Unsigned 32-bit integer
    radius.Lucent_L2TP_Q931_Cause_Message.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-Q931-Cause-Message Length
    radius.Lucent_L2TP_RC_Error_Code  Lucent-L2TP-RC-Error-Code
        Unsigned 32-bit integer
    radius.Lucent_L2TP_RC_Error_Code.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-RC-Error-Code Length
    radius.Lucent_L2TP_RC_Error_Message  Lucent-L2TP-RC-Error-Message
        String
    radius.Lucent_L2TP_RC_Error_Message.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-RC-Error-Message Length
    radius.Lucent_L2TP_RC_Result_Code  Lucent-L2TP-RC-Result-Code
        Unsigned 32-bit integer
    radius.Lucent_L2TP_RC_Result_Code.len  Length
        Unsigned 8-bit integer
        Lucent-L2TP-RC-Result-Code Length
    radius.Lucent_LCP_Keepalive_Missed_Limit  Lucent-LCP-Keepalive-Missed-Limit
        Unsigned 32-bit integer
    radius.Lucent_LCP_Keepalive_Missed_Limit.len  Length
        Unsigned 8-bit integer
        Lucent-LCP-Keepalive-Missed-Limit Length
    radius.Lucent_LCP_Keepalive_Period  Lucent-LCP-Keepalive-Period
        Unsigned 32-bit integer
    radius.Lucent_LCP_Keepalive_Period.len  Length
        Unsigned 8-bit integer
        Lucent-LCP-Keepalive-Period Length
    radius.Lucent_Line_Type  Lucent-Line-Type
        Unsigned 32-bit integer
    radius.Lucent_Line_Type.len  Length
        Unsigned 8-bit integer
        Lucent-Line-Type Length
    radius.Lucent_Link_Compression  Lucent-Link-Compression
        Unsigned 32-bit integer
    radius.Lucent_Link_Compression.len  Length
        Unsigned 8-bit integer
        Lucent-Link-Compression Length
    radius.Lucent_Local_Retrain_Requested  Lucent-Local-Retrain-Requested
        Unsigned 32-bit integer
    radius.Lucent_Local_Retrain_Requested.len  Length
        Unsigned 8-bit integer
        Lucent-Local-Retrain-Requested Length
    radius.Lucent_MOH_Timeout  Lucent-MOH-Timeout
        Unsigned 32-bit integer
    radius.Lucent_MOH_Timeout.len  Length
        Unsigned 8-bit integer
        Lucent-MOH-Timeout Length
    radius.Lucent_MPP_Idle_Percent  Lucent-MPP-Idle-Percent
        Unsigned 32-bit integer
    radius.Lucent_MPP_Idle_Percent.len  Length
        Unsigned 8-bit integer
        Lucent-MPP-Idle-Percent Length
    radius.Lucent_MTU  Lucent-MTU
        Unsigned 32-bit integer
    radius.Lucent_MTU.len  Length
        Unsigned 8-bit integer
        Lucent-MTU Length
    radius.Lucent_Max_RTP_Delay  Lucent-Max-RTP-Delay
        Unsigned 32-bit integer
    radius.Lucent_Max_RTP_Delay.len  Length
        Unsigned 8-bit integer
        Lucent-Max-RTP-Delay Length
    radius.Lucent_Max_Recv_Rate  Lucent-Max-Recv-Rate
        Unsigned 32-bit integer
    radius.Lucent_Max_Recv_Rate.len  Length
        Unsigned 8-bit integer
        Lucent-Max-Recv-Rate Length
    radius.Lucent_Max_SNR  Lucent-Max-SNR
        Unsigned 32-bit integer
    radius.Lucent_Max_SNR.len  Length
        Unsigned 8-bit integer
        Lucent-Max-SNR Length
    radius.Lucent_Max_Shared_Users  Lucent-Max-Shared-Users
        Unsigned 32-bit integer
    radius.Lucent_Max_Shared_Users.len  Length
        Unsigned 8-bit integer
        Lucent-Max-Shared-Users Length
    radius.Lucent_Max_Xmit_Rate  Lucent-Max-Xmit-Rate
        Unsigned 32-bit integer
    radius.Lucent_Max_Xmit_Rate.len  Length
        Unsigned 8-bit integer
        Lucent-Max-Xmit-Rate Length
    radius.Lucent_Maximum_Call_Duration  Lucent-Maximum-Call-Duration
        Unsigned 32-bit integer
    radius.Lucent_Maximum_Call_Duration.len  Length
        Unsigned 8-bit integer
        Lucent-Maximum-Call-Duration Length
    radius.Lucent_Maximum_Channels  Lucent-Maximum-Channels
        Unsigned 32-bit integer
    radius.Lucent_Maximum_Channels.len  Length
        Unsigned 8-bit integer
        Lucent-Maximum-Channels Length
    radius.Lucent_Maximum_Time  Lucent-Maximum-Time
        Unsigned 32-bit integer
    radius.Lucent_Maximum_Time.len  Length
        Unsigned 8-bit integer
        Lucent-Maximum-Time Length
    radius.Lucent_Menu_Item  Lucent-Menu-Item
        String
    radius.Lucent_Menu_Item.len  Length
        Unsigned 8-bit integer
        Lucent-Menu-Item Length
    radius.Lucent_Menu_Selector  Lucent-Menu-Selector
        String
    radius.Lucent_Menu_Selector.len  Length
        Unsigned 8-bit integer
        Lucent-Menu-Selector Length
    radius.Lucent_Metric  Lucent-Metric
        Unsigned 32-bit integer
    radius.Lucent_Metric.len  Length
        Unsigned 8-bit integer
        Lucent-Metric Length
    radius.Lucent_Min_Recv_Rate  Lucent-Min-Recv-Rate
        Unsigned 32-bit integer
    radius.Lucent_Min_Recv_Rate.len  Length
        Unsigned 8-bit integer
        Lucent-Min-Recv-Rate Length
    radius.Lucent_Min_SNR  Lucent-Min-SNR
        Unsigned 32-bit integer
    radius.Lucent_Min_SNR.len  Length
        Unsigned 8-bit integer
        Lucent-Min-SNR Length
    radius.Lucent_Min_Xmit_Rate  Lucent-Min-Xmit-Rate
        Unsigned 32-bit integer
    radius.Lucent_Min_Xmit_Rate.len  Length
        Unsigned 8-bit integer
        Lucent-Min-Xmit-Rate Length
    radius.Lucent_Minimum_Channels  Lucent-Minimum-Channels
        Unsigned 32-bit integer
    radius.Lucent_Minimum_Channels.len  Length
        Unsigned 8-bit integer
        Lucent-Minimum-Channels Length
    radius.Lucent_Modem_Disconnect_Reason  Lucent-Modem-Disconnect-Reason
        Unsigned 32-bit integer
    radius.Lucent_Modem_Disconnect_Reason.len  Length
        Unsigned 8-bit integer
        Lucent-Modem-Disconnect-Reason Length
    radius.Lucent_Modem_Modulation  Lucent-Modem-Modulation
        Unsigned 32-bit integer
    radius.Lucent_Modem_Modulation.len  Length
        Unsigned 8-bit integer
        Lucent-Modem-Modulation Length
    radius.Lucent_Modem_PortNo  Lucent-Modem-PortNo
        Unsigned 32-bit integer
    radius.Lucent_Modem_PortNo.len  Length
        Unsigned 8-bit integer
        Lucent-Modem-PortNo Length
    radius.Lucent_Modem_ShelfNo  Lucent-Modem-ShelfNo
        Unsigned 32-bit integer
    radius.Lucent_Modem_ShelfNo.len  Length
        Unsigned 8-bit integer
        Lucent-Modem-ShelfNo Length
    radius.Lucent_Modem_SlotNo  Lucent-Modem-SlotNo
        Unsigned 32-bit integer
    radius.Lucent_Modem_SlotNo.len  Length
        Unsigned 8-bit integer
        Lucent-Modem-SlotNo Length
    radius.Lucent_Modulation  Lucent-Modulation
        Unsigned 32-bit integer
    radius.Lucent_Modulation.len  Length
        Unsigned 8-bit integer
        Lucent-Modulation Length
    radius.Lucent_Multi_Packet_Separator  Lucent-Multi-Packet-Separator
        Unsigned 32-bit integer
    radius.Lucent_Multi_Packet_Separator.len  Length
        Unsigned 8-bit integer
        Lucent-Multi-Packet-Separator Length
    radius.Lucent_Multicast_Client  Lucent-Multicast-Client
        Unsigned 32-bit integer
    radius.Lucent_Multicast_Client.len  Length
        Unsigned 8-bit integer
        Lucent-Multicast-Client Length
    radius.Lucent_Multicast_Filter_Active  Lucent-Multicast-Filter-Active
        Unsigned 32-bit integer
    radius.Lucent_Multicast_Filter_Active.len  Length
        Unsigned 8-bit integer
        Lucent-Multicast-Filter-Active Length
    radius.Lucent_Multicast_Filter_Address  Lucent-Multicast-Filter-Address
        IPv4 address
    radius.Lucent_Multicast_Filter_Address.len  Length
        Unsigned 8-bit integer
        Lucent-Multicast-Filter-Address Length
    radius.Lucent_Multicast_GLeave_Delay  Lucent-Multicast-GLeave-Delay
        Unsigned 32-bit integer
    radius.Lucent_Multicast_GLeave_Delay.len  Length
        Unsigned 8-bit integer
        Lucent-Multicast-GLeave-Delay Length
    radius.Lucent_Multicast_Max_Groups  Lucent-Multicast-Max-Groups
        Unsigned 32-bit integer
    radius.Lucent_Multicast_Max_Groups.len  Length
        Unsigned 8-bit integer
        Lucent-Multicast-Max-Groups Length
    radius.Lucent_Multicast_Rate_Limit  Lucent-Multicast-Rate-Limit
        Unsigned 32-bit integer
    radius.Lucent_Multicast_Rate_Limit.len  Length
        Unsigned 8-bit integer
        Lucent-Multicast-Rate-Limit Length
    radius.Lucent_Multicast_Service_Active  Lucent-Multicast-Service-Active
        Unsigned 32-bit integer
    radius.Lucent_Multicast_Service_Active.len  Length
        Unsigned 8-bit integer
        Lucent-Multicast-Service-Active Length
    radius.Lucent_Multicast_Service_Filter_Type  Lucent-Multicast-Service-Filter-Type
        Unsigned 32-bit integer
    radius.Lucent_Multicast_Service_Filter_Type.len  Length
        Unsigned 8-bit integer
        Lucent-Multicast-Service-Filter-Type Length
    radius.Lucent_Multicast_Service_Name  Lucent-Multicast-Service-Name
        String
    radius.Lucent_Multicast_Service_Name.len  Length
        Unsigned 8-bit integer
        Lucent-Multicast-Service-Name Length
    radius.Lucent_Multicast_Service_Profile_Name  Lucent-Multicast-Service-Profile-Name
        String
    radius.Lucent_Multicast_Service_Profile_Name.len  Length
        Unsigned 8-bit integer
        Lucent-Multicast-Service-Profile-Name Length
    radius.Lucent_Multicast_Service_Snmp_Trap  Lucent-Multicast-Service-Snmp-Trap
        Unsigned 32-bit integer
    radius.Lucent_Multicast_Service_Snmp_Trap.len  Length
        Unsigned 8-bit integer
        Lucent-Multicast-Service-Snmp-Trap Length
    radius.Lucent_Multilink_ID  Lucent-Multilink-ID
        Unsigned 32-bit integer
    radius.Lucent_Multilink_ID.len  Length
        Unsigned 8-bit integer
        Lucent-Multilink-ID Length
    radius.Lucent_NAS_Port_Format  Lucent-NAS-Port-Format
        Unsigned 32-bit integer
    radius.Lucent_NAS_Port_Format.len  Length
        Unsigned 8-bit integer
        Lucent-NAS-Port-Format Length
    radius.Lucent_Netware_timeout  Lucent-Netware-timeout
        Unsigned 32-bit integer
    radius.Lucent_Netware_timeout.len  Length
        Unsigned 8-bit integer
        Lucent-Netware-timeout Length
    radius.Lucent_No_High_Prio_Pkt_Duratio  Lucent-No-High-Prio-Pkt-Duratio
        Unsigned 32-bit integer
    radius.Lucent_No_High_Prio_Pkt_Duratio.len  Length
        Unsigned 8-bit integer
        Lucent-No-High-Prio-Pkt-Duratio Length
    radius.Lucent_Num_In_Multilink  Lucent-Num-In-Multilink
        Unsigned 32-bit integer
    radius.Lucent_Num_In_Multilink.len  Length
        Unsigned 8-bit integer
        Lucent-Num-In-Multilink Length
    radius.Lucent_Num_Moh_Sessions  Lucent-Num-Moh-Sessions
        Unsigned 32-bit integer
    radius.Lucent_Num_Moh_Sessions.len  Length
        Unsigned 8-bit integer
        Lucent-Num-Moh-Sessions Length
    radius.Lucent_Number_Sessions  Lucent-Number-Sessions
        String
    radius.Lucent_Number_Sessions.len  Length
        Unsigned 8-bit integer
        Lucent-Number-Sessions Length
    radius.Lucent_Numbering_Plan_ID  Lucent-Numbering-Plan-ID
        Unsigned 32-bit integer
    radius.Lucent_Numbering_Plan_ID.len  Length
        Unsigned 8-bit integer
        Lucent-Numbering-Plan-ID Length
    radius.Lucent_Owner_IP_Addr  Lucent-Owner-IP-Addr
        IPv4 address
    radius.Lucent_Owner_IP_Addr.len  Length
        Unsigned 8-bit integer
        Lucent-Owner-IP-Addr Length
    radius.Lucent_PPP_Address  Lucent-PPP-Address
        IPv4 address
    radius.Lucent_PPP_Address.len  Length
        Unsigned 8-bit integer
        Lucent-PPP-Address Length
    radius.Lucent_PPP_Async_Map  Lucent-PPP-Async-Map
        Unsigned 32-bit integer
    radius.Lucent_PPP_Async_Map.len  Length
        Unsigned 8-bit integer
        Lucent-PPP-Async-Map Length
    radius.Lucent_PPP_Circuit  Lucent-PPP-Circuit
        Unsigned 32-bit integer
    radius.Lucent_PPP_Circuit.len  Length
        Unsigned 8-bit integer
        Lucent-PPP-Circuit Length
    radius.Lucent_PPP_Circuit_Name  Lucent-PPP-Circuit-Name
        String
    radius.Lucent_PPP_Circuit_Name.len  Length
        Unsigned 8-bit integer
        Lucent-PPP-Circuit-Name Length
    radius.Lucent_PPP_VJ_1172  Lucent-PPP-VJ-1172
        Unsigned 32-bit integer
    radius.Lucent_PPP_VJ_1172.len  Length
        Unsigned 8-bit integer
        Lucent-PPP-VJ-1172 Length
    radius.Lucent_PPP_VJ_Slot_Comp  Lucent-PPP-VJ-Slot-Comp
        Unsigned 32-bit integer
    radius.Lucent_PPP_VJ_Slot_Comp.len  Length
        Unsigned 8-bit integer
        Lucent-PPP-VJ-Slot-Comp Length
    radius.Lucent_PPPoE_Enable  Lucent-PPPoE-Enable
        Unsigned 32-bit integer
    radius.Lucent_PPPoE_Enable.len  Length
        Unsigned 8-bit integer
        Lucent-PPPoE-Enable Length
    radius.Lucent_PRI_Number_Type  Lucent-PRI-Number-Type
        Unsigned 32-bit integer
    radius.Lucent_PRI_Number_Type.len  Length
        Unsigned 8-bit integer
        Lucent-PRI-Number-Type Length
    radius.Lucent_PW_Lifetime  Lucent-PW-Lifetime
        Unsigned 32-bit integer
    radius.Lucent_PW_Lifetime.len  Length
        Unsigned 8-bit integer
        Lucent-PW-Lifetime Length
    radius.Lucent_PW_Warntime  Lucent-PW-Warntime
        Unsigned 32-bit integer
    radius.Lucent_PW_Warntime.len  Length
        Unsigned 8-bit integer
        Lucent-PW-Warntime Length
    radius.Lucent_Packet_Classification  Lucent-Packet-Classification
        Unsigned 32-bit integer
    radius.Lucent_Packet_Classification.len  Length
        Unsigned 8-bit integer
        Lucent-Packet-Classification Length
    radius.Lucent_Port_Redir_Portnum  Lucent-Port-Redir-Portnum
        Unsigned 32-bit integer
    radius.Lucent_Port_Redir_Portnum.len  Length
        Unsigned 8-bit integer
        Lucent-Port-Redir-Portnum Length
    radius.Lucent_Port_Redir_Protocol  Lucent-Port-Redir-Protocol
        Unsigned 32-bit integer
    radius.Lucent_Port_Redir_Protocol.len  Length
        Unsigned 8-bit integer
        Lucent-Port-Redir-Protocol Length
    radius.Lucent_Port_Redir_Server  Lucent-Port-Redir-Server
        IPv4 address
    radius.Lucent_Port_Redir_Server.len  Length
        Unsigned 8-bit integer
        Lucent-Port-Redir-Server Length
    radius.Lucent_PreSession_Time  Lucent-PreSession-Time
        Unsigned 32-bit integer
    radius.Lucent_PreSession_Time.len  Length
        Unsigned 8-bit integer
        Lucent-PreSession-Time Length
    radius.Lucent_Pre_Input_Octets  Lucent-Pre-Input-Octets
        Unsigned 32-bit integer
    radius.Lucent_Pre_Input_Octets.len  Length
        Unsigned 8-bit integer
        Lucent-Pre-Input-Octets Length
    radius.Lucent_Pre_Input_Packets  Lucent-Pre-Input-Packets
        Unsigned 32-bit integer
    radius.Lucent_Pre_Input_Packets.len  Length
        Unsigned 8-bit integer
        Lucent-Pre-Input-Packets Length
    radius.Lucent_Pre_Output_Octets  Lucent-Pre-Output-Octets
        Unsigned 32-bit integer
    radius.Lucent_Pre_Output_Octets.len  Length
        Unsigned 8-bit integer
        Lucent-Pre-Output-Octets Length
    radius.Lucent_Pre_Output_Packets  Lucent-Pre-Output-Packets
        Unsigned 32-bit integer
    radius.Lucent_Pre_Output_Packets.len  Length
        Unsigned 8-bit integer
        Lucent-Pre-Output-Packets Length
    radius.Lucent_Preempt_Limit  Lucent-Preempt-Limit
        Unsigned 32-bit integer
    radius.Lucent_Preempt_Limit.len  Length
        Unsigned 8-bit integer
        Lucent-Preempt-Limit Length
    radius.Lucent_Primary_Home_Agent  Lucent-Primary-Home-Agent
        String
    radius.Lucent_Primary_Home_Agent.len  Length
        Unsigned 8-bit integer
        Lucent-Primary-Home-Agent Length
    radius.Lucent_Priority_For_PPP  Lucent-Priority-For-PPP
        Unsigned 32-bit integer
    radius.Lucent_Priority_For_PPP.len  Length
        Unsigned 8-bit integer
        Lucent-Priority-For-PPP Length
    radius.Lucent_Private_Route  Lucent-Private-Route
        String
    radius.Lucent_Private_Route.len  Length
        Unsigned 8-bit integer
        Lucent-Private-Route Length
    radius.Lucent_Private_Route_Required  Lucent-Private-Route-Required
        Unsigned 32-bit integer
    radius.Lucent_Private_Route_Required.len  Length
        Unsigned 8-bit integer
        Lucent-Private-Route-Required Length
    radius.Lucent_Private_Route_Table_ID  Lucent-Private-Route-Table-ID
        String
    radius.Lucent_Private_Route_Table_ID.len  Length
        Unsigned 8-bit integer
        Lucent-Private-Route-Table-ID Length
    radius.Lucent_QOS_Downstream  Lucent-QOS-Downstream
        String
    radius.Lucent_QOS_Downstream.len  Length
        Unsigned 8-bit integer
        Lucent-QOS-Downstream Length
    radius.Lucent_QOS_Upstream  Lucent-QOS-Upstream
        String
    radius.Lucent_QOS_Upstream.len  Length
        Unsigned 8-bit integer
        Lucent-QOS-Upstream Length
    radius.Lucent_QuickConnect_Attempted  Lucent-QuickConnect-Attempted
        Unsigned 32-bit integer
    radius.Lucent_QuickConnect_Attempted.len  Length
        Unsigned 8-bit integer
        Lucent-QuickConnect-Attempted Length
    radius.Lucent_RTP_Port_Range  Lucent-RTP-Port-Range
        String
    radius.Lucent_RTP_Port_Range.len  Length
        Unsigned 8-bit integer
        Lucent-RTP-Port-Range Length
    radius.Lucent_Receive_Secret  Lucent-Receive-Secret
        String
    radius.Lucent_Receive_Secret.len  Length
        Unsigned 8-bit integer
        Lucent-Receive-Secret Length
    radius.Lucent_Recv_Name  Lucent-Recv-Name
        String
    radius.Lucent_Recv_Name.len  Length
        Unsigned 8-bit integer
        Lucent-Recv-Name Length
    radius.Lucent_Recv_Symbol_Rate  Lucent-Recv-Symbol-Rate
        Unsigned 32-bit integer
    radius.Lucent_Recv_Symbol_Rate.len  Length
        Unsigned 8-bit integer
        Lucent-Recv-Symbol-Rate Length
    radius.Lucent_Redirect_Number  Lucent-Redirect-Number
        String
    radius.Lucent_Redirect_Number.len  Length
        Unsigned 8-bit integer
        Lucent-Redirect-Number Length
    radius.Lucent_Remote_Addr  Lucent-Remote-Addr
        IPv4 address
    radius.Lucent_Remote_Addr.len  Length
        Unsigned 8-bit integer
        Lucent-Remote-Addr Length
    radius.Lucent_Remote_FW  Lucent-Remote-FW
        String
    radius.Lucent_Remote_FW.len  Length
        Unsigned 8-bit integer
        Lucent-Remote-FW Length
    radius.Lucent_Remote_Retrain_Requested  Lucent-Remote-Retrain-Requested
        Unsigned 32-bit integer
    radius.Lucent_Remote_Retrain_Requested.len  Length
        Unsigned 8-bit integer
        Lucent-Remote-Retrain-Requested Length
    radius.Lucent_Remove_Seconds  Lucent-Remove-Seconds
        Unsigned 32-bit integer
    radius.Lucent_Remove_Seconds.len  Length
        Unsigned 8-bit integer
        Lucent-Remove-Seconds Length
    radius.Lucent_Require_Auth  Lucent-Require-Auth
        Unsigned 32-bit integer
    radius.Lucent_Require_Auth.len  Length
        Unsigned 8-bit integer
        Lucent-Require-Auth Length
    radius.Lucent_Retrain_Reason  Lucent-Retrain-Reason
        Unsigned 32-bit integer
    radius.Lucent_Retrain_Reason.len  Length
        Unsigned 8-bit integer
        Lucent-Retrain-Reason Length
    radius.Lucent_Reverse_Path_Check  Lucent-Reverse-Path-Check
        Unsigned 32-bit integer
    radius.Lucent_Reverse_Path_Check.len  Length
        Unsigned 8-bit integer
        Lucent-Reverse-Path-Check Length
    radius.Lucent_Route_Appletalk  Lucent-Route-Appletalk
        Unsigned 32-bit integer
    radius.Lucent_Route_Appletalk.len  Length
        Unsigned 8-bit integer
        Lucent-Route-Appletalk Length
    radius.Lucent_Route_IP  Lucent-Route-IP
        Unsigned 32-bit integer
    radius.Lucent_Route_IP.len  Length
        Unsigned 8-bit integer
        Lucent-Route-IP Length
    radius.Lucent_Route_IPX  Lucent-Route-IPX
        Unsigned 32-bit integer
    radius.Lucent_Route_IPX.len  Length
        Unsigned 8-bit integer
        Lucent-Route-IPX Length
    radius.Lucent_Route_Preference  Lucent-Route-Preference
        Unsigned 32-bit integer
    radius.Lucent_Route_Preference.len  Length
        Unsigned 8-bit integer
        Lucent-Route-Preference Length
    radius.Lucent_Rtp_Local_Bytes_Sent  Lucent-Rtp-Local-Bytes-Sent
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Bytes_Sent.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Bytes-Sent Length
    radius.Lucent_Rtp_Local_Delay_Maximum  Lucent-Rtp-Local-Delay-Maximum
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Delay_Maximum.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Delay-Maximum Length
    radius.Lucent_Rtp_Local_Delay_Mean  Lucent-Rtp-Local-Delay-Mean
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Delay_Mean.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Delay-Mean Length
    radius.Lucent_Rtp_Local_Delay_Minimum  Lucent-Rtp-Local-Delay-Minimum
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Delay_Minimum.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Delay-Minimum Length
    radius.Lucent_Rtp_Local_Delay_Variance  Lucent-Rtp-Local-Delay-Variance
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Delay_Variance.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Delay-Variance Length
    radius.Lucent_Rtp_Local_Jitter_Maximum  Lucent-Rtp-Local-Jitter-Maximum
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Jitter_Maximum.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Jitter-Maximum Length
    radius.Lucent_Rtp_Local_Jitter_Mean  Lucent-Rtp-Local-Jitter-Mean
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Jitter_Mean.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Jitter-Mean Length
    radius.Lucent_Rtp_Local_Jitter_Minimum  Lucent-Rtp-Local-Jitter-Minimum
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Jitter_Minimum.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Jitter-Minimum Length
    radius.Lucent_Rtp_Local_Jitter_Variance  Lucent-Rtp-Local-Jitter-Variance
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Jitter_Variance.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Jitter-Variance Length
    radius.Lucent_Rtp_Local_Number_Of_Samples  Lucent-Rtp-Local-Number-Of-Samples
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Number_Of_Samples.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Number-Of-Samples Length
    radius.Lucent_Rtp_Local_Packets_Late  Lucent-Rtp-Local-Packets-Late
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Packets_Late.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Packets-Late Length
    radius.Lucent_Rtp_Local_Packets_Lost  Lucent-Rtp-Local-Packets-Lost
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Packets_Lost.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Packets-Lost Length
    radius.Lucent_Rtp_Local_Packets_Sent  Lucent-Rtp-Local-Packets-Sent
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Packets_Sent.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Packets-Sent Length
    radius.Lucent_Rtp_Local_Silence_Percent  Lucent-Rtp-Local-Silence-Percent
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Local_Silence_Percent.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Local-Silence-Percent Length
    radius.Lucent_Rtp_Remote_Bytes_Sent  Lucent-Rtp-Remote-Bytes-Sent
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Bytes_Sent.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Bytes-Sent Length
    radius.Lucent_Rtp_Remote_Delay_Maximum  Lucent-Rtp-Remote-Delay-Maximum
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Delay_Maximum.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Delay-Maximum Length
    radius.Lucent_Rtp_Remote_Delay_Mean  Lucent-Rtp-Remote-Delay-Mean
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Delay_Mean.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Delay-Mean Length
    radius.Lucent_Rtp_Remote_Delay_Minimum  Lucent-Rtp-Remote-Delay-Minimum
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Delay_Minimum.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Delay-Minimum Length
    radius.Lucent_Rtp_Remote_Delay_Variance  Lucent-Rtp-Remote-Delay-Variance
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Delay_Variance.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Delay-Variance Length
    radius.Lucent_Rtp_Remote_Jitter_Maximum  Lucent-Rtp-Remote-Jitter-Maximum
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Jitter_Maximum.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Jitter-Maximum Length
    radius.Lucent_Rtp_Remote_Jitter_Mean  Lucent-Rtp-Remote-Jitter-Mean
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Jitter_Mean.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Jitter-Mean Length
    radius.Lucent_Rtp_Remote_Jitter_Minimum  Lucent-Rtp-Remote-Jitter-Minimum
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Jitter_Minimum.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Jitter-Minimum Length
    radius.Lucent_Rtp_Remote_Jitter_Variance  Lucent-Rtp-Remote-Jitter-Variance
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Jitter_Variance.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Jitter-Variance Length
    radius.Lucent_Rtp_Remote_Number_Of_Samples  Lucent-Rtp-Remote-Number-Of-Samples
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Number_Of_Samples.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Number-Of-Samples Length
    radius.Lucent_Rtp_Remote_Packets_Late  Lucent-Rtp-Remote-Packets-Late
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Packets_Late.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Packets-Late Length
    radius.Lucent_Rtp_Remote_Packets_Lost  Lucent-Rtp-Remote-Packets-Lost
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Packets_Lost.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Packets-Lost Length
    radius.Lucent_Rtp_Remote_Packets_Sent  Lucent-Rtp-Remote-Packets-Sent
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Packets_Sent.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Packets-Sent Length
    radius.Lucent_Rtp_Remote_Silence_Percent  Lucent-Rtp-Remote-Silence-Percent
        Unsigned 32-bit integer
    radius.Lucent_Rtp_Remote_Silence_Percent.len  Length
        Unsigned 8-bit integer
        Lucent-Rtp-Remote-Silence-Percent Length
    radius.Lucent_SVC_Enabled  Lucent-SVC-Enabled
        Unsigned 32-bit integer
    radius.Lucent_SVC_Enabled.len  Length
        Unsigned 8-bit integer
        Lucent-SVC-Enabled Length
    radius.Lucent_Secondary_Home_Agent  Lucent-Secondary-Home-Agent
        String
    radius.Lucent_Secondary_Home_Agent.len  Length
        Unsigned 8-bit integer
        Lucent-Secondary-Home-Agent Length
    radius.Lucent_Seconds_Of_History  Lucent-Seconds-Of-History
        Unsigned 32-bit integer
    radius.Lucent_Seconds_Of_History.len  Length
        Unsigned 8-bit integer
        Lucent-Seconds-Of-History Length
    radius.Lucent_Send_Auth  Lucent-Send-Auth
        Unsigned 32-bit integer
    radius.Lucent_Send_Auth.len  Length
        Unsigned 8-bit integer
        Lucent-Send-Auth Length
    radius.Lucent_Send_Passwd  Lucent-Send-Passwd
        String
    radius.Lucent_Send_Passwd.len  Length
        Unsigned 8-bit integer
        Lucent-Send-Passwd Length
    radius.Lucent_Send_Secret  Lucent-Send-Secret
        String
    radius.Lucent_Send_Secret.len  Length
        Unsigned 8-bit integer
        Lucent-Send-Secret Length
    radius.Lucent_Service_Type  Lucent-Service-Type
        Unsigned 32-bit integer
    radius.Lucent_Service_Type.len  Length
        Unsigned 8-bit integer
        Lucent-Service-Type Length
    radius.Lucent_Session_Svr_Key  Lucent-Session-Svr-Key
        String
    radius.Lucent_Session_Svr_Key.len  Length
        Unsigned 8-bit integer
        Lucent-Session-Svr-Key Length
    radius.Lucent_Session_Type  Lucent-Session-Type
        Unsigned 32-bit integer
    radius.Lucent_Session_Type.len  Length
        Unsigned 8-bit integer
        Lucent-Session-Type Length
    radius.Lucent_Shared_Profile_Enable  Lucent-Shared-Profile-Enable
        Unsigned 32-bit integer
    radius.Lucent_Shared_Profile_Enable.len  Length
        Unsigned 8-bit integer
        Lucent-Shared-Profile-Enable Length
    radius.Lucent_Sonet_Line_CVs_Far  Lucent-Sonet-Line-CVs-Far
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Line_CVs_Far.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Line-CVs-Far Length
    radius.Lucent_Sonet_Line_CVs_Near  Lucent-Sonet-Line-CVs-Near
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Line_CVs_Near.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Line-CVs-Near Length
    radius.Lucent_Sonet_Line_ESs_Far  Lucent-Sonet-Line-ESs-Far
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Line_ESs_Far.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Line-ESs-Far Length
    radius.Lucent_Sonet_Line_ESs_Near  Lucent-Sonet-Line-ESs-Near
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Line_ESs_Near.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Line-ESs-Near Length
    radius.Lucent_Sonet_Line_SESs_Far  Lucent-Sonet-Line-SESs-Far
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Line_SESs_Far.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Line-SESs-Far Length
    radius.Lucent_Sonet_Line_SESs_Near  Lucent-Sonet-Line-SESs-Near
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Line_SESs_Near.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Line-SESs-Near Length
    radius.Lucent_Sonet_Line_USs_Far  Lucent-Sonet-Line-USs-Far
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Line_USs_Far.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Line-USs-Far Length
    radius.Lucent_Sonet_Line_USs_Near  Lucent-Sonet-Line-USs-Near
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Line_USs_Near.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Line-USs-Near Length
    radius.Lucent_Sonet_Path_CVs_Far  Lucent-Sonet-Path-CVs-Far
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Path_CVs_Far.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Path-CVs-Far Length
    radius.Lucent_Sonet_Path_CVs_Near  Lucent-Sonet-Path-CVs-Near
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Path_CVs_Near.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Path-CVs-Near Length
    radius.Lucent_Sonet_Path_ESs_Far  Lucent-Sonet-Path-ESs-Far
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Path_ESs_Far.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Path-ESs-Far Length
    radius.Lucent_Sonet_Path_ESs_Near  Lucent-Sonet-Path-ESs-Near
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Path_ESs_Near.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Path-ESs-Near Length
    radius.Lucent_Sonet_Path_SESs_Far  Lucent-Sonet-Path-SESs-Far
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Path_SESs_Far.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Path-SESs-Far Length
    radius.Lucent_Sonet_Path_SESs_Near  Lucent-Sonet-Path-SESs-Near
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Path_SESs_Near.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Path-SESs-Near Length
    radius.Lucent_Sonet_Path_USs_Far  Lucent-Sonet-Path-USs-Far
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Path_USs_Far.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Path-USs-Far Length
    radius.Lucent_Sonet_Path_USs_Near  Lucent-Sonet-Path-USs-Near
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Path_USs_Near.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Path-USs-Near Length
    radius.Lucent_Sonet_Section_CVs  Lucent-Sonet-Section-CVs
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Section_CVs.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Section-CVs Length
    radius.Lucent_Sonet_Section_ESs  Lucent-Sonet-Section-ESs
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Section_ESs.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Section-ESs Length
    radius.Lucent_Sonet_Section_SEFSs  Lucent-Sonet-Section-SEFSs
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Section_SEFSs.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Section-SEFSs Length
    radius.Lucent_Sonet_Section_SESs  Lucent-Sonet-Section-SESs
        Unsigned 32-bit integer
    radius.Lucent_Sonet_Section_SESs.len  Length
        Unsigned 8-bit integer
        Lucent-Sonet-Section-SESs Length
    radius.Lucent_Source_Auth  Lucent-Source-Auth
        String
    radius.Lucent_Source_Auth.len  Length
        Unsigned 8-bit integer
        Lucent-Source-Auth Length
    radius.Lucent_Source_IP_Check  Lucent-Source-IP-Check
        Unsigned 32-bit integer
    radius.Lucent_Source_IP_Check.len  Length
        Unsigned 8-bit integer
        Lucent-Source-IP-Check Length
    radius.Lucent_TOS_Copying  Lucent-TOS-Copying
        Unsigned 32-bit integer
    radius.Lucent_TOS_Copying.len  Length
        Unsigned 8-bit integer
        Lucent-TOS-Copying Length
    radius.Lucent_TS_Idle_Limit  Lucent-TS-Idle-Limit
        Unsigned 32-bit integer
    radius.Lucent_TS_Idle_Limit.len  Length
        Unsigned 8-bit integer
        Lucent-TS-Idle-Limit Length
    radius.Lucent_TS_Idle_Mode  Lucent-TS-Idle-Mode
        Unsigned 32-bit integer
    radius.Lucent_TS_Idle_Mode.len  Length
        Unsigned 8-bit integer
        Lucent-TS-Idle-Mode Length
    radius.Lucent_Target_Util  Lucent-Target-Util
        Unsigned 32-bit integer
    radius.Lucent_Target_Util.len  Length
        Unsigned 8-bit integer
        Lucent-Target-Util Length
    radius.Lucent_Telnet_Profile  Lucent-Telnet-Profile
        String
    radius.Lucent_Telnet_Profile.len  Length
        Unsigned 8-bit integer
        Lucent-Telnet-Profile Length
    radius.Lucent_TermSrv_Login_Prompt  Lucent-TermSrv-Login-Prompt
        String
    radius.Lucent_TermSrv_Login_Prompt.len  Length
        Unsigned 8-bit integer
        Lucent-TermSrv-Login-Prompt Length
    radius.Lucent_Third_Prompt  Lucent-Third-Prompt
        String
    radius.Lucent_Third_Prompt.len  Length
        Unsigned 8-bit integer
        Lucent-Third-Prompt Length
    radius.Lucent_Token_Expiry  Lucent-Token-Expiry
        Unsigned 32-bit integer
    radius.Lucent_Token_Expiry.len  Length
        Unsigned 8-bit integer
        Lucent-Token-Expiry Length
    radius.Lucent_Token_Idle  Lucent-Token-Idle
        Unsigned 32-bit integer
    radius.Lucent_Token_Idle.len  Length
        Unsigned 8-bit integer
        Lucent-Token-Idle Length
    radius.Lucent_Token_Immediate  Lucent-Token-Immediate
        Unsigned 32-bit integer
    radius.Lucent_Token_Immediate.len  Length
        Unsigned 8-bit integer
        Lucent-Token-Immediate Length
    radius.Lucent_Traffic_Shaper  Lucent-Traffic-Shaper
        Unsigned 32-bit integer
    radius.Lucent_Traffic_Shaper.len  Length
        Unsigned 8-bit integer
        Lucent-Traffic-Shaper Length
    radius.Lucent_Transit_Number  Lucent-Transit-Number
        String
    radius.Lucent_Transit_Number.len  Length
        Unsigned 8-bit integer
        Lucent-Transit-Number Length
    radius.Lucent_Tunnel_Auth_Type  Lucent-Tunnel-Auth-Type
        Byte array
    radius.Lucent_Tunnel_Auth_Type.len  Length
        Unsigned 8-bit integer
        Lucent-Tunnel-Auth-Type Length
    radius.Lucent_Tunnel_Auth_Type2  Lucent-Tunnel-Auth-Type2
        Unsigned 32-bit integer
    radius.Lucent_Tunnel_Auth_Type2.len  Length
        Unsigned 8-bit integer
        Lucent-Tunnel-Auth-Type2 Length
    radius.Lucent_Tunnel_DSCP  Lucent-Tunnel-DSCP
        Unsigned 32-bit integer
    radius.Lucent_Tunnel_DSCP.len  Length
        Unsigned 8-bit integer
        Lucent-Tunnel-DSCP Length
    radius.Lucent_Tunnel_TOS  Lucent-Tunnel-TOS
        Unsigned 32-bit integer
    radius.Lucent_Tunnel_TOS.len  Length
        Unsigned 8-bit integer
        Lucent-Tunnel-TOS Length
    radius.Lucent_Tunnel_TOS_Copy  Lucent-Tunnel-TOS-Copy
        Unsigned 32-bit integer
    radius.Lucent_Tunnel_TOS_Copy.len  Length
        Unsigned 8-bit integer
        Lucent-Tunnel-TOS-Copy Length
    radius.Lucent_Tunnel_TOS_Filter  Lucent-Tunnel-TOS-Filter
        String
    radius.Lucent_Tunnel_TOS_Filter.len  Length
        Unsigned 8-bit integer
        Lucent-Tunnel-TOS-Filter Length
    radius.Lucent_Tunnel_TOS_Precedence  Lucent-Tunnel-TOS-Precedence
        Unsigned 32-bit integer
    radius.Lucent_Tunnel_TOS_Precedence.len  Length
        Unsigned 8-bit integer
        Lucent-Tunnel-TOS-Precedence Length
    radius.Lucent_Tunnel_VRouter_Name  Lucent-Tunnel-VRouter-Name
        String
    radius.Lucent_Tunnel_VRouter_Name.len  Length
        Unsigned 8-bit integer
        Lucent-Tunnel-VRouter-Name Length
    radius.Lucent_Tunneling_Protocol  Lucent-Tunneling-Protocol
        Unsigned 32-bit integer
    radius.Lucent_Tunneling_Protocol.len  Length
        Unsigned 8-bit integer
        Lucent-Tunneling-Protocol Length
    radius.Lucent_UU_Info  Lucent-UU-Info
        String
    radius.Lucent_UU_Info.len  Length
        Unsigned 8-bit integer
        Lucent-UU-Info Length
    radius.Lucent_User_Acct_Base  Lucent-User-Acct-Base
        Unsigned 32-bit integer
    radius.Lucent_User_Acct_Base.len  Length
        Unsigned 8-bit integer
        Lucent-User-Acct-Base Length
    radius.Lucent_User_Acct_Expiration  Lucent-User-Acct-Expiration
        Date/Time stamp
    radius.Lucent_User_Acct_Expiration.len  Length
        Unsigned 8-bit integer
        Lucent-User-Acct-Expiration Length
    radius.Lucent_User_Acct_Host  Lucent-User-Acct-Host
        IPv4 address
    radius.Lucent_User_Acct_Host.len  Length
        Unsigned 8-bit integer
        Lucent-User-Acct-Host Length
    radius.Lucent_User_Acct_Key  Lucent-User-Acct-Key
        String
    radius.Lucent_User_Acct_Key.len  Length
        Unsigned 8-bit integer
        Lucent-User-Acct-Key Length
    radius.Lucent_User_Acct_Port  Lucent-User-Acct-Port
        Unsigned 32-bit integer
    radius.Lucent_User_Acct_Port.len  Length
        Unsigned 8-bit integer
        Lucent-User-Acct-Port Length
    radius.Lucent_User_Acct_Time  Lucent-User-Acct-Time
        Unsigned 32-bit integer
    radius.Lucent_User_Acct_Time.len  Length
        Unsigned 8-bit integer
        Lucent-User-Acct-Time Length
    radius.Lucent_User_Acct_Type  Lucent-User-Acct-Type
        Unsigned 32-bit integer
    radius.Lucent_User_Acct_Type.len  Length
        Unsigned 8-bit integer
        Lucent-User-Acct-Type Length
    radius.Lucent_User_Login_Level  Lucent-User-Login-Level
        Unsigned 32-bit integer
    radius.Lucent_User_Login_Level.len  Length
        Unsigned 8-bit integer
        Lucent-User-Login-Level Length
    radius.Lucent_User_Priority  Lucent-User-Priority
        Unsigned 32-bit integer
    radius.Lucent_User_Priority.len  Length
        Unsigned 8-bit integer
        Lucent-User-Priority Length
    radius.Lucent_VRouter_Name  Lucent-VRouter-Name
        String
    radius.Lucent_VRouter_Name.len  Length
        Unsigned 8-bit integer
        Lucent-VRouter-Name Length
    radius.Lucent_X25_Cug  Lucent-X25-Cug
        String
    radius.Lucent_X25_Cug.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Cug Length
    radius.Lucent_X25_Nui  Lucent-X25-Nui
        String
    radius.Lucent_X25_Nui.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Nui Length
    radius.Lucent_X25_Nui_Password_Prompt  Lucent-X25-Nui-Password-Prompt
        String
    radius.Lucent_X25_Nui_Password_Prompt.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Nui-Password-Prompt Length
    radius.Lucent_X25_Nui_Prompt  Lucent-X25-Nui-Prompt
        String
    radius.Lucent_X25_Nui_Prompt.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Nui-Prompt Length
    radius.Lucent_X25_Pad_Alias_1  Lucent-X25-Pad-Alias-1
        String
    radius.Lucent_X25_Pad_Alias_1.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Pad-Alias-1 Length
    radius.Lucent_X25_Pad_Alias_2  Lucent-X25-Pad-Alias-2
        String
    radius.Lucent_X25_Pad_Alias_2.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Pad-Alias-2 Length
    radius.Lucent_X25_Pad_Alias_3  Lucent-X25-Pad-Alias-3
        String
    radius.Lucent_X25_Pad_Alias_3.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Pad-Alias-3 Length
    radius.Lucent_X25_Pad_Banner  Lucent-X25-Pad-Banner
        String
    radius.Lucent_X25_Pad_Banner.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Pad-Banner Length
    radius.Lucent_X25_Pad_Prompt  Lucent-X25-Pad-Prompt
        String
    radius.Lucent_X25_Pad_Prompt.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Pad-Prompt Length
    radius.Lucent_X25_Pad_X3_Parameters  Lucent-X25-Pad-X3-Parameters
        String
    radius.Lucent_X25_Pad_X3_Parameters.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Pad-X3-Parameters Length
    radius.Lucent_X25_Pad_X3_Profile  Lucent-X25-Pad-X3-Profile
        Unsigned 32-bit integer
    radius.Lucent_X25_Pad_X3_Profile.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Pad-X3-Profile Length
    radius.Lucent_X25_Profile_Name  Lucent-X25-Profile-Name
        String
    radius.Lucent_X25_Profile_Name.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Profile-Name Length
    radius.Lucent_X25_Reverse_Charging  Lucent-X25-Reverse-Charging
        Unsigned 32-bit integer
    radius.Lucent_X25_Reverse_Charging.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Reverse-Charging Length
    radius.Lucent_X25_Rpoa  Lucent-X25-Rpoa
        String
    radius.Lucent_X25_Rpoa.len  Length
        Unsigned 8-bit integer
        Lucent-X25-Rpoa Length
    radius.Lucent_X25_X121_Address  Lucent-X25-X121-Address
        String
    radius.Lucent_X25_X121_Address.len  Length
        Unsigned 8-bit integer
        Lucent-X25-X121-Address Length
    radius.Lucent_X25_X121_Source_Address  Lucent-X25-X121-Source-Address
        String
    radius.Lucent_X25_X121_Source_Address.len  Length
        Unsigned 8-bit integer
        Lucent-X25-X121-Source-Address Length
    radius.Lucent_Xmit_Rate  Lucent-Xmit-Rate
        Unsigned 32-bit integer
    radius.Lucent_Xmit_Rate.len  Length
        Unsigned 8-bit integer
        Lucent-Xmit-Rate Length
    radius.Lucent_Xmit_Symbol_Rate  Lucent-Xmit-Symbol-Rate
        Unsigned 32-bit integer
    radius.Lucent_Xmit_Symbol_Rate.len  Length
        Unsigned 8-bit integer
        Lucent-Xmit-Symbol-Rate Length
    radius.MS_AFW_Protection_Level  MS-AFW-Protection-Level
        Unsigned 32-bit integer
    radius.MS_AFW_Protection_Level.len  Length
        Unsigned 8-bit integer
        MS-AFW-Protection-Level Length
    radius.MS_AFW_Zone  MS-AFW-Zone
        Unsigned 32-bit integer
    radius.MS_AFW_Zone.len  Length
        Unsigned 8-bit integer
        MS-AFW-Zone Length
    radius.MS_ARAP_PW_Change_Reason  MS-ARAP-PW-Change-Reason
        Unsigned 32-bit integer
    radius.MS_ARAP_PW_Change_Reason.len  Length
        Unsigned 8-bit integer
        MS-ARAP-PW-Change-Reason Length
    radius.MS_Acct_Auth_Type  MS-Acct-Auth-Type
        Unsigned 32-bit integer
    radius.MS_Acct_Auth_Type.len  Length
        Unsigned 8-bit integer
        MS-Acct-Auth-Type Length
    radius.MS_Acct_EAP_Type  MS-Acct-EAP-Type
        Unsigned 32-bit integer
    radius.MS_Acct_EAP_Type.len  Length
        Unsigned 8-bit integer
        MS-Acct-EAP-Type Length
    radius.MS_BAP_Usage  MS-BAP-Usage
        Unsigned 32-bit integer
    radius.MS_BAP_Usage.len  Length
        Unsigned 8-bit integer
        MS-BAP-Usage Length
    radius.MS_CHAP2_CPW  MS-CHAP2-CPW
        Byte array
    radius.MS_CHAP2_CPW.len  Length
        Unsigned 8-bit integer
        MS-CHAP2-CPW Length
    radius.MS_CHAP2_Response  MS-CHAP2-Response
        Byte array
    radius.MS_CHAP2_Response.len  Length
        Unsigned 8-bit integer
        MS-CHAP2-Response Length
    radius.MS_CHAP2_Success  MS-CHAP2-Success
        Byte array
    radius.MS_CHAP2_Success.len  Length
        Unsigned 8-bit integer
        MS-CHAP2-Success Length
    radius.MS_CHAP_CPW_1  MS-CHAP-CPW-1
        Byte array
    radius.MS_CHAP_CPW_1.len  Length
        Unsigned 8-bit integer
        MS-CHAP-CPW-1 Length
    radius.MS_CHAP_CPW_2  MS-CHAP-CPW-2
        Byte array
    radius.MS_CHAP_CPW_2.len  Length
        Unsigned 8-bit integer
        MS-CHAP-CPW-2 Length
    radius.MS_CHAP_Challenge  MS-CHAP-Challenge
        Byte array
    radius.MS_CHAP_Challenge.len  Length
        Unsigned 8-bit integer
        MS-CHAP-Challenge Length
    radius.MS_CHAP_Domain  MS-CHAP-Domain
        String
    radius.MS_CHAP_Domain.len  Length
        Unsigned 8-bit integer
        MS-CHAP-Domain Length
    radius.MS_CHAP_Error  MS-CHAP-Error
        String
    radius.MS_CHAP_Error.len  Length
        Unsigned 8-bit integer
        MS-CHAP-Error Length
    radius.MS_CHAP_LM_Enc_PW  MS-CHAP-LM-Enc-PW
        Byte array
    radius.MS_CHAP_LM_Enc_PW.len  Length
        Unsigned 8-bit integer
        MS-CHAP-LM-Enc-PW Length
    radius.MS_CHAP_MPPE_Keys  MS-CHAP-MPPE-Keys
        Byte array
    radius.MS_CHAP_MPPE_Keys.len  Length
        Unsigned 8-bit integer
        MS-CHAP-MPPE-Keys Length
    radius.MS_CHAP_NT_Enc_PW  MS-CHAP-NT-Enc-PW
        Byte array
    radius.MS_CHAP_NT_Enc_PW.len  Length
        Unsigned 8-bit integer
        MS-CHAP-NT-Enc-PW Length
    radius.MS_CHAP_Response  MS-CHAP-Response
        Byte array
    radius.MS_CHAP_Response.len  Length
        Unsigned 8-bit integer
        MS-CHAP-Response Length
    radius.MS_Extended_Quarantine_State  MS-Extended-Quarantine-State
        Unsigned 32-bit integer
    radius.MS_Extended_Quarantine_State.len  Length
        Unsigned 8-bit integer
        MS-Extended-Quarantine-State Length
    radius.MS_Filter  MS-Filter
        Byte array
    radius.MS_Filter.len  Length
        Unsigned 8-bit integer
        MS-Filter Length
    radius.MS_HCAP_Location_Group_Name  MS-HCAP-Location-Group-Name
        String
    radius.MS_HCAP_Location_Group_Name.len  Length
        Unsigned 8-bit integer
        MS-HCAP-Location-Group-Name Length
    radius.MS_HCAP_User_Groups  MS-HCAP-User-Groups
        String
    radius.MS_HCAP_User_Groups.len  Length
        Unsigned 8-bit integer
        MS-HCAP-User-Groups Length
    radius.MS_HCAP_User_Name  MS-HCAP-User-Name
        String
    radius.MS_HCAP_User_Name.len  Length
        Unsigned 8-bit integer
        MS-HCAP-User-Name Length
    radius.MS_IPv4_Remediation_Servers  MS-IPv4-Remediation-Servers
        Byte array
    radius.MS_IPv4_Remediation_Servers.len  Length
        Unsigned 8-bit integer
        MS-IPv4-Remediation-Servers Length
    radius.MS_IPv6_Filter  MS-IPv6-Filter
        Byte array
    radius.MS_IPv6_Filter.len  Length
        Unsigned 8-bit integer
        MS-IPv6-Filter Length
    radius.MS_IPv6_Remediation_Servers  MS-IPv6-Remediation-Servers
        Byte array
    radius.MS_IPv6_Remediation_Servers.len  Length
        Unsigned 8-bit integer
        MS-IPv6-Remediation-Servers Length
    radius.MS_Identity_Type  MS-Identity-Type
        Unsigned 32-bit integer
    radius.MS_Identity_Type.len  Length
        Unsigned 8-bit integer
        MS-Identity-Type Length
    radius.MS_Link_Drop_Time_Limit  MS-Link-Drop-Time-Limit
        Unsigned 32-bit integer
    radius.MS_Link_Drop_Time_Limit.len  Length
        Unsigned 8-bit integer
        MS-Link-Drop-Time-Limit Length
    radius.MS_Link_Utilization_Threshold  MS-Link-Utilization-Threshold
        Unsigned 32-bit integer
    radius.MS_Link_Utilization_Threshold.len  Length
        Unsigned 8-bit integer
        MS-Link-Utilization-Threshold Length
    radius.MS_MPPE_Encryption_Policy  MS-MPPE-Encryption-Policy
        Unsigned 32-bit integer
    radius.MS_MPPE_Encryption_Policy.len  Length
        Unsigned 8-bit integer
        MS-MPPE-Encryption-Policy Length
    radius.MS_MPPE_Encryption_Types  MS-MPPE-Encryption-Types
        Unsigned 32-bit integer
    radius.MS_MPPE_Encryption_Types.len  Length
        Unsigned 8-bit integer
        MS-MPPE-Encryption-Types Length
    radius.MS_MPPE_Recv_Key  MS-MPPE-Recv-Key
        Byte array
    radius.MS_MPPE_Recv_Key.len  Length
        Unsigned 8-bit integer
        MS-MPPE-Recv-Key Length
    radius.MS_MPPE_Send_Key  MS-MPPE-Send-Key
        Byte array
    radius.MS_MPPE_Send_Key.len  Length
        Unsigned 8-bit integer
        MS-MPPE-Send-Key Length
    radius.MS_Machine_Name  MS-Machine-Name
        String
    radius.MS_Machine_Name.len  Length
        Unsigned 8-bit integer
        MS-Machine-Name Length
    radius.MS_Network_Access_Server_Type  MS-Network-Access-Server-Type
        Unsigned 32-bit integer
    radius.MS_Network_Access_Server_Type.len  Length
        Unsigned 8-bit integer
        MS-Network-Access-Server-Type Length
    radius.MS_New_ARAP_Password  MS-New-ARAP-Password
        Byte array
    radius.MS_New_ARAP_Password.len  Length
        Unsigned 8-bit integer
        MS-New-ARAP-Password Length
    radius.MS_Old_ARAP_Password  MS-Old-ARAP-Password
        Byte array
    radius.MS_Old_ARAP_Password.len  Length
        Unsigned 8-bit integer
        MS-Old-ARAP-Password Length
    radius.MS_Primary_DNS_Server  MS-Primary-DNS-Server
        IPv4 address
    radius.MS_Primary_DNS_Server.len  Length
        Unsigned 8-bit integer
        MS-Primary-DNS-Server Length
    radius.MS_Primary_NBNS_Server  MS-Primary-NBNS-Server
        IPv4 address
    radius.MS_Primary_NBNS_Server.len  Length
        Unsigned 8-bit integer
        MS-Primary-NBNS-Server Length
    radius.MS_Quarantine_Grace_Time  MS-Quarantine-Grace-Time
        Unsigned 32-bit integer
    radius.MS_Quarantine_Grace_Time.len  Length
        Unsigned 8-bit integer
        MS-Quarantine-Grace-Time Length
    radius.MS_Quarantine_IPFilter  MS-Quarantine-IPFilter
        Byte array
    radius.MS_Quarantine_IPFilter.len  Length
        Unsigned 8-bit integer
        MS-Quarantine-IPFilter Length
    radius.MS_Quarantine_SOH  MS-Quarantine-SOH
        Byte array
    radius.MS_Quarantine_SOH.len  Length
        Unsigned 8-bit integer
        MS-Quarantine-SOH Length
    radius.MS_Quarantine_Session_Timeout  MS-Quarantine-Session-Timeout
        Unsigned 32-bit integer
    radius.MS_Quarantine_Session_Timeout.len  Length
        Unsigned 8-bit integer
        MS-Quarantine-Session-Timeout Length
    radius.MS_Quarantine_State  MS-Quarantine-State
        Unsigned 32-bit integer
    radius.MS_Quarantine_State.len  Length
        Unsigned 8-bit integer
        MS-Quarantine-State Length
    radius.MS_Quarantine_User_Class  MS-Quarantine-User-Class
        String
    radius.MS_Quarantine_User_Class.len  Length
        Unsigned 8-bit integer
        MS-Quarantine-User-Class Length
    radius.MS_RAS_Client_Name  MS-RAS-Client-Name
        String
    radius.MS_RAS_Client_Name.len  Length
        Unsigned 8-bit integer
        MS-RAS-Client-Name Length
    radius.MS_RAS_Client_Version  MS-RAS-Client-Version
        String
    radius.MS_RAS_Client_Version.len  Length
        Unsigned 8-bit integer
        MS-RAS-Client-Version Length
    radius.MS_RAS_Correlation  MS-RAS-Correlation
        Byte array
    radius.MS_RAS_Correlation.len  Length
        Unsigned 8-bit integer
        MS-RAS-Correlation Length
    radius.MS_RAS_Vendor  MS-RAS-Vendor
        Unsigned 32-bit integer
    radius.MS_RAS_Vendor.len  Length
        Unsigned 8-bit integer
        MS-RAS-Vendor Length
    radius.MS_RAS_Version  MS-RAS-Version
        String
    radius.MS_RAS_Version.len  Length
        Unsigned 8-bit integer
        MS-RAS-Version Length
    radius.MS_RNAP_Not_Quarantine_Capable  MS-RNAP-Not-Quarantine-Capable
        Unsigned 32-bit integer
    radius.MS_RNAP_Not_Quarantine_Capable.len  Length
        Unsigned 8-bit integer
        MS-RNAP-Not-Quarantine-Capable Length
    radius.MS_Secondary_DNS_Server  MS-Secondary-DNS-Server
        IPv4 address
    radius.MS_Secondary_DNS_Server.len  Length
        Unsigned 8-bit integer
        MS-Secondary-DNS-Server Length
    radius.MS_Secondary_NBNS_Server  MS-Secondary-NBNS-Server
        IPv4 address
    radius.MS_Secondary_NBNS_Server.len  Length
        Unsigned 8-bit integer
        MS-Secondary-NBNS-Server Length
    radius.MS_Service_Class  MS-Service-Class
        String
    radius.MS_Service_Class.len  Length
        Unsigned 8-bit integer
        MS-Service-Class Length
    radius.MS_TSG_Device_Redirection  MS-TSG-Device-Redirection
        Unsigned 32-bit integer
    radius.MS_TSG_Device_Redirection.len  Length
        Unsigned 8-bit integer
        MS-TSG-Device-Redirection Length
    radius.MS_User_IPv4_Address  MS-User-IPv4-Address
        IPv4 address
    radius.MS_User_IPv4_Address.len  Length
        Unsigned 8-bit integer
        MS-User-IPv4-Address Length
    radius.MS_User_IPv6_Address  MS-User-IPv6-Address
        IPv6 address
    radius.MS_User_IPv6_Address.len  Length
        Unsigned 8-bit integer
        MS-User-IPv6-Address Length
    radius.MS_User_Security_Identity  MS-User-Security-Identity
        String
    radius.MS_User_Security_Identity.len  Length
        Unsigned 8-bit integer
        MS-User-Security-Identity Length
    radius.Mac_Addr  Mac-Addr
        String
    radius.Mac_Addr.len  Length
        Unsigned 8-bit integer
        Mac-Addr Length
    radius.Manzara_ECP_Session_Key  Manzara-ECP-Session-Key
        Byte array
    radius.Manzara_ECP_Session_Key.len  Length
        Unsigned 8-bit integer
        Manzara-ECP-Session-Key Length
    radius.Manzara_Full_Login_String  Manzara-Full-Login-String
        String
    radius.Manzara_Full_Login_String.len  Length
        Unsigned 8-bit integer
        Manzara-Full-Login-String Length
    radius.Manzara_PPP_Addr_String  Manzara-PPP-Addr-String
        String
    radius.Manzara_PPP_Addr_String.len  Length
        Unsigned 8-bit integer
        Manzara-PPP-Addr-String Length
    radius.Manzara_Tariff_Type  Manzara-Tariff-Type
        Unsigned 32-bit integer
    radius.Manzara_Tariff_Type.len  Length
        Unsigned 8-bit integer
        Manzara-Tariff-Type Length
    radius.Manzara_Tariff_Units  Manzara-Tariff-Units
        Unsigned 32-bit integer
    radius.Manzara_Tariff_Units.len  Length
        Unsigned 8-bit integer
        Manzara-Tariff-Units Length
    radius.Manzara_User_GID  Manzara-User-GID
        Unsigned 32-bit integer
    radius.Manzara_User_GID.len  Length
        Unsigned 8-bit integer
        Manzara-User-GID Length
    radius.Manzara_User_Home  Manzara-User-Home
        String
    radius.Manzara_User_Home.len  Length
        Unsigned 8-bit integer
        Manzara-User-Home Length
    radius.Manzara_User_Shell  Manzara-User-Shell
        String
    radius.Manzara_User_Shell.len  Length
        Unsigned 8-bit integer
        Manzara-User-Shell Length
    radius.Manzara_User_UID  Manzara-User-UID
        Unsigned 32-bit integer
    radius.Manzara_User_UID.len  Length
        Unsigned 8-bit integer
        Manzara-User-UID Length
    radius.Maximum_Data_Rate_Downstream  Maximum-Data-Rate-Downstream
        Unsigned 32-bit integer
    radius.Maximum_Data_Rate_Downstream.len  Length
        Unsigned 8-bit integer
        Maximum-Data-Rate-Downstream Length
    radius.Maximum_Data_Rate_Upstream  Maximum-Data-Rate-Upstream
        Unsigned 32-bit integer
    radius.Maximum_Data_Rate_Upstream.len  Length
        Unsigned 8-bit integer
        Maximum-Data-Rate-Upstream Length
    radius.Maximum_Interleaving_Delay_Downstream  Maximum-Interleaving-Delay-Downstream
        Unsigned 32-bit integer
    radius.Maximum_Interleaving_Delay_Downstream.len  Length
        Unsigned 8-bit integer
        Maximum-Interleaving-Delay-Downstream Length
    radius.Maximum_Interleaving_Delay_Upstream  Maximum-Interleaving-Delay-Upstream
        Unsigned 32-bit integer
    radius.Maximum_Interleaving_Delay_Upstream.len  Length
        Unsigned 8-bit integer
        Maximum-Interleaving-Delay-Upstream Length
    radius.Mcast_MaxGroups  Mcast-MaxGroups
        Unsigned 32-bit integer
    radius.Mcast_MaxGroups.len  Length
        Unsigned 8-bit integer
        Mcast-MaxGroups Length
    radius.Mcast_Receive  Mcast-Receive
        Unsigned 32-bit integer
    radius.Mcast_Receive.len  Length
        Unsigned 8-bit integer
        Mcast-Receive Length
    radius.Mcast_Send  Mcast-Send
        Unsigned 32-bit integer
    radius.Mcast_Send.len  Length
        Unsigned 8-bit integer
        Mcast-Send Length
    radius.Medium_Type  Medium-Type
        Unsigned 32-bit integer
    radius.Medium_Type.len  Length
        Unsigned 8-bit integer
        Medium-Type Length
    radius.Merit_Proxy_Action  Merit-Proxy-Action
        String
    radius.Merit_Proxy_Action.len  Length
        Unsigned 8-bit integer
        Merit-Proxy-Action Length
    radius.Merit_User_Id  Merit-User-Id
        String
    radius.Merit_User_Id.len  Length
        Unsigned 8-bit integer
        Merit-User-Id Length
    radius.Merit_User_Realm  Merit-User-Realm
        String
    radius.Merit_User_Realm.len  Length
        Unsigned 8-bit integer
        Merit-User-Realm Length
    radius.Message_Authenticator  Message-Authenticator
        Byte array
    radius.Message_Authenticator.len  Length
        Unsigned 8-bit integer
        Message-Authenticator Length
    radius.Mikrotik_Advertise_Interval  Mikrotik-Advertise-Interval
        Unsigned 32-bit integer
    radius.Mikrotik_Advertise_Interval.len  Length
        Unsigned 8-bit integer
        Mikrotik-Advertise-Interval Length
    radius.Mikrotik_Advertise_URL  Mikrotik-Advertise-URL
        String
    radius.Mikrotik_Advertise_URL.len  Length
        Unsigned 8-bit integer
        Mikrotik-Advertise-URL Length
    radius.Mikrotik_Group  Mikrotik-Group
        String
    radius.Mikrotik_Group.len  Length
        Unsigned 8-bit integer
        Mikrotik-Group Length
    radius.Mikrotik_Host_IP  Mikrotik-Host-IP
        IPv4 address
    radius.Mikrotik_Host_IP.len  Length
        Unsigned 8-bit integer
        Mikrotik-Host-IP Length
    radius.Mikrotik_Mark_Id  Mikrotik-Mark-Id
        String
    radius.Mikrotik_Mark_Id.len  Length
        Unsigned 8-bit integer
        Mikrotik-Mark-Id Length
    radius.Mikrotik_Rate_Limit  Mikrotik-Rate-Limit
        String
    radius.Mikrotik_Rate_Limit.len  Length
        Unsigned 8-bit integer
        Mikrotik-Rate-Limit Length
    radius.Mikrotik_Realm  Mikrotik-Realm
        String
    radius.Mikrotik_Realm.len  Length
        Unsigned 8-bit integer
        Mikrotik-Realm Length
    radius.Mikrotik_Recv_Limit  Mikrotik-Recv-Limit
        Unsigned 32-bit integer
    radius.Mikrotik_Recv_Limit.len  Length
        Unsigned 8-bit integer
        Mikrotik-Recv-Limit Length
    radius.Mikrotik_Recv_Limit_Gigawords  Mikrotik-Recv-Limit-Gigawords
        Unsigned 32-bit integer
    radius.Mikrotik_Recv_Limit_Gigawords.len  Length
        Unsigned 8-bit integer
        Mikrotik-Recv-Limit-Gigawords Length
    radius.Mikrotik_Wireless_Enc_Algo  Mikrotik-Wireless-Enc-Algo
        Unsigned 32-bit integer
    radius.Mikrotik_Wireless_Enc_Algo.len  Length
        Unsigned 8-bit integer
        Mikrotik-Wireless-Enc-Algo Length
    radius.Mikrotik_Wireless_Enc_Key  Mikrotik-Wireless-Enc-Key
        String
    radius.Mikrotik_Wireless_Enc_Key.len  Length
        Unsigned 8-bit integer
        Mikrotik-Wireless-Enc-Key Length
    radius.Mikrotik_Wireless_Forward  Mikrotik-Wireless-Forward
        Unsigned 32-bit integer
    radius.Mikrotik_Wireless_Forward.len  Length
        Unsigned 8-bit integer
        Mikrotik-Wireless-Forward Length
    radius.Mikrotik_Wireless_Skip_Dot1x  Mikrotik-Wireless-Skip-Dot1x
        Unsigned 32-bit integer
    radius.Mikrotik_Wireless_Skip_Dot1x.len  Length
        Unsigned 8-bit integer
        Mikrotik-Wireless-Skip-Dot1x Length
    radius.Mikrotik_Xmit_Limit  Mikrotik-Xmit-Limit
        Unsigned 32-bit integer
    radius.Mikrotik_Xmit_Limit.len  Length
        Unsigned 8-bit integer
        Mikrotik-Xmit-Limit Length
    radius.Mikrotik_Xmit_Limit_Gigawords  Mikrotik-Xmit-Limit-Gigawords
        Unsigned 32-bit integer
    radius.Mikrotik_Xmit_Limit_Gigawords.len  Length
        Unsigned 8-bit integer
        Mikrotik-Xmit-Limit-Gigawords Length
    radius.Minimum_Data_Rate_Downstream  Minimum-Data-Rate-Downstream
        Unsigned 32-bit integer
    radius.Minimum_Data_Rate_Downstream.len  Length
        Unsigned 8-bit integer
        Minimum-Data-Rate-Downstream Length
    radius.Minimum_Data_Rate_Downstream_Low_Power  Minimum-Data-Rate-Downstream-Low-Power
        Unsigned 32-bit integer
    radius.Minimum_Data_Rate_Downstream_Low_Power.len  Length
        Unsigned 8-bit integer
        Minimum-Data-Rate-Downstream-Low-Power Length
    radius.Minimum_Data_Rate_Upstream  Minimum-Data-Rate-Upstream
        Unsigned 32-bit integer
    radius.Minimum_Data_Rate_Upstream.len  Length
        Unsigned 8-bit integer
        Minimum-Data-Rate-Upstream Length
    radius.Minimum_Data_Rate_Upstream_Low_Power  Minimum-Data-Rate-Upstream-Low-Power
        Unsigned 32-bit integer
    radius.Minimum_Data_Rate_Upstream_Low_Power.len  Length
        Unsigned 8-bit integer
        Minimum-Data-Rate-Upstream-Low-Power Length
    radius.Multi_Link_Flag  Multi-Link-Flag
        Unsigned 32-bit integer
    radius.Multi_Link_Flag.len  Length
        Unsigned 8-bit integer
        Multi-Link-Flag Length
    radius.NAS_Filter_Rule  NAS-Filter-Rule
        String
    radius.NAS_Filter_Rule.len  Length
        Unsigned 8-bit integer
        NAS-Filter-Rule Length
    radius.NAS_IP_Address  NAS-IP-Address
        IPv4 address
    radius.NAS_IP_Address.len  Length
        Unsigned 8-bit integer
        NAS-IP-Address Length
    radius.NAS_IPv6_Address  NAS-IPv6-Address
        IPv6 address
    radius.NAS_IPv6_Address.len  Length
        Unsigned 8-bit integer
        NAS-IPv6-Address Length
    radius.NAS_Identifier  NAS-Identifier
        String
    radius.NAS_Identifier.len  Length
        Unsigned 8-bit integer
        NAS-Identifier Length
    radius.NAS_Port  NAS-Port
        Unsigned 32-bit integer
    radius.NAS_Port.len  Length
        Unsigned 8-bit integer
        NAS-Port Length
    radius.NAS_Port_Id  NAS-Port-Id
        String
    radius.NAS_Port_Id.len  Length
        Unsigned 8-bit integer
        NAS-Port-Id Length
    radius.NAS_Port_Type  NAS-Port-Type
        Unsigned 32-bit integer
    radius.NAS_Port_Type.len  Length
        Unsigned 8-bit integer
        NAS-Port-Type Length
    radius.NAS_Real_Port  NAS-Real-Port
        Unsigned 32-bit integer
    radius.NAS_Real_Port.len  Length
        Unsigned 8-bit integer
        NAS-Real-Port Length
    radius.NAT_Policy_Name  NAT-Policy-Name
        String
    radius.NAT_Policy_Name.len  Length
        Unsigned 8-bit integer
        NAT-Policy-Name Length
    radius.NS_Admin_Privilege  NS-Admin-Privilege
        Unsigned 32-bit integer
    radius.NS_Admin_Privilege.len  Length
        Unsigned 8-bit integer
        NS-Admin-Privilege Length
    radius.NS_NSM_User_Domain_Name  NS-NSM-User-Domain-Name
        String
    radius.NS_NSM_User_Domain_Name.len  Length
        Unsigned 8-bit integer
        NS-NSM-User-Domain-Name Length
    radius.NS_NSM_User_Role_Mapping  NS-NSM-User-Role-Mapping
        String
    radius.NS_NSM_User_Role_Mapping.len  Length
        Unsigned 8-bit integer
        NS-NSM-User-Role-Mapping Length
    radius.NS_Primary_DNS  NS-Primary-DNS
        IPv4 address
    radius.NS_Primary_DNS.len  Length
        Unsigned 8-bit integer
        NS-Primary-DNS Length
    radius.NS_Primary_WINS  NS-Primary-WINS
        IPv4 address
    radius.NS_Primary_WINS.len  Length
        Unsigned 8-bit integer
        NS-Primary-WINS Length
    radius.NS_Secondary_DNS  NS-Secondary-DNS
        IPv4 address
    radius.NS_Secondary_DNS.len  Length
        Unsigned 8-bit integer
        NS-Secondary-DNS Length
    radius.NS_Secondary_WINS  NS-Secondary-WINS
        IPv4 address
    radius.NS_Secondary_WINS.len  Length
        Unsigned 8-bit integer
        NS-Secondary-WINS Length
    radius.NS_User_Group  NS-User-Group
        String
    radius.NS_User_Group.len  Length
        Unsigned 8-bit integer
        NS-User-Group Length
    radius.NS_VSYS_Name  NS-VSYS-Name
        String
    radius.NS_VSYS_Name.len  Length
        Unsigned 8-bit integer
        NS-VSYS-Name Length
    radius.Navini_AVPair  Navini-AVPair
        String
    radius.Navini_AVPair.len  Length
        Unsigned 8-bit integer
        Navini-AVPair Length
    radius.NetSensory_Privilege  NetSensory-Privilege
        String
    radius.NetSensory_Privilege.len  Length
        Unsigned 8-bit integer
        NetSensory-Privilege Length
    radius.Nexans_Port_Default_VLAN_ID  Nexans-Port-Default-VLAN-ID
        Unsigned 32-bit integer
    radius.Nexans_Port_Default_VLAN_ID.len  Length
        Unsigned 8-bit integer
        Nexans-Port-Default-VLAN-ID Length
    radius.Nexans_Port_Voice_VLAN_ID  Nexans-Port-Voice-VLAN-ID
        Unsigned 32-bit integer
    radius.Nexans_Port_Voice_VLAN_ID.len  Length
        Unsigned 8-bit integer
        Nexans-Port-Voice-VLAN-ID Length
    radius.Nokia_AVPair  Nokia-AVPair
        String
    radius.Nokia_AVPair.len  Length
        Unsigned 8-bit integer
        Nokia-AVPair Length
    radius.Nokia_OCS_ID1  Nokia-OCS-ID1
        Unsigned 32-bit integer
    radius.Nokia_OCS_ID1.len  Length
        Unsigned 8-bit integer
        Nokia-OCS-ID1 Length
    radius.Nokia_OCS_ID2  Nokia-OCS-ID2
        Unsigned 32-bit integer
    radius.Nokia_OCS_ID2.len  Length
        Unsigned 8-bit integer
        Nokia-OCS-ID2 Length
    radius.Nokia_Requested_APN  Nokia-Requested-APN
        String
    radius.Nokia_Requested_APN.len  Length
        Unsigned 8-bit integer
        Nokia-Requested-APN Length
    radius.Nokia_Service_Charging_Type  Nokia-Service-Charging-Type
        Byte array
    radius.Nokia_Service_Charging_Type.len  Length
        Unsigned 8-bit integer
        Nokia-Service-Charging-Type Length
    radius.Nokia_Service_Encrypted_Password  Nokia-Service-Encrypted-Password
        Byte array
    radius.Nokia_Service_Encrypted_Password.len  Length
        Unsigned 8-bit integer
        Nokia-Service-Encrypted-Password Length
    radius.Nokia_Service_Id  Nokia-Service-Id
        Byte array
    radius.Nokia_Service_Id.len  Length
        Unsigned 8-bit integer
        Nokia-Service-Id Length
    radius.Nokia_Service_Name  Nokia-Service-Name
        Byte array
    radius.Nokia_Service_Name.len  Length
        Unsigned 8-bit integer
        Nokia-Service-Name Length
    radius.Nokia_Service_Password  Nokia-Service-Password
        Byte array
    radius.Nokia_Service_Password.len  Length
        Unsigned 8-bit integer
        Nokia-Service-Password Length
    radius.Nokia_Service_Primary_Indicator  Nokia-Service-Primary-Indicator
        Byte array
    radius.Nokia_Service_Primary_Indicator.len  Length
        Unsigned 8-bit integer
        Nokia-Service-Primary-Indicator Length
    radius.Nokia_Service_Username  Nokia-Service-Username
        Byte array
    radius.Nokia_Service_Username.len  Length
        Unsigned 8-bit integer
        Nokia-Service-Username Length
    radius.Nokia_Session_Access_Method  Nokia-Session-Access-Method
        Byte array
    radius.Nokia_Session_Access_Method.len  Length
        Unsigned 8-bit integer
        Nokia-Session-Access-Method Length
    radius.Nokia_Session_Charging_Type  Nokia-Session-Charging-Type
        Byte array
    radius.Nokia_Session_Charging_Type.len  Length
        Unsigned 8-bit integer
        Nokia-Session-Charging-Type Length
    radius.Nokia_TREC_Index  Nokia-TREC-Index
        Unsigned 32-bit integer
    radius.Nokia_TREC_Index.len  Length
        Unsigned 8-bit integer
        Nokia-TREC-Index Length
    radius.Nokia_User_Profile  Nokia-User-Profile
        String
    radius.Nokia_User_Profile.len  Length
        Unsigned 8-bit integer
        Nokia-User-Profile Length
    radius.Nomadix_Bw_Down  Nomadix-Bw-Down
        Unsigned 32-bit integer
    radius.Nomadix_Bw_Down.len  Length
        Unsigned 8-bit integer
        Nomadix-Bw-Down Length
    radius.Nomadix_Bw_Up  Nomadix-Bw-Up
        Unsigned 32-bit integer
    radius.Nomadix_Bw_Up.len  Length
        Unsigned 8-bit integer
        Nomadix-Bw-Up Length
    radius.Nomadix_Config_URL  Nomadix-Config-URL
        String
    radius.Nomadix_Config_URL.len  Length
        Unsigned 8-bit integer
        Nomadix-Config-URL Length
    radius.Nomadix_EndofSession  Nomadix-EndofSession
        Unsigned 32-bit integer
    radius.Nomadix_EndofSession.len  Length
        Unsigned 8-bit integer
        Nomadix-EndofSession Length
    radius.Nomadix_Expiration  Nomadix-Expiration
        String
    radius.Nomadix_Expiration.len  Length
        Unsigned 8-bit integer
        Nomadix-Expiration Length
    radius.Nomadix_Goodbye_URL  Nomadix-Goodbye-URL
        String
    radius.Nomadix_Goodbye_URL.len  Length
        Unsigned 8-bit integer
        Nomadix-Goodbye-URL Length
    radius.Nomadix_IP_Upsell  Nomadix-IP-Upsell
        Unsigned 32-bit integer
    radius.Nomadix_IP_Upsell.len  Length
        Unsigned 8-bit integer
        Nomadix-IP-Upsell Length
    radius.Nomadix_Logoff_URL  Nomadix-Logoff-URL
        String
    radius.Nomadix_Logoff_URL.len  Length
        Unsigned 8-bit integer
        Nomadix-Logoff-URL Length
    radius.Nomadix_MaxBytesDown  Nomadix-MaxBytesDown
        Unsigned 32-bit integer
    radius.Nomadix_MaxBytesDown.len  Length
        Unsigned 8-bit integer
        Nomadix-MaxBytesDown Length
    radius.Nomadix_MaxBytesUp  Nomadix-MaxBytesUp
        Unsigned 32-bit integer
    radius.Nomadix_MaxBytesUp.len  Length
        Unsigned 8-bit integer
        Nomadix-MaxBytesUp Length
    radius.Nomadix_Net_VLAN  Nomadix-Net-VLAN
        Unsigned 32-bit integer
    radius.Nomadix_Net_VLAN.len  Length
        Unsigned 8-bit integer
        Nomadix-Net-VLAN Length
    radius.Nomadix_Subnet  Nomadix-Subnet
        String
    radius.Nomadix_Subnet.len  Length
        Unsigned 8-bit integer
        Nomadix-Subnet Length
    radius.Nomadix_URL_Redirection  Nomadix-URL-Redirection
        String
    radius.Nomadix_URL_Redirection.len  Length
        Unsigned 8-bit integer
        Nomadix-URL-Redirection Length
    radius.Nortel_Privilege_Level  Nortel-Privilege-Level
        Unsigned 32-bit integer
    radius.Nortel_Privilege_Level.len  Length
        Unsigned 8-bit integer
        Nortel-Privilege-Level Length
    radius.OS_Version  OS-Version
        String
    radius.OS_Version.len  Length
        Unsigned 8-bit integer
        OS-Version Length
    radius.Old_Password  Old-Password
        String
    radius.Old_Password.len  Length
        Unsigned 8-bit integer
        Old-Password Length
    radius.Originating_Line_Info  Originating-Line-Info
        String
    radius.Originating_Line_Info.len  Length
        Unsigned 8-bit integer
        Originating-Line-Info Length
    radius.PPPOE_MOTM  PPPOE-MOTM
        String
    radius.PPPOE_MOTM.len  Length
        Unsigned 8-bit integer
        PPPOE-MOTM Length
    radius.PPPOE_URL  PPPOE-URL
        String
    radius.PPPOE_URL.len  Length
        Unsigned 8-bit integer
        PPPOE-URL Length
    radius.PPPoE_IP_Route_Add  PPPoE-IP-Route-Add
        String
    radius.PPPoE_IP_Route_Add.len  Length
        Unsigned 8-bit integer
        PPPoE-IP-Route-Add Length
    radius.PVC_Circuit_Padding  PVC-Circuit-Padding
        Unsigned 32-bit integer
    radius.PVC_Circuit_Padding.len  Length
        Unsigned 8-bit integer
        PVC-Circuit-Padding Length
    radius.PVC_Encapsulation_Type  PVC-Encapsulation-Type
        Unsigned 32-bit integer
    radius.PVC_Encapsulation_Type.len  Length
        Unsigned 8-bit integer
        PVC-Encapsulation-Type Length
    radius.PVC_Profile_Name  PVC-Profile-Name
        String
    radius.PVC_Profile_Name.len  Length
        Unsigned 8-bit integer
        PVC-Profile-Name Length
    radius.Packeteer_AVPair  Packeteer-AVPair
        String
    radius.Packeteer_AVPair.len  Length
        Unsigned 8-bit integer
        Packeteer-AVPair Length
    radius.Passport_Access_Priority  Passport-Access-Priority
        Unsigned 32-bit integer
    radius.Passport_Access_Priority.len  Length
        Unsigned 8-bit integer
        Passport-Access-Priority Length
    radius.Passport_AllowedOut_Access  Passport-AllowedOut-Access
        Unsigned 32-bit integer
    radius.Passport_AllowedOut_Access.len  Length
        Unsigned 8-bit integer
        Passport-AllowedOut-Access Length
    radius.Passport_Allowed_Access  Passport-Allowed-Access
        Unsigned 32-bit integer
    radius.Passport_Allowed_Access.len  Length
        Unsigned 8-bit integer
        Passport-Allowed-Access Length
    radius.Passport_Command_Impact  Passport-Command-Impact
        Unsigned 32-bit integer
    radius.Passport_Command_Impact.len  Length
        Unsigned 8-bit integer
        Passport-Command-Impact Length
    radius.Passport_Command_Scope  Passport-Command-Scope
        Unsigned 32-bit integer
    radius.Passport_Command_Scope.len  Length
        Unsigned 8-bit integer
        Passport-Command-Scope Length
    radius.Passport_Customer_Identifier  Passport-Customer-Identifier
        Unsigned 32-bit integer
    radius.Passport_Customer_Identifier.len  Length
        Unsigned 8-bit integer
        Passport-Customer-Identifier Length
    radius.Passport_Login_Directory  Passport-Login-Directory
        String
    radius.Passport_Login_Directory.len  Length
        Unsigned 8-bit integer
        Passport-Login-Directory Length
    radius.Passport_Role  Passport-Role
        String
    radius.Passport_Role.len  Length
        Unsigned 8-bit integer
        Passport-Role Length
    radius.Passport_Timeout_Protocol  Passport-Timeout-Protocol
        Unsigned 32-bit integer
    radius.Passport_Timeout_Protocol.len  Length
        Unsigned 8-bit integer
        Passport-Timeout-Protocol Length
    radius.Password_Retry  Password-Retry
        Unsigned 32-bit integer
    radius.Password_Retry.len  Length
        Unsigned 8-bit integer
        Password-Retry Length
    radius.Patton_Called_IP_Address  Patton-Called-IP-Address
        IPv4 address
    radius.Patton_Called_IP_Address.len  Length
        Unsigned 8-bit integer
        Patton-Called-IP-Address Length
    radius.Patton_Called_Numbering_Plan  Patton-Called-Numbering-Plan
        String
    radius.Patton_Called_Numbering_Plan.len  Length
        Unsigned 8-bit integer
        Patton-Called-Numbering-Plan Length
    radius.Patton_Called_Type_Of_Number  Patton-Called-Type-Of-Number
        String
    radius.Patton_Called_Type_Of_Number.len  Length
        Unsigned 8-bit integer
        Patton-Called-Type-Of-Number Length
    radius.Patton_Called_Unique_Id  Patton-Called-Unique-Id
        String
    radius.Patton_Called_Unique_Id.len  Length
        Unsigned 8-bit integer
        Patton-Called-Unique-Id Length
    radius.Patton_Calling_IP_Address  Patton-Calling-IP-Address
        IPv4 address
    radius.Patton_Calling_IP_Address.len  Length
        Unsigned 8-bit integer
        Patton-Calling-IP-Address Length
    radius.Patton_Calling_Numbering_Plan  Patton-Calling-Numbering-Plan
        String
    radius.Patton_Calling_Numbering_Plan.len  Length
        Unsigned 8-bit integer
        Patton-Calling-Numbering-Plan Length
    radius.Patton_Calling_Presentation_Indicator  Patton-Calling-Presentation-Indicator
        String
    radius.Patton_Calling_Presentation_Indicator.len  Length
        Unsigned 8-bit integer
        Patton-Calling-Presentation-Indicator Length
    radius.Patton_Calling_Screening_Indicator  Patton-Calling-Screening-Indicator
        String
    radius.Patton_Calling_Screening_Indicator.len  Length
        Unsigned 8-bit integer
        Patton-Calling-Screening-Indicator Length
    radius.Patton_Calling_Type_Of_Number  Patton-Calling-Type-Of-Number
        String
    radius.Patton_Calling_Type_Of_Number.len  Length
        Unsigned 8-bit integer
        Patton-Calling-Type-Of-Number Length
    radius.Patton_Calling_Unique_Id  Patton-Calling-Unique-Id
        String
    radius.Patton_Calling_Unique_Id.len  Length
        Unsigned 8-bit integer
        Patton-Calling-Unique-Id Length
    radius.Patton_Connect_Time  Patton-Connect-Time
        String
    radius.Patton_Connect_Time.len  Length
        Unsigned 8-bit integer
        Patton-Connect-Time Length
    radius.Patton_Disconnect_Cause  Patton-Disconnect-Cause
        Unsigned 32-bit integer
    radius.Patton_Disconnect_Cause.len  Length
        Unsigned 8-bit integer
        Patton-Disconnect-Cause Length
    radius.Patton_Disconnect_Source  Patton-Disconnect-Source
        String
    radius.Patton_Disconnect_Source.len  Length
        Unsigned 8-bit integer
        Patton-Disconnect-Source Length
    radius.Patton_Disconnect_Time  Patton-Disconnect-Time
        String
    radius.Patton_Disconnect_Time.len  Length
        Unsigned 8-bit integer
        Patton-Disconnect-Time Length
    radius.Patton_Setup_Time  Patton-Setup-Time
        String
    radius.Patton_Setup_Time.len  Length
        Unsigned 8-bit integer
        Patton-Setup-Time Length
    radius.Platform_Type  Platform-Type
        Unsigned 32-bit integer
    radius.Platform_Type.len  Length
        Unsigned 8-bit integer
        Platform-Type Length
    radius.Police_Burst  Police-Burst
        Unsigned 32-bit integer
    radius.Police_Burst.len  Length
        Unsigned 8-bit integer
        Police-Burst Length
    radius.Police_Excess_Burst  Police-Excess-Burst
        Byte array
    radius.Police_Excess_Burst.len  Length
        Unsigned 8-bit integer
        Police-Excess-Burst Length
    radius.Police_Rate  Police-Rate
        Unsigned 32-bit integer
    radius.Police_Rate.len  Length
        Unsigned 8-bit integer
        Police-Rate Length
    radius.Port_Limit  Port-Limit
        Unsigned 32-bit integer
    radius.Port_Limit.len  Length
        Unsigned 8-bit integer
        Port-Limit Length
    radius.Prompt  Prompt
        Unsigned 32-bit integer
    radius.Prompt.len  Length
        Unsigned 8-bit integer
        Prompt Length
    radius.Propel_Accelerate  Propel-Accelerate
        Unsigned 32-bit integer
    radius.Propel_Accelerate.len  Length
        Unsigned 8-bit integer
        Propel-Accelerate Length
    radius.Propel_Client_IP_Address  Propel-Client-IP-Address
        IPv4 address
    radius.Propel_Client_IP_Address.len  Length
        Unsigned 8-bit integer
        Propel-Client-IP-Address Length
    radius.Propel_Client_NAS_IP_Address  Propel-Client-NAS-IP-Address
        IPv4 address
    radius.Propel_Client_NAS_IP_Address.len  Length
        Unsigned 8-bit integer
        Propel-Client-NAS-IP-Address Length
    radius.Propel_Client_Source_ID  Propel-Client-Source-ID
        Unsigned 32-bit integer
    radius.Propel_Client_Source_ID.len  Length
        Unsigned 8-bit integer
        Propel-Client-Source-ID Length
    radius.Propel_Content_Filter_ID  Propel-Content-Filter-ID
        Unsigned 32-bit integer
    radius.Propel_Content_Filter_ID.len  Length
        Unsigned 8-bit integer
        Propel-Content-Filter-ID Length
    radius.Propel_Dialed_Digits  Propel-Dialed-Digits
        String
    radius.Propel_Dialed_Digits.len  Length
        Unsigned 8-bit integer
        Propel-Dialed-Digits Length
    radius.Prosoft_ATM_Interface  Prosoft-ATM-Interface
        Unsigned 32-bit integer
    radius.Prosoft_ATM_Interface.len  Length
        Unsigned 8-bit integer
        Prosoft-ATM-Interface Length
    radius.Prosoft_ATM_VCI  Prosoft-ATM-VCI
        Unsigned 32-bit integer
    radius.Prosoft_ATM_VCI.len  Length
        Unsigned 8-bit integer
        Prosoft-ATM-VCI Length
    radius.Prosoft_ATM_VPI  Prosoft-ATM-VPI
        Unsigned 32-bit integer
    radius.Prosoft_ATM_VPI.len  Length
        Unsigned 8-bit integer
        Prosoft-ATM-VPI Length
    radius.Prosoft_Auth_Role  Prosoft-Auth-Role
        Unsigned 32-bit integer
    radius.Prosoft_Auth_Role.len  Length
        Unsigned 8-bit integer
        Prosoft-Auth-Role Length
    radius.Prosoft_Authentication_Reason  Prosoft-Authentication-Reason
        Unsigned 32-bit integer
    radius.Prosoft_Authentication_Reason.len  Length
        Unsigned 8-bit integer
        Prosoft-Authentication-Reason Length
    radius.Prosoft_Default_Gateway  Prosoft-Default-Gateway
        IPv4 address
    radius.Prosoft_Default_Gateway.len  Length
        Unsigned 8-bit integer
        Prosoft-Default-Gateway Length
    radius.Prosoft_Home_Agent_Address  Prosoft-Home-Agent-Address
        IPv4 address
    radius.Prosoft_Home_Agent_Address.len  Length
        Unsigned 8-bit integer
        Prosoft-Home-Agent-Address Length
    radius.Prosoft_MAC_Address  Prosoft-MAC-Address
        String
    radius.Prosoft_MAC_Address.len  Length
        Unsigned 8-bit integer
        Prosoft-MAC-Address Length
    radius.Prosoft_NPM_IP  Prosoft-NPM-IP
        String
    radius.Prosoft_NPM_IP.len  Length
        Unsigned 8-bit integer
        Prosoft-NPM-IP Length
    radius.Prosoft_NPM_Identifier  Prosoft-NPM-Identifier
        String
    radius.Prosoft_NPM_Identifier.len  Length
        Unsigned 8-bit integer
        Prosoft-NPM-Identifier Length
    radius.Prosoft_Primary_DNS  Prosoft-Primary-DNS
        IPv4 address
    radius.Prosoft_Primary_DNS.len  Length
        Unsigned 8-bit integer
        Prosoft-Primary-DNS Length
    radius.Prosoft_RSC_Identifier  Prosoft-RSC-Identifier
        String
    radius.Prosoft_RSC_Identifier.len  Length
        Unsigned 8-bit integer
        Prosoft-RSC-Identifier Length
    radius.Prosoft_Secondary_DNS  Prosoft-Secondary-DNS
        IPv4 address
    radius.Prosoft_Secondary_DNS.len  Length
        Unsigned 8-bit integer
        Prosoft-Secondary-DNS Length
    radius.Prosoft_Sector_ID  Prosoft-Sector-ID
        String
    radius.Prosoft_Sector_ID.len  Length
        Unsigned 8-bit integer
        Prosoft-Sector-ID Length
    radius.Prosoft_Security_Key  Prosoft-Security-Key
        String
    radius.Prosoft_Security_Key.len  Length
        Unsigned 8-bit integer
        Prosoft-Security-Key Length
    radius.Prosoft_Security_Parameter_Index  Prosoft-Security-Parameter-Index
        Unsigned 32-bit integer
    radius.Prosoft_Security_Parameter_Index.len  Length
        Unsigned 8-bit integer
        Prosoft-Security-Parameter-Index Length
    radius.Proxy_State  Proxy-State
        Byte array
    radius.Proxy_State.len  Length
        Unsigned 8-bit integer
        Proxy-State Length
    radius.Qos_Policy_Metering  Qos-Policy-Metering
        String
    radius.Qos_Policy_Metering.len  Length
        Unsigned 8-bit integer
        Qos-Policy-Metering Length
    radius.Qos_Policy_Policing  Qos-Policy-Policing
        String
    radius.Qos_Policy_Policing.len  Length
        Unsigned 8-bit integer
        Qos-Policy-Policing Length
    radius.Qos_Policy_Queuing  Qos-Policy-Queuing
        String
    radius.Qos_Policy_Queuing.len  Length
        Unsigned 8-bit integer
        Qos-Policy-Queuing Length
    radius.Quiconnect_AVPair  Quiconnect-AVPair
        String
    radius.Quiconnect_AVPair.len  Length
        Unsigned 8-bit integer
        Quiconnect-AVPair Length
    radius.Quiconnect_HSP_Information  Quiconnect-HSP-Information
        String
    radius.Quiconnect_HSP_Information.len  Length
        Unsigned 8-bit integer
        Quiconnect-HSP-Information Length
    radius.Quiconnect_VNP_Information  Quiconnect-VNP-Information
        String
    radius.Quiconnect_VNP_Information.len  Length
        Unsigned 8-bit integer
        Quiconnect-VNP-Information Length
    radius.Quintum_AVPair  Quintum-AVPair
        String
    radius.Quintum_AVPair.len  Length
        Unsigned 8-bit integer
        Quintum-AVPair Length
    radius.Quintum_NAS_Port  Quintum-NAS-Port
        String
    radius.Quintum_NAS_Port.len  Length
        Unsigned 8-bit integer
        Quintum-NAS-Port Length
    radius.Quintum_Trunkid_In  Quintum-Trunkid-In
        String
    radius.Quintum_Trunkid_In.len  Length
        Unsigned 8-bit integer
        Quintum-Trunkid-In Length
    radius.Quintum_Trunkid_Out  Quintum-Trunkid-Out
        String
    radius.Quintum_Trunkid_Out.len  Length
        Unsigned 8-bit integer
        Quintum-Trunkid-Out Length
    radius.Quintum_h323_billing_model  Quintum-h323-billing-model
        String
    radius.Quintum_h323_billing_model.len  Length
        Unsigned 8-bit integer
        Quintum-h323-billing-model Length
    radius.Quintum_h323_call_origin  Quintum-h323-call-origin
        String
    radius.Quintum_h323_call_origin.len  Length
        Unsigned 8-bit integer
        Quintum-h323-call-origin Length
    radius.Quintum_h323_call_type  Quintum-h323-call-type
        String
    radius.Quintum_h323_call_type.len  Length
        Unsigned 8-bit integer
        Quintum-h323-call-type Length
    radius.Quintum_h323_conf_id  Quintum-h323-conf-id
        String
    radius.Quintum_h323_conf_id.len  Length
        Unsigned 8-bit integer
        Quintum-h323-conf-id Length
    radius.Quintum_h323_connect_time  Quintum-h323-connect-time
        String
    radius.Quintum_h323_connect_time.len  Length
        Unsigned 8-bit integer
        Quintum-h323-connect-time Length
    radius.Quintum_h323_credit_amount  Quintum-h323-credit-amount
        String
    radius.Quintum_h323_credit_amount.len  Length
        Unsigned 8-bit integer
        Quintum-h323-credit-amount Length
    radius.Quintum_h323_credit_time  Quintum-h323-credit-time
        String
    radius.Quintum_h323_credit_time.len  Length
        Unsigned 8-bit integer
        Quintum-h323-credit-time Length
    radius.Quintum_h323_currency_type  Quintum-h323-currency-type
        String
    radius.Quintum_h323_currency_type.len  Length
        Unsigned 8-bit integer
        Quintum-h323-currency-type Length
    radius.Quintum_h323_disconnect_cause  Quintum-h323-disconnect-cause
        String
    radius.Quintum_h323_disconnect_cause.len  Length
        Unsigned 8-bit integer
        Quintum-h323-disconnect-cause Length
    radius.Quintum_h323_disconnect_time  Quintum-h323-disconnect-time
        String
    radius.Quintum_h323_disconnect_time.len  Length
        Unsigned 8-bit integer
        Quintum-h323-disconnect-time Length
    radius.Quintum_h323_gw_id  Quintum-h323-gw-id
        String
    radius.Quintum_h323_gw_id.len  Length
        Unsigned 8-bit integer
        Quintum-h323-gw-id Length
    radius.Quintum_h323_incoming_conf_id  Quintum-h323-incoming-conf-id
        String
    radius.Quintum_h323_incoming_conf_id.len  Length
        Unsigned 8-bit integer
        Quintum-h323-incoming-conf-id Length
    radius.Quintum_h323_preferred_lang  Quintum-h323-preferred-lang
        String
    radius.Quintum_h323_preferred_lang.len  Length
        Unsigned 8-bit integer
        Quintum-h323-preferred-lang Length
    radius.Quintum_h323_prompt_id  Quintum-h323-prompt-id
        String
    radius.Quintum_h323_prompt_id.len  Length
        Unsigned 8-bit integer
        Quintum-h323-prompt-id Length
    radius.Quintum_h323_redirect_ip_address  Quintum-h323-redirect-ip-address
        String
    radius.Quintum_h323_redirect_ip_address.len  Length
        Unsigned 8-bit integer
        Quintum-h323-redirect-ip-address Length
    radius.Quintum_h323_redirect_number  Quintum-h323-redirect-number
        String
    radius.Quintum_h323_redirect_number.len  Length
        Unsigned 8-bit integer
        Quintum-h323-redirect-number Length
    radius.Quintum_h323_remote_address  Quintum-h323-remote-address
        String
    radius.Quintum_h323_remote_address.len  Length
        Unsigned 8-bit integer
        Quintum-h323-remote-address Length
    radius.Quintum_h323_return_code  Quintum-h323-return-code
        String
    radius.Quintum_h323_return_code.len  Length
        Unsigned 8-bit integer
        Quintum-h323-return-code Length
    radius.Quintum_h323_setup_time  Quintum-h323-setup-time
        String
    radius.Quintum_h323_setup_time.len  Length
        Unsigned 8-bit integer
        Quintum-h323-setup-time Length
    radius.Quintum_h323_time_and_day  Quintum-h323-time-and-day
        String
    radius.Quintum_h323_time_and_day.len  Length
        Unsigned 8-bit integer
        Quintum-h323-time-and-day Length
    radius.Quintum_h323_voice_quality  Quintum-h323-voice-quality
        String
    radius.Quintum_h323_voice_quality.len  Length
        Unsigned 8-bit integer
        Quintum-h323-voice-quality Length
    radius.RP_Downstream_Speed_Limit  RP-Downstream-Speed-Limit
        Unsigned 32-bit integer
    radius.RP_Downstream_Speed_Limit.len  Length
        Unsigned 8-bit integer
        RP-Downstream-Speed-Limit Length
    radius.RP_HURL  RP-HURL
        String
    radius.RP_HURL.len  Length
        Unsigned 8-bit integer
        RP-HURL Length
    radius.RP_MOTM  RP-MOTM
        String
    radius.RP_MOTM.len  Length
        Unsigned 8-bit integer
        RP-MOTM Length
    radius.RP_Max_Sessions_Per_User  RP-Max-Sessions-Per-User
        Unsigned 32-bit integer
    radius.RP_Max_Sessions_Per_User.len  Length
        Unsigned 8-bit integer
        RP-Max-Sessions-Per-User Length
    radius.RP_Upstream_Speed_Limit  RP-Upstream-Speed-Limit
        Unsigned 32-bit integer
    radius.RP_Upstream_Speed_Limit.len  Length
        Unsigned 8-bit integer
        RP-Upstream-Speed-Limit Length
    radius.Rate_Limit_Burst  Rate-Limit-Burst
        Unsigned 32-bit integer
    radius.Rate_Limit_Burst.len  Length
        Unsigned 8-bit integer
        Rate-Limit-Burst Length
    radius.Rate_Limit_Excess_Burst  Rate-Limit-Excess-Burst
        Byte array
    radius.Rate_Limit_Excess_Burst.len  Length
        Unsigned 8-bit integer
        Rate-Limit-Excess-Burst Length
    radius.Rate_Limit_Rate  Rate-Limit-Rate
        Unsigned 32-bit integer
    radius.Rate_Limit_Rate.len  Length
        Unsigned 8-bit integer
        Rate-Limit-Rate Length
    radius.Reauth_More  Reauth-More
        Unsigned 32-bit integer
    radius.Reauth_More.len  Length
        Unsigned 8-bit integer
        Reauth-More Length
    radius.Reauth_Session_Id  Reauth-Session-Id
        String
    radius.Reauth_Session_Id.len  Length
        Unsigned 8-bit integer
        Reauth-Session-Id Length
    radius.Reauth_String  Reauth-String
        String
    radius.Reauth_String.len  Length
        Unsigned 8-bit integer
        Reauth-String Length
    radius.RedCreek_Tunneled_DNS_Server  RedCreek-Tunneled-DNS-Server
        String
    radius.RedCreek_Tunneled_DNS_Server.len  Length
        Unsigned 8-bit integer
        RedCreek-Tunneled-DNS-Server Length
    radius.RedCreek_Tunneled_DomainName  RedCreek-Tunneled-DomainName
        String
    radius.RedCreek_Tunneled_DomainName.len  Length
        Unsigned 8-bit integer
        RedCreek-Tunneled-DomainName Length
    radius.RedCreek_Tunneled_Gateway  RedCreek-Tunneled-Gateway
        IPv4 address
    radius.RedCreek_Tunneled_Gateway.len  Length
        Unsigned 8-bit integer
        RedCreek-Tunneled-Gateway Length
    radius.RedCreek_Tunneled_HostName  RedCreek-Tunneled-HostName
        String
    radius.RedCreek_Tunneled_HostName.len  Length
        Unsigned 8-bit integer
        RedCreek-Tunneled-HostName Length
    radius.RedCreek_Tunneled_IP_Addr  RedCreek-Tunneled-IP-Addr
        IPv4 address
    radius.RedCreek_Tunneled_IP_Addr.len  Length
        Unsigned 8-bit integer
        RedCreek-Tunneled-IP-Addr Length
    radius.RedCreek_Tunneled_IP_Netmask  RedCreek-Tunneled-IP-Netmask
        IPv4 address
    radius.RedCreek_Tunneled_IP_Netmask.len  Length
        Unsigned 8-bit integer
        RedCreek-Tunneled-IP-Netmask Length
    radius.RedCreek_Tunneled_Search_List  RedCreek-Tunneled-Search-List
        String
    radius.RedCreek_Tunneled_Search_List.len  Length
        Unsigned 8-bit integer
        RedCreek-Tunneled-Search-List Length
    radius.RedCreek_Tunneled_WINS_Server1  RedCreek-Tunneled-WINS-Server1
        String
    radius.RedCreek_Tunneled_WINS_Server1.len  Length
        Unsigned 8-bit integer
        RedCreek-Tunneled-WINS-Server1 Length
    radius.RedCreek_Tunneled_WINS_Server2  RedCreek-Tunneled-WINS-Server2
        String
    radius.RedCreek_Tunneled_WINS_Server2.len  Length
        Unsigned 8-bit integer
        RedCreek-Tunneled-WINS-Server2 Length
    radius.Related_ICID  Related_ICID
        String
    radius.Related_ICID.len  Length
        Unsigned 8-bit integer
        Related_ICID Length
    radius.Reply_Message  Reply-Message
        String
    radius.Reply_Message.len  Length
        Unsigned 8-bit integer
        Reply-Message Length
    radius.Riverstone_Command  Riverstone-Command
        String
    radius.Riverstone_Command.len  Length
        Unsigned 8-bit integer
        Riverstone-Command Length
    radius.Riverstone_SNMP_Config_Change  Riverstone-SNMP-Config-Change
        String
    radius.Riverstone_SNMP_Config_Change.len  Length
        Unsigned 8-bit integer
        Riverstone-SNMP-Config-Change Length
    radius.Riverstone_System_Event  Riverstone-System-Event
        String
    radius.Riverstone_System_Event.len  Length
        Unsigned 8-bit integer
        Riverstone-System-Event Length
    radius.Riverstone_User_Level  Riverstone-User-Level
        Unsigned 32-bit integer
    radius.Riverstone_User_Level.len  Length
        Unsigned 8-bit integer
        Riverstone-User-Level Length
    radius.SNA_PPP_Bad_Addr  SNA-PPP-Bad-Addr
        Unsigned 32-bit integer
    radius.SNA_PPP_Bad_Addr.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Bad-Addr Length
    radius.SNA_PPP_Bad_Ctrl  SNA-PPP-Bad-Ctrl
        Unsigned 32-bit integer
    radius.SNA_PPP_Bad_Ctrl.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Bad-Ctrl Length
    radius.SNA_PPP_Bad_FCS  SNA-PPP-Bad-FCS
        Unsigned 32-bit integer
    radius.SNA_PPP_Bad_FCS.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Bad-FCS Length
    radius.SNA_PPP_Ctrl_Input_Octets  SNA-PPP-Ctrl-Input-Octets
        Unsigned 32-bit integer
    radius.SNA_PPP_Ctrl_Input_Octets.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Ctrl-Input-Octets Length
    radius.SNA_PPP_Ctrl_Input_Packets  SNA-PPP-Ctrl-Input-Packets
        Unsigned 32-bit integer
    radius.SNA_PPP_Ctrl_Input_Packets.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Ctrl-Input-Packets Length
    radius.SNA_PPP_Ctrl_Output_Octets  SNA-PPP-Ctrl-Output-Octets
        Unsigned 32-bit integer
    radius.SNA_PPP_Ctrl_Output_Octets.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Ctrl-Output-Octets Length
    radius.SNA_PPP_Ctrl_Output_Packets  SNA-PPP-Ctrl-Output-Packets
        Unsigned 32-bit integer
    radius.SNA_PPP_Ctrl_Output_Packets.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Ctrl-Output-Packets Length
    radius.SNA_PPP_Discards_Input  SNA-PPP-Discards-Input
        Unsigned 32-bit integer
    radius.SNA_PPP_Discards_Input.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Discards-Input Length
    radius.SNA_PPP_Discards_Output  SNA-PPP-Discards-Output
        Unsigned 32-bit integer
    radius.SNA_PPP_Discards_Output.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Discards-Output Length
    radius.SNA_PPP_Echo_Req_Input  SNA-PPP-Echo-Req-Input
        Unsigned 32-bit integer
    radius.SNA_PPP_Echo_Req_Input.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Echo-Req-Input Length
    radius.SNA_PPP_Echo_Req_Output  SNA-PPP-Echo-Req-Output
        Unsigned 32-bit integer
    radius.SNA_PPP_Echo_Req_Output.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Echo-Req-Output Length
    radius.SNA_PPP_Echo_Rsp_Input  SNA-PPP-Echo-Rsp-Input
        Unsigned 32-bit integer
    radius.SNA_PPP_Echo_Rsp_Input.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Echo-Rsp-Input Length
    radius.SNA_PPP_Echo_Rsp_Output  SNA-PPP-Echo-Rsp-Output
        Unsigned 32-bit integer
    radius.SNA_PPP_Echo_Rsp_Output.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Echo-Rsp-Output Length
    radius.SNA_PPP_Errors_Input  SNA-PPP-Errors-Input
        Unsigned 32-bit integer
    radius.SNA_PPP_Errors_Input.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Errors-Input Length
    radius.SNA_PPP_Errors_Output  SNA-PPP-Errors-Output
        Unsigned 32-bit integer
    radius.SNA_PPP_Errors_Output.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Errors-Output Length
    radius.SNA_PPP_Framed_Input_Octets  SNA-PPP-Framed-Input-Octets
        Unsigned 32-bit integer
    radius.SNA_PPP_Framed_Input_Octets.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Framed-Input-Octets Length
    radius.SNA_PPP_Framed_Output_Octets  SNA-PPP-Framed-Output-Octets
        Unsigned 32-bit integer
    radius.SNA_PPP_Framed_Output_Octets.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Framed-Output-Octets Length
    radius.SNA_PPP_Packet_Too_Long  SNA-PPP-Packet-Too-Long
        Unsigned 32-bit integer
    radius.SNA_PPP_Packet_Too_Long.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Packet-Too-Long Length
    radius.SNA_PPP_Unfr_data_In_Oct  SNA-PPP-Unfr-data-In-Oct
        Unsigned 32-bit integer
    radius.SNA_PPP_Unfr_data_In_Oct.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Unfr-data-In-Oct Length
    radius.SNA_PPP_Unfr_data_Out_Oct  SNA-PPP-Unfr-data-Out-Oct
        Unsigned 32-bit integer
    radius.SNA_PPP_Unfr_data_Out_Oct.len  Length
        Unsigned 8-bit integer
        SNA-PPP-Unfr-data-Out-Oct Length
    radius.SNA_RPRAK_Rcvd_Acc_Ack  SNA-RPRAK-Rcvd-Acc-Ack
        Unsigned 32-bit integer
    radius.SNA_RPRAK_Rcvd_Acc_Ack.len  Length
        Unsigned 8-bit integer
        SNA-RPRAK-Rcvd-Acc-Ack Length
    radius.SNA_RPRAK_Rcvd_Mis_ID  SNA-RPRAK-Rcvd-Mis-ID
        Unsigned 32-bit integer
    radius.SNA_RPRAK_Rcvd_Mis_ID.len  Length
        Unsigned 8-bit integer
        SNA-RPRAK-Rcvd-Mis-ID Length
    radius.SNA_RPRAK_Rcvd_Msg_Auth_Fail  SNA-RPRAK-Rcvd-Msg-Auth-Fail
        Unsigned 32-bit integer
    radius.SNA_RPRAK_Rcvd_Msg_Auth_Fail.len  Length
        Unsigned 8-bit integer
        SNA-RPRAK-Rcvd-Msg-Auth-Fail Length
    radius.SNA_RPRAK_Rcvd_Total  SNA-RPRAK-Rcvd-Total
        Unsigned 32-bit integer
    radius.SNA_RPRAK_Rcvd_Total.len  Length
        Unsigned 8-bit integer
        SNA-RPRAK-Rcvd-Total Length
    radius.SNA_RPRRQ_Rcvd_Acc_Dereg  SNA-RPRRQ-Rcvd-Acc-Dereg
        Unsigned 32-bit integer
    radius.SNA_RPRRQ_Rcvd_Acc_Dereg.len  Length
        Unsigned 8-bit integer
        SNA-RPRRQ-Rcvd-Acc-Dereg Length
    radius.SNA_RPRRQ_Rcvd_Acc_Reg  SNA-RPRRQ-Rcvd-Acc-Reg
        Unsigned 32-bit integer
    radius.SNA_RPRRQ_Rcvd_Acc_Reg.len  Length
        Unsigned 8-bit integer
        SNA-RPRRQ-Rcvd-Acc-Reg Length
    radius.SNA_RPRRQ_Rcvd_Badly_Formed  SNA-RPRRQ-Rcvd-Badly-Formed
        Unsigned 32-bit integer
    radius.SNA_RPRRQ_Rcvd_Badly_Formed.len  Length
        Unsigned 8-bit integer
        SNA-RPRRQ-Rcvd-Badly-Formed Length
    radius.SNA_RPRRQ_Rcvd_Mis_ID  SNA-RPRRQ-Rcvd-Mis-ID
        Unsigned 32-bit integer
    radius.SNA_RPRRQ_Rcvd_Mis_ID.len  Length
        Unsigned 8-bit integer
        SNA-RPRRQ-Rcvd-Mis-ID Length
    radius.SNA_RPRRQ_Rcvd_Msg_Auth_Fail  SNA-RPRRQ-Rcvd-Msg-Auth-Fail
        Unsigned 32-bit integer
    radius.SNA_RPRRQ_Rcvd_Msg_Auth_Fail.len  Length
        Unsigned 8-bit integer
        SNA-RPRRQ-Rcvd-Msg-Auth-Fail Length
    radius.SNA_RPRRQ_Rcvd_T_Bit_Not_Set  SNA-RPRRQ-Rcvd-T-Bit-Not-Set
        Unsigned 32-bit integer
    radius.SNA_RPRRQ_Rcvd_T_Bit_Not_Set.len  Length
        Unsigned 8-bit integer
        SNA-RPRRQ-Rcvd-T-Bit-Not-Set Length
    radius.SNA_RPRRQ_Rcvd_Total  SNA-RPRRQ-Rcvd-Total
        Unsigned 32-bit integer
    radius.SNA_RPRRQ_Rcvd_Total.len  Length
        Unsigned 8-bit integer
        SNA-RPRRQ-Rcvd-Total Length
    radius.SNA_RPRRQ_Rcvd_VID_Unsupported  SNA-RPRRQ-Rcvd-VID-Unsupported
        Unsigned 32-bit integer
    radius.SNA_RPRRQ_Rcvd_VID_Unsupported.len  Length
        Unsigned 8-bit integer
        SNA-RPRRQ-Rcvd-VID-Unsupported Length
    radius.SNA_RP_Reg_Reply_Sent_Acc_Dereg  SNA-RP-Reg-Reply-Sent-Acc-Dereg
        Unsigned 32-bit integer
    radius.SNA_RP_Reg_Reply_Sent_Acc_Dereg.len  Length
        Unsigned 8-bit integer
        SNA-RP-Reg-Reply-Sent-Acc-Dereg Length
    radius.SNA_RP_Reg_Reply_Sent_Acc_Reg  SNA-RP-Reg-Reply-Sent-Acc-Reg
        Unsigned 32-bit integer
    radius.SNA_RP_Reg_Reply_Sent_Acc_Reg.len  Length
        Unsigned 8-bit integer
        SNA-RP-Reg-Reply-Sent-Acc-Reg Length
    radius.SNA_RP_Reg_Reply_Sent_Bad_Req  SNA-RP-Reg-Reply-Sent-Bad-Req
        Unsigned 32-bit integer
    radius.SNA_RP_Reg_Reply_Sent_Bad_Req.len  Length
        Unsigned 8-bit integer
        SNA-RP-Reg-Reply-Sent-Bad-Req Length
    radius.SNA_RP_Reg_Reply_Sent_Denied  SNA-RP-Reg-Reply-Sent-Denied
        Unsigned 32-bit integer
    radius.SNA_RP_Reg_Reply_Sent_Denied.len  Length
        Unsigned 8-bit integer
        SNA-RP-Reg-Reply-Sent-Denied Length
    radius.SNA_RP_Reg_Reply_Sent_Mis_ID  SNA-RP-Reg-Reply-Sent-Mis-ID
        Unsigned 32-bit integer
    radius.SNA_RP_Reg_Reply_Sent_Mis_ID.len  Length
        Unsigned 8-bit integer
        SNA-RP-Reg-Reply-Sent-Mis-ID Length
    radius.SNA_RP_Reg_Reply_Sent_Send_Err  SNA-RP-Reg-Reply-Sent-Send-Err
        Unsigned 32-bit integer
    radius.SNA_RP_Reg_Reply_Sent_Send_Err.len  Length
        Unsigned 8-bit integer
        SNA-RP-Reg-Reply-Sent-Send-Err Length
    radius.SNA_RP_Reg_Reply_Sent_Total  SNA-RP-Reg-Reply-Sent-Total
        Unsigned 32-bit integer
    radius.SNA_RP_Reg_Reply_Sent_Total.len  Length
        Unsigned 8-bit integer
        SNA-RP-Reg-Reply-Sent-Total Length
    radius.SNA_RP_Reg_Upd_Re_Sent  SNA-RP-Reg-Upd-Re-Sent
        Unsigned 32-bit integer
    radius.SNA_RP_Reg_Upd_Re_Sent.len  Length
        Unsigned 8-bit integer
        SNA-RP-Reg-Upd-Re-Sent Length
    radius.SNA_RP_Reg_Upd_Send_Err  SNA-RP-Reg-Upd-Send-Err
        Unsigned 32-bit integer
    radius.SNA_RP_Reg_Upd_Send_Err.len  Length
        Unsigned 8-bit integer
        SNA-RP-Reg-Upd-Send-Err Length
    radius.SNA_RP_Reg_Upd_Sent  SNA-RP-Reg-Upd-Sent
        Unsigned 32-bit integer
    radius.SNA_RP_Reg_Upd_Sent.len  Length
        Unsigned 8-bit integer
        SNA-RP-Reg-Upd-Sent Length
    radius.SN_Admin_Permission  SN-Admin-Permission
        Unsigned 32-bit integer
    radius.SN_Admin_Permission.len  Length
        Unsigned 8-bit integer
        SN-Admin-Permission Length
    radius.SN_Disconnect_Reason  SN-Disconnect-Reason
        Unsigned 32-bit integer
    radius.SN_Disconnect_Reason.len  Length
        Unsigned 8-bit integer
        SN-Disconnect-Reason Length
    radius.SN_IP_Filter_In  SN-IP-Filter-In
        String
    radius.SN_IP_Filter_In.len  Length
        Unsigned 8-bit integer
        SN-IP-Filter-In Length
    radius.SN_IP_Filter_Out  SN-IP-Filter-Out
        String
    radius.SN_IP_Filter_Out.len  Length
        Unsigned 8-bit integer
        SN-IP-Filter-Out Length
    radius.SN_IP_In_ACL  SN-IP-In-ACL
        String
    radius.SN_IP_In_ACL.len  Length
        Unsigned 8-bit integer
        SN-IP-In-ACL Length
    radius.SN_IP_Out_ACL  SN-IP-Out-ACL
        String
    radius.SN_IP_Out_ACL.len  Length
        Unsigned 8-bit integer
        SN-IP-Out-ACL Length
    radius.SN_IP_Pool_Name  SN-IP-Pool-Name
        String
    radius.SN_IP_Pool_Name.len  Length
        Unsigned 8-bit integer
        SN-IP-Pool-Name Length
    radius.SN_IP_Source_Validation  SN-IP-Source-Validation
        Unsigned 32-bit integer
    radius.SN_IP_Source_Validation.len  Length
        Unsigned 8-bit integer
        SN-IP-Source-Validation Length
    radius.SN_Local_IP_Address  SN-Local-IP-Address
        IPv4 address
    radius.SN_Local_IP_Address.len  Length
        Unsigned 8-bit integer
        SN-Local-IP-Address Length
    radius.SN_Min_Compress_Size  SN-Min-Compress-Size
        Unsigned 32-bit integer
    radius.SN_Min_Compress_Size.len  Length
        Unsigned 8-bit integer
        SN-Min-Compress-Size Length
    radius.SN_PPP_Data_Compression  SN-PPP-Data-Compression
        Unsigned 32-bit integer
    radius.SN_PPP_Data_Compression.len  Length
        Unsigned 8-bit integer
        SN-PPP-Data-Compression Length
    radius.SN_PPP_Data_Compression_Mode  SN-PPP-Data-Compression-Mode
        Unsigned 32-bit integer
    radius.SN_PPP_Data_Compression_Mode.len  Length
        Unsigned 8-bit integer
        SN-PPP-Data-Compression-Mode Length
    radius.SN_PPP_Keepalive  SN-PPP-Keepalive
        Unsigned 32-bit integer
    radius.SN_PPP_Keepalive.len  Length
        Unsigned 8-bit integer
        SN-PPP-Keepalive Length
    radius.SN_PPP_Outbound_Password  SN-PPP-Outbound-Password
        String
    radius.SN_PPP_Outbound_Password.len  Length
        Unsigned 8-bit integer
        SN-PPP-Outbound-Password Length
    radius.SN_PPP_Progress_Code  SN-PPP-Progress-Code
        Unsigned 32-bit integer
    radius.SN_PPP_Progress_Code.len  Length
        Unsigned 8-bit integer
        SN-PPP-Progress-Code Length
    radius.SN_Primary_DNS_Server  SN-Primary-DNS-Server
        IPv4 address
    radius.SN_Primary_DNS_Server.len  Length
        Unsigned 8-bit integer
        SN-Primary-DNS-Server Length
    radius.SN_Re_CHAP_Interval  SN-Re-CHAP-Interval
        Unsigned 32-bit integer
    radius.SN_Re_CHAP_Interval.len  Length
        Unsigned 8-bit integer
        SN-Re-CHAP-Interval Length
    radius.SN_Secondary_DNS_Server  SN-Secondary-DNS-Server
        IPv4 address
    radius.SN_Secondary_DNS_Server.len  Length
        Unsigned 8-bit integer
        SN-Secondary-DNS-Server Length
    radius.SN_Simultaneous_SIP_MIP  SN-Simultaneous-SIP-MIP
        Unsigned 32-bit integer
    radius.SN_Simultaneous_SIP_MIP.len  Length
        Unsigned 8-bit integer
        SN-Simultaneous-SIP-MIP Length
    radius.SN_Subscriber_Permission  SN-Subscriber-Permission
        Unsigned 32-bit integer
    radius.SN_Subscriber_Permission.len  Length
        Unsigned 8-bit integer
        SN-Subscriber-Permission Length
    radius.SN_VPN_ID  SN-VPN-ID
        Unsigned 32-bit integer
    radius.SN_VPN_ID.len  Length
        Unsigned 8-bit integer
        SN-VPN-ID Length
    radius.SN_VPN_Name  SN-VPN-Name
        String
    radius.SN_VPN_Name.len  Length
        Unsigned 8-bit integer
        SN-VPN-Name Length
    radius.ST_Acct_VC_Connection_Id  ST-Acct-VC-Connection-Id
        String
    radius.ST_Acct_VC_Connection_Id.len  Length
        Unsigned 8-bit integer
        ST-Acct-VC-Connection-Id Length
    radius.ST_IPSec_Client_Firewall  ST-IPSec-Client-Firewall
        Unsigned 32-bit integer
    radius.ST_IPSec_Client_Firewall.len  Length
        Unsigned 8-bit integer
        ST-IPSec-Client-Firewall Length
    radius.ST_IPSec_Client_Subnet  ST-IPSec-Client-Subnet
        String
    radius.ST_IPSec_Client_Subnet.len  Length
        Unsigned 8-bit integer
        ST-IPSec-Client-Subnet Length
    radius.ST_IPSec_Pfs_Group  ST-IPSec-Pfs-Group
        Unsigned 32-bit integer
    radius.ST_IPSec_Pfs_Group.len  Length
        Unsigned 8-bit integer
        ST-IPSec-Pfs-Group Length
    radius.ST_Physical_Port  ST-Physical-Port
        Unsigned 32-bit integer
    radius.ST_Physical_Port.len  Length
        Unsigned 8-bit integer
        ST-Physical-Port Length
    radius.ST_Physical_Slot  ST-Physical-Slot
        Unsigned 32-bit integer
    radius.ST_Physical_Slot.len  Length
        Unsigned 8-bit integer
        ST-Physical-Slot Length
    radius.ST_Policy_Name  ST-Policy-Name
        String
    radius.ST_Policy_Name.len  Length
        Unsigned 8-bit integer
        ST-Policy-Name Length
    radius.ST_Primary_DNS_Server  ST-Primary-DNS-Server
        IPv4 address
    radius.ST_Primary_DNS_Server.len  Length
        Unsigned 8-bit integer
        ST-Primary-DNS-Server Length
    radius.ST_Primary_NBNS_Server  ST-Primary-NBNS-Server
        IPv4 address
    radius.ST_Primary_NBNS_Server.len  Length
        Unsigned 8-bit integer
        ST-Primary-NBNS-Server Length
    radius.ST_Realm_Name  ST-Realm-Name
        String
    radius.ST_Realm_Name.len  Length
        Unsigned 8-bit integer
        ST-Realm-Name Length
    radius.ST_Secondary_DNS_Server  ST-Secondary-DNS-Server
        IPv4 address
    radius.ST_Secondary_DNS_Server.len  Length
        Unsigned 8-bit integer
        ST-Secondary-DNS-Server Length
    radius.ST_Secondary_NBNS_Server  ST-Secondary-NBNS-Server
        IPv4 address
    radius.ST_Secondary_NBNS_Server.len  Length
        Unsigned 8-bit integer
        ST-Secondary-NBNS-Server Length
    radius.ST_Service_Domain  ST-Service-Domain
        Unsigned 32-bit integer
    radius.ST_Service_Domain.len  Length
        Unsigned 8-bit integer
        ST-Service-Domain Length
    radius.ST_Service_Name  ST-Service-Name
        String
    radius.ST_Service_Name.len  Length
        Unsigned 8-bit integer
        ST-Service-Name Length
    radius.ST_Virtual_Circuit_ID  ST-Virtual-Circuit-ID
        Unsigned 32-bit integer
    radius.ST_Virtual_Circuit_ID.len  Length
        Unsigned 8-bit integer
        ST-Virtual-Circuit-ID Length
    radius.ST_Virtual_Path_ID  ST-Virtual-Path-ID
        Unsigned 32-bit integer
    radius.ST_Virtual_Path_ID.len  Length
        Unsigned 8-bit integer
        ST-Virtual-Path-ID Length
    radius.Sdx_Service_Name  Sdx-Service-Name
        String
    radius.Sdx_Service_Name.len  Length
        Unsigned 8-bit integer
        Sdx-Service-Name Length
    radius.Sdx_Session_Volume_Quota  Sdx-Session-Volume-Quota
        String
    radius.Sdx_Session_Volume_Quota.len  Length
        Unsigned 8-bit integer
        Sdx-Session-Volume-Quota Length
    radius.Sdx_Tunnel_Disconnect_Cause_Info  Sdx-Tunnel-Disconnect-Cause-Info
        String
    radius.Sdx_Tunnel_Disconnect_Cause_Info.len  Length
        Unsigned 8-bit integer
        Sdx-Tunnel-Disconnect-Cause-Info Length
    radius.Service_Type  Service-Type
        Unsigned 32-bit integer
    radius.Service_Type.len  Length
        Unsigned 8-bit integer
        Service-Type Length
    radius.Session_Error_Code  Session-Error-Code
        Unsigned 32-bit integer
    radius.Session_Error_Code.len  Length
        Unsigned 8-bit integer
        Session-Error-Code Length
    radius.Session_Error_Msg  Session-Error-Msg
        String
    radius.Session_Error_Msg.len  Length
        Unsigned 8-bit integer
        Session-Error-Msg Length
    radius.Session_Timeout  Session-Timeout
        Unsigned 32-bit integer
    radius.Session_Timeout.len  Length
        Unsigned 8-bit integer
        Session-Timeout Length
    radius.Session_Traffic_Limit  Session-Traffic-Limit
        String
    radius.Session_Traffic_Limit.len  Length
        Unsigned 8-bit integer
        Session-Traffic-Limit Length
    radius.Shaping_Profile_Name  Shaping-Profile-Name
        String
    radius.Shaping_Profile_Name.len  Length
        Unsigned 8-bit integer
        Shaping-Profile-Name Length
    radius.Shasta_Service_Profile  Shasta-Service-Profile
        String
    radius.Shasta_Service_Profile.len  Length
        Unsigned 8-bit integer
        Shasta-Service-Profile Length
    radius.Shasta_User_Privilege  Shasta-User-Privilege
        Unsigned 32-bit integer
    radius.Shasta_User_Privilege.len  Length
        Unsigned 8-bit integer
        Shasta-User-Privilege Length
    radius.Shasta_VPN_Name  Shasta-VPN-Name
        String
    radius.Shasta_VPN_Name.len  Length
        Unsigned 8-bit integer
        Shasta-VPN-Name Length
    radius.Shiva_Acct_Serv_Switch  Shiva-Acct-Serv-Switch
        IPv4 address
    radius.Shiva_Acct_Serv_Switch.len  Length
        Unsigned 8-bit integer
        Shiva-Acct-Serv-Switch Length
    radius.Shiva_Bak_Key  Shiva-Bak-Key
        String
    radius.Shiva_Bak_Key.len  Length
        Unsigned 8-bit integer
        Shiva-Bak-Key Length
    radius.Shiva_Bandwidth_Trap  Shiva-Bandwidth-Trap
        Unsigned 32-bit integer
    radius.Shiva_Bandwidth_Trap.len  Length
        Unsigned 8-bit integer
        Shiva-Bandwidth-Trap Length
    radius.Shiva_Break_Key  Shiva-Break-Key
        String
    radius.Shiva_Break_Key.len  Length
        Unsigned 8-bit integer
        Shiva-Break-Key Length
    radius.Shiva_Call_Durn_Trap  Shiva-Call-Durn-Trap
        Unsigned 32-bit integer
    radius.Shiva_Call_Durn_Trap.len  Length
        Unsigned 8-bit integer
        Shiva-Call-Durn-Trap Length
    radius.Shiva_Called_Number  Shiva-Called-Number
        String
    radius.Shiva_Called_Number.len  Length
        Unsigned 8-bit integer
        Shiva-Called-Number Length
    radius.Shiva_Calling_Number  Shiva-Calling-Number
        String
    radius.Shiva_Calling_Number.len  Length
        Unsigned 8-bit integer
        Shiva-Calling-Number Length
    radius.Shiva_Circuit_Type  Shiva-Circuit-Type
        Unsigned 32-bit integer
    radius.Shiva_Circuit_Type.len  Length
        Unsigned 8-bit integer
        Shiva-Circuit-Type Length
    radius.Shiva_Compression  Shiva-Compression
        Unsigned 32-bit integer
    radius.Shiva_Compression.len  Length
        Unsigned 8-bit integer
        Shiva-Compression Length
    radius.Shiva_Compression_Type  Shiva-Compression-Type
        Unsigned 32-bit integer
    radius.Shiva_Compression_Type.len  Length
        Unsigned 8-bit integer
        Shiva-Compression-Type Length
    radius.Shiva_Connect_Reason  Shiva-Connect-Reason
        Unsigned 32-bit integer
    radius.Shiva_Connect_Reason.len  Length
        Unsigned 8-bit integer
        Shiva-Connect-Reason Length
    radius.Shiva_Customer_Id  Shiva-Customer-Id
        String
    radius.Shiva_Customer_Id.len  Length
        Unsigned 8-bit integer
        Shiva-Customer-Id Length
    radius.Shiva_DHCP_Leasetime  Shiva-DHCP-Leasetime
        Unsigned 32-bit integer
    radius.Shiva_DHCP_Leasetime.len  Length
        Unsigned 8-bit integer
        Shiva-DHCP-Leasetime Length
    radius.Shiva_Default_Host  Shiva-Default-Host
        String
    radius.Shiva_Default_Host.len  Length
        Unsigned 8-bit integer
        Shiva-Default-Host Length
    radius.Shiva_Dial_Timeout  Shiva-Dial-Timeout
        Unsigned 32-bit integer
    radius.Shiva_Dial_Timeout.len  Length
        Unsigned 8-bit integer
        Shiva-Dial-Timeout Length
    radius.Shiva_Dialback_Delay  Shiva-Dialback-Delay
        Unsigned 32-bit integer
    radius.Shiva_Dialback_Delay.len  Length
        Unsigned 8-bit integer
        Shiva-Dialback-Delay Length
    radius.Shiva_Disconnect_Reason  Shiva-Disconnect-Reason
        Unsigned 32-bit integer
    radius.Shiva_Disconnect_Reason.len  Length
        Unsigned 8-bit integer
        Shiva-Disconnect-Reason Length
    radius.Shiva_Event_Flags  Shiva-Event-Flags
        Unsigned 32-bit integer
    radius.Shiva_Event_Flags.len  Length
        Unsigned 8-bit integer
        Shiva-Event-Flags Length
    radius.Shiva_Function  Shiva-Function
        Unsigned 32-bit integer
    radius.Shiva_Function.len  Length
        Unsigned 8-bit integer
        Shiva-Function Length
    radius.Shiva_Fwd_Key  Shiva-Fwd-Key
        String
    radius.Shiva_Fwd_Key.len  Length
        Unsigned 8-bit integer
        Shiva-Fwd-Key Length
    radius.Shiva_LAT_Groups  Shiva-LAT-Groups
        String
    radius.Shiva_LAT_Groups.len  Length
        Unsigned 8-bit integer
        Shiva-LAT-Groups Length
    radius.Shiva_LAT_Port  Shiva-LAT-Port
        String
    radius.Shiva_LAT_Port.len  Length
        Unsigned 8-bit integer
        Shiva-LAT-Port Length
    radius.Shiva_Link_Protocol  Shiva-Link-Protocol
        Unsigned 32-bit integer
    radius.Shiva_Link_Protocol.len  Length
        Unsigned 8-bit integer
        Shiva-Link-Protocol Length
    radius.Shiva_Link_Speed  Shiva-Link-Speed
        Unsigned 32-bit integer
    radius.Shiva_Link_Speed.len  Length
        Unsigned 8-bit integer
        Shiva-Link-Speed Length
    radius.Shiva_Links_In_Bundle  Shiva-Links-In-Bundle
        Unsigned 32-bit integer
    radius.Shiva_Links_In_Bundle.len  Length
        Unsigned 8-bit integer
        Shiva-Links-In-Bundle Length
    radius.Shiva_Max_VCs  Shiva-Max-VCs
        Unsigned 32-bit integer
    radius.Shiva_Max_VCs.len  Length
        Unsigned 8-bit integer
        Shiva-Max-VCs Length
    radius.Shiva_Menu_Name  Shiva-Menu-Name
        String
    radius.Shiva_Menu_Name.len  Length
        Unsigned 8-bit integer
        Shiva-Menu-Name Length
    radius.Shiva_Minimum_Call  Shiva-Minimum-Call
        Unsigned 32-bit integer
    radius.Shiva_Minimum_Call.len  Length
        Unsigned 8-bit integer
        Shiva-Minimum-Call Length
    radius.Shiva_Network_Protocols  Shiva-Network-Protocols
        Unsigned 32-bit integer
    radius.Shiva_Network_Protocols.len  Length
        Unsigned 8-bit integer
        Shiva-Network-Protocols Length
    radius.Shiva_RTC_Timestamp  Shiva-RTC-Timestamp
        Unsigned 32-bit integer
    radius.Shiva_RTC_Timestamp.len  Length
        Unsigned 8-bit integer
        Shiva-RTC-Timestamp Length
    radius.Shiva_Session_Id  Shiva-Session-Id
        Unsigned 32-bit integer
    radius.Shiva_Session_Id.len  Length
        Unsigned 8-bit integer
        Shiva-Session-Id Length
    radius.Shiva_Termtype  Shiva-Termtype
        String
    radius.Shiva_Termtype.len  Length
        Unsigned 8-bit integer
        Shiva-Termtype Length
    radius.Shiva_Type_Of_Service  Shiva-Type-Of-Service
        Unsigned 32-bit integer
    radius.Shiva_Type_Of_Service.len  Length
        Unsigned 8-bit integer
        Shiva-Type-Of-Service Length
    radius.Shiva_User_Attributes  Shiva-User-Attributes
        String
    radius.Shiva_User_Attributes.len  Length
        Unsigned 8-bit integer
        Shiva-User-Attributes Length
    radius.Shiva_User_Flags  Shiva-User-Flags
        String
    radius.Shiva_User_Flags.len  Length
        Unsigned 8-bit integer
        Shiva-User-Flags Length
    radius.Slipstream_Auth  Slipstream-Auth
        String
    radius.Slipstream_Auth.len  Length
        Unsigned 8-bit integer
        Slipstream-Auth Length
    radius.SonicWall_User_Group  SonicWall-User-Group
        String
    radius.SonicWall_User_Group.len  Length
        Unsigned 8-bit integer
        SonicWall-User-Group Length
    radius.SonicWall_User_Privilege  SonicWall-User-Privilege
        Unsigned 32-bit integer
    radius.SonicWall_User_Privilege.len  Length
        Unsigned 8-bit integer
        SonicWall-User-Privilege Length
    radius.Source_Validation  Source-Validation
        Unsigned 32-bit integer
    radius.Source_Validation.len  Length
        Unsigned 8-bit integer
        Source-Validation Length
    radius.State  State
        Byte array
    radius.State.len  Length
        Unsigned 8-bit integer
        State Length
    radius.Sub_Profile_Name  Sub-Profile-Name
        String
    radius.Sub_Profile_Name.len  Length
        Unsigned 8-bit integer
        Sub-Profile-Name Length
    radius.Surveillance_Stop_Destination  Surveillance-Stop-Destination
        Unsigned 32-bit integer
    radius.Surveillance_Stop_Destination.len  Length
        Unsigned 8-bit integer
        Surveillance-Stop-Destination Length
    radius.Surveillance_Stop_Type  Surveillance-Stop-Type
        Unsigned 32-bit integer
    radius.Surveillance_Stop_Type.len  Length
        Unsigned 8-bit integer
        Surveillance-Stop-Type Length
    radius.TTY_Level_Max  TTY-Level-Max
        Unsigned 32-bit integer
    radius.TTY_Level_Max.len  Length
        Unsigned 8-bit integer
        TTY-Level-Max Length
    radius.TTY_Level_Start  TTY-Level-Start
        Unsigned 32-bit integer
    radius.TTY_Level_Start.len  Length
        Unsigned 8-bit integer
        TTY-Level-Start Length
    radius.T_Systems_Nova_Bandwidth_Max_Down  T-Systems-Nova-Bandwidth-Max-Down
        Unsigned 32-bit integer
    radius.T_Systems_Nova_Bandwidth_Max_Down.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Bandwidth-Max-Down Length
    radius.T_Systems_Nova_Bandwidth_Max_Up  T-Systems-Nova-Bandwidth-Max-Up
        Unsigned 32-bit integer
    radius.T_Systems_Nova_Bandwidth_Max_Up.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Bandwidth-Max-Up Length
    radius.T_Systems_Nova_Bandwidth_Min_Down  T-Systems-Nova-Bandwidth-Min-Down
        Unsigned 32-bit integer
    radius.T_Systems_Nova_Bandwidth_Min_Down.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Bandwidth-Min-Down Length
    radius.T_Systems_Nova_Bandwidth_Min_Up  T-Systems-Nova-Bandwidth-Min-Up
        Unsigned 32-bit integer
    radius.T_Systems_Nova_Bandwidth_Min_Up.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Bandwidth-Min-Up Length
    radius.T_Systems_Nova_Billing_Class_Of_Service  T-Systems-Nova-Billing-Class-Of-Service
        String
    radius.T_Systems_Nova_Billing_Class_Of_Service.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Billing-Class-Of-Service Length
    radius.T_Systems_Nova_Location_ID  T-Systems-Nova-Location-ID
        String
    radius.T_Systems_Nova_Location_ID.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Location-ID Length
    radius.T_Systems_Nova_Location_Name  T-Systems-Nova-Location-Name
        String
    radius.T_Systems_Nova_Location_Name.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Location-Name Length
    radius.T_Systems_Nova_Logoff_URL  T-Systems-Nova-Logoff-URL
        String
    radius.T_Systems_Nova_Logoff_URL.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Logoff-URL Length
    radius.T_Systems_Nova_Price_Of_Service  T-Systems-Nova-Price-Of-Service
        Unsigned 32-bit integer
    radius.T_Systems_Nova_Price_Of_Service.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Price-Of-Service Length
    radius.T_Systems_Nova_Redirection_URL  T-Systems-Nova-Redirection-URL
        String
    radius.T_Systems_Nova_Redirection_URL.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Redirection-URL Length
    radius.T_Systems_Nova_Service_Name  T-Systems-Nova-Service-Name
        String
    radius.T_Systems_Nova_Service_Name.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Service-Name Length
    radius.T_Systems_Nova_Session_Terminate_EoD  T-Systems-Nova-Session-Terminate-EoD
        Unsigned 32-bit integer
    radius.T_Systems_Nova_Session_Terminate_EoD.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Session-Terminate-EoD Length
    radius.T_Systems_Nova_Session_Terminate_Time  T-Systems-Nova-Session-Terminate-Time
        Unsigned 32-bit integer
    radius.T_Systems_Nova_Session_Terminate_Time.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Session-Terminate-Time Length
    radius.T_Systems_Nova_UnknownAVP  T-Systems-Nova-UnknownAVP
        String
    radius.T_Systems_Nova_UnknownAVP.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-UnknownAVP Length
    radius.T_Systems_Nova_Visiting_Provider_Code  T-Systems-Nova-Visiting-Provider-Code
        String
    radius.T_Systems_Nova_Visiting_Provider_Code.len  Length
        Unsigned 8-bit integer
        T-Systems-Nova-Visiting-Provider-Code Length
    radius.Telebit_Accounting_Info  Telebit-Accounting-Info
        String
    radius.Telebit_Accounting_Info.len  Length
        Unsigned 8-bit integer
        Telebit-Accounting-Info Length
    radius.Telebit_Activate_Command  Telebit-Activate-Command
        String
    radius.Telebit_Activate_Command.len  Length
        Unsigned 8-bit integer
        Telebit-Activate-Command Length
    radius.Telebit_Login_Command  Telebit-Login-Command
        String
    radius.Telebit_Login_Command.len  Length
        Unsigned 8-bit integer
        Telebit-Login-Command Length
    radius.Telebit_Port_Name  Telebit-Port-Name
        String
    radius.Telebit_Port_Name.len  Length
        Unsigned 8-bit integer
        Telebit-Port-Name Length
    radius.Termination_Action  Termination-Action
        Unsigned 32-bit integer
    radius.Termination_Action.len  Length
        Unsigned 8-bit integer
        Termination-Action Length
    radius.Trapeze_Encryption_Type  Trapeze-Encryption-Type
        String
    radius.Trapeze_Encryption_Type.len  Length
        Unsigned 8-bit integer
        Trapeze-Encryption-Type Length
    radius.Trapeze_End_Date  Trapeze-End-Date
        String
    radius.Trapeze_End_Date.len  Length
        Unsigned 8-bit integer
        Trapeze-End-Date Length
    radius.Trapeze_Mobility_Profile  Trapeze-Mobility-Profile
        String
    radius.Trapeze_Mobility_Profile.len  Length
        Unsigned 8-bit integer
        Trapeze-Mobility-Profile Length
    radius.Trapeze_SSID  Trapeze-SSID
        String
    radius.Trapeze_SSID.len  Length
        Unsigned 8-bit integer
        Trapeze-SSID Length
    radius.Trapeze_Start_Date  Trapeze-Start-Date
        String
    radius.Trapeze_Start_Date.len  Length
        Unsigned 8-bit integer
        Trapeze-Start-Date Length
    radius.Trapeze_Time_Of_Day  Trapeze-Time-Of-Day
        String
    radius.Trapeze_Time_Of_Day.len  Length
        Unsigned 8-bit integer
        Trapeze-Time-Of-Day Length
    radius.Trapeze_URL  Trapeze-URL
        String
    radius.Trapeze_URL.len  Length
        Unsigned 8-bit integer
        Trapeze-URL Length
    radius.Trapeze_VLAN_Name  Trapeze-VLAN-Name
        String
    radius.Trapeze_VLAN_Name.len  Length
        Unsigned 8-bit integer
        Trapeze-VLAN-Name Length
    radius.Tropos_Average_RSSI  Tropos-Average-RSSI
        Unsigned 32-bit integer
    radius.Tropos_Average_RSSI.len  Length
        Unsigned 8-bit integer
        Tropos-Average-RSSI Length
    radius.Tropos_Capability_Info  Tropos-Capability-Info
        Byte array
    radius.Tropos_Capability_Info.len  Length
        Unsigned 8-bit integer
        Tropos-Capability-Info Length
    radius.Tropos_Cell_Location  Tropos-Cell-Location
        String
    radius.Tropos_Cell_Location.len  Length
        Unsigned 8-bit integer
        Tropos-Cell-Location Length
    radius.Tropos_Cell_Name  Tropos-Cell-Name
        String
    radius.Tropos_Cell_Name.len  Length
        Unsigned 8-bit integer
        Tropos-Cell-Name Length
    radius.Tropos_Channel  Tropos-Channel
        Byte array
    radius.Tropos_Channel.len  Length
        Unsigned 8-bit integer
        Tropos-Channel Length
    radius.Tropos_Class_Mult  Tropos-Class-Mult
        Unsigned 32-bit integer
    radius.Tropos_Class_Mult.len  Length
        Unsigned 8-bit integer
        Tropos-Class-Mult Length
    radius.Tropos_Input_Cap  Tropos-Input-Cap
        Unsigned 32-bit integer
    radius.Tropos_Input_Cap.len  Length
        Unsigned 8-bit integer
        Tropos-Input-Cap Length
    radius.Tropos_Latitude  Tropos-Latitude
        String
    radius.Tropos_Latitude.len  Length
        Unsigned 8-bit integer
        Tropos-Latitude Length
    radius.Tropos_Layer2_Input_Drops  Tropos-Layer2-Input-Drops
        Unsigned 32-bit integer
    radius.Tropos_Layer2_Input_Drops.len  Length
        Unsigned 8-bit integer
        Tropos-Layer2-Input-Drops Length
    radius.Tropos_Layer2_Input_Frames  Tropos-Layer2-Input-Frames
        Unsigned 32-bit integer
    radius.Tropos_Layer2_Input_Frames.len  Length
        Unsigned 8-bit integer
        Tropos-Layer2-Input-Frames Length
    radius.Tropos_Layer2_Input_Octets  Tropos-Layer2-Input-Octets
        Unsigned 32-bit integer
    radius.Tropos_Layer2_Input_Octets.len  Length
        Unsigned 8-bit integer
        Tropos-Layer2-Input-Octets Length
    radius.Tropos_Layer2_Output_Frames  Tropos-Layer2-Output-Frames
        Unsigned 32-bit integer
    radius.Tropos_Layer2_Output_Frames.len  Length
        Unsigned 8-bit integer
        Tropos-Layer2-Output-Frames Length
    radius.Tropos_Layer2_Output_Octets  Tropos-Layer2-Output-Octets
        Unsigned 32-bit integer
    radius.Tropos_Layer2_Output_Octets.len  Length
        Unsigned 8-bit integer
        Tropos-Layer2-Output-Octets Length
    radius.Tropos_Longitude  Tropos-Longitude
        String
    radius.Tropos_Longitude.len  Length
        Unsigned 8-bit integer
        Tropos-Longitude Length
    radius.Tropos_Noise_Floor  Tropos-Noise-Floor
        Byte array
    radius.Tropos_Noise_Floor.len  Length
        Unsigned 8-bit integer
        Tropos-Noise-Floor Length
    radius.Tropos_Noise_Upper_Bound  Tropos-Noise-Upper-Bound
        Byte array
    radius.Tropos_Noise_Upper_Bound.len  Length
        Unsigned 8-bit integer
        Tropos-Noise-Upper-Bound Length
    radius.Tropos_Output_Cap  Tropos-Output-Cap
        Unsigned 32-bit integer
    radius.Tropos_Output_Cap.len  Length
        Unsigned 8-bit integer
        Tropos-Output-Cap Length
    radius.Tropos_Rates_Received  Tropos-Rates-Received
        Byte array
    radius.Tropos_Rates_Received.len  Length
        Unsigned 8-bit integer
        Tropos-Rates-Received Length
    radius.Tropos_Rates_Sent  Tropos-Rates-Sent
        Byte array
    radius.Tropos_Rates_Sent.len  Length
        Unsigned 8-bit integer
        Tropos-Rates-Sent Length
    radius.Tropos_Release  Tropos-Release
        String
    radius.Tropos_Release.len  Length
        Unsigned 8-bit integer
        Tropos-Release Length
    radius.Tropos_Retries_Sent  Tropos-Retries-Sent
        Unsigned 32-bit integer
    radius.Tropos_Retries_Sent.len  Length
        Unsigned 8-bit integer
        Tropos-Retries-Sent Length
    radius.Tropos_Retry_Bits  Tropos-Retry-Bits
        Unsigned 32-bit integer
    radius.Tropos_Retry_Bits.len  Length
        Unsigned 8-bit integer
        Tropos-Retry-Bits Length
    radius.Tropos_Routed_Time  Tropos-Routed-Time
        Unsigned 32-bit integer
    radius.Tropos_Routed_Time.len  Length
        Unsigned 8-bit integer
        Tropos-Routed-Time Length
    radius.Tropos_Routless_Since  Tropos-Routless-Since
        Unsigned 32-bit integer
    radius.Tropos_Routless_Since.len  Length
        Unsigned 8-bit integer
        Tropos-Routless-Since Length
    radius.Tropos_Secondary_IP  Tropos-Secondary-IP
        Byte array
    radius.Tropos_Secondary_IP.len  Length
        Unsigned 8-bit integer
        Tropos-Secondary-IP Length
    radius.Tropos_Serial_Number  Tropos-Serial-Number
        String
    radius.Tropos_Serial_Number.len  Length
        Unsigned 8-bit integer
        Tropos-Serial-Number Length
    radius.Tropos_Terminate_Cause  Tropos-Terminate-Cause
        Unsigned 32-bit integer
    radius.Tropos_Terminate_Cause.len  Length
        Unsigned 8-bit integer
        Tropos-Terminate-Cause Length
    radius.Tropos_Unicast_Cipher  Tropos-Unicast-Cipher
        Unsigned 32-bit integer
    radius.Tropos_Unicast_Cipher.len  Length
        Unsigned 8-bit integer
        Tropos-Unicast-Cipher Length
    radius.Tunnel_Algorithm  Tunnel-Algorithm
        Unsigned 32-bit integer
    radius.Tunnel_Algorithm.len  Length
        Unsigned 8-bit integer
        Tunnel-Algorithm Length
    radius.Tunnel_Assignment_Id  Tunnel-Assignment-Id
        String
    radius.Tunnel_Assignment_Id.len  Length
        Unsigned 8-bit integer
        Tunnel-Assignment-Id Length
    radius.Tunnel_Assignment_Id.tag  Tag
        Unsigned 8-bit integer
        Tunnel-Assignment-Id Tag
    radius.Tunnel_Checksum  Tunnel-Checksum
        Unsigned 32-bit integer
    radius.Tunnel_Checksum.len  Length
        Unsigned 8-bit integer
        Tunnel-Checksum Length
    radius.Tunnel_Client_Auth_Id  Tunnel-Client-Auth-Id
        String
    radius.Tunnel_Client_Auth_Id.len  Length
        Unsigned 8-bit integer
        Tunnel-Client-Auth-Id Length
    radius.Tunnel_Client_Auth_Id.tag  Tag
        Unsigned 8-bit integer
        Tunnel-Client-Auth-Id Tag
    radius.Tunnel_Client_Endpoint  Tunnel-Client-Endpoint
        String
    radius.Tunnel_Client_Endpoint.len  Length
        Unsigned 8-bit integer
        Tunnel-Client-Endpoint Length
    radius.Tunnel_Client_Endpoint.tag  Tag
        Unsigned 8-bit integer
        Tunnel-Client-Endpoint Tag
    radius.Tunnel_Client_Int_Addr  Tunnel-Client-Int-Addr
        IPv4 address
    radius.Tunnel_Client_Int_Addr.len  Length
        Unsigned 8-bit integer
        Tunnel-Client-Int-Addr Length
    radius.Tunnel_Client_Rhost  Tunnel-Client-Rhost
        String
    radius.Tunnel_Client_Rhost.len  Length
        Unsigned 8-bit integer
        Tunnel-Client-Rhost Length
    radius.Tunnel_Client_VPN  Tunnel-Client-VPN
        String
    radius.Tunnel_Client_VPN.len  Length
        Unsigned 8-bit integer
        Tunnel-Client-VPN Length
    radius.Tunnel_Cmd_Timeout  Tunnel-Cmd-Timeout
        Unsigned 32-bit integer
    radius.Tunnel_Cmd_Timeout.len  Length
        Unsigned 8-bit integer
        Tunnel-Cmd-Timeout Length
    radius.Tunnel_Context  Tunnel-Context
        String
    radius.Tunnel_Context.len  Length
        Unsigned 8-bit integer
        Tunnel-Context Length
    radius.Tunnel_DNIS  Tunnel-DNIS
        Unsigned 32-bit integer
    radius.Tunnel_DNIS.len  Length
        Unsigned 8-bit integer
        Tunnel-DNIS Length
    radius.Tunnel_Deadtime  Tunnel-Deadtime
        Unsigned 32-bit integer
    radius.Tunnel_Deadtime.len  Length
        Unsigned 8-bit integer
        Tunnel-Deadtime Length
    radius.Tunnel_Domain  Tunnel-Domain
        Unsigned 32-bit integer
    radius.Tunnel_Domain.len  Length
        Unsigned 8-bit integer
        Tunnel-Domain Length
    radius.Tunnel_Function  Tunnel-Function
        Unsigned 32-bit integer
    radius.Tunnel_Function.len  Length
        Unsigned 8-bit integer
        Tunnel-Function Length
    radius.Tunnel_Group  Tunnel-Group
        Unsigned 32-bit integer
    radius.Tunnel_Group.len  Length
        Unsigned 8-bit integer
        Tunnel-Group Length
    radius.Tunnel_L2F_Second_Password  Tunnel-L2F-Second-Password
        String
    radius.Tunnel_L2F_Second_Password.len  Length
        Unsigned 8-bit integer
        Tunnel-L2F-Second-Password Length
    radius.Tunnel_Local_Name  Tunnel-Local-Name
        String
    radius.Tunnel_Local_Name.len  Length
        Unsigned 8-bit integer
        Tunnel-Local-Name Length
    radius.Tunnel_Max_Sessions  Tunnel-Max-Sessions
        Unsigned 32-bit integer
    radius.Tunnel_Max_Sessions.len  Length
        Unsigned 8-bit integer
        Tunnel-Max-Sessions Length
    radius.Tunnel_Max_Tunnels  Tunnel-Max-Tunnels
        Unsigned 32-bit integer
    radius.Tunnel_Max_Tunnels.len  Length
        Unsigned 8-bit integer
        Tunnel-Max-Tunnels Length
    radius.Tunnel_Medium_Type  Tunnel-Medium-Type
        Unsigned 32-bit integer
    radius.Tunnel_Medium_Type.len  Length
        Unsigned 8-bit integer
        Tunnel-Medium-Type Length
    radius.Tunnel_Medium_Type.tag  Tag
        Unsigned 8-bit integer
        Tunnel-Medium-Type Tag
    radius.Tunnel_Password  Tunnel-Password
        String
    radius.Tunnel_Password.len  Length
        Unsigned 8-bit integer
        Tunnel-Password Length
    radius.Tunnel_Password.tag  Tag
        Unsigned 8-bit integer
        Tunnel-Password Tag
    radius.Tunnel_Police_Burst  Tunnel-Police-Burst
        Unsigned 32-bit integer
    radius.Tunnel_Police_Burst.len  Length
        Unsigned 8-bit integer
        Tunnel-Police-Burst Length
    radius.Tunnel_Police_Excess_Burst  Tunnel-Police-Excess-Burst
        Byte array
    radius.Tunnel_Police_Excess_Burst.len  Length
        Unsigned 8-bit integer
        Tunnel-Police-Excess-Burst Length
    radius.Tunnel_Police_Rate  Tunnel-Police-Rate
        Unsigned 32-bit integer
    radius.Tunnel_Police_Rate.len  Length
        Unsigned 8-bit integer
        Tunnel-Police-Rate Length
    radius.Tunnel_Preference  Tunnel-Preference
        Unsigned 32-bit integer
    radius.Tunnel_Preference.len  Length
        Unsigned 8-bit integer
        Tunnel-Preference Length
    radius.Tunnel_Preference.tag  Tag
        Unsigned 8-bit integer
        Tunnel-Preference Tag
    radius.Tunnel_Private_Group_Id  Tunnel-Private-Group-Id
        String
    radius.Tunnel_Private_Group_Id.len  Length
        Unsigned 8-bit integer
        Tunnel-Private-Group-Id Length
    radius.Tunnel_Private_Group_Id.tag  Tag
        Unsigned 8-bit integer
        Tunnel-Private-Group-Id Tag
    radius.Tunnel_Profile  Tunnel-Profile
        String
    radius.Tunnel_Profile.len  Length
        Unsigned 8-bit integer
        Tunnel-Profile Length
    radius.Tunnel_Rate_Limit_Burst  Tunnel-Rate-Limit-Burst
        Unsigned 32-bit integer
    radius.Tunnel_Rate_Limit_Burst.len  Length
        Unsigned 8-bit integer
        Tunnel-Rate-Limit-Burst Length
    radius.Tunnel_Rate_Limit_Excess_Burst  Tunnel-Rate-Limit-Excess-Burst
        Byte array
    radius.Tunnel_Rate_Limit_Excess_Burst.len  Length
        Unsigned 8-bit integer
        Tunnel-Rate-Limit-Excess-Burst Length
    radius.Tunnel_Rate_Limit_Rate  Tunnel-Rate-Limit-Rate
        Unsigned 32-bit integer
    radius.Tunnel_Rate_Limit_Rate.len  Length
        Unsigned 8-bit integer
        Tunnel-Rate-Limit-Rate Length
    radius.Tunnel_Remote_Name  Tunnel-Remote-Name
        String
    radius.Tunnel_Remote_Name.len  Length
        Unsigned 8-bit integer
        Tunnel-Remote-Name Length
    radius.Tunnel_Retransmit  Tunnel-Retransmit
        Unsigned 32-bit integer
    radius.Tunnel_Retransmit.len  Length
        Unsigned 8-bit integer
        Tunnel-Retransmit Length
    radius.Tunnel_Server_Auth_Id  Tunnel-Server-Auth-Id
        String
    radius.Tunnel_Server_Auth_Id.len  Length
        Unsigned 8-bit integer
        Tunnel-Server-Auth-Id Length
    radius.Tunnel_Server_Auth_Id.tag  Tag
        Unsigned 8-bit integer
        Tunnel-Server-Auth-Id Tag
    radius.Tunnel_Server_Endpoint  Tunnel-Server-Endpoint
        String
    radius.Tunnel_Server_Endpoint.len  Length
        Unsigned 8-bit integer
        Tunnel-Server-Endpoint Length
    radius.Tunnel_Server_Endpoint.tag  Tag
        Unsigned 8-bit integer
        Tunnel-Server-Endpoint Tag
    radius.Tunnel_Server_Int_Addr  Tunnel-Server-Int-Addr
        IPv4 address
    radius.Tunnel_Server_Int_Addr.len  Length
        Unsigned 8-bit integer
        Tunnel-Server-Int-Addr Length
    radius.Tunnel_Server_Rhost  Tunnel-Server-Rhost
        String
    radius.Tunnel_Server_Rhost.len  Length
        Unsigned 8-bit integer
        Tunnel-Server-Rhost Length
    radius.Tunnel_Server_VPN  Tunnel-Server-VPN
        String
    radius.Tunnel_Server_VPN.len  Length
        Unsigned 8-bit integer
        Tunnel-Server-VPN Length
    radius.Tunnel_Session_Auth  Tunnel-Session-Auth
        Unsigned 32-bit integer
    radius.Tunnel_Session_Auth.len  Length
        Unsigned 8-bit integer
        Tunnel-Session-Auth Length
    radius.Tunnel_Session_Auth_Ctx  Tunnel-Session-Auth-Ctx
        String
    radius.Tunnel_Session_Auth_Ctx.len  Length
        Unsigned 8-bit integer
        Tunnel-Session-Auth-Ctx Length
    radius.Tunnel_Session_Auth_Service_Grp  Tunnel-Session-Auth-Service-Grp
        String
    radius.Tunnel_Session_Auth_Service_Grp.len  Length
        Unsigned 8-bit integer
        Tunnel-Session-Auth-Service-Grp Length
    radius.Tunnel_Type  Tunnel-Type
        Unsigned 32-bit integer
    radius.Tunnel_Type.len  Length
        Unsigned 8-bit integer
        Tunnel-Type Length
    radius.Tunnel_Type.tag  Tag
        Unsigned 8-bit integer
        Tunnel-Type Tag
    radius.Tunnel_Window  Tunnel-Window
        Unsigned 32-bit integer
    radius.Tunnel_Window.len  Length
        Unsigned 8-bit integer
        Tunnel-Window Length
    radius.USR_ACCM_Type  USR-ACCM-Type
        Unsigned 32-bit integer
    radius.USR_ACCM_Type.len  Length
        Unsigned 8-bit integer
        USR-ACCM-Type Length
    radius.USR_AT_Call_Input_Filter  USR-AT-Call-Input-Filter
        String
    radius.USR_AT_Call_Input_Filter.len  Length
        Unsigned 8-bit integer
        USR-AT-Call-Input-Filter Length
    radius.USR_AT_Call_Output_Filter  USR-AT-Call-Output-Filter
        String
    radius.USR_AT_Call_Output_Filter.len  Length
        Unsigned 8-bit integer
        USR-AT-Call-Output-Filter Length
    radius.USR_AT_Input_Filter  USR-AT-Input-Filter
        String
    radius.USR_AT_Input_Filter.len  Length
        Unsigned 8-bit integer
        USR-AT-Input-Filter Length
    radius.USR_AT_Output_Filter  USR-AT-Output-Filter
        String
    radius.USR_AT_Output_Filter.len  Length
        Unsigned 8-bit integer
        USR-AT-Output-Filter Length
    radius.USR_AT_RTMP_Input_Filter  USR-AT-RTMP-Input-Filter
        String
    radius.USR_AT_RTMP_Input_Filter.len  Length
        Unsigned 8-bit integer
        USR-AT-RTMP-Input-Filter Length
    radius.USR_AT_RTMP_Output_Filter  USR-AT-RTMP-Output-Filter
        String
    radius.USR_AT_RTMP_Output_Filter.len  Length
        Unsigned 8-bit integer
        USR-AT-RTMP-Output-Filter Length
    radius.USR_AT_Zip_Input_Filter  USR-AT-Zip-Input-Filter
        String
    radius.USR_AT_Zip_Input_Filter.len  Length
        Unsigned 8-bit integer
        USR-AT-Zip-Input-Filter Length
    radius.USR_AT_Zip_Output_Filter  USR-AT-Zip-Output-Filter
        String
    radius.USR_AT_Zip_Output_Filter.len  Length
        Unsigned 8-bit integer
        USR-AT-Zip-Output-Filter Length
    radius.USR_Acct_Reason_Code  USR-Acct-Reason-Code
        Unsigned 32-bit integer
    radius.USR_Acct_Reason_Code.len  Length
        Unsigned 8-bit integer
        USR-Acct-Reason-Code Length
    radius.USR_Actual_Voltage  USR-Actual-Voltage
        Unsigned 32-bit integer
    radius.USR_Actual_Voltage.len  Length
        Unsigned 8-bit integer
        USR-Actual-Voltage Length
    radius.USR_Agent  USR-Agent
        Unsigned 32-bit integer
    radius.USR_Agent.len  Length
        Unsigned 8-bit integer
        USR-Agent Length
    radius.USR_Appletalk  USR-Appletalk
        Unsigned 32-bit integer
    radius.USR_Appletalk.len  Length
        Unsigned 8-bit integer
        USR-Appletalk Length
    radius.USR_Appletalk_Network_Range  USR-Appletalk-Network-Range
        Unsigned 32-bit integer
    radius.USR_Appletalk_Network_Range.len  Length
        Unsigned 8-bit integer
        USR-Appletalk-Network-Range Length
    radius.USR_Auth_Mode  USR-Auth-Mode
        Unsigned 32-bit integer
    radius.USR_Auth_Mode.len  Length
        Unsigned 8-bit integer
        USR-Auth-Mode Length
    radius.USR_Auth_Next_Server_Address  USR-Auth-Next-Server-Address
        IPv4 address
    radius.USR_Auth_Next_Server_Address.len  Length
        Unsigned 8-bit integer
        USR-Auth-Next-Server-Address Length
    radius.USR_Back_Channel_Data_Rate  USR-Back-Channel-Data-Rate
        Unsigned 32-bit integer
    radius.USR_Back_Channel_Data_Rate.len  Length
        Unsigned 8-bit integer
        USR-Back-Channel-Data-Rate Length
    radius.USR_Bearer_Capabilities  USR-Bearer-Capabilities
        Unsigned 32-bit integer
    radius.USR_Bearer_Capabilities.len  Length
        Unsigned 8-bit integer
        USR-Bearer-Capabilities Length
    radius.USR_Block_Error_Count_Limit  USR-Block-Error-Count-Limit
        Unsigned 32-bit integer
    radius.USR_Block_Error_Count_Limit.len  Length
        Unsigned 8-bit integer
        USR-Block-Error-Count-Limit Length
    radius.USR_Blocks_Received  USR-Blocks-Received
        Unsigned 32-bit integer
    radius.USR_Blocks_Received.len  Length
        Unsigned 8-bit integer
        USR-Blocks-Received Length
    radius.USR_Blocks_Resent  USR-Blocks-Resent
        Unsigned 32-bit integer
    radius.USR_Blocks_Resent.len  Length
        Unsigned 8-bit integer
        USR-Blocks-Resent Length
    radius.USR_Blocks_Sent  USR-Blocks-Sent
        Unsigned 32-bit integer
    radius.USR_Blocks_Sent.len  Length
        Unsigned 8-bit integer
        USR-Blocks-Sent Length
    radius.USR_Bridging  USR-Bridging
        Unsigned 32-bit integer
    radius.USR_Bridging.len  Length
        Unsigned 8-bit integer
        USR-Bridging Length
    radius.USR_Bytes_RX_Remain  USR-Bytes-RX-Remain
        Unsigned 32-bit integer
    radius.USR_Bytes_RX_Remain.len  Length
        Unsigned 8-bit integer
        USR-Bytes-RX-Remain Length
    radius.USR_Bytes_TX_Remain  USR-Bytes-TX-Remain
        Unsigned 32-bit integer
    radius.USR_Bytes_TX_Remain.len  Length
        Unsigned 8-bit integer
        USR-Bytes-TX-Remain Length
    radius.USR_CCP_Algorithm  USR-CCP-Algorithm
        Unsigned 32-bit integer
    radius.USR_CCP_Algorithm.len  Length
        Unsigned 8-bit integer
        USR-CCP-Algorithm Length
    radius.USR_CDMA_Call_Reference_Number  USR-CDMA-Call-Reference-Number
        Unsigned 32-bit integer
    radius.USR_CDMA_Call_Reference_Number.len  Length
        Unsigned 8-bit integer
        USR-CDMA-Call-Reference-Number Length
    radius.USR_CDMA_PktData_Network_ID  USR-CDMA-PktData-Network-ID
        Unsigned 32-bit integer
    radius.USR_CDMA_PktData_Network_ID.len  Length
        Unsigned 8-bit integer
        USR-CDMA-PktData-Network-ID Length
    radius.USR_CUSR_hat_Script_Rules  USR-CUSR-hat-Script-Rules
        String
    radius.USR_CUSR_hat_Script_Rules.len  Length
        Unsigned 8-bit integer
        USR-CUSR-hat-Script-Rules Length
    radius.USR_Call_Arrival_Time  USR-Call-Arrival-Time
        Unsigned 32-bit integer
    radius.USR_Call_Arrival_Time.len  Length
        Unsigned 8-bit integer
        USR-Call-Arrival-Time Length
    radius.USR_Call_Arrival_in_GMT  USR-Call-Arrival-in-GMT
        Date/Time stamp
    radius.USR_Call_Arrival_in_GMT.len  Length
        Unsigned 8-bit integer
        USR-Call-Arrival-in-GMT Length
    radius.USR_Call_Connect_in_GMT  USR-Call-Connect-in-GMT
        Date/Time stamp
    radius.USR_Call_Connect_in_GMT.len  Length
        Unsigned 8-bit integer
        USR-Call-Connect-in-GMT Length
    radius.USR_Call_Connecting_Time  USR-Call-Connecting-Time
        Unsigned 32-bit integer
    radius.USR_Call_Connecting_Time.len  Length
        Unsigned 8-bit integer
        USR-Call-Connecting-Time Length
    radius.USR_Call_End_Date_Time  USR-Call-End-Date-Time
        Date/Time stamp
    radius.USR_Call_End_Date_Time.len  Length
        Unsigned 8-bit integer
        USR-Call-End-Date-Time Length
    radius.USR_Call_End_Time  USR-Call-End-Time
        Unsigned 32-bit integer
    radius.USR_Call_End_Time.len  Length
        Unsigned 8-bit integer
        USR-Call-End-Time Length
    radius.USR_Call_Error_Code  USR-Call-Error-Code
        Unsigned 32-bit integer
    radius.USR_Call_Error_Code.len  Length
        Unsigned 8-bit integer
        USR-Call-Error-Code Length
    radius.USR_Call_Event_Code  USR-Call-Event-Code
        Unsigned 32-bit integer
    radius.USR_Call_Event_Code.len  Length
        Unsigned 8-bit integer
        USR-Call-Event-Code Length
    radius.USR_Call_Reference_Number  USR-Call-Reference-Number
        Unsigned 32-bit integer
    radius.USR_Call_Reference_Number.len  Length
        Unsigned 8-bit integer
        USR-Call-Reference-Number Length
    radius.USR_Call_Start_Date_Time  USR-Call-Start-Date-Time
        Date/Time stamp
    radius.USR_Call_Start_Date_Time.len  Length
        Unsigned 8-bit integer
        USR-Call-Start-Date-Time Length
    radius.USR_Call_Terminate_in_GMT  USR-Call-Terminate-in-GMT
        Date/Time stamp
    radius.USR_Call_Terminate_in_GMT.len  Length
        Unsigned 8-bit integer
        USR-Call-Terminate-in-GMT Length
    radius.USR_Call_Type  USR-Call-Type
        Unsigned 32-bit integer
    radius.USR_Call_Type.len  Length
        Unsigned 8-bit integer
        USR-Call-Type Length
    radius.USR_Callback_Type  USR-Callback-Type
        Unsigned 32-bit integer
    radius.USR_Callback_Type.len  Length
        Unsigned 8-bit integer
        USR-Callback-Type Length
    radius.USR_Called_Party_Number  USR-Called-Party-Number
        String
    radius.USR_Called_Party_Number.len  Length
        Unsigned 8-bit integer
        USR-Called-Party-Number Length
    radius.USR_Calling_Party_Number  USR-Calling-Party-Number
        String
    radius.USR_Calling_Party_Number.len  Length
        Unsigned 8-bit integer
        USR-Calling-Party-Number Length
    radius.USR_Card_Type  USR-Card-Type
        Unsigned 32-bit integer
    radius.USR_Card_Type.len  Length
        Unsigned 8-bit integer
        USR-Card-Type Length
    radius.USR_Channel  USR-Channel
        Unsigned 32-bit integer
    radius.USR_Channel.len  Length
        Unsigned 8-bit integer
        USR-Channel Length
    radius.USR_Channel_Connected_To  USR-Channel-Connected-To
        Unsigned 32-bit integer
    radius.USR_Channel_Connected_To.len  Length
        Unsigned 8-bit integer
        USR-Channel-Connected-To Length
    radius.USR_Channel_Decrement  USR-Channel-Decrement
        Unsigned 32-bit integer
    radius.USR_Channel_Decrement.len  Length
        Unsigned 8-bit integer
        USR-Channel-Decrement Length
    radius.USR_Channel_Expansion  USR-Channel-Expansion
        Unsigned 32-bit integer
    radius.USR_Channel_Expansion.len  Length
        Unsigned 8-bit integer
        USR-Channel-Expansion Length
    radius.USR_Characters_Received  USR-Characters-Received
        Unsigned 32-bit integer
    radius.USR_Characters_Received.len  Length
        Unsigned 8-bit integer
        USR-Characters-Received Length
    radius.USR_Characters_Sent  USR-Characters-Sent
        Unsigned 32-bit integer
    radius.USR_Characters_Sent.len  Length
        Unsigned 8-bit integer
        USR-Characters-Sent Length
    radius.USR_Chassis_Call_Channel  USR-Chassis-Call-Channel
        Unsigned 32-bit integer
    radius.USR_Chassis_Call_Channel.len  Length
        Unsigned 8-bit integer
        USR-Chassis-Call-Channel Length
    radius.USR_Chassis_Call_Slot  USR-Chassis-Call-Slot
        Unsigned 32-bit integer
    radius.USR_Chassis_Call_Slot.len  Length
        Unsigned 8-bit integer
        USR-Chassis-Call-Slot Length
    radius.USR_Chassis_Call_Span  USR-Chassis-Call-Span
        Unsigned 32-bit integer
    radius.USR_Chassis_Call_Span.len  Length
        Unsigned 8-bit integer
        USR-Chassis-Call-Span Length
    radius.USR_Chassis_Slot  USR-Chassis-Slot
        Unsigned 32-bit integer
    radius.USR_Chassis_Slot.len  Length
        Unsigned 8-bit integer
        USR-Chassis-Slot Length
    radius.USR_Chassis_Temp_Threshold  USR-Chassis-Temp-Threshold
        Unsigned 32-bit integer
    radius.USR_Chassis_Temp_Threshold.len  Length
        Unsigned 8-bit integer
        USR-Chassis-Temp-Threshold Length
    radius.USR_Chassis_Temperature  USR-Chassis-Temperature
        Unsigned 32-bit integer
    radius.USR_Chassis_Temperature.len  Length
        Unsigned 8-bit integer
        USR-Chassis-Temperature Length
    radius.USR_Chat_Script_Name  USR-Chat-Script-Name
        String
    radius.USR_Chat_Script_Name.len  Length
        Unsigned 8-bit integer
        USR-Chat-Script-Name Length
    radius.USR_Compression_Algorithm  USR-Compression-Algorithm
        Unsigned 32-bit integer
    radius.USR_Compression_Algorithm.len  Length
        Unsigned 8-bit integer
        USR-Compression-Algorithm Length
    radius.USR_Compression_Reset_Mode  USR-Compression-Reset-Mode
        Unsigned 32-bit integer
    radius.USR_Compression_Reset_Mode.len  Length
        Unsigned 8-bit integer
        USR-Compression-Reset-Mode Length
    radius.USR_Compression_Type  USR-Compression-Type
        Unsigned 32-bit integer
    radius.USR_Compression_Type.len  Length
        Unsigned 8-bit integer
        USR-Compression-Type Length
    radius.USR_Connect_Speed  USR-Connect-Speed
        Unsigned 32-bit integer
    radius.USR_Connect_Speed.len  Length
        Unsigned 8-bit integer
        USR-Connect-Speed Length
    radius.USR_Connect_Term_Reason  USR-Connect-Term-Reason
        Unsigned 32-bit integer
    radius.USR_Connect_Term_Reason.len  Length
        Unsigned 8-bit integer
        USR-Connect-Term-Reason Length
    radius.USR_Connect_Time  USR-Connect-Time
        Unsigned 32-bit integer
    radius.USR_Connect_Time.len  Length
        Unsigned 8-bit integer
        USR-Connect-Time Length
    radius.USR_Connect_Time_Limit  USR-Connect-Time-Limit
        Unsigned 32-bit integer
    radius.USR_Connect_Time_Limit.len  Length
        Unsigned 8-bit integer
        USR-Connect-Time-Limit Length
    radius.USR_DNIS_ReAuthentication  USR-DNIS-ReAuthentication
        Unsigned 32-bit integer
    radius.USR_DNIS_ReAuthentication.len  Length
        Unsigned 8-bit integer
        USR-DNIS-ReAuthentication Length
    radius.USR_DS0  USR-DS0
        Unsigned 32-bit integer
    radius.USR_DS0.len  Length
        Unsigned 8-bit integer
        USR-DS0 Length
    radius.USR_DS0s  USR-DS0s
        String
    radius.USR_DS0s.len  Length
        Unsigned 8-bit integer
        USR-DS0s Length
    radius.USR_DTE_Data_Idle_Timout  USR-DTE-Data-Idle-Timout
        Unsigned 32-bit integer
    radius.USR_DTE_Data_Idle_Timout.len  Length
        Unsigned 8-bit integer
        USR-DTE-Data-Idle-Timout Length
    radius.USR_DTE_Ring_No_Answer_Limit  USR-DTE-Ring-No-Answer-Limit
        Unsigned 32-bit integer
    radius.USR_DTE_Ring_No_Answer_Limit.len  Length
        Unsigned 8-bit integer
        USR-DTE-Ring-No-Answer-Limit Length
    radius.USR_DTR_False_Timeout  USR-DTR-False-Timeout
        Unsigned 32-bit integer
    radius.USR_DTR_False_Timeout.len  Length
        Unsigned 8-bit integer
        USR-DTR-False-Timeout Length
    radius.USR_DTR_True_Timeout  USR-DTR-True-Timeout
        Unsigned 32-bit integer
    radius.USR_DTR_True_Timeout.len  Length
        Unsigned 8-bit integer
        USR-DTR-True-Timeout Length
    radius.USR_Default_DTE_Data_Rate  USR-Default-DTE-Data-Rate
        Unsigned 32-bit integer
    radius.USR_Default_DTE_Data_Rate.len  Length
        Unsigned 8-bit integer
        USR-Default-DTE-Data-Rate Length
    radius.USR_Device_Connected_To  USR-Device-Connected-To
        Unsigned 32-bit integer
    radius.USR_Device_Connected_To.len  Length
        Unsigned 8-bit integer
        USR-Device-Connected-To Length
    radius.USR_Disconnect_Cause_Indicator  USR-Disconnect-Cause-Indicator
        Unsigned 32-bit integer
    radius.USR_Disconnect_Cause_Indicator.len  Length
        Unsigned 8-bit integer
        USR-Disconnect-Cause-Indicator Length
    radius.USR_Dvmrp_Advertised_Metric  USR-Dvmrp-Advertised-Metric
        Unsigned 32-bit integer
    radius.USR_Dvmrp_Advertised_Metric.len  Length
        Unsigned 8-bit integer
        USR-Dvmrp-Advertised-Metric Length
    radius.USR_Dvmrp_Initial_Flooding  USR-Dvmrp-Initial-Flooding
        Unsigned 32-bit integer
    radius.USR_Dvmrp_Initial_Flooding.len  Length
        Unsigned 8-bit integer
        USR-Dvmrp-Initial-Flooding Length
    radius.USR_Dvmrp_Input_Filter  USR-Dvmrp-Input-Filter
        String
    radius.USR_Dvmrp_Input_Filter.len  Length
        Unsigned 8-bit integer
        USR-Dvmrp-Input-Filter Length
    radius.USR_Dvmrp_Non_Pruners  USR-Dvmrp-Non-Pruners
        Unsigned 32-bit integer
    radius.USR_Dvmrp_Non_Pruners.len  Length
        Unsigned 8-bit integer
        USR-Dvmrp-Non-Pruners Length
    radius.USR_Dvmrp_Output_Filter  USR-Dvmrp-Output-Filter
        String
    radius.USR_Dvmrp_Output_Filter.len  Length
        Unsigned 8-bit integer
        USR-Dvmrp-Output-Filter Length
    radius.USR_Dvmrp_Prune_Lifetime  USR-Dvmrp-Prune-Lifetime
        Unsigned 32-bit integer
    radius.USR_Dvmrp_Prune_Lifetime.len  Length
        Unsigned 8-bit integer
        USR-Dvmrp-Prune-Lifetime Length
    radius.USR_Dvmrp_Retransmit_Prunes  USR-Dvmrp-Retransmit-Prunes
        Unsigned 32-bit integer
    radius.USR_Dvmrp_Retransmit_Prunes.len  Length
        Unsigned 8-bit integer
        USR-Dvmrp-Retransmit-Prunes Length
    radius.USR_Dvmrp_Route_Transit  USR-Dvmrp-Route-Transit
        Unsigned 32-bit integer
    radius.USR_Dvmrp_Route_Transit.len  Length
        Unsigned 8-bit integer
        USR-Dvmrp-Route-Transit Length
    radius.USR_ESN  USR-ESN
        String
    radius.USR_ESN.len  Length
        Unsigned 8-bit integer
        USR-ESN Length
    radius.USR_ET_Bridge_Call_Output_Filte  USR-ET-Bridge-Call-Output-Filte
        String
    radius.USR_ET_Bridge_Call_Output_Filte.len  Length
        Unsigned 8-bit integer
        USR-ET-Bridge-Call-Output-Filte Length
    radius.USR_ET_Bridge_Input_Filter  USR-ET-Bridge-Input-Filter
        String
    radius.USR_ET_Bridge_Input_Filter.len  Length
        Unsigned 8-bit integer
        USR-ET-Bridge-Input-Filter Length
    radius.USR_ET_Bridge_Output_Filter  USR-ET-Bridge-Output-Filter
        String
    radius.USR_ET_Bridge_Output_Filter.len  Length
        Unsigned 8-bit integer
        USR-ET-Bridge-Output-Filter Length
    radius.USR_End_Time  USR-End-Time
        Unsigned 32-bit integer
    radius.USR_End_Time.len  Length
        Unsigned 8-bit integer
        USR-End-Time Length
    radius.USR_Equalization_Type  USR-Equalization-Type
        Unsigned 32-bit integer
    radius.USR_Equalization_Type.len  Length
        Unsigned 8-bit integer
        USR-Equalization-Type Length
    radius.USR_Event_Date_Time  USR-Event-Date-Time
        Date/Time stamp
    radius.USR_Event_Date_Time.len  Length
        Unsigned 8-bit integer
        USR-Event-Date-Time Length
    radius.USR_Event_Id  USR-Event-Id
        Unsigned 32-bit integer
    radius.USR_Event_Id.len  Length
        Unsigned 8-bit integer
        USR-Event-Id Length
    radius.USR_Expansion_Algorithm  USR-Expansion-Algorithm
        Unsigned 32-bit integer
    radius.USR_Expansion_Algorithm.len  Length
        Unsigned 8-bit integer
        USR-Expansion-Algorithm Length
    radius.USR_Expected_Voltage  USR-Expected-Voltage
        Unsigned 32-bit integer
    radius.USR_Expected_Voltage.len  Length
        Unsigned 8-bit integer
        USR-Expected-Voltage Length
    radius.USR_FQ_Default_Priority  USR-FQ-Default-Priority
        Unsigned 32-bit integer
    radius.USR_FQ_Default_Priority.len  Length
        Unsigned 8-bit integer
        USR-FQ-Default-Priority Length
    radius.USR_Failure_to_Connect_Reason  USR-Failure-to-Connect-Reason
        Unsigned 32-bit integer
    radius.USR_Failure_to_Connect_Reason.len  Length
        Unsigned 8-bit integer
        USR-Failure-to-Connect-Reason Length
    radius.USR_Fallback_Enabled  USR-Fallback-Enabled
        Unsigned 32-bit integer
    radius.USR_Fallback_Enabled.len  Length
        Unsigned 8-bit integer
        USR-Fallback-Enabled Length
    radius.USR_Fallback_Limit  USR-Fallback-Limit
        Unsigned 32-bit integer
    radius.USR_Fallback_Limit.len  Length
        Unsigned 8-bit integer
        USR-Fallback-Limit Length
    radius.USR_Filter_Zones  USR-Filter-Zones
        Unsigned 32-bit integer
    radius.USR_Filter_Zones.len  Length
        Unsigned 8-bit integer
        USR-Filter-Zones Length
    radius.USR_Final_Rx_Link_Data_Rate  USR-Final-Rx-Link-Data-Rate
        Unsigned 32-bit integer
    radius.USR_Final_Rx_Link_Data_Rate.len  Length
        Unsigned 8-bit integer
        USR-Final-Rx-Link-Data-Rate Length
    radius.USR_Final_Tx_Link_Data_Rate  USR-Final-Tx-Link-Data-Rate
        Unsigned 32-bit integer
    radius.USR_Final_Tx_Link_Data_Rate.len  Length
        Unsigned 8-bit integer
        USR-Final-Tx-Link-Data-Rate Length
    radius.USR_Framed_IPX_Route  USR-Framed-IPX-Route
        IPv4 address
    radius.USR_Framed_IPX_Route.len  Length
        Unsigned 8-bit integer
        USR-Framed-IPX-Route Length
    radius.USR_Framed_IP_Address_Pool_Name  USR-Framed_IP_Address_Pool_Name
        String
    radius.USR_Framed_IP_Address_Pool_Name.len  Length
        Unsigned 8-bit integer
        USR-Framed_IP_Address_Pool_Name Length
    radius.USR_Gateway_IP_Address  USR-Gateway-IP-Address
        IPv4 address
    radius.USR_Gateway_IP_Address.len  Length
        Unsigned 8-bit integer
        USR-Gateway-IP-Address Length
    radius.USR_HARC_Disconnect_Code  USR-HARC-Disconnect-Code
        Unsigned 32-bit integer
    radius.USR_HARC_Disconnect_Code.len  Length
        Unsigned 8-bit integer
        USR-HARC-Disconnect-Code Length
    radius.USR_Host_Type  USR-Host-Type
        Unsigned 32-bit integer
    radius.USR_Host_Type.len  Length
        Unsigned 8-bit integer
        USR-Host-Type Length
    radius.USR_IDS0_Call_Type  USR-IDS0-Call-Type
        Unsigned 32-bit integer
    radius.USR_IDS0_Call_Type.len  Length
        Unsigned 8-bit integer
        USR-IDS0-Call-Type Length
    radius.USR_IGMP_Maximum_Response_Time  USR-IGMP-Maximum-Response-Time
        Unsigned 32-bit integer
    radius.USR_IGMP_Maximum_Response_Time.len  Length
        Unsigned 8-bit integer
        USR-IGMP-Maximum-Response-Time Length
    radius.USR_IGMP_Query_Interval  USR-IGMP-Query-Interval
        Unsigned 32-bit integer
    radius.USR_IGMP_Query_Interval.len  Length
        Unsigned 8-bit integer
        USR-IGMP-Query-Interval Length
    radius.USR_IGMP_Robustness  USR-IGMP-Robustness
        Unsigned 32-bit integer
    radius.USR_IGMP_Robustness.len  Length
        Unsigned 8-bit integer
        USR-IGMP-Robustness Length
    radius.USR_IGMP_Routing  USR-IGMP-Routing
        Unsigned 32-bit integer
    radius.USR_IGMP_Routing.len  Length
        Unsigned 8-bit integer
        USR-IGMP-Routing Length
    radius.USR_IGMP_Version  USR-IGMP-Version
        Unsigned 32-bit integer
    radius.USR_IGMP_Version.len  Length
        Unsigned 8-bit integer
        USR-IGMP-Version Length
    radius.USR_IMSI  USR-IMSI
        String
    radius.USR_IMSI.len  Length
        Unsigned 8-bit integer
        USR-IMSI Length
    radius.USR_IP  USR-IP
        Unsigned 32-bit integer
    radius.USR_IP.len  Length
        Unsigned 8-bit integer
        USR-IP Length
    radius.USR_IPP_Enable  USR-IPP-Enable
        Unsigned 32-bit integer
    radius.USR_IPP_Enable.len  Length
        Unsigned 8-bit integer
        USR-IPP-Enable Length
    radius.USR_IPX  USR-IPX
        Unsigned 32-bit integer
    radius.USR_IPX.len  Length
        Unsigned 8-bit integer
        USR-IPX Length
    radius.USR_IPX_Call_Input_Filter  USR-IPX-Call-Input-Filter
        String
    radius.USR_IPX_Call_Input_Filter.len  Length
        Unsigned 8-bit integer
        USR-IPX-Call-Input-Filter Length
    radius.USR_IPX_Call_Output_Filter  USR-IPX-Call-Output-Filter
        String
    radius.USR_IPX_Call_Output_Filter.len  Length
        Unsigned 8-bit integer
        USR-IPX-Call-Output-Filter Length
    radius.USR_IPX_RIP_Input_Filter  USR-IPX-RIP-Input-Filter
        String
    radius.USR_IPX_RIP_Input_Filter.len  Length
        Unsigned 8-bit integer
        USR-IPX-RIP-Input-Filter Length
    radius.USR_IPX_RIP_Output_Filter  USR-IPX-RIP-Output-Filter
        String
    radius.USR_IPX_RIP_Output_Filter.len  Length
        Unsigned 8-bit integer
        USR-IPX-RIP-Output-Filter Length
    radius.USR_IPX_Routing  USR-IPX-Routing
        Unsigned 32-bit integer
    radius.USR_IPX_Routing.len  Length
        Unsigned 8-bit integer
        USR-IPX-Routing Length
    radius.USR_IPX_WAN  USR-IPX-WAN
        Unsigned 32-bit integer
    radius.USR_IPX_WAN.len  Length
        Unsigned 8-bit integer
        USR-IPX-WAN Length
    radius.USR_IP_Call_Input_Filter  USR-IP-Call-Input-Filter
        String
    radius.USR_IP_Call_Input_Filter.len  Length
        Unsigned 8-bit integer
        USR-IP-Call-Input-Filter Length
    radius.USR_IP_Call_Output_Filter  USR-IP-Call-Output-Filter
        String
    radius.USR_IP_Call_Output_Filter.len  Length
        Unsigned 8-bit integer
        USR-IP-Call-Output-Filter Length
    radius.USR_IP_Default_Route_Option  USR-IP-Default-Route-Option
        Unsigned 32-bit integer
    radius.USR_IP_Default_Route_Option.len  Length
        Unsigned 8-bit integer
        USR-IP-Default-Route-Option Length
    radius.USR_IP_RIP_Input_Filter  USR-IP-RIP-Input-Filter
        String
    radius.USR_IP_RIP_Input_Filter.len  Length
        Unsigned 8-bit integer
        USR-IP-RIP-Input-Filter Length
    radius.USR_IP_RIP_Output_Filter  USR-IP-RIP-Output-Filter
        String
    radius.USR_IP_RIP_Output_Filter.len  Length
        Unsigned 8-bit integer
        USR-IP-RIP-Output-Filter Length
    radius.USR_IP_RIP_Policies  USR-IP-RIP-Policies
        Unsigned 32-bit integer
    radius.USR_IP_RIP_Policies.len  Length
        Unsigned 8-bit integer
        USR-IP-RIP-Policies Length
    radius.USR_IP_RIP_Simple_Auth_Password  USR-IP-RIP-Simple-Auth-Password
        String
    radius.USR_IP_RIP_Simple_Auth_Password.len  Length
        Unsigned 8-bit integer
        USR-IP-RIP-Simple-Auth-Password Length
    radius.USR_IP_SAA_Filter  USR-IP-SAA-Filter
        Unsigned 32-bit integer
    radius.USR_IP_SAA_Filter.len  Length
        Unsigned 8-bit integer
        USR-IP-SAA-Filter Length
    radius.USR_IWF_Call_Identifier  USR-IWF-Call-Identifier
        Unsigned 32-bit integer
    radius.USR_IWF_Call_Identifier.len  Length
        Unsigned 8-bit integer
        USR-IWF-Call-Identifier Length
    radius.USR_IWF_IP_Address  USR-IWF-IP-Address
        IPv4 address
    radius.USR_IWF_IP_Address.len  Length
        Unsigned 8-bit integer
        USR-IWF-IP-Address Length
    radius.USR_Init_Reg_Server_Addr  USR-Init-Reg-Server-Addr
        IPv4 address
    radius.USR_Init_Reg_Server_Addr.len  Length
        Unsigned 8-bit integer
        USR-Init-Reg-Server-Addr Length
    radius.USR_Initial_Rx_Link_Data_Rate  USR-Initial-Rx-Link-Data-Rate
        Unsigned 32-bit integer
    radius.USR_Initial_Rx_Link_Data_Rate.len  Length
        Unsigned 8-bit integer
        USR-Initial-Rx-Link-Data-Rate Length
    radius.USR_Initial_Tx_Link_Data_Rate  USR-Initial-Tx-Link-Data-Rate
        Unsigned 32-bit integer
    radius.USR_Initial_Tx_Link_Data_Rate.len  Length
        Unsigned 8-bit integer
        USR-Initial-Tx-Link-Data-Rate Length
    radius.USR_Interface_Index  USR-Interface-Index
        Unsigned 32-bit integer
    radius.USR_Interface_Index.len  Length
        Unsigned 8-bit integer
        USR-Interface-Index Length
    radius.USR_Keep_Alive_Interval  USR-Keep-Alive-Interval
        Unsigned 32-bit integer
    radius.USR_Keep_Alive_Interval.len  Length
        Unsigned 8-bit integer
        USR-Keep-Alive-Interval Length
    radius.USR_Keypress_Timeout  USR-Keypress-Timeout
        Unsigned 32-bit integer
    radius.USR_Keypress_Timeout.len  Length
        Unsigned 8-bit integer
        USR-Keypress-Timeout Length
    radius.USR_Last_Callers_Number_ANI  USR-Last-Callers-Number-ANI
        String
    radius.USR_Last_Callers_Number_ANI.len  Length
        Unsigned 8-bit integer
        USR-Last-Callers-Number-ANI Length
    radius.USR_Last_Number_Dialed_In_DNIS  USR-Last-Number-Dialed-In-DNIS
        String
    radius.USR_Last_Number_Dialed_In_DNIS.len  Length
        Unsigned 8-bit integer
        USR-Last-Number-Dialed-In-DNIS Length
    radius.USR_Last_Number_Dialed_Out  USR-Last-Number-Dialed-Out
        String
    radius.USR_Last_Number_Dialed_Out.len  Length
        Unsigned 8-bit integer
        USR-Last-Number-Dialed-Out Length
    radius.USR_Line_Reversals  USR-Line-Reversals
        Unsigned 32-bit integer
    radius.USR_Line_Reversals.len  Length
        Unsigned 8-bit integer
        USR-Line-Reversals Length
    radius.USR_Local_Framed_IP_Addr  USR-Local-Framed-IP-Addr
        IPv4 address
    radius.USR_Local_Framed_IP_Addr.len  Length
        Unsigned 8-bit integer
        USR-Local-Framed-IP-Addr Length
    radius.USR_Local_IP_Address  USR-Local-IP-Address
        String
    radius.USR_Local_IP_Address.len  Length
        Unsigned 8-bit integer
        USR-Local-IP-Address Length
    radius.USR_Log_Filter_Packets  USR-Log-Filter-Packets
        String
    radius.USR_Log_Filter_Packets.len  Length
        Unsigned 8-bit integer
        USR-Log-Filter-Packets Length
    radius.USR_MIC  USR-MIC
        String
    radius.USR_MIC.len  Length
        Unsigned 8-bit integer
        USR-MIC Length
    radius.USR_MIP_NAI  USR-MIP-NAI
        Unsigned 32-bit integer
    radius.USR_MIP_NAI.len  Length
        Unsigned 8-bit integer
        USR-MIP-NAI Length
    radius.USR_MLPPP_Fragmentation_Threshld  USR-MLPPP-Fragmentation-Threshld
        Unsigned 32-bit integer
    radius.USR_MLPPP_Fragmentation_Threshld.len  Length
        Unsigned 8-bit integer
        USR-MLPPP-Fragmentation-Threshld Length
    radius.USR_MPIP_Tunnel_Originator  USR-MPIP-Tunnel-Originator
        IPv4 address
    radius.USR_MPIP_Tunnel_Originator.len  Length
        Unsigned 8-bit integer
        USR-MPIP-Tunnel-Originator Length
    radius.USR_MP_EDO  USR-MP-EDO
        String
    radius.USR_MP_EDO.len  Length
        Unsigned 8-bit integer
        USR-MP-EDO Length
    radius.USR_MP_EDO_HIPER  USR-MP-EDO-HIPER
        String
    radius.USR_MP_EDO_HIPER.len  Length
        Unsigned 8-bit integer
        USR-MP-EDO-HIPER Length
    radius.USR_MP_MRRU  USR-MP-MRRU
        Unsigned 32-bit integer
    radius.USR_MP_MRRU.len  Length
        Unsigned 8-bit integer
        USR-MP-MRRU Length
    radius.USR_Max_Channels  USR-Max-Channels
        Unsigned 32-bit integer
    radius.USR_Max_Channels.len  Length
        Unsigned 8-bit integer
        USR-Max-Channels Length
    radius.USR_Mbi_Ct_BChannel_Used  USR-Mbi_Ct_BChannel_Used
        Unsigned 32-bit integer
    radius.USR_Mbi_Ct_BChannel_Used.len  Length
        Unsigned 8-bit integer
        USR-Mbi_Ct_BChannel_Used Length
    radius.USR_Mbi_Ct_PRI_Card_Slot  USR-Mbi_Ct_PRI_Card_Slot
        Unsigned 32-bit integer
    radius.USR_Mbi_Ct_PRI_Card_Slot.len  Length
        Unsigned 8-bit integer
        USR-Mbi_Ct_PRI_Card_Slot Length
    radius.USR_Mbi_Ct_PRI_Card_Span_Line  USR-Mbi_Ct_PRI_Card_Span_Line
        Unsigned 32-bit integer
    radius.USR_Mbi_Ct_PRI_Card_Span_Line.len  Length
        Unsigned 8-bit integer
        USR-Mbi_Ct_PRI_Card_Span_Line Length
    radius.USR_Mbi_Ct_TDM_Time_Slot  USR-Mbi_Ct_TDM_Time_Slot
        Unsigned 32-bit integer
    radius.USR_Mbi_Ct_TDM_Time_Slot.len  Length
        Unsigned 8-bit integer
        USR-Mbi_Ct_TDM_Time_Slot Length
    radius.USR_Min_Compression_Size  USR-Min-Compression-Size
        Unsigned 32-bit integer
    radius.USR_Min_Compression_Size.len  Length
        Unsigned 8-bit integer
        USR-Min-Compression-Size Length
    radius.USR_MobileIP_Home_Agent_Address  USR-MobileIP-Home-Agent-Address
        IPv4 address
    radius.USR_MobileIP_Home_Agent_Address.len  Length
        Unsigned 8-bit integer
        USR-MobileIP-Home-Agent-Address Length
    radius.USR_Mobile_Accounting_Type  USR-Mobile-Accounting-Type
        Unsigned 32-bit integer
    radius.USR_Mobile_Accounting_Type.len  Length
        Unsigned 8-bit integer
        USR-Mobile-Accounting-Type Length
    radius.USR_Mobile_IP_Address  USR-Mobile-IP-Address
        IPv4 address
    radius.USR_Mobile_IP_Address.len  Length
        Unsigned 8-bit integer
        USR-Mobile-IP-Address Length
    radius.USR_Mobile_NumBytes_Rxed  USR-Mobile-NumBytes-Rxed
        Unsigned 32-bit integer
    radius.USR_Mobile_NumBytes_Rxed.len  Length
        Unsigned 8-bit integer
        USR-Mobile-NumBytes-Rxed Length
    radius.USR_Mobile_NumBytes_Txed  USR-Mobile-NumBytes-Txed
        Unsigned 32-bit integer
    radius.USR_Mobile_NumBytes_Txed.len  Length
        Unsigned 8-bit integer
        USR-Mobile-NumBytes-Txed Length
    radius.USR_Mobile_Service_Option  USR-Mobile-Service-Option
        Unsigned 32-bit integer
    radius.USR_Mobile_Service_Option.len  Length
        Unsigned 8-bit integer
        USR-Mobile-Service-Option Length
    radius.USR_Mobile_Session_ID  USR-Mobile-Session-ID
        Unsigned 32-bit integer
    radius.USR_Mobile_Session_ID.len  Length
        Unsigned 8-bit integer
        USR-Mobile-Session-ID Length
    radius.USR_Modem_Group  USR-Modem-Group
        Unsigned 32-bit integer
    radius.USR_Modem_Group.len  Length
        Unsigned 8-bit integer
        USR-Modem-Group Length
    radius.USR_Modem_Setup_Time  USR-Modem-Setup-Time
        Unsigned 32-bit integer
    radius.USR_Modem_Setup_Time.len  Length
        Unsigned 8-bit integer
        USR-Modem-Setup-Time Length
    radius.USR_Modem_Training_Time  USR-Modem-Training-Time
        Unsigned 32-bit integer
    radius.USR_Modem_Training_Time.len  Length
        Unsigned 8-bit integer
        USR-Modem-Training-Time Length
    radius.USR_Modulation_Type  USR-Modulation-Type
        Unsigned 32-bit integer
    radius.USR_Modulation_Type.len  Length
        Unsigned 8-bit integer
        USR-Modulation-Type Length
    radius.USR_Multicast_Forwarding  USR-Multicast-Forwarding
        Unsigned 32-bit integer
    radius.USR_Multicast_Forwarding.len  Length
        Unsigned 8-bit integer
        USR-Multicast-Forwarding Length
    radius.USR_Multicast_Proxy  USR-Multicast-Proxy
        Unsigned 32-bit integer
    radius.USR_Multicast_Proxy.len  Length
        Unsigned 8-bit integer
        USR-Multicast-Proxy Length
    radius.USR_Multicast_Receive  USR-Multicast-Receive
        Unsigned 32-bit integer
    radius.USR_Multicast_Receive.len  Length
        Unsigned 8-bit integer
        USR-Multicast-Receive Length
    radius.USR_NAS_Type  USR-NAS-Type
        Unsigned 32-bit integer
    radius.USR_NAS_Type.len  Length
        Unsigned 8-bit integer
        USR-NAS-Type Length
    radius.USR_NFAS_ID  USR-NFAS-ID
        Unsigned 32-bit integer
    radius.USR_NFAS_ID.len  Length
        Unsigned 8-bit integer
        USR-NFAS-ID Length
    radius.USR_Nailed_B_Channel_Indicator  USR-Nailed-B-Channel-Indicator
        Unsigned 32-bit integer
    radius.USR_Nailed_B_Channel_Indicator.len  Length
        Unsigned 8-bit integer
        USR-Nailed-B-Channel-Indicator Length
    radius.USR_Num_Fax_Pages_Processed  USR-Num-Fax-Pages-Processed
        Unsigned 32-bit integer
    radius.USR_Num_Fax_Pages_Processed.len  Length
        Unsigned 8-bit integer
        USR-Num-Fax-Pages-Processed Length
    radius.USR_Number_Of_Characters_Lost  USR-Number-Of-Characters-Lost
        Unsigned 32-bit integer
    radius.USR_Number_Of_Characters_Lost.len  Length
        Unsigned 8-bit integer
        USR-Number-Of-Characters-Lost Length
    radius.USR_Number_of_Blers  USR-Number-of-Blers
        Unsigned 32-bit integer
    radius.USR_Number_of_Blers.len  Length
        Unsigned 8-bit integer
        USR-Number-of-Blers Length
    radius.USR_Number_of_Fallbacks  USR-Number-of-Fallbacks
        Unsigned 32-bit integer
    radius.USR_Number_of_Fallbacks.len  Length
        Unsigned 8-bit integer
        USR-Number-of-Fallbacks Length
    radius.USR_Number_of_Link_NAKs  USR-Number-of-Link-NAKs
        Unsigned 32-bit integer
    radius.USR_Number_of_Link_NAKs.len  Length
        Unsigned 8-bit integer
        USR-Number-of-Link-NAKs Length
    radius.USR_Number_of_Link_Timeouts  USR-Number-of-Link-Timeouts
        Unsigned 32-bit integer
    radius.USR_Number_of_Link_Timeouts.len  Length
        Unsigned 8-bit integer
        USR-Number-of-Link-Timeouts Length
    radius.USR_Number_of_Rings_Limit  USR-Number-of-Rings-Limit
        Unsigned 32-bit integer
    radius.USR_Number_of_Rings_Limit.len  Length
        Unsigned 8-bit integer
        USR-Number-of-Rings-Limit Length
    radius.USR_Number_of_Upshifts  USR-Number-of-Upshifts
        Unsigned 32-bit integer
    radius.USR_Number_of_Upshifts.len  Length
        Unsigned 8-bit integer
        USR-Number-of-Upshifts Length
    radius.USR_OSPF_Addressless_Index  USR-OSPF-Addressless-Index
        Unsigned 32-bit integer
    radius.USR_OSPF_Addressless_Index.len  Length
        Unsigned 8-bit integer
        USR-OSPF-Addressless-Index Length
    radius.USR_Orig_NAS_Type  USR-Orig-NAS-Type
        String
    radius.USR_Orig_NAS_Type.len  Length
        Unsigned 8-bit integer
        USR-Orig-NAS-Type Length
    radius.USR_Originate_Answer_Mode  USR-Originate-Answer-Mode
        Unsigned 32-bit integer
    radius.USR_Originate_Answer_Mode.len  Length
        Unsigned 8-bit integer
        USR-Originate-Answer-Mode Length
    radius.USR_PQ_Default_Priority  USR-PQ-Default-Priority
        Unsigned 32-bit integer
    radius.USR_PQ_Default_Priority.len  Length
        Unsigned 8-bit integer
        USR-PQ-Default-Priority Length
    radius.USR_PQ_Parameters  USR-PQ-Parameters
        Unsigned 32-bit integer
    radius.USR_PQ_Parameters.len  Length
        Unsigned 8-bit integer
        USR-PQ-Parameters Length
    radius.USR_PW_Cutoff  USR-PW_Cutoff
        String
    radius.USR_PW_Cutoff.len  Length
        Unsigned 8-bit integer
        USR-PW_Cutoff Length
    radius.USR_PW_Framed_Routing_V2  USR-PW_Framed_Routing_V2
        String
    radius.USR_PW_Framed_Routing_V2.len  Length
        Unsigned 8-bit integer
        USR-PW_Framed_Routing_V2 Length
    radius.USR_PW_Index  USR-PW_Index
        String
    radius.USR_PW_Index.len  Length
        Unsigned 8-bit integer
        USR-PW_Index Length
    radius.USR_PW_Packet  USR-PW_Packet
        String
    radius.USR_PW_Packet.len  Length
        Unsigned 8-bit integer
        USR-PW_Packet Length
    radius.USR_PW_Tunnel_Authentication  USR-PW_Tunnel_Authentication
        String
    radius.USR_PW_Tunnel_Authentication.len  Length
        Unsigned 8-bit integer
        USR-PW_Tunnel_Authentication Length
    radius.USR_PW_USR_IFilter_IP  USR-PW_USR_IFilter_IP
        String
    radius.USR_PW_USR_IFilter_IP.len  Length
        Unsigned 8-bit integer
        USR-PW_USR_IFilter_IP Length
    radius.USR_PW_USR_IFilter_IPX  USR-PW_USR_IFilter_IPX
        String
    radius.USR_PW_USR_IFilter_IPX.len  Length
        Unsigned 8-bit integer
        USR-PW_USR_IFilter_IPX Length
    radius.USR_PW_USR_OFilter_IP  USR-PW_USR_OFilter_IP
        String
    radius.USR_PW_USR_OFilter_IP.len  Length
        Unsigned 8-bit integer
        USR-PW_USR_OFilter_IP Length
    radius.USR_PW_USR_OFilter_IPX  USR-PW_USR_OFilter_IPX
        String
    radius.USR_PW_USR_OFilter_IPX.len  Length
        Unsigned 8-bit integer
        USR-PW_USR_OFilter_IPX Length
    radius.USR_PW_USR_OFilter_SAP  USR-PW_USR_OFilter_SAP
        String
    radius.USR_PW_USR_OFilter_SAP.len  Length
        Unsigned 8-bit integer
        USR-PW_USR_OFilter_SAP Length
    radius.USR_PW_VPN_Gateway  USR-PW_VPN_Gateway
        String
    radius.USR_PW_VPN_Gateway.len  Length
        Unsigned 8-bit integer
        USR-PW_VPN_Gateway Length
    radius.USR_PW_VPN_ID  USR-PW_VPN_ID
        String
    radius.USR_PW_VPN_ID.len  Length
        Unsigned 8-bit integer
        USR-PW_VPN_ID Length
    radius.USR_PW_VPN_Name  USR-PW_VPN_Name
        String
    radius.USR_PW_VPN_Name.len  Length
        Unsigned 8-bit integer
        USR-PW_VPN_Name Length
    radius.USR_PW_VPN_Neighbor  USR-PW_VPN_Neighbor
        IPv4 address
    radius.USR_PW_VPN_Neighbor.len  Length
        Unsigned 8-bit integer
        USR-PW_VPN_Neighbor Length
    radius.USR_Packet_Bus_Session  USR-Packet-Bus-Session
        Unsigned 32-bit integer
    radius.USR_Packet_Bus_Session.len  Length
        Unsigned 8-bit integer
        USR-Packet-Bus-Session Length
    radius.USR_Physical_State  USR-Physical-State
        Unsigned 32-bit integer
    radius.USR_Physical_State.len  Length
        Unsigned 8-bit integer
        USR-Physical-State Length
    radius.USR_Policy_Access  USR-Policy-Access
        Unsigned 32-bit integer
    radius.USR_Policy_Access.len  Length
        Unsigned 8-bit integer
        USR-Policy-Access Length
    radius.USR_Policy_Configuration  USR-Policy-Configuration
        Unsigned 32-bit integer
    radius.USR_Policy_Configuration.len  Length
        Unsigned 8-bit integer
        USR-Policy-Configuration Length
    radius.USR_Policy_Filename  USR-Policy-Filename
        String
    radius.USR_Policy_Filename.len  Length
        Unsigned 8-bit integer
        USR-Policy-Filename Length
    radius.USR_Policy_Type  USR-Policy-Type
        Unsigned 32-bit integer
    radius.USR_Policy_Type.len  Length
        Unsigned 8-bit integer
        USR-Policy-Type Length
    radius.USR_Port_Tap  USR-Port-Tap
        Unsigned 32-bit integer
    radius.USR_Port_Tap.len  Length
        Unsigned 8-bit integer
        USR-Port-Tap Length
    radius.USR_Port_Tap_Address  USR-Port-Tap-Address
        IPv4 address
    radius.USR_Port_Tap_Address.len  Length
        Unsigned 8-bit integer
        USR-Port-Tap-Address Length
    radius.USR_Port_Tap_Facility  USR-Port-Tap-Facility
        Unsigned 32-bit integer
    radius.USR_Port_Tap_Facility.len  Length
        Unsigned 8-bit integer
        USR-Port-Tap-Facility Length
    radius.USR_Port_Tap_Format  USR-Port-Tap-Format
        Unsigned 32-bit integer
    radius.USR_Port_Tap_Format.len  Length
        Unsigned 8-bit integer
        USR-Port-Tap-Format Length
    radius.USR_Port_Tap_Output  USR-Port-Tap-Output
        Unsigned 32-bit integer
    radius.USR_Port_Tap_Output.len  Length
        Unsigned 8-bit integer
        USR-Port-Tap-Output Length
    radius.USR_Port_Tap_Priority  USR-Port-Tap-Priority
        Unsigned 32-bit integer
    radius.USR_Port_Tap_Priority.len  Length
        Unsigned 8-bit integer
        USR-Port-Tap-Priority Length
    radius.USR_Power_Supply_Number  USR-Power-Supply-Number
        Unsigned 32-bit integer
    radius.USR_Power_Supply_Number.len  Length
        Unsigned 8-bit integer
        USR-Power-Supply-Number Length
    radius.USR_Pre_Paid_Enabled  USR-Pre-Paid-Enabled
        Unsigned 32-bit integer
    radius.USR_Pre_Paid_Enabled.len  Length
        Unsigned 8-bit integer
        USR-Pre-Paid-Enabled Length
    radius.USR_Pre_Shared_MN_Key  USR-Pre-Shared-MN-Key
        String
    radius.USR_Pre_Shared_MN_Key.len  Length
        Unsigned 8-bit integer
        USR-Pre-Shared-MN-Key Length
    radius.USR_Primary_DNS_Server  USR-Primary_DNS_Server
        IPv4 address
    radius.USR_Primary_DNS_Server.len  Length
        Unsigned 8-bit integer
        USR-Primary_DNS_Server Length
    radius.USR_Primary_NBNS_Server  USR-Primary_NBNS_Server
        IPv4 address
    radius.USR_Primary_NBNS_Server.len  Length
        Unsigned 8-bit integer
        USR-Primary_NBNS_Server Length
    radius.USR_Q931_Call_Reference_Value  USR-Q931-Call-Reference-Value
        Unsigned 32-bit integer
    radius.USR_Q931_Call_Reference_Value.len  Length
        Unsigned 8-bit integer
        USR-Q931-Call-Reference-Value Length
    radius.USR_QNC1_Service_Destination  USR-QNC1-Service-Destination
        IPv4 address
    radius.USR_QNC1_Service_Destination.len  Length
        Unsigned 8-bit integer
        USR-QNC1-Service-Destination Length
    radius.USR_QoS_Queuing_Mehtod  USR-QoS-Queuing-Mehtod
        Unsigned 32-bit integer
    radius.USR_QoS_Queuing_Mehtod.len  Length
        Unsigned 8-bit integer
        USR-QoS-Queuing-Mehtod Length
    radius.USR_RMMIE_Firmware_Build_Date  USR-RMMIE-Firmware-Build-Date
        String
    radius.USR_RMMIE_Firmware_Build_Date.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Firmware-Build-Date Length
    radius.USR_RMMIE_Firmware_Version  USR-RMMIE-Firmware-Version
        String
    radius.USR_RMMIE_Firmware_Version.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Firmware-Version Length
    radius.USR_RMMIE_Last_Update_Event  USR-RMMIE-Last-Update-Event
        Unsigned 32-bit integer
    radius.USR_RMMIE_Last_Update_Event.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Last-Update-Event Length
    radius.USR_RMMIE_Last_Update_Time  USR-RMMIE-Last-Update-Time
        Unsigned 32-bit integer
    radius.USR_RMMIE_Last_Update_Time.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Last-Update-Time Length
    radius.USR_RMMIE_Manufacturer_ID  USR-RMMIE-Manufacturer-ID
        Unsigned 32-bit integer
    radius.USR_RMMIE_Manufacturer_ID.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Manufacturer-ID Length
    radius.USR_RMMIE_Num_Of_Updates  USR-RMMIE-Num-Of-Updates
        Unsigned 32-bit integer
    radius.USR_RMMIE_Num_Of_Updates.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Num-Of-Updates Length
    radius.USR_RMMIE_Planned_Disconnect  USR-RMMIE-Planned-Disconnect
        Unsigned 32-bit integer
    radius.USR_RMMIE_Planned_Disconnect.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Planned-Disconnect Length
    radius.USR_RMMIE_Product_Code  USR-RMMIE-Product-Code
        String
    radius.USR_RMMIE_Product_Code.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Product-Code Length
    radius.USR_RMMIE_PwrLvl_FarEcho_Canc  USR-RMMIE-PwrLvl-FarEcho-Canc
        Unsigned 32-bit integer
    radius.USR_RMMIE_PwrLvl_FarEcho_Canc.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-PwrLvl-FarEcho-Canc Length
    radius.USR_RMMIE_PwrLvl_NearEcho_Canc  USR-RMMIE-PwrLvl-NearEcho-Canc
        Unsigned 32-bit integer
    radius.USR_RMMIE_PwrLvl_NearEcho_Canc.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-PwrLvl-NearEcho-Canc Length
    radius.USR_RMMIE_PwrLvl_Noise_Lvl  USR-RMMIE-PwrLvl-Noise-Lvl
        Unsigned 32-bit integer
    radius.USR_RMMIE_PwrLvl_Noise_Lvl.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-PwrLvl-Noise-Lvl Length
    radius.USR_RMMIE_PwrLvl_Xmit_Lvl  USR-RMMIE-PwrLvl-Xmit-Lvl
        Unsigned 32-bit integer
    radius.USR_RMMIE_PwrLvl_Xmit_Lvl.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-PwrLvl-Xmit-Lvl Length
    radius.USR_RMMIE_Rcv_PwrLvl_3300Hz  USR-RMMIE-Rcv-PwrLvl-3300Hz
        Unsigned 32-bit integer
    radius.USR_RMMIE_Rcv_PwrLvl_3300Hz.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Rcv-PwrLvl-3300Hz Length
    radius.USR_RMMIE_Rcv_PwrLvl_3750Hz  USR-RMMIE-Rcv-PwrLvl-3750Hz
        Unsigned 32-bit integer
    radius.USR_RMMIE_Rcv_PwrLvl_3750Hz.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Rcv-PwrLvl-3750Hz Length
    radius.USR_RMMIE_Rcv_Tot_PwrLvl  USR-RMMIE-Rcv-Tot-PwrLvl
        Unsigned 32-bit integer
    radius.USR_RMMIE_Rcv_Tot_PwrLvl.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Rcv-Tot-PwrLvl Length
    radius.USR_RMMIE_Serial_Number  USR-RMMIE-Serial-Number
        String
    radius.USR_RMMIE_Serial_Number.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Serial-Number Length
    radius.USR_RMMIE_Status  USR-RMMIE-Status
        Unsigned 32-bit integer
    radius.USR_RMMIE_Status.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-Status Length
    radius.USR_RMMIE_x2_Status  USR-RMMIE-x2-Status
        Unsigned 32-bit integer
    radius.USR_RMMIE_x2_Status.len  Length
        Unsigned 8-bit integer
        USR-RMMIE-x2-Status Length
    radius.USR_Rad_Dvmrp_Metric  USR-Rad-Dvmrp-Metric
        Unsigned 32-bit integer
    radius.USR_Rad_Dvmrp_Metric.len  Length
        Unsigned 8-bit integer
        USR-Rad-Dvmrp-Metric Length
    radius.USR_Rad_IP_Pool_Definition  USR-Rad-IP-Pool-Definition
        String
    radius.USR_Rad_IP_Pool_Definition.len  Length
        Unsigned 8-bit integer
        USR-Rad-IP-Pool-Definition Length
    radius.USR_Rad_Location_Type  USR-Rad-Location-Type
        Unsigned 32-bit integer
    radius.USR_Rad_Location_Type.len  Length
        Unsigned 8-bit integer
        USR-Rad-Location-Type Length
    radius.USR_Rad_Multicast_Routing_Bound  USR-Rad-Multicast-Routing-Bound
        String
    radius.USR_Rad_Multicast_Routing_Bound.len  Length
        Unsigned 8-bit integer
        USR-Rad-Multicast-Routing-Bound Length
    radius.USR_Rad_Multicast_Routing_Proto  USR-Rad-Multicast-Routing-Proto
        Unsigned 32-bit integer
    radius.USR_Rad_Multicast_Routing_Proto.len  Length
        Unsigned 8-bit integer
        USR-Rad-Multicast-Routing-Proto Length
    radius.USR_Rad_Multicast_Routing_RtLim  USR-Rad-Multicast-Routing-RtLim
        Unsigned 32-bit integer
    radius.USR_Rad_Multicast_Routing_RtLim.len  Length
        Unsigned 8-bit integer
        USR-Rad-Multicast-Routing-RtLim Length
    radius.USR_Rad_Multicast_Routing_Ttl  USR-Rad-Multicast-Routing-Ttl
        Unsigned 32-bit integer
    radius.USR_Rad_Multicast_Routing_Ttl.len  Length
        Unsigned 8-bit integer
        USR-Rad-Multicast-Routing-Ttl Length
    radius.USR_Rad_NMC_Blocks_RX  USR-Rad-NMC-Blocks_RX
        Unsigned 32-bit integer
    radius.USR_Rad_NMC_Blocks_RX.len  Length
        Unsigned 8-bit integer
        USR-Rad-NMC-Blocks_RX Length
    radius.USR_Rad_NMC_Call_Progress_Status  USR-Rad-NMC-Call-Progress-Status
        Unsigned 32-bit integer
    radius.USR_Rad_NMC_Call_Progress_Status.len  Length
        Unsigned 8-bit integer
        USR-Rad-NMC-Call-Progress-Status Length
    radius.USR_Re_Chap_Timeout  USR-Re-Chap-Timeout
        Unsigned 32-bit integer
    radius.USR_Re_Chap_Timeout.len  Length
        Unsigned 8-bit integer
        USR-Re-Chap-Timeout Length
    radius.USR_Re_Reg_Server_Addr  USR-Re-Reg-Server-Addr
        IPv4 address
    radius.USR_Re_Reg_Server_Addr.len  Length
        Unsigned 8-bit integer
        USR-Re-Reg-Server-Addr Length
    radius.USR_Receive_Acc_Map  USR-Receive-Acc-Map
        Unsigned 32-bit integer
    radius.USR_Receive_Acc_Map.len  Length
        Unsigned 8-bit integer
        USR-Receive-Acc-Map Length
    radius.USR_Redirect  USR-Redirect
        Unsigned 32-bit integer
    radius.USR_Redirect.len  Length
        Unsigned 8-bit integer
        USR-Redirect Length
    radius.USR_Reg_Server_Prov_Timeout  USR-Reg-Server-Prov-Timeout
        Unsigned 32-bit integer
    radius.USR_Reg_Server_Prov_Timeout.len  Length
        Unsigned 8-bit integer
        USR-Reg-Server-Prov-Timeout Length
    radius.USR_Reply_Script1  USR-Reply-Script1
        String
    radius.USR_Reply_Script1.len  Length
        Unsigned 8-bit integer
        USR-Reply-Script1 Length
    radius.USR_Reply_Script2  USR-Reply-Script2
        String
    radius.USR_Reply_Script2.len  Length
        Unsigned 8-bit integer
        USR-Reply-Script2 Length
    radius.USR_Reply_Script3  USR-Reply-Script3
        String
    radius.USR_Reply_Script3.len  Length
        Unsigned 8-bit integer
        USR-Reply-Script3 Length
    radius.USR_Reply_Script4  USR-Reply-Script4
        String
    radius.USR_Reply_Script4.len  Length
        Unsigned 8-bit integer
        USR-Reply-Script4 Length
    radius.USR_Reply_Script5  USR-Reply-Script5
        String
    radius.USR_Reply_Script5.len  Length
        Unsigned 8-bit integer
        USR-Reply-Script5 Length
    radius.USR_Reply_Script6  USR-Reply-Script6
        String
    radius.USR_Reply_Script6.len  Length
        Unsigned 8-bit integer
        USR-Reply-Script6 Length
    radius.USR_Request_Type  USR-Request-Type
        Unsigned 32-bit integer
    radius.USR_Request_Type.len  Length
        Unsigned 8-bit integer
        USR-Request-Type Length
    radius.USR_Retrains_Granted  USR-Retrains-Granted
        Unsigned 32-bit integer
    radius.USR_Retrains_Granted.len  Length
        Unsigned 8-bit integer
        USR-Retrains-Granted Length
    radius.USR_Retrains_Requested  USR-Retrains-Requested
        Unsigned 32-bit integer
    radius.USR_Retrains_Requested.len  Length
        Unsigned 8-bit integer
        USR-Retrains-Requested Length
    radius.USR_Routing_Protocol  USR-Routing-Protocol
        Unsigned 32-bit integer
    radius.USR_Routing_Protocol.len  Length
        Unsigned 8-bit integer
        USR-Routing-Protocol Length
    radius.USR_SAP_Filter_In  USR-SAP-Filter-In
        String
    radius.USR_SAP_Filter_In.len  Length
        Unsigned 8-bit integer
        USR-SAP-Filter-In Length
    radius.USR_Secondary_DNS_Server  USR-Secondary_DNS_Server
        IPv4 address
    radius.USR_Secondary_DNS_Server.len  Length
        Unsigned 8-bit integer
        USR-Secondary_DNS_Server Length
    radius.USR_Secondary_NBNS_Server  USR-Secondary_NBNS_Server
        IPv4 address
    radius.USR_Secondary_NBNS_Server.len  Length
        Unsigned 8-bit integer
        USR-Secondary_NBNS_Server Length
    radius.USR_Security_Login_Limit  USR-Security-Login-Limit
        Unsigned 32-bit integer
    radius.USR_Security_Login_Limit.len  Length
        Unsigned 8-bit integer
        USR-Security-Login-Limit Length
    radius.USR_Security_Resp_Limit  USR-Security-Resp-Limit
        Unsigned 32-bit integer
    radius.USR_Security_Resp_Limit.len  Length
        Unsigned 8-bit integer
        USR-Security-Resp-Limit Length
    radius.USR_Send_Name  USR-Send-Name
        String
    radius.USR_Send_Name.len  Length
        Unsigned 8-bit integer
        USR-Send-Name Length
    radius.USR_Send_Password  USR-Send-Password
        String
    radius.USR_Send_Password.len  Length
        Unsigned 8-bit integer
        USR-Send-Password Length
    radius.USR_Send_Script1  USR-Send-Script1
        String
    radius.USR_Send_Script1.len  Length
        Unsigned 8-bit integer
        USR-Send-Script1 Length
    radius.USR_Send_Script2  USR-Send-Script2
        String
    radius.USR_Send_Script2.len  Length
        Unsigned 8-bit integer
        USR-Send-Script2 Length
    radius.USR_Send_Script3  USR-Send-Script3
        String
    radius.USR_Send_Script3.len  Length
        Unsigned 8-bit integer
        USR-Send-Script3 Length
    radius.USR_Send_Script4  USR-Send-Script4
        String
    radius.USR_Send_Script4.len  Length
        Unsigned 8-bit integer
        USR-Send-Script4 Length
    radius.USR_Send_Script5  USR-Send-Script5
        String
    radius.USR_Send_Script5.len  Length
        Unsigned 8-bit integer
        USR-Send-Script5 Length
    radius.USR_Send_Script6  USR-Send-Script6
        String
    radius.USR_Send_Script6.len  Length
        Unsigned 8-bit integer
        USR-Send-Script6 Length
    radius.USR_Server_Time  USR-Server-Time
        Date/Time stamp
    radius.USR_Server_Time.len  Length
        Unsigned 8-bit integer
        USR-Server-Time Length
    radius.USR_Service_Option  USR-Service-Option
        Unsigned 32-bit integer
    radius.USR_Service_Option.len  Length
        Unsigned 8-bit integer
        USR-Service-Option Length
    radius.USR_Session_Time_Remain  USR-Session-Time-Remain
        Unsigned 32-bit integer
    radius.USR_Session_Time_Remain.len  Length
        Unsigned 8-bit integer
        USR-Session-Time-Remain Length
    radius.USR_Simplified_MNP_Levels  USR-Simplified-MNP-Levels
        Unsigned 32-bit integer
    radius.USR_Simplified_MNP_Levels.len  Length
        Unsigned 8-bit integer
        USR-Simplified-MNP-Levels Length
    radius.USR_Simplified_V42bis_Usage  USR-Simplified-V42bis-Usage
        Unsigned 32-bit integer
    radius.USR_Simplified_V42bis_Usage.len  Length
        Unsigned 8-bit integer
        USR-Simplified-V42bis-Usage Length
    radius.USR_Slot_Connected_To  USR-Slot-Connected-To
        Unsigned 32-bit integer
    radius.USR_Slot_Connected_To.len  Length
        Unsigned 8-bit integer
        USR-Slot-Connected-To Length
    radius.USR_Special_Xon_Xoff_Flow  USR-Special-Xon-Xoff-Flow
        Unsigned 32-bit integer
    radius.USR_Special_Xon_Xoff_Flow.len  Length
        Unsigned 8-bit integer
        USR-Special-Xon-Xoff-Flow Length
    radius.USR_Speed_Of_Connection  USR-Speed-Of-Connection
        Unsigned 32-bit integer
    radius.USR_Speed_Of_Connection.len  Length
        Unsigned 8-bit integer
        USR-Speed-Of-Connection Length
    radius.USR_Spoofing  USR-Spoofing
        Unsigned 32-bit integer
    radius.USR_Spoofing.len  Length
        Unsigned 8-bit integer
        USR-Spoofing Length
    radius.USR_Start_Time  USR-Start-Time
        Unsigned 32-bit integer
    radius.USR_Start_Time.len  Length
        Unsigned 8-bit integer
        USR-Start-Time Length
    radius.USR_Supports_Tags  USR-Supports-Tags
        Unsigned 32-bit integer
    radius.USR_Supports_Tags.len  Length
        Unsigned 8-bit integer
        USR-Supports-Tags Length
    radius.USR_Sync_Async_Mode  USR-Sync-Async-Mode
        Unsigned 32-bit integer
    radius.USR_Sync_Async_Mode.len  Length
        Unsigned 8-bit integer
        USR-Sync-Async-Mode Length
    radius.USR_Syslog_Tap  USR-Syslog-Tap
        Unsigned 32-bit integer
    radius.USR_Syslog_Tap.len  Length
        Unsigned 8-bit integer
        USR-Syslog-Tap Length
    radius.USR_Telnet_Options  USR-Telnet-Options
        Unsigned 32-bit integer
    radius.USR_Telnet_Options.len  Length
        Unsigned 8-bit integer
        USR-Telnet-Options Length
    radius.USR_Terminal_Type  USR-Terminal-Type
        String
    radius.USR_Terminal_Type.len  Length
        Unsigned 8-bit integer
        USR-Terminal-Type Length
    radius.USR_Traffic_Threshold  USR-Traffic-Threshold
        Unsigned 32-bit integer
    radius.USR_Traffic_Threshold.len  Length
        Unsigned 8-bit integer
        USR-Traffic-Threshold Length
    radius.USR_Transmit_Acc_Map  USR-Transmit-Acc-Map
        Unsigned 32-bit integer
    radius.USR_Transmit_Acc_Map.len  Length
        Unsigned 8-bit integer
        USR-Transmit-Acc-Map Length
    radius.USR_Tunnel_Auth_Hostname  USR-Tunnel-Auth-Hostname
        String
    radius.USR_Tunnel_Auth_Hostname.len  Length
        Unsigned 8-bit integer
        USR-Tunnel-Auth-Hostname Length
    radius.USR_Tunnel_Challenge_Outgoing  USR-Tunnel-Challenge-Outgoing
        Unsigned 32-bit integer
    radius.USR_Tunnel_Challenge_Outgoing.len  Length
        Unsigned 8-bit integer
        USR-Tunnel-Challenge-Outgoing Length
    radius.USR_Tunnel_Security  USR-Tunnel-Security
        Unsigned 32-bit integer
    radius.USR_Tunnel_Security.len  Length
        Unsigned 8-bit integer
        USR-Tunnel-Security Length
    radius.USR_Tunnel_Switch_Endpoint  USR-Tunnel-Switch-Endpoint
        String
    radius.USR_Tunnel_Switch_Endpoint.len  Length
        Unsigned 8-bit integer
        USR-Tunnel-Switch-Endpoint Length
    radius.USR_Tunneled_MLPP  USR-Tunneled-MLPP
        Unsigned 32-bit integer
    radius.USR_Tunneled_MLPP.len  Length
        Unsigned 8-bit integer
        USR-Tunneled-MLPP Length
    radius.USR_Unauthenticated_Time  USR-Unauthenticated-Time
        Unsigned 32-bit integer
    radius.USR_Unauthenticated_Time.len  Length
        Unsigned 8-bit integer
        USR-Unauthenticated-Time Length
    radius.USR_Unnumbered_Local_IP_Address  USR-Unnumbered-Local-IP-Address
        IPv4 address
    radius.USR_Unnumbered_Local_IP_Address.len  Length
        Unsigned 8-bit integer
        USR-Unnumbered-Local-IP-Address Length
    radius.USR_User_PPP_AODI_Type  USR-User-PPP-AODI-Type
        Unsigned 32-bit integer
    radius.USR_User_PPP_AODI_Type.len  Length
        Unsigned 8-bit integer
        USR-User-PPP-AODI-Type Length
    radius.USR_VLAN_Tag  USR-VLAN-Tag
        Unsigned 32-bit integer
    radius.USR_VLAN_Tag.len  Length
        Unsigned 8-bit integer
        USR-VLAN-Tag Length
    radius.USR_VPN_Encrypter  USR-VPN-Encrypter
        Unsigned 32-bit integer
    radius.USR_VPN_Encrypter.len  Length
        Unsigned 8-bit integer
        USR-VPN-Encrypter Length
    radius.USR_VPN_GW_Location_Id  USR-VPN-GW-Location-Id
        String
    radius.USR_VPN_GW_Location_Id.len  Length
        Unsigned 8-bit integer
        USR-VPN-GW-Location-Id Length
    radius.USR_VTS_Session_Key  USR-VTS-Session-Key
        String
    radius.USR_VTS_Session_Key.len  Length
        Unsigned 8-bit integer
        USR-VTS-Session-Key Length
    radius.USR_Wallclock_Timestamp  USR-Wallclock-Timestamp
        Unsigned 32-bit integer
    radius.USR_Wallclock_Timestamp.len  Length
        Unsigned 8-bit integer
        USR-Wallclock-Timestamp Length
    radius.USR_X25_Acct_Input_Segment_Count  USR-X25-Acct-Input-Segment-Count
        Unsigned 32-bit integer
    radius.USR_X25_Acct_Input_Segment_Count.len  Length
        Unsigned 8-bit integer
        USR-X25-Acct-Input-Segment-Count Length
    radius.USR_X25_Acct_Output_Segment_Coun  USR-X25-Acct-Output-Segment-Coun
        Unsigned 32-bit integer
    radius.USR_X25_Acct_Output_Segment_Coun.len  Length
        Unsigned 8-bit integer
        USR-X25-Acct-Output-Segment-Coun Length
    radius.USR_X25_Acct_Segment_Size  USR-X25-Acct-Segment-Size
        Unsigned 32-bit integer
    radius.USR_X25_Acct_Segment_Size.len  Length
        Unsigned 8-bit integer
        USR-X25-Acct-Segment-Size Length
    radius.USR_X25_Acct_Termination_Code  USR-X25-Acct-Termination-Code
        Unsigned 32-bit integer
    radius.USR_X25_Acct_Termination_Code.len  Length
        Unsigned 8-bit integer
        USR-X25-Acct-Termination-Code Length
    radius.USR_X25_SVC_Call_Attributes  USR-X25-SVC-Call-Attributes
        Unsigned 32-bit integer
    radius.USR_X25_SVC_Call_Attributes.len  Length
        Unsigned 8-bit integer
        USR-X25-SVC-Call-Attributes Length
    radius.USR_X25_SVC_Logical_Channel_Numb  USR-X25-SVC-Logical-Channel-Numb
        Unsigned 32-bit integer
    radius.USR_X25_SVC_Logical_Channel_Numb.len  Length
        Unsigned 8-bit integer
        USR-X25-SVC-Logical-Channel-Numb Length
    radius.USR_X25_Trunk_Profile  USR-X25-Trunk-Profile
        String
    radius.USR_X25_Trunk_Profile.len  Length
        Unsigned 8-bit integer
        USR-X25-Trunk-Profile Length
    radius.UTStarcom_Act_Input_Frames  UTStarcom-Act-Input-Frames
        String
    radius.UTStarcom_Act_Input_Frames.len  Length
        Unsigned 8-bit integer
        UTStarcom-Act-Input-Frames Length
    radius.UTStarcom_Act_Input_Octets  UTStarcom-Act-Input-Octets
        String
    radius.UTStarcom_Act_Input_Octets.len  Length
        Unsigned 8-bit integer
        UTStarcom-Act-Input-Octets Length
    radius.UTStarcom_Act_Output_Frames  UTStarcom-Act-Output-Frames
        String
    radius.UTStarcom_Act_Output_Frames.len  Length
        Unsigned 8-bit integer
        UTStarcom-Act-Output-Frames Length
    radius.UTStarcom_Act_Output_Octets  UTStarcom-Act-Output-Octets
        String
    radius.UTStarcom_Act_Output_Octets.len  Length
        Unsigned 8-bit integer
        UTStarcom-Act-Output-Octets Length
    radius.UTStarcom_CLI_Access_Level  UTStarcom-CLI-Access-Level
        Unsigned 32-bit integer
    radius.UTStarcom_CLI_Access_Level.len  Length
        Unsigned 8-bit integer
        UTStarcom-CLI-Access-Level Length
    radius.UTStarcom_CommittedBandwidth  UTStarcom-CommittedBandwidth
        Unsigned 32-bit integer
    radius.UTStarcom_CommittedBandwidth.len  Length
        Unsigned 8-bit integer
        UTStarcom-CommittedBandwidth Length
    radius.UTStarcom_Default_Gateway  UTStarcom-Default-Gateway
        Unsigned 32-bit integer
    radius.UTStarcom_Default_Gateway.len  Length
        Unsigned 8-bit integer
        UTStarcom-Default-Gateway Length
    radius.UTStarcom_DeviceId  UTStarcom-DeviceId
        String
    radius.UTStarcom_DeviceId.len  Length
        Unsigned 8-bit integer
        UTStarcom-DeviceId Length
    radius.UTStarcom_Error_Reason  UTStarcom-Error-Reason
        Unsigned 32-bit integer
    radius.UTStarcom_Error_Reason.len  Length
        Unsigned 8-bit integer
        UTStarcom-Error-Reason Length
    radius.UTStarcom_Logical_Port_No  UTStarcom-Logical-Port-No
        Unsigned 32-bit integer
    radius.UTStarcom_Logical_Port_No.len  Length
        Unsigned 8-bit integer
        UTStarcom-Logical-Port-No Length
    radius.UTStarcom_MaxBandwidth  UTStarcom-MaxBandwidth
        Unsigned 32-bit integer
    radius.UTStarcom_MaxBandwidth.len  Length
        Unsigned 8-bit integer
        UTStarcom-MaxBandwidth Length
    radius.UTStarcom_MaxBurstSize  UTStarcom-MaxBurstSize
        Unsigned 32-bit integer
    radius.UTStarcom_MaxBurstSize.len  Length
        Unsigned 8-bit integer
        UTStarcom-MaxBurstSize Length
    radius.UTStarcom_MaxDelay  UTStarcom-MaxDelay
        Unsigned 32-bit integer
    radius.UTStarcom_MaxDelay.len  Length
        Unsigned 8-bit integer
        UTStarcom-MaxDelay Length
    radius.UTStarcom_MaxJitter  UTStarcom-MaxJitter
        Unsigned 32-bit integer
    radius.UTStarcom_MaxJitter.len  Length
        Unsigned 8-bit integer
        UTStarcom-MaxJitter Length
    radius.UTStarcom_Module_Id  UTStarcom-Module-Id
        Unsigned 32-bit integer
    radius.UTStarcom_Module_Id.len  Length
        Unsigned 8-bit integer
        UTStarcom-Module-Id Length
    radius.UTStarcom_ONU_Admin_status  UTStarcom-ONU-Admin_status
        Unsigned 32-bit integer
    radius.UTStarcom_ONU_Admin_status.len  Length
        Unsigned 8-bit integer
        UTStarcom-ONU-Admin_status Length
    radius.UTStarcom_ONU_FW_SC_Upgrade  UTStarcom-ONU-FW-SC-Upgrade
        Unsigned 32-bit integer
    radius.UTStarcom_ONU_FW_SC_Upgrade.len  Length
        Unsigned 8-bit integer
        UTStarcom-ONU-FW-SC-Upgrade Length
    radius.UTStarcom_Onu_MC_Filter_Enable  UTStarcom-Onu-MC-Filter-Enable
        Unsigned 32-bit integer
    radius.UTStarcom_Onu_MC_Filter_Enable.len  Length
        Unsigned 8-bit integer
        UTStarcom-Onu-MC-Filter-Enable Length
    radius.UTStarcom_Port_No  UTStarcom-Port-No
        Unsigned 32-bit integer
    radius.UTStarcom_Port_No.len  Length
        Unsigned 8-bit integer
        UTStarcom-Port-No Length
    radius.UTStarcom_PrimaryDNS  UTStarcom-PrimaryDNS
        Unsigned 32-bit integer
    radius.UTStarcom_PrimaryDNS.len  Length
        Unsigned 8-bit integer
        UTStarcom-PrimaryDNS Length
    radius.UTStarcom_Priority  UTStarcom-Priority
        Unsigned 32-bit integer
    radius.UTStarcom_Priority.len  Length
        Unsigned 8-bit integer
        UTStarcom-Priority Length
    radius.UTStarcom_SecondaryDNS  UTStarcom-SecondaryDNS
        Unsigned 32-bit integer
    radius.UTStarcom_SecondaryDNS.len  Length
        Unsigned 8-bit integer
        UTStarcom-SecondaryDNS Length
    radius.UTStarcom_UNI_Auto_Negotiation  UTStarcom-UNI-Auto-Negotiation
        Unsigned 32-bit integer
    radius.UTStarcom_UNI_Auto_Negotiation.len  Length
        Unsigned 8-bit integer
        UTStarcom-UNI-Auto-Negotiation Length
    radius.UTStarcom_UNI_Duplex  UTStarcom-UNI-Duplex
        Unsigned 32-bit integer
    radius.UTStarcom_UNI_Duplex.len  Length
        Unsigned 8-bit integer
        UTStarcom-UNI-Duplex Length
    radius.UTStarcom_UNI_MAX_MAC  UTStarcom-UNI-MAX-MAC
        Unsigned 32-bit integer
    radius.UTStarcom_UNI_MAX_MAC.len  Length
        Unsigned 8-bit integer
        UTStarcom-UNI-MAX-MAC Length
    radius.UTStarcom_UNI_Speed  UTStarcom-UNI-Speed
        Unsigned 32-bit integer
    radius.UTStarcom_UNI_Speed.len  Length
        Unsigned 8-bit integer
        UTStarcom-UNI-Speed Length
    radius.UTStarcom_VLAN_ID  UTStarcom-VLAN-ID
        Unsigned 32-bit integer
    radius.UTStarcom_VLAN_ID.len  Length
        Unsigned 8-bit integer
        UTStarcom-VLAN-ID Length
    radius.Unknown_Attribute  Unknown-Attribute
        Byte array
    radius.Unknown_Attribute.length  Unknown-Attribute Length
        Unsigned 8-bit integer
    radius.UserLogon_Acct_TerminateCause  UserLogon-Acct-TerminateCause
        String
    radius.UserLogon_Acct_TerminateCause.len  Length
        Unsigned 8-bit integer
        UserLogon-Acct-TerminateCause Length
    radius.UserLogon_DriveNames  UserLogon-DriveNames
        String
    radius.UserLogon_DriveNames.len  Length
        Unsigned 8-bit integer
        UserLogon-DriveNames Length
    radius.UserLogon_Expiration  UserLogon-Expiration
        String
    radius.UserLogon_Expiration.len  Length
        Unsigned 8-bit integer
        UserLogon-Expiration Length
    radius.UserLogon_Gid  UserLogon-Gid
        Unsigned 32-bit integer
    radius.UserLogon_Gid.len  Length
        Unsigned 8-bit integer
        UserLogon-Gid Length
    radius.UserLogon_GroupNames  UserLogon-GroupNames
        String
    radius.UserLogon_GroupNames.len  Length
        Unsigned 8-bit integer
        UserLogon-GroupNames Length
    radius.UserLogon_HomeDir  UserLogon-HomeDir
        String
    radius.UserLogon_HomeDir.len  Length
        Unsigned 8-bit integer
        UserLogon-HomeDir Length
    radius.UserLogon_LogoffTask  UserLogon-LogoffTask
        String
    radius.UserLogon_LogoffTask.len  Length
        Unsigned 8-bit integer
        UserLogon-LogoffTask Length
    radius.UserLogon_LogonTask  UserLogon-LogonTask
        String
    radius.UserLogon_LogonTask.len  Length
        Unsigned 8-bit integer
        UserLogon-LogonTask Length
    radius.UserLogon_QuotaBytes  UserLogon-QuotaBytes
        Unsigned 32-bit integer
    radius.UserLogon_QuotaBytes.len  Length
        Unsigned 8-bit integer
        UserLogon-QuotaBytes Length
    radius.UserLogon_QuotaFiles  UserLogon-QuotaFiles
        Unsigned 32-bit integer
    radius.UserLogon_QuotaFiles.len  Length
        Unsigned 8-bit integer
        UserLogon-QuotaFiles Length
    radius.UserLogon_Restriction  UserLogon-Restriction
        Unsigned 32-bit integer
    radius.UserLogon_Restriction.len  Length
        Unsigned 8-bit integer
        UserLogon-Restriction Length
    radius.UserLogon_Shell  UserLogon-Shell
        String
    radius.UserLogon_Shell.len  Length
        Unsigned 8-bit integer
        UserLogon-Shell Length
    radius.UserLogon_Type  UserLogon-Type
        Unsigned 32-bit integer
    radius.UserLogon_Type.len  Length
        Unsigned 8-bit integer
        UserLogon-Type Length
    radius.UserLogon_Uid  UserLogon-Uid
        Unsigned 32-bit integer
    radius.UserLogon_Uid.len  Length
        Unsigned 8-bit integer
        UserLogon-Uid Length
    radius.UserLogon_UserDescription  UserLogon-UserDescription
        String
    radius.UserLogon_UserDescription.len  Length
        Unsigned 8-bit integer
        UserLogon-UserDescription Length
    radius.UserLogon_UserDomain  UserLogon-UserDomain
        String
    radius.UserLogon_UserDomain.len  Length
        Unsigned 8-bit integer
        UserLogon-UserDomain Length
    radius.UserLogon_UserFullName  UserLogon-UserFullName
        String
    radius.UserLogon_UserFullName.len  Length
        Unsigned 8-bit integer
        UserLogon-UserFullName Length
    radius.UserLogon_UserProfile  UserLogon-UserProfile
        String
    radius.UserLogon_UserProfile.len  Length
        Unsigned 8-bit integer
        UserLogon-UserProfile Length
    radius.User_Name  User-Name
        String
    radius.User_Name.len  Length
        Unsigned 8-bit integer
        User-Name Length
    radius.User_Password  User-Password
        String
    radius.User_Password.len  Length
        Unsigned 8-bit integer
        User-Password Length
    radius.User_Priority_Table  User-Priority-Table
        Byte array
    radius.User_Priority_Table.len  Length
        Unsigned 8-bit integer
        User-Priority-Table Length
    radius.VNC_PPPoE_CBQ_RX  VNC-PPPoE-CBQ-RX
        Unsigned 32-bit integer
    radius.VNC_PPPoE_CBQ_RX.len  Length
        Unsigned 8-bit integer
        VNC-PPPoE-CBQ-RX Length
    radius.VNC_PPPoE_CBQ_RX_Fallback  VNC-PPPoE-CBQ-RX-Fallback
        Unsigned 32-bit integer
    radius.VNC_PPPoE_CBQ_RX_Fallback.len  Length
        Unsigned 8-bit integer
        VNC-PPPoE-CBQ-RX-Fallback Length
    radius.VNC_PPPoE_CBQ_TX  VNC-PPPoE-CBQ-TX
        Unsigned 32-bit integer
    radius.VNC_PPPoE_CBQ_TX.len  Length
        Unsigned 8-bit integer
        VNC-PPPoE-CBQ-TX Length
    radius.VNC_PPPoE_CBQ_TX_Fallback  VNC-PPPoE-CBQ-TX-Fallback
        Unsigned 32-bit integer
    radius.VNC_PPPoE_CBQ_TX_Fallback.len  Length
        Unsigned 8-bit integer
        VNC-PPPoE-CBQ-TX-Fallback Length
    radius.VNC_Splash  VNC-Splash
        Unsigned 32-bit integer
    radius.VNC_Splash.len  Length
        Unsigned 8-bit integer
        VNC-Splash Length
    radius.Vendor_Specific  Vendor-Specific
        Byte array
    radius.Vendor_Specific.len  Length
        Unsigned 8-bit integer
        Vendor-Specific Length
    radius.Versanet_Termination_Cause  Versanet-Termination-Cause
        Unsigned 32-bit integer
    radius.Versanet_Termination_Cause.len  Length
        Unsigned 8-bit integer
        Versanet-Termination-Cause Length
    radius.Vlan_Source_Info  Vlan-Source-Info
        String
    radius.Vlan_Source_Info.len  Length
        Unsigned 8-bit integer
        Vlan-Source-Info Length
    radius.WB_AUTH_Time_Left  WB-AUTH-Time-Left
        Unsigned 32-bit integer
    radius.WB_AUTH_Time_Left.len  Length
        Unsigned 8-bit integer
        WB-AUTH-Time-Left Length
    radius.WB_Auth_Accum_BW  WB-Auth-Accum-BW
        Unsigned 32-bit integer
    radius.WB_Auth_Accum_BW.len  Length
        Unsigned 8-bit integer
        WB-Auth-Accum-BW Length
    radius.WB_Auth_BW_Count  WB-Auth-BW-Count
        Unsigned 32-bit integer
    radius.WB_Auth_BW_Count.len  Length
        Unsigned 8-bit integer
        WB-Auth-BW-Count Length
    radius.WB_Auth_BW_Quota  WB-Auth-BW-Quota
        Unsigned 32-bit integer
    radius.WB_Auth_BW_Quota.len  Length
        Unsigned 8-bit integer
        WB-Auth-BW-Quota Length
    radius.WB_Auth_BW_Usage  WB-Auth-BW-Usage
        Unsigned 32-bit integer
    radius.WB_Auth_BW_Usage.len  Length
        Unsigned 8-bit integer
        WB-Auth-BW-Usage Length
    radius.WB_Auth_Download_Limit  WB-Auth-Download-Limit
        Unsigned 32-bit integer
    radius.WB_Auth_Download_Limit.len  Length
        Unsigned 8-bit integer
        WB-Auth-Download-Limit Length
    radius.WB_Auth_Login_Time  WB-Auth-Login-Time
        Unsigned 32-bit integer
    radius.WB_Auth_Login_Time.len  Length
        Unsigned 8-bit integer
        WB-Auth-Login-Time Length
    radius.WB_Auth_Logout_Time  WB-Auth-Logout-Time
        Unsigned 32-bit integer
    radius.WB_Auth_Logout_Time.len  Length
        Unsigned 8-bit integer
        WB-Auth-Logout-Time Length
    radius.WB_Auth_Time_Diff  WB-Auth-Time-Diff
        Unsigned 32-bit integer
    radius.WB_Auth_Time_Diff.len  Length
        Unsigned 8-bit integer
        WB-Auth-Time-Diff Length
    radius.WB_Auth_Upload_Limit  WB-Auth-Upload-Limit
        Unsigned 32-bit integer
    radius.WB_Auth_Upload_Limit.len  Length
        Unsigned 8-bit integer
        WB-Auth-Upload-Limit Length
    radius.WISPr_Bandwidth_Max_Down  WISPr-Bandwidth-Max-Down
        Unsigned 32-bit integer
    radius.WISPr_Bandwidth_Max_Down.len  Length
        Unsigned 8-bit integer
        WISPr-Bandwidth-Max-Down Length
    radius.WISPr_Bandwidth_Max_Up  WISPr-Bandwidth-Max-Up
        Unsigned 32-bit integer
    radius.WISPr_Bandwidth_Max_Up.len  Length
        Unsigned 8-bit integer
        WISPr-Bandwidth-Max-Up Length
    radius.WISPr_Bandwidth_Min_Down  WISPr-Bandwidth-Min-Down
        Unsigned 32-bit integer
    radius.WISPr_Bandwidth_Min_Down.len  Length
        Unsigned 8-bit integer
        WISPr-Bandwidth-Min-Down Length
    radius.WISPr_Bandwidth_Min_Up  WISPr-Bandwidth-Min-Up
        Unsigned 32-bit integer
    radius.WISPr_Bandwidth_Min_Up.len  Length
        Unsigned 8-bit integer
        WISPr-Bandwidth-Min-Up Length
    radius.WISPr_Billing_Class_Of_Service  WISPr-Billing-Class-Of-Service
        String
    radius.WISPr_Billing_Class_Of_Service.len  Length
        Unsigned 8-bit integer
        WISPr-Billing-Class-Of-Service Length
    radius.WISPr_Location_ID  WISPr-Location-ID
        String
    radius.WISPr_Location_ID.len  Length
        Unsigned 8-bit integer
        WISPr-Location-ID Length
    radius.WISPr_Location_Name  WISPr-Location-Name
        String
    radius.WISPr_Location_Name.len  Length
        Unsigned 8-bit integer
        WISPr-Location-Name Length
    radius.WISPr_Logoff_URL  WISPr-Logoff-URL
        String
    radius.WISPr_Logoff_URL.len  Length
        Unsigned 8-bit integer
        WISPr-Logoff-URL Length
    radius.WISPr_Redirection_URL  WISPr-Redirection-URL
        String
    radius.WISPr_Redirection_URL.len  Length
        Unsigned 8-bit integer
        WISPr-Redirection-URL Length
    radius.WISPr_Session_Terminate_End_Of_Day  WISPr-Session-Terminate-End-Of-Day
        String
    radius.WISPr_Session_Terminate_End_Of_Day.len  Length
        Unsigned 8-bit integer
        WISPr-Session-Terminate-End-Of-Day Length
    radius.WISPr_Session_Terminate_Time  WISPr-Session-Terminate-Time
        String
    radius.WISPr_Session_Terminate_Time.len  Length
        Unsigned 8-bit integer
        WISPr-Session-Terminate-Time Length
    radius.Waverider_Authentication_Key  Waverider-Authentication-Key
        String
    radius.Waverider_Authentication_Key.len  Length
        Unsigned 8-bit integer
        Waverider-Authentication-Key Length
    radius.Waverider_Current_Password  Waverider-Current-Password
        String
    radius.Waverider_Current_Password.len  Length
        Unsigned 8-bit integer
        Waverider-Current-Password Length
    radius.Waverider_Grade_Of_Service  Waverider-Grade-Of-Service
        Unsigned 32-bit integer
    radius.Waverider_Grade_Of_Service.len  Length
        Unsigned 8-bit integer
        Waverider-Grade-Of-Service Length
    radius.Waverider_Max_Customers  Waverider-Max-Customers
        Unsigned 32-bit integer
    radius.Waverider_Max_Customers.len  Length
        Unsigned 8-bit integer
        Waverider-Max-Customers Length
    radius.Waverider_New_Password  Waverider-New-Password
        String
    radius.Waverider_New_Password.len  Length
        Unsigned 8-bit integer
        Waverider-New-Password Length
    radius.Waverider_Priority_Enabled  Waverider-Priority-Enabled
        Unsigned 32-bit integer
    radius.Waverider_Priority_Enabled.len  Length
        Unsigned 8-bit integer
        Waverider-Priority-Enabled Length
    radius.Waverider_Radio_Frequency  Waverider-Radio-Frequency
        Unsigned 32-bit integer
    radius.Waverider_Radio_Frequency.len  Length
        Unsigned 8-bit integer
        Waverider-Radio-Frequency Length
    radius.Waverider_Rf_Power  Waverider-Rf-Power
        Unsigned 32-bit integer
    radius.Waverider_Rf_Power.len  Length
        Unsigned 8-bit integer
        Waverider-Rf-Power Length
    radius.Waverider_SNMP_Contact  Waverider-SNMP-Contact
        String
    radius.Waverider_SNMP_Contact.len  Length
        Unsigned 8-bit integer
        Waverider-SNMP-Contact Length
    radius.Waverider_SNMP_Location  Waverider-SNMP-Location
        String
    radius.Waverider_SNMP_Location.len  Length
        Unsigned 8-bit integer
        Waverider-SNMP-Location Length
    radius.Waverider_SNMP_Name  Waverider-SNMP-Name
        String
    radius.Waverider_SNMP_Name.len  Length
        Unsigned 8-bit integer
        Waverider-SNMP-Name Length
    radius.Waverider_SNMP_Read_Community  Waverider-SNMP-Read-Community
        String
    radius.Waverider_SNMP_Read_Community.len  Length
        Unsigned 8-bit integer
        Waverider-SNMP-Read-Community Length
    radius.Waverider_SNMP_Trap_Server  Waverider-SNMP-Trap-Server
        String
    radius.Waverider_SNMP_Trap_Server.len  Length
        Unsigned 8-bit integer
        Waverider-SNMP-Trap-Server Length
    radius.Waverider_SNMP_Write_Community  Waverider-SNMP-Write-Community
        String
    radius.Waverider_SNMP_Write_Community.len  Length
        Unsigned 8-bit integer
        Waverider-SNMP-Write-Community Length
    radius.WiMAX_AAA_Session_Id  WiMAX-AAA-Session-Id
        Byte array
    radius.WiMAX_AAA_Session_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-AAA-Session-Id Length
    radius.WiMAX_Accounting_Capabilities  WiMAX-Accounting-Capabilities
        Unsigned 32-bit integer
    radius.WiMAX_Accounting_Capabilities.len  Length
        Unsigned 8-bit integer
        WiMAX-Accounting-Capabilities Length
    radius.WiMAX_Acct_Input_Packets_Gigaword  WiMAX-Acct-Input-Packets-Gigaword
        Unsigned 32-bit integer
    radius.WiMAX_Acct_Input_Packets_Gigaword.len  Length
        Unsigned 8-bit integer
        WiMAX-Acct-Input-Packets-Gigaword Length
    radius.WiMAX_Acct_Output_Packets_Gigaword  WiMAX-Acct-Output-Packets-Gigaword
        Unsigned 32-bit integer
    radius.WiMAX_Acct_Output_Packets_Gigaword.len  Length
        Unsigned 8-bit integer
        WiMAX-Acct-Output-Packets-Gigaword Length
    radius.WiMAX_Activation_Trigger  WiMAX-Activation-Trigger
        Unsigned 32-bit integer
    radius.WiMAX_Activation_Trigger.len  Length
        Unsigned 8-bit integer
        WiMAX-Activation-Trigger Length
    radius.WiMAX_Active_Time_Duration  WiMAX-Active-Time-Duration
        Unsigned 32-bit integer
    radius.WiMAX_Active_Time_Duration.len  Length
        Unsigned 8-bit integer
        WiMAX-Active-Time-Duration Length
    radius.WiMAX_Available_In_Client  WiMAX-Available-In-Client
        Unsigned 32-bit integer
    radius.WiMAX_Available_In_Client.len  Length
        Unsigned 8-bit integer
        WiMAX-Available-In-Client Length
    radius.WiMAX_BS_Id  WiMAX-BS-Id
        Byte array
    radius.WiMAX_BS_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-BS-Id Length
    radius.WiMAX_Beginning_Of_Session  WiMAX-Beginning-Of-Session
        Unsigned 32-bit integer
    radius.WiMAX_Beginning_Of_Session.len  Length
        Unsigned 8-bit integer
        WiMAX-Beginning-Of-Session Length
    radius.WiMAX_Blu_Coa_IPv6  WiMAX-Blu-Coa-IPv6
        IPv6 address
    radius.WiMAX_Blu_Coa_IPv6.len  Length
        Unsigned 8-bit integer
        WiMAX-Blu-Coa-IPv6 Length
    radius.WiMAX_Capability  WiMAX-Capability
        Byte array
    radius.WiMAX_Capability.len  Length
        Unsigned 8-bit integer
        WiMAX-Capability Length
    radius.WiMAX_Check_Balance_Result  WiMAX-Check-Balance-Result
        Unsigned 32-bit integer
    radius.WiMAX_Check_Balance_Result.len  Length
        Unsigned 8-bit integer
        WiMAX-Check-Balance-Result Length
    radius.WiMAX_Control_Octets_In  WiMAX-Control-Octets-In
        Unsigned 32-bit integer
    radius.WiMAX_Control_Octets_In.len  Length
        Unsigned 8-bit integer
        WiMAX-Control-Octets-In Length
    radius.WiMAX_Control_Octets_Out  WiMAX-Control-Octets-Out
        Unsigned 32-bit integer
    radius.WiMAX_Control_Octets_Out.len  Length
        Unsigned 8-bit integer
        WiMAX-Control-Octets-Out Length
    radius.WiMAX_Control_Packets_In  WiMAX-Control-Packets-In
        Unsigned 32-bit integer
    radius.WiMAX_Control_Packets_In.len  Length
        Unsigned 8-bit integer
        WiMAX-Control-Packets-In Length
    radius.WiMAX_Control_Packets_Out  WiMAX-Control-Packets-Out
        Unsigned 32-bit integer
    radius.WiMAX_Control_Packets_Out.len  Length
        Unsigned 8-bit integer
        WiMAX-Control-Packets-Out Length
    radius.WiMAX_Cost_Information_AVP  WiMAX-Cost-Information-AVP
        Byte array
    radius.WiMAX_Cost_Information_AVP.len  Length
        Unsigned 8-bit integer
        WiMAX-Cost-Information-AVP Length
    radius.WiMAX_Count_Type  WiMAX-Count-Type
        Unsigned 32-bit integer
    radius.WiMAX_Count_Type.len  Length
        Unsigned 8-bit integer
        WiMAX-Count-Type Length
    radius.WiMAX_DHCP_Msg_Server_IP  WiMAX-DHCP-Msg-Server-IP
        IPv4 address
    radius.WiMAX_DHCP_Msg_Server_IP.len  Length
        Unsigned 8-bit integer
        WiMAX-DHCP-Msg-Server-IP Length
    radius.WiMAX_DHCP_RK  WiMAX-DHCP-RK
        Byte array
    radius.WiMAX_DHCP_RK.len  Length
        Unsigned 8-bit integer
        WiMAX-DHCP-RK Length
    radius.WiMAX_DHCP_RK_Key_Id  WiMAX-DHCP-RK-Key-Id
        Unsigned 32-bit integer
    radius.WiMAX_DHCP_RK_Key_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-DHCP-RK-Key-Id Length
    radius.WiMAX_DHCP_RK_Lifetime  WiMAX-DHCP-RK-Lifetime
        Unsigned 32-bit integer
    radius.WiMAX_DHCP_RK_Lifetime.len  Length
        Unsigned 8-bit integer
        WiMAX-DHCP-RK-Lifetime Length
    radius.WiMAX_DHCPv4_Server  WiMAX-DHCPv4-Server
        IPv4 address
    radius.WiMAX_DHCPv4_Server.len  Length
        Unsigned 8-bit integer
        WiMAX-DHCPv4-Server Length
    radius.WiMAX_DHCPv6_Server  WiMAX-DHCPv6-Server
        IPv4 address
    radius.WiMAX_DHCPv6_Server.len  Length
        Unsigned 8-bit integer
        WiMAX-DHCPv6-Server Length
    radius.WiMAX_DM_Action_Code  WiMAX-DM-Action-Code
        Unsigned 32-bit integer
    radius.WiMAX_DM_Action_Code.len  Length
        Unsigned 8-bit integer
        WiMAX-DM-Action-Code Length
    radius.WiMAX_DNS_Server  WiMAX-DNS-Server
        IPv4 address
    radius.WiMAX_DNS_Server.len  Length
        Unsigned 8-bit integer
        WiMAX-DNS-Server Length
    radius.WiMAX_Device_Authentication_Indicator  WiMAX-Device-Authentication-Indicator
        Unsigned 32-bit integer
    radius.WiMAX_Device_Authentication_Indicator.len  Length
        Unsigned 8-bit integer
        WiMAX-Device-Authentication-Indicator Length
    radius.WiMAX_Direction  WiMAX-Direction
        Unsigned 32-bit integer
    radius.WiMAX_Direction.len  Length
        Unsigned 8-bit integer
        WiMAX-Direction Length
    radius.WiMAX_Downlink_Classifier  WiMAX-Downlink-Classifier
        String
    radius.WiMAX_Downlink_Classifier.len  Length
        Unsigned 8-bit integer
        WiMAX-Downlink-Classifier Length
    radius.WiMAX_Downlink_Flow_Description  WiMAX-Downlink-Flow-Description
        String
    radius.WiMAX_Downlink_Flow_Description.len  Length
        Unsigned 8-bit integer
        WiMAX-Downlink-Flow-Description Length
    radius.WiMAX_Downlink_Granted_QoS  WiMAX-Downlink-Granted-QoS
        Byte array
    radius.WiMAX_Downlink_Granted_QoS.len  Length
        Unsigned 8-bit integer
        WiMAX-Downlink-Granted-QoS Length
    radius.WiMAX_Downlink_QOS_Id  WiMAX-Downlink-QOS-Id
        Unsigned 32-bit integer
    radius.WiMAX_Downlink_QOS_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-Downlink-QOS-Id Length
    radius.WiMAX_Duration_Quota  WiMAX-Duration-Quota
        Unsigned 32-bit integer
    radius.WiMAX_Duration_Quota.len  Length
        Unsigned 8-bit integer
        WiMAX-Duration-Quota Length
    radius.WiMAX_Duration_Threshold  WiMAX-Duration-Threshold
        Unsigned 32-bit integer
    radius.WiMAX_Duration_Threshold.len  Length
        Unsigned 8-bit integer
        WiMAX-Duration-Threshold Length
    radius.WiMAX_FA_RK_Key  WiMAX-FA-RK-Key
        Byte array
    radius.WiMAX_FA_RK_Key.len  Length
        Unsigned 8-bit integer
        WiMAX-FA-RK-Key Length
    radius.WiMAX_FA_RK_SPI  WiMAX-FA-RK-SPI
        Unsigned 32-bit integer
    radius.WiMAX_FA_RK_SPI.len  Length
        Unsigned 8-bit integer
        WiMAX-FA-RK-SPI Length
    radius.WiMAX_GMT_Timezone_offset  WiMAX-GMT-Timezone-offset
        Signed 32-bit integer
    radius.WiMAX_GMT_Timezone_offset.len  Length
        Unsigned 8-bit integer
        WiMAX-GMT-Timezone-offset Length
    radius.WiMAX_Global_Service_Class_Name  WiMAX-Global-Service-Class-Name
        String
    radius.WiMAX_Global_Service_Class_Name.len  Length
        Unsigned 8-bit integer
        WiMAX-Global-Service-Class-Name Length
    radius.WiMAX_HA_RK_Key  WiMAX-HA-RK-Key
        Byte array
    radius.WiMAX_HA_RK_Key.len  Length
        Unsigned 8-bit integer
        WiMAX-HA-RK-Key Length
    radius.WiMAX_HA_RK_Key_Requested  WiMAX-HA-RK-Key-Requested
        Unsigned 32-bit integer
    radius.WiMAX_HA_RK_Key_Requested.len  Length
        Unsigned 8-bit integer
        WiMAX-HA-RK-Key-Requested Length
    radius.WiMAX_HA_RK_Lifetime  WiMAX-HA-RK-Lifetime
        Unsigned 32-bit integer
    radius.WiMAX_HA_RK_Lifetime.len  Length
        Unsigned 8-bit integer
        WiMAX-HA-RK-Lifetime Length
    radius.WiMAX_HA_RK_SPI  WiMAX-HA-RK-SPI
        Unsigned 32-bit integer
    radius.WiMAX_HA_RK_SPI.len  Length
        Unsigned 8-bit integer
        WiMAX-HA-RK-SPI Length
    radius.WiMAX_HTTP_Redirection_Rule  WiMAX-HTTP-Redirection-Rule
        String
    radius.WiMAX_HTTP_Redirection_Rule.len  Length
        Unsigned 8-bit integer
        WiMAX-HTTP-Redirection-Rule Length
    radius.WiMAX_Hotline_Indicator  WiMAX-Hotline-Indicator
        String
    radius.WiMAX_Hotline_Indicator.len  Length
        Unsigned 8-bit integer
        WiMAX-Hotline-Indicator Length
    radius.WiMAX_Hotline_Profile_Id  WiMAX-Hotline-Profile-Id
        String
    radius.WiMAX_Hotline_Profile_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-Hotline-Profile-Id Length
    radius.WiMAX_Hotline_Session_Timer  WiMAX-Hotline-Session-Timer
        Unsigned 32-bit integer
    radius.WiMAX_Hotline_Session_Timer.len  Length
        Unsigned 8-bit integer
        WiMAX-Hotline-Session-Timer Length
    radius.WiMAX_Hotlining_Capabilities  WiMAX-Hotlining-Capabilities
        Unsigned 32-bit integer
    radius.WiMAX_Hotlining_Capabilities.len  Length
        Unsigned 8-bit integer
        WiMAX-Hotlining-Capabilities Length
    radius.WiMAX_IP_Redirection_Rule  WiMAX-IP-Redirection-Rule
        String
    radius.WiMAX_IP_Redirection_Rule.len  Length
        Unsigned 8-bit integer
        WiMAX-IP-Redirection-Rule Length
    radius.WiMAX_IP_Technology  WiMAX-IP-Technology
        Unsigned 32-bit integer
    radius.WiMAX_IP_Technology.len  Length
        Unsigned 8-bit integer
        WiMAX-IP-Technology Length
    radius.WiMAX_Idle_Mode_Notification_Cap  WiMAX-Idle-Mode-Notification-Cap
        Unsigned 32-bit integer
    radius.WiMAX_Idle_Mode_Notification_Cap.len  Length
        Unsigned 8-bit integer
        WiMAX-Idle-Mode-Notification-Cap Length
    radius.WiMAX_Idle_Mode_Transition  WiMAX-Idle-Mode-Transition
        Unsigned 32-bit integer
    radius.WiMAX_Idle_Mode_Transition.len  Length
        Unsigned 8-bit integer
        WiMAX-Idle-Mode-Transition Length
    radius.WiMAX_Location  WiMAX-Location
        Byte array
    radius.WiMAX_Location.len  Length
        Unsigned 8-bit integer
        WiMAX-Location Length
    radius.WiMAX_MN_hHA_MIP4_Key  WiMAX-MN-hHA-MIP4-Key
        Byte array
    radius.WiMAX_MN_hHA_MIP4_Key.len  Length
        Unsigned 8-bit integer
        WiMAX-MN-hHA-MIP4-Key Length
    radius.WiMAX_MN_hHA_MIP4_SPI  WiMAX-MN-hHA-MIP4-SPI
        Unsigned 32-bit integer
    radius.WiMAX_MN_hHA_MIP4_SPI.len  Length
        Unsigned 8-bit integer
        WiMAX-MN-hHA-MIP4-SPI Length
    radius.WiMAX_MN_hHA_MIP6_Key  WiMAX-MN-hHA-MIP6-Key
        Byte array
    radius.WiMAX_MN_hHA_MIP6_Key.len  Length
        Unsigned 8-bit integer
        WiMAX-MN-hHA-MIP6-Key Length
    radius.WiMAX_MN_hHA_MIP6_SPI  WiMAX-MN-hHA-MIP6-SPI
        Unsigned 32-bit integer
    radius.WiMAX_MN_hHA_MIP6_SPI.len  Length
        Unsigned 8-bit integer
        WiMAX-MN-hHA-MIP6-SPI Length
    radius.WiMAX_MN_vHA_MIP4_SPI  WiMAX-MN-vHA-MIP4-SPI
        Unsigned 32-bit integer
    radius.WiMAX_MN_vHA_MIP4_SPI.len  Length
        Unsigned 8-bit integer
        WiMAX-MN-vHA-MIP4-SPI Length
    radius.WiMAX_MN_vHA_MIP6_Key  WiMAX-MN-vHA-MIP6-Key
        Byte array
    radius.WiMAX_MN_vHA_MIP6_Key.len  Length
        Unsigned 8-bit integer
        WiMAX-MN-vHA-MIP6-Key Length
    radius.WiMAX_MN_vHA_MIP6_SPI  WiMAX-MN-vHA-MIP6-SPI
        Unsigned 32-bit integer
    radius.WiMAX_MN_vHA_MIP6_SPI.len  Length
        Unsigned 8-bit integer
        WiMAX-MN-vHA-MIP6-SPI Length
    radius.WiMAX_MSK  WiMAX-MSK
        Byte array
    radius.WiMAX_MSK.len  Length
        Unsigned 8-bit integer
        WiMAX-MSK Length
    radius.WiMAX_Maximum_Latency  WiMAX-Maximum-Latency
        Unsigned 32-bit integer
    radius.WiMAX_Maximum_Latency.len  Length
        Unsigned 8-bit integer
        WiMAX-Maximum-Latency Length
    radius.WiMAX_Maximum_Sustained_Traffic_Rate  WiMAX-Maximum-Sustained-Traffic-Rate
        Unsigned 32-bit integer
    radius.WiMAX_Maximum_Sustained_Traffic_Rate.len  Length
        Unsigned 8-bit integer
        WiMAX-Maximum-Sustained-Traffic-Rate Length
    radius.WiMAX_Maximum_Traffic_Burst  WiMAX-Maximum-Traffic-Burst
        Unsigned 32-bit integer
    radius.WiMAX_Maximum_Traffic_Burst.len  Length
        Unsigned 8-bit integer
        WiMAX-Maximum-Traffic-Burst Length
    radius.WiMAX_Media_Flow_Description_SDP  WiMAX-Media-Flow-Description-SDP
        String
    radius.WiMAX_Media_Flow_Description_SDP.len  Length
        Unsigned 8-bit integer
        WiMAX-Media-Flow-Description-SDP Length
    radius.WiMAX_Media_Flow_Type  WiMAX-Media-Flow-Type
        Unsigned 32-bit integer
    radius.WiMAX_Media_Flow_Type.len  Length
        Unsigned 8-bit integer
        WiMAX-Media-Flow-Type Length
    radius.WiMAX_Minimum_Reserved_Traffic_Rate  WiMAX-Minimum-Reserved-Traffic-Rate
        Unsigned 32-bit integer
    radius.WiMAX_Minimum_Reserved_Traffic_Rate.len  Length
        Unsigned 8-bit integer
        WiMAX-Minimum-Reserved-Traffic-Rate Length
    radius.WiMAX_NAP_Id  WiMAX-NAP-Id
        Byte array
    radius.WiMAX_NAP_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-NAP-Id Length
    radius.WiMAX_NSP_Id  WiMAX-NSP-Id
        Byte array
    radius.WiMAX_NSP_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-NSP-Id Length
    radius.WiMAX_PDFID  WiMAX-PDFID
        Unsigned 32-bit integer
    radius.WiMAX_PDFID.len  Length
        Unsigned 8-bit integer
        WiMAX-PDFID Length
    radius.WiMAX_PPAC  WiMAX-PPAC
        Byte array
    radius.WiMAX_PPAC.len  Length
        Unsigned 8-bit integer
        WiMAX-PPAC Length
    radius.WiMAX_PPAQ  WiMAX-PPAQ
        Byte array
    radius.WiMAX_PPAQ.len  Length
        Unsigned 8-bit integer
        WiMAX-PPAQ Length
    radius.WiMAX_PPAQ_Quota_Identifier  WiMAX-PPAQ-Quota-Identifier
        Byte array
    radius.WiMAX_PPAQ_Quota_Identifier.len  Length
        Unsigned 8-bit integer
        WiMAX-PPAQ-Quota-Identifier Length
    radius.WiMAX_Packet_Data_Flow_Id  WiMAX-Packet-Data-Flow-Id
        Unsigned 32-bit integer
    radius.WiMAX_Packet_Data_Flow_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-Packet-Data-Flow-Id Length
    radius.WiMAX_Packet_Flow_Descriptor  WiMAX-Packet-Flow-Descriptor
        Byte array
    radius.WiMAX_Packet_Flow_Descriptor.len  Length
        Unsigned 8-bit integer
        WiMAX-Packet-Flow-Descriptor Length
    radius.WiMAX_Pool_Id  WiMAX-Pool-Id
        Unsigned 32-bit integer
    radius.WiMAX_Pool_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-Pool-Id Length
    radius.WiMAX_Pool_Multiplier  WiMAX-Pool-Multiplier
        Unsigned 32-bit integer
    radius.WiMAX_Pool_Multiplier.len  Length
        Unsigned 8-bit integer
        WiMAX-Pool-Multiplier Length
    radius.WiMAX_Prepaid_Indicator  WiMAX-Prepaid-Indicator
        Unsigned 32-bit integer
    radius.WiMAX_Prepaid_Indicator.len  Length
        Unsigned 8-bit integer
        WiMAX-Prepaid-Indicator Length
    radius.WiMAX_Prepaid_Quota_Identifier  WiMAX-Prepaid-Quota-Identifier
        String
    radius.WiMAX_Prepaid_Quota_Identifier.len  Length
        Unsigned 8-bit integer
        WiMAX-Prepaid-Quota-Identifier Length
    radius.WiMAX_Prepaid_Server  WiMAX-Prepaid-Server
        IPv4 address
    radius.WiMAX_Prepaid_Server.len  Length
        Unsigned 8-bit integer
        WiMAX-Prepaid-Server Length
    radius.WiMAX_Prepaid_Tariff_Switching  WiMAX-Prepaid-Tariff-Switching
        Byte array
    radius.WiMAX_Prepaid_Tariff_Switching.len  Length
        Unsigned 8-bit integer
        WiMAX-Prepaid-Tariff-Switching Length
    radius.WiMAX_QoS_Descriptor  WiMAX-QoS-Descriptor
        Byte array
    radius.WiMAX_QoS_Descriptor.len  Length
        Unsigned 8-bit integer
        WiMAX-QoS-Descriptor Length
    radius.WiMAX_QoS_Id  WiMAX-QoS-Id
        Unsigned 32-bit integer
    radius.WiMAX_QoS_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-QoS-Id Length
    radius.WiMAX_RRQ_HA_IP  WiMAX-RRQ-HA-IP
        IPv4 address
    radius.WiMAX_RRQ_HA_IP.len  Length
        Unsigned 8-bit integer
        WiMAX-RRQ-HA-IP Length
    radius.WiMAX_RRQ_MN_HA_Key  WiMAX-RRQ-MN-HA-Key
        Byte array
    radius.WiMAX_RRQ_MN_HA_Key.len  Length
        Unsigned 8-bit integer
        WiMAX-RRQ-MN-HA-Key Length
    radius.WiMAX_RRQ_MN_HA_SPI  WiMAX-RRQ-MN-HA-SPI
        Unsigned 32-bit integer
    radius.WiMAX_RRQ_MN_HA_SPI.len  Length
        Unsigned 8-bit integer
        WiMAX-RRQ-MN-HA-SPI Length
    radius.WiMAX_Rating_Group_Id  WiMAX-Rating-Group-Id
        Unsigned 32-bit integer
    radius.WiMAX_Rating_Group_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-Rating-Group-Id Length
    radius.WiMAX_Reduced_Resources_Code  WiMAX-Reduced-Resources-Code
        Unsigned 32-bit integer
    radius.WiMAX_Reduced_Resources_Code.len  Length
        Unsigned 8-bit integer
        WiMAX-Reduced-Resources-Code Length
    radius.WiMAX_Release  WiMAX-Release
        String
    radius.WiMAX_Release.len  Length
        Unsigned 8-bit integer
        WiMAX-Release Length
    radius.WiMAX_Requested_Action  WiMAX-Requested-Action
        Unsigned 32-bit integer
    radius.WiMAX_Requested_Action.len  Length
        Unsigned 8-bit integer
        WiMAX-Requested-Action Length
    radius.WiMAX_Resource_Quota  WiMAX-Resource-Quota
        Unsigned 32-bit integer
    radius.WiMAX_Resource_Quota.len  Length
        Unsigned 8-bit integer
        WiMAX-Resource-Quota Length
    radius.WiMAX_Resource_Threshold  WiMAX-Resource-Threshold
        Unsigned 32-bit integer
    radius.WiMAX_Resource_Threshold.len  Length
        Unsigned 8-bit integer
        WiMAX-Resource-Threshold Length
    radius.WiMAX_SDFID  WiMAX-SDFID
        Unsigned 32-bit integer
    radius.WiMAX_SDFID.len  Length
        Unsigned 8-bit integer
        WiMAX-SDFID Length
    radius.WiMAX_SDU_Size  WiMAX-SDU-Size
        Unsigned 32-bit integer
    radius.WiMAX_SDU_Size.len  Length
        Unsigned 8-bit integer
        WiMAX-SDU-Size Length
    radius.WiMAX_Schedule_Type  WiMAX-Schedule-Type
        Unsigned 32-bit integer
    radius.WiMAX_Schedule_Type.len  Length
        Unsigned 8-bit integer
        WiMAX-Schedule-Type Length
    radius.WiMAX_Service_Class_Name  WiMAX-Service-Class-Name
        String
    radius.WiMAX_Service_Class_Name.len  Length
        Unsigned 8-bit integer
        WiMAX-Service-Class-Name Length
    radius.WiMAX_Service_Data_Flow_Id  WiMAX-Service-Data-Flow-Id
        Unsigned 32-bit integer
    radius.WiMAX_Service_Data_Flow_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-Service-Data-Flow-Id Length
    radius.WiMAX_Service_Id  WiMAX-Service-Id
        String
    radius.WiMAX_Service_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-Service-Id Length
    radius.WiMAX_Service_Profile_Id  WiMAX-Service-Profile-Id
        Unsigned 32-bit integer
    radius.WiMAX_Service_Profile_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-Service-Profile-Id Length
    radius.WiMAX_Session_Continue  WiMAX-Session-Continue
        Unsigned 32-bit integer
    radius.WiMAX_Session_Continue.len  Length
        Unsigned 8-bit integer
        WiMAX-Session-Continue Length
    radius.WiMAX_Session_Termination_Capability  WiMAX-Session-Termination-Capability
        Unsigned 32-bit integer
    radius.WiMAX_Session_Termination_Capability.len  Length
        Unsigned 8-bit integer
        WiMAX-Session-Termination-Capability Length
    radius.WiMAX_Tariff_Switch_Interval  WiMAX-Tariff-Switch-Interval
        Unsigned 32-bit integer
    radius.WiMAX_Tariff_Switch_Interval.len  Length
        Unsigned 8-bit integer
        WiMAX-Tariff-Switch-Interval Length
    radius.WiMAX_Termination_Action  WiMAX-Termination-Action
        Unsigned 32-bit integer
    radius.WiMAX_Termination_Action.len  Length
        Unsigned 8-bit integer
        WiMAX-Termination-Action Length
    radius.WiMAX_Time_Interval_After  WiMAX-Time-Interval-After
        Unsigned 32-bit integer
    radius.WiMAX_Time_Interval_After.len  Length
        Unsigned 8-bit integer
        WiMAX-Time-Interval-After Length
    radius.WiMAX_Tolerated_Jitter  WiMAX-Tolerated-Jitter
        Unsigned 32-bit integer
    radius.WiMAX_Tolerated_Jitter.len  Length
        Unsigned 8-bit integer
        WiMAX-Tolerated-Jitter Length
    radius.WiMAX_Traffic_Priority  WiMAX-Traffic-Priority
        Unsigned 32-bit integer
    radius.WiMAX_Traffic_Priority.len  Length
        Unsigned 8-bit integer
        WiMAX-Traffic-Priority Length
    radius.WiMAX_Transport_Type  WiMAX-Transport-Type
        Unsigned 32-bit integer
    radius.WiMAX_Transport_Type.len  Length
        Unsigned 8-bit integer
        WiMAX-Transport-Type Length
    radius.WiMAX_Unsolicited_Grant_Interval  WiMAX-Unsolicited-Grant-Interval
        Unsigned 32-bit integer
    radius.WiMAX_Unsolicited_Grant_Interval.len  Length
        Unsigned 8-bit integer
        WiMAX-Unsolicited-Grant-Interval Length
    radius.WiMAX_Unsolicited_Polling_Interval  WiMAX-Unsolicited-Polling-Interval
        Unsigned 32-bit integer
    radius.WiMAX_Unsolicited_Polling_Interval.len  Length
        Unsigned 8-bit integer
        WiMAX-Unsolicited-Polling-Interval Length
    radius.WiMAX_Update_Reason  WiMAX-Update-Reason
        Unsigned 32-bit integer
    radius.WiMAX_Update_Reason.len  Length
        Unsigned 8-bit integer
        WiMAX-Update-Reason Length
    radius.WiMAX_Uplink_Classifier  WiMAX-Uplink-Classifier
        String
    radius.WiMAX_Uplink_Classifier.len  Length
        Unsigned 8-bit integer
        WiMAX-Uplink-Classifier Length
    radius.WiMAX_Uplink_Flow_Description  WiMAX-Uplink-Flow-Description
        String
    radius.WiMAX_Uplink_Flow_Description.len  Length
        Unsigned 8-bit integer
        WiMAX-Uplink-Flow-Description Length
    radius.WiMAX_Uplink_Granted_QoS  WiMAX-Uplink-Granted-QoS
        String
    radius.WiMAX_Uplink_Granted_QoS.len  Length
        Unsigned 8-bit integer
        WiMAX-Uplink-Granted-QoS Length
    radius.WiMAX_Uplink_QOS_Id  WiMAX-Uplink-QOS-Id
        Unsigned 32-bit integer
    radius.WiMAX_Uplink_QOS_Id.len  Length
        Unsigned 8-bit integer
        WiMAX-Uplink-QOS-Id Length
    radius.WiMAX_Volume_Quota  WiMAX-Volume-Quota
        Unsigned 32-bit integer
    radius.WiMAX_Volume_Quota.len  Length
        Unsigned 8-bit integer
        WiMAX-Volume-Quota Length
    radius.WiMAX_Volume_Threshold  WiMAX-Volume-Threshold
        Unsigned 32-bit integer
    radius.WiMAX_Volume_Threshold.len  Length
        Unsigned 8-bit integer
        WiMAX-Volume-Threshold Length
    radius.WiMAX_Volume_Used_After  WiMAX-Volume-Used-After
        Unsigned 32-bit integer
    radius.WiMAX_Volume_Used_After.len  Length
        Unsigned 8-bit integer
        WiMAX-Volume-Used-After Length
    radius.WiMAX_hHA_IP_MIP4  WiMAX-hHA-IP-MIP4
        IPv4 address
    radius.WiMAX_hHA_IP_MIP4.len  Length
        Unsigned 8-bit integer
        WiMAX-hHA-IP-MIP4 Length
    radius.WiMAX_hHA_IP_MIP6  WiMAX-hHA-IP-MIP6
        IPv6 address
    radius.WiMAX_hHA_IP_MIP6.len  Length
        Unsigned 8-bit integer
        WiMAX-hHA-IP-MIP6 Length
    radius.WiMAX_vDHCP_RK  WiMAX-vDHCP-RK
        Byte array
    radius.WiMAX_vDHCP_RK.len  Length
        Unsigned 8-bit integer
        WiMAX-vDHCP-RK Length
    radius.WiMAX_vDHCP_RK_Key_ID  WiMAX-vDHCP-RK-Key-ID
        Unsigned 32-bit integer
    radius.WiMAX_vDHCP_RK_Key_ID.len  Length
        Unsigned 8-bit integer
        WiMAX-vDHCP-RK-Key-ID Length
    radius.WiMAX_vDHCP_RK_Lifetime  WiMAX-vDHCP-RK-Lifetime
        Unsigned 32-bit integer
    radius.WiMAX_vDHCP_RK_Lifetime.len  Length
        Unsigned 8-bit integer
        WiMAX-vDHCP-RK-Lifetime Length
    radius.WiMAX_vDHCPv4_Server  WiMAX-vDHCPv4-Server
        IPv4 address
    radius.WiMAX_vDHCPv4_Server.len  Length
        Unsigned 8-bit integer
        WiMAX-vDHCPv4-Server Length
    radius.WiMAX_vDHCPv6_Server  WiMAX-vDHCPv6-Server
        IPv6 address
    radius.WiMAX_vDHCPv6_Server.len  Length
        Unsigned 8-bit integer
        WiMAX-vDHCPv6-Server Length
    radius.WiMAX_vHA_IP_MIP4  WiMAX-vHA-IP-MIP4
        IPv4 address
    radius.WiMAX_vHA_IP_MIP4.len  Length
        Unsigned 8-bit integer
        WiMAX-vHA-IP-MIP4 Length
    radius.WiMAX_vHA_IP_MIP6  WiMAX-vHA-IP-MIP6
        IPv6 address
    radius.WiMAX_vHA_IP_MIP6.len  Length
        Unsigned 8-bit integer
        WiMAX-vHA-IP-MIP6 Length
    radius.WiMAX_vHA_MIP4_Key  WiMAX-vHA-MIP4-Key
        Byte array
    radius.WiMAX_vHA_MIP4_Key.len  Length
        Unsigned 8-bit integer
        WiMAX-vHA-MIP4-Key Length
    radius.WiMAX_vHA_RK_Key  WiMAX-vHA-RK-Key
        Byte array
    radius.WiMAX_vHA_RK_Key.len  Length
        Unsigned 8-bit integer
        WiMAX-vHA-RK-Key Length
    radius.WiMAX_vHA_RK_Lifetime  WiMAX-vHA-RK-Lifetime
        Unsigned 32-bit integer
    radius.WiMAX_vHA_RK_Lifetime.len  Length
        Unsigned 8-bit integer
        WiMAX-vHA-RK-Lifetime Length
    radius.WiMAX_vHA_RK_SPI  WiMAX-vHA-RK-SPI
        Unsigned 32-bit integer
    radius.WiMAX_vHA_RK_SPI.len  Length
        Unsigned 8-bit integer
        WiMAX-vHA-RK-SPI Length
    radius.Xedia_Address_Pool  Xedia-Address-Pool
        String
    radius.Xedia_Address_Pool.len  Length
        Unsigned 8-bit integer
        Xedia-Address-Pool Length
    radius.Xedia_Client_Access_Network  Xedia-Client-Access-Network
        String
    radius.Xedia_Client_Access_Network.len  Length
        Unsigned 8-bit integer
        Xedia-Client-Access-Network Length
    radius.Xedia_Client_Firewall_Setting  Xedia-Client-Firewall-Setting
        Unsigned 32-bit integer
    radius.Xedia_Client_Firewall_Setting.len  Length
        Unsigned 8-bit integer
        Xedia-Client-Firewall-Setting Length
    radius.Xedia_DNS_Server  Xedia-DNS-Server
        IPv4 address
    radius.Xedia_DNS_Server.len  Length
        Unsigned 8-bit integer
        Xedia-DNS-Server Length
    radius.Xedia_NetBios_Server  Xedia-NetBios-Server
        IPv4 address
    radius.Xedia_NetBios_Server.len  Length
        Unsigned 8-bit integer
        Xedia-NetBios-Server Length
    radius.Xedia_PPP_Echo_Interval  Xedia-PPP-Echo-Interval
        Unsigned 32-bit integer
    radius.Xedia_PPP_Echo_Interval.len  Length
        Unsigned 8-bit integer
        Xedia-PPP-Echo-Interval Length
    radius.Xedia_SSH_Privileges  Xedia-SSH-Privileges
        Unsigned 32-bit integer
    radius.Xedia_SSH_Privileges.len  Length
        Unsigned 8-bit integer
        Xedia-SSH-Privileges Length
    radius.Xedia_Save_Password  Xedia-Save-Password
        Unsigned 32-bit integer
    radius.Xedia_Save_Password.len  Length
        Unsigned 8-bit integer
        Xedia-Save-Password Length
    radius.Xylan_Acce_Priv_F_R1  Xylan-Acce-Priv-F-R1
        Byte array
    radius.Xylan_Acce_Priv_F_R1.len  Length
        Unsigned 8-bit integer
        Xylan-Acce-Priv-F-R1 Length
    radius.Xylan_Acce_Priv_F_R2  Xylan-Acce-Priv-F-R2
        Byte array
    radius.Xylan_Acce_Priv_F_R2.len  Length
        Unsigned 8-bit integer
        Xylan-Acce-Priv-F-R2 Length
    radius.Xylan_Acce_Priv_F_W1  Xylan-Acce-Priv-F-W1
        Byte array
    radius.Xylan_Acce_Priv_F_W1.len  Length
        Unsigned 8-bit integer
        Xylan-Acce-Priv-F-W1 Length
    radius.Xylan_Acce_Priv_F_W2  Xylan-Acce-Priv-F-W2
        Byte array
    radius.Xylan_Acce_Priv_F_W2.len  Length
        Unsigned 8-bit integer
        Xylan-Acce-Priv-F-W2 Length
    radius.Xylan_Acce_Priv_G1  Xylan-Acce-Priv-G1
        Byte array
    radius.Xylan_Acce_Priv_G1.len  Length
        Unsigned 8-bit integer
        Xylan-Acce-Priv-G1 Length
    radius.Xylan_Acce_Priv_G2  Xylan-Acce-Priv-G2
        Byte array
    radius.Xylan_Acce_Priv_G2.len  Length
        Unsigned 8-bit integer
        Xylan-Acce-Priv-G2 Length
    radius.Xylan_Acce_Priv_R1  Xylan-Acce-Priv-R1
        Byte array
    radius.Xylan_Acce_Priv_R1.len  Length
        Unsigned 8-bit integer
        Xylan-Acce-Priv-R1 Length
    radius.Xylan_Acce_Priv_R2  Xylan-Acce-Priv-R2
        Byte array
    radius.Xylan_Acce_Priv_R2.len  Length
        Unsigned 8-bit integer
        Xylan-Acce-Priv-R2 Length
    radius.Xylan_Acce_Priv_W1  Xylan-Acce-Priv-W1
        Byte array
    radius.Xylan_Acce_Priv_W1.len  Length
        Unsigned 8-bit integer
        Xylan-Acce-Priv-W1 Length
    radius.Xylan_Acce_Priv_W2  Xylan-Acce-Priv-W2
        Byte array
    radius.Xylan_Acce_Priv_W2.len  Length
        Unsigned 8-bit integer
        Xylan-Acce-Priv-W2 Length
    radius.Xylan_Access_Priv  Xylan-Access-Priv
        Unsigned 32-bit integer
    radius.Xylan_Access_Priv.len  Length
        Unsigned 8-bit integer
        Xylan-Access-Priv Length
    radius.Xylan_Asa_Access  Xylan-Asa-Access
        String
    radius.Xylan_Asa_Access.len  Length
        Unsigned 8-bit integer
        Xylan-Asa-Access Length
    radius.Xylan_Auth_Group  Xylan-Auth-Group
        Unsigned 32-bit integer
    radius.Xylan_Auth_Group.len  Length
        Unsigned 8-bit integer
        Xylan-Auth-Group Length
    radius.Xylan_Auth_Group_Protocol  Xylan-Auth-Group-Protocol
        String
    radius.Xylan_Auth_Group_Protocol.len  Length
        Unsigned 8-bit integer
        Xylan-Auth-Group-Protocol Length
    radius.Xylan_Client_IP_Addr  Xylan-Client-IP-Addr
        IPv4 address
    radius.Xylan_Client_IP_Addr.len  Length
        Unsigned 8-bit integer
        Xylan-Client-IP-Addr Length
    radius.Xylan_Group_Desc  Xylan-Group-Desc
        String
    radius.Xylan_Group_Desc.len  Length
        Unsigned 8-bit integer
        Xylan-Group-Desc Length
    radius.Xylan_Port_Desc  Xylan-Port-Desc
        String
    radius.Xylan_Port_Desc.len  Length
        Unsigned 8-bit integer
        Xylan-Port-Desc Length
    radius.Xylan_Profil_Numb  Xylan-Profil-Numb
        Unsigned 32-bit integer
    radius.Xylan_Profil_Numb.len  Length
        Unsigned 8-bit integer
        Xylan-Profil-Numb Length
    radius.Xylan_Slot_Port  Xylan-Slot-Port
        String
    radius.Xylan_Slot_Port.len  Length
        Unsigned 8-bit integer
        Xylan-Slot-Port Length
    radius.Xylan_Time_of_Day  Xylan-Time-of-Day
        String
    radius.Xylan_Time_of_Day.len  Length
        Unsigned 8-bit integer
        Xylan-Time-of-Day Length
    radius.ascenddatafilter  Ascend Data Filter
        Byte array
    radius.authenticator  Authenticator
        Byte array
    radius.call_id  call-id
        String
    radius.call_id.len  Length
        Unsigned 8-bit integer
        call-id Length
    radius.code  Code
        Unsigned 8-bit integer
    radius.dup  Duplicate Message
        Unsigned 32-bit integer
    radius.gw_final_xlated_cdn  gw-final-xlated-cdn
        String
    radius.gw_final_xlated_cdn.len  Length
        Unsigned 8-bit integer
        gw-final-xlated-cdn Length
    radius.gw_final_xlated_cgn  gw-final-xlated-cgn
        String
    radius.gw_final_xlated_cgn.len  Length
        Unsigned 8-bit integer
        gw-final-xlated-cgn Length
    radius.gw_rxd_cdn  gw-rxd-cdn
        String
    radius.gw_rxd_cdn.len  Length
        Unsigned 8-bit integer
        gw-rxd-cdn Length
    radius.gw_rxd_cgn  gw-rxd-cgn
        String
    radius.gw_rxd_cgn.len  Length
        Unsigned 8-bit integer
        gw-rxd-cgn Length
    radius.h323_billing_model  h323-billing-model
        String
    radius.h323_billing_model.len  Length
        Unsigned 8-bit integer
        h323-billing-model Length
    radius.h323_call_origin  h323-call-origin
        String
    radius.h323_call_origin.len  Length
        Unsigned 8-bit integer
        h323-call-origin Length
    radius.h323_call_type  h323-call-type
        String
    radius.h323_call_type.len  Length
        Unsigned 8-bit integer
        h323-call-type Length
    radius.h323_conf_id  h323-conf-id
        String
    radius.h323_conf_id.len  Length
        Unsigned 8-bit integer
        h323-conf-id Length
    radius.h323_connect_time  h323-connect-time
        String
    radius.h323_connect_time.len  Length
        Unsigned 8-bit integer
        h323-connect-time Length
    radius.h323_credit_amount  h323-credit-amount
        String
    radius.h323_credit_amount.len  Length
        Unsigned 8-bit integer
        h323-credit-amount Length
    radius.h323_credit_time  h323-credit-time
        String
    radius.h323_credit_time.len  Length
        Unsigned 8-bit integer
        h323-credit-time Length
    radius.h323_currency  h323-currency
        String
    radius.h323_currency.len  Length
        Unsigned 8-bit integer
        h323-currency Length
    radius.h323_disconnect_cause  h323-disconnect-cause
        String
    radius.h323_disconnect_cause.len  Length
        Unsigned 8-bit integer
        h323-disconnect-cause Length
    radius.h323_disconnect_time  h323-disconnect-time
        String
    radius.h323_disconnect_time.len  Length
        Unsigned 8-bit integer
        h323-disconnect-time Length
    radius.h323_gw_id  h323-gw-id
        String
    radius.h323_gw_id.len  Length
        Unsigned 8-bit integer
        h323-gw-id Length
    radius.h323_incoming_conf_id  h323-incoming-conf-id
        String
    radius.h323_incoming_conf_id.len  Length
        Unsigned 8-bit integer
        h323-incoming-conf-id Length
    radius.h323_preferred_lang  h323-preferred-lang
        String
    radius.h323_preferred_lang.len  Length
        Unsigned 8-bit integer
        h323-preferred-lang Length
    radius.h323_prompt_id  h323-prompt-id
        String
    radius.h323_prompt_id.len  Length
        Unsigned 8-bit integer
        h323-prompt-id Length
    radius.h323_redirect_ip_address  h323-redirect-ip-address
        String
    radius.h323_redirect_ip_address.len  Length
        Unsigned 8-bit integer
        h323-redirect-ip-address Length
    radius.h323_redirect_number  h323-redirect-number
        String
    radius.h323_redirect_number.len  Length
        Unsigned 8-bit integer
        h323-redirect-number Length
    radius.h323_remote_address  h323-remote-address
        String
    radius.h323_remote_address.len  Length
        Unsigned 8-bit integer
        h323-remote-address Length
    radius.h323_return_code  h323-return-code
        String
    radius.h323_return_code.len  Length
        Unsigned 8-bit integer
        h323-return-code Length
    radius.h323_setup_time  h323-setup-time
        String
    radius.h323_setup_time.len  Length
        Unsigned 8-bit integer
        h323-setup-time Length
    radius.h323_time_and_day  h323-time-and-day
        String
    radius.h323_time_and_day.len  Length
        Unsigned 8-bit integer
        h323-time-and-day Length
    radius.h323_voice_quality  h323-voice-quality
        String
    radius.h323_voice_quality.len  Length
        Unsigned 8-bit integer
        h323-voice-quality Length
    radius.id  Identifier
        Unsigned 8-bit integer
    radius.incoming_req_uri  incoming-req-uri
        String
    radius.incoming_req_uri.len  Length
        Unsigned 8-bit integer
        incoming-req-uri Length
    radius.length  Length
        Unsigned 16-bit integer
    radius.method  method
        String
    radius.method.len  Length
        Unsigned 8-bit integer
        method Length
    radius.next_hop_dn  next-hop-dn
        String
    radius.next_hop_dn.len  Length
        Unsigned 8-bit integer
        next-hop-dn Length
    radius.next_hop_ip  next-hop-ip
        String
    radius.next_hop_ip.len  Length
        Unsigned 8-bit integer
        next-hop-ip Length
    radius.outgoing_req_uri  outgoing-req-uri
        String
    radius.outgoing_req_uri.len  Length
        Unsigned 8-bit integer
        outgoing-req-uri Length
    radius.prev_hop_ip  prev-hop-ip
        String
    radius.prev_hop_ip.len  Length
        Unsigned 8-bit integer
        prev-hop-ip Length
    radius.prev_hop_via  prev-hop-via
        String
    radius.prev_hop_via.len  Length
        Unsigned 8-bit integer
        prev-hop-via Length
    radius.release_source  release-source
        String
    radius.release_source.len  Length
        Unsigned 8-bit integer
        release-source Length
    radius.remote_media_address  remote-media-address
        String
    radius.remote_media_address.len  Length
        Unsigned 8-bit integer
        remote-media-address Length
    radius.req  Request
        Boolean
        TRUE if RADIUS request
    radius.req.dup  Duplicate Request
        Unsigned 32-bit integer
    radius.reqframe  Request Frame
        Frame number
    radius.rsp  Response
        Boolean
        TRUE if RADIUS response
    radius.rsp.dup  Duplicate Response
        Unsigned 32-bit integer
    radius.rspframe  Response Frame
        Frame number
    radius.session_protocol  session-protocol
        String
    radius.session_protocol.len  Length
        Unsigned 8-bit integer
        session-protocol Length
    radius.sip_conf_id  sip-conf-id
        String
    radius.sip_conf_id.len  Length
        Unsigned 8-bit integer
        sip-conf-id Length
    radius.sip_hdr  sip-hdr
        String
    radius.sip_hdr.len  Length
        Unsigned 8-bit integer
        sip-hdr Length
    radius.subscriber  subscriber
        String
    radius.subscriber.len  Length
        Unsigned 8-bit integer
        subscriber Length
    radius.time  Time from request
        Time duration
        Timedelta between Request and Response

Raw packet data (raw)

Real Data Transport (rdt)

    rdt.aact-flags  RDT asm-action flags 1
        String
        RDT aact flags
    rdt.ack-flags  RDT ack flags
        String
    rdt.asm-rule  asm rule
        Unsigned 8-bit integer
    rdt.asm-rule-expansion  Asm rule expansion
        Unsigned 16-bit integer
    rdt.back-to-back  Back-to-back
        Unsigned 8-bit integer
    rdt.bandwidth-report-flags  RDT bandwidth report flags
        String
    rdt.bw-probing-flags  RDT bw probing flags
        String
    rdt.bwid-report-bandwidth  Bandwidth report bandwidth
        Unsigned 32-bit integer
    rdt.bwid-report-interval  Bandwidth report interval
        Unsigned 16-bit integer
    rdt.bwid-report-sequence  Bandwidth report sequence
        Unsigned 16-bit integer
    rdt.bwpp-seqno  Bandwidth probing packet seqno
        Unsigned 8-bit integer
    rdt.cong-recv-mult  Congestion receive multiplier
        Unsigned 32-bit integer
    rdt.cong-xmit-mult  Congestion transmit multiplier
        Unsigned 32-bit integer
    rdt.congestion-flags  RDT congestion flags
        String
    rdt.data  Data
        No value
    rdt.data-flags1  RDT data flags 1
        String
    rdt.data-flags2  RDT data flags 2
        String
        RDT data flags2
    rdt.feature-level  RDT feature level
        Signed 32-bit integer
    rdt.is-reliable  Is reliable
        Unsigned 8-bit integer
    rdt.latency-report-flags  RDT latency report flags
        String
    rdt.length-included  Length included
        Unsigned 8-bit integer
    rdt.lost-high  Lost high
        Unsigned 8-bit integer
    rdt.lrpt-server-out-time  Latency report server out time
        Unsigned 32-bit integer
    rdt.need-reliable  Need reliable
        Unsigned 8-bit integer
    rdt.packet  RDT packet
        String
    rdt.packet-length  Packet length
        Unsigned 16-bit integer
    rdt.packet-type  Packet type
        Unsigned 16-bit integer
    rdt.reliable-seq-no  Reliable sequence number
        Unsigned 16-bit integer
    rdt.report-flags  RDT report flags
        String
    rdt.rtrp-ts-sec  Round trip response timestamp seconds
        Unsigned 32-bit integer
    rdt.rtrp-ts-usec  Round trip response timestamp microseconds
        Unsigned 32-bit integer
    rdt.rtt-request-flags  RDT rtt request flags
        String
        RDT RTT request flags
    rdt.rtt-response-flags  RDT rtt response flags
        String
        RDT RTT response flags
    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.slow-data  Slow data
        Unsigned 8-bit integer
    rdt.stre-ext-flag  Ext flag
        Unsigned 8-bit integer
    rdt.stre-need-reliable  Need reliable
        Unsigned 8-bit integer
    rdt.stre-packet-sent  Packet sent
        Unsigned 8-bit integer
    rdt.stre-reason-code  Stream end reason code
        Unsigned 32-bit integer
    rdt.stre-reason-dummy-flags1  Stream end reason dummy flags1
        Unsigned 8-bit integer
    rdt.stre-reason-dummy-type  Stream end reason dummy type
        Unsigned 16-bit integer
    rdt.stre-seqno  Stream end sequence number
        Unsigned 16-bit integer
    rdt.stre-stream-id  Stream id
        Unsigned 8-bit integer
    rdt.stream-end-flags  RDT stream end flags
        String
    rdt.stream-id  Stream ID
        Unsigned 8-bit integer
    rdt.stream-id-expansion  Stream-id expansion
        Unsigned 16-bit integer
    rdt.timestamp  Timestamp
        Unsigned 32-bit integer
    rdt.tirp-buffer-info  RDT buffer info
        String
    rdt.tirp-buffer-info-bytes-buffered  Bytes buffered
        Unsigned 32-bit integer
    rdt.tirp-buffer-info-count  Transport info buffer into count
        Unsigned 16-bit integer
    rdt.tirp-buffer-info-highest-timestamp  Highest timestamp
        Unsigned 32-bit integer
    rdt.tirp-buffer-info-lowest-timestamp  Lowest timestamp
        Unsigned 32-bit integer
    rdt.tirp-buffer-info-stream-id  Buffer info stream-id
        Unsigned 16-bit integer
    rdt.tirp-has-buffer-info  Transport info response has buffer info
        Unsigned 8-bit integer
    rdt.tirp-has-rtt-info  Transport info response has rtt info flag
        Unsigned 8-bit integer
    rdt.tirp-is-delayed  Transport info response is delayed
        Unsigned 8-bit integer
    rdt.tirp-request-time-msec  Transport info request time msec
        Unsigned 32-bit integer
    rdt.tirp-response-time-msec  Transport info response time msec
        Unsigned 32-bit integer
    rdt.tirq-request-buffer-info  Transport info request buffer info flag
        Unsigned 8-bit integer
    rdt.tirq-request-rtt-info  Transport info request rtt info flag
        Unsigned 8-bit integer
    rdt.tirq-request-time-msec  Transport info request time msec
        Unsigned 32-bit integer
    rdt.total-reliable  Total reliable
        Unsigned 16-bit integer
    rdt.transport-info-request-flags  RDT transport info request flags
        String
    rdt.transport-info-response-flags  RDT transport info response flags
        String
    rdt.unk-flags1  Unknown packet flags
        Unsigned 8-bit integer

Real Time Messaging Protocol (rtmpt)

    rtmpt.amf.boolean  AMF boolean
        Boolean
        RTMPT AMF boolean
    rtmpt.amf.number  AMF number
        Double-precision floating point
        RTMPT AMF number
    rtmpt.amf.string  AMF string
        NULL terminated string
        RTMPT AMF string
    rtmpt.amf.type  AMF type
        Unsigned 8-bit integer
        RTMPT AMF type
    rtmpt.header.bodysize  Body size
        Unsigned 24-bit integer
        RTMPT Header body size
    rtmpt.header.caller  Caller source
        Unsigned 32-bit integer
        RTMPT Header caller source
    rtmpt.header.function  Function call
        Unsigned 8-bit integer
        RTMPT Header function call
    rtmpt.header.handshake  Handshake data
        Byte array
        RTMPT Header handshake data
    rtmpt.header.objid  ObjectID
        Unsigned 8-bit integer
        RTMPT Header object ID
    rtmpt.header.timestamp  Timestamp
        Unsigned 24-bit integer
        RTMPT Header timestamp

Real Time Streaming Protocol (rtsp)

    X_Vig_Msisdn  X-Vig-Msisdn
        String
    rtsp.content-length  Content-length
        Unsigned 32-bit integer
    rtsp.content-type  Content-type
        String
    rtsp.method  Method
        String
    rtsp.rdt-feature-level  RDTFeatureLevel
        Unsigned 32-bit integer
    rtsp.request  Request
        String
    rtsp.response  Response
        String
    rtsp.session  Session
        String
    rtsp.status  Status
        Unsigned 32-bit integer
    rtsp.transport  Transport
        String
    rtsp.url  URL
        String

Real-Time Media Access Control (rtmac)

    rtmac.header.flags  Flags
        Unsigned 8-bit integer
        RTmac Flags
    rtmac.header.flags.res  Reserved Flags
        Unsigned 8-bit integer
        RTmac Reserved Flags
    rtmac.header.flags.tunnel  Tunnelling Flag
        Boolean
        RTmac Tunnelling Flag
    rtmac.header.res  Reserved
        Unsigned 8-bit integer
        RTmac Reserved
    rtmac.header.type  Type
        String
        RTmac Type
    rtmac.header.ver  Version
        Unsigned 16-bit integer
        RTmac Version
    tdma-v1.msg  Message
        Unsigned 32-bit integer
        TDMA-V1 Message
    tdma-v1.msg.ack_ack_conf.padding  Padding
        Byte array
        TDMA Padding
    tdma-v1.msg.ack_ack_conf.station  Station
        Unsigned 8-bit integer
        TDMA Station
    tdma-v1.msg.ack_conf.cycle  Cycle
        Unsigned 8-bit integer
        TDMA Cycle
    tdma-v1.msg.ack_conf.mtu  MTU
        Unsigned 8-bit integer
        TDMA MTU
    tdma-v1.msg.ack_conf.padding  Padding
        Unsigned 8-bit integer
        TDMA PAdding
    tdma-v1.msg.ack_conf.station  Station
        Unsigned 8-bit integer
        TDMA Station
    tdma-v1.msg.ack_test.counter  Counter
        Unsigned 32-bit integer
        TDMA Counter
    tdma-v1.msg.ack_test.tx  TX
        Unsigned 64-bit integer
        TDMA TX
    tdma-v1.msg.request_change_offset.offset  Offset
        Unsigned 32-bit integer
        TDMA Offset
    tdma-v1.msg.request_conf.cycle  Cycle
        Unsigned 8-bit integer
        TDMA Cycle
    tdma-v1.msg.request_conf.mtu  MTU
        Unsigned 8-bit integer
        TDMA MTU
    tdma-v1.msg.request_conf.padding  Padding
        Unsigned 8-bit integer
        TDMA Padding
    tdma-v1.msg.request_conf.station  Station
        Unsigned 8-bit integer
        TDMA Station
    tdma-v1.msg.request_test.counter  Counter
        Unsigned 32-bit integer
        TDMA Counter
    tdma-v1.msg.request_test.tx  TX
        Unsigned 64-bit integer
        TDMA TX
    tdma-v1.msg.start_of_frame.timestamp  Timestamp
        Unsigned 64-bit integer
        TDMA Timestamp
    tdma-v1.msg.station_list.ip  IP
        IPv4 address
        TDMA Station IP
    tdma-v1.msg.station_list.nr  Nr.
        Unsigned 8-bit integer
        TDMA Station Number
    tdma-v1.msg.station_list.nr_stations  Nr. Stations
        Unsigned 8-bit integer
        TDMA Nr. Stations
    tdma-v1.msg.station_list.padding  Padding
        Byte array
        TDMA Padding
    tdma.id  Message ID
        Unsigned 16-bit integer
        TDMA Message ID
    tdma.req_cal.rpl_cycle  Reply Cycle Number
        Unsigned 32-bit integer
        TDMA Request Calibration Reply Cycle Number
    tdma.req_cal.rpl_slot  Reply Slot Offset
        Unsigned 64-bit integer
        TDMA Request Calibration Reply Slot Offset
    tdma.req_cal.xmit_stamp  Transmission Time Stamp
        Unsigned 64-bit integer
        TDMA Request Calibration Transmission Time Stamp
    tdma.rpl_cal.rcv_stamp  Reception Time Stamp
        Unsigned 64-bit integer
        TDMA Reply Calibration Reception Time Stamp
    tdma.rpl_cal.req_stamp  Request Transmission Time
        Unsigned 64-bit integer
        TDMA Reply Calibration Request Transmission Time
    tdma.rpl_cal.xmit_stamp  Transmission Time Stamp
        Unsigned 64-bit integer
        TDMA Reply Calibration Transmission Time Stamp
    tdma.sync.cycle  Cycle Number
        Unsigned 32-bit integer
        TDMA Sync Cycle Number
    tdma.sync.sched_xmit  Scheduled Transmission Time
        Unsigned 64-bit integer
        TDMA Sync Scheduled Transmission Time
    tdma.sync.xmit_stamp  Transmission Time Stamp
        Unsigned 64-bit integer
        TDMA Sync Transmission Time Stamp
    tdma.ver  Version
        Unsigned 16-bit integer
        TDMA Version

Real-Time Publish-Subscribe Wire Protocol (rtps)

    rtps.appId  appId
        Unsigned 32-bit integer
        Sub-component 'appId' of the GuidPrefix of the RTPS packet
    rtps.appId.appKind  appid.appKind
        Unsigned 8-bit integer
        'appKind' field of the 'AppId' structure
    rtps.appId.instanceId  appId.instanceId
        Unsigned 24-bit integer
        'instanceId' field of the 'AppId' structure
    rtps.domain_id  domain_id
        Unsigned 32-bit integer
        Domain ID
    rtps.guidPrefix  guidPrefix
        Byte array
        GuidPrefix of the RTPS packet
    rtps.hostId  hostId
        Unsigned 32-bit integer
        Sub-component 'hostId' of the GuidPrefix of the RTPS packet
    rtps.issueData  serializedData
        Byte array
        The user data transferred in a ISSUE submessage
    rtps.param.contentFilterName  contentFilterName
        NULL terminated string
        Value of the content filter name as sent in a PID_CONTENT_FILTER_PROPERTY parameter
    rtps.param.filterName  filterName
        NULL terminated string
        Value of the filter name as sent in a PID_CONTENT_FILTER_PROPERTY parameter
    rtps.param.groupData  groupData
        Byte array
        The user data sent in a PID_GROUP_DATA parameter
    rtps.param.id  parameterId
        Unsigned 16-bit integer
        Parameter Id
    rtps.param.length  parameterLength
        Unsigned 16-bit integer
        Parameter Length
    rtps.param.ntpTime  ntpTime
        No value
        Time using the NTP standard format
    rtps.param.ntpTime.fraction  fraction
        Unsigned 32-bit integer
        The 'fraction' component of a NTP time
    rtps.param.ntpTime.sec  seconds
        Signed 32-bit integer
        The 'second' component of a NTP time
    rtps.param.relatedTopicName  relatedTopicName
        NULL terminated string
        Value of the related topic name as sent in a PID_CONTENT_FILTER_PROPERTY parameter
    rtps.param.strength  strength
        Signed 32-bit integer
        Decimal value representing the value of a PID_OWNERSHIP_STRENGTH parameter
    rtps.param.topicData  topicData
        Byte array
        The user data sent in a PID_TOPIC_DATA parameter
    rtps.param.topicName  topic
        NULL terminated string
        String representing the value value of a PID_TOPIC parameter
    rtps.param.typeName  typeName
        NULL terminated string
        String representing the value of a PID_TYPE_NAME parameter
    rtps.param.userData  userData
        Byte array
        The user data sent in a PID_USER_DATA parameter
    rtps.participant_idx  participant_idx
        Unsigned 32-bit integer
        Participant index
    rtps.sm.entityId  entityId
        Unsigned 32-bit integer
        Object entity ID as it appears in a DATA submessage (keyHashSuffix)
    rtps.sm.entityId.entityKey  entityKey
        Unsigned 24-bit integer
        'entityKey' field of the object entity ID
    rtps.sm.entityId.entityKind  entityKind
        Unsigned 8-bit integer
        'entityKind' field of the object entity ID
    rtps.sm.flags  flags
        Unsigned 8-bit integer
        bitmask representing the flags associated with a submessage
    rtps.sm.guidPrefix  guidPrefix
        Byte array
        a generic guidPrefix that is transmitted inside the submessage (this is NOT the guidPrefix described in the packet header
    rtps.sm.guidPrefix.appId  appId
        Unsigned 32-bit integer
        AppId component of the rtps.sm.guidPrefix
    rtps.sm.guidPrefix.appId.appKind  appKind
        Unsigned 8-bit integer
        appKind component of the AppId of the rtps.sm.guidPrefix
    rtps.sm.guidPrefix.appId.instanceId  instanceId
        Unsigned 24-bit integer
        instanceId component of the AppId of the rtps.sm.guidPrefix
    rtps.sm.guidPrefix.hostId  host_id
        Unsigned 32-bit integer
        The hostId component of the rtps.sm.guidPrefix
    rtps.sm.id  submessageId
        Unsigned 8-bit integer
        defines the type of submessage
    rtps.sm.octetsToNextHeader  octetsToNextHeader
        Unsigned 16-bit integer
        Size of the submessage payload
    rtps.sm.rdEntityId  readerEntityId
        Unsigned 32-bit integer
        Reader entity ID as it appears in a submessage
    rtps.sm.rdEntityId.entityKey  readerEntityKey
        Unsigned 24-bit integer
        'entityKey' field of the reader entity ID
    rtps.sm.rdEntityId.entityKind  readerEntityKind
        Unsigned 8-bit integer
        'entityKind' field of the reader entity ID
    rtps.sm.seqNumber  writerSeqNumber
        Signed 64-bit integer
        Writer sequence number
    rtps.sm.wrEntityId  writerEntityId
        Unsigned 32-bit integer
        Writer entity ID as it appears in a submessage
    rtps.sm.wrEntityId.entityKey  writerEntityKey
        Unsigned 24-bit integer
        'entityKey' field of the writer entity ID
    rtps.sm.wrEntityId.entityKind  writerEntityKind
        Unsigned 8-bit integer
        'entityKind' field of the writer entity ID
    rtps.traffic_nature  traffic_nature
        Unsigned 32-bit integer
        Nature of the traffic (meta/user-traffic uni/multi-cast)
    rtps.vendorId  vendorId
        Unsigned 16-bit integer
        Unique identifier of the DDS vendor that generated this packet
    rtps.version  version
        No value
        RTPS protocol version number
    rtps.version.major  major
        Signed 8-bit integer
        RTPS major protocol version number
    rtps.version.minor  minor
        Signed 8-bit integer
        RTPS minor protocol version number

Real-Time Publish-Subscribe Wire Protocol 2.x (rtps2)

    rtps2.appId  appId
        Unsigned 32-bit integer
        Sub-component 'appId' of the GuidPrefix of the RTPS packet
    rtps2.counter  counter
        Unsigned 32-bit integer
        Sub-component 'counter' of the GuidPrefix of the RTPS packet
    rtps2.domain_id  domain_id
        Unsigned 32-bit integer
        Domain ID
    rtps2.guidPrefix  guidPrefix
        Byte array
        GuidPrefix of the RTPS packet
    rtps2.hostId  hostId
        Unsigned 32-bit integer
        Sub-component 'hostId' of the GuidPrefix of the RTPS packet
    rtps2.param.contentFilterName  contentFilterName
        NULL terminated string
        Value of the content filter name as sent in a PID_CONTENT_FILTER_PROPERTY parameter
    rtps2.param.entityName  entity
        NULL terminated string
        String representing the name of the entity addressed by the submessage
    rtps2.param.filterName  filterName
        NULL terminated string
        Value of the filter name as sent in a PID_CONTENT_FILTER_PROPERTY parameter
    rtps2.param.groupData  groupData
        Byte array
        The user data sent in a PID_GROUP_DATA parameter
    rtps2.param.id  parameterId
        Unsigned 16-bit integer
        Parameter Id
    rtps2.param.length  parameterLength
        Unsigned 16-bit integer
        Parameter Length
    rtps2.param.ntpTime  ntpTime
        No value
        Time using the NTP standard format
    rtps2.param.ntpTime.fraction  fraction
        Unsigned 32-bit integer
        The 'fraction' component of a NTP time
    rtps2.param.ntpTime.sec  seconds
        Signed 32-bit integer
        The 'second' component of a NTP time
    rtps2.param.relatedTopicName  relatedTopicName
        NULL terminated string
        Value of the related topic name as sent in a PID_CONTENT_FILTER_PROPERTY parameter
    rtps2.param.statusInfo  statusInfo
        Unsigned 32-bit integer
        State information of the data object to which the message apply (i.e. lifecycle)
    rtps2.param.strength  strength
        Signed 32-bit integer
        Decimal value representing the value of a PID_OWNERSHIP_STRENGTH parameter
    rtps2.param.topicData  topicData
        Byte array
        The user data sent in a PID_TOPIC_DATA parameter
    rtps2.param.topicName  topic
        NULL terminated string
        String representing the value value of a PID_TOPIC parameter
    rtps2.param.typeName  typeName
        NULL terminated string
        String representing the value of a PID_TYPE_NAME parameter
    rtps2.param.userData  userData
        Byte array
        The user data sent in a PID_USER_DATA parameter
    rtps2.participant_idx  participant_idx
        Unsigned 32-bit integer
        Participant index
    rtps2.serializedData  serializedData
        Byte array
        The user data transferred in a ISSUE submessage
    rtps2.sm.entityId  entityId
        Unsigned 32-bit integer
        Object entity ID as it appears in a DATA submessage (keyHashSuffix)
    rtps2.sm.entityId.entityKey  entityKey
        Unsigned 24-bit integer
        'entityKey' field of the object entity ID
    rtps2.sm.entityId.entityKind  entityKind
        Unsigned 8-bit integer
        'entityKind' field of the object entity ID
    rtps2.sm.flags  flags
        Unsigned 8-bit integer
        bitmask representing the flags associated with a submessage
    rtps2.sm.guidPrefix  guidPrefix
        Byte array
        a generic guidPrefix that is transmitted inside the submessage (this is NOT the guidPrefix described in the packet header
    rtps2.sm.guidPrefix.appId  appId
        Unsigned 32-bit integer
        AppId component of the rtps2.sm.guidPrefix
    rtps2.sm.guidPrefix.appId.appKind  appKind
        Unsigned 8-bit integer
        appKind component of the AppId of the rtps2.sm.guidPrefix
    rtps2.sm.guidPrefix.appId.instanceId  instanceId
        Unsigned 24-bit integer
        instanceId component of the AppId of the rtps2.sm.guidPrefix
    rtps2.sm.guidPrefix.counter  counter
        Unsigned 32-bit integer
        The counter component of the rtps2.sm.guidPrefix
    rtps2.sm.guidPrefix.hostId  host_id
        Unsigned 32-bit integer
        The hostId component of the rtps2.sm.guidPrefix
    rtps2.sm.id  submessageId
        Unsigned 8-bit integer
        defines the type of submessage
    rtps2.sm.octetsToNextHeader  octetsToNextHeader
        Unsigned 16-bit integer
        Size of the submessage payload
    rtps2.sm.rdEntityId  readerEntityId
        Unsigned 32-bit integer
        Reader entity ID as it appears in a submessage
    rtps2.sm.rdEntityId.entityKey  readerEntityKey
        Unsigned 24-bit integer
        'entityKey' field of the reader entity ID
    rtps2.sm.rdEntityId.entityKind  readerEntityKind
        Unsigned 8-bit integer
        'entityKind' field of the reader entity ID
    rtps2.sm.seqNumber  writerSeqNumber
        Signed 64-bit integer
        Writer sequence number
    rtps2.sm.wrEntityId  writerEntityId
        Unsigned 32-bit integer
        Writer entity ID as it appears in a submessage
    rtps2.sm.wrEntityId.entityKey  writerEntityKey
        Unsigned 24-bit integer
        'entityKey' field of the writer entity ID
    rtps2.sm.wrEntityId.entityKind  writerEntityKind
        Unsigned 8-bit integer
        'entityKind' field of the writer entity ID
    rtps2.traffic_nature  traffic_nature
        Unsigned 32-bit integer
        Nature of the traffic (meta/user-traffic uni/multi-cast)
    rtps2.vendorId  vendorId
        Unsigned 16-bit integer
        Unique identifier of the DDS vendor that generated this packet
    rtps2.version  version
        No value
        RTPS protocol version number
    rtps2.version.major  major
        Signed 8-bit integer
        RTPS major protocol version number
    rtps2.version.minor  minor
        Signed 8-bit integer
        RTPS minor protocol version number

Real-Time Transport Protocol (rtp)

    rtp.block-length  Block length
        Unsigned 16-bit integer
    rtp.cc  Contributing source identifiers count
        Unsigned 8-bit integer
    rtp.csrc.item  CSRC item
        Unsigned 32-bit integer
    rtp.csrc.items  Contributing Source identifiers
        No value
    rtp.ext  Extension
        Boolean
    rtp.ext.len  Extension length
        Unsigned 16-bit integer
    rtp.ext.profile  Defined by profile
        Unsigned 16-bit integer
    rtp.extseq  Extended sequence number
        Unsigned 32-bit integer
    rtp.follow  Follow
        Boolean
        Next header follows
    rtp.fragment  RTP Fragment data
        Frame number
    rtp.fragment.error  Defragmentation error
        Frame number
        Defragmentation error due to illegal fragments
    rtp.fragment.multipletails  Multiple tail fragments found
        Boolean
        Several tails were found when defragmenting the packet
    rtp.fragment.overlap  Fragment overlap
        Boolean
        Fragment overlaps with other fragments
    rtp.fragment.overlap.conflict  Conflicting data in fragment overlap
        Boolean
        Overlapping fragments contained conflicting data
    rtp.fragment.toolongfragment  Fragment too long
        Boolean
        Fragment contained data past end of packet
    rtp.fragments  RTP Fragments
        No value
    rtp.hdr_ext  Header extension
        Unsigned 32-bit integer
    rtp.hdr_exts  Header extensions
        No value
    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.reassembled.length  Reassembled RTP length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    rtp.reassembled_in  RTP fragment, reassembled in frame
        Frame number
        This RTP packet is reassembled in this frame
    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.timestamp-offset  Timestamp offset
        Unsigned 16-bit integer
    rtp.version  Version
        Unsigned 8-bit integer
    srtp.auth_tag  SRTP Auth Tag
        Byte array
        SRTP Authentication Tag
    srtp.enc_payload  SRTP Encrypted Payload
        Byte array
    srtp.mki  SRTP MKI
        Byte array
        SRTP Master Key Index

Real-time Transport Control Protocol (rtcp)

    rtcp.app.PoC1.subtype  Subtype
        Unsigned 8-bit integer
    rtcp.app.data  Application specific data
        Byte array
    rtcp.app.mux  RtpMux Application specific data
        No value
    rtcp.app.mux.cp  Header compression supported
        Boolean
    rtcp.app.mux.mux  Multiplexing supported
        Boolean
    rtcp.app.mux.muxport  Local Mux Port
        Unsigned 16-bit integer
    rtcp.app.mux.selection  Multiplexing selection
        Unsigned 8-bit integer
    rtcp.app.name  Name (ASCII)
        String
    rtcp.app.poc1  PoC1 Application specific data
        No value
    rtcp.app.poc1.ack.reason.code  Reason code
        Unsigned 16-bit integer
    rtcp.app.poc1.ack.subtype  Subtype
        Unsigned 8-bit integer
    rtcp.app.poc1.conn.add.ind.mao  Manual answer override
        Boolean
    rtcp.app.poc1.conn.content.a.dn  Nick name of inviting client
        Boolean
    rtcp.app.poc1.conn.content.a.id  Identity of inviting client
        Boolean
    rtcp.app.poc1.conn.content.grp.dn  Group name
        Boolean
    rtcp.app.poc1.conn.content.grp.id  Group identity
        Boolean
    rtcp.app.poc1.conn.content.sess.id  Session identity
        Boolean
    rtcp.app.poc1.conn.sdes.a.dn  Nick name of inviting client
        Length string pair
    rtcp.app.poc1.conn.sdes.a.id  Identity of inviting client
        Length string pair
    rtcp.app.poc1.conn.sdes.grp.dn  Group Name
        Length string pair
    rtcp.app.poc1.conn.sdes.grp.id  Group identity
        Length string pair
    rtcp.app.poc1.conn.sdes.sess.id  Session identity
        Length string pair
    rtcp.app.poc1.conn.session.type  Session type
        Unsigned 8-bit integer
    rtcp.app.poc1.disp.name  Display Name
        Length string pair
    rtcp.app.poc1.ignore.seq.no  Ignore sequence number field
        Unsigned 16-bit integer
    rtcp.app.poc1.last.pkt.seq.no  Sequence number of last RTP packet
        Unsigned 16-bit integer
    rtcp.app.poc1.new.time.request  New time client can request (seconds)
        Unsigned 16-bit integer
        Time in seconds client can request for
    rtcp.app.poc1.participants  Number of participants
        Unsigned 16-bit integer
    rtcp.app.poc1.priority  Priority
        Unsigned 8-bit integer
    rtcp.app.poc1.qsresp.position  Position (number of clients ahead)
        Unsigned 16-bit integer
    rtcp.app.poc1.qsresp.priority  Priority
        Unsigned 8-bit integer
    rtcp.app.poc1.reason.code  Reason code
        Unsigned 8-bit integer
    rtcp.app.poc1.reason.phrase  Reason Phrase
        Length string pair
    rtcp.app.poc1.request.ts  Talk Burst Request Timestamp
        String
    rtcp.app.poc1.sip.uri  SIP URI
        Length string pair
    rtcp.app.poc1.ssrc.granted  SSRC of client granted permission to talk
        Unsigned 32-bit integer
    rtcp.app.poc1.stt  Stop talking timer
        Unsigned 16-bit integer
    rtcp.app.subtype  Subtype
        Unsigned 8-bit integer
    rtcp.bye_reason_not_padded  BYE reason string not NULL padded
        No value
        RTCP BYE reason string not padded
    rtcp.fci  Feedback Control Information (FCI)
        Byte array
    rtcp.length  Length
        Unsigned 16-bit integer
        32-bit words (-1) in packet
    rtcp.length_check  RTCP frame length check
        Boolean
    rtcp.lsr-frame  Frame matching Last SR timestamp
        Frame number
        Frame matching LSR field (used to calculate roundtrip delay)
    rtcp.lsr-frame-captured  Time since Last SR captured
        Unsigned 32-bit integer
        Time since frame matching LSR field was captured
    rtcp.mediassrc  Media source SSRC
        Unsigned 32-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.profile-specific-extension  Profile-specific extension
        Byte array
    rtcp.psfb.fir.fci.csn  Command Sequence Number
        Unsigned 8-bit integer
    rtcp.psfb.fir.fci.reserved  Reserved
        Unsigned 32-bit integer
    rtcp.psfb.fir.fci.ssrc  SSRC
        Unsigned 32-bit integer
    rtcp.psfb.fmt  RTCP Feedback message type (FMT)
        Unsigned 8-bit integer
    rtcp.pt  Packet type
        Unsigned 8-bit integer
    rtcp.rc  Reception report count
        Unsigned 8-bit integer
    rtcp.roundtrip-delay  Roundtrip Delay(ms)
        Signed 32-bit integer
        Calculated roundtrip delay in ms
    rtcp.rtpfb.fmt  RTCP Feedback message type (FMT)
        Unsigned 8-bit integer
    rtcp.rtpfb.nack  RTCP Transport Feedback NACK
        Unsigned 16-bit integer
    rtcp.rtpfb.nack.blp  RTCP Transport Feedback NACK BLP
        Unsigned 16-bit integer
    rtcp.rtpfb.tmmbr.fci.bitrate  Maximum total media bit rate
        String
    rtcp.rtpfb.tmmbr.fci.exp  MxTBR Exp
        Unsigned 8-bit integer
    rtcp.rtpfb.tmmbr.fci.mantissa  MxTBR Mantissa
        Unsigned 32-bit integer
    rtcp.rtpfb.tmmbr.fci.measuredoverhead  Measured Overhead
        Unsigned 16-bit integer
    rtcp.rtpfb.tmmbr.fci.ssrc  SSRC
        Unsigned 32-bit integer
    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
        Signed 24-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.ntp.lsw  Timestamp, LSW
        Unsigned 32-bit integer
    rtcp.timestamp.ntp.msw  Timestamp, MSW
        Unsigned 32-bit integer
    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.btxnq.begseq  Starting sequence number
        Unsigned 16-bit integer
    rtcp.xr.btxnq.cycles  Number of cycles in calculation
        Unsigned 16-bit integer
    rtcp.xr.btxnq.endseq  Last sequence number
        Unsigned 16-bit integer
    rtcp.xr.btxnq.es  ES due to unavailable packet events
        Unsigned 32-bit integer
    rtcp.xr.btxnq.jbevents  Number of jitter buffer adaptations to date
        Unsigned 16-bit integer
    rtcp.xr.btxnq.ses  SES due to unavailable packet events
        Unsigned 32-bit integer
    rtcp.xr.btxnq.spare  Spare/reserved bits
        String
    rtcp.xr.btxnq.tdegjit  Time degraded by jitter buffer adaptation events
        Unsigned 32-bit integer
    rtcp.xr.btxnq.tdegnet  Time degraded by packet loss or late delivery
        Unsigned 32-bit integer
    rtcp.xr.btxnq.vmaxdiff  Maximum IPDV difference in 1 cycle
        Unsigned 16-bit integer
    rtcp.xr.btxnq.vrange  Maximum IPDV difference seen to date
        Unsigned 16-bit integer
    rtcp.xr.btxnq.vsum  Sum of peak IPDV differences to date
        Unsigned 32-bit integer
    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
        Single-precision floating point
        MOS is in the range of 1 to 5; 127 indicates this parameter is unavailable
    rtcp.xr.voipmetrics.moslq  MOS - Listening Quality
        Single-precision floating point
        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 Concealment 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
    srtcp.auth_tag  SRTCP Auth Tag
        Byte array
        SRTCP Authentication Tag
    srtcp.e  SRTCP E flag
        Boolean
        SRTCP Encryption Flag
    srtcp.index  SRTCP Index
        Unsigned 32-bit integer
    srtcp.mki  SRTCP MKI
        Byte array
        SRTCP Master Key Index

Redback (redback)

    redback.circuit  Circuit
        Unsigned 64-bit integer
    redback.context  Context
        Unsigned 32-bit integer
    redback.dataoffset  Data Offset
        Unsigned 16-bit integer
    redback.flags  Flags
        Unsigned 32-bit integer
    redback.l3offset  Layer 3 Offset
        Unsigned 16-bit integer
    redback.length  Length
        Unsigned 16-bit integer
    redback.padding  Padding
        Byte array
    redback.protocol  Protocol
        Unsigned 16-bit integer
    redback.unknown  Unknown
        Byte array

Redback Lawful Intercept (redbackli)

    redbackli.acctid  Acctid
        Byte array
    redbackli.dir  Direction
        Byte array
    redbackli.eohpad  End of Header Padding
        Byte array
    redbackli.label  Label
        String
    redbackli.liid  Lawful Intercept Id
        Unsigned 32-bit integer
        LI Identifier
    redbackli.seqno  Sequence No
        Unsigned 32-bit integer
    redbackli.sessid  Session Id
        Unsigned 32-bit integer
        Session Identifier
    redbackli.unknownavp  Unknown AVP
        Byte array

Redundant Link Management Protocol (rlm)

    rlm.tid  Transaction ID
        Unsigned 16-bit integer
    rlm.type  Type
        Unsigned 8-bit integer
    rlm.unknown  Unknown
        Unsigned 16-bit integer
    rlm.unknown2  Unknown
        Unsigned 16-bit integer
    rlm.version  Version
        Unsigned 8-bit integer

Reginfo XML doc (RFC 3680) (reginfo)

    reginfo.contact  contact
        String
    reginfo.contact.callid  callid
        String
    reginfo.contact.cseq  cseq
        String
    reginfo.contact.display-name  display-name
        String
    reginfo.contact.display-name.lang  lang
        String
    reginfo.contact.duration-registered  duration-registered
        String
    reginfo.contact.event  event
        String
    reginfo.contact.expires  expires
        String
    reginfo.contact.id  id
        String
    reginfo.contact.q  q
        String
    reginfo.contact.retry-after  retry-after
        String
    reginfo.contact.state  state
        String
    reginfo.contact.unknown-param  unknown-param
        String
    reginfo.contact.unknown-param.name  name
        String
    reginfo.contact.uri  uri
        String
    reginfo.display-name  display-name
        String
    reginfo.display-name.lang  lang
        String
    reginfo.registration  registration
        String
    reginfo.registration.aor  aor
        String
    reginfo.registration.contact  contact
        String
    reginfo.registration.contact.callid  callid
        String
    reginfo.registration.contact.cseq  cseq
        String
    reginfo.registration.contact.display-name  display-name
        String
    reginfo.registration.contact.display-name.lang  lang
        String
    reginfo.registration.contact.duration-registered  duration-registered
        String
    reginfo.registration.contact.event  event
        String
    reginfo.registration.contact.expires  expires
        String
    reginfo.registration.contact.id  id
        String
    reginfo.registration.contact.q  q
        String
    reginfo.registration.contact.retry-after  retry-after
        String
    reginfo.registration.contact.state  state
        String
    reginfo.registration.contact.unknown-param  unknown-param
        String
    reginfo.registration.contact.unknown-param.name  name
        String
    reginfo.registration.contact.uri  uri
        String
    reginfo.registration.id  id
        String
    reginfo.registration.state  state
        String
    reginfo.state  state
        String
    reginfo.unknown-param  unknown-param
        String
    reginfo.unknown-param.name  name
        String
    reginfo.uri  uri
        String
    reginfo.version  version
        String
    reginfo.xmlns  xmlns
        String

Registry Server Attributes Manipulation Interface (rs_attr)

    rs_attr.opnum  Operation
        Unsigned 16-bit integer

Registry server administration operations. (rs_repadm)

    rs_repadmin.opnum  Operation
        Unsigned 16-bit integer

Reliable UDP (rudp)

    rudp.ack  Ack
        Unsigned 8-bit integer
        Acknowledgement Number
    rudp.cksum  Checksum
        Unsigned 16-bit integer
    rudp.flags  RUDP Header flags
        Unsigned 8-bit integer
    rudp.flags.0  0
        Boolean
    rudp.flags.ack  Ack
        Boolean
    rudp.flags.chk  CHK
        Boolean
        Checksum is on header or body
    rudp.flags.eak  Eak
        Boolean
        Extended Ack
    rudp.flags.nul  NULL
        Boolean
        Null flag
    rudp.flags.rst  RST
        Boolean
        Reset flag
    rudp.flags.syn  Syn
        Boolean
    rudp.flags.tcs  TCS
        Boolean
        Transfer Connection System
    rudp.hlen  Header Length
        Unsigned 8-bit integer
    rudp.seq  Seq
        Unsigned 8-bit integer
        Sequence Number

Remote Device Management (rdm)

    rdm.cc  Command class
        Unsigned 8-bit integer
    rdm.checksum  Checksum
        Unsigned 16-bit integer
    rdm.dst  Destination UID
        Byte array
    rdm.intron  Intron
        Byte array
    rdm.len  Message length
        Unsigned 8-bit integer
    rdm.mc  Message count
        Unsigned 8-bit integer
    rdm.pd  Parameter data
        Byte array
    rdm.pdl  Parameter data length
        Unsigned 8-bit integer
    rdm.pid  Parameter ID
        Unsigned 16-bit integer
    rdm.rt  Response type
        Unsigned 8-bit integer
    rdm.sc  Start code
        Unsigned 8-bit integer
    rdm.sd  Sub-device
        Unsigned 16-bit integer
    rdm.src  Source UID
        Byte array
    rdm.ssc  Sub-start code
        Unsigned 8-bit integer
    rdm.tn  Transaction number
        Unsigned 8-bit integer
    rdm.trailer  Trailer
        Byte array

Remote Management Control Protocol (rmcp)

    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

Remote Override interface (roverride)

    roverride.opnum  Operation
        Unsigned 16-bit integer

Remote Packet Capture (rpcap)

    rpcap.addr  Address
        No value
        Network address
    rpcap.auth  Authentication
        No value
    rpcap.auth_len1  Authentication item length 1
        Unsigned 16-bit integer
    rpcap.auth_len2  Authentication item length 2
        Unsigned 16-bit integer
    rpcap.auth_type  Authentication type
        Unsigned 16-bit integer
    rpcap.broadaddr  Broadcast
        No value
    rpcap.bufsize  Buffer size
        Unsigned 32-bit integer
    rpcap.cap_len  Capture length
        Unsigned 32-bit integer
    rpcap.client_port  Client Port
        Unsigned 16-bit integer
    rpcap.desclen  Description length
        Unsigned 32-bit integer
    rpcap.dstaddr  P2P destination address
        No value
    rpcap.dummy  Dummy
        Unsigned 16-bit integer
    rpcap.error  Error
        String
        Error text
    rpcap.error_value  Error value
        Unsigned 16-bit integer
    rpcap.filter  Filter
        No value
    rpcap.filterbpf_insn  Filter BPF instruction
        No value
    rpcap.filtertype  Filter type
        Unsigned 16-bit integer
        Filter type (BPF)
    rpcap.findalldevs_reply  Find all devices
        No value
    rpcap.flags  Flags
        Unsigned 16-bit integer
        Capture flags
    rpcap.flags.dgram  Use Datagram
        Boolean
    rpcap.flags.inbound  Inbound
        Boolean
    rpcap.flags.outbound  Outbound
        Boolean
    rpcap.flags.promisc  Promiscuous mode
        Boolean
    rpcap.flags.serveropen  Server open
        Boolean
    rpcap.if  Interface
        No value
    rpcap.if.af  Address family
        Unsigned 16-bit integer
    rpcap.if.flags  Interface flags
        Unsigned 32-bit integer
    rpcap.if.ip  IP address
        IPv4 address
    rpcap.if.padding  Padding
        Byte array
    rpcap.if.port  Port
        Unsigned 16-bit integer
        Port number
    rpcap.if.unknown  Unknown address
        Byte array
    rpcap.ifaddr  Interface address
        No value
    rpcap.ifdesc  Description
        String
        Interface description
    rpcap.ifdrop  Dropped by network interface
        Unsigned 32-bit integer
    rpcap.ifname  Name
        String
        Interface name
    rpcap.ifrecv  Received by kernel filter
        Unsigned 32-bit integer
        Received by kernel
    rpcap.instr_value  Instruction value
        Unsigned 32-bit integer
        Instruction-Dependent value
    rpcap.jf  JF
        Unsigned 8-bit integer
    rpcap.jt  JT
        Unsigned 8-bit integer
    rpcap.krnldrop  Dropped by kernel filter
        Unsigned 32-bit integer
    rpcap.len  Payload length
        Unsigned 32-bit integer
    rpcap.linktype  Link type
        Unsigned 32-bit integer
    rpcap.naddr  Number of addresses
        Unsigned 32-bit integer
    rpcap.namelen  Name length
        Unsigned 16-bit integer
    rpcap.netmask  Netmask
        No value
    rpcap.nitems  Number of items
        Unsigned 32-bit integer
    rpcap.number  Frame number
        Unsigned 32-bit integer
    rpcap.opcode  Op code
        Unsigned 16-bit integer
        Operation code
    rpcap.open_reply  Open reply
        No value
    rpcap.open_request  Open request
        String
    rpcap.packet  Packet
        No value
        Packet data
    rpcap.password  Password
        String
    rpcap.read_timeout  Read timeout
        Unsigned 32-bit integer
    rpcap.sampling_method  Method
        Unsigned 8-bit integer
        Sampling method
    rpcap.sampling_request  Sampling
        No value
    rpcap.sampling_value  Value
        Unsigned 32-bit integer
    rpcap.server_port  Server port
        Unsigned 16-bit integer
    rpcap.snaplen  Snap length
        Unsigned 32-bit integer
    rpcap.srvcapt  Captured by rpcapd
        Unsigned 32-bit integer
        Captured by RPCAP daemon
    rpcap.startcap_reply  Start capture reply
        No value
        Start Capture Reply
    rpcap.startcap_request  Start capture request
        No value
    rpcap.stats_reply  Statistics
        No value
        Statistics reply data
    rpcap.time  Arrival time
        Date/Time stamp
    rpcap.type  Message type
        Unsigned 8-bit integer
    rpcap.tzoff  Timezone offset
        Unsigned 32-bit integer
    rpcap.username  Username
        String
    rpcap.value  Message value
        Unsigned 16-bit integer
    rpcap.version  Version
        Unsigned 8-bit integer

Remote Procedure Call (rpc)

    rpc.array.len  num
        Unsigned 32-bit integer
        Length of RPC array
    rpc.auth.flavor  Flavor
        Unsigned 32-bit integer
    rpc.auth.gid  GID
        Unsigned 32-bit integer
    rpc.auth.length  Length
        Unsigned 32-bit integer
    rpc.auth.machinename  Machine Name
        String
    rpc.auth.stamp  Stamp
        Unsigned 32-bit integer
    rpc.auth.uid  UID
        Unsigned 32-bit integer
    rpc.authdes.convkey  Conversation Key (encrypted)
        Unsigned 32-bit integer
    rpc.authdes.namekind  Namekind
        Unsigned 32-bit integer
    rpc.authdes.netname  Netname
        String
    rpc.authdes.nickname  Nickname
        Unsigned 32-bit integer
    rpc.authdes.timestamp  Timestamp (encrypted)
        Unsigned 32-bit integer
    rpc.authdes.timeverf  Timestamp verifier (encrypted)
        Unsigned 32-bit integer
    rpc.authdes.window  Window (encrypted)
        Unsigned 32-bit integer
        Windows (encrypted)
    rpc.authdes.windowverf  Window verifier (encrypted)
        Unsigned 32-bit integer
    rpc.authgss.checksum  GSS Checksum
        Byte array
    rpc.authgss.context  GSS Context
        Byte array
    rpc.authgss.data  GSS Data
        Byte array
    rpc.authgss.data.length  Length
        Unsigned 32-bit integer
    rpc.authgss.major  GSS Major Status
        Unsigned 32-bit integer
    rpc.authgss.minor  GSS Minor Status
        Unsigned 32-bit integer
    rpc.authgss.procedure  GSS Procedure
        Unsigned 32-bit integer
    rpc.authgss.seqnum  GSS Sequence Number
        Unsigned 32-bit integer
    rpc.authgss.service  GSS Service
        Unsigned 32-bit integer
    rpc.authgss.token  GSS Token
        Byte array
    rpc.authgss.token_length  GSS Token Length
        Unsigned 32-bit integer
    rpc.authgss.version  GSS Version
        Unsigned 32-bit integer
    rpc.authgss.window  GSS Sequence Window
        Unsigned 32-bit integer
    rpc.authgssapi.handle  Client Handle
        Byte array
    rpc.authgssapi.isn  Signed ISN
        Byte array
    rpc.authgssapi.message  AUTH_GSSAPI Message
        Boolean
    rpc.authgssapi.msgversion  Msg Version
        Unsigned 32-bit integer
    rpc.authgssapi.version  AUTH_GSSAPI Version
        Unsigned 32-bit integer
    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
    rpc.fraglen  Fragment Length
        Unsigned 32-bit integer
    rpc.fragment  RPC Fragment
        Frame number
    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.lastfrag  Last Fragment
        Boolean
    rpc.msgtyp  Message Type
        Unsigned 32-bit integer
    rpc.procedure  Procedure
        Unsigned 32-bit integer
    rpc.program  Program
        Unsigned 32-bit integer
    rpc.programversion  Program Version
        Unsigned 32-bit integer
    rpc.programversion.max  Program Version (Maximum)
        Unsigned 32-bit integer
    rpc.programversion.min  Program Version (Minimum)
        Unsigned 32-bit integer
    rpc.reassembled.length  Reassembled RPC length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    rpc.repframe  Reply Frame
        Frame number
    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
    rpc.reqframe  Request Frame
        Frame number
    rpc.state_accept  Accept State
        Unsigned 32-bit integer
    rpc.state_auth  Auth State
        Unsigned 32-bit integer
    rpc.state_reject  Reject State
        Unsigned 32-bit integer
    rpc.time  Time from request
        Time duration
        Time between Request and Reply for ONC-RPC calls
    rpc.value_follows  Value Follows
        Boolean
    rpc.version  RPC Version
        Unsigned 32-bit integer
    rpc.version.max  RPC Version (Maximum)
        Unsigned 32-bit integer
    rpc.version.min  RPC Version (Minimum)
        Unsigned 32-bit integer
        Program Version (Minimum)
    rpc.xid  XID
        Unsigned 32-bit integer

Remote Process Execution (exec)

    exec.command  Command to execute
        NULL terminated string
        Command client is requesting the server to run.
    exec.password  Client password
        NULL terminated string
        Password client uses to log in to the server.
    exec.stderr_port  Stderr port (optional)
        NULL terminated string
        Client port that is listening for stderr stream from server
    exec.username  Client username
        NULL terminated string
        Username client uses to log in to the server.

Remote Program Load (rpl)

    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

Remote Quota (rquota)

    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
    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

Remote Registry Service (winreg)

    winreg.KeySecurityAttribute.data_size  Data Size
        Unsigned 32-bit integer
    winreg.KeySecurityAttribute.inherit  Inherit
        Unsigned 8-bit integer
    winreg.KeySecurityAttribute.sec_data  Sec Data
        No value
    winreg.KeySecurityData.data  Data
        Unsigned 8-bit integer
    winreg.KeySecurityData.len  Len
        Unsigned 32-bit integer
    winreg.KeySecurityData.size  Size
        Unsigned 32-bit integer
    winreg.QueryMultipleValue.length  Length
        Unsigned 32-bit integer
    winreg.QueryMultipleValue.name  Name
        String
    winreg.QueryMultipleValue.offset  Offset
        Unsigned 32-bit integer
    winreg.QueryMultipleValue.type  Type
        Unsigned 32-bit integer
    winreg.access_mask  Access Mask
        Unsigned 32-bit integer
    winreg.handle  Handle
        Byte array
    winreg.opnum  Operation
        Unsigned 16-bit integer
    winreg.sd  KeySecurityData
        No value
    winreg.sd.actual_size  Actual Size
        Unsigned 32-bit integer
    winreg.sd.max_size  Max Size
        Unsigned 32-bit integer
    winreg.sd.offset  Offset
        Unsigned 32-bit integer
    winreg.system_name  System Name
        Unsigned 16-bit integer
    winreg.werror  Windows Error
        Unsigned 32-bit integer
    winreg.winreg_AbortSystemShutdown.server  Server
        Unsigned 16-bit integer
    winreg.winreg_AccessMask.KEY_CREATE_LINK  Key Create Link
        Boolean
    winreg.winreg_AccessMask.KEY_CREATE_SUB_KEY  Key Create Sub Key
        Boolean
    winreg.winreg_AccessMask.KEY_ENUMERATE_SUB_KEYS  Key Enumerate Sub Keys
        Boolean
    winreg.winreg_AccessMask.KEY_NOTIFY  Key Notify
        Boolean
    winreg.winreg_AccessMask.KEY_QUERY_VALUE  Key Query Value
        Boolean
    winreg.winreg_AccessMask.KEY_SET_VALUE  Key Set Value
        Boolean
    winreg.winreg_AccessMask.KEY_WOW64_32KEY  Key Wow64 32key
        Boolean
    winreg.winreg_AccessMask.KEY_WOW64_64KEY  Key Wow64 64key
        Boolean
    winreg.winreg_CreateKey.action_taken  Action Taken
        Unsigned 32-bit integer
    winreg.winreg_CreateKey.keyclass  Keyclass
        String
    winreg.winreg_CreateKey.name  Name
        String
    winreg.winreg_CreateKey.new_handle  New Handle
        Byte array
    winreg.winreg_CreateKey.options  Options
        Unsigned 32-bit integer
    winreg.winreg_CreateKey.secdesc  Secdesc
        No value
    winreg.winreg_DeleteKey.key  Key
        String
    winreg.winreg_DeleteValue.value  Value
        String
    winreg.winreg_EnumKey.enum_index  Enum Index
        Unsigned 32-bit integer
    winreg.winreg_EnumKey.keyclass  Keyclass
        No value
    winreg.winreg_EnumKey.last_changed_time  Last Changed Time
        Date/Time stamp
    winreg.winreg_EnumKey.name  Name
        No value
    winreg.winreg_EnumValue.enum_index  Enum Index
        Unsigned 32-bit integer
    winreg.winreg_EnumValue.length  Length
        Unsigned 32-bit integer
    winreg.winreg_EnumValue.name  Name
        No value
    winreg.winreg_EnumValue.size  Size
        Unsigned 32-bit integer
    winreg.winreg_EnumValue.type  Type
        Unsigned 32-bit integer
    winreg.winreg_EnumValue.value  Value
        Unsigned 8-bit integer
    winreg.winreg_GetKeySecurity.sec_info  Sec Info
        No value
    winreg.winreg_GetVersion.version  Version
        Unsigned 32-bit integer
    winreg.winreg_InitiateSystemShutdown.force_apps  Force Apps
        Unsigned 8-bit integer
    winreg.winreg_InitiateSystemShutdown.hostname  Hostname
        Unsigned 16-bit integer
    winreg.winreg_InitiateSystemShutdown.message  Message
        No value
    winreg.winreg_InitiateSystemShutdown.reboot  Reboot
        Unsigned 8-bit integer
    winreg.winreg_InitiateSystemShutdown.timeout  Timeout
        Unsigned 32-bit integer
    winreg.winreg_InitiateSystemShutdownEx.force_apps  Force Apps
        Unsigned 8-bit integer
    winreg.winreg_InitiateSystemShutdownEx.hostname  Hostname
        Unsigned 16-bit integer
    winreg.winreg_InitiateSystemShutdownEx.message  Message
        No value
    winreg.winreg_InitiateSystemShutdownEx.reason  Reason
        Unsigned 32-bit integer
    winreg.winreg_InitiateSystemShutdownEx.reboot  Reboot
        Unsigned 8-bit integer
    winreg.winreg_InitiateSystemShutdownEx.timeout  Timeout
        Unsigned 32-bit integer
    winreg.winreg_LoadKey.filename  Filename
        String
    winreg.winreg_LoadKey.keyname  Keyname
        String
    winreg.winreg_NotifyChangeKeyValue.notify_filter  Notify Filter
        Unsigned 32-bit integer
    winreg.winreg_NotifyChangeKeyValue.string1  String1
        String
    winreg.winreg_NotifyChangeKeyValue.string2  String2
        String
    winreg.winreg_NotifyChangeKeyValue.unknown  Unknown
        Unsigned 32-bit integer
    winreg.winreg_NotifyChangeKeyValue.unknown2  Unknown2
        Unsigned 32-bit integer
    winreg.winreg_NotifyChangeKeyValue.watch_subtree  Watch Subtree
        Unsigned 8-bit integer
    winreg.winreg_OpenHKCU.access_mask  Access Mask
        Unsigned 32-bit integer
    winreg.winreg_OpenHKPD.access_mask  Access Mask
        Unsigned 32-bit integer
    winreg.winreg_OpenKey.access_mask  Access Mask
        Unsigned 32-bit integer
    winreg.winreg_OpenKey.keyname  Keyname
        String
    winreg.winreg_OpenKey.parent_handle  Parent Handle
        Byte array
    winreg.winreg_OpenKey.unknown  Unknown
        Unsigned 32-bit integer
    winreg.winreg_QueryInfoKey.classname  Classname
        String
    winreg.winreg_QueryInfoKey.last_changed_time  Last Changed Time
        Date/Time stamp
    winreg.winreg_QueryInfoKey.max_subkeylen  Max Subkeylen
        Unsigned 32-bit integer
    winreg.winreg_QueryInfoKey.max_subkeysize  Max Subkeysize
        Unsigned 32-bit integer
    winreg.winreg_QueryInfoKey.max_valbufsize  Max Valbufsize
        Unsigned 32-bit integer
    winreg.winreg_QueryInfoKey.max_valnamelen  Max Valnamelen
        Unsigned 32-bit integer
    winreg.winreg_QueryInfoKey.num_subkeys  Num Subkeys
        Unsigned 32-bit integer
    winreg.winreg_QueryInfoKey.num_values  Num Values
        Unsigned 32-bit integer
    winreg.winreg_QueryInfoKey.secdescsize  Secdescsize
        Unsigned 32-bit integer
    winreg.winreg_QueryMultipleValues.buffer  Buffer
        Unsigned 8-bit integer
    winreg.winreg_QueryMultipleValues.buffer_size  Buffer Size
        Unsigned 32-bit integer
    winreg.winreg_QueryMultipleValues.key_handle  Key Handle
        Byte array
    winreg.winreg_QueryMultipleValues.num_values  Num Values
        Unsigned 32-bit integer
    winreg.winreg_QueryMultipleValues.values  Values
        No value
    winreg.winreg_QueryValue.data  Data
        Unsigned 8-bit integer
    winreg.winreg_QueryValue.length  Length
        Unsigned 32-bit integer
    winreg.winreg_QueryValue.size  Size
        Unsigned 32-bit integer
    winreg.winreg_QueryValue.type  Type
        Unsigned 32-bit integer
    winreg.winreg_QueryValue.value_name  Value Name
        String
    winreg.winreg_RestoreKey.filename  Filename
        String
    winreg.winreg_RestoreKey.flags  Flags
        Unsigned 32-bit integer
    winreg.winreg_RestoreKey.handle  Handle
        Byte array
    winreg.winreg_SaveKey.filename  Filename
        String
    winreg.winreg_SaveKey.handle  Handle
        Byte array
    winreg.winreg_SaveKey.sec_attrib  Sec Attrib
        No value
    winreg.winreg_SecBuf.inherit  Inherit
        Unsigned 8-bit integer
    winreg.winreg_SecBuf.length  Length
        Unsigned 32-bit integer
    winreg.winreg_SecBuf.sd  Sd
        No value
    winreg.winreg_SetKeySecurity.access_mask  Access Mask
        Unsigned 32-bit integer
    winreg.winreg_SetValue.data  Data
        Unsigned 8-bit integer
    winreg.winreg_SetValue.name  Name
        String
    winreg.winreg_SetValue.size  Size
        Unsigned 32-bit integer
    winreg.winreg_SetValue.type  Type
        Unsigned 32-bit integer
    winreg.winreg_String.name  Name
        String
    winreg.winreg_String.name_len  Name Len
        Unsigned 16-bit integer
    winreg.winreg_String.name_size  Name Size
        Unsigned 16-bit integer
    winreg.winreg_StringBuf.length  Length
        Unsigned 16-bit integer
    winreg.winreg_StringBuf.name  Name
        Unsigned 16-bit integer
    winreg.winreg_StringBuf.size  Size
        Unsigned 16-bit integer

Remote Shell (rsh)

    rsh.request  Request
        Boolean
        TRUE if rsh request
    rsh.response  Response
        Boolean
        TRUE if rsh response

Remote Wall protocol (rwall)

    rwall.message  Message
        String
    rwall.procedure_v1  V1 Procedure
        Unsigned 32-bit integer

Remote sec_login preauth interface. (rsec_login)

    rsec_login.opnum  Operation
        Unsigned 16-bit integer

Resource ReserVation Protocol (RSVP) (rsvp)

    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.association  ASSOCIATION
        No value
    rsvp.bundle  Bundle Message
        Boolean
    rsvp.call_id  CALL ID
        No value
    rsvp.callid.srcaddr.ipv4  Source Transport Network Address
        IPv4 address
    rsvp.callid.srcaddr.ipv6  Source Transport Network Address
        IPv6 address
    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
    rsvp.diffserv.phbid.bit14  Bit 14
        Unsigned 16-bit integer
    rsvp.diffserv.phbid.bit15  Bit 15
        Unsigned 16-bit integer
    rsvp.diffserv.phbid.code  PHB id code
        Unsigned 16-bit integer
    rsvp.diffserv.phbid.dscp  DSCP
        Unsigned 16-bit integer
    rsvp.dste  CLASSTYPE
        No value
    rsvp.dste.classtype  CT
        Unsigned 8-bit integer
    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.guni.dsttna.ipv4  Destination TNA
        IPv4 address
    rsvp.guni.dsttna.ipv6  Destination TNA
        IPv6 address
    rsvp.guni.srctna.ipv4  Source TNA
        IPv4 address
    rsvp.guni.srctna.ipv6  Source TNA
        IPv6 address
    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_ack  MESSAGE-ID ACK
        No value
    rsvp.msgid_list  MESSAGE-ID LIST
        No value
    rsvp.notify  Notify Message
        Boolean
    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

Retix Spanning Tree Protocol (r-stp)

    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 Protocol (rlogin)

    rlogin.client_startup_flag  Client startup flag
        Unsigned 8-bit integer
    rlogin.client_user_name  Client-user-name
        String
    rlogin.control_message  Control message
        Unsigned 8-bit integer
    rlogin.data  Data
        String
    rlogin.server_user_name  Server-user-name
        String
    rlogin.startup_info_received_flag  Startup info received flag
        Unsigned 8-bit integer
    rlogin.terminal_speed  Terminal-speed
        Unsigned 32-bit integer
    rlogin.terminal_type  Terminal-type
        String
    rlogin.user_info  User Info
        String
    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.ss  Window size marker
        String
    rlogin.window_size.x_pixels  X Pixels
        Unsigned 16-bit integer
    rlogin.window_size.y_pixels  Y Pixels
        Unsigned 16-bit integer

Roofnet Protocol (roofnet)

    roofnet.cksum  Checksum
        Unsigned 16-bit integer
        Roofnet Header Checksum
    roofnet.datalength  Data Length
        Unsigned 16-bit integer
        Data Payload Length
    roofnet.flags  Flags
        Unsigned 16-bit integer
        Roofnet Flags
    roofnet.link.age  Age
        Unsigned 32-bit integer
        Information Age
    roofnet.link.dst  Dst IP
        IPv4 address
        Roofnet Message Destination
    roofnet.link.forward  Forward
        Unsigned 32-bit integer
    roofnet.link.rev  Rev
        Unsigned 32-bit integer
        Revision Number
    roofnet.link.seq  Seq
        Unsigned 32-bit integer
        Link Sequential Number
    roofnet.link.src  Source IP
        IPv4 address
        Roofnet Message Source
    roofnet.links  Links
        No value
    roofnet.next  Next Link
        Unsigned 8-bit integer
        Roofnet Next Link to Use
    roofnet.nlinks  Number of Links
        Unsigned 8-bit integer
        Roofnet Number of Links
    roofnet.querydst  Query Dst
        IPv4 address
        Roofnet Query Destination
    roofnet.seq  Seq
        Unsigned 32-bit integer
        Roofnet Sequential Number
    roofnet.ttl  Time To Live
        Unsigned 16-bit integer
        Roofnet Time to Live
    roofnet.type  Type
        Unsigned 8-bit integer
        Roofnet Message Type
    roofnet.version  Version
        Unsigned 8-bit integer
        Roofnet Version

Router-port Group Management Protocol (rgmp)

    rgmp.checksum  Checksum
        Unsigned 16-bit integer
    rgmp.checksum_bad  Bad Checksum
        Boolean
    rgmp.maddr  Multicast group address
        IPv4 address
    rgmp.type  Type
        Unsigned 8-bit integer
        RGMP Packet Type

Routing Information Protocol (rip)

    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
    rip.metric  Metric
        Unsigned 16-bit integer
        Metric for this route
    rip.netmask  Netmask
        IPv4 address
    rip.next_hop  Next Hop
        IPv4 address
        Next Hop router for this route
    rip.route_tag  Route Tag
        Unsigned 16-bit integer
    rip.routing_domain  Routing Domain
        Unsigned 16-bit integer
        RIPv2 Routing Domain
    rip.version  Version
        Unsigned 8-bit integer
        Version of the RIP protocol

Routing Table Maintenance Protocol (rtmp)

    nbp.nodeid  Node
        Unsigned 8-bit integer
    nbp.nodeid.length  Node Length
        Unsigned 8-bit integer
    rtmp.function  Function
        Unsigned 8-bit integer
        Request Function
    rtmp.net  Net
        Unsigned 16-bit integer
    rtmp.tuple.dist  Distance
        Unsigned 16-bit integer
    rtmp.tuple.net  Net
        Unsigned 16-bit integer
    rtmp.tuple.range_end  Range End
        Unsigned 16-bit integer
    rtmp.tuple.range_start  Range Start
        Unsigned 16-bit integer

S1 Application Protocol (s1ap)

    s1ap.Bearers_SubjectToStatusTransfer_Item  Bearers-SubjectToStatusTransfer-Item
        No value
    s1ap.BroadcastCancelledAreaList  BroadcastCancelledAreaList
        Unsigned 32-bit integer
    s1ap.BroadcastCompletedAreaList  BroadcastCompletedAreaList
        Unsigned 32-bit integer
    s1ap.CNDomain  CNDomain
        Unsigned 32-bit integer
    s1ap.CSFallbackIndicator  CSFallbackIndicator
        Unsigned 32-bit integer
    s1ap.CSGMembershipStatus  CSGMembershipStatus
        Unsigned 32-bit integer
    s1ap.CSG_Id  CSG-Id
        Byte array
    s1ap.CSG_IdList  CSG-IdList
        Unsigned 32-bit integer
    s1ap.CSG_IdList_Item  CSG-IdList-Item
        No value
    s1ap.CancelledCellinEAI_Item  CancelledCellinEAI-Item
        No value
    s1ap.CancelledCellinTAI_Item  CancelledCellinTAI-Item
        No value
    s1ap.Cause  Cause
        Unsigned 32-bit integer
    s1ap.Cdma2000HORequiredIndication  Cdma2000HORequiredIndication
        Unsigned 32-bit integer
    s1ap.Cdma2000HOStatus  Cdma2000HOStatus
        Unsigned 32-bit integer
    s1ap.Cdma2000OneXRAND  Cdma2000OneXRAND
        Byte array
    s1ap.Cdma2000OneXSRVCCInfo  Cdma2000OneXSRVCCInfo
        No value
    s1ap.Cdma2000PDU  Cdma2000PDU
        Byte array
    s1ap.Cdma2000RATType  Cdma2000RATType
        Unsigned 32-bit integer
    s1ap.Cdma2000SectorID  Cdma2000SectorID
        Byte array
    s1ap.CellAccessMode  CellAccessMode
        Unsigned 32-bit integer
    s1ap.CellID_Broadcast_Item  CellID-Broadcast-Item
        No value
    s1ap.CellID_Cancelled_Item  CellID-Cancelled-Item
        No value
    s1ap.CellTrafficTrace  CellTrafficTrace
        No value
    s1ap.CompletedCellinEAI_Item  CompletedCellinEAI-Item
        No value
    s1ap.CompletedCellinTAI_Item  CompletedCellinTAI-Item
        No value
    s1ap.ConcurrentWarningMessageIndicator  ConcurrentWarningMessageIndicator
        Unsigned 32-bit integer
    s1ap.CriticalityDiagnostics  CriticalityDiagnostics
        No value
    s1ap.CriticalityDiagnostics_IE_Item  CriticalityDiagnostics-IE-Item
        No value
    s1ap.DataCodingScheme  DataCodingScheme
        Byte array
    s1ap.Data_Forwarding_Not_Possible  Data-Forwarding-Not-Possible
        Unsigned 32-bit integer
    s1ap.DeactivateTrace  DeactivateTrace
        No value
    s1ap.Direct_Forwarding_Path_Availability  Direct-Forwarding-Path-Availability
        Unsigned 32-bit integer
    s1ap.DownlinkNASTransport  DownlinkNASTransport
        No value
    s1ap.DownlinkNonUEAssociatedLPPaTransport  DownlinkNonUEAssociatedLPPaTransport
        No value
    s1ap.DownlinkS1cdma2000tunneling  DownlinkS1cdma2000tunneling
        No value
    s1ap.DownlinkUEAssociatedLPPaTransport  DownlinkUEAssociatedLPPaTransport
        No value
    s1ap.ENBConfigurationTransfer  ENBConfigurationTransfer
        No value
    s1ap.ENBConfigurationUpdate  ENBConfigurationUpdate
        No value
    s1ap.ENBConfigurationUpdateAcknowledge  ENBConfigurationUpdateAcknowledge
        No value
    s1ap.ENBConfigurationUpdateFailure  ENBConfigurationUpdateFailure
        No value
    s1ap.ENBDirectInformationTransfer  ENBDirectInformationTransfer
        No value
    s1ap.ENBStatusTransfer  ENBStatusTransfer
        No value
    s1ap.ENB_StatusTransfer_TransparentContainer  ENB-StatusTransfer-TransparentContainer
        No value
    s1ap.ENB_UE_S1AP_ID  ENB-UE-S1AP-ID
        Unsigned 32-bit integer
    s1ap.ENBname  ENBname
        String
    s1ap.EUTRANRoundTripDelayEstimationInfo  EUTRANRoundTripDelayEstimationInfo
        Unsigned 32-bit integer
    s1ap.EUTRAN_CGI  EUTRAN-CGI
        No value
    s1ap.E_RABAdmittedItem  E-RABAdmittedItem
        No value
    s1ap.E_RABAdmittedList  E-RABAdmittedList
        Unsigned 32-bit integer
    s1ap.E_RABDataForwardingItem  E-RABDataForwardingItem
        No value
    s1ap.E_RABFailedToSetupItemHOReqAck  E-RABFailedToSetupItemHOReqAck
        No value
    s1ap.E_RABFailedtoSetupListHOReqAck  E-RABFailedtoSetupListHOReqAck
        Unsigned 32-bit integer
    s1ap.E_RABInformationListItem  E-RABInformationListItem
        No value
    s1ap.E_RABItem  E-RABItem
        No value
    s1ap.E_RABList  E-RABList
        Unsigned 32-bit integer
    s1ap.E_RABModifyItemBearerModRes  E-RABModifyItemBearerModRes
        No value
    s1ap.E_RABModifyListBearerModRes  E-RABModifyListBearerModRes
        Unsigned 32-bit integer
    s1ap.E_RABModifyRequest  E-RABModifyRequest
        No value
    s1ap.E_RABModifyResponse  E-RABModifyResponse
        No value
    s1ap.E_RABReleaseCommand  E-RABReleaseCommand
        No value
    s1ap.E_RABReleaseIndication  E-RABReleaseIndication
        No value
    s1ap.E_RABReleaseItemBearerRelComp  E-RABReleaseItemBearerRelComp
        No value
    s1ap.E_RABReleaseListBearerRelComp  E-RABReleaseListBearerRelComp
        Unsigned 32-bit integer
    s1ap.E_RABReleaseResponse  E-RABReleaseResponse
        No value
    s1ap.E_RABSetupItemBearerSURes  E-RABSetupItemBearerSURes
        No value
    s1ap.E_RABSetupItemCtxtSURes  E-RABSetupItemCtxtSURes
        No value
    s1ap.E_RABSetupListBearerSURes  E-RABSetupListBearerSURes
        Unsigned 32-bit integer
    s1ap.E_RABSetupListCtxtSURes  E-RABSetupListCtxtSURes
        Unsigned 32-bit integer
    s1ap.E_RABSetupRequest  E-RABSetupRequest
        No value
    s1ap.E_RABSetupResponse  E-RABSetupResponse
        No value
    s1ap.E_RABSubjecttoDataForwardingList  E-RABSubjecttoDataForwardingList
        Unsigned 32-bit integer
    s1ap.E_RABToBeModifiedItemBearerModReq  E-RABToBeModifiedItemBearerModReq
        No value
    s1ap.E_RABToBeModifiedListBearerModReq  E-RABToBeModifiedListBearerModReq
        Unsigned 32-bit integer
    s1ap.E_RABToBeSetupItemBearerSUReq  E-RABToBeSetupItemBearerSUReq
        No value
    s1ap.E_RABToBeSetupItemCtxtSUReq  E-RABToBeSetupItemCtxtSUReq
        No value
    s1ap.E_RABToBeSetupItemHOReq  E-RABToBeSetupItemHOReq
        No value
    s1ap.E_RABToBeSetupListBearerSUReq  E-RABToBeSetupListBearerSUReq
        Unsigned 32-bit integer
    s1ap.E_RABToBeSetupListCtxtSUReq  E-RABToBeSetupListCtxtSUReq
        Unsigned 32-bit integer
    s1ap.E_RABToBeSetupListHOReq  E-RABToBeSetupListHOReq
        Unsigned 32-bit integer
    s1ap.E_RABToBeSwitchedDLItem  E-RABToBeSwitchedDLItem
        No value
    s1ap.E_RABToBeSwitchedDLList  E-RABToBeSwitchedDLList
        Unsigned 32-bit integer
    s1ap.E_RABToBeSwitchedULItem  E-RABToBeSwitchedULItem
        No value
    s1ap.E_RABToBeSwitchedULList  E-RABToBeSwitchedULList
        Unsigned 32-bit integer
    s1ap.EmergencyAreaID  EmergencyAreaID
        Byte array
    s1ap.EmergencyAreaID_Broadcast_Item  EmergencyAreaID-Broadcast-Item
        No value
    s1ap.EmergencyAreaID_Cancelled_Item  EmergencyAreaID-Cancelled-Item
        No value
    s1ap.ErrorIndication  ErrorIndication
        No value
    s1ap.ExtendedRepetitionPeriod  ExtendedRepetitionPeriod
        Unsigned 32-bit integer
    s1ap.ForbiddenLAs_Item  ForbiddenLAs-Item
        No value
    s1ap.ForbiddenTAs_Item  ForbiddenTAs-Item
        No value
    s1ap.GUMMEI  GUMMEI
        No value
    s1ap.Global_ENB_ID  Global-ENB-ID
        No value
    s1ap.HandoverCancel  HandoverCancel
        No value
    s1ap.HandoverCancelAcknowledge  HandoverCancelAcknowledge
        No value
    s1ap.HandoverCommand  HandoverCommand
        No value
    s1ap.HandoverFailure  HandoverFailure
        No value
    s1ap.HandoverNotify  HandoverNotify
        No value
    s1ap.HandoverPreparationFailure  HandoverPreparationFailure
        No value
    s1ap.HandoverRequest  HandoverRequest
        No value
    s1ap.HandoverRequestAcknowledge  HandoverRequestAcknowledge
        No value
    s1ap.HandoverRequired  HandoverRequired
        No value
    s1ap.HandoverRestrictionList  HandoverRestrictionList
        No value
    s1ap.HandoverType  HandoverType
        Unsigned 32-bit integer
    s1ap.InitialContextSetupFailure  InitialContextSetupFailure
        No value
    s1ap.InitialContextSetupRequest  InitialContextSetupRequest
        No value
    s1ap.InitialContextSetupResponse  InitialContextSetupResponse
        No value
    s1ap.InitialUEMessage  InitialUEMessage
        No value
    s1ap.Inter_SystemInformationTransferType  Inter-SystemInformationTransferType
        Unsigned 32-bit integer
    s1ap.KillRequest  KillRequest
        No value
    s1ap.KillResponse  KillResponse
        No value
    s1ap.LAC  LAC
        Byte array
    s1ap.LPPa_PDU  LPPa-PDU
        Byte array
    s1ap.LastVisitedCell_Item  LastVisitedCell-Item
        Unsigned 32-bit integer
    s1ap.LocationReport  LocationReport
        No value
    s1ap.LocationReportingControl  LocationReportingControl
        No value
    s1ap.LocationReportingFailureIndication  LocationReportingFailureIndication
        No value
    s1ap.MMEConfigurationTransfer  MMEConfigurationTransfer
        No value
    s1ap.MMEConfigurationUpdate  MMEConfigurationUpdate
        No value
    s1ap.MMEConfigurationUpdateAcknowledge  MMEConfigurationUpdateAcknowledge
        No value
    s1ap.MMEConfigurationUpdateFailure  MMEConfigurationUpdateFailure
        No value
    s1ap.MMEDirectInformationTransfer  MMEDirectInformationTransfer
        No value
    s1ap.MMEStatusTransfer  MMEStatusTransfer
        No value
    s1ap.MME_Code  MME-Code
        Byte array
    s1ap.MME_Group_ID  MME-Group-ID
        Byte array
    s1ap.MME_UE_S1AP_ID  MME-UE-S1AP-ID
        Unsigned 32-bit integer
    s1ap.MMEname  MMEname
        String
    s1ap.MSClassmark2  MSClassmark2
        Byte array
    s1ap.MSClassmark3  MSClassmark3
        Byte array
    s1ap.MessageIdentifier  MessageIdentifier
        Byte array
    s1ap.NASNonDeliveryIndication  NASNonDeliveryIndication
        No value
    s1ap.NASSecurityParametersfromE_UTRAN  NASSecurityParametersfromE-UTRAN
        Byte array
    s1ap.NASSecurityParameterstoE_UTRAN  NASSecurityParameterstoE-UTRAN
        Byte array
    s1ap.NAS_PDU  NAS-PDU
        Byte array
    s1ap.NumberofBroadcastRequest  NumberofBroadcastRequest
        Unsigned 32-bit integer
    s1ap.OverloadResponse  OverloadResponse
        Unsigned 32-bit integer
    s1ap.OverloadStart  OverloadStart
        No value
    s1ap.OverloadStop  OverloadStop
        No value
    s1ap.PLMNidentity  PLMNidentity
        Byte array
    s1ap.PS_ServiceNotAvailable  PS-ServiceNotAvailable
        Unsigned 32-bit integer
    s1ap.Paging  Paging
        No value
    s1ap.PagingDRX  PagingDRX
        Unsigned 32-bit integer
    s1ap.PathSwitchRequest  PathSwitchRequest
        No value
    s1ap.PathSwitchRequestAcknowledge  PathSwitchRequestAcknowledge
        No value
    s1ap.PathSwitchRequestFailure  PathSwitchRequestFailure
        No value
    s1ap.PrivateIE_Field  PrivateIE-Field
        No value
    s1ap.PrivateMessage  PrivateMessage
        No value
    s1ap.ProtocolExtensionField  ProtocolExtensionField
        No value
    s1ap.ProtocolIE_Field  ProtocolIE-Field
        No value
    s1ap.ProtocolIE_SingleContainer  ProtocolIE-SingleContainer
        No value
    s1ap.RRC_Establishment_Cause  RRC-Establishment-Cause
        Unsigned 32-bit integer
    s1ap.RelativeMMECapacity  RelativeMMECapacity
        Unsigned 32-bit integer
    s1ap.RepetitionPeriod  RepetitionPeriod
        Unsigned 32-bit integer
    s1ap.RequestType  RequestType
        No value
    s1ap.Reset  Reset
        No value
    s1ap.ResetAcknowledge  ResetAcknowledge
        No value
    s1ap.ResetType  ResetType
        Unsigned 32-bit integer
    s1ap.Routing_ID  Routing-ID
        Unsigned 32-bit integer
    s1ap.S1AP_PDU  S1AP-PDU
        Unsigned 32-bit integer
    s1ap.S1SetupFailure  S1SetupFailure
        No value
    s1ap.S1SetupRequest  S1SetupRequest
        No value
    s1ap.S1SetupResponse  S1SetupResponse
        No value
    s1ap.SONConfigurationTransfer  SONConfigurationTransfer
        No value
    s1ap.SRVCCHOIndication  SRVCCHOIndication
        Unsigned 32-bit integer
    s1ap.SRVCCOperationPossible  SRVCCOperationPossible
        Unsigned 32-bit integer
    s1ap.S_TMSI  S-TMSI
        No value
    s1ap.SecurityContext  SecurityContext
        No value
    s1ap.SecurityKey  SecurityKey
        Byte array
    s1ap.SerialNumber  SerialNumber
        Byte array
    s1ap.ServedGUMMEIs  ServedGUMMEIs
        Unsigned 32-bit integer
    s1ap.ServedGUMMEIsItem  ServedGUMMEIsItem
        No value
    s1ap.ServedPLMNs  ServedPLMNs
        Unsigned 32-bit integer
    s1ap.SourceBSS_ToTargetBSS_TransparentContainer  SourceBSS-ToTargetBSS-TransparentContainer
        Byte array
    s1ap.SourceRNC_ToTargetRNC_TransparentContainer  SourceRNC-ToTargetRNC-TransparentContainer
        Byte array
    s1ap.Source_ToTarget_TransparentContainer  Source-ToTarget-TransparentContainer
        Byte array
    s1ap.SourceeNB_ToTargeteNB_TransparentContainer  SourceeNB-ToTargeteNB-TransparentContainer
        No value
    s1ap.SubscriberProfileIDforRFP  SubscriberProfileIDforRFP
        Unsigned 32-bit integer
    s1ap.SupportedTAs  SupportedTAs
        Unsigned 32-bit integer
    s1ap.SupportedTAs_Item  SupportedTAs-Item
        No value
    s1ap.TAC  TAC
        Byte array
    s1ap.TAI  TAI
        No value
    s1ap.TAIItem  TAIItem
        No value
    s1ap.TAIList  TAIList
        Unsigned 32-bit integer
    s1ap.TAI_Broadcast_Item  TAI-Broadcast-Item
        No value
    s1ap.TAI_Cancelled_Item  TAI-Cancelled-Item
        No value
    s1ap.TargetBSS_ToSourceBSS_TransparentContainer  TargetBSS-ToSourceBSS-TransparentContainer
        Byte array
    s1ap.TargetID  TargetID
        Unsigned 32-bit integer
    s1ap.TargetRNC_ToSourceRNC_TransparentContainer  TargetRNC-ToSourceRNC-TransparentContainer
        Byte array
    s1ap.Target_ToSource_TransparentContainer  Target-ToSource-TransparentContainer
        Byte array
    s1ap.TargeteNB_ToSourceeNB_TransparentContainer  TargeteNB-ToSourceeNB-TransparentContainer
        No value
    s1ap.TimeSynchronizationInfo  TimeSynchronizationInfo
        No value
    s1ap.TimeToWait  TimeToWait
        Unsigned 32-bit integer
    s1ap.TraceActivation  TraceActivation
        No value
    s1ap.TraceFailureIndication  TraceFailureIndication
        No value
    s1ap.TraceStart  TraceStart
        No value
    s1ap.TransportLayerAddress  TransportLayerAddress
        Byte array
    s1ap.UEAggregateMaximumBitrate  UEAggregateMaximumBitrate
        No value
    s1ap.UECapabilityInfoIndication  UECapabilityInfoIndication
        No value
    s1ap.UEContextModificationFailure  UEContextModificationFailure
        No value
    s1ap.UEContextModificationRequest  UEContextModificationRequest
        No value
    s1ap.UEContextModificationResponse  UEContextModificationResponse
        No value
    s1ap.UEContextReleaseCommand  UEContextReleaseCommand
        No value
    s1ap.UEContextReleaseComplete  UEContextReleaseComplete
        No value
    s1ap.UEContextReleaseRequest  UEContextReleaseRequest
        No value
    s1ap.UEIdentityIndexValue  UEIdentityIndexValue
        Byte array
    s1ap.UEPagingID  UEPagingID
        Unsigned 32-bit integer
    s1ap.UERadioCapability  UERadioCapability
        Byte array
    s1ap.UESecurityCapabilities  UESecurityCapabilities
        No value
    s1ap.UE_S1AP_IDs  UE-S1AP-IDs
        Unsigned 32-bit integer
    s1ap.UE_associatedLogicalS1_ConnectionItem  UE-associatedLogicalS1-ConnectionItem
        No value
    s1ap.UE_associatedLogicalS1_ConnectionListResAck  UE-associatedLogicalS1-ConnectionListResAck
        Unsigned 32-bit integer
    s1ap.UplinkNASTransport  UplinkNASTransport
        No value
    s1ap.UplinkNonUEAssociatedLPPaTransport  UplinkNonUEAssociatedLPPaTransport
        No value
    s1ap.UplinkS1cdma2000tunneling  UplinkS1cdma2000tunneling
        No value
    s1ap.UplinkUEAssociatedLPPaTransport  UplinkUEAssociatedLPPaTransport
        No value
    s1ap.WarningAreaList  WarningAreaList
        Unsigned 32-bit integer
    s1ap.WarningMessageContents  WarningMessageContents
        Byte array
    s1ap.WarningSecurityInfo  WarningSecurityInfo
        Byte array
    s1ap.WarningType  WarningType
        Byte array
    s1ap.WriteReplaceWarningRequest  WriteReplaceWarningRequest
        No value
    s1ap.WriteReplaceWarningResponse  WriteReplaceWarningResponse
        No value
    s1ap.allocationRetentionPriority  allocationRetentionPriority
        No value
        AllocationAndRetentionPriority
    s1ap.bearers_SubjectToStatusTransferList  bearers-SubjectToStatusTransferList
        Unsigned 32-bit integer
    s1ap.broadcastPLMNs  broadcastPLMNs
        Unsigned 32-bit integer
        BPLMNs
    s1ap.cGI  cGI
        No value
    s1ap.cI  cI
        Byte array
    s1ap.cSG_Id  cSG-Id
        Byte array
    s1ap.cancelledCellinEAI  cancelledCellinEAI
        Unsigned 32-bit integer
    s1ap.cancelledCellinTAI  cancelledCellinTAI
        Unsigned 32-bit integer
    s1ap.cause  cause
        Unsigned 32-bit integer
    s1ap.cdma2000OneXMEID  cdma2000OneXMEID
        Byte array
    s1ap.cdma2000OneXMSI  cdma2000OneXMSI
        Byte array
    s1ap.cdma2000OneXPilot  cdma2000OneXPilot
        Byte array
    s1ap.cellIDList  cellIDList
        Unsigned 32-bit integer
        ECGIList
    s1ap.cellID_Broadcast  cellID-Broadcast
        Unsigned 32-bit integer
    s1ap.cellID_Cancelled  cellID-Cancelled
        Unsigned 32-bit integer
    s1ap.cellType  cellType
        No value
    s1ap.cell_ID  cell-ID
        Byte array
        CellIdentity
    s1ap.cell_Size  cell-Size
        Unsigned 32-bit integer
    s1ap.completedCellinEAI  completedCellinEAI
        Unsigned 32-bit integer
    s1ap.completedCellinTAI  completedCellinTAI
        Unsigned 32-bit integer
    s1ap.criticality  criticality
        Unsigned 32-bit integer
    s1ap.dL_COUNTvalue  dL-COUNTvalue
        No value
        COUNTvalue
    s1ap.dL_Forwarding  dL-Forwarding
        Unsigned 32-bit integer
    s1ap.dL_gTP_TEID  dL-gTP-TEID
        Byte array
        GTP_TEID
    s1ap.dL_transportLayerAddress  dL-transportLayerAddress
        Byte array
        TransportLayerAddress
    s1ap.eCGI  eCGI
        No value
        EUTRAN_CGI
    s1ap.eNBX2TransportLayerAddresses  eNBX2TransportLayerAddresses
        Unsigned 32-bit integer
        ENBX2TLAs
    s1ap.eNB_ID  eNB-ID
        Unsigned 32-bit integer
    s1ap.eNB_UE_S1AP_ID  eNB-UE-S1AP-ID
        Unsigned 32-bit integer
    s1ap.e_RABInformationList  e-RABInformationList
        Unsigned 32-bit integer
    s1ap.e_RABLevelQoSParameters  e-RABLevelQoSParameters
        No value
    s1ap.e_RAB_GuaranteedBitrateDL  e-RAB-GuaranteedBitrateDL
        Unsigned 64-bit integer
        BitRate
    s1ap.e_RAB_GuaranteedBitrateUL  e-RAB-GuaranteedBitrateUL
        Unsigned 64-bit integer
        BitRate
    s1ap.e_RAB_ID  e-RAB-ID
        Unsigned 32-bit integer
    s1ap.e_RAB_MaximumBitrateDL  e-RAB-MaximumBitrateDL
        Unsigned 64-bit integer
        BitRate
    s1ap.e_RAB_MaximumBitrateUL  e-RAB-MaximumBitrateUL
        Unsigned 64-bit integer
        BitRate
    s1ap.e_RABlevelQoSParameters  e-RABlevelQoSParameters
        No value
    s1ap.e_RABlevelQosParameters  e-RABlevelQosParameters
        No value
    s1ap.e_UTRAN_Cell  e-UTRAN-Cell
        No value
        LastVisitedEUTRANCellInformation
    s1ap.e_UTRAN_Trace_ID  e-UTRAN-Trace-ID
        Byte array
    s1ap.emergencyAreaID  emergencyAreaID
        Byte array
    s1ap.emergencyAreaIDList  emergencyAreaIDList
        Unsigned 32-bit integer
    s1ap.emergencyAreaID_Broadcast  emergencyAreaID-Broadcast
        Unsigned 32-bit integer
    s1ap.emergencyAreaID_Cancelled  emergencyAreaID-Cancelled
        Unsigned 32-bit integer
    s1ap.encryptionAlgorithms  encryptionAlgorithms
        Byte array
    s1ap.equivalentPLMNs  equivalentPLMNs
        Unsigned 32-bit integer
        EPLMNs
    s1ap.eventType  eventType
        Unsigned 32-bit integer
    s1ap.extendedRNC_ID  extendedRNC-ID
        Unsigned 32-bit integer
    s1ap.extensionValue  extensionValue
        No value
    s1ap.forbiddenInterRATs  forbiddenInterRATs
        Unsigned 32-bit integer
    s1ap.forbiddenLACs  forbiddenLACs
        Unsigned 32-bit integer
    s1ap.forbiddenLAs  forbiddenLAs
        Unsigned 32-bit integer
    s1ap.forbiddenTACs  forbiddenTACs
        Unsigned 32-bit integer
    s1ap.forbiddenTAs  forbiddenTAs
        Unsigned 32-bit integer
    s1ap.gERAN_Cell  gERAN-Cell
        Unsigned 32-bit integer
        LastVisitedGERANCellInformation
    s1ap.gERAN_Cell_ID  gERAN-Cell-ID
        No value
    s1ap.gTP_TEID  gTP-TEID
        Byte array
    s1ap.gbrQosInformation  gbrQosInformation
        No value
        GBR_QosInformation
    s1ap.global  global
        Object Identifier
        OBJECT_IDENTIFIER
    s1ap.global_Cell_ID  global-Cell-ID
        No value
        EUTRAN_CGI
    s1ap.global_ENB_ID  global-ENB-ID
        No value
    s1ap.hFN  hFN
        Unsigned 32-bit integer
    s1ap.homeENB_ID  homeENB-ID
        Byte array
        BIT_STRING_SIZE_28
    s1ap.iECriticality  iECriticality
        Unsigned 32-bit integer
        Criticality
    s1ap.iE_Extensions  iE-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    s1ap.iE_ID  iE-ID
        Unsigned 32-bit integer
        ProtocolIE_ID
    s1ap.iEsCriticalityDiagnostics  iEsCriticalityDiagnostics
        Unsigned 32-bit integer
        CriticalityDiagnostics_IE_List
    s1ap.iMSI  iMSI
        Byte array
    s1ap.id  id
        Unsigned 32-bit integer
        ProtocolIE_ID
    s1ap.initiatingMessage  initiatingMessage
        No value
    s1ap.integrityProtectionAlgorithms  integrityProtectionAlgorithms
        Byte array
    s1ap.interfacesToTrace  interfacesToTrace
        Byte array
    s1ap.lAC  lAC
        Byte array
    s1ap.lAI  lAI
        No value
    s1ap.local  local
        Unsigned 32-bit integer
        INTEGER_0_65535
    s1ap.mMEC  mMEC
        Byte array
        MME_Code
    s1ap.mME_Code  mME-Code
        Byte array
    s1ap.mME_Group_ID  mME-Group-ID
        Byte array
    s1ap.mME_UE_S1AP_ID  mME-UE-S1AP-ID
        Unsigned 32-bit integer
    s1ap.m_TMSI  m-TMSI
        Byte array
    s1ap.macroENB_ID  macroENB-ID
        Byte array
        BIT_STRING_SIZE_20
    s1ap.misc  misc
        Unsigned 32-bit integer
        CauseMisc
    s1ap.nAS_PDU  nAS-PDU
        Byte array
    s1ap.nas  nas
        Unsigned 32-bit integer
        CauseNas
    s1ap.nextHopChainingCount  nextHopChainingCount
        Unsigned 32-bit integer
        INTEGER_0_7
    s1ap.nextHopParameter  nextHopParameter
        Byte array
        SecurityKey
    s1ap.numberOfBroadcasts  numberOfBroadcasts
        Unsigned 32-bit integer
    s1ap.overloadAction  overloadAction
        Unsigned 32-bit integer
    s1ap.pDCP_SN  pDCP-SN
        Unsigned 32-bit integer
    s1ap.pLMN_Identity  pLMN-Identity
        Byte array
        PLMNidentity
    s1ap.pLMNidentity  pLMNidentity
        Byte array
    s1ap.partOfS1_Interface  partOfS1-Interface
        Unsigned 32-bit integer
        UE_associatedLogicalS1_ConnectionListRes
    s1ap.pre_emptionCapability  pre-emptionCapability
        Unsigned 32-bit integer
    s1ap.pre_emptionVulnerability  pre-emptionVulnerability
        Unsigned 32-bit integer
    s1ap.priorityLevel  priorityLevel
        Unsigned 32-bit integer
    s1ap.privateIEs  privateIEs
        Unsigned 32-bit integer
        PrivateIE_Container
    s1ap.procedureCode  procedureCode
        Unsigned 32-bit integer
    s1ap.procedureCriticality  procedureCriticality
        Unsigned 32-bit integer
        Criticality
    s1ap.protocol  protocol
        Unsigned 32-bit integer
        CauseProtocol
    s1ap.protocolIEs  protocolIEs
        Unsigned 32-bit integer
        ProtocolIE_Container
    s1ap.qCI  qCI
        Unsigned 32-bit integer
    s1ap.rAC  rAC
        Byte array
    s1ap.rIMInformation  rIMInformation
        Byte array
    s1ap.rIMRoutingAddress  rIMRoutingAddress
        Unsigned 32-bit integer
    s1ap.rIMTransfer  rIMTransfer
        No value
    s1ap.rNC_ID  rNC-ID
        Unsigned 32-bit integer
    s1ap.rRC_Container  rRC-Container
        Byte array
    s1ap.radioNetwork  radioNetwork
        Unsigned 32-bit integer
        CauseRadioNetwork
    s1ap.receiveStatusofULPDCPSDUs  receiveStatusofULPDCPSDUs
        Byte array
    s1ap.reportArea  reportArea
        Unsigned 32-bit integer
    s1ap.s1_Interface  s1-Interface
        Unsigned 32-bit integer
        ResetAll
    s1ap.sONInformation  sONInformation
        Unsigned 32-bit integer
    s1ap.sONInformationReply  sONInformationReply
        No value
    s1ap.sONInformationRequest  sONInformationRequest
        Unsigned 32-bit integer
    s1ap.s_TMSI  s-TMSI
        No value
    s1ap.selected_TAI  selected-TAI
        No value
        TAI
    s1ap.servedGroupIDs  servedGroupIDs
        Unsigned 32-bit integer
    s1ap.servedMMECs  servedMMECs
        Unsigned 32-bit integer
    s1ap.servedPLMNs  servedPLMNs
        Unsigned 32-bit integer
    s1ap.servingPLMN  servingPLMN
        Byte array
        PLMNidentity
    s1ap.sourceeNB_ID  sourceeNB-ID
        No value
    s1ap.stratumLevel  stratumLevel
        Unsigned 32-bit integer
    s1ap.subscriberProfileIDforRFP  subscriberProfileIDforRFP
        Unsigned 32-bit integer
    s1ap.successfulOutcome  successfulOutcome
        No value
    s1ap.synchronizationStatus  synchronizationStatus
        Unsigned 32-bit integer
    s1ap.tAC  tAC
        Byte array
    s1ap.tAI  tAI
        No value
    s1ap.tAI_Broadcast  tAI-Broadcast
        Unsigned 32-bit integer
    s1ap.tAI_Cancelled  tAI-Cancelled
        Unsigned 32-bit integer
    s1ap.targetCell_ID  targetCell-ID
        No value
        EUTRAN_CGI
    s1ap.targetRNC_ID  targetRNC-ID
        No value
    s1ap.targeteNB_ID  targeteNB-ID
        No value
    s1ap.time_UE_StayedInCell  time-UE-StayedInCell
        Unsigned 32-bit integer
    s1ap.traceCollectionEntityIPAddress  traceCollectionEntityIPAddress
        Byte array
        TransportLayerAddress
    s1ap.traceDepth  traceDepth
        Unsigned 32-bit integer
    s1ap.trackingAreaListforWarning  trackingAreaListforWarning
        Unsigned 32-bit integer
        TAIListforWarning
    s1ap.transport  transport
        Unsigned 32-bit integer
        CauseTransport
    s1ap.transportLayerAddress  transportLayerAddress
        Byte array
    s1ap.transportLayerAddressIPv4  transportLayerAddress(IPv4)
        IPv4 address
    s1ap.transportLayerAddressIPv6  transportLayerAddress(IPv6)
        IPv4 address
    s1ap.triggeringMessage  triggeringMessage
        Unsigned 32-bit integer
    s1ap.typeOfError  typeOfError
        Unsigned 32-bit integer
    s1ap.uE_HistoryInformation  uE-HistoryInformation
        Unsigned 32-bit integer
    s1ap.uE_S1AP_ID_pair  uE-S1AP-ID-pair
        No value
    s1ap.uEaggregateMaximumBitRateDL  uEaggregateMaximumBitRateDL
        Unsigned 64-bit integer
        BitRate
    s1ap.uEaggregateMaximumBitRateUL  uEaggregateMaximumBitRateUL
        Unsigned 64-bit integer
        BitRate
    s1ap.uL_COUNTvalue  uL-COUNTvalue
        No value
        COUNTvalue
    s1ap.uL_GTP_TEID  uL-GTP-TEID
        Byte array
        GTP_TEID
    s1ap.uL_TransportLayerAddress  uL-TransportLayerAddress
        Byte array
        TransportLayerAddress
    s1ap.uTRAN_Cell  uTRAN-Cell
        Byte array
        LastVisitedUTRANCellInformation
    s1ap.undefined  undefined
        No value
    s1ap.unsuccessfulOutcome  unsuccessfulOutcome
        No value
    s1ap.value  value
        No value
        T_ie_field_value
    s1ap.x2TNLConfigurationInfo  x2TNLConfigurationInfo
        No value

SADMIND (sadmind)

    sadmind.procedure_v1  V1 Procedure
        Unsigned 32-bit integer
    sadmind.procedure_v2  V2 Procedure
        Unsigned 32-bit integer
    sadmind.procedure_v3  V3 Procedure
        Unsigned 32-bit integer

SAIA S-Bus (sbus)

    sbus.CPU_status  CPU status
        Unsigned 8-bit integer
        SAIA PCD CPU status
    sbus.addr_EEPROM  Base address of EEPROM register
        Unsigned 16-bit integer
        Base address of 32 bit EEPROM register to read or write
    sbus.addr_IOF  Base address IOF
        Unsigned 16-bit integer
        Base address of binary elements to read
    sbus.addr_RTC  Base address RTC
        Unsigned 16-bit integer
        Base address of 32 bit elements to read
    sbus.addr_prog  Base address of user memory or program lines
        Unsigned 24-bit integer
        Base address of the user memory or program lines (read or write)
    sbus.address  S-Bus address
        Unsigned 8-bit integer
        SAIA S-Bus station address
    sbus.att  Telegram attribute
        Unsigned 8-bit integer
        SAIA Ether-S-Bus telegram attribute, indicating type of telegram
    sbus.block_nr  Block/Element nr
        Unsigned 16-bit integer
        Program block / DatatBlock number
    sbus.block_type  Block type
        Unsigned 8-bit integer
        Program block type read
    sbus.cmd  Command
        Unsigned 8-bit integer
        SAIA S-Bus command
    sbus.cmd_extn  Command extension
        Unsigned 8-bit integer
        SAIA S-Bus command extension
    sbus.crc  Checksum
        Unsigned 16-bit integer
        CRC 16
    sbus.crc_bad  Bad Checksum
        Boolean
        A bad checksum in the telegram
    sbus.data_byte  Data bytes
        Unsigned 8-bit integer
        One byte from PCD
    sbus.data_byte_hex  Data bytes (hex)
        Unsigned 8-bit integer
        One byte from PCD (hexadecimal)
    sbus.data_display_register  PCD Display register
        Unsigned 32-bit integer
        The PCD display register (32 bit value)
    sbus.data_iof  S-Bus binary data
        Unsigned 32-bit integer
        8 binaries
    sbus.data_rtc  S-Bus 32-bit data
        Unsigned 32-bit integer
        One regiser/timer of counter (32 bit value)
    sbus.destination  Destination
        Unsigned 8-bit integer
        SAIA S-Bus destination address
    sbus.fio_count  FIO Count (amount of bits)
        Unsigned 8-bit integer
        Number of binary elements to be written
    sbus.flags.accu  ACCU
        Boolean
        PCD Accumulator
    sbus.flags.error  Error flag
        Boolean
        PCD error flag
    sbus.flags.nflag  N-flag
        Boolean
        Negative status flag
    sbus.flags.zflag  Z-flag
        Boolean
        Zero status flag
    sbus.fmodule_type  F-module type
        String
        Module type mounted on B1/2 slot
    sbus.fw_version  Firmware version
        String
        Firmware version of the PCD or module
    sbus.hw_modification  Hardware modification
        Unsigned 8-bit integer
        Hardware modification of the PCD or module
    sbus.hw_version  Hardware version
        String
        Hardware version of the PCD or the module
    sbus.len  Length (bytes)
        Unsigned 32-bit integer
        SAIA Ether-S-Bus telegram length
    sbus.nakcode  ACK/NAK code
        Unsigned 16-bit integer
        SAIA S-Bus ACK/NAK response
    sbus.nbr_elements  Number of elements
        Unsigned 16-bit integer
        Number of elements or characters
    sbus.pcd_type  PCD type
        String
        PCD type (short form)
    sbus.proto  Protocol type
        Unsigned 8-bit integer
        SAIA Ether-S-Bus protocol type
    sbus.rcount  R-count
        Unsigned 8-bit integer
        Number of elements expected in response
    sbus.rtc.date  RTC date (YYMMDD)
        Unsigned 24-bit integer
        Year, month and day of the real time clock
    sbus.rtc.time  RTC time (HHMMSS)
        Unsigned 24-bit integer
        Time of the real time clock
    sbus.rtc.week_day  RTC calendar week and week day
        Unsigned 16-bit integer
        Calendar week and week day number of the real time clock
    sbus.seq  Sequence
        Unsigned 16-bit integer
        SAIA Ether-S-Bus sequence number
    sbus.sysinfo  System information number
        Unsigned 8-bit integer
        System information number (extension to command code)
    sbus.sysinfo0.b1  Slot B1
        Boolean
        Presence of EEPROM information on slot B1
    sbus.sysinfo0.b2  Slot B2
        Boolean
        Presence of EEPROM information on slot B2
    sbus.sysinfo0.mem  Mem size info
        Boolean
        Availability of memory size information
    sbus.sysinfo0.pgubaud  PGU baud
        Boolean
        Availability of PGU baud switch feature
    sbus.sysinfo0.trace  Trace buffer
        Boolean
        Availability of trace buffer feature
    sbus.sysinfo_length  System information length
        Unsigned 8-bit integer
        System information length in response
    sbus.various  Various data
        No value
        Various data contained in telegrams but nobody will search for it
    sbus.vers  Version
        Unsigned 8-bit integer
        SAIA Ether-S-Bus version
    sbus.wcount  W-count (raw)
        Unsigned 8-bit integer
        Number of bytes to be written
    sbus.wcount_calc  W-count (32 bit values)
        Unsigned 8-bit integer
        Number of elements to be written
    sbus.web.aid  AID
        Unsigned 8-bit integer
        Web server command/status code (AID)
    sbus.web.seq  Sequence
        Unsigned 8-bit integer
        Web server sequence nr (PACK_N)
    sbus.web.size  Web server packet size
        Unsigned 8-bit integer

SAMR (pidl) (samr)

    samr.alias.access_mask  Access Mask
        Unsigned 32-bit integer
    samr.alias_handle  Alias Handle
        Byte array
    samr.connect.access_mask  Access Mask
        Unsigned 32-bit integer
    samr.connect_handle  Connect Handle
        Byte array
    samr.domain.access_mask  Access Mask
        Unsigned 32-bit integer
    samr.domain_handle  Domain Handle
        Byte array
    samr.group.access_mask  Access Mask
        Unsigned 32-bit integer
    samr.group_handle  Group Handle
        Byte array
    samr.handle  Handle
        Byte array
    samr.lsa_Strings.count  Count
        Unsigned 32-bit integer
    samr.lsa_Strings.names  Names
        String
    samr.opnum  Operation
        Unsigned 16-bit integer
    samr.rid  RID
        Unsigned 32-bit integer
    samr.samr_AcctFlags.ACB_AUTOLOCK  Acb Autolock
        Boolean
    samr.samr_AcctFlags.ACB_DISABLED  Acb Disabled
        Boolean
    samr.samr_AcctFlags.ACB_DOMTRUST  Acb Domtrust
        Boolean
    samr.samr_AcctFlags.ACB_DONT_REQUIRE_PREAUTH  Acb Dont Require Preauth
        Boolean
    samr.samr_AcctFlags.ACB_ENC_TXT_PWD_ALLOWED  Acb Enc Txt Pwd Allowed
        Boolean
    samr.samr_AcctFlags.ACB_HOMDIRREQ  Acb Homdirreq
        Boolean
    samr.samr_AcctFlags.ACB_MNS  Acb Mns
        Boolean
    samr.samr_AcctFlags.ACB_NORMAL  Acb Normal
        Boolean
    samr.samr_AcctFlags.ACB_NOT_DELEGATED  Acb Not Delegated
        Boolean
    samr.samr_AcctFlags.ACB_NO_AUTH_DATA_REQD  Acb No Auth Data Reqd
        Boolean
    samr.samr_AcctFlags.ACB_PWNOEXP  Acb Pwnoexp
        Boolean
    samr.samr_AcctFlags.ACB_PWNOTREQ  Acb Pwnotreq
        Boolean
    samr.samr_AcctFlags.ACB_PW_EXPIRED  Acb Pw Expired
        Boolean
    samr.samr_AcctFlags.ACB_SMARTCARD_REQUIRED  Acb Smartcard Required
        Boolean
    samr.samr_AcctFlags.ACB_SVRTRUST  Acb Svrtrust
        Boolean
    samr.samr_AcctFlags.ACB_TEMPDUP  Acb Tempdup
        Boolean
    samr.samr_AcctFlags.ACB_TRUSTED_FOR_DELEGATION  Acb Trusted For Delegation
        Boolean
    samr.samr_AcctFlags.ACB_TRUST_AUTH_DELEGAT  Acb Trust Auth Delegat
        Boolean
    samr.samr_AcctFlags.ACB_USE_DES_KEY_ONLY  Acb Use Des Key Only
        Boolean
    samr.samr_AcctFlags.ACB_WSTRUST  Acb Wstrust
        Boolean
    samr.samr_AddAliasMember.sid  Sid
        No value
    samr.samr_AddGroupMember.flags  Flags
        Unsigned 32-bit integer
    samr.samr_AddMultipleMembersToAlias.sids  Sids
        No value
    samr.samr_AliasAccessMask.SAMR_ALIAS_ACCESS_ADD_MEMBER  Samr Alias Access Add Member
        Boolean
    samr.samr_AliasAccessMask.SAMR_ALIAS_ACCESS_GET_MEMBERS  Samr Alias Access Get Members
        Boolean
    samr.samr_AliasAccessMask.SAMR_ALIAS_ACCESS_LOOKUP_INFO  Samr Alias Access Lookup Info
        Boolean
    samr.samr_AliasAccessMask.SAMR_ALIAS_ACCESS_REMOVE_MEMBER  Samr Alias Access Remove Member
        Boolean
    samr.samr_AliasAccessMask.SAMR_ALIAS_ACCESS_SET_INFO  Samr Alias Access Set Info
        Boolean
    samr.samr_AliasInfo.all  All
        No value
    samr.samr_AliasInfo.description  Description
        String
    samr.samr_AliasInfo.name  Name
        String
    samr.samr_AliasInfoAll.description  Description
        String
    samr.samr_AliasInfoAll.name  Name
        String
    samr.samr_AliasInfoAll.num_members  Num Members
        Unsigned 32-bit integer
    samr.samr_ChangePasswordUser.cross1_present  Cross1 Present
        Unsigned 8-bit integer
    samr.samr_ChangePasswordUser.cross2_present  Cross2 Present
        Unsigned 8-bit integer
    samr.samr_ChangePasswordUser.lm_cross  Lm Cross
        No value
    samr.samr_ChangePasswordUser.lm_present  Lm Present
        Unsigned 8-bit integer
    samr.samr_ChangePasswordUser.new_lm_crypted  New Lm Crypted
        No value
    samr.samr_ChangePasswordUser.new_nt_crypted  New Nt Crypted
        No value
    samr.samr_ChangePasswordUser.nt_cross  Nt Cross
        No value
    samr.samr_ChangePasswordUser.nt_present  Nt Present
        Unsigned 8-bit integer
    samr.samr_ChangePasswordUser.old_lm_crypted  Old Lm Crypted
        No value
    samr.samr_ChangePasswordUser.old_nt_crypted  Old Nt Crypted
        No value
    samr.samr_ChangePasswordUser2.account  Account
        String
    samr.samr_ChangePasswordUser2.lm_change  Lm Change
        Unsigned 8-bit integer
    samr.samr_ChangePasswordUser2.lm_password  Lm Password
        No value
    samr.samr_ChangePasswordUser2.lm_verifier  Lm Verifier
        No value
    samr.samr_ChangePasswordUser2.nt_password  Nt Password
        No value
    samr.samr_ChangePasswordUser2.nt_verifier  Nt Verifier
        No value
    samr.samr_ChangePasswordUser2.server  Server
        String
    samr.samr_ChangePasswordUser3.account  Account
        String
    samr.samr_ChangePasswordUser3.dominfo  Dominfo
        No value
    samr.samr_ChangePasswordUser3.lm_change  Lm Change
        Unsigned 8-bit integer
    samr.samr_ChangePasswordUser3.lm_password  Lm Password
        No value
    samr.samr_ChangePasswordUser3.lm_verifier  Lm Verifier
        No value
    samr.samr_ChangePasswordUser3.nt_password  Nt Password
        No value
    samr.samr_ChangePasswordUser3.nt_verifier  Nt Verifier
        No value
    samr.samr_ChangePasswordUser3.password3  Password3
        No value
    samr.samr_ChangePasswordUser3.reject  Reject
        No value
    samr.samr_ChangePasswordUser3.server  Server
        String
    samr.samr_ChangeReject.reason  Reason
        Unsigned 32-bit integer
    samr.samr_ChangeReject.unknown1  Unknown1
        Unsigned 32-bit integer
    samr.samr_ChangeReject.unknown2  Unknown2
        Unsigned 32-bit integer
    samr.samr_Connect.system_name  System Name
        Unsigned 16-bit integer
    samr.samr_Connect2.system_name  System Name
        String
    samr.samr_Connect3.system_name  System Name
        String
    samr.samr_Connect3.unknown  Unknown
        Unsigned 32-bit integer
    samr.samr_Connect4.client_version  Client Version
        Unsigned 32-bit integer
    samr.samr_Connect4.system_name  System Name
        String
    samr.samr_Connect5.info_in  Info In
        No value
    samr.samr_Connect5.info_out  Info Out
        No value
    samr.samr_Connect5.level_in  Level In
        Unsigned 32-bit integer
    samr.samr_Connect5.level_out  Level Out
        Unsigned 32-bit integer
    samr.samr_Connect5.system_name  System Name
        String
    samr.samr_ConnectAccessMask.SAMR_ACCESS_CONNECT_TO_SERVER  Samr Access Connect To Server
        Boolean
    samr.samr_ConnectAccessMask.SAMR_ACCESS_CREATE_DOMAIN  Samr Access Create Domain
        Boolean
    samr.samr_ConnectAccessMask.SAMR_ACCESS_ENUM_DOMAINS  Samr Access Enum Domains
        Boolean
    samr.samr_ConnectAccessMask.SAMR_ACCESS_INITIALIZE_SERVER  Samr Access Initialize Server
        Boolean
    samr.samr_ConnectAccessMask.SAMR_ACCESS_LOOKUP_DOMAIN  Samr Access Lookup Domain
        Boolean
    samr.samr_ConnectAccessMask.SAMR_ACCESS_SHUTDOWN_SERVER  Samr Access Shutdown Server
        Boolean
    samr.samr_ConnectInfo.info1  Info1
        No value
    samr.samr_ConnectInfo1.client_version  Client Version
        Unsigned 32-bit integer
    samr.samr_ConnectInfo1.unknown2  Unknown2
        Unsigned 32-bit integer
    samr.samr_CreateDomAlias.alias_name  Alias Name
        String
    samr.samr_CreateDomainGroup.name  Name
        String
    samr.samr_CreateUser.account_name  Account Name
        String
    samr.samr_CreateUser2.access_granted  Access Granted
        Unsigned 32-bit integer
    samr.samr_CreateUser2.account_name  Account Name
        String
    samr.samr_CreateUser2.acct_flags  Acct Flags
        Unsigned 32-bit integer
    samr.samr_CryptPassword.data  Data
        Unsigned 8-bit integer
    samr.samr_CryptPasswordEx.data  Data
        Unsigned 8-bit integer
    samr.samr_DeleteAliasMember.sid  Sid
        No value
    samr.samr_DispEntryAscii.account_name  Account Name
        String
    samr.samr_DispEntryAscii.idx  Idx
        Unsigned 32-bit integer
    samr.samr_DispEntryFull.account_name  Account Name
        String
    samr.samr_DispEntryFull.acct_flags  Acct Flags
        Unsigned 32-bit integer
    samr.samr_DispEntryFull.description  Description
        String
    samr.samr_DispEntryFull.idx  Idx
        Unsigned 32-bit integer
    samr.samr_DispEntryFullGroup.account_name  Account Name
        String
    samr.samr_DispEntryFullGroup.acct_flags  Acct Flags
        Unsigned 32-bit integer
    samr.samr_DispEntryFullGroup.description  Description
        String
    samr.samr_DispEntryFullGroup.idx  Idx
        Unsigned 32-bit integer
    samr.samr_DispEntryGeneral.account_name  Account Name
        String
    samr.samr_DispEntryGeneral.acct_flags  Acct Flags
        Unsigned 32-bit integer
    samr.samr_DispEntryGeneral.description  Description
        String
    samr.samr_DispEntryGeneral.full_name  Full Name
        String
    samr.samr_DispEntryGeneral.idx  Idx
        Unsigned 32-bit integer
    samr.samr_DispInfo.info1  Info1
        No value
    samr.samr_DispInfo.info2  Info2
        No value
    samr.samr_DispInfo.info3  Info3
        No value
    samr.samr_DispInfo.info4  Info4
        No value
    samr.samr_DispInfo.info5  Info5
        No value
    samr.samr_DispInfoAscii.count  Count
        Unsigned 32-bit integer
    samr.samr_DispInfoAscii.entries  Entries
        No value
    samr.samr_DispInfoFull.count  Count
        Unsigned 32-bit integer
    samr.samr_DispInfoFull.entries  Entries
        No value
    samr.samr_DispInfoFullGroups.count  Count
        Unsigned 32-bit integer
    samr.samr_DispInfoFullGroups.entries  Entries
        No value
    samr.samr_DispInfoGeneral.count  Count
        Unsigned 32-bit integer
    samr.samr_DispInfoGeneral.entries  Entries
        No value
    samr.samr_DomGeneralInformation.domain_name  Domain Name
        String
    samr.samr_DomGeneralInformation.domain_server_state  Domain Server State
        Unsigned 32-bit integer
    samr.samr_DomGeneralInformation.force_logoff_time  Force Logoff Time
        Date/Time stamp
    samr.samr_DomGeneralInformation.num_aliases  Num Aliases
        Unsigned 32-bit integer
    samr.samr_DomGeneralInformation.num_groups  Num Groups
        Unsigned 32-bit integer
    samr.samr_DomGeneralInformation.num_users  Num Users
        Unsigned 32-bit integer
    samr.samr_DomGeneralInformation.oem_information  Oem Information
        String
    samr.samr_DomGeneralInformation.primary  Primary
        String
    samr.samr_DomGeneralInformation.role  Role
        Unsigned 32-bit integer
    samr.samr_DomGeneralInformation.sequence_num  Sequence Num
        Unsigned 64-bit integer
    samr.samr_DomGeneralInformation.unknown3  Unknown3
        Unsigned 32-bit integer
    samr.samr_DomGeneralInformation2.general  General
        No value
    samr.samr_DomGeneralInformation2.lockout_duration  Lockout Duration
        Unsigned 64-bit integer
    samr.samr_DomGeneralInformation2.lockout_threshold  Lockout Threshold
        Unsigned 16-bit integer
    samr.samr_DomGeneralInformation2.lockout_window  Lockout Window
        Unsigned 64-bit integer
    samr.samr_DomInfo1.max_password_age  Max Password Age
        Signed 64-bit integer
    samr.samr_DomInfo1.min_password_age  Min Password Age
        Signed 64-bit integer
    samr.samr_DomInfo1.min_password_length  Min Password Length
        Unsigned 16-bit integer
    samr.samr_DomInfo1.password_history_length  Password History Length
        Unsigned 16-bit integer
    samr.samr_DomInfo1.password_properties  Password Properties
        Unsigned 32-bit integer
    samr.samr_DomInfo12.lockout_duration  Lockout Duration
        Unsigned 64-bit integer
    samr.samr_DomInfo12.lockout_threshold  Lockout Threshold
        Unsigned 16-bit integer
    samr.samr_DomInfo12.lockout_window  Lockout Window
        Unsigned 64-bit integer
    samr.samr_DomInfo13.domain_create_time  Domain Create Time
        Date/Time stamp
    samr.samr_DomInfo13.modified_count_at_last_promotion  Modified Count At Last Promotion
        Unsigned 64-bit integer
    samr.samr_DomInfo13.sequence_num  Sequence Num
        Unsigned 64-bit integer
    samr.samr_DomInfo3.force_logoff_time  Force Logoff Time
        Date/Time stamp
    samr.samr_DomInfo5.domain_name  Domain Name
        String
    samr.samr_DomInfo6.primary  Primary
        String
    samr.samr_DomInfo7.role  Role
        Unsigned 32-bit integer
    samr.samr_DomInfo8.domain_create_time  Domain Create Time
        Date/Time stamp
    samr.samr_DomInfo8.sequence_num  Sequence Num
        Unsigned 64-bit integer
    samr.samr_DomInfo9.domain_server_state  Domain Server State
        Unsigned 32-bit integer
    samr.samr_DomOEMInformation.oem_information  Oem Information
        String
    samr.samr_DomainAccessMask.SAMR_DOMAIN_ACCESS_CREATE_ALIAS  Samr Domain Access Create Alias
        Boolean
    samr.samr_DomainAccessMask.SAMR_DOMAIN_ACCESS_CREATE_GROUP  Samr Domain Access Create Group
        Boolean
    samr.samr_DomainAccessMask.SAMR_DOMAIN_ACCESS_CREATE_USER  Samr Domain Access Create User
        Boolean
    samr.samr_DomainAccessMask.SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS  Samr Domain Access Enum Accounts
        Boolean
    samr.samr_DomainAccessMask.SAMR_DOMAIN_ACCESS_LOOKUP_ALIAS  Samr Domain Access Lookup Alias
        Boolean
    samr.samr_DomainAccessMask.SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1  Samr Domain Access Lookup Info 1
        Boolean
    samr.samr_DomainAccessMask.SAMR_DOMAIN_ACCESS_LOOKUP_INFO_2  Samr Domain Access Lookup Info 2
        Boolean
    samr.samr_DomainAccessMask.SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT  Samr Domain Access Open Account
        Boolean
    samr.samr_DomainAccessMask.SAMR_DOMAIN_ACCESS_SET_INFO_1  Samr Domain Access Set Info 1
        Boolean
    samr.samr_DomainAccessMask.SAMR_DOMAIN_ACCESS_SET_INFO_2  Samr Domain Access Set Info 2
        Boolean
    samr.samr_DomainAccessMask.SAMR_DOMAIN_ACCESS_SET_INFO_3  Samr Domain Access Set Info 3
        Boolean
    samr.samr_DomainInfo.general  General
        No value
    samr.samr_DomainInfo.general2  General2
        No value
    samr.samr_DomainInfo.info1  Info1
        No value
    samr.samr_DomainInfo.info12  Info12
        No value
    samr.samr_DomainInfo.info13  Info13
        No value
    samr.samr_DomainInfo.info3  Info3
        No value
    samr.samr_DomainInfo.info5  Info5
        No value
    samr.samr_DomainInfo.info6  Info6
        No value
    samr.samr_DomainInfo.info7  Info7
        No value
    samr.samr_DomainInfo.info8  Info8
        No value
    samr.samr_DomainInfo.info9  Info9
        No value
    samr.samr_DomainInfo.oem  Oem
        No value
    samr.samr_EnumDomainAliases.max_size  Max Size
        Unsigned 32-bit integer
    samr.samr_EnumDomainAliases.num_entries  Num Entries
        Unsigned 32-bit integer
    samr.samr_EnumDomainAliases.resume_handle  Resume Handle
        Unsigned 32-bit integer
    samr.samr_EnumDomainAliases.sam  Sam
        No value
    samr.samr_EnumDomainGroups.max_size  Max Size
        Unsigned 32-bit integer
    samr.samr_EnumDomainGroups.num_entries  Num Entries
        Unsigned 32-bit integer
    samr.samr_EnumDomainGroups.resume_handle  Resume Handle
        Unsigned 32-bit integer
    samr.samr_EnumDomainGroups.sam  Sam
        No value
    samr.samr_EnumDomainUsers.acct_flags  Acct Flags
        Unsigned 32-bit integer
    samr.samr_EnumDomainUsers.max_size  Max Size
        Unsigned 32-bit integer
    samr.samr_EnumDomainUsers.num_entries  Num Entries
        Unsigned 32-bit integer
    samr.samr_EnumDomainUsers.resume_handle  Resume Handle
        Unsigned 32-bit integer
    samr.samr_EnumDomainUsers.sam  Sam
        No value
    samr.samr_EnumDomains.buf_size  Buf Size
        Unsigned 32-bit integer
    samr.samr_EnumDomains.connect_handle  Connect Handle
        Byte array
    samr.samr_EnumDomains.num_entries  Num Entries
        Unsigned 32-bit integer
    samr.samr_EnumDomains.resume_handle  Resume Handle
        Unsigned 32-bit integer
    samr.samr_EnumDomains.sam  Sam
        No value
    samr.samr_FieldsPresent.SAMR_FIELD_ACCOUNT_NAME  Samr Field Account Name
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_ACCT_EXPIRY  Samr Field Acct Expiry
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_ACCT_FLAGS  Samr Field Acct Flags
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_ALLOW_PWD_CHANGE  Samr Field Allow Pwd Change
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_BAD_PWD_COUNT  Samr Field Bad Pwd Count
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_CODE_PAGE  Samr Field Code Page
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_COMMENT  Samr Field Comment
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_COUNTRY_CODE  Samr Field Country Code
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_DESCRIPTION  Samr Field Description
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_EXPIRED_FLAG  Samr Field Expired Flag
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_FORCE_PWD_CHANGE  Samr Field Force Pwd Change
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_FULL_NAME  Samr Field Full Name
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_HOME_DIRECTORY  Samr Field Home Directory
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_HOME_DRIVE  Samr Field Home Drive
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_LAST_LOGOFF  Samr Field Last Logoff
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_LAST_LOGON  Samr Field Last Logon
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_LAST_PWD_CHANGE  Samr Field Last Pwd Change
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_LM_PASSWORD_PRESENT  Samr Field Lm Password Present
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_LOGON_HOURS  Samr Field Logon Hours
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_LOGON_SCRIPT  Samr Field Logon Script
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_NT_PASSWORD_PRESENT  Samr Field Nt Password Present
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_NUM_LOGONS  Samr Field Num Logons
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_OWF_PWD  Samr Field Owf Pwd
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_PARAMETERS  Samr Field Parameters
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_PRIMARY_GID  Samr Field Primary Gid
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_PRIVATE_DATA  Samr Field Private Data
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_PROFILE_PATH  Samr Field Profile Path
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_RID  Samr Field Rid
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_SEC_DESC  Samr Field Sec Desc
        Boolean
    samr.samr_FieldsPresent.SAMR_FIELD_WORKSTATIONS  Samr Field Workstations
        Boolean
    samr.samr_GetAliasMembership.rids  Rids
        No value
    samr.samr_GetAliasMembership.sids  Sids
        No value
    samr.samr_GetBootKeyInformation.domain_handle  Domain Handle
        Byte array
    samr.samr_GetBootKeyInformation.unknown  Unknown
        Unsigned 32-bit integer
    samr.samr_GetDisplayEnumerationIndex.idx  Idx
        Unsigned 32-bit integer
    samr.samr_GetDisplayEnumerationIndex.level  Level
        Unsigned 16-bit integer
    samr.samr_GetDisplayEnumerationIndex.name  Name
        String
    samr.samr_GetDisplayEnumerationIndex2.idx  Idx
        Unsigned 32-bit integer
    samr.samr_GetDisplayEnumerationIndex2.level  Level
        Unsigned 32-bit integer
    samr.samr_GetDisplayEnumerationIndex2.name  Name
        String
    samr.samr_GetDomPwInfo.domain_name  Domain Name
        String
    samr.samr_GetDomPwInfo.info  Info
        No value
    samr.samr_GetGroupsForUser.rids  Rids
        No value
    samr.samr_GetMembersInAlias.sids  Sids
        No value
    samr.samr_GetUserPwInfo.info  Info
        No value
    samr.samr_GroupAccessMask.SAMR_GROUP_ACCESS_ADD_MEMBER  Samr Group Access Add Member
        Boolean
    samr.samr_GroupAccessMask.SAMR_GROUP_ACCESS_GET_MEMBERS  Samr Group Access Get Members
        Boolean
    samr.samr_GroupAccessMask.SAMR_GROUP_ACCESS_LOOKUP_INFO  Samr Group Access Lookup Info
        Boolean
    samr.samr_GroupAccessMask.SAMR_GROUP_ACCESS_REMOVE_MEMBER  Samr Group Access Remove Member
        Boolean
    samr.samr_GroupAccessMask.SAMR_GROUP_ACCESS_SET_INFO  Samr Group Access Set Info
        Boolean
    samr.samr_GroupAttrs.SE_GROUP_ENABLED  Se Group Enabled
        Boolean
    samr.samr_GroupAttrs.SE_GROUP_ENABLED_BY_DEFAULT  Se Group Enabled By Default
        Boolean
    samr.samr_GroupAttrs.SE_GROUP_LOGON_ID  Se Group Logon Id
        Boolean
    samr.samr_GroupAttrs.SE_GROUP_MANDATORY  Se Group Mandatory
        Boolean
    samr.samr_GroupAttrs.SE_GROUP_OWNER  Se Group Owner
        Boolean
    samr.samr_GroupAttrs.SE_GROUP_RESOURCE  Se Group Resource
        Boolean
    samr.samr_GroupAttrs.SE_GROUP_USE_FOR_DENY_ONLY  Se Group Use For Deny Only
        Boolean
    samr.samr_GroupInfo.all  All
        No value
    samr.samr_GroupInfo.all2  All2
        No value
    samr.samr_GroupInfo.attributes  Attributes
        No value
    samr.samr_GroupInfo.description  Description
        String
    samr.samr_GroupInfo.name  Name
        String
    samr.samr_GroupInfoAll.attributes  Attributes
        Unsigned 32-bit integer
    samr.samr_GroupInfoAll.description  Description
        String
    samr.samr_GroupInfoAll.name  Name
        String
    samr.samr_GroupInfoAll.num_members  Num Members
        Unsigned 32-bit integer
    samr.samr_GroupInfoAttributes.attributes  Attributes
        Unsigned 32-bit integer
    samr.samr_GroupInfoDescription.description  Description
        String
    samr.samr_Ids.count  Count
        Unsigned 32-bit integer
    samr.samr_LogonHours.bits  Bits
        Unsigned 8-bit integer
    samr.samr_LogonHours.units_per_week  Units Per Week
        Unsigned 16-bit integer
    samr.samr_LookupDomain.domain_name  Domain Name
        String
    samr.samr_LookupDomain.sid  Sid
        No value
    samr.samr_LookupNames.names  Names
        String
    samr.samr_LookupNames.num_names  Num Names
        Unsigned 32-bit integer
    samr.samr_LookupNames.rids  Rids
        No value
    samr.samr_LookupNames.types  Types
        No value
    samr.samr_LookupRids.names  Names
        No value
    samr.samr_LookupRids.num_rids  Num Rids
        Unsigned 32-bit integer
    samr.samr_LookupRids.types  Types
        No value
    samr.samr_OemChangePasswordUser2.account  Account
        String
    samr.samr_OemChangePasswordUser2.hash  Hash
        No value
    samr.samr_OemChangePasswordUser2.password  Password
        No value
    samr.samr_OemChangePasswordUser2.server  Server
        String
    samr.samr_OpenDomain.sid  Sid
        No value
    samr.samr_Password.hash  Hash
        Unsigned 8-bit integer
    samr.samr_PasswordProperties.DOMAIN_PASSWORD_COMPLEX  Domain Password Complex
        Boolean
    samr.samr_PasswordProperties.DOMAIN_PASSWORD_LOCKOUT_ADMINS  Domain Password Lockout Admins
        Boolean
    samr.samr_PasswordProperties.DOMAIN_PASSWORD_NO_ANON_CHANGE  Domain Password No Anon Change
        Boolean
    samr.samr_PasswordProperties.DOMAIN_PASSWORD_NO_CLEAR_CHANGE  Domain Password No Clear Change
        Boolean
    samr.samr_PasswordProperties.DOMAIN_PASSWORD_STORE_CLEARTEXT  Domain Password Store Cleartext
        Boolean
    samr.samr_PasswordProperties.DOMAIN_REFUSE_PASSWORD_CHANGE  Domain Refuse Password Change
        Boolean
    samr.samr_PwInfo.min_password_length  Min Password Length
        Unsigned 16-bit integer
    samr.samr_PwInfo.password_properties  Password Properties
        Unsigned 32-bit integer
    samr.samr_QueryAliasInfo.info  Info
        No value
    samr.samr_QueryAliasInfo.level  Level
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo.buf_size  Buf Size
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo.info  Info
        No value
    samr.samr_QueryDisplayInfo.level  Level
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo.max_entries  Max Entries
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo.returned_size  Returned Size
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo.start_idx  Start Idx
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo.total_size  Total Size
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo2.buf_size  Buf Size
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo2.info  Info
        No value
    samr.samr_QueryDisplayInfo2.level  Level
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo2.max_entries  Max Entries
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo2.returned_size  Returned Size
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo2.start_idx  Start Idx
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo2.total_size  Total Size
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo3.buf_size  Buf Size
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo3.info  Info
        No value
    samr.samr_QueryDisplayInfo3.level  Level
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo3.max_entries  Max Entries
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo3.returned_size  Returned Size
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo3.start_idx  Start Idx
        Unsigned 32-bit integer
    samr.samr_QueryDisplayInfo3.total_size  Total Size
        Unsigned 32-bit integer
    samr.samr_QueryDomainInfo.info  Info
        No value
    samr.samr_QueryDomainInfo.level  Level
        Unsigned 32-bit integer
    samr.samr_QueryDomainInfo2.info  Info
        No value
    samr.samr_QueryDomainInfo2.level  Level
        Unsigned 32-bit integer
    samr.samr_QueryGroupInfo.info  Info
        No value
    samr.samr_QueryGroupInfo.level  Level
        Unsigned 32-bit integer
    samr.samr_QueryGroupMember.rids  Rids
        No value
    samr.samr_QuerySecurity.sdbuf  Sdbuf
        No value
    samr.samr_QuerySecurity.sec_info  Sec Info
        No value
    samr.samr_QueryUserInfo.info  Info
        No value
    samr.samr_QueryUserInfo.level  Level
        Unsigned 32-bit integer
    samr.samr_QueryUserInfo2.info  Info
        No value
    samr.samr_QueryUserInfo2.level  Level
        Unsigned 32-bit integer
    samr.samr_RemoveMemberFromForeignDomain.sid  Sid
        No value
    samr.samr_RemoveMultipleMembersFromAlias.sids  Sids
        No value
    samr.samr_RidToSid.sid  Sid
        No value
    samr.samr_RidTypeArray.count  Count
        Unsigned 32-bit integer
    samr.samr_RidTypeArray.types  Types
        Unsigned 32-bit integer
    samr.samr_RidWithAttribute.attributes  Attributes
        Unsigned 32-bit integer
    samr.samr_RidWithAttributeArray.count  Count
        Unsigned 32-bit integer
    samr.samr_RidWithAttributeArray.rids  Rids
        No value
    samr.samr_SamArray.count  Count
        Unsigned 32-bit integer
    samr.samr_SamArray.entries  Entries
        No value
    samr.samr_SamEntry.idx  Idx
        Unsigned 32-bit integer
    samr.samr_SamEntry.name  Name
        String
    samr.samr_SetAliasInfo.info  Info
        No value
    samr.samr_SetAliasInfo.level  Level
        Unsigned 32-bit integer
    samr.samr_SetBootKeyInformation.unknown1  Unknown1
        Unsigned 32-bit integer
    samr.samr_SetBootKeyInformation.unknown2  Unknown2
        Unsigned 32-bit integer
    samr.samr_SetBootKeyInformation.unknown3  Unknown3
        Unsigned 32-bit integer
    samr.samr_SetDomainInfo.info  Info
        No value
    samr.samr_SetDomainInfo.level  Level
        Unsigned 32-bit integer
    samr.samr_SetDsrmPassword.hash  Hash
        No value
    samr.samr_SetDsrmPassword.name  Name
        String
    samr.samr_SetDsrmPassword.unknown  Unknown
        Unsigned 32-bit integer
    samr.samr_SetGroupInfo.info  Info
        No value
    samr.samr_SetGroupInfo.level  Level
        Unsigned 32-bit integer
    samr.samr_SetMemberAttributesOfGroup.unknown1  Unknown1
        Unsigned 32-bit integer
    samr.samr_SetMemberAttributesOfGroup.unknown2  Unknown2
        Unsigned 32-bit integer
    samr.samr_SetSecurity.sdbuf  Sdbuf
        No value
    samr.samr_SetSecurity.sec_info  Sec Info
        No value
    samr.samr_SetUserInfo.info  Info
        No value
    samr.samr_SetUserInfo.level  Level
        Unsigned 32-bit integer
    samr.samr_SetUserInfo2.info  Info
        No value
    samr.samr_SetUserInfo2.level  Level
        Unsigned 32-bit integer
    samr.samr_Shutdown.connect_handle  Connect Handle
        Byte array
    samr.samr_UserAccessMask.SAMR_USER_ACCESS_CHANGE_GROUP_MEMBERSHIP  Samr User Access Change Group Membership
        Boolean
    samr.samr_UserAccessMask.SAMR_USER_ACCESS_CHANGE_PASSWORD  Samr User Access Change Password
        Boolean
    samr.samr_UserAccessMask.SAMR_USER_ACCESS_GET_ATTRIBUTES  Samr User Access Get Attributes
        Boolean
    samr.samr_UserAccessMask.SAMR_USER_ACCESS_GET_GROUPS  Samr User Access Get Groups
        Boolean
    samr.samr_UserAccessMask.SAMR_USER_ACCESS_GET_GROUP_MEMBERSHIP  Samr User Access Get Group Membership
        Boolean
    samr.samr_UserAccessMask.SAMR_USER_ACCESS_GET_LOCALE  Samr User Access Get Locale
        Boolean
    samr.samr_UserAccessMask.SAMR_USER_ACCESS_GET_LOGONINFO  Samr User Access Get Logoninfo
        Boolean
    samr.samr_UserAccessMask.SAMR_USER_ACCESS_GET_NAME_ETC  Samr User Access Get Name Etc
        Boolean
    samr.samr_UserAccessMask.SAMR_USER_ACCESS_SET_ATTRIBUTES  Samr User Access Set Attributes
        Boolean
    samr.samr_UserAccessMask.SAMR_USER_ACCESS_SET_LOC_COM  Samr User Access Set Loc Com
        Boolean
    samr.samr_UserAccessMask.SAMR_USER_ACCESS_SET_PASSWORD  Samr User Access Set Password
        Boolean
    samr.samr_UserInfo.info1  Info1
        No value
    samr.samr_UserInfo.info10  Info10
        No value
    samr.samr_UserInfo.info11  Info11
        No value
    samr.samr_UserInfo.info12  Info12
        No value
    samr.samr_UserInfo.info13  Info13
        No value
    samr.samr_UserInfo.info14  Info14
        No value
    samr.samr_UserInfo.info16  Info16
        No value
    samr.samr_UserInfo.info17  Info17
        No value
    samr.samr_UserInfo.info18  Info18
        No value
    samr.samr_UserInfo.info2  Info2
        No value
    samr.samr_UserInfo.info20  Info20
        No value
    samr.samr_UserInfo.info21  Info21
        No value
    samr.samr_UserInfo.info23  Info23
        No value
    samr.samr_UserInfo.info24  Info24
        No value
    samr.samr_UserInfo.info25  Info25
        No value
    samr.samr_UserInfo.info26  Info26
        No value
    samr.samr_UserInfo.info3  Info3
        No value
    samr.samr_UserInfo.info4  Info4
        No value
    samr.samr_UserInfo.info5  Info5
        No value
    samr.samr_UserInfo.info6  Info6
        No value
    samr.samr_UserInfo.info7  Info7
        No value
    samr.samr_UserInfo.info8  Info8
        No value
    samr.samr_UserInfo.info9  Info9
        No value
    samr.samr_UserInfo1.account_name  Account Name
        String
    samr.samr_UserInfo1.comment  Comment
        String
    samr.samr_UserInfo1.description  Description
        String
    samr.samr_UserInfo1.full_name  Full Name
        String
    samr.samr_UserInfo1.primary_gid  Primary Gid
        Unsigned 32-bit integer
    samr.samr_UserInfo10.home_directory  Home Directory
        String
    samr.samr_UserInfo10.home_drive  Home Drive
        String
    samr.samr_UserInfo11.logon_script  Logon Script
        String
    samr.samr_UserInfo12.profile_path  Profile Path
        String
    samr.samr_UserInfo13.description  Description
        String
    samr.samr_UserInfo14.workstations  Workstations
        String
    samr.samr_UserInfo16.acct_flags  Acct Flags
        Unsigned 32-bit integer
    samr.samr_UserInfo17.acct_expiry  Acct Expiry
        Date/Time stamp
    samr.samr_UserInfo18.lm_pwd  Lm Pwd
        No value
    samr.samr_UserInfo18.lm_pwd_active  Lm Pwd Active
        Unsigned 8-bit integer
    samr.samr_UserInfo18.nt_pwd  Nt Pwd
        No value
    samr.samr_UserInfo18.nt_pwd_active  Nt Pwd Active
        Unsigned 8-bit integer
    samr.samr_UserInfo18.password_expired  Password Expired
        Unsigned 8-bit integer
    samr.samr_UserInfo2.code_page  Code Page
        Unsigned 16-bit integer
    samr.samr_UserInfo2.comment  Comment
        String
    samr.samr_UserInfo2.country_code  Country Code
        Unsigned 16-bit integer
    samr.samr_UserInfo2.unknown  Unknown
        String
    samr.samr_UserInfo20.parameters  Parameters
        String
    samr.samr_UserInfo21.account_name  Account Name
        String
    samr.samr_UserInfo21.acct_expiry  Acct Expiry
        Date/Time stamp
    samr.samr_UserInfo21.acct_flags  Acct Flags
        Unsigned 32-bit integer
    samr.samr_UserInfo21.allow_password_change  Allow Password Change
        Date/Time stamp
    samr.samr_UserInfo21.bad_password_count  Bad Password Count
        Unsigned 16-bit integer
    samr.samr_UserInfo21.buf_count  Buf Count
        Unsigned 32-bit integer
    samr.samr_UserInfo21.buffer  Buffer
        Unsigned 8-bit integer
    samr.samr_UserInfo21.code_page  Code Page
        Unsigned 16-bit integer
    samr.samr_UserInfo21.comment  Comment
        String
    samr.samr_UserInfo21.country_code  Country Code
        Unsigned 16-bit integer
    samr.samr_UserInfo21.description  Description
        String
    samr.samr_UserInfo21.fields_present  Fields Present
        Unsigned 32-bit integer
    samr.samr_UserInfo21.force_password_change  Force Password Change
        Date/Time stamp
    samr.samr_UserInfo21.full_name  Full Name
        String
    samr.samr_UserInfo21.home_directory  Home Directory
        String
    samr.samr_UserInfo21.home_drive  Home Drive
        String
    samr.samr_UserInfo21.last_logoff  Last Logoff
        Date/Time stamp
    samr.samr_UserInfo21.last_logon  Last Logon
        Date/Time stamp
    samr.samr_UserInfo21.last_password_change  Last Password Change
        Date/Time stamp
    samr.samr_UserInfo21.lm_password  Lm Password
        String
    samr.samr_UserInfo21.lm_password_set  Lm Password Set
        Unsigned 8-bit integer
    samr.samr_UserInfo21.logon_count  Logon Count
        Unsigned 16-bit integer
    samr.samr_UserInfo21.logon_hours  Logon Hours
        No value
    samr.samr_UserInfo21.logon_script  Logon Script
        String
    samr.samr_UserInfo21.nt_password  Nt Password
        String
    samr.samr_UserInfo21.nt_password_set  Nt Password Set
        Unsigned 8-bit integer
    samr.samr_UserInfo21.parameters  Parameters
        String
    samr.samr_UserInfo21.password_expired  Password Expired
        Unsigned 8-bit integer
    samr.samr_UserInfo21.primary_gid  Primary Gid
        Unsigned 32-bit integer
    samr.samr_UserInfo21.private  Private
        String
    samr.samr_UserInfo21.profile_path  Profile Path
        String
    samr.samr_UserInfo21.unknown4  Unknown4
        Unsigned 8-bit integer
    samr.samr_UserInfo21.workstations  Workstations
        String
    samr.samr_UserInfo23.info  Info
        No value
    samr.samr_UserInfo23.password  Password
        No value
    samr.samr_UserInfo24.password  Password
        No value
    samr.samr_UserInfo24.password_expired  Password Expired
        Unsigned 8-bit integer
    samr.samr_UserInfo25.info  Info
        No value
    samr.samr_UserInfo25.password  Password
        No value
    samr.samr_UserInfo26.password  Password
        No value
    samr.samr_UserInfo26.password_expired  Password Expired
        Unsigned 8-bit integer
    samr.samr_UserInfo3.account_name  Account Name
        String
    samr.samr_UserInfo3.acct_flags  Acct Flags
        Unsigned 32-bit integer
    samr.samr_UserInfo3.allow_password_change  Allow Password Change
        Date/Time stamp
    samr.samr_UserInfo3.bad_password_count  Bad Password Count
        Unsigned 16-bit integer
    samr.samr_UserInfo3.force_password_change  Force Password Change
        Date/Time stamp
    samr.samr_UserInfo3.full_name  Full Name
        String
    samr.samr_UserInfo3.home_directory  Home Directory
        String
    samr.samr_UserInfo3.home_drive  Home Drive
        String
    samr.samr_UserInfo3.last_logoff  Last Logoff
        Date/Time stamp
    samr.samr_UserInfo3.last_logon  Last Logon
        Date/Time stamp
    samr.samr_UserInfo3.last_password_change  Last Password Change
        Date/Time stamp
    samr.samr_UserInfo3.logon_count  Logon Count
        Unsigned 16-bit integer
    samr.samr_UserInfo3.logon_hours  Logon Hours
        No value
    samr.samr_UserInfo3.logon_script  Logon Script
        String
    samr.samr_UserInfo3.primary_gid  Primary Gid
        Unsigned 32-bit integer
    samr.samr_UserInfo3.profile_path  Profile Path
        String
    samr.samr_UserInfo3.workstations  Workstations
        String
    samr.samr_UserInfo4.logon_hours  Logon Hours
        No value
    samr.samr_UserInfo5.account_name  Account Name
        String
    samr.samr_UserInfo5.acct_expiry  Acct Expiry
        Date/Time stamp
    samr.samr_UserInfo5.acct_flags  Acct Flags
        Unsigned 32-bit integer
    samr.samr_UserInfo5.bad_password_count  Bad Password Count
        Unsigned 16-bit integer
    samr.samr_UserInfo5.description  Description
        String
    samr.samr_UserInfo5.full_name  Full Name
        String
    samr.samr_UserInfo5.home_directory  Home Directory
        String
    samr.samr_UserInfo5.home_drive  Home Drive
        String
    samr.samr_UserInfo5.last_logoff  Last Logoff
        Date/Time stamp
    samr.samr_UserInfo5.last_logon  Last Logon
        Date/Time stamp
    samr.samr_UserInfo5.last_password_change  Last Password Change
        Date/Time stamp
    samr.samr_UserInfo5.logon_count  Logon Count
        Unsigned 16-bit integer
    samr.samr_UserInfo5.logon_hours  Logon Hours
        No value
    samr.samr_UserInfo5.logon_script  Logon Script
        String
    samr.samr_UserInfo5.primary_gid  Primary Gid
        Unsigned 32-bit integer
    samr.samr_UserInfo5.profile_path  Profile Path
        String
    samr.samr_UserInfo5.workstations  Workstations
        String
    samr.samr_UserInfo6.account_name  Account Name
        String
    samr.samr_UserInfo6.full_name  Full Name
        String
    samr.samr_UserInfo7.account_name  Account Name
        String
    samr.samr_UserInfo8.full_name  Full Name
        String
    samr.samr_UserInfo9.primary_gid  Primary Gid
        Unsigned 32-bit integer
    samr.samr_ValidateFieldsPresent.SAMR_VALIDATE_FIELD_BAD_PASSWORD_COUNT  Samr Validate Field Bad Password Count
        Boolean
    samr.samr_ValidateFieldsPresent.SAMR_VALIDATE_FIELD_BAD_PASSWORD_TIME  Samr Validate Field Bad Password Time
        Boolean
    samr.samr_ValidateFieldsPresent.SAMR_VALIDATE_FIELD_LOCKOUT_TIME  Samr Validate Field Lockout Time
        Boolean
    samr.samr_ValidateFieldsPresent.SAMR_VALIDATE_FIELD_PASSWORD_HISTORY  Samr Validate Field Password History
        Boolean
    samr.samr_ValidateFieldsPresent.SAMR_VALIDATE_FIELD_PASSWORD_HISTORY_LENGTH  Samr Validate Field Password History Length
        Boolean
    samr.samr_ValidateFieldsPresent.SAMR_VALIDATE_FIELD_PASSWORD_LAST_SET  Samr Validate Field Password Last Set
        Boolean
    samr.samr_ValidatePassword.level  Level
        Unsigned 32-bit integer
    samr.samr_ValidatePassword.rep  Rep
        No value
    samr.samr_ValidatePassword.req  Req
        No value
    samr.samr_ValidatePasswordInfo.bad_password_time  Bad Password Time
        Date/Time stamp
    samr.samr_ValidatePasswordInfo.bad_pwd_count  Bad Pwd Count
        Unsigned 32-bit integer
    samr.samr_ValidatePasswordInfo.fields_present  Fields Present
        Unsigned 32-bit integer
    samr.samr_ValidatePasswordInfo.last_password_change  Last Password Change
        Date/Time stamp
    samr.samr_ValidatePasswordInfo.lockout_time  Lockout Time
        Date/Time stamp
    samr.samr_ValidatePasswordInfo.pwd_history  Pwd History
        No value
    samr.samr_ValidatePasswordInfo.pwd_history_len  Pwd History Len
        Unsigned 32-bit integer
    samr.samr_ValidatePasswordRep.ctr1  Ctr1
        No value
    samr.samr_ValidatePasswordRep.ctr2  Ctr2
        No value
    samr.samr_ValidatePasswordRep.ctr3  Ctr3
        No value
    samr.samr_ValidatePasswordRepCtr.info  Info
        No value
    samr.samr_ValidatePasswordRepCtr.status  Status
        Unsigned 32-bit integer
    samr.samr_ValidatePasswordReq.req1  Req1
        No value
    samr.samr_ValidatePasswordReq.req2  Req2
        No value
    samr.samr_ValidatePasswordReq.req3  Req3
        No value
    samr.samr_ValidatePasswordReq1.info  Info
        No value
    samr.samr_ValidatePasswordReq1.password_matched  Password Matched
        Unsigned 8-bit integer
    samr.samr_ValidatePasswordReq2.account  Account
        String
    samr.samr_ValidatePasswordReq2.hash  Hash
        No value
    samr.samr_ValidatePasswordReq2.info  Info
        No value
    samr.samr_ValidatePasswordReq2.password  Password
        String
    samr.samr_ValidatePasswordReq2.password_matched  Password Matched
        Unsigned 8-bit integer
    samr.samr_ValidatePasswordReq3.account  Account
        String
    samr.samr_ValidatePasswordReq3.clear_lockout  Clear Lockout
        Unsigned 8-bit integer
    samr.samr_ValidatePasswordReq3.hash  Hash
        No value
    samr.samr_ValidatePasswordReq3.info  Info
        No value
    samr.samr_ValidatePasswordReq3.password  Password
        String
    samr.samr_ValidatePasswordReq3.pwd_must_change_at_next_logon  Pwd Must Change At Next Logon
        Unsigned 8-bit integer
    samr.samr_ValidationBlob.data  Data
        Unsigned 8-bit integer
    samr.samr_ValidationBlob.length  Length
        Unsigned 32-bit integer
    samr.sec_desc_buf_len  Sec Desc Buf Len
        Unsigned 32-bit integer
    samr.status  NT Error
        Unsigned 32-bit integer
    samr.user.access_mask  Access Mask
        Unsigned 32-bit integer
    samr.user_handle  User Handle
        Byte array

SAToP (no RTP support) (pwsatopcw)

    pwsatop.cw  Control Word
        No value
    pwsatop.cw.bits03  Bits 0 to 3
        Unsigned 8-bit integer
    pwsatop.cw.frag  Fragmentation
        Unsigned 8-bit integer
    pwsatop.cw.lbit  L bit: TDM payload state
        Unsigned 8-bit integer
    pwsatop.cw.length  Length
        Unsigned 8-bit integer
    pwsatop.cw.rbit  R bit: Local CE-bound IWF
        Unsigned 8-bit integer
    pwsatop.cw.rsv  Reserved
        Unsigned 8-bit integer
    pwsatop.cw.seqno  Sequence number
        Unsigned 16-bit integer
    pwsatop.payload  TDM payload
        Byte array
    pwsatop.payload.len  TDM payload length
        Signed 32-bit integer

SCSI (scsi)

    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.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  Parameter List Length
        Unsigned 24-bit integer
    scsi.fragment  SCSI DATA Fragment
        Frame number
    scsi.fragment.error  Defragmentation error
        Frame number
        Defragmentation error due to illegal fragments
    scsi.fragment.multipletails  Multiple tail fragments found
        Boolean
        Several tails were found when defragmenting the packet
    scsi.fragment.overlap  Fragment overlap
        Boolean
        Fragment overlaps with other fragments
    scsi.fragment.overlap.conflict  Conflicting data in fragment overlap
        Boolean
        Overlapping fragments contained conflicting data
    scsi.fragment.toolongfragment  Fragment too long
        Boolean
        Fragment contained data past end of packet
    scsi.fragments  SCSI Fragments
        No value
    scsi.inquiry.acaflags  Flags
        Unsigned 8-bit integer
    scsi.inquiry.acc  ACC
        Boolean
    scsi.inquiry.add_len  Additional Length
        Unsigned 8-bit integer
    scsi.inquiry.aerc  AERC
        Boolean
        AERC is obsolete from SPC-3 and forward
    scsi.inquiry.bque  BQue
        Boolean
    scsi.inquiry.bqueflags  Flags
        Unsigned 8-bit integer
    scsi.inquiry.cmdque  CmdQue
        Boolean
    scsi.inquiry.cmdt.pagecode  CMDT Page Code
        Unsigned 8-bit integer
    scsi.inquiry.devtype  Device Type
        Unsigned 8-bit integer
    scsi.inquiry.encserv  EncServ
        Boolean
    scsi.inquiry.evpd.pagecode  EVPD Page Code
        Unsigned 8-bit integer
    scsi.inquiry.flags  Flags
        Unsigned 8-bit integer
    scsi.inquiry.hisup  HiSup
        Boolean
    scsi.inquiry.linked  Linked
        Boolean
    scsi.inquiry.mchngr  MChngr
        Boolean
    scsi.inquiry.multip  MultiP
        Boolean
    scsi.inquiry.normaca  NormACA
        Boolean
    scsi.inquiry.peripheral  Peripheral
        Unsigned 8-bit integer
    scsi.inquiry.product_id  Product Id
        String
    scsi.inquiry.product_rev  Product Revision Level
        String
    scsi.inquiry.protect  Protect
        Boolean
    scsi.inquiry.qualifier  Qualifier
        Unsigned 8-bit integer
    scsi.inquiry.rdf  Response Data Format
        Unsigned 8-bit integer
    scsi.inquiry.reladr  RelAdr
        Boolean
    scsi.inquiry.reladrflags  Flags
        Unsigned 8-bit integer
    scsi.inquiry.removable  Removable
        Boolean
    scsi.inquiry.reserved  Reserved
        Byte array
    scsi.inquiry.rmbflags  Flags
        Unsigned 8-bit integer
    scsi.inquiry.sccs  SCCS
        Boolean
    scsi.inquiry.sccsflags  Flags
        Unsigned 8-bit integer
    scsi.inquiry.sync  Sync
        Boolean
    scsi.inquiry.tpc  3PC
        Boolean
    scsi.inquiry.tpgs  TPGS
        Unsigned 8-bit integer
    scsi.inquiry.trmtsk  TrmTsk
        Boolean
        TRMTSK is obsolete from SPC-2 and forward
    scsi.inquiry.vendor_id  Vendor Id
        String
    scsi.inquiry.vendor_specific  Vendor Specific
        Byte array
    scsi.inquiry.version  Version
        Unsigned 8-bit integer
    scsi.inquiry.version_desc  Version Description
        Unsigned 16-bit integer
    scsi.log.page_length  Page Length
        Unsigned 16-bit integer
    scsi.log.pagecode  Page Code
        Unsigned 8-bit integer
    scsi.log.param.flags  Param Flags
        Unsigned 8-bit integer
    scsi.log.param_data  Parameter Data
        Byte array
    scsi.log.param_len  Parameter Len
        Unsigned 8-bit integer
    scsi.log.parameter_code  Parameter Code
        Unsigned 16-bit integer
    scsi.log.pc  Page Control
        Unsigned 8-bit integer
    scsi.log.pc.flags  PC Flags
        Unsigned 8-bit integer
    scsi.log.pcr  PCR
        Boolean
    scsi.log.pf.ds  DS
        Boolean
    scsi.log.pf.du  DU
        Boolean
    scsi.log.pf.etc  ETC
        Boolean
    scsi.log.pf.lbin  LBIN
        Boolean
    scsi.log.pf.lp  LP
        Boolean
    scsi.log.pf.tmc  TMC
        Unsigned 8-bit integer
    scsi.log.pf.tsd  TSD
        Boolean
    scsi.log.ppc  PPC
        Boolean
    scsi.log.ppc.flags  PPC Flags
        Unsigned 8-bit integer
    scsi.log.sp  SP
        Boolean
    scsi.log.ta.aif  automatic interface failure
        Boolean
    scsi.log.ta.cff  cooling fan failure
        Boolean
    scsi.log.ta.cm  cleaning media
        Boolean
    scsi.log.ta.cn  clean now
        Boolean
    scsi.log.ta.cp  clean periodic
        Boolean
    scsi.log.ta.dire  diagnostics required
        Boolean
    scsi.log.ta.dm  drive maintenance
        Boolean
    scsi.log.ta.dpie  dual port interface error
        Boolean
    scsi.log.ta.drhu  drive humidity
        Boolean
    scsi.log.ta.drtm  drive temperature
        Boolean
    scsi.log.ta.drvo  drive voltage
        Boolean
    scsi.log.ta.dwf  download failed
        Boolean
    scsi.log.ta.ecm  expired cleaning media
        Boolean
    scsi.log.ta.em  eject media
        Boolean
    scsi.log.ta.fe  forced eject
        Boolean
    scsi.log.ta.fwf  firmware failure
        Boolean
    scsi.log.ta.he  hard error
        Boolean
    scsi.log.ta.hwa  hardware a
        Boolean
    scsi.log.ta.hwb  hardware b
        Boolean
    scsi.log.ta.ict  invalid cleaning tape
        Boolean
    scsi.log.ta.if  interface
        Boolean
    scsi.log.ta.lofa  loading failure
        Boolean
    scsi.log.ta.lost  lost statistics
        Boolean
    scsi.log.ta.mcicf  memory chip in cartridge failure
        Boolean
    scsi.log.ta.media  media
        Boolean
    scsi.log.ta.ml  media life
        Boolean
    scsi.log.ta.ndg  not data grade
        Boolean
    scsi.log.ta.nml  nearing media life
        Boolean
    scsi.log.ta.nr  no removal
        Boolean
    scsi.log.ta.nsod  no start of data
        Boolean
    scsi.log.ta.pc  power consumption
        Boolean
    scsi.log.ta.pefa  periodic failure
        Boolean
    scsi.log.ta.psf  power supply failure
        Boolean
    scsi.log.ta.rf  read failure
        Boolean
    scsi.log.ta.rmcf  removable mechanical cartridge failure
        Boolean
    scsi.log.ta.rof  read only format
        Boolean
    scsi.log.ta.rr  retention requested
        Boolean
    scsi.log.ta.rw  Read Warning
        Boolean
    scsi.log.ta.tdcol  tape directory corrupted on load
        Boolean
    scsi.log.ta.tduau  tape directory invalid at unload
        Boolean
    scsi.log.ta.tsarf  tape system area read failure
        Boolean
    scsi.log.ta.tsawf  tape system area write failure
        Boolean
    scsi.log.ta.uf  unsupported format
        Boolean
    scsi.log.ta.umcf  unrecoverable mechanical cartridge failure
        Boolean
    scsi.log.ta.uuf  unrecoverable unload failure
        Boolean
    scsi.log.ta.wf  write failure
        Boolean
    scsi.log.ta.wmicf  worm medium integrity check failed
        Boolean
    scsi.log.ta.wmoa  worm medium overwrite attempted
        Boolean
    scsi.log.ta.wp  write protect
        Boolean
    scsi.log.ta.ww  write warning
        Boolean
    scsi.lun  LUN
        Unsigned 16-bit integer
    scsi.mode.flags  Flags
        Unsigned 8-bit integer
    scsi.mode.mmc.pagecode  MMC-5 Page Code
        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.reassembled.length  Reassembled SCSI DATA length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    scsi.reassembled_in  Reassembled SCSI DATA in frame
        Frame number
        This SCSI DATA packet is reassembled in this frame
    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.request_frame  Request in
        Frame number
        The request to this transaction is in this frame
    scsi.response_frame  Response in
        Frame number
        The response to this transaction is in this frame
    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.addcdblen  Additional CDB Length
        Unsigned 8-bit integer
    scsi.spc.opcode  SPC-2 Opcode
        Unsigned 8-bit integer
    scsi.spc.resv.key  Reservation Key
        Byte array
    scsi.spc.resv.scopeaddr  Scope Address
        Byte array
    scsi.spc.sb.bufid  Buffer ID
        Unsigned 8-bit integer
    scsi.spc.select_report  Select Report
        Unsigned 8-bit integer
    scsi.spc.senddiag.code  Self-Test Code
        Unsigned 8-bit integer
    scsi.spc.senddiag.devoff  Device Offline
        Boolean
    scsi.spc.senddiag.pf  PF
        Boolean
    scsi.spc.senddiag.st  Self Test
        Boolean
    scsi.spc.senddiag.unitoff  Unit Offline
        Boolean
    scsi.spc.svcaction  Service Action
        Unsigned 16-bit integer
    scsi.spc.wb.bufoff  Buffer Offset
        Unsigned 24-bit integer
    scsi.spc.wb.mode  Mode
        Unsigned 8-bit integer
    scsi.status  Status
        Unsigned 8-bit integer
        SCSI command status value
    scsi.time  Time from request
        Time duration
        Time between the Command and the Response
    ssci.mode.rac  Report a Check
        Boolean

SCSI_MMC (scsi_mmc)

    scsi.mmc.adip.device_manufacturer_id  Device Manufacturer Id
        String
    scsi.mmc.adip.extended_format_block.0  Extended Format Block 0
        Boolean
    scsi.mmc.adip.extended_format_block.1  Extended Format Block 1
        Boolean
    scsi.mmc.adip.extended_format_block.2  Extended Format Block 2
        Boolean
    scsi.mmc.adip.extended_format_block.3  Extended Format Block 3
        Boolean
    scsi.mmc.adip.extended_format_block.4  Extended Format Block 4
        Boolean
    scsi.mmc.adip.extended_format_block.5  Extended Format Block 5
        Boolean
    scsi.mmc.adip.extended_format_info  Extended Format Info
        Boolean
    scsi.mmc.adip.media_type_id  Media Type Id
        String
    scsi.mmc.adip.number_of_physical_info  Number of bytes of physical info
        Unsigned 8-bit integer
    scsi.mmc.adip.product_revision_number  Product Revision Number
        Unsigned 8-bit integer
    scsi.mmc.agid  AGID
        Unsigned 8-bit integer
    scsi.mmc.book.type  Type
        Unsigned 8-bit integer
    scsi.mmc.book.version  Version
        Unsigned 8-bit integer
    scsi.mmc.closetrack.func  Close Function
        Unsigned 8-bit integer
    scsi.mmc.closetrack.immed  IMMED
        Boolean
    scsi.mmc.data_length  Data Length
        Unsigned 32-bit integer
    scsi.mmc.density.average_track_pitch  Average Track Pitch
        Unsigned 8-bit integer
    scsi.mmc.density.channel_bit_length  Channel bith length
        Unsigned 8-bit integer
    scsi.mmc.disc.rate  Rate
        Unsigned 8-bit integer
    scsi.mmc.disc.size  Size
        Unsigned 8-bit integer
    scsi.mmc.disc.structure  Structure
        Unsigned 8-bit integer
    scsi.mmc.disc_info.bgfs  BG Format Status
        Unsigned 8-bit integer
    scsi.mmc.disc_info.dac_v  DAC_V
        Boolean
    scsi.mmc.disc_info.dbc_v  DBC_V
        Boolean
    scsi.mmc.disc_info.dbit  Dbit
        Boolean
    scsi.mmc.disc_info.did_v  DID_V
        Boolean
    scsi.mmc.disc_info.disc_bar_code  Disc Bar Code
        Unsigned 64-bit integer
    scsi.mmc.disc_info.disc_identification  Disc Identification
        Unsigned 32-bit integer
    scsi.mmc.disc_info.disc_type  Disc Type
        Unsigned 8-bit integer
    scsi.mmc.disc_info.disk_status  Disk Status
        Unsigned 8-bit integer
    scsi.mmc.disc_info.erasable  Erasable
        Boolean
    scsi.mmc.disc_info.first_track_in_last_session  First Track In Last Session
        Unsigned 16-bit integer
    scsi.mmc.disc_info.last_possible_lead_out_start_address  Last Possible Lead-Out Start Address
        Unsigned 32-bit integer
    scsi.mmc.disc_info.last_session_lead_in_start_address  Last Session Lead-In Start Address
        Unsigned 32-bit integer
    scsi.mmc.disc_info.last_track_in_last_session  Last Track In Last Session
        Unsigned 16-bit integer
    scsi.mmc.disc_info.number_of_sessions  Number Of Sessions
        Unsigned 16-bit integer
    scsi.mmc.disc_info.state_of_last_session  State Of Last Session
        Unsigned 8-bit integer
    scsi.mmc.disc_info.uru  URU
        Boolean
    scsi.mmc.disk.num_layers  Number of Layers
        Unsigned 8-bit integer
    scsi.mmc.disk.track_path  Track Path
        Boolean
    scsi.mmc.disk_application_code  Disk Application Code
        Unsigned 8-bit integer
    scsi.mmc.feature  Feature
        Unsigned 16-bit integer
    scsi.mmc.feature.additional_length  Additional Length
        Unsigned 8-bit integer
    scsi.mmc.feature.cdread.c2flag  C2 Flag
        Boolean
    scsi.mmc.feature.cdread.cdtext  CD-Text
        Boolean
    scsi.mmc.feature.cdread.dap  DAP
        Boolean
    scsi.mmc.feature.current  Current
        Unsigned 8-bit integer
    scsi.mmc.feature.dts  Data Type Supported
        Unsigned 16-bit integer
    scsi.mmc.feature.dvdr.buf  BUF
        Boolean
    scsi.mmc.feature.dvdr.dvdrw  DVD-RW
        Boolean
    scsi.mmc.feature.dvdr.testwrite  Test Write
        Boolean
    scsi.mmc.feature.dvdr.write  Write
        Boolean
    scsi.mmc.feature.dvdrw.closeonly  Close Only
        Boolean
    scsi.mmc.feature.dvdrw.quickstart  Quick Start
        Boolean
    scsi.mmc.feature.dvdrw.write  Write
        Boolean
    scsi.mmc.feature.isw.buf  BUF
        Boolean
    scsi.mmc.feature.isw.linksize  Link Size
        Unsigned 8-bit integer
    scsi.mmc.feature.isw.num_linksize  Number of Link Sizes
        Unsigned 8-bit integer
    scsi.mmc.feature.lun_sn  LUN Serial Number
        String
    scsi.mmc.feature.persistent  Persistent
        Unsigned 8-bit integer
    scsi.mmc.feature.profile  Profile
        Unsigned 16-bit integer
    scsi.mmc.feature.profile.current  Current
        Boolean
    scsi.mmc.feature.sao.buf  BUF
        Boolean
    scsi.mmc.feature.sao.cdrw  CD-RW
        Boolean
    scsi.mmc.feature.sao.mcsl  Maximum Cue Sheet Length
        Unsigned 24-bit integer
    scsi.mmc.feature.sao.raw  Raw
        Boolean
    scsi.mmc.feature.sao.rawms  Raw MS
        Boolean
    scsi.mmc.feature.sao.rw  R-W
        Boolean
    scsi.mmc.feature.sao.sao  SAO
        Boolean
    scsi.mmc.feature.sao.testwrite  Test Write
        Boolean
    scsi.mmc.feature.tao.buf  BUF
        Boolean
    scsi.mmc.feature.tao.cdrw  CD-RW
        Boolean
    scsi.mmc.feature.tao.rwpack  R-W Pack
        Boolean
    scsi.mmc.feature.tao.rwraw  R-W Raw
        Boolean
    scsi.mmc.feature.tao.rwsubcode  R-W Subcode
        Boolean
    scsi.mmc.feature.tao.testwrite  Test Write
        Boolean
    scsi.mmc.feature.version  Version
        Unsigned 8-bit integer
    scsi.mmc.first_physical  First physical sector of data zone
        Unsigned 24-bit integer
    scsi.mmc.first_track  First Track
        Unsigned 8-bit integer
    scsi.mmc.fixed_packet_size  Fixed Packet Size
        Unsigned 32-bit integer
    scsi.mmc.free_blocks  Free Blocks
        Unsigned 32-bit integer
    scsi.mmc.getconf.current_profile  Current Profile
        Unsigned 16-bit integer
    scsi.mmc.getconf.rt  RT
        Unsigned 8-bit integer
    scsi.mmc.getconf.starting_feature  Starting Feature
        Unsigned 16-bit integer
    scsi.mmc.key_class  Key Class
        Unsigned 8-bit integer
    scsi.mmc.key_format  Key Format
        Unsigned 8-bit integer
    scsi.mmc.last_physical  Last physical sector of data zone
        Unsigned 24-bit integer
    scsi.mmc.last_physical_layer0  Last physical sector of layer 0
        Unsigned 24-bit integer
    scsi.mmc.last_recorded_address  Last Recorded Address
        Unsigned 32-bit integer
    scsi.mmc.lba  Logical Block Address
        Unsigned 32-bit integer
    scsi.mmc.next_writable_address  Next Writable Address
        Unsigned 32-bit integer
    scsi.mmc.num_blocks  Number of Blocks
        Unsigned 32-bit integer
    scsi.mmc.opcode  MMC Opcode
        Unsigned 8-bit integer
    scsi.mmc.q.subchannel.adr  Q Subchannel ADR
        Unsigned 8-bit integer
    scsi.mmc.q.subchannel.control  Q Subchannel Control
        Unsigned 8-bit integer
    scsi.mmc.rbc.alob_blocks  Available Buffer Len (blocks)
        Unsigned 32-bit integer
    scsi.mmc.rbc.alob_bytes  Available Buffer Len (bytes)
        Unsigned 32-bit integer
    scsi.mmc.rbc.block  BLOCK
        Boolean
    scsi.mmc.rbc.lob_blocks  Buffer Len (blocks)
        Unsigned 32-bit integer
    scsi.mmc.rbc.lob_bytes  Buffer Len (bytes)
        Unsigned 32-bit integer
    scsi.mmc.read_compatibility_lba  Read Compatibility LBA
        Unsigned 32-bit integer
    scsi.mmc.read_dvd.format  Format Code
        Unsigned 8-bit integer
    scsi.mmc.readtoc.first_session  First Session
        Unsigned 8-bit integer
    scsi.mmc.readtoc.format  Format
        Unsigned 8-bit integer
    scsi.mmc.readtoc.last_session  Last Session
        Unsigned 8-bit integer
    scsi.mmc.readtoc.last_track  Last Track
        Unsigned 8-bit integer
    scsi.mmc.readtoc.time  Time
        Boolean
    scsi.mmc.report_key.region_mask  Region Mask
        Unsigned 8-bit integer
    scsi.mmc.report_key.rpc_scheme  RPC Scheme
        Unsigned 8-bit integer
    scsi.mmc.report_key.type_code  Type Code
        Unsigned 8-bit integer
    scsi.mmc.report_key.user_changes  User Changes
        Unsigned 8-bit integer
    scsi.mmc.report_key.vendor_resets  Vendor Resets
        Unsigned 8-bit integer
    scsi.mmc.reservation_size  Reservation Size
        Unsigned 32-bit integer
    scsi.mmc.rti.address_type  Address Type
        Unsigned 8-bit integer
    scsi.mmc.rti.blank  Blank
        Boolean
    scsi.mmc.rti.copy  Copy
        Boolean
    scsi.mmc.rti.damage  Damage
        Boolean
    scsi.mmc.rti.data_mode  Data Mode
        Unsigned 8-bit integer
    scsi.mmc.rti.fp  FP
        Boolean
    scsi.mmc.rti.lra_v  LRA_V
        Boolean
    scsi.mmc.rti.nwa_v  NWA_V
        Boolean
    scsi.mmc.rti.packet  Packet/Inc
        Boolean
    scsi.mmc.rti.rt  RT
        Boolean
    scsi.mmc.rti.track_mode  Track Mode
        Unsigned 8-bit integer
    scsi.mmc.session  Session
        Unsigned 32-bit integer
    scsi.mmc.setcdspeed.rc  Rotational Control
        Unsigned 8-bit integer
    scsi.mmc.setstreaming.end_lba  End LBA
        Unsigned 32-bit integer
    scsi.mmc.setstreaming.exact  Exact
        Boolean
    scsi.mmc.setstreaming.param_len  Parameter Length
        Unsigned 16-bit integer
    scsi.mmc.setstreaming.ra  RA
        Boolean
    scsi.mmc.setstreaming.rdd  RDD
        Boolean
    scsi.mmc.setstreaming.read_size  Read Size
        Unsigned 32-bit integer
    scsi.mmc.setstreaming.read_time  Read Time
        Unsigned 32-bit integer
    scsi.mmc.setstreaming.start_lbs  Start LBA
        Unsigned 32-bit integer
    scsi.mmc.setstreaming.type  Type
        Unsigned 8-bit integer
    scsi.mmc.setstreaming.wrc  WRC
        Unsigned 8-bit integer
    scsi.mmc.setstreaming.write_size  Write Size
        Unsigned 32-bit integer
    scsi.mmc.setstreaming.write_time  Write Time
        Unsigned 32-bit integer
    scsi.mmc.synccache.immed  IMMED
        Boolean
    scsi.mmc.synccache.reladr  RelAdr
        Boolean
    scsi.mmc.track  Track
        Unsigned 32-bit integer
    scsi.mmc.track_size  Track Size
        Unsigned 32-bit integer
    scsi.mmc.track_start_address  Track Start Address
        Unsigned 32-bit integer
    scsi.mmc.track_start_time  Track Start Time
        Unsigned 32-bit integer

SCSI_OSD (scsi_osd)

    scsi.osd.addcdblen  Additional CDB Length
        Unsigned 8-bit integer
    scsi.osd.additional_length  Additional Length
        Unsigned 64-bit integer
    scsi.osd.allocation_length  Allocation Length
        Unsigned 64-bit integer
    scsi.osd.attribute.length  Attribute Length
        Unsigned 16-bit integer
    scsi.osd.attribute.number  Attribute Number
        Unsigned 32-bit integer
    scsi.osd.attributes.page  Attributes Page
        Unsigned 32-bit integer
    scsi.osd.attributes_list.length  Attributes List Length
        Unsigned 16-bit integer
    scsi.osd.attributes_list.type  Attributes List Type
        Unsigned 8-bit integer
    scsi.osd.audit  Audit
        Byte array
    scsi.osd.capability_descriminator  Capability Discriminator
        Byte array
    scsi.osd.capability_expiration_time  Capability Expiration Time
        Byte array
    scsi.osd.capability_format  Capability Format
        Unsigned 8-bit integer
    scsi.osd.collection.fcr  FCR
        Boolean
    scsi.osd.collection_object_id  Collection Object Id
        Byte array
    scsi.osd.continuation_object_id  Continuation Object Id
        Byte array
    scsi.osd.diicvo  Data-In Integrity Check Value Offset
        Unsigned 32-bit integer
    scsi.osd.doicvo  Data-Out Integrity Check Value Offset
        Unsigned 32-bit integer
    scsi.osd.flush.scope  Flush Scope
        Unsigned 8-bit integer
    scsi.osd.flush_collection.scope  Flush Collection Scope
        Unsigned 8-bit integer
    scsi.osd.flush_osd.scope  Flush OSD Scope
        Unsigned 8-bit integer
    scsi.osd.flush_partition.scope  Flush Partition Scope
        Unsigned 8-bit integer
    scsi.osd.formatted_capacity  Formatted Capacity
        Unsigned 64-bit integer
    scsi.osd.get_attributes_allocation_length  Get Attributes Allocation Length
        Unsigned 32-bit integer
    scsi.osd.get_attributes_list_length  Get Attributes List Length
        Unsigned 32-bit integer
    scsi.osd.get_attributes_list_offset  Get Attributes List Offset
        Unsigned 32-bit integer
    scsi.osd.get_attributes_page  Get Attributes Page
        Unsigned 32-bit integer
    scsi.osd.getset  GET/SET CDBFMT
        Unsigned 8-bit integer
    scsi.osd.icva  Integrity Check Value Algorithm
        Unsigned 8-bit integer
    scsi.osd.initial_object_id  Initial Object Id
        Byte array
    scsi.osd.key_identifier  Key Identifier
        Byte array
    scsi.osd.key_to_set  Key to Set
        Unsigned 8-bit integer
    scsi.osd.key_version  Key Version
        Unsigned 8-bit integer
    scsi.osd.length  Length
        Unsigned 64-bit integer
    scsi.osd.list.lstchg  LSTCHG
        Boolean
    scsi.osd.list.root  ROOT
        Boolean
    scsi.osd.list_identifier  List Identifier
        Unsigned 32-bit integer
    scsi.osd.number_of_user_objects  Number Of User Objects
        Unsigned 16-bit integer
    scsi.osd.object_created_time  Object Created Time
        Byte array
    scsi.osd.object_descriptor  Object Descriptor
        Byte array
    scsi.osd.object_descriptor_type  Object Descriptor Type
        Unsigned 8-bit integer
    scsi.osd.object_type  Object Type
        Unsigned 8-bit integer
    scsi.osd.opcode  OSD Opcode
        Unsigned 8-bit integer
    scsi.osd.option  Options Byte
        Unsigned 8-bit integer
    scsi.osd.option.dpo  DPO
        Boolean
    scsi.osd.option.fua  FUA
        Boolean
    scsi.osd.partition.created_in  Created In
        Frame number
        The frame this partition was created
    scsi.osd.partition.removed_in  Removed In
        Frame number
        The frame this partition was removed
    scsi.osd.partition_id  Partition Id
        Unsigned 64-bit integer
    scsi.osd.permissions  Permissions
        Unsigned 16-bit integer
    scsi.osd.permissions.append  APPEND
        Boolean
    scsi.osd.permissions.create  CREATE
        Boolean
    scsi.osd.permissions.dev_mgmt  DEV_MGMT
        Boolean
    scsi.osd.permissions.get_attr  GET_ATTR
        Boolean
    scsi.osd.permissions.global  GLOBAL
        Boolean
    scsi.osd.permissions.obj_mgmt  OBJ_MGMT
        Boolean
    scsi.osd.permissions.pol_sec  POL/SEC
        Boolean
    scsi.osd.permissions.read  READ
        Boolean
    scsi.osd.permissions.remove  REMOVE
        Boolean
    scsi.osd.permissions.set_attr  SET_ATTR
        Boolean
    scsi.osd.permissions.write  WRITE
        Boolean
    scsi.osd.request_nonce  Request Nonce
        Byte array
    scsi.osd.requested_collection_object_id  Requested Collection Object Id
        Byte array
    scsi.osd.requested_partition_id  Requested Partition Id
        Unsigned 64-bit integer
    scsi.osd.requested_user_object_id  Requested User Object Id
        Byte array
    scsi.osd.retrieved_attributes_offset  Retrieved Attributes Offset
        Unsigned 32-bit integer
    scsi.osd.ricv  Request Integrity Check value
        Byte array
    scsi.osd.security_method  Security Method
        Unsigned 8-bit integer
    scsi.osd.seed  Seed
        Byte array
    scsi.osd.set_attribute_length  Set Attribute Length
        Unsigned 32-bit integer
    scsi.osd.set_attribute_number  Set Attribute Number
        Unsigned 32-bit integer
    scsi.osd.set_attributes_list_length  Set Attributes List Length
        Unsigned 32-bit integer
    scsi.osd.set_attributes_list_offset  Set Attributes List Offset
        Unsigned 32-bit integer
    scsi.osd.set_attributes_offset  Set Attributes Offset
        Unsigned 32-bit integer
    scsi.osd.set_attributes_page  Set Attributes Page
        Unsigned 32-bit integer
    scsi.osd.set_key_version  Key Version
        Unsigned 8-bit integer
    scsi.osd.sort_order  Sort Order
        Unsigned 8-bit integer
    scsi.osd.starting_byte_address  Starting Byte Address
        Unsigned 64-bit integer
    scsi.osd.svcaction  Service Action
        Unsigned 16-bit integer
    scsi.osd.timestamps_control  Timestamps Control
        Unsigned 8-bit integer
    scsi.osd.user_object.logical_length  User Object Logical Length
        Unsigned 64-bit integer
    scsi.osd.user_object_id  User Object Id
        Byte array

SCSI_SBC (scsi_sbc)

    scsi.sbc.alloclen16  Allocation Length
        Unsigned 16-bit integer
    scsi.sbc.alloclen32  Allocation Length
        Unsigned 32-bit integer
    scsi.sbc.blocksize  Block size in bytes
        Unsigned 32-bit integer
    scsi.sbc.bytchk  BYTCHK
        Boolean
    scsi.sbc.corrct  CORRCT
        Boolean
    scsi.sbc.corrct_flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.defect_list_format  Defect List Format
        Unsigned 8-bit integer
    scsi.sbc.disable_write  DISABLE_WRITE
        Boolean
    scsi.sbc.dpo  DPO
        Boolean
        DisablePageOut: Whether the device should cache the data or not
    scsi.sbc.format_unit.cmplist  CMPLIST
        Boolean
    scsi.sbc.format_unit.fmtdata  FMTDATA
        Boolean
    scsi.sbc.format_unit.fmtpinfo  FMTPINFO
        Boolean
    scsi.sbc.format_unit.longlist  LONGLIST
        Boolean
    scsi.sbc.format_unit.rto_req  RTO_REQ
        Boolean
    scsi.sbc.formatunit.flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.formatunit.interleave  Interleave
        Unsigned 16-bit integer
    scsi.sbc.formatunit.vendor  Vendor Unique
        Unsigned 8-bit integer
    scsi.sbc.fua  FUA
        Boolean
        ForceUnitAccess: Whether to allow reading from the cache or not
    scsi.sbc.fua_nv  FUA_NV
        Boolean
        ForceUnitAccess_NonVolatile: Whether to allow reading from non-volatile cache or not
    scsi.sbc.group  Group
        Unsigned 8-bit integer
    scsi.sbc.lbdata  LBDATA
        Boolean
    scsi.sbc.opcode  SBC Opcode
        Unsigned 8-bit integer
    scsi.sbc.pbdata  PBDATA
        Boolean
    scsi.sbc.pmi  PMI
        Boolean
        Partial Medium Indicator
    scsi.sbc.pmi_flags  PMI Flags
        Unsigned 8-bit integer
    scsi.sbc.prefetch.flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.prefetch.immediate  Immediate
        Boolean
    scsi.sbc.rdprotect  RDPROTECT
        Unsigned 8-bit integer
    scsi.sbc.rdwr10.lba  Logical Block Address (LBA)
        Unsigned 32-bit integer
    scsi.sbc.rdwr10.xferlen  Transfer Length
        Unsigned 16-bit integer
    scsi.sbc.rdwr12.xferlen  Transfer Length
        Unsigned 32-bit integer
    scsi.sbc.rdwr16.lba  Logical Block Address (LBA)
        Byte array
    scsi.sbc.rdwr6.lba  Logical Block Address (LBA)
        Unsigned 24-bit integer
    scsi.sbc.rdwr6.xferlen  Transfer Length
        Unsigned 24-bit integer
    scsi.sbc.read.flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.readcapacity.flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.readcapacity.lba  Logical Block Address
        Unsigned 32-bit integer
    scsi.sbc.readdefdata.flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.reassignblks.flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.reassignblocks.longlba  LongLBA
        Boolean
    scsi.sbc.reassignblocks.longlist  LongList
        Boolean
    scsi.sbc.req_glist  REQ_GLIST
        Boolean
    scsi.sbc.req_plist  REQ_PLIST
        Boolean
    scsi.sbc.returned_lba  Returned LBA
        Unsigned 32-bit integer
    scsi.sbc.ssu.immed_flags  Immed flags
        Unsigned 8-bit integer
    scsi.sbc.ssu.immediate  Immediate
        Boolean
    scsi.sbc.ssu.loej  LOEJ
        Boolean
    scsi.sbc.ssu.pwr  Power Conditions
        Unsigned 8-bit integer
    scsi.sbc.ssu.pwr_flags  Pwr flags
        Unsigned 8-bit integer
    scsi.sbc.ssu.start  Start
        Boolean
    scsi.sbc.synccache.flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.synccache.immediate  Immediate
        Boolean
    scsi.sbc.synccache.sync_nv  SYNC_NV
        Boolean
    scsi.sbc.verify.lba  LBA
        Unsigned 32-bit integer
    scsi.sbc.verify.lba64  LBA
        Unsigned 64-bit integer
    scsi.sbc.verify.reladdr  RELADDR
        Boolean
    scsi.sbc.verify.vlen  Verification Length
        Unsigned 16-bit integer
    scsi.sbc.verify.vlen32  Verification Length
        Unsigned 32-bit integer
    scsi.sbc.verify_flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.vrprotect  VRPROTECT
        Unsigned 8-bit integer
    scsi.sbc.writesame_flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.wrprotect  WRPROTECT
        Unsigned 8-bit integer
    scsi.sbc.wrverify.lba  LBA
        Unsigned 32-bit integer
    scsi.sbc.wrverify.lba64  LBA
        Unsigned 64-bit integer
    scsi.sbc.wrverify.xferlen  Transfer Length
        Unsigned 16-bit integer
    scsi.sbc.wrverify.xferlen32  Transfer Length
        Unsigned 32-bit integer
    scsi.sbc.wrverify_flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.xdread.flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.xdwrite.flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.xdwriteread.flags  Flags
        Unsigned 8-bit integer
    scsi.sbc.xorpinfo  XORPINFO
        Boolean
    scsi.sbc.xpwrite.flags  Flags
        Unsigned 8-bit integer

SCSI_SMC (scsi_smc)

    scsi.smc.action_code  Action Code
        Unsigned 8-bit integer
    scsi.smc.da  Destination Address
        Unsigned 16-bit integer
    scsi.smc.ea  Element Address
        Unsigned 16-bit integer
    scsi.smc.fast  FAST
        Boolean
    scsi.smc.fda  First Destination Address
        Unsigned 16-bit integer
    scsi.smc.inv1  INV1
        Boolean
    scsi.smc.inv2  INV2
        Boolean
    scsi.smc.invert  INVERT
        Boolean
    scsi.smc.medium_flags  Flags
        Unsigned 8-bit integer
    scsi.smc.mta  Medium Transport Address
        Unsigned 16-bit integer
    scsi.smc.num_elements  Number of Elements
        Unsigned 16-bit integer
    scsi.smc.opcode  SMC Opcode
        Unsigned 8-bit integer
    scsi.smc.range  RANGE
        Boolean
    scsi.smc.range_flags  Flags
        Unsigned 8-bit integer
    scsi.smc.sa  Source Address
        Unsigned 16-bit integer
    scsi.smc.sda  Second Destination Address
        Unsigned 16-bit integer
    scsi.smc.sea  Starting Element Address
        Unsigned 16-bit integer

SCSI_SSC (scsi_ssc)

    scsi.ssc.bam  BAM
        Boolean
    scsi.ssc.bam_flags  Flags
        Unsigned 8-bit integer
    scsi.ssc.bt  BT
        Boolean
    scsi.ssc.bytcmp  BYTCMP
        Boolean
    scsi.ssc.bytord  BYTORD
        Boolean
    scsi.ssc.cp  CP
        Boolean
    scsi.ssc.cpv  Capacity Proportion Value
        Unsigned 16-bit integer
    scsi.ssc.dest_type  Dest Type
        Unsigned 8-bit integer
    scsi.ssc.eot  EOT
        Boolean
    scsi.ssc.erase_flags  Flags
        Unsigned 8-bit integer
    scsi.ssc.erase_immed  IMMED
        Boolean
    scsi.ssc.fcs  FCS
        Boolean
    scsi.ssc.fixed  FIXED
        Boolean
    scsi.ssc.format  Format
        Unsigned 8-bit integer
    scsi.ssc.formatmedium_flags  Flags
        Unsigned 8-bit integer
    scsi.ssc.hold  HOLD
        Boolean
    scsi.ssc.immed  IMMED
        Boolean
    scsi.ssc.lbi  Logical Block Identifier
        Unsigned 64-bit integer
    scsi.ssc.lcs  LCS
        Boolean
    scsi.ssc.load  LOAD
        Boolean
    scsi.ssc.loadunload_flags  Flags
        Unsigned 8-bit integer
    scsi.ssc.loadunload_immed_flags  Immed
        Unsigned 8-bit integer
    scsi.ssc.locate10.loid  Logical Object Identifier
        Unsigned 32-bit integer
    scsi.ssc.locate16.loid  Logical Identifier
        Unsigned 64-bit integer
    scsi.ssc.locate_flags  Flags
        Unsigned 8-bit integer
    scsi.ssc.long  LONG
        Boolean
    scsi.ssc.media  Media
        Boolean
    scsi.ssc.medium_type  Medium Type
        Boolean
    scsi.ssc.opcode  SSC Opcode
        Unsigned 8-bit integer
    scsi.ssc.partition  Partition
        Unsigned 8-bit integer
    scsi.ssc.rdwr10.xferlen  Transfer Length
        Unsigned 16-bit integer
    scsi.ssc.rdwr6.xferlen  Transfer Length
        Unsigned 24-bit integer
    scsi.ssc.read6_flags  Flags
        Unsigned 8-bit integer
    scsi.ssc.reten  RETEN
        Boolean
    scsi.ssc.sili  SILI
        Boolean
    scsi.ssc.space16.count  Count
        Unsigned 64-bit integer
    scsi.ssc.space6.code  Code
        Unsigned 8-bit integer
    scsi.ssc.space6.count  Count
        Signed 24-bit integer
    scsi.ssc.verify  VERIFY
        Boolean
    scsi.ssc.verify16.verify_len  Verification Length
        Unsigned 24-bit integer
    scsi.ssc.verify16_immed  IMMED
        Boolean

SEBEK - Kernel Data Capture (sebek)

    sebek.cmd  Command Name
        String
    sebek.counter  Counter
        Unsigned 32-bit integer
    sebek.data  Data
        String
    sebek.fd  File Descriptor
        Unsigned 32-bit integer
        File Descriptor Number
    sebek.inode  Inode ID
        Unsigned 32-bit integer
        Process ID
    sebek.len  Data Length
        Unsigned 32-bit integer
    sebek.magic  Magic
        Unsigned 32-bit integer
        Magic Number
    sebek.pid  Process ID
        Unsigned 32-bit integer
    sebek.ppid  Parent Process ID
        Unsigned 32-bit integer
        Process ID
    sebek.socket.call  Socket.Call_id
        Unsigned 16-bit integer
        Socket.call
    sebek.socket.dst_ip  Socket.remote_ip
        IPv4 address
        Socket.dst_ip
    sebek.socket.dst_port  Socket.remote_port
        Unsigned 16-bit integer
        Socket.dst_port
    sebek.socket.ip_proto  Socket.ip_proto
        Unsigned 8-bit integer
    sebek.socket.src_ip  Socket.local_ip
        IPv4 address
        Socket.src_ip
    sebek.socket.src_port  Socket.local_port
        Unsigned 16-bit integer
        Socket.src_port
    sebek.time.sec  Time
        Date/Time stamp
    sebek.type  Type
        Unsigned 16-bit integer
    sebek.uid  User ID
        Unsigned 32-bit integer
    sebek.version  Version
        Unsigned 16-bit integer
        Version Number

SERCOS III V1.1 (sercosiii)

    siii.at.devstatus  Word
        Unsigned 16-bit integer
    siii.at.devstatus.commwarning  Communication Warning
        Unsigned 16-bit integer
    siii.at.devstatus.errorconnection  Topology Status
        Unsigned 16-bit integer
    siii.at.devstatus.inactportstatus  Port 1 Status
        Unsigned 16-bit integer
    siii.at.devstatus.paralevelactive  Parameterization level active
        Unsigned 16-bit integer
    siii.at.devstatus.proccmdchange  Procedure Command Change
        Unsigned 16-bit integer
    siii.at.devstatus.slavevalid  Slave data valid
        Unsigned 16-bit integer
    siii.at.devstatus.topologychanged  Topology Change
        Unsigned 16-bit integer
    siii.at.devstatus.topstatus  Topology Status
        Unsigned 16-bit integer
    siii.at.hp.error  Error
        Unsigned 16-bit integer
    siii.at.hp.hp0_finished  HP/SVC
        Unsigned 16-bit integer
    siii.at.hp.info  HP info
        Byte array
    siii.at.hp.parameter  Parameter Received
        Unsigned 16-bit integer
    siii.at.hp.sercosaddress  Sercos address
        Unsigned 16-bit integer
    siii.at.svch.ahs  Handshake
        Unsigned 16-bit integer
    siii.at.svch.info  Svc Info
        Byte array
    siii.channel  Channel
        Unsigned 8-bit integer
    siii.cyclecntvalid  Cycle Count Valid
        Unsigned 8-bit integer
    siii.mdt.devcontrol  Word
        Unsigned 16-bit integer
    siii.mdt.devcontrol.identrequest  Identification
        Unsigned 16-bit integer
    siii.mdt.devcontrol.topcontrol  Topology Control
        Unsigned 16-bit integer
    siii.mdt.devcontrol.topologychange  Changing Topology
        Unsigned 16-bit integer
    siii.mdt.hp.ctrl  HP control
        Unsigned 16-bit integer
    siii.mdt.hp.info  HP info
        Byte array
    siii.mdt.hp.parameter  Parameter
        Unsigned 16-bit integer
    siii.mdt.hp.sercosaddress  Sercos address
        Unsigned 16-bit integer
    siii.mdt.hp.stat  HP status
        Unsigned 16-bit integer
    siii.mdt.hp.switch  Switch to SVC
        Unsigned 16-bit integer
    siii.mdt.svch.busy  Busy
        Unsigned 16-bit integer
    siii.mdt.svch.ctrl  SvcCtrl
        Unsigned 16-bit integer
    siii.mdt.svch.data.proccmd.interrupt  Procedure Command Execution
        Unsigned 16-bit integer
    siii.mdt.svch.data.proccmd.set  Procedure Command
        Unsigned 16-bit integer
    siii.mdt.svch.data.telassign.mdt_at  Telegram Type
        Unsigned 16-bit integer
    siii.mdt.svch.data.telassign.offset  Telegram Offset
        Unsigned 16-bit integer
    siii.mdt.svch.data.telassign.telno  Telegram Number
        Unsigned 16-bit integer
    siii.mdt.svch.dbe  Data block element
        Unsigned 16-bit integer
    siii.mdt.svch.eot  End of element transmission
        Unsigned 16-bit integer
    siii.mdt.svch.error  SVC Error
        Unsigned 16-bit integer
    siii.mdt.svch.idn  IDN
        Unsigned 32-bit integer
    siii.mdt.svch.info  Svc Info
        Byte array
    siii.mdt.svch.mhs  Master Handshake
        Unsigned 16-bit integer
    siii.mdt.svch.proc  SVC process
        Unsigned 16-bit integer
    siii.mdt.svch.rw  Read/Write
        Unsigned 16-bit integer
    siii.mdt.svch.stat  SvcStat
        Unsigned 16-bit integer
    siii.mdt.version  Communication Version
        Unsigned 32-bit integer
    siii.mdt.version.initprocvers  Initialization Procedure Version Number
        Unsigned 32-bit integer
    siii.mdt.version.num_mdt_at_cp1_2  Number of MDTs and ATS in CP1 and CP2
        Unsigned 32-bit integer
    siii.mdt.version.revision  Revision Number
        Unsigned 32-bit integer
    siii.mst.crc32  CRC32
        Unsigned 32-bit integer
    siii.mst.cyclecnt  Cycle Cnt
        Unsigned 8-bit integer
    siii.mst.phase  Phase
        Unsigned 8-bit integer
    siii.telno  Telegram Number
        Unsigned 8-bit integer
    siii.type  Telegram Type
        Unsigned 8-bit integer

SGI Mount Service (sgimount)

SIMULCRYPT Protocol (simulcrypt)

    simulcrypt.ac_delay_start  AC delay start
        Signed 16-bit integer
    simulcrypt.ac_delay_stop  AC delay stop
        Signed 16-bit integer
    simulcrypt.access_criteria  Access criteria
        Byte array
    simulcrypt.access_criteria_transfer_mode  AC transfer mode
        Boolean
    simulcrypt.bandwidth  Bandwidth
        Unsigned 16-bit integer
    simulcrypt.client_id  Client ID
        Unsigned 32-bit integer
    simulcrypt.cp_cw_combination  CP CW combination
        Byte array
    simulcrypt.cp_duration  CP duration
        Unsigned 16-bit integer
    simulcrypt.cp_number  CP number
        Unsigned 16-bit integer
    simulcrypt.cw_encryption  CW encryption
        No value
    simulcrypt.cw_per_msg  CW per msg
        Unsigned 8-bit integer
    simulcrypt.data_channel_id  Data Channel ID
        Unsigned 16-bit integer
    simulcrypt.data_id  Data ID
        Unsigned 16-bit integer
    simulcrypt.data_stream_id  Data Stream ID
        Unsigned 16-bit integer
    simulcrypt.data_type  Data Type
        Unsigned 8-bit integer
    simulcrypt.datagram  Datagram
        Byte array
    simulcrypt.delay_start  Delay start
        Signed 16-bit integer
    simulcrypt.delay_stop  Delay stop
        Signed 16-bit integer
    simulcrypt.ecm_channel_id  ECM channel ID
        Unsigned 16-bit integer
    simulcrypt.ecm_datagram  ECM datagram
        Byte array
    simulcrypt.ecm_id  ECM ID
        Unsigned 16-bit integer
    simulcrypt.ecm_rep_period  ECM repetition period
        Unsigned 16-bit integer
    simulcrypt.ecm_stream_id  ECM stream ID
        Unsigned 16-bit integer
    simulcrypt.error_information  Error information
        Byte array
    simulcrypt.error_status  Error status
        Unsigned 16-bit integer
    simulcrypt.header  Header
        No value
    simulcrypt.lead_cw  Lead CW
        Unsigned 8-bit integer
    simulcrypt.max_comp_time  Max comp time
        Unsigned 16-bit integer
    simulcrypt.max_streams  Max streams
        Unsigned 16-bit integer
    simulcrypt.message  Message
        No value
    simulcrypt.message.interface  Interface
        Unsigned 16-bit integer
    simulcrypt.message.len  Message Length
        Unsigned 16-bit integer
    simulcrypt.message.type  Message Type
        Unsigned 16-bit integer
    simulcrypt.min_cp_duration  Min CP duration
        Unsigned 16-bit integer
    simulcrypt.nominal_cp_duration  Nominal CP duration
        Unsigned 16-bit integer
    simulcrypt.parameter  Parameter
        No value
    simulcrypt.parameter.ca_subsystem_id  CA Subsystem ID
        Unsigned 16-bit integer
    simulcrypt.parameter.ca_system_id  CA System ID
        Unsigned 16-bit integer
    simulcrypt.parameter.len  Parameter Length
        Unsigned 16-bit integer
    simulcrypt.parameter.type  Parameter Type
        Unsigned 16-bit integer
    simulcrypt.section_tspkt_flag  Section TS pkt flag
        Unsigned 8-bit integer
    simulcrypt.super_cas_id  SuperCAS ID
        Unsigned 32-bit integer
    simulcrypt.transition_delay_start  Transition delay start
        Signed 16-bit integer
    simulcrypt.transition_delay_stop  Transition delay stop
        Signed 16-bit integer
    simulcrypt.version  Version
        Unsigned 8-bit integer

SMB (Server Message Block Protocol) (smb)

    nt.access_mask  Access required
        Unsigned 32-bit integer
        Access mask
    nt.access_mask.access_sacl  Access SACL
        Boolean
    nt.access_mask.delete  Delete
        Boolean
    nt.access_mask.generic_all  Generic all
        Boolean
    nt.access_mask.generic_execute  Generic execute
        Boolean
    nt.access_mask.generic_read  Generic read
        Boolean
    nt.access_mask.generic_write  Generic write
        Boolean
    nt.access_mask.maximum_allowed  Maximum allowed
        Boolean
    nt.access_mask.read_control  Read control
        Boolean
    nt.access_mask.specific_0  Specific access, bit 0
        Boolean
    nt.access_mask.specific_1  Specific access, bit 1
        Boolean
    nt.access_mask.specific_10  Specific access, bit 10
        Boolean
    nt.access_mask.specific_11  Specific access, bit 11
        Boolean
    nt.access_mask.specific_12  Specific access, bit 12
        Boolean
    nt.access_mask.specific_13  Specific access, bit 13
        Boolean
    nt.access_mask.specific_14  Specific access, bit 14
        Boolean
    nt.access_mask.specific_15  Specific access, bit 15
        Boolean
    nt.access_mask.specific_2  Specific access, bit 2
        Boolean
    nt.access_mask.specific_3  Specific access, bit 3
        Boolean
    nt.access_mask.specific_4  Specific access, bit 4
        Boolean
    nt.access_mask.specific_5  Specific access, bit 5
        Boolean
    nt.access_mask.specific_6  Specific access, bit 6
        Boolean
    nt.access_mask.specific_7  Specific access, bit 7
        Boolean
    nt.access_mask.specific_8  Specific access, bit 8
        Boolean
    nt.access_mask.specific_9  Specific access, bit 9
        Boolean
    nt.access_mask.synchronise  Synchronise
        Boolean
    nt.access_mask.write_dac  Write DAC
        Boolean
    nt.access_mask.write_owner  Write owner
        Boolean
    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.object.flags.inherited_object_type_present  Inherited Object Type Present
        Boolean
    nt.ace.object.flags.object_type_present  Object Type Present
        Boolean
    nt.ace.object.guid  GUID
        Globally Unique Identifier
    nt.ace.object.inherited_guid  Inherited GUID
        Globally Unique Identifier
    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.sec_info.dacl  DACL
        Boolean
    nt.sec_info.group  Group
        Boolean
    nt.sec_info.owner  Owner
        Boolean
    nt.sec_info.sacl  SACL
        Boolean
    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
    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
    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.access_mask  Access Mask
        Unsigned 32-bit integer
    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
    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
    smb.ansi_pwlen  ANSI Password Length
        Unsigned 16-bit integer
        Length of ANSI password
    smb.attribute  Attribute
        Unsigned 32-bit integer
    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.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
    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.create_flags  Create Flags
        Unsigned 32-bit integer
    smb.create_options  Create Options
        Unsigned 32-bit integer
    smb.data_disp  Data Displacement
        Unsigned 16-bit integer
    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
    smb.data_size  Data Size
        Unsigned 32-bit integer
    smb.dc  Data Count
        Unsigned 16-bit integer
        Number of data bytes in this buffer
    smb.dcm  Data Compaction Mode
        Unsigned 16-bit integer
    smb.delete_pending  Delete Pending
        Unsigned 16-bit integer
        Is this object about to be deleted?
    smb.destination_name  Destination Name
        NULL terminated 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.domain_name  Domain Name
        String
        Dfs referral domain name
    smb.dfs.referral.domain_offset  Domain Offset
        Unsigned 16-bit integer
        Offset of Dfs Path that matched pathconsumed
    smb.dfs.referral.expname  Expanded Name
        String
        Dfs expanded name
    smb.dfs.referral.expnames_offset  Expanded Names Offset
        Unsigned 16-bit integer
        Offset of Dfs Path that matched pathconsumed
    smb.dfs.referral.flags.name_list_referral  NameListReferral
        Boolean
        Is a domain/DC referral response?
    smb.dfs.referral.flags.target_set_boundary  TargetSetBoundary
        Boolean
        Is this a first target in the target set?
    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.number_of_expnames  Number of Expanded Names
        Unsigned 16-bit integer
        Number of expanded names
    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 32-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.server_guid  Server GUID
        Byte array
        Globally unique identifier for this server
    smb.dfs.referral.size  Size
        Unsigned 16-bit integer
        Size of referral element
    smb.dfs.referral.ttl  TTL
        Unsigned 32-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.accessmask.add_file  Add File
        Boolean
    smb.dir.accessmask.add_subdir  Add Subdir
        Boolean
    smb.dir.accessmask.delete_child  Delete Child
        Boolean
    smb.dir.accessmask.list  List
        Boolean
    smb.dir.accessmask.read_attribute  Read Attribute
        Boolean
    smb.dir.accessmask.read_ea  Read EA
        Boolean
    smb.dir.accessmask.traverse  Traverse
        Boolean
    smb.dir.accessmask.write_attribute  Write Attribute
        Boolean
    smb.dir.accessmask.write_ea  Write EA
        Boolean
    smb.dir.count  Root Directory Count
        Unsigned 32-bit integer
        Directory Count
    smb.dir_name  Directory
        String
        SMB Directory Name
    smb.disposition.delete_on_close  Delete on close
        Boolean
    smb.ea.data  EA Data
        Byte array
    smb.ea.data_length  EA Data Length
        Unsigned 16-bit integer
    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
    smb.ea.list_length  EA List Length
        Unsigned 32-bit integer
        Total length of extended attributes
    smb.ea.name  EA Name
        String
    smb.ea.name_length  EA Name Length
        Unsigned 8-bit integer
    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
    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.fid.closed_in  Closed in
        Frame number
        The frame this fid was closed
    smb.fid.mapped_in  Mapped in
        Frame number
        The frame this share was mapped
    smb.fid.opened_in  Opened in
        Frame number
        The frame this fid was opened
    smb.fid.unmapped_in  Unmapped in
        Frame number
        The frame this share was unmapped
    smb.file  File Name
        String
    smb.file.accessmask.append_data  Append Data
        Boolean
    smb.file.accessmask.execute  Execute
        Boolean
    smb.file.accessmask.read_attribute  Read Attribute
        Boolean
    smb.file.accessmask.read_data  Read Data
        Boolean
    smb.file.accessmask.read_ea  Read EA
        Boolean
    smb.file.accessmask.write_attribute  Write Attribute
        Boolean
    smb.file.accessmask.write_data  Write Data
        Boolean
    smb.file.accessmask.write_ea  Write EA
        Boolean
    smb.file.count  Root File Count
        Unsigned 32-bit integer
        File Count
    smb.file.rw.length  File RW Length
        Unsigned 32-bit integer
    smb.file.rw.offset  File Offset
        Unsigned 32-bit integer
    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
    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
        NULL terminated 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
    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_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.logged_in  Logged In
        Frame number
    smb.logged_out  Logged Out
        Frame number
    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
    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
    smb.mac.uids  Macintosh Unique IDs
        Boolean
        Are Unique IDs supported
    smb.machine_name  Machine Name
        NULL terminated 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
    smb.mincount  Min Count
        Unsigned 16-bit integer
        Minimum Count
    smb.mode  Mode
        Unsigned 32-bit integer
    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
    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.backup_intent  Backup Intent
        Boolean
        Is this opened by BACKUP ADMIN for backup intent?
    smb.nt.create_options.complete_if_oplocked  Complete If Oplocked
        Boolean
        Complete if oplocked flag
    smb.nt.create_options.create_tree_connection  Create Tree Connection
        Boolean
        Create Tree Connection flag
    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.intermediate_buffering  Intermediate Buffering
        Boolean
        Is intermediate buffering allowed?
    smb.nt.create_options.no_compression  No Compression
        Boolean
        Is compression allowed?
    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.open_by_fileid  Open By FileID
        Boolean
        Open file by inode
    smb.nt.create_options.open_for_free_space_query  Open For Free Space query
        Boolean
        Open For Free Space Query flag
    smb.nt.create_options.open_no_recall  Open No Recall
        Boolean
        Open no recall flag
    smb.nt.create_options.open_reparse_point  Open Reparse Point
        Boolean
        Is this an open of a reparse point or of the normal file?
    smb.nt.create_options.random_access  Random Access
        Boolean
        Will the client be accessing the file randomly?
    smb.nt.create_options.reserve_opfilter  Reserve Opfilter
        Boolean
        Reserve Opfilter flag
    smb.nt.create_options.sequential_only  Sequential Only
        Boolean
        Will access 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.flags.root_handle  Root Handle
        Boolean
        Apply to this share or root Dfs share
    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.old_file  Old File Name
        String
        Old File Name (When renaming a file)
    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
        NULL terminated string
        Name of sender of message
    smb.padding  Padding
        Byte array
        Padding or unknown data
    smb.password  Password
        Byte array
    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
    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.pipe_info_flag  Pipe Info
        Boolean
    smb.po  Parameter Offset
        Unsigned 16-bit integer
        Offset (from header start) to parameters
    smb.position  Position
        Unsigned 64-bit integer
        File position
    smb.posix_acl.ace_perms  Permissions
        Unsigned 8-bit integer
    smb.posix_acl.ace_perms.execute  EXECUTE
        Boolean
    smb.posix_acl.ace_perms.gid  GID
        Unsigned 32-bit integer
    smb.posix_acl.ace_perms.owner_gid  Owner GID
        Unsigned 32-bit integer
    smb.posix_acl.ace_perms.owner_uid  Owner UID
        Unsigned 32-bit integer
    smb.posix_acl.ace_perms.read  READ
        Boolean
    smb.posix_acl.ace_perms.uid  UID
        Unsigned 32-bit integer
    smb.posix_acl.ace_perms.write  WRITE
        Boolean
    smb.posix_acl.ace_type  ACE Type
        Unsigned 8-bit integer
    smb.posix_acl.num_def_aces  Number of default ACEs
        Unsigned 16-bit integer
    smb.posix_acl.num_file_aces  Number of file ACEs
        Unsigned 16-bit integer
    smb.posix_acl.version  Posix ACL version
        Unsigned 16-bit integer
    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
        NULL terminated string
        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.qfsi_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.reassembled.length  Reassembled SMB length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    smb.remaining  Remaining
        Unsigned 32-bit integer
        Remaining number of bytes
    smb.reparse_tag  Reparse Tag
        Unsigned 32-bit integer
    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
    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
    smb.root.file.count  Root File Count
        Unsigned 32-bit integer
    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
    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.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.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.share_access  Share Access
        Unsigned 32-bit integer
    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
    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
    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
    smb.unicode_password  Unicode Password
        Byte array
    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_data  Unknown Data
        Byte array
        Unknown Data. Should be implemented by someone
    smb.unknown_field  Unknown field
        Unsigned 32-bit integer
    smb.vc  VC Number
        Unsigned 16-bit integer
    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?

SMB MailSlot Protocol (mailslot)

    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

SMB Pipe Protocol (pipe)

    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.length  Reassembled SMB Pipe length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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

SMB2 (Server Message Block Protocol version 2) (smb2)

    smb2.FILE_OBJECTID_BUFFER  FILE_OBJECTID_BUFFER
        No value
        A FILE_OBJECTID_BUFFER structure
    smb2.acct  Account
        String
        Account Name
    smb2.aid  Async Id
        Unsigned 64-bit integer
        SMB2 Async Id
    smb2.allocation_size  Allocation Size
        Unsigned 64-bit integer
        SMB2 Allocation Size for this object
    smb2.auth_frame  Authenticated in Frame
        Unsigned 32-bit integer
        Which frame this user was authenticated in
    smb2.birth_object_id  BirthObjectId
        Globally Unique Identifier
        ObjectID for this FID when it was originally created
    smb2.birth_volume_id  BirthVolumeId
        Globally Unique Identifier
        ObjectID for the volume where this FID was originally created
    smb2.boot_time  Boot Time
        Date/Time stamp
        Boot Time at server
    smb2.buffer_code.dynamic  Dynamic Part
        Boolean
        Whether a dynamic length blob follows
    smb2.buffer_code.length  Length
        Unsigned 16-bit integer
        Length of fixed portion of PDU
    smb2.capabilities  Capabilities
        Unsigned 32-bit integer
    smb2.capabilities.dfs  DFS
        Boolean
        If the host supports dfs
    smb2.chain_offset  Chain Offset
        Unsigned 32-bit integer
        SMB2 Chain Offset
    smb2.channel  Channel
        Unsigned 32-bit integer
    smb2.channel_info_length  Channel Info Length
        Unsigned 16-bit integer
    smb2.channel_info_offset  Channel Info Offset
        Unsigned 16-bit integer
    smb2.class  Class
        Unsigned 8-bit integer
        Info class
    smb2.client_guid  Client Guid
        Globally Unique Identifier
        Client GUID
    smb2.close.flags  Close Flags
        Unsigned 16-bit integer
        close flags
    smb2.close.pq_attrib  PostQuery Attrib
        Boolean
    smb2.cmd  Command
        Unsigned 16-bit integer
        SMB2 Command Opcode
    smb2.compression_format  Compression Format
        Unsigned 16-bit integer
        Compression to use
    smb2.create.action  Create Action
        Unsigned 32-bit integer
    smb2.create.chain_data  Data
        No value
        Chain Data
    smb2.create.chain_offset  Chain Offset
        Unsigned 32-bit integer
        Offset to next entry in chain or 0
    smb2.create.data_length  Data Length
        Unsigned 32-bit integer
        Length Data or 0
    smb2.create.disposition  Disposition
        Unsigned 32-bit integer
        Create disposition, what to do if the file does/does not exist
    smb2.create.extrainfo  ExtraInfo
        No value
        Create ExtraInfo
    smb2.create.oplock  Oplock
        Unsigned 8-bit integer
        Oplock type
    smb2.create.time  Create
        Date/Time stamp
        Time when this object was created
    smb2.create_flags  Create Flags
        Unsigned 64-bit integer
    smb2.credits.granted  Credits granted
        Unsigned 16-bit integer
    smb2.credits.requested  Credits requested
        Unsigned 16-bit integer
    smb2.current_time  Current Time
        Date/Time stamp
        Current Time at server
    smb2.data_offset  Data Offset
        Unsigned 16-bit integer
        Offset to data
    smb2.delete_pending  Delete Pending
        Unsigned 8-bit integer
    smb2.dialect  Dialect
        Unsigned 16-bit integer
    smb2.dialect_count  Dialect count
        Unsigned 16-bit integer
    smb2.disposition.delete_on_close  Delete on close
        Boolean
    smb2.domain  Domain
        String
        Domain Name
    smb2.domain_id  DomainId
        Globally Unique Identifier
    smb2.ea.data  EA Data
        String
    smb2.ea.data_len  EA Data Length
        Unsigned 8-bit integer
    smb2.ea.flags  EA Flags
        Unsigned 8-bit integer
    smb2.ea.name  EA Name
        String
    smb2.ea.name_len  EA Name Length
        Unsigned 8-bit integer
    smb2.ea_size  EA Size
        Unsigned 32-bit integer
        Size of EA data
    smb2.eof  End Of File
        Unsigned 64-bit integer
        SMB2 End Of File/File size
    smb2.epoch  Epoch
        Unsigned 16-bit integer
    smb2.error.byte_count  Byte Count
        Unsigned 32-bit integer
    smb2.error.data  Error Data
        Byte array
    smb2.error.reserved  Reserved
        Unsigned 16-bit integer
    smb2.fid  File Id
        Globally Unique Identifier
        SMB2 File Id
    smb2.file_id  File Id
        Unsigned 64-bit integer
        SMB2 File Id
    smb2.file_index  File Index
        Unsigned 32-bit integer
    smb2.file_info.infolevel  InfoLevel
        Unsigned 8-bit integer
        File_Info Infolevel
    smb2.file_offset  File Offset
        Unsigned 64-bit integer
    smb2.filename  Filename
        String
        Name of the file
    smb2.filename.len  Filename Length
        Unsigned 32-bit integer
        Length of the file name
    smb2.find.both_directory_info  FileBothDirectoryInfo
        No value
    smb2.find.file_directory_info  FileDirectoryInfo
        No value
    smb2.find.flags  Find Flags
        Unsigned 8-bit integer
    smb2.find.full_directory_info  FullDirectoryInfo
        No value
    smb2.find.id_both_directory_info  FileIdBothDirectoryInfo
        No value
    smb2.find.index_specified  Index Specified
        Boolean
    smb2.find.infolevel  Info Level
        Unsigned 32-bit integer
        Find_Info Infolevel
    smb2.find.name_info  FileNameInfo
        No value
    smb2.find.pattern  Search Pattern
        String
        Find pattern
    smb2.find.reopen  Reopen
        Boolean
    smb2.find.restart_scans  Restart Scans
        Boolean
    smb2.find.single_entry  Single Entry
        Boolean
    smb2.flags.async  Async command
        Boolean
    smb2.flags.chained  Chained
        Boolean
        Whether the pdu continues a chain or not
    smb2.flags.dfs  DFS operation
        Boolean
    smb2.flags.response  Response
        Boolean
        Whether this is an SMB2 Request or Response
    smb2.flags.signature  Signing
        Boolean
        Whether the pdu is signed or not
    smb2.fs_info.infolevel  InfoLevel
        Unsigned 8-bit integer
        Fs_Info Infolevel
    smb2.header_len  Header Length
        Unsigned 16-bit integer
        SMB2 Size of Header
    smb2.host  Host
        String
        Host Name
    smb2.impersonation.level  Impersonation
        Unsigned 32-bit integer
        Impersonation level
    smb2.infolevel  InfoLevel
        Unsigned 8-bit integer
        Infolevel
    smb2.ioctl.flags  Flags
        Unsigned 32-bit integer
    smb2.ioctl.function  Function
        Unsigned 32-bit integer
        Ioctl function
    smb2.ioctl.function.access  Access
        Unsigned 32-bit integer
        Access for Ioctl
    smb2.ioctl.function.device  Device
        Unsigned 32-bit integer
        Device for Ioctl
    smb2.ioctl.function.function  Function
        Unsigned 32-bit integer
        Function for Ioctl
    smb2.ioctl.function.method  Method
        Unsigned 32-bit integer
        Method for Ioctl
    smb2.ioctl.in  In Data
        No value
        Ioctl In
    smb2.ioctl.is_fsctl  Is FSCTL
        Boolean
    smb2.ioctl.out  Out Data
        No value
        Ioctl Out
    smb2.ioctl.shadow_copy.count  Count
        Unsigned 32-bit integer
        Number of bytes for shadow copy label strings
    smb2.ioctl.shadow_copy.label  Label
        String
        Shadow copy label
    smb2.ioctl.shadow_copy.num_labels  Num Labels
        Unsigned 32-bit integer
        Number of shadow copy labels
    smb2.ioctl.shadow_copy.num_volumes  Num Volumes
        Unsigned 32-bit integer
        Number of shadow copy volumes
    smb2.is_directory  Is Directory
        Unsigned 8-bit integer
        Is this a directory?
    smb2.last_access.time  Last Access
        Date/Time stamp
        Time when this object was last accessed
    smb2.last_change.time  Last Change
        Date/Time stamp
        Time when this object was last changed
    smb2.last_write.time  Last Write
        Date/Time stamp
        Time when this object was last written to
    smb2.lock_count  Lock Count
        Unsigned 16-bit integer
    smb2.lock_flags  Flags
        Unsigned 32-bit integer
    smb2.lock_flags.exclusive  Exclusive
        Boolean
    smb2.lock_flags.fail_immediately  Fail Immediately
        Boolean
    smb2.lock_flags.shared  Shared
        Boolean
    smb2.lock_flags.unlock  Unlock
        Boolean
    smb2.lock_info  Lock Info
        No value
    smb2.lock_length  Length
        Unsigned 64-bit integer
    smb2.max_ioctl_in_size  Max Ioctl In Size
        Unsigned 32-bit integer
        SMB2 Maximum ioctl out size
    smb2.max_ioctl_out_size  Max Ioctl Out Size
        Unsigned 32-bit integer
        SMB2 Maximum ioctl out size
    smb2.max_read_size  Max Read Size
        Unsigned 32-bit integer
        Maximum size of a read
    smb2.max_response_size  Max Response Size
        Unsigned 32-bit integer
        SMB2 Maximum response size
    smb2.max_trans_size  Max Transaction Size
        Unsigned 32-bit integer
        Maximum size of a transaction
    smb2.max_write_size  Max Write Size
        Unsigned 32-bit integer
        Maximum size of a write
    smb2.min_count  Min Count
        Unsigned 32-bit integer
    smb2.next_offset  Next Offset
        Unsigned 32-bit integer
        Offset to next buffer or 0
    smb2.nlinks  Number of Links
        Unsigned 32-bit integer
        Number of links to this object
    smb2.notify.flags  Notify Flags
        Unsigned 16-bit integer
    smb2.notify.out  Out Data
        No value
    smb2.notify.watch_tree  Watch Tree
        Boolean
    smb2.nt_status  NT Status
        Unsigned 32-bit integer
        NT Status code
    smb2.num_vc  VC Num
        Unsigned 8-bit integer
        Number of VCs
    smb2.object_id  ObjectId
        Globally Unique Identifier
        ObjectID for this FID
    smb2.olb.length  Length
        Unsigned 32-bit integer
        Length of the buffer
    smb2.olb.offset  Offset
        Unsigned 32-bit integer
        Offset to the buffer
    smb2.output_buffer_len  Output Buffer Length
        Unsigned 16-bit integer
    smb2.pid  Process Id
        Unsigned 32-bit integer
        SMB2 Process Id
    smb2.previous_sesid  Previous Session Id
        Unsigned 64-bit integer
        SMB2 Previous Session Id
    smb2.read_data  Read Data
        Byte array
        SMB2 Data that is read
    smb2.read_length  Read Length
        Unsigned 32-bit integer
        Amount of data to read
    smb2.read_remaining  Read Remaining
        Unsigned 32-bit integer
    smb2.remaining_bytes  Remaining Bytes
        Unsigned 32-bit integer
    smb2.required_size  Required Buffer Size
        Unsigned 32-bit integer
        SMB2 required buffer size
    smb2.response_buffer_offset  Response Buffer Offset
        Unsigned 16-bit integer
        Offset of the response buffer
    smb2.response_in  Response in
        Frame number
        The response to this packet is in this packet
    smb2.response_size  Response Size
        Unsigned 32-bit integer
        SMB2 response size
    smb2.response_to  Response to
        Frame number
        This packet is a response to the packet in this frame
    smb2.sec_info.infolevel  InfoLevel
        Unsigned 8-bit integer
        Sec_Info Infolevel
    smb2.sec_mode  Security mode
        Unsigned 8-bit integer
    smb2.sec_mode.sign_enabled  Signing enabled
        Boolean
        Is signing enabled
    smb2.sec_mode.sign_required  Signing required
        Boolean
        Is signing required
    smb2.security_blob  Info
        Byte array
        Find Info
    smb2.security_blob_len  Security Blob Length
        Unsigned 16-bit integer
        Security blob length
    smb2.security_blob_offset  Security Blob Offset
        Unsigned 16-bit integer
        Offset into the SMB2 PDU of the blob
    smb2.seq_num  Command Sequence Number
        Signed 64-bit integer
        SMB2 Command Sequence Number
    smb2.server_guid  Server Guid
        Globally Unique Identifier
        Server GUID
    smb2.ses_flags.guest  Guest
        Boolean
    smb2.ses_flags.null  Null
        Boolean
    smb2.sesid  Session Id
        Unsigned 64-bit integer
        SMB2 Session Id
    smb2.session_flags  Session Flags
        Unsigned 16-bit integer
    smb2.setinfo_offset  Setinfo Offset
        Unsigned 16-bit integer
        SMB2 setinfo offset
    smb2.setinfo_size  Setinfo Size
        Unsigned 32-bit integer
        SMB2 setinfo size
    smb2.share.caching  Caching policy
        Unsigned 32-bit integer
    smb2.share_caps  Share Capabilities
        Unsigned 32-bit integer
    smb2.share_caps.dfs  dfs
        Boolean
    smb2.share_flags  Share flags
        Unsigned 32-bit integer
        share flags
    smb2.share_flags.access_based_dir_enum  access_based_dir_enum
        Boolean
    smb2.share_flags.allow_namespace_caching  allow_namespace_caching
        Boolean
    smb2.share_flags.dfs  dfs
        Boolean
    smb2.share_flags.dfs_root  dfs_root
        Boolean
    smb2.share_flags.force_shared_delete  force_shared_delete
        Boolean
    smb2.share_flags.restrict_exclusive_opens  restrict_exclusive_opens
        Boolean
    smb2.share_type  Share Type
        Unsigned 16-bit integer
        Type of share
    smb2.short_name_len  Short Name Length
        Unsigned 8-bit integer
    smb2.shortname  Short Name
        String
    smb2.signature  Signature
        Byte array
    smb2.smb2_file_access_info  SMB2_FILE_ACCESS_INFO
        No value
        SMB2_FILE_ACCESS_INFO structure
    smb2.smb2_file_alignment_info  SMB2_FILE_ALIGNMENT_INFO
        No value
        SMB2_FILE_ALIGNMENT_INFO structure
    smb2.smb2_file_all_info  SMB2_FILE_ALL_INFO
        No value
        SMB2_FILE_ALL_INFO structure
    smb2.smb2_file_allocation_info  SMB2_FILE_ALLOCATION_INFO
        No value
        SMB2_FILE_ALLOCATION_INFO structure
    smb2.smb2_file_alternate_name_info  SMB2_FILE_ALTERNATE_NAME_INFO
        No value
        SMB2_FILE_ALTERNATE_NAME_INFO structure
    smb2.smb2_file_attribute_tag_info  SMB2_FILE_ATTRIBUTE_TAG_INFO
        No value
        SMB2_FILE_ATTRIBUTE_TAG_INFO structure
    smb2.smb2_file_basic_info  SMB2_FILE_BASIC_INFO
        No value
        SMB2_FILE_BASIC_INFO structure
    smb2.smb2_file_compression_info  SMB2_FILE_COMPRESSION_INFO
        No value
        SMB2_FILE_COMPRESSION_INFO structure
    smb2.smb2_file_disposition_info  SMB2_FILE_DISPOSITION_INFO
        No value
        SMB2_FILE_DISPOSITION_INFO structure
    smb2.smb2_file_ea_info  SMB2_FILE_EA_INFO
        No value
        SMB2_FILE_EA_INFO structure
    smb2.smb2_file_endoffile_info  SMB2_FILE_ENDOFFILE_INFO
        No value
        SMB2_FILE_ENDOFFILE_INFO structure
    smb2.smb2_file_info_0f  SMB2_FILE_INFO_0f
        No value
        SMB2_FILE_INFO_0f structure
    smb2.smb2_file_internal_info  SMB2_FILE_INTERNAL_INFO
        No value
        SMB2_FILE_INTERNAL_INFO structure
    smb2.smb2_file_mode_info  SMB2_FILE_MODE_INFO
        No value
        SMB2_FILE_MODE_INFO structure
    smb2.smb2_file_network_open_info  SMB2_FILE_NETWORK_OPEN_INFO
        No value
        SMB2_FILE_NETWORK_OPEN_INFO structure
    smb2.smb2_file_pipe_info  SMB2_FILE_PIPE_INFO
        No value
        SMB2_FILE_PIPE_INFO structure
    smb2.smb2_file_position_info  SMB2_FILE_POSITION_INFO
        No value
        SMB2_FILE_POSITION_INFO structure
    smb2.smb2_file_rename_info  SMB2_FILE_RENAME_INFO
        No value
        SMB2_FILE_RENAME_INFO structure
    smb2.smb2_file_standard_info  SMB2_FILE_STANDARD_INFO
        No value
        SMB2_FILE_STANDARD_INFO structure
    smb2.smb2_file_stream_info  SMB2_FILE_STREAM_INFO
        No value
        SMB2_FILE_STREAM_INFO structure
    smb2.smb2_fs_info_01  SMB2_FS_INFO_01
        No value
        SMB2_FS_INFO_01 structure
    smb2.smb2_fs_info_03  SMB2_FS_INFO_03
        No value
        SMB2_FS_INFO_03 structure
    smb2.smb2_fs_info_04  SMB2_FS_INFO_04
        No value
        SMB2_FS_INFO_04 structure
    smb2.smb2_fs_info_05  SMB2_FS_INFO_05
        No value
        SMB2_FS_INFO_05 structure
    smb2.smb2_fs_info_06  SMB2_FS_INFO_06
        No value
        SMB2_FS_INFO_06 structure
    smb2.smb2_fs_info_07  SMB2_FS_INFO_07
        No value
        SMB2_FS_INFO_07 structure
    smb2.smb2_fs_objectid_info  SMB2_FS_OBJECTID_INFO
        No value
        SMB2_FS_OBJECTID_INFO structure
    smb2.smb2_sec_info_00  SMB2_SEC_INFO_00
        No value
        SMB2_SEC_INFO_00 structure
    smb2.tag  Tag
        String
        Tag of chain entry
    smb2.tcon_frame  Connected in Frame
        Unsigned 32-bit integer
        Which frame this share was connected in
    smb2.tid  Tree Id
        Unsigned 32-bit integer
        SMB2 Tree Id
    smb2.time  Time from request
        Time duration
        Time between Request and Response for SMB2 cmds
    smb2.tree  Tree
        String
        Name of the Tree/Share
    smb2.unknown  unknown
        Byte array
        Unknown bytes
    smb2.unknown.timestamp  Timestamp
        Date/Time stamp
        Unknown timestamp
    smb2.write_data  Write Data
        Byte array
        SMB2 Data to be written
    smb2.write_length  Write Length
        Unsigned 32-bit integer
        Amount of data to write

SNA-over-Ethernet (snaeth)

    snaeth_len  Length
        Unsigned 16-bit integer
        Length of LLC payload

SNMP Multiplex Protocol (smux)

    smux.pdutype  PDU type
        Unsigned 8-bit integer
    smux.version  Version
        Unsigned 8-bit integer

SPNEGO-KRB5 (spnego-krb5)

SPRAY (spray)

    spray.clock  clock
        No value
        Clock
    spray.counter  counter
        Unsigned 32-bit integer
        Counter
    spray.procedure_v1  V1 Procedure
        Unsigned 32-bit integer
    spray.sec  sec
        Unsigned 32-bit integer
        Seconds
    spray.sprayarr  Data
        Byte array
        Sprayarr data
    spray.usec  usec
        Unsigned 32-bit integer
        Microseconds

SS7 SCCP-User Adaptation Layer (sua)

    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_digits  Global Title Digits
        String
    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_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
        Unsigned 8-bit integer
    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
        Unsigned 8-bit integer
    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 (sscf-nni)

    sscf-nni.spare  Spare
        Unsigned 24-bit integer
    sscf-nni.status  Status
        Unsigned 8-bit integer

SSCOP (sscop)

    sscop.mr  N(MR)
        Unsigned 24-bit integer
    sscop.ps  N(PS)
        Unsigned 24-bit integer
    sscop.r  N(R)
        Unsigned 24-bit integer
    sscop.s  N(S)
        Unsigned 24-bit integer
    sscop.sq  N(SQ)
        Unsigned 8-bit integer
    sscop.stat.count  Number of NACKed pdus
        Unsigned 32-bit integer
    sscop.stat.s  N(S)
        Unsigned 24-bit integer
    sscop.type  PDU Type
        Unsigned 8-bit integer

SSH Protocol (ssh)

    ssh.compression_algorithms_client_to_server  compression_algorithms_client_to_server string
        NULL terminated 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
        NULL terminated 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.dh.e  DH client e
        Byte array
        SSH DH client e
    ssh.dh.f  DH server f
        Byte array
        SSH DH server f
    ssh.dh.g  DH base (G)
        Byte array
        SSH DH base (G)
    ssh.dh.p  DH modulus (P)
        Byte array
        SSH DH modulus (P)
    ssh.dh_gex.max  DH GEX Max
        Byte array
        SSH DH GEX Maximum
    ssh.dh_gex.min  DH GEX Min
        Byte array
        SSH DH GEX Minimum
    ssh.dh_gex.nbits  DH GEX Numbers of Bits
        Byte array
        SSH DH GEX Number of Bits
    ssh.encrypted_packet  Encrypted Packet
        Byte array
        SSH Protocol Packet
    ssh.encryption_algorithms_client_to_server  encryption_algorithms_client_to_server string
        NULL terminated 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
        NULL terminated 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.first_packet_follows  KEX First Packet Follows
        Unsigned 8-bit integer
        SSH KEX Fist Packet Follows
    ssh.kex.reserved  Reserved
        Byte array
        SSH Protocol KEX Reserved
    ssh.kex_algorithms  kex_algorithms string
        NULL terminated string
        SSH kex_algorithms string
    ssh.kex_algorithms_length  kex_algorithms length
        Unsigned 32-bit integer
        SSH kex_algorithms length
    ssh.kexdh.h_sig  KEX DH H signature
        Byte array
        SSH KEX DH H signature
    ssh.kexdh.h_sig_length  KEX DH H signature length
        Unsigned 32-bit integer
        SSH KEX DH H signature length
    ssh.kexdh.host_key  KEX DH host key
        Byte array
        SSH KEX DH host key
    ssh.kexdh.host_key_length  KEX DH host key length
        Unsigned 32-bit integer
        SSH KEX DH host key length
    ssh.languages_client_to_server  languages_client_to_server string
        NULL terminated 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
        NULL terminated 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  MAC
        Byte array
        SSH Protocol Packet MAC
    ssh.mac_algorithms_client_to_server  mac_algorithms_client_to_server string
        NULL terminated 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
        NULL terminated 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.message_code  Message Code
        Unsigned 8-bit integer
        SSH Message Code
    ssh.mpint_length  Multi Precision Integer Length
        Unsigned 32-bit integer
        SSH mpint length
    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
        Byte array
        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
        NULL terminated 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

STANAG 4406 Message (s4406)

    s4406.ACP127DataData  ACP127DataData
        String
    s4406.ACP127DataParameters  ACP127DataParameters
        Signed 32-bit integer
    s4406.ADatP3Data  ADatP3Data
        Unsigned 32-bit integer
    s4406.ADatP3Parameters  ADatP3Parameters
        Signed 32-bit integer
    s4406.Acp127MessageIdentifier  Acp127MessageIdentifier
        String
    s4406.Acp127NotificationResponse  Acp127NotificationResponse
        No value
    s4406.Acp127NotificationType  Acp127NotificationType
        Byte array
    s4406.AddressListDesignator  AddressListDesignator
        No value
    s4406.AddressListDesignatorSeq  AddressListDesignatorSeq
        Unsigned 32-bit integer
    s4406.BodyPartSecurityLabel  BodyPartSecurityLabel
        No value
    s4406.CodressMessage  CodressMessage
        Signed 32-bit integer
    s4406.CopyPrecedence  CopyPrecedence
        Signed 32-bit integer
    s4406.CorrectionsData  CorrectionsData
        String
    s4406.CorrectionsParameters  CorrectionsParameters
        Signed 32-bit integer
    s4406.DistributionCodes  DistributionCodes
        No value
    s4406.DistributionExtensionField  DistributionExtensionField
        No value
    s4406.ExemptedAddress  ExemptedAddress
        No value
    s4406.ExemptedAddressSeq  ExemptedAddressSeq
        Unsigned 32-bit integer
    s4406.ExtendedAuthorisationInfo  ExtendedAuthorisationInfo
        String
    s4406.ForwardedEncryptedData  ForwardedEncryptedData
        Byte array
    s4406.ForwardedEncryptedParameters  ForwardedEncryptedParameters
        No value
    s4406.HandlingInstructions  HandlingInstructions
        Unsigned 32-bit integer
    s4406.InformationObject  InformationObject
        Unsigned 32-bit integer
    s4406.MMMessageData  MMMessageData
        No value
    s4406.MMMessageParameters  MMMessageParameters
        No value
    s4406.MessageInstructions  MessageInstructions
        Unsigned 32-bit integer
    s4406.MessageType  MessageType
        No value
    s4406.MilitaryString  MilitaryString
        String
    s4406.ORDescriptor  ORDescriptor
        No value
    s4406.OriginatorPlad  OriginatorPlad
        String
    s4406.OriginatorReference  OriginatorReference
        String
    s4406.OtherRecipientDesignator  OtherRecipientDesignator
        No value
    s4406.OtherRecipientDesignatorSeq  OtherRecipientDesignatorSeq
        Unsigned 32-bit integer
    s4406.PilotInformation  PilotInformation
        No value
    s4406.PilotInformationSeq  PilotInformationSeq
        Unsigned 32-bit integer
    s4406.PrimaryPrecedence  PrimaryPrecedence
        Signed 32-bit integer
    s4406.PriorityLevelQualifier  PriorityLevelQualifier
        Unsigned 32-bit integer
    s4406.SecurityInformationLabels  SecurityInformationLabels
        No value
    s4406.Sic  Sic
        String
    s4406.acp127-nn  acp127-nn
        Boolean
    s4406.acp127-pn  acp127-pn
        Boolean
    s4406.acp127-tn  acp127-tn
        Boolean
    s4406.acp127_notification_type  acp127-notification-type
        Byte array
        Acp127NotificationType
    s4406.acp127_recipient  acp127-recipient
        String
        Acp127Recipient
    s4406.acp127_supp_info  acp127-supp-info
        String
        Acp127SuppInfo
    s4406.addressListIndicator  addressListIndicator
        Unsigned 32-bit integer
    s4406.body_part_security_label  body-part-security-label
        No value
        SecurityLabel
    s4406.body_part_security_labels  body-part-security-labels
        Unsigned 32-bit integer
        SEQUENCE_OF_BodyPartSecurityLabel
    s4406.body_part_sequence_number  body-part-sequence-number
        Signed 32-bit integer
        BodyPartSequenceNumber
    s4406.content_security_label  content-security-label
        No value
        SecurityLabel
    s4406.delivery_envelope  delivery-envelope
        No value
        OtherMessageDeliveryFields
    s4406.delivery_time  delivery-time
        String
        MessageDeliveryTime
    s4406.designator  designator
        String
        MilitaryString
    s4406.dist_Extensions  dist-Extensions
        Unsigned 32-bit integer
        SEQUENCE_OF_DistributionExtensionField
    s4406.dist_type  dist-type
        Object Identifier
        OBJECT_IDENTIFIER
    s4406.dist_value  dist-value
        No value
        T_dist_value
    s4406.heading_security_label  heading-security-label
        No value
        SecurityLabel
    s4406.identifier  identifier
        String
        MessageIdentifier
    s4406.lineOriented  lineOriented
        String
        IA5String
    s4406.listName  listName
        No value
        ORDescriptor
    s4406.mm  mm
        No value
        IPM
    s4406.mn  mn
        No value
        IPN
    s4406.notificationRequest  notificationRequest
        Signed 32-bit integer
        AddressListRequest
    s4406.pilotHandling  pilotHandling
        Unsigned 32-bit integer
        SEQUENCE_OF_MilitaryString
    s4406.pilotPrecedence  pilotPrecedence
        Signed 32-bit integer
        MMHSPrecedence
    s4406.pilotRecipient  pilotRecipient
        Unsigned 32-bit integer
        SEQUENCE_OF_ORDescriptor
    s4406.pilotSecurity  pilotSecurity
        No value
        SecurityLabel
    s4406.receipt_time  receipt-time
        String
        ReceiptTimeField
    s4406.replyRequest  replyRequest
        Signed 32-bit integer
        AddressListRequest
    s4406.setOriented  setOriented
        Unsigned 32-bit integer
    s4406.setOriented_item  setOriented item
        String
        IA5String
    s4406.sics  sics
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_ub_military_number_of_sics_OF_Sic
    s4406.type  type
        Signed 32-bit integer
        TypeMessage

STANAG 5066 (SIS layer) (s5066)

    s5066.01.rank  Rank
        Unsigned 8-bit integer
    s5066.01.sapid  Sap ID
        Unsigned 8-bit integer
    s5066.01.unused  (Unused)
        Unsigned 8-bit integer
    s5066.03.mtu  MTU
        Unsigned 16-bit integer
    s5066.03.sapid  Sap ID
        Unsigned 8-bit integer
    s5066.03.unused  (Unused)
        Unsigned 8-bit integer
    s5066.04.reason  Reason
        Unsigned 8-bit integer
    s5066.05.reason  Reason
        Unsigned 8-bit integer
    s5066.06.priority  Priority
        Unsigned 8-bit integer
    s5066.06.sapid  Remote Sap ID
        Unsigned 8-bit integer
    s5066.06.type  Hardlink type
        Unsigned 8-bit integer
    s5066.08.priority  Priority
        Unsigned 8-bit integer
    s5066.08.sapid  Remote Sap ID
        Unsigned 8-bit integer
    s5066.08.status  Remote node status
        Unsigned 8-bit integer
    s5066.08.type  Hardlink type
        Unsigned 8-bit integer
    s5066.09.priority  Priority
        Unsigned 8-bit integer
    s5066.09.reason  Reason
        Unsigned 8-bit integer
    s5066.09.sapid  Remote Sap ID
        Unsigned 8-bit integer
    s5066.09.type  Hardlink type
        Unsigned 8-bit integer
    s5066.10.priority  Priority
        Unsigned 8-bit integer
    s5066.10.reason  Reason
        Unsigned 8-bit integer
    s5066.10.sapid  Remote Sap ID
        Unsigned 8-bit integer
    s5066.10.type  Hardlink type
        Unsigned 8-bit integer
    s5066.11.priority  Priority
        Unsigned 8-bit integer
    s5066.11.sapid  Remote Sap ID
        Unsigned 8-bit integer
    s5066.11.status  Remote node status
        Unsigned 8-bit integer
    s5066.11.type  Hardlink type
        Unsigned 8-bit integer
    s5066.12.priority  Priority
        Unsigned 8-bit integer
    s5066.12.sapid  Remote Sap ID
        Unsigned 8-bit integer
    s5066.12.type  Hardlink type
        Unsigned 8-bit integer
    s5066.13.priority  Priority
        Unsigned 8-bit integer
    s5066.13.reason  Reason
        Unsigned 8-bit integer
    s5066.13.sapid  Remote Sap ID
        Unsigned 8-bit integer
    s5066.13.type  Hardlink type
        Unsigned 8-bit integer
    s5066.14.reason  Reason
        Unsigned 8-bit integer
    s5066.14.status  Status
        Unsigned 8-bit integer
    s5066.18.body  Message Body
        Byte array
    s5066.18.type  Message Type
        Unsigned 8-bit integer
    s5066.19.body  Message Body
        Byte array
    s5066.19.type  Message Type
        Unsigned 8-bit integer
    s5066.20.priority  Priority
        Unsigned 8-bit integer
    s5066.20.sapid  Destination Sap ID
        Unsigned 8-bit integer
    s5066.20.size  U_PDU Size
        Unsigned 16-bit integer
    s5066.20.ttl  Time-To-Live (x2 seconds)
        Unsigned 24-bit integer
    s5066.21.dest_sapid  Destination Sap ID
        Unsigned 8-bit integer
    s5066.21.err_blocks  Number of errored blocks
        Unsigned 16-bit integer
    s5066.21.err_ptr  Pointer to error block
        Unsigned 16-bit integer
    s5066.21.err_size  Size of error block
        Unsigned 16-bit integer
    s5066.21.nrx_blocks  Number of non-received blocks
        Unsigned 16-bit integer
    s5066.21.nrx_ptr  Pointer to non-received block
        Unsigned 16-bit integer
    s5066.21.nrx_size  Size of non-received block
        Unsigned 16-bit integer
    s5066.21.priority  Priority
        Unsigned 8-bit integer
    s5066.21.size  U_PDU Size
        Unsigned 16-bit integer
    s5066.21.src_sapid  Source Sap ID
        Unsigned 8-bit integer
    s5066.21.txmode  Transmission Mode
        Unsigned 8-bit integer
    s5066.22.data  (Part of) Confirmed data
        Byte array
    s5066.22.sapid  Destination Sap ID
        Unsigned 8-bit integer
    s5066.22.size  U_PDU Size
        Unsigned 16-bit integer
    s5066.22.unused  (Unused)
        Unsigned 8-bit integer
    s5066.23.data  (Part of) Rejected data
        Byte array
    s5066.23.reason  Reason
        Unsigned 8-bit integer
    s5066.23.sapid  Destination Sap ID
        Unsigned 8-bit integer
    s5066.23.size  U_PDU Size
        Unsigned 16-bit integer
    s5066.24.sapid  Destination Sap ID
        Unsigned 8-bit integer
    s5066.24.size  U_PDU Size
        Unsigned 16-bit integer
    s5066.24.ttl  Time-To-Live (x2 seconds)
        Unsigned 24-bit integer
    s5066.24.unused  (Unused)
        Unsigned 8-bit integer
    s5066.25.dest_sapid  Destination Sap ID
        Unsigned 8-bit integer
    s5066.25.err_blocks  Number of errored blocks
        Unsigned 16-bit integer
    s5066.25.err_ptr  Pointer to error block
        Unsigned 16-bit integer
    s5066.25.err_size  Size of error block
        Unsigned 16-bit integer
    s5066.25.nrx_blocks  Number of non-received blocks
        Unsigned 16-bit integer
    s5066.25.nrx_ptr  Pointer to non-received block
        Unsigned 16-bit integer
    s5066.25.nrx_size  Size of non-received block
        Unsigned 16-bit integer
    s5066.25.size  U_PDU Size
        Unsigned 16-bit integer
    s5066.25.src_sapid  Source Sap ID
        Unsigned 8-bit integer
    s5066.25.txmode  Transmission Mode
        Unsigned 8-bit integer
    s5066.25.unused  (Unused)
        Unsigned 8-bit integer
    s5066.26.data  (Part of) Confirmed data
        Byte array
    s5066.26.sapid  Destination Sap ID
        Unsigned 8-bit integer
    s5066.26.size  U_PDU Size
        Unsigned 16-bit integer
    s5066.26.unused  (Unused)
        Unsigned 8-bit integer
    s5066.27.data  (Part of) Rejected data
        Byte array
    s5066.27.reason  Reason
        Unsigned 8-bit integer
    s5066.27.sapid  Destination Sap ID
        Unsigned 8-bit integer
    s5066.27.size  U_PDU Size
        Unsigned 16-bit integer
    s5066.address.address  Address
        IPv4 address
    s5066.address.group  Group address
        Unsigned 8-bit integer
    s5066.address.size  Address size (1/2 Bytes)
        Unsigned 8-bit integer
    s5066.size  S_Primitive size
        Unsigned 16-bit integer
    s5066.st.confirm  Delivery confirmation
        Unsigned 8-bit integer
    s5066.st.extended  Extended field
        Unsigned 8-bit integer
    s5066.st.order  Delivery order
        Unsigned 8-bit integer
    s5066.st.retries  Minimum number of retransmissions
        Unsigned 8-bit integer
    s5066.st.txmode  Transmission mode
        Unsigned 8-bit integer
    s5066.sync  Sync preamble
        Unsigned 16-bit integer
    s5066.type  PDU Type
        Unsigned 8-bit integer
    s5066.version  S5066 version
        Unsigned 8-bit integer

Scripting Service Protocol (ssp)

    ssprotocol.message_data  Data
        Byte array
    ssprotocol.message_flags  Flags
        Unsigned 8-bit integer
    ssprotocol.message_info  Info
        String
    ssprotocol.message_length  Length
        Unsigned 16-bit integer
    ssprotocol.message_reason  Reason
        Unsigned 32-bit integer
    ssprotocol.message_status  Status
        Unsigned 32-bit integer
    ssprotocol.message_type  Type
        Unsigned 8-bit integer

Secure Socket Layer (ssl)

    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
    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  Encrypted Application Data
        Byte array
        Payload is encrypted 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
    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
        No value
    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
    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
        No value
        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_ec_point_format  EC point format
        Unsigned 8-bit integer
        Elliptic curves point format
    ssl.handshake.extensions_ec_point_formats_length  EC point formats Length
        Unsigned 8-bit integer
        Length of elliptic curves point formats field
    ssl.handshake.extensions_elliptic_curve  Elliptic curve
        Unsigned 16-bit integer
    ssl.handshake.extensions_elliptic_curves  Elliptic Curves List
        No value
        List of elliptic curves supported
    ssl.handshake.extensions_elliptic_curves_length  Elliptic Curves Length
        Unsigned 16-bit integer
        Length of elliptic curves field
    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_bytes  random_bytes
        Byte array
        Random challenge used to authenticate server
    ssl.handshake.random_time  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.sig_hash_alg  Signature Hash Algorithm
        Unsigned 16-bit integer
    ssl.handshake.sig_hash_alg_len  Signature Hash Algorithms Length
        Unsigned 16-bit integer
        Length of Signature Hash Algorithms
    ssl.handshake.sig_hash_algs  Signature Hash Algorithms
        No value
        List of Signature Hash Algorithms
    ssl.handshake.sig_hash_hash  Signature Hash Algorithm Hash
        Unsigned 8-bit integer
    ssl.handshake.sig_hash_sig  Signature Hash Algorithm Signature
        Unsigned 8-bit integer
    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.reassembled.length  Reassembled PDU length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    ssl.reassembled_in  Reassembled PDU in frame
        Frame number
        The PDU that doesn't end in this segment is reassembled in this frame
    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
    ssl.segment  SSL Segment
        Frame number
    ssl.segment.error  Reassembling error
        Frame number
        Reassembling error due to illegal segments
    ssl.segment.multipletails  Multiple tail segments found
        Boolean
        Several tails were found when reassembling the pdu
    ssl.segment.overlap  Segment overlap
        Boolean
        Segment overlaps with other segments
    ssl.segment.overlap.conflict  Conflicting data in segment overlap
        Boolean
        Overlapping segments contained conflicting data
    ssl.segment.toolongfragment  Segment too long
        Boolean
        Segment contained data past end of the pdu
    ssl.segments  Reassembled SSL Segments
        No value
        SSL Segments

Sequenced Packet Protocol (spp)

    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

Sequenced Packet eXchange (spx)

    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

Serial Infrared (sir)

    sir.bof  Beginning of frame
        Unsigned 8-bit integer
    sir.ce  Command escape
        Unsigned 8-bit integer
    sir.eof  End of frame
        Unsigned 8-bit integer
    sir.fcs  Frame check sequence
        Unsigned 16-bit integer
    sir.fcs_bad  Bad frame check sequence
        Boolean
    sir.length  Length
        Unsigned 16-bit integer
    sir.preamble  Preamble
        Byte array

Server Service (srvsvc)

    srvsvc.opnum  Operation
        Unsigned 16-bit integer
    srvsvc.sec_desc_buf_len  Sec Desc Buf Len
        Unsigned 32-bit integer
    srvsvc.srvsvc_DFSFlags.CSC_CACHE_AUTO_REINT  Csc Cache Auto Reint
        Boolean
    srvsvc.srvsvc_DFSFlags.CSC_CACHE_VDO  Csc Cache Vdo
        Boolean
    srvsvc.srvsvc_DFSFlags.FLAGS_ACCESS_BASED_DIRECTORY_ENUM  Flags Access Based Directory Enum
        Boolean
    srvsvc.srvsvc_DFSFlags.FLAGS_ALLOW_NAMESPACE_CACHING  Flags Allow Namespace Caching
        Boolean
    srvsvc.srvsvc_DFSFlags.FLAGS_FORCE_SHARED_DELETE  Flags Force Shared Delete
        Boolean
    srvsvc.srvsvc_DFSFlags.FLAGS_RESTRICT_EXCLUSIVE_OPENS  Flags Restrict Exclusive Opens
        Boolean
    srvsvc.srvsvc_DFSFlags.SHARE_1005_FLAGS_DFS_ROOT  Share 1005 Flags Dfs Root
        Boolean
    srvsvc.srvsvc_DFSFlags.SHARE_1005_FLAGS_IN_DFS  Share 1005 Flags In Dfs
        Boolean
    srvsvc.srvsvc_NetCharDevControl.device_name  Device Name
        String
    srvsvc.srvsvc_NetCharDevControl.opcode  Opcode
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevControl.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetCharDevCtr.ctr0  Ctr0
        No value
    srvsvc.srvsvc_NetCharDevCtr.ctr1  Ctr1
        No value
    srvsvc.srvsvc_NetCharDevCtr0.array  Array
        No value
    srvsvc.srvsvc_NetCharDevCtr0.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevCtr1.array  Array
        No value
    srvsvc.srvsvc_NetCharDevCtr1.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevEnum.ctr  Ctr
        No value
    srvsvc.srvsvc_NetCharDevEnum.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevEnum.max_buffer  Max Buffer
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevEnum.resume_handle  Resume Handle
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevEnum.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetCharDevEnum.totalentries  Totalentries
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevGetInfo.device_name  Device Name
        String
    srvsvc.srvsvc_NetCharDevGetInfo.info  Info
        No value
    srvsvc.srvsvc_NetCharDevGetInfo.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevGetInfo.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetCharDevInfo.info0  Info0
        No value
    srvsvc.srvsvc_NetCharDevInfo.info1  Info1
        No value
    srvsvc.srvsvc_NetCharDevInfo0.device  Device
        String
    srvsvc.srvsvc_NetCharDevInfo1.device  Device
        String
    srvsvc.srvsvc_NetCharDevInfo1.status  Status
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevInfo1.time  Time
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevInfo1.user  User
        String
    srvsvc.srvsvc_NetCharDevQCtr.ctr0  Ctr0
        No value
    srvsvc.srvsvc_NetCharDevQCtr.ctr1  Ctr1
        No value
    srvsvc.srvsvc_NetCharDevQCtr0.array  Array
        No value
    srvsvc.srvsvc_NetCharDevQCtr0.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevQCtr1.array  Array
        No value
    srvsvc.srvsvc_NetCharDevQCtr1.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevQEnum.ctr  Ctr
        No value
    srvsvc.srvsvc_NetCharDevQEnum.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevQEnum.max_buffer  Max Buffer
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevQEnum.resume_handle  Resume Handle
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevQEnum.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetCharDevQEnum.totalentries  Totalentries
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevQEnum.user  User
        String
    srvsvc.srvsvc_NetCharDevQGetInfo.info  Info
        No value
    srvsvc.srvsvc_NetCharDevQGetInfo.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevQGetInfo.queue_name  Queue Name
        String
    srvsvc.srvsvc_NetCharDevQGetInfo.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetCharDevQGetInfo.user  User
        String
    srvsvc.srvsvc_NetCharDevQInfo.info0  Info0
        No value
    srvsvc.srvsvc_NetCharDevQInfo.info1  Info1
        No value
    srvsvc.srvsvc_NetCharDevQInfo0.device  Device
        String
    srvsvc.srvsvc_NetCharDevQInfo1.device  Device
        String
    srvsvc.srvsvc_NetCharDevQInfo1.devices  Devices
        String
    srvsvc.srvsvc_NetCharDevQInfo1.num_ahead  Num Ahead
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevQInfo1.priority  Priority
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevQInfo1.users  Users
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevQPurge.queue_name  Queue Name
        String
    srvsvc.srvsvc_NetCharDevQPurge.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetCharDevQPurgeSelf.computer_name  Computer Name
        String
    srvsvc.srvsvc_NetCharDevQPurgeSelf.queue_name  Queue Name
        String
    srvsvc.srvsvc_NetCharDevQPurgeSelf.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetCharDevQSetInfo.info  Info
        No value
    srvsvc.srvsvc_NetCharDevQSetInfo.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevQSetInfo.parm_error  Parm Error
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetCharDevQSetInfo.queue_name  Queue Name
        String
    srvsvc.srvsvc_NetCharDevQSetInfo.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetConnCtr.ctr0  Ctr0
        No value
    srvsvc.srvsvc_NetConnCtr.ctr1  Ctr1
        No value
    srvsvc.srvsvc_NetConnCtr0.array  Array
        No value
    srvsvc.srvsvc_NetConnCtr0.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetConnCtr1.array  Array
        No value
    srvsvc.srvsvc_NetConnCtr1.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetConnEnum.ctr  Ctr
        No value
    srvsvc.srvsvc_NetConnEnum.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetConnEnum.max_buffer  Max Buffer
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetConnEnum.path  Path
        String
    srvsvc.srvsvc_NetConnEnum.resume_handle  Resume Handle
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetConnEnum.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetConnEnum.totalentries  Totalentries
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetConnInfo0.conn_id  Conn Id
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetConnInfo1.conn_id  Conn Id
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetConnInfo1.conn_time  Conn Time
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetConnInfo1.conn_type  Conn Type
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetConnInfo1.num_open  Num Open
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetConnInfo1.num_users  Num Users
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetConnInfo1.share  Share
        String
    srvsvc.srvsvc_NetConnInfo1.user  User
        String
    srvsvc.srvsvc_NetDiskEnum.info  Info
        No value
    srvsvc.srvsvc_NetDiskEnum.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetDiskEnum.maxlen  Maxlen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetDiskEnum.resume_handle  Resume Handle
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetDiskEnum.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetDiskEnum.totalentries  Totalentries
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetDiskInfo.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetDiskInfo.disks  Disks
        No value
    srvsvc.srvsvc_NetDiskInfo0.disk  Disk
        No value
    srvsvc.srvsvc_NetFileClose.fid  Fid
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileClose.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetFileCtr.ctr2  Ctr2
        No value
    srvsvc.srvsvc_NetFileCtr.ctr3  Ctr3
        No value
    srvsvc.srvsvc_NetFileCtr2.array  Array
        No value
    srvsvc.srvsvc_NetFileCtr2.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileCtr3.array  Array
        No value
    srvsvc.srvsvc_NetFileCtr3.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileEnum.ctr  Ctr
        No value
    srvsvc.srvsvc_NetFileEnum.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileEnum.max_buffer  Max Buffer
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileEnum.path  Path
        String
    srvsvc.srvsvc_NetFileEnum.resume_handle  Resume Handle
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileEnum.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetFileEnum.totalentries  Totalentries
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileEnum.user  User
        String
    srvsvc.srvsvc_NetFileGetInfo.fid  Fid
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileGetInfo.info  Info
        No value
    srvsvc.srvsvc_NetFileGetInfo.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileGetInfo.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetFileInfo.info2  Info2
        No value
    srvsvc.srvsvc_NetFileInfo.info3  Info3
        No value
    srvsvc.srvsvc_NetFileInfo2.fid  Fid
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileInfo3.fid  Fid
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileInfo3.num_locks  Num Locks
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileInfo3.path  Path
        String
    srvsvc.srvsvc_NetFileInfo3.permissions  Permissions
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetFileInfo3.user  User
        String
    srvsvc.srvsvc_NetGetFileSecurity.file  File
        String
    srvsvc.srvsvc_NetGetFileSecurity.sd_buf  Sd Buf
        No value
    srvsvc.srvsvc_NetGetFileSecurity.securityinformation  Securityinformation
        No value
    srvsvc.srvsvc_NetGetFileSecurity.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetGetFileSecurity.share  Share
        String
    srvsvc.srvsvc_NetNameValidate.flags  Flags
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetNameValidate.name  Name
        String
    srvsvc.srvsvc_NetNameValidate.name_type  Name Type
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetNameValidate.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetPRNameCompare.flags  Flags
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetPRNameCompare.name1  Name1
        String
    srvsvc.srvsvc_NetPRNameCompare.name2  Name2
        String
    srvsvc.srvsvc_NetPRNameCompare.name_type  Name Type
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetPRNameCompare.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetPathCanonicalize.can_path  Can Path
        Unsigned 8-bit integer
    srvsvc.srvsvc_NetPathCanonicalize.maxbuf  Maxbuf
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetPathCanonicalize.path  Path
        String
    srvsvc.srvsvc_NetPathCanonicalize.pathflags  Pathflags
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetPathCanonicalize.pathtype  Pathtype
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetPathCanonicalize.prefix  Prefix
        String
    srvsvc.srvsvc_NetPathCanonicalize.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetPathCompare.path1  Path1
        String
    srvsvc.srvsvc_NetPathCompare.path2  Path2
        String
    srvsvc.srvsvc_NetPathCompare.pathflags  Pathflags
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetPathCompare.pathtype  Pathtype
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetPathCompare.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetPathType.path  Path
        String
    srvsvc.srvsvc_NetPathType.pathflags  Pathflags
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetPathType.pathtype  Pathtype
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetPathType.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetRemoteTOD.info  Info
        No value
    srvsvc.srvsvc_NetRemoteTOD.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetRemoteTODInfo.day  Day
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetRemoteTODInfo.elapsed  Elapsed
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetRemoteTODInfo.hours  Hours
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetRemoteTODInfo.hunds  Hunds
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetRemoteTODInfo.mins  Mins
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetRemoteTODInfo.month  Month
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetRemoteTODInfo.msecs  Msecs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetRemoteTODInfo.secs  Secs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetRemoteTODInfo.timezone  Timezone
        Signed 32-bit integer
    srvsvc.srvsvc_NetRemoteTODInfo.tinterval  Tinterval
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetRemoteTODInfo.weekday  Weekday
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetRemoteTODInfo.year  Year
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetServerSetServiceBitsEx.emulated_server_unc  Emulated Server Unc
        String
    srvsvc.srvsvc_NetServerSetServiceBitsEx.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetServerSetServiceBitsEx.servicebits  Servicebits
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetServerSetServiceBitsEx.servicebitsofinterest  Servicebitsofinterest
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetServerSetServiceBitsEx.transport  Transport
        String
    srvsvc.srvsvc_NetServerSetServiceBitsEx.updateimmediately  Updateimmediately
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetServerStatisticsGet.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetServerStatisticsGet.options  Options
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetServerStatisticsGet.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetServerStatisticsGet.service  Service
        String
    srvsvc.srvsvc_NetServerStatisticsGet.stat  Stat
        No value
    srvsvc.srvsvc_NetServerTransportAddEx.info  Info
        No value
    srvsvc.srvsvc_NetServerTransportAddEx.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetServerTransportAddEx.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetSessCtr.ctr0  Ctr0
        No value
    srvsvc.srvsvc_NetSessCtr.ctr1  Ctr1
        No value
    srvsvc.srvsvc_NetSessCtr.ctr10  Ctr10
        No value
    srvsvc.srvsvc_NetSessCtr.ctr2  Ctr2
        No value
    srvsvc.srvsvc_NetSessCtr.ctr502  Ctr502
        No value
    srvsvc.srvsvc_NetSessCtr0.array  Array
        No value
    srvsvc.srvsvc_NetSessCtr0.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessCtr1.array  Array
        No value
    srvsvc.srvsvc_NetSessCtr1.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessCtr10.array  Array
        No value
    srvsvc.srvsvc_NetSessCtr10.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessCtr2.array  Array
        No value
    srvsvc.srvsvc_NetSessCtr2.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessCtr502.array  Array
        No value
    srvsvc.srvsvc_NetSessCtr502.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessDel.client  Client
        String
    srvsvc.srvsvc_NetSessDel.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetSessDel.user  User
        String
    srvsvc.srvsvc_NetSessEnum.client  Client
        String
    srvsvc.srvsvc_NetSessEnum.ctr  Ctr
        No value
    srvsvc.srvsvc_NetSessEnum.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessEnum.max_buffer  Max Buffer
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessEnum.resume_handle  Resume Handle
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessEnum.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetSessEnum.totalentries  Totalentries
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessEnum.user  User
        String
    srvsvc.srvsvc_NetSessInfo0.client  Client
        String
    srvsvc.srvsvc_NetSessInfo1.client  Client
        String
    srvsvc.srvsvc_NetSessInfo1.idle_time  Idle Time
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo1.num_open  Num Open
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo1.time  Time
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo1.user  User
        String
    srvsvc.srvsvc_NetSessInfo1.user_flags  User Flags
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo10.client  Client
        String
    srvsvc.srvsvc_NetSessInfo10.idle_time  Idle Time
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo10.time  Time
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo10.user  User
        String
    srvsvc.srvsvc_NetSessInfo2.client  Client
        String
    srvsvc.srvsvc_NetSessInfo2.client_type  Client Type
        String
    srvsvc.srvsvc_NetSessInfo2.idle_time  Idle Time
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo2.num_open  Num Open
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo2.time  Time
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo2.user  User
        String
    srvsvc.srvsvc_NetSessInfo2.user_flags  User Flags
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo502.client  Client
        String
    srvsvc.srvsvc_NetSessInfo502.client_type  Client Type
        String
    srvsvc.srvsvc_NetSessInfo502.idle_time  Idle Time
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo502.num_open  Num Open
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo502.time  Time
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSessInfo502.transport  Transport
        String
    srvsvc.srvsvc_NetSessInfo502.user  User
        String
    srvsvc.srvsvc_NetSessInfo502.user_flags  User Flags
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSetFileSecurity.file  File
        String
    srvsvc.srvsvc_NetSetFileSecurity.sd_buf  Sd Buf
        No value
    srvsvc.srvsvc_NetSetFileSecurity.securityinformation  Securityinformation
        No value
    srvsvc.srvsvc_NetSetFileSecurity.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetSetFileSecurity.share  Share
        String
    srvsvc.srvsvc_NetSetServiceBits.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetSetServiceBits.servicebits  Servicebits
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSetServiceBits.transport  Transport
        String
    srvsvc.srvsvc_NetSetServiceBits.updateimmediately  Updateimmediately
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareAdd.info  Info
        No value
    srvsvc.srvsvc_NetShareAdd.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareAdd.parm_error  Parm Error
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareAdd.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetShareCheck.device_name  Device Name
        String
    srvsvc.srvsvc_NetShareCheck.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetShareCheck.type  Type
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareCtr.ctr0  Ctr0
        No value
    srvsvc.srvsvc_NetShareCtr.ctr1  Ctr1
        No value
    srvsvc.srvsvc_NetShareCtr.ctr1004  Ctr1004
        No value
    srvsvc.srvsvc_NetShareCtr.ctr1005  Ctr1005
        No value
    srvsvc.srvsvc_NetShareCtr.ctr1006  Ctr1006
        No value
    srvsvc.srvsvc_NetShareCtr.ctr1007  Ctr1007
        No value
    srvsvc.srvsvc_NetShareCtr.ctr1501  Ctr1501
        No value
    srvsvc.srvsvc_NetShareCtr.ctr2  Ctr2
        No value
    srvsvc.srvsvc_NetShareCtr.ctr501  Ctr501
        No value
    srvsvc.srvsvc_NetShareCtr.ctr502  Ctr502
        No value
    srvsvc.srvsvc_NetShareCtr0.array  Array
        No value
    srvsvc.srvsvc_NetShareCtr0.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareCtr1.array  Array
        No value
    srvsvc.srvsvc_NetShareCtr1.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareCtr1004.array  Array
        No value
    srvsvc.srvsvc_NetShareCtr1004.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareCtr1005.array  Array
        No value
    srvsvc.srvsvc_NetShareCtr1005.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareCtr1006.array  Array
        No value
    srvsvc.srvsvc_NetShareCtr1006.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareCtr1007.array  Array
        No value
    srvsvc.srvsvc_NetShareCtr1007.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareCtr1501.array  Array
        No value
    srvsvc.srvsvc_NetShareCtr1501.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareCtr2.array  Array
        No value
    srvsvc.srvsvc_NetShareCtr2.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareCtr501.array  Array
        No value
    srvsvc.srvsvc_NetShareCtr501.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareCtr502.array  Array
        No value
    srvsvc.srvsvc_NetShareCtr502.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareDel.reserved  Reserved
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareDel.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetShareDel.share_name  Share Name
        String
    srvsvc.srvsvc_NetShareDelCommit.hnd  Hnd
        Byte array
    srvsvc.srvsvc_NetShareDelStart.hnd  Hnd
        Byte array
    srvsvc.srvsvc_NetShareDelStart.reserved  Reserved
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareDelStart.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetShareDelStart.share  Share
        String
    srvsvc.srvsvc_NetShareDelSticky.reserved  Reserved
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareDelSticky.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetShareDelSticky.share_name  Share Name
        String
    srvsvc.srvsvc_NetShareEnum.ctr  Ctr
        No value
    srvsvc.srvsvc_NetShareEnum.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareEnum.max_buffer  Max Buffer
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareEnum.resume_handle  Resume Handle
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareEnum.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetShareEnum.totalentries  Totalentries
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareEnumAll.ctr  Ctr
        No value
    srvsvc.srvsvc_NetShareEnumAll.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareEnumAll.max_buffer  Max Buffer
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareEnumAll.resume_handle  Resume Handle
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareEnumAll.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetShareEnumAll.totalentries  Totalentries
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareGetInfo.info  Info
        No value
    srvsvc.srvsvc_NetShareGetInfo.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareGetInfo.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetShareGetInfo.share_name  Share Name
        String
    srvsvc.srvsvc_NetShareInfo.info0  Info0
        No value
    srvsvc.srvsvc_NetShareInfo.info1  Info1
        No value
    srvsvc.srvsvc_NetShareInfo.info1004  Info1004
        No value
    srvsvc.srvsvc_NetShareInfo.info1005  Info1005
        No value
    srvsvc.srvsvc_NetShareInfo.info1006  Info1006
        No value
    srvsvc.srvsvc_NetShareInfo.info1007  Info1007
        No value
    srvsvc.srvsvc_NetShareInfo.info1501  Info1501
        No value
    srvsvc.srvsvc_NetShareInfo.info2  Info2
        No value
    srvsvc.srvsvc_NetShareInfo.info501  Info501
        No value
    srvsvc.srvsvc_NetShareInfo.info502  Info502
        No value
    srvsvc.srvsvc_NetShareInfo0.name  Name
        String
    srvsvc.srvsvc_NetShareInfo1.comment  Comment
        String
    srvsvc.srvsvc_NetShareInfo1.name  Name
        String
    srvsvc.srvsvc_NetShareInfo1.type  Type
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareInfo1004.comment  Comment
        String
    srvsvc.srvsvc_NetShareInfo1005.dfs_flags  Dfs Flags
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareInfo1006.max_users  Max Users
        Signed 32-bit integer
    srvsvc.srvsvc_NetShareInfo1007.alternate_directory_name  Alternate Directory Name
        String
    srvsvc.srvsvc_NetShareInfo1007.flags  Flags
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareInfo2.comment  Comment
        String
    srvsvc.srvsvc_NetShareInfo2.current_users  Current Users
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareInfo2.max_users  Max Users
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareInfo2.name  Name
        String
    srvsvc.srvsvc_NetShareInfo2.password  Password
        String
    srvsvc.srvsvc_NetShareInfo2.path  Path
        String
    srvsvc.srvsvc_NetShareInfo2.permissions  Permissions
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareInfo2.type  Type
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareInfo501.comment  Comment
        String
    srvsvc.srvsvc_NetShareInfo501.csc_policy  Csc Policy
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareInfo501.name  Name
        String
    srvsvc.srvsvc_NetShareInfo501.type  Type
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareInfo502.comment  Comment
        String
    srvsvc.srvsvc_NetShareInfo502.current_users  Current Users
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareInfo502.max_users  Max Users
        Signed 32-bit integer
    srvsvc.srvsvc_NetShareInfo502.name  Name
        String
    srvsvc.srvsvc_NetShareInfo502.password  Password
        String
    srvsvc.srvsvc_NetShareInfo502.path  Path
        String
    srvsvc.srvsvc_NetShareInfo502.permissions  Permissions
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareInfo502.sd  Sd
        No value
    srvsvc.srvsvc_NetShareInfo502.type  Type
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareInfo502.unknown  Unknown
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareSetInfo.info  Info
        No value
    srvsvc.srvsvc_NetShareSetInfo.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareSetInfo.parm_error  Parm Error
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetShareSetInfo.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetShareSetInfo.share_name  Share Name
        String
    srvsvc.srvsvc_NetSrvGetInfo.info  Info
        No value
    srvsvc.srvsvc_NetSrvGetInfo.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvGetInfo.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetSrvInfo.info100  Info100
        No value
    srvsvc.srvsvc_NetSrvInfo.info1005  Info1005
        No value
    srvsvc.srvsvc_NetSrvInfo.info101  Info101
        No value
    srvsvc.srvsvc_NetSrvInfo.info1010  Info1010
        No value
    srvsvc.srvsvc_NetSrvInfo.info1016  Info1016
        No value
    srvsvc.srvsvc_NetSrvInfo.info1017  Info1017
        No value
    srvsvc.srvsvc_NetSrvInfo.info1018  Info1018
        No value
    srvsvc.srvsvc_NetSrvInfo.info102  Info102
        No value
    srvsvc.srvsvc_NetSrvInfo.info1107  Info1107
        No value
    srvsvc.srvsvc_NetSrvInfo.info1501  Info1501
        No value
    srvsvc.srvsvc_NetSrvInfo.info1502  Info1502
        No value
    srvsvc.srvsvc_NetSrvInfo.info1503  Info1503
        No value
    srvsvc.srvsvc_NetSrvInfo.info1506  Info1506
        No value
    srvsvc.srvsvc_NetSrvInfo.info1509  Info1509
        No value
    srvsvc.srvsvc_NetSrvInfo.info1510  Info1510
        No value
    srvsvc.srvsvc_NetSrvInfo.info1511  Info1511
        No value
    srvsvc.srvsvc_NetSrvInfo.info1512  Info1512
        No value
    srvsvc.srvsvc_NetSrvInfo.info1513  Info1513
        No value
    srvsvc.srvsvc_NetSrvInfo.info1514  Info1514
        No value
    srvsvc.srvsvc_NetSrvInfo.info1515  Info1515
        No value
    srvsvc.srvsvc_NetSrvInfo.info1516  Info1516
        No value
    srvsvc.srvsvc_NetSrvInfo.info1518  Info1518
        No value
    srvsvc.srvsvc_NetSrvInfo.info1520  Info1520
        No value
    srvsvc.srvsvc_NetSrvInfo.info1521  Info1521
        No value
    srvsvc.srvsvc_NetSrvInfo.info1522  Info1522
        No value
    srvsvc.srvsvc_NetSrvInfo.info1523  Info1523
        No value
    srvsvc.srvsvc_NetSrvInfo.info1524  Info1524
        No value
    srvsvc.srvsvc_NetSrvInfo.info1525  Info1525
        No value
    srvsvc.srvsvc_NetSrvInfo.info1528  Info1528
        No value
    srvsvc.srvsvc_NetSrvInfo.info1529  Info1529
        No value
    srvsvc.srvsvc_NetSrvInfo.info1530  Info1530
        No value
    srvsvc.srvsvc_NetSrvInfo.info1533  Info1533
        No value
    srvsvc.srvsvc_NetSrvInfo.info1534  Info1534
        No value
    srvsvc.srvsvc_NetSrvInfo.info1535  Info1535
        No value
    srvsvc.srvsvc_NetSrvInfo.info1536  Info1536
        No value
    srvsvc.srvsvc_NetSrvInfo.info1537  Info1537
        No value
    srvsvc.srvsvc_NetSrvInfo.info1538  Info1538
        No value
    srvsvc.srvsvc_NetSrvInfo.info1539  Info1539
        No value
    srvsvc.srvsvc_NetSrvInfo.info1540  Info1540
        No value
    srvsvc.srvsvc_NetSrvInfo.info1541  Info1541
        No value
    srvsvc.srvsvc_NetSrvInfo.info1542  Info1542
        No value
    srvsvc.srvsvc_NetSrvInfo.info1543  Info1543
        No value
    srvsvc.srvsvc_NetSrvInfo.info1544  Info1544
        No value
    srvsvc.srvsvc_NetSrvInfo.info1545  Info1545
        No value
    srvsvc.srvsvc_NetSrvInfo.info1546  Info1546
        No value
    srvsvc.srvsvc_NetSrvInfo.info1547  Info1547
        No value
    srvsvc.srvsvc_NetSrvInfo.info1548  Info1548
        No value
    srvsvc.srvsvc_NetSrvInfo.info1549  Info1549
        No value
    srvsvc.srvsvc_NetSrvInfo.info1550  Info1550
        No value
    srvsvc.srvsvc_NetSrvInfo.info1552  Info1552
        No value
    srvsvc.srvsvc_NetSrvInfo.info1553  Info1553
        No value
    srvsvc.srvsvc_NetSrvInfo.info1554  Info1554
        No value
    srvsvc.srvsvc_NetSrvInfo.info1555  Info1555
        No value
    srvsvc.srvsvc_NetSrvInfo.info1556  Info1556
        No value
    srvsvc.srvsvc_NetSrvInfo.info402  Info402
        No value
    srvsvc.srvsvc_NetSrvInfo.info403  Info403
        No value
    srvsvc.srvsvc_NetSrvInfo.info502  Info502
        No value
    srvsvc.srvsvc_NetSrvInfo.info503  Info503
        No value
    srvsvc.srvsvc_NetSrvInfo.info599  Info599
        No value
    srvsvc.srvsvc_NetSrvInfo100.platform_id  Platform Id
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo100.server_name  Server Name
        String
    srvsvc.srvsvc_NetSrvInfo1005.comment  Comment
        String
    srvsvc.srvsvc_NetSrvInfo101.comment  Comment
        String
    srvsvc.srvsvc_NetSrvInfo101.platform_id  Platform Id
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo101.server_name  Server Name
        String
    srvsvc.srvsvc_NetSrvInfo101.server_type  Server Type
        No value
    srvsvc.srvsvc_NetSrvInfo101.version_major  Version Major
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo101.version_minor  Version Minor
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1010.disc  Disc
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1016.hidden  Hidden
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1017.announce  Announce
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1018.anndelta  Anndelta
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo102.anndelta  Anndelta
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo102.announce  Announce
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo102.comment  Comment
        String
    srvsvc.srvsvc_NetSrvInfo102.disc  Disc
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo102.hidden  Hidden
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo102.licenses  Licenses
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo102.platform_id  Platform Id
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo102.server_name  Server Name
        String
    srvsvc.srvsvc_NetSrvInfo102.server_type  Server Type
        No value
    srvsvc.srvsvc_NetSrvInfo102.userpath  Userpath
        String
    srvsvc.srvsvc_NetSrvInfo102.users  Users
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo102.version_major  Version Major
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo102.version_minor  Version Minor
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1107.users  Users
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1501.sessopens  Sessopens
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1502.sessvcs  Sessvcs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1503.opensearch  Opensearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1506.maxworkitems  Maxworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1509.maxrawbuflen  Maxrawbuflen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1510.sessusers  Sessusers
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1511.sesscons  Sesscons
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1512.maxnonpagedmemoryusage  Maxnonpagedmemoryusage
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1513.maxpagedmemoryusage  Maxpagedmemoryusage
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1514.enablesoftcompat  Enablesoftcompat
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1515.enableforcedlogoff  Enableforcedlogoff
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1516.timesource  Timesource
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1518.lmannounce  Lmannounce
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1520.maxcopyreadlen  Maxcopyreadlen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1521.maxcopywritelen  Maxcopywritelen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1522.minkeepsearch  Minkeepsearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1523.maxkeepsearch  Maxkeepsearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1524.minkeepcomplsearch  Minkeepcomplsearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1525.maxkeepcomplsearch  Maxkeepcomplsearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1528.scavtimeout  Scavtimeout
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1529.minrcvqueue  Minrcvqueue
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1530.minfreeworkitems  Minfreeworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1533.maxmpxct  Maxmpxct
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1534.oplockbreakwait  Oplockbreakwait
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1535.oplockbreakresponsewait  Oplockbreakresponsewait
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1536.enableoplocks  Enableoplocks
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1537.enableoplockforceclose  Enableoplockforceclose
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1538.enablefcbopens  Enablefcbopens
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1539.enableraw  Enableraw
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1540.enablesharednetdrives  Enablesharednetdrives
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1541.minfreeconnections  Minfreeconnections
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1542.maxfreeconnections  Maxfreeconnections
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1543.initsesstable  Initsesstable
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1544.initconntable  Initconntable
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1545.initfiletable  Initfiletable
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1546.initsearchtable  Initsearchtable
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1547.alertsched  Alertsched
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1548.errortreshold  Errortreshold
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1549.networkerrortreshold  Networkerrortreshold
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1550.diskspacetreshold  Diskspacetreshold
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1552.maxlinkdelay  Maxlinkdelay
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1553.minlinkthroughput  Minlinkthroughput
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1554.linkinfovalidtime  Linkinfovalidtime
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1555.scavqosinfoupdatetime  Scavqosinfoupdatetime
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo1556.maxworkitemidletime  Maxworkitemidletime
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.accessalert  Accessalert
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.activelocks  Activelocks
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.alerts  Alerts
        String
    srvsvc.srvsvc_NetSrvInfo402.alertsched  Alertsched
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.alist_mtime  Alist Mtime
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.chdevjobs  Chdevjobs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.chdevqs  Chdevqs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.chdevs  Chdevs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.connections  Connections
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.diskalert  Diskalert
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.erroralert  Erroralert
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.glist_mtime  Glist Mtime
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.guestaccount  Guestaccount
        String
    srvsvc.srvsvc_NetSrvInfo402.lanmask  Lanmask
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.logonalert  Logonalert
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.maxaudits  Maxaudits
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.netioalert  Netioalert
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.numadmin  Numadmin
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.numbigbufs  Numbigbufs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.numfiletasks  Numfiletasks
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.openfiles  Openfiles
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.opensearch  Opensearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.security  Security
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.sessopen  Sessopen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.sessreqs  Sessreqs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.sesssvc  Sesssvc
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.shares  Shares
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.sizereqbufs  Sizereqbufs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo402.srvheuristics  Srvheuristics
        String
    srvsvc.srvsvc_NetSrvInfo402.ulist_mtime  Ulist Mtime
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.accessalert  Accessalert
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.activelocks  Activelocks
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.alerts  Alerts
        String
    srvsvc.srvsvc_NetSrvInfo403.alertsched  Alertsched
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.alist_mtime  Alist Mtime
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.auditedevents  Auditedevents
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.auditprofile  Auditprofile
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.autopath  Autopath
        String
    srvsvc.srvsvc_NetSrvInfo403.chdevjobs  Chdevjobs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.chdevqs  Chdevqs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.chdevs  Chdevs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.connections  Connections
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.diskalert  Diskalert
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.eroralert  Eroralert
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.glist_mtime  Glist Mtime
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.guestaccount  Guestaccount
        String
    srvsvc.srvsvc_NetSrvInfo403.lanmask  Lanmask
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.logonalert  Logonalert
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.maxaudits  Maxaudits
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.netioalert  Netioalert
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.numadmin  Numadmin
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.numbigbufs  Numbigbufs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.numfiletasks  Numfiletasks
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.openfiles  Openfiles
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.opensearch  Opensearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.security  Security
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.sessopen  Sessopen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.sessreqs  Sessreqs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.sesssvc  Sesssvc
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.shares  Shares
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.sizereqbufs  Sizereqbufs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo403.srvheuristics  Srvheuristics
        String
    srvsvc.srvsvc_NetSrvInfo403.ulist_mtime  Ulist Mtime
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.acceptdownlevelapis  Acceptdownlevelapis
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.enableforcedlogoff  Enableforcedlogoff
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.enablesoftcompat  Enablesoftcompat
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.initworkitems  Initworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.irpstacksize  Irpstacksize
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.lmannounce  Lmannounce
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.maxnonpagedmemoryusage  Maxnonpagedmemoryusage
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.maxpagedmemoryusage  Maxpagedmemoryusage
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.maxrawbuflen  Maxrawbuflen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.maxworkitems  Maxworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.opensearch  Opensearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.rawworkitems  Rawworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.sessconns  Sessconns
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.sessopen  Sessopen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.sesssvc  Sesssvc
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.sessusers  Sessusers
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.sizereqbufs  Sizereqbufs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo502.timesource  Timesource
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.acceptdownlevelapis  Acceptdownlevelapis
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.domain  Domain
        String
    srvsvc.srvsvc_NetSrvInfo503.enablefcbopens  Enablefcbopens
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.enableforcedlogoff  Enableforcedlogoff
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.enableoplockforceclose  Enableoplockforceclose
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.enableoplocks  Enableoplocks
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.enableraw  Enableraw
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.enablesharednetdrives  Enablesharednetdrives
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.enablesoftcompat  Enablesoftcompat
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.initworkitems  Initworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.irpstacksize  Irpstacksize
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.lmannounce  Lmannounce
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.maxcopyreadlen  Maxcopyreadlen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.maxcopywritelen  Maxcopywritelen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.maxfreeconnections  Maxfreeconnections
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.maxkeepcomplsearch  Maxkeepcomplsearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.maxkeepsearch  Maxkeepsearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.maxmpxct  Maxmpxct
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.maxnonpagedmemoryusage  Maxnonpagedmemoryusage
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.maxpagedmemoryusage  Maxpagedmemoryusage
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.maxrawbuflen  Maxrawbuflen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.maxworkitems  Maxworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.minfreeconnections  Minfreeconnections
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.minfreeworkitems  Minfreeworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.minkeepcomplsearch  Minkeepcomplsearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.minkeepsearch  Minkeepsearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.minrcvqueue  Minrcvqueue
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.numlockthreads  Numlockthreads
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.opensearch  Opensearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.oplockbreakresponsewait  Oplockbreakresponsewait
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.oplockbreakwait  Oplockbreakwait
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.rawworkitems  Rawworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.scavtimeout  Scavtimeout
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.sessconns  Sessconns
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.sessopen  Sessopen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.sesssvc  Sesssvc
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.sessusers  Sessusers
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.sizereqbufs  Sizereqbufs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.threadcountadd  Threadcountadd
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.threadpriority  Threadpriority
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.timesource  Timesource
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo503.xactmemsize  Xactmemsize
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.acceptdownlevelapis  Acceptdownlevelapis
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.alertsched  Alertsched
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.diskspacetreshold  Diskspacetreshold
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.domain  Domain
        String
    srvsvc.srvsvc_NetSrvInfo599.enablefcbopens  Enablefcbopens
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.enableforcedlogoff  Enableforcedlogoff
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.enableoplockforceclose  Enableoplockforceclose
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.enableoplocks  Enableoplocks
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.enableraw  Enableraw
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.enablesharednetdrives  Enablesharednetdrives
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.enablesoftcompat  Enablesoftcompat
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.errortreshold  Errortreshold
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.initconntable  Initconntable
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.initfiletable  Initfiletable
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.initsearchtable  Initsearchtable
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.initsesstable  Initsesstable
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.initworkitems  Initworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.irpstacksize  Irpstacksize
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.linkinfovalidtime  Linkinfovalidtime
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.lmannounce  Lmannounce
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.maxcopyreadlen  Maxcopyreadlen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.maxcopywritelen  Maxcopywritelen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.maxfreeconnections  Maxfreeconnections
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.maxkeepcomplsearch  Maxkeepcomplsearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.maxlinkdelay  Maxlinkdelay
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.maxmpxct  Maxmpxct
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.maxnonpagedmemoryusage  Maxnonpagedmemoryusage
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.maxpagedmemoryusage  Maxpagedmemoryusage
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.maxrawbuflen  Maxrawbuflen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.maxworkitemidletime  Maxworkitemidletime
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.maxworkitems  Maxworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.minfreeconnections  Minfreeconnections
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.minfreeworkitems  Minfreeworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.minkeepcomplsearch  Minkeepcomplsearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.minkeepsearch  Minkeepsearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.minlinkthroughput  Minlinkthroughput
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.minrcvqueue  Minrcvqueue
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.networkerrortreshold  Networkerrortreshold
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.numlockthreads  Numlockthreads
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.opensearch  Opensearch
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.oplockbreakresponsewait  Oplockbreakresponsewait
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.oplockbreakwait  Oplockbreakwait
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.rawworkitems  Rawworkitems
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.reserved  Reserved
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.scavqosinfoupdatetime  Scavqosinfoupdatetime
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.scavtimeout  Scavtimeout
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.sessconns  Sessconns
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.sessopen  Sessopen
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.sesssvc  Sesssvc
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.sessusers  Sessusers
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.sizereqbufs  Sizereqbufs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.threadcountadd  Threadcountadd
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.threadpriority  Threadpriority
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.timesource  Timesource
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvInfo599.xactmemsize  Xactmemsize
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvSetInfo.info  Info
        No value
    srvsvc.srvsvc_NetSrvSetInfo.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvSetInfo.parm_error  Parm Error
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetSrvSetInfo.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetTransportAdd.info  Info
        No value
    srvsvc.srvsvc_NetTransportAdd.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportAdd.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetTransportCtr.ctr0  Ctr0
        No value
    srvsvc.srvsvc_NetTransportCtr.ctr1  Ctr1
        No value
    srvsvc.srvsvc_NetTransportCtr.ctr2  Ctr2
        No value
    srvsvc.srvsvc_NetTransportCtr.ctr3  Ctr3
        No value
    srvsvc.srvsvc_NetTransportCtr0.array  Array
        No value
    srvsvc.srvsvc_NetTransportCtr0.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportCtr1.array  Array
        No value
    srvsvc.srvsvc_NetTransportCtr1.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportCtr2.array  Array
        No value
    srvsvc.srvsvc_NetTransportCtr2.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportCtr3.array  Array
        No value
    srvsvc.srvsvc_NetTransportCtr3.count  Count
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportDel.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetTransportDel.transport  Transport
        No value
    srvsvc.srvsvc_NetTransportDel.unknown  Unknown
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportEnum.level  Level
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportEnum.max_buffer  Max Buffer
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportEnum.resume_handle  Resume Handle
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportEnum.server_unc  Server Unc
        String
    srvsvc.srvsvc_NetTransportEnum.totalentries  Totalentries
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportEnum.transports  Transports
        No value
    srvsvc.srvsvc_NetTransportInfo.info0  Info0
        No value
    srvsvc.srvsvc_NetTransportInfo.info1  Info1
        No value
    srvsvc.srvsvc_NetTransportInfo.info2  Info2
        No value
    srvsvc.srvsvc_NetTransportInfo.info3  Info3
        No value
    srvsvc.srvsvc_NetTransportInfo0.addr  Addr
        Unsigned 8-bit integer
    srvsvc.srvsvc_NetTransportInfo0.addr_len  Addr Len
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportInfo0.name  Name
        String
    srvsvc.srvsvc_NetTransportInfo0.net_addr  Net Addr
        String
    srvsvc.srvsvc_NetTransportInfo0.vcs  Vcs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportInfo1.addr  Addr
        Unsigned 8-bit integer
    srvsvc.srvsvc_NetTransportInfo1.addr_len  Addr Len
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportInfo1.domain  Domain
        String
    srvsvc.srvsvc_NetTransportInfo1.name  Name
        String
    srvsvc.srvsvc_NetTransportInfo1.net_addr  Net Addr
        String
    srvsvc.srvsvc_NetTransportInfo1.vcs  Vcs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportInfo2.addr  Addr
        Unsigned 8-bit integer
    srvsvc.srvsvc_NetTransportInfo2.addr_len  Addr Len
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportInfo2.domain  Domain
        String
    srvsvc.srvsvc_NetTransportInfo2.name  Name
        String
    srvsvc.srvsvc_NetTransportInfo2.net_addr  Net Addr
        String
    srvsvc.srvsvc_NetTransportInfo2.transport_flags  Transport Flags
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportInfo2.vcs  Vcs
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportInfo3.addr  Addr
        Unsigned 8-bit integer
    srvsvc.srvsvc_NetTransportInfo3.addr_len  Addr Len
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportInfo3.domain  Domain
        String
    srvsvc.srvsvc_NetTransportInfo3.name  Name
        String
    srvsvc.srvsvc_NetTransportInfo3.net_addr  Net Addr
        String
    srvsvc.srvsvc_NetTransportInfo3.password  Password
        Unsigned 8-bit integer
    srvsvc.srvsvc_NetTransportInfo3.password_len  Password Len
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportInfo3.transport_flags  Transport Flags
        Unsigned 32-bit integer
    srvsvc.srvsvc_NetTransportInfo3.vcs  Vcs
        Unsigned 32-bit integer
    srvsvc.srvsvc_SessionUserFlags.SESS_GUEST  Sess Guest
        Boolean
    srvsvc.srvsvc_SessionUserFlags.SESS_NOENCRYPTION  Sess Noencryption
        Boolean
    srvsvc.srvsvc_Statistics.avresponse  Avresponse
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.bigbufneed  Bigbufneed
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.bytesrcvd_high  Bytesrcvd High
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.bytesrcvd_low  Bytesrcvd Low
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.bytessent_high  Bytessent High
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.bytessent_low  Bytessent Low
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.devopens  Devopens
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.fopens  Fopens
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.jobsqueued  Jobsqueued
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.permerrors  Permerrors
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.pwerrors  Pwerrors
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.reqbufneed  Reqbufneed
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.serrorout  Serrorout
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.sopens  Sopens
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.start  Start
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.stimeouts  Stimeouts
        Unsigned 32-bit integer
    srvsvc.srvsvc_Statistics.syserrors  Syserrors
        Unsigned 32-bit integer
    srvsvc.srvsvc_TransportFlags.SVTI2_REMAP_PIPE_NAMES  Svti2 Remap Pipe Names
        Boolean
    srvsvc.werror  Windows Error
        Unsigned 32-bit integer

Server/Application State Protocol (sasp)

    sasp.dereg-rep.retcode  Dereg Rep-Return Code
        Unsigned 8-bit integer
        SASP Dereg Rep Return Code
    sasp.dereg-rep.size  Dereg Rep-Size
        Unsigned 16-bit integer
        SASP Dereg Rep Size
    sasp.dereg-req.lbflag  Dereg Req-LB Flag
        Boolean
        SASP Dereg Req LB Flag
    sasp.dereg-req.reason  Dereg Req-Reason
        Unsigned 8-bit integer
        SASP Dereg Req Reason
    sasp.dereg-req.size  Dereg Req-Size
        Unsigned 32-bit integer
        SASP Dereg Req Size
    sasp.flags.confident  Confident
        Boolean
        SASP Confident Flag
    sasp.flags.contactsuccess  Contact Success
        Boolean
        SASP Contact Success Flag
    sasp.flags.lbstate  Flags
        Unsigned 8-bit integer
    sasp.flags.nochange  NOCHANGE
        Boolean
        SASP Nochange Flag
    sasp.flags.push  PUSH
        Boolean
        SASP Push Flag
    sasp.flags.quiesce  Mem State-Quiesce Flag
        Boolean
        SASP Quiesce Flag
    sasp.flags.reason  Reason Flags
        Unsigned 8-bit integer
    sasp.flags.registration  Registration
        Boolean
        SASP Registration Flag
    sasp.flags.trust  TRUST
        Boolean
        SASP Trust Flag
    sasp.flags.wtstate  Flags
        Unsigned 8-bit integer
    sasp.getwt-rep-grpwtentrydata.count  Get Wt Rep-Grp WtEntry Data Cnt
        Unsigned 16-bit integer
        SASP Get Wt Rep Grp Wt Entry Data Cnt
    sasp.getwt-rep.interval  Get Wt Rep-Interval
        Unsigned 8-bit integer
        SASP Get Wt Rep Interval
    sasp.getwt-rep.retcode  Get Wt Rep-Return Code
        Unsigned 8-bit integer
        SASP Get Wt Rep Return Code
    sasp.getwt-req-grpdata.count  Get Wt Req-Grp Data Count
        Unsigned 16-bit integer
        SASP Get Wt Grp Data Count
    sasp.getwt.rep.size  Get Wt Rep-Size
        Unsigned 16-bit integer
        SASP Get Wt Rep Size
    sasp.getwt.req.size  Get Wt Req-Size
        Unsigned 16-bit integer
        SASP Get Wt Req Size
    sasp.group-memstate.count  Set Memstate Req-Gmsd Count
        Unsigned 16-bit integer
        Group Of Member State Data Count
    sasp.grp-mem-data.count  Grp Mem Data-Count
        Unsigned 16-bit integer
        SASP Grp Mem Data Count
    sasp.grp-memdatacomp.size  Grp Mem Data Comp-Size
        Unsigned 16-bit integer
        SASP Grp Mem Data Comp Size
    sasp.grp-wtentrydata.count  Grp Wt Entry Data Comp Cnt
        Unsigned 16-bit integer
        SASP Grp Wt Entry Data Comp Cnt
    sasp.grp-wtentrydata.size  Grp Wt Entry Data Comp Size
        Unsigned 16-bit integer
        SASP Grp Wt Entry Data Comp Size
    sasp.grp.memdatacomp.count  Grp Mem Data Comp-Count
        Unsigned 16-bit integer
        SASP Grp Mem Data Comp Cnt
    sasp.grp.memstate.count  Grp Mem State-Count
        Unsigned 16-bit integer
        SASP Grp Mem State Data Comp Count
    sasp.grp.memstate.size  Grp Mem State-Size
        Unsigned 16-bit integer
        SASP Grp Mem State Data Comp Size
    sasp.grpdatacomp.grpname  Grp Data Comp-Grp Name 
        String
        SASP Grp Data Comp Grp Name
    sasp.grpdatacomp.grpname.len  Grp Data Comp-Grp Name Len
        Unsigned 8-bit integer
        SASP Grp Data Comp Grp Name Len
    sasp.grpdatacomp.label.uid  Grp Data Comp-Label UID
        String
        SASP Grp Data Comp Label Uid
    sasp.grpdatacomp.label.uid.len  Grp Data Comp-Label UID Len
        Unsigned 8-bit integer
        SASP Grp Data Comp Label Uid Len
    sasp.grpdatacomp.size  Grp Data Comp-Size
        Unsigned 16-bit integer
        SASP Grp Data Comp size
    sasp.header.Len  Length
        Unsigned 16-bit integer
        SASP Header Length
    sasp.memdatacomp.ip  Mem Data Comp-Ip
        IPv6 address
        SASP Mem Data Comp Ip
    sasp.memdatacomp.label  Mem Data Comp-Label
        String
        SASP Mem Data Comp Label
    sasp.memdatacomp.label.len  Mem Data Comp-Label Len
        Unsigned 8-bit integer
        SASP Mem Data Comp Label Length
    sasp.memdatacomp.port  Mem Data Comp-Port
        Unsigned 16-bit integer
        SASP Mem Data Comp Port
    sasp.memdatacomp.protocol  Mem Data Comp-Protocol
        Unsigned 8-bit integer
        SASP Mem Data Comp Protocol
    sasp.memdatacomp.size  Mem Data Comp-Size
        Unsigned 16-bit integer
        SASP Mem Data Comp Size
    sasp.memstate.size  Mem State-Size
        Unsigned 16-bit integer
        SASP Mem State Data Comp Size
    sasp.memstate.state  Mem State-State
        Unsigned 8-bit integer
        SASP Mem State Data Comp State
    sasp.msg.id  Message Id
        Unsigned 32-bit integer
        SASP Msg Id
    sasp.msg.len  Message Len
        Unsigned 32-bit integer
        SASP Msg Len
    sasp.msg.type  Type
        Unsigned 16-bit integer
        SASP Header
    sasp.reg-rep.retcode  Reg Reply-Return Code
        Unsigned 8-bit integer
        SASP Reg Rep Return Code
    sasp.reg-rep.size  Reg Reply-Size
        Unsigned 16-bit integer
        SASP Reg Reply size
    sasp.reg-req.lbflag  Reg Req-LB Flag
        Boolean
        SASP Reg Req LB Flag
    sasp.reg-req.size  Reg Req-Size
        Unsigned 32-bit integer
        SASP Reg Req Size
    sasp.sendwt-grp-wtentrydata.count  Sendwt-Grp Wt EntryData Count
        Unsigned 16-bit integer
        SASP Sendwt Grp Wt Entry Data Count
    sasp.sendwt.size  Sendwt-Size
        Unsigned 16-bit integer
        SASP Sendwt-Size
    sasp.setlbstate-rep.retcode  Set Lbstate Rep-Return Code
        Unsigned 8-bit integer
        SASP Set Lbstate Rep Return Code
    sasp.setlbstate-rep.size  Set Lbstate Rep-Size
        Unsigned 16-bit integer
        SASP Set Lbstate Rep Size
    sasp.setlbstate-req.lbhealth  Set LB State Req-LB Health
        Unsigned 8-bit integer
        SASP Set LB State Req LB Health
    sasp.setlbstate-req.lbuid  Set LB State Req-LB UID
        String
        SASP Set LB State Req LB UID
    sasp.setlbstate-req.lbuid.len  Set LB State Req-LB UID Len
        Unsigned 8-bit integer
        SASP Set LB State Req  LB Uid Len
    sasp.setlbstate-req.size  Set LB State Req-Size
        Unsigned 16-bit integer
        SASP Set LB State Req  Size
    sasp.setmemstate-rep  Set Memstate Reply
        Unsigned 32-bit integer
        SASP Set Memstate Reply
    sasp.setmemstate-rep.retcode  Set Memstate Rep-Return Code
        Unsigned 8-bit integer
        SASP Set Memstate Rep Return Code
    sasp.setmemstate-rep.size  Set Memstate Rep-Size
        Unsigned 16-bit integer
        SASP Set Memstate Rep Size
    sasp.setmemstate-req.lbflag  Set Memstate Req-LB Flag
        Boolean
        SASP Set Memstate Req LB Flag
    sasp.setmemstate-req.size  Set Memstate Req-Size
        Unsigned 16-bit integer
        SASP Set Memstate Req Size
    sasp.version  Version
        Unsigned 8-bit integer
        SASP Version
    sasp.wtentry.size  Wt Entry Data Comp-Size
        Unsigned 16-bit integer
        SASP Wt Entry Data Comp Size
    sasp.wtentry.state  Wt Entry Data Comp-state
        Unsigned 8-bit integer
        SASP Wt Entry Data Comp State
    sasp.wtentrydatacomp.weight  Wt Entry Data Comp-weight
        Unsigned 16-bit integer
        SASP Wt Entry Data Comp weight

Service Advertisement Protocol (ipxsap)

    ipxsap.request  Request
        Boolean
        TRUE if SAP request
    ipxsap.response  Response
        Boolean
        TRUE if SAP response

Service Location Protocol (srvloc)

    srvloc.attrreq.attrlist  Attribute List
        String
    srvloc.attrreq.attrlistlen  Attribute List Length
        Unsigned 16-bit integer
    srvloc.attrreq.prlist  Previous Response List
        String
    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
    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.srvrply.svcname  Service Name Value
        String
    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
    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

Session Announcement Protocol (sap)

    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
    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

Session Description Protocol (sdp)

    ipbcp.command  IPBCP Command Type
        String
    ipbcp.version  IPBCP Protocol Version
        String
    sdp.bandwidth  Bandwidth Information (b)
        String
    sdp.bandwidth.modifier  Bandwidth Modifier
        String
    sdp.bandwidth.value  Bandwidth Value
        String
        Bandwidth Value (in kbits/s)
    sdp.connection_info  Connection Information (c)
        String
    sdp.connection_info.address  Connection Address
        String
    sdp.connection_info.address_type  Connection Address Type
        String
    sdp.connection_info.network_type  Connection Network Type
        String
    sdp.connection_info.num_addr  Connection Number of Addresses
        String
    sdp.connection_info.ttl  Connection TTL
        String
    sdp.email  E-mail Address (e)
        String
        E-mail Address
    sdp.encryption_key  Encryption Key (k)
        String
    sdp.encryption_key.data  Key Data
        String
    sdp.encryption_key.type  Key Type
        String
    sdp.fmtp.h263level  Level
        Unsigned 32-bit integer
    sdp.fmtp.h263profile  Profile
        Unsigned 32-bit integer
    sdp.fmtp.h264_packetization_mode  Packetization mode
        Unsigned 32-bit integer
    sdp.fmtp.parameter  Media format specific parameters
        String
        Format specific parameter(fmtp)
    sdp.fmtp.profile_level_id  Level Code
        Unsigned 32-bit integer
    sdp.h223LogicalChannelParameters  h223LogicalChannelParameters
        No value
    sdp.h264.sprop_parameter_sets  Sprop_parameter_sets
        Byte array
    sdp.invalid  Invalid line
        String
    sdp.key_mgmt  Key Management
        String
    sdp.key_mgmt.data  Key Management Data
        Byte array
    sdp.key_mgmt.kmpid  Key Management Protocol (kmpid)
        String
    sdp.media  Media Description, name and address (m)
        String
    sdp.media.format  Media Format
        String
    sdp.media.media  Media Type
        String
    sdp.media.port  Media Port
        Unsigned 16-bit integer
    sdp.media.portcount  Media Port Count
        String
    sdp.media.proto  Media Protocol
        String
    sdp.media_attr  Media Attribute (a)
        String
    sdp.media_attribute.field  Media Attribute Fieldname
        String
    sdp.media_attribute.value  Media Attribute Value
        String
    sdp.media_title  Media Title (i)
        String
        Media Title
    sdp.mime.type  MIME Type
        String
        SDP MIME Type
    sdp.owner  Owner/Creator, Session Id (o)
        String
    sdp.owner.address  Owner Address
        String
    sdp.owner.address_type  Owner Address Type
        String
    sdp.owner.network_type  Owner Network Type
        String
    sdp.owner.sessionid  Session ID
        String
    sdp.owner.username  Owner Username
        String
    sdp.owner.version  Session Version
        String
    sdp.phone  Phone Number (p)
        String
    sdp.repeat_time  Repeat Time (r)
        String
    sdp.repeat_time.duration  Repeat Duration
        String
    sdp.repeat_time.interval  Repeat Interval
        String
    sdp.repeat_time.offset  Repeat Offset
        String
    sdp.sample_rate  Sample Rate
        String
    sdp.session_attr  Session Attribute (a)
        String
    sdp.session_attr.field  Session Attribute Fieldname
        String
    sdp.session_attr.value  Session Attribute Value
        String
    sdp.session_info  Session Information (i)
        String
    sdp.session_name  Session Name (s)
        String
    sdp.time  Time Description, active time (t)
        String
    sdp.time.start  Session Start Time
        String
    sdp.time.stop  Session Stop Time
        String
    sdp.timezone  Time Zone Adjustments (z)
        String
    sdp.timezone.offset  Timezone Offset
        String
    sdp.timezone.time  Timezone Time
        String
    sdp.unknown  Unknown
        String
    sdp.uri  URI of Description (u)
        String
    sdp.version  Session Description Protocol Version (v)
        String

Session Initiation Protocol (sip)

    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.Answer-Mode  Answer-Mode
        String
        RFC 5373: Answer-Mode 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.CSeq.method  Method
        String
        CSeq header method
    sip.CSeq.seq  Sequence Number
        Unsigned 32-bit integer
        CSeq header sequence number
    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
        Unsigned 32-bit integer
        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
        RFC 3903: 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
        Unsigned 32-bit integer
        RFC 3261: Expires Header
    sip.From  From
        String
        RFC 3261: From Header
    sip.History-Info  History-Info
        String
        RFC 4244: Request History Information
    sip.Identity  Identity
        String
        RFC 4474: Request Identity
    sip.Identity-info  Identity-info
        String
        RFC 4474: Request Identity-info
    sip.If_Match  If_Match
        String
        RFC 3903: 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-Breadth  Max-Breadth
        Unsigned 32-bit integer
        RFC 5393: Max-Breadth Header
    sip.Max-Forwards  Max-Forwards
        Unsigned 32-bit integer
        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-Answer-State  P-Answer-State
        String
        RFC 4964: P-Answer-State Header
    sip.P-Asserted-Identity  P-Asserted-Identity
        String
        RFC 3325: P-Asserted-Identity Header
    sip.P-Associated-URI  P-Associated-URI
        String
        RFC 3455: P-Associated-URI Header
    sip.P-Called-Party-ID  P-Called-Party-ID
        String
        RFC 3455: P-Called-Party-ID Header
    sip.P-Charging-Function-Addresses  P-Charging-Function-Addresses
        String
    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-Early-Media  P-Early-Media
        String
        P-Early-Media Header
    sip.P-Media-Authorization  P-Media-Authorization
        String
        RFC 3313: P-Media-Authorization Header
    sip.P-Preferred-Identity  P-Preferred-Identity
        String
        RFC 3325: P-Preferred-Identity Header
    sip.P-Profile-Key  P-Profile-Key
        String
        P-Profile-Key Header
    sip.P-Refused-URI-List  P-Refused-URI-List
        String
        P-Refused-URI-List Header
    sip.P-Served-User  P-Served-User
        String
        P-Served-User
    sip.P-User-Database  P-User-Database
        String
        P-User-Database Header
    sip.P-Visited-Network-ID  P-Visited-Network-ID
        String
        RFC 3455: P-Visited-Network-ID Header
    sip.Path  Path
        String
        RFC 3327: Path Header
    sip.Permission-Missing  Permission-Missing
        String
        RFC 5360: Permission Missing Header
    sip.Priority  Priority
        String
        RFC 3261: Priority Header
    sip.Priv-Answer-mode  Priv-Answer-mode
        String
    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.RAck.CSeq.method  CSeq Method
        String
        RAck CSeq header method (from prov response)
    sip.RAck.CSeq.seq  CSeq Sequence Number
        Unsigned 32-bit integer
        RAck CSeq header sequence number (from prov response)
    sip.RAck.RSeq.seq  RSeq Sequence Number
        Unsigned 32-bit integer
        RAck RSeq header sequence number (from prov response)
    sip.RSeq  RSeq
        Unsigned 32-bit integer
        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-Sub  Refer-Sub
        String
        RFC 4488: Refer-Sub Header
    sip.Refer-To  Refer-To
        String
        RFC 3515: 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
        RFC 3608: Service-Route Header
    sip.Session-Expires  Session-Expires
        String
        RFC 4028: 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.Target-Dialog  Target-Dialog
        String
        RFC 4538: Target-Dialog Header
    sip.Timestamp  Timestamp
        String
        RFC 3261: Timestamp Header
    sip.To  To
        String
        RFC 3261: To Header
    sip.Trigger-Consent  Trigger-Consent
        String
        RFC 5380: Trigger Consent
    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.Via.branch  Branch
        String
        SIP Via Branch
    sip.Via.comp  Comp
        String
        SIP Via comp
    sip.Via.maddr  Maddr
        String
        SIP Via Maddr
    sip.Via.received  Received
        String
        SIP Via Received
    sip.Via.rport  RPort
        String
        SIP Via RPort
    sip.Via.sent-by.address  Sent-by Address
        String
        Via header Sent-by Address
    sip.Via.sent-by.port  Sent-by port
        Unsigned 16-bit integer
        Via header Sent-by Port
    sip.Via.sigcomp-id  Sigcomp identifier
        String
        SIP Via sigcomp identifier
    sip.Via.transport  Transport
        String
        Via header Transport
    sip.Via.ttl  TTL
        String
        SIP Via TTL
    sip.WWW-Authenticate  WWW-Authenticate
        String
        RFC 3261: WWW-Authenticate Header
    sip.Warning  Warning
        String
        RFC 3261: Warning Header
    sip.auth  Authentication
        String
        SIP Authentication
    sip.auth.algorithm  Algorithm
        String
        SIP Authentication Algorithm
    sip.auth.auts  Authentication Token
        String
        SIP Authentication Token
    sip.auth.ck  Cyphering Key
        String
        SIP Authentication Cyphering Key
    sip.auth.cnonce  CNonce Value
        String
        SIP Authentication Client Nonce
    sip.auth.digest.response  Digest Authentication Response
        String
        SIP Digest Authentication Response Value
    sip.auth.domain  Authentication Domain
        String
        SIP Authentication Domain
    sip.auth.ik  Integrity Key
        String
        SIP Authentication Integrity Key
    sip.auth.nc  Nonce Count
        String
        SIP Authentication Nonce count
    sip.auth.nextnonce  Next Nonce
        String
        SIP Authentication Next Nonce
    sip.auth.nonce  Nonce Value
        String
        SIP Authentication Nonce
    sip.auth.opaque  Opaque Value
        String
        SIP Authentication Opaque value
    sip.auth.qop  QOP
        String
        SIP Authentication QOP
    sip.auth.realm  Realm
        String
        SIP Authentication Realm
    sip.auth.rspauth  Response auth
        String
        SIP Authentication Response auth
    sip.auth.scheme  Authentication Scheme
        String
        SIP Authentication Scheme
    sip.auth.stale  Stale Flag
        String
        SIP Authentication Stale Flag
    sip.auth.uri  Authentication URI
        String
        SIP Authentication URI
    sip.auth.username  Username
        String
        SIP Authentication Username
    sip.contact.host  Contact-URI Host Part
        String
        RFC 3261: SIP C-URI Host
    sip.contact.parameter  Contact parameter
        String
        RFC 3261: one contact parameter
    sip.contact.port  Contact-URI Host Port
        String
        RFC 3261: SIP C-URI Port
    sip.contact.uri  Contact-URI
        String
        RFC 3261: SIP C-URI
    sip.contact.user  Contactt-URI User Part
        String
        RFC 3261: SIP C-URI User
    sip.display.info  SIP Display info
        String
        RFC 3261: Display info
    sip.from.addr  SIP from address
        String
        RFC 3261: From Address
    sip.from.host  SIP from address Host Part
        String
        RFC 3261: From Address Host
    sip.from.port  SIP from address Host Port
        String
        RFC 3261: From Address Port
    sip.from.user  SIP from address User Part
        String
        RFC 3261: From Address User
    sip.msg_body  Message Body
        No value
        Message Body in SIP message
    sip.msg_hdr  Message Header
        String
        Message Header in SIP message
    sip.pai.addr  SIP PAI Address
        String
        RFC 3325: P-Asserted-Identity Address
    sip.pai.host  SIP PAI Host Part
        String
        RFC 3325: P-Asserted-Identity Host
    sip.pai.port  SIP PAI Host Port
        String
        RFC 3325: P-Asserted-Identity Port
    sip.pai.user  SIP PAI User Part
        String
        RFC 3325: P-Asserted-Identity User
    sip.pmiss.addr  SIP PMISS Address
        String
        RFC 3325: Permission Missing Address
    sip.pmiss.host  SIP PMISS Host Part
        String
        RFC 3325: Permission Missing Host
    sip.pmiss.port  SIP PMISS Host Port
        String
        RFC 3325: Permission Missing Port
    sip.pmiss.user  SIP PMISS User Part
        String
        RFC 3325: Permission Missing User
    sip.ppi.addr  SIP PPI Address
        String
        RFC 3325: P-Preferred-Identity Address
    sip.ppi.host  SIP PPI Host Part
        String
        RFC 3325: P-Preferred-Identity Host
    sip.ppi.port  SIP PPI Host Port
        String
        RFC 3325: P-Preferred-Identity Port
    sip.ppi.user  SIP PPI User Part
        String
        RFC 3325: P-Preferred-Identity User
    sip.r-uri  Request-URI
        String
        RFC 3261: SIP R-URI
    sip.r-uri.host  Request-URI Host Part
        String
        RFC 3261: SIP R-URI Host
    sip.r-uri.port  Request-URI Host Port
        String
        RFC 3261: SIP R-URI Port
    sip.r-uri.user  Request-URI User Part
        String
        RFC 3261: SIP R-URI User
    sip.release-time  Release Time (ms)
        Unsigned 32-bit integer
        release time since original BYE (in milliseconds)
    sip.resend  Resent Packet
        Boolean
    sip.resend-original  Suspected resend of frame
        Frame number
        Original transmission of frame
    sip.response-request  Request Frame
        Frame number
    sip.response-time  Response Time (ms)
        Unsigned 32-bit integer
        Response time since original request (in milliseconds)
    sip.tag  SIP tag
        String
        RFC 3261: tag
    sip.tc.addr  SIP TC Address
        String
        RFC 3325: Trigger Consent Address
    sip.tc.host  SIP TC Host Part
        String
        RFC 3325: Trigger Consent Host
    sip.tc.port  SIP TC Host Port
        String
        RFC 3325: Trigger Consent Port
    sip.tc.target-uri  SIP TC Target URI
        String
        RFC 3325: Trigger Consent Target URI
    sip.tc.user  SIP TC User Part
        String
        RFC 3325: Trigger Consent User
    sip.to.addr  SIP to address
        String
        RFC 3261: To Address
    sip.to.host  SIP to address Host Part
        String
        RFC 3261: To Address Host
    sip.to.port  SIP to address Host Port
        String
        RFC 3261: To Address Port
    sip.to.user  SIP to address User Part
        String
        RFC 3261: To Address User

Session Initiation Protocol (SIP as raw text) (raw_sip)

    raw_sip.line  Raw SIP Line
        String

Session Traversal Utilities for NAT (stun)

    stun.att.cache-timeout  Cache timeout
        Unsigned 32-bit integer
    stun.att.change-ip  Change IP
        Boolean
    stun.att.change-port  Change Port
        Boolean
    stun.att.channelnum  Channel-Number
        Unsigned 16-bit integer
    stun.att.crc32  CRC-32
        Unsigned 32-bit integer
    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 Phrase
        String
    stun.att.even-port.reserve-next  Reserve next
        Unsigned 8-bit integer
    stun.att.family  Protocol Family
        Unsigned 8-bit integer
    stun.att.hmac  HMAC-SHA1
        Byte array
    stun.att.icmp.code  ICMP code
        Unsigned 8-bit integer
    stun.att.icmp.type  ICMP type
        Unsigned 8-bit integer
    stun.att.ipv4  IP
        IPv4 address
    stun.att.ipv4-xord  IP (XOR-d)
        Byte array
    stun.att.ipv6  IP
        IPv6 address
    stun.att.ipv6-xord  IP (XOR-d)
        Byte array
    stun.att.length  Attribute Length
        Unsigned 16-bit integer
    stun.att.lifetime  Lifetime
        Unsigned 32-bit integer
    stun.att.nonce  Nonce
        String
    stun.att.padding  Padding
        Unsigned 16-bit integer
    stun.att.port  Port
        Unsigned 16-bit integer
    stun.att.port-xord  Port (XOR-d)
        Byte array
    stun.att.priority  Priority
        Unsigned 32-bit integer
    stun.att.realm  Realm
        String
    stun.att.reserved  Reserved
        Unsigned 16-bit integer
    stun.att.software  Software
        String
    stun.att.tie-breaker  Tie breaker
        Byte array
    stun.att.token  Token
        Byte array
    stun.att.transp  Transport
        Unsigned 8-bit integer
    stun.att.type  Attribute Type
        Unsigned 16-bit integer
    stun.att.type.assignment  Attribute Type Assignment
        Unsigned 16-bit integer
    stun.att.type.comprehension  Attribute Type Comprehension
        Unsigned 16-bit integer
    stun.att.unknown  Unknown Attribute
        Unsigned 16-bit integer
    stun.att.username  Username
        String
    stun.attribute  Attribute Type
        Unsigned 16-bit integer
    stun.attributes  Attributes
        No value
    stun.channel  Channel Number
        Unsigned 16-bit integer
    stun.cookie  Message Cookie
        Byte array
    stun.id  Message Transaction ID
        Byte array
    stun.length  Message Length
        Unsigned 16-bit integer
    stun.port.bandwidth  Bandwidth
        Unsigned 32-bit integer
    stun.reqduplicate  Duplicated original message in
        Frame number
        This is a duplicate of STUN message in this frame
    stun.response-in  Response In
        Frame number
        The response to this STUN query is in this frame
    stun.response-to  Request In
        Frame number
        This is a response to the STUN Request in this frame
    stun.time  Time
        Time duration
        The time between the Request and the Response
    stun.type  Message Type
        Unsigned 16-bit integer
    stun.type.class  Message Class
        Unsigned 16-bit integer
    stun.type.method  Message Method
        Unsigned 16-bit integer
    stun.type.method-assignment  Message Method Assignment
        Unsigned 16-bit integer
    stun.value  Value
        Byte array

Settings for Microsoft Distributed File System (netdfs)

    netdfs.dfs_Add.comment  Comment
        String
    netdfs.dfs_Add.flags  Flags
        Unsigned 32-bit integer
    netdfs.dfs_Add.path  Path
        String
    netdfs.dfs_Add.server  Server
        String
    netdfs.dfs_Add.share  Share
        String
    netdfs.dfs_AddFtRoot.comment  Comment
        String
    netdfs.dfs_AddFtRoot.dfs_config_dn  Dfs Config Dn
        String
    netdfs.dfs_AddFtRoot.dfsname  Dfsname
        String
    netdfs.dfs_AddFtRoot.dns_servername  Dns Servername
        String
    netdfs.dfs_AddFtRoot.flags  Flags
        Unsigned 32-bit integer
    netdfs.dfs_AddFtRoot.rootshare  Rootshare
        String
    netdfs.dfs_AddFtRoot.servername  Servername
        String
    netdfs.dfs_AddFtRoot.unknown1  Unknown1
        Unsigned 8-bit integer
    netdfs.dfs_AddFtRoot.unknown2  Unknown2
        No value
    netdfs.dfs_AddStdRoot.comment  Comment
        String
    netdfs.dfs_AddStdRoot.flags  Flags
        Unsigned 32-bit integer
    netdfs.dfs_AddStdRoot.rootshare  Rootshare
        String
    netdfs.dfs_AddStdRoot.servername  Servername
        String
    netdfs.dfs_AddStdRootForced.comment  Comment
        String
    netdfs.dfs_AddStdRootForced.rootshare  Rootshare
        String
    netdfs.dfs_AddStdRootForced.servername  Servername
        String
    netdfs.dfs_AddStdRootForced.store  Store
        String
    netdfs.dfs_Enum.bufsize  Bufsize
        Unsigned 32-bit integer
    netdfs.dfs_Enum.info  Info
        No value
    netdfs.dfs_Enum.level  Level
        Unsigned 32-bit integer
    netdfs.dfs_Enum.total  Total
        Unsigned 32-bit integer
    netdfs.dfs_EnumArray1.count  Count
        Unsigned 32-bit integer
    netdfs.dfs_EnumArray1.s  S
        No value
    netdfs.dfs_EnumArray2.count  Count
        Unsigned 32-bit integer
    netdfs.dfs_EnumArray2.s  S
        No value
    netdfs.dfs_EnumArray200.count  Count
        Unsigned 32-bit integer
    netdfs.dfs_EnumArray200.s  S
        No value
    netdfs.dfs_EnumArray3.count  Count
        Unsigned 32-bit integer
    netdfs.dfs_EnumArray3.s  S
        No value
    netdfs.dfs_EnumArray300.count  Count
        Unsigned 32-bit integer
    netdfs.dfs_EnumArray300.s  S
        No value
    netdfs.dfs_EnumArray4.count  Count
        Unsigned 32-bit integer
    netdfs.dfs_EnumArray4.s  S
        No value
    netdfs.dfs_EnumEx.bufsize  Bufsize
        Unsigned 32-bit integer
    netdfs.dfs_EnumEx.dfs_name  Dfs Name
        String
    netdfs.dfs_EnumEx.info  Info
        No value
    netdfs.dfs_EnumEx.level  Level
        Unsigned 32-bit integer
    netdfs.dfs_EnumEx.total  Total
        Unsigned 32-bit integer
    netdfs.dfs_EnumInfo.info1  Info1
        No value
    netdfs.dfs_EnumInfo.info2  Info2
        No value
    netdfs.dfs_EnumInfo.info200  Info200
        No value
    netdfs.dfs_EnumInfo.info3  Info3
        No value
    netdfs.dfs_EnumInfo.info300  Info300
        No value
    netdfs.dfs_EnumInfo.info4  Info4
        No value
    netdfs.dfs_EnumStruct.e  E
        No value
    netdfs.dfs_EnumStruct.level  Level
        Unsigned 32-bit integer
    netdfs.dfs_FlushFtTable.rootshare  Rootshare
        String
    netdfs.dfs_FlushFtTable.servername  Servername
        String
    netdfs.dfs_GetInfo.dfs_entry_path  Dfs Entry Path
        String
    netdfs.dfs_GetInfo.info  Info
        No value
    netdfs.dfs_GetInfo.level  Level
        Unsigned 32-bit integer
    netdfs.dfs_GetInfo.servername  Servername
        String
    netdfs.dfs_GetInfo.sharename  Sharename
        String
    netdfs.dfs_GetManagerVersion.version  Version
        Unsigned 32-bit integer
    netdfs.dfs_Info.info0  Info0
        No value
    netdfs.dfs_Info.info1  Info1
        No value
    netdfs.dfs_Info.info100  Info100
        No value
    netdfs.dfs_Info.info101  Info101
        No value
    netdfs.dfs_Info.info102  Info102
        No value
    netdfs.dfs_Info.info103  Info103
        No value
    netdfs.dfs_Info.info104  Info104
        No value
    netdfs.dfs_Info.info105  Info105
        No value
    netdfs.dfs_Info.info106  Info106
        No value
    netdfs.dfs_Info.info2  Info2
        No value
    netdfs.dfs_Info.info3  Info3
        No value
    netdfs.dfs_Info.info4  Info4
        No value
    netdfs.dfs_Info.info5  Info5
        No value
    netdfs.dfs_Info.info6  Info6
        No value
    netdfs.dfs_Info.info7  Info7
        No value
    netdfs.dfs_Info1.path  Path
        String
    netdfs.dfs_Info100.comment  Comment
        String
    netdfs.dfs_Info101.state  State
        Unsigned 32-bit integer
    netdfs.dfs_Info102.timeout  Timeout
        Unsigned 32-bit integer
    netdfs.dfs_Info103.flags  Flags
        Unsigned 32-bit integer
    netdfs.dfs_Info104.priority  Priority
        No value
    netdfs.dfs_Info105.comment  Comment
        String
    netdfs.dfs_Info105.property_flag_mask  Property Flag Mask
        Unsigned 32-bit integer
    netdfs.dfs_Info105.property_flags  Property Flags
        Unsigned 32-bit integer
    netdfs.dfs_Info105.state  State
        Unsigned 32-bit integer
    netdfs.dfs_Info105.timeout  Timeout
        Unsigned 32-bit integer
    netdfs.dfs_Info106.priority  Priority
        No value
    netdfs.dfs_Info106.state  State
        Unsigned 32-bit integer
    netdfs.dfs_Info2.comment  Comment
        String
    netdfs.dfs_Info2.num_stores  Num Stores
        Unsigned 32-bit integer
    netdfs.dfs_Info2.path  Path
        String
    netdfs.dfs_Info2.state  State
        Unsigned 32-bit integer
    netdfs.dfs_Info200.dom_root  Dom Root
        String
    netdfs.dfs_Info3.comment  Comment
        String
    netdfs.dfs_Info3.num_stores  Num Stores
        Unsigned 32-bit integer
    netdfs.dfs_Info3.path  Path
        String
    netdfs.dfs_Info3.state  State
        Unsigned 32-bit integer
    netdfs.dfs_Info3.stores  Stores
        No value
    netdfs.dfs_Info300.dom_root  Dom Root
        String
    netdfs.dfs_Info300.flavor  Flavor
        Unsigned 16-bit integer
    netdfs.dfs_Info4.comment  Comment
        String
    netdfs.dfs_Info4.guid  Guid
        Globally Unique Identifier
    netdfs.dfs_Info4.num_stores  Num Stores
        Unsigned 32-bit integer
    netdfs.dfs_Info4.path  Path
        String
    netdfs.dfs_Info4.state  State
        Unsigned 32-bit integer
    netdfs.dfs_Info4.stores  Stores
        No value
    netdfs.dfs_Info4.timeout  Timeout
        Unsigned 32-bit integer
    netdfs.dfs_Info5.comment  Comment
        String
    netdfs.dfs_Info5.flags  Flags
        Unsigned 32-bit integer
    netdfs.dfs_Info5.guid  Guid
        Globally Unique Identifier
    netdfs.dfs_Info5.num_stores  Num Stores
        Unsigned 32-bit integer
    netdfs.dfs_Info5.path  Path
        String
    netdfs.dfs_Info5.pktsize  Pktsize
        Unsigned 32-bit integer
    netdfs.dfs_Info5.state  State
        Unsigned 32-bit integer
    netdfs.dfs_Info5.timeout  Timeout
        Unsigned 32-bit integer
    netdfs.dfs_Info6.comment  Comment
        String
    netdfs.dfs_Info6.entry_path  Entry Path
        String
    netdfs.dfs_Info6.flags  Flags
        Unsigned 32-bit integer
    netdfs.dfs_Info6.guid  Guid
        Globally Unique Identifier
    netdfs.dfs_Info6.num_stores  Num Stores
        Unsigned 16-bit integer
    netdfs.dfs_Info6.pktsize  Pktsize
        Unsigned 32-bit integer
    netdfs.dfs_Info6.state  State
        Unsigned 32-bit integer
    netdfs.dfs_Info6.stores  Stores
        No value
    netdfs.dfs_Info6.timeout  Timeout
        Unsigned 32-bit integer
    netdfs.dfs_Info7.generation_guid  Generation Guid
        Globally Unique Identifier
    netdfs.dfs_ManagerInitialize.flags  Flags
        Unsigned 32-bit integer
    netdfs.dfs_ManagerInitialize.servername  Servername
        String
    netdfs.dfs_PropertyFlags.DFS_PROPERTY_FLAG_CLUSTER_ENABLED  Dfs Property Flag Cluster Enabled
        Boolean
    netdfs.dfs_PropertyFlags.DFS_PROPERTY_FLAG_INSITE_REFERRALS  Dfs Property Flag Insite Referrals
        Boolean
    netdfs.dfs_PropertyFlags.DFS_PROPERTY_FLAG_ROOT_SCALABILITY  Dfs Property Flag Root Scalability
        Boolean
    netdfs.dfs_PropertyFlags.DFS_PROPERTY_FLAG_SITE_COSTING  Dfs Property Flag Site Costing
        Boolean
    netdfs.dfs_PropertyFlags.DFS_PROPERTY_FLAG_TARGET_FAILBACK  Dfs Property Flag Target Failback
        Boolean
    netdfs.dfs_Remove.dfs_entry_path  Dfs Entry Path
        String
    netdfs.dfs_Remove.servername  Servername
        String
    netdfs.dfs_Remove.sharename  Sharename
        String
    netdfs.dfs_RemoveFtRoot.dfsname  Dfsname
        String
    netdfs.dfs_RemoveFtRoot.dns_servername  Dns Servername
        String
    netdfs.dfs_RemoveFtRoot.flags  Flags
        Unsigned 32-bit integer
    netdfs.dfs_RemoveFtRoot.rootshare  Rootshare
        String
    netdfs.dfs_RemoveFtRoot.servername  Servername
        String
    netdfs.dfs_RemoveFtRoot.unknown  Unknown
        No value
    netdfs.dfs_RemoveStdRoot.flags  Flags
        Unsigned 32-bit integer
    netdfs.dfs_RemoveStdRoot.rootshare  Rootshare
        String
    netdfs.dfs_RemoveStdRoot.servername  Servername
        String
    netdfs.dfs_SetInfo.dfs_entry_path  Dfs Entry Path
        String
    netdfs.dfs_SetInfo.info  Info
        No value
    netdfs.dfs_SetInfo.level  Level
        Unsigned 32-bit integer
    netdfs.dfs_SetInfo.servername  Servername
        String
    netdfs.dfs_SetInfo.sharename  Sharename
        String
    netdfs.dfs_StorageInfo.server  Server
        String
    netdfs.dfs_StorageInfo.share  Share
        String
    netdfs.dfs_StorageInfo.state  State
        Unsigned 32-bit integer
    netdfs.dfs_StorageInfo2.info  Info
        No value
    netdfs.dfs_StorageInfo2.target_priority  Target Priority
        No value
    netdfs.dfs_StorageState.DFS_STORAGE_STATE_ACTIVE  Dfs Storage State Active
        Boolean
    netdfs.dfs_StorageState.DFS_STORAGE_STATE_OFFLINE  Dfs Storage State Offline
        Boolean
    netdfs.dfs_StorageState.DFS_STORAGE_STATE_ONLINE  Dfs Storage State Online
        Boolean
    netdfs.dfs_Target_Priority.reserved  Reserved
        Unsigned 16-bit integer
    netdfs.dfs_Target_Priority.target_priority_class  Target Priority Class
        Unsigned 32-bit integer
    netdfs.dfs_Target_Priority.target_priority_rank  Target Priority Rank
        Unsigned 16-bit integer
    netdfs.dfs_UnknownStruct.unknown1  Unknown1
        Unsigned 32-bit integer
    netdfs.dfs_UnknownStruct.unknown2  Unknown2
        String
    netdfs.dfs_VolumeState.DFS_VOLUME_STATE_AD_BLOB  Dfs Volume State Ad Blob
        Boolean
    netdfs.dfs_VolumeState.DFS_VOLUME_STATE_INCONSISTENT  Dfs Volume State Inconsistent
        Boolean
    netdfs.dfs_VolumeState.DFS_VOLUME_STATE_OFFLINE  Dfs Volume State Offline
        Boolean
    netdfs.dfs_VolumeState.DFS_VOLUME_STATE_OK  Dfs Volume State Ok
        Boolean
    netdfs.dfs_VolumeState.DFS_VOLUME_STATE_ONLINE  Dfs Volume State Online
        Boolean
    netdfs.dfs_VolumeState.DFS_VOLUME_STATE_STANDALONE  Dfs Volume State Standalone
        Boolean
    netdfs.opnum  Operation
        Unsigned 16-bit integer
    netdfs.werror  Windows Error
        Unsigned 32-bit integer

Short Frame (short)

Short Message Peer to Peer (smpp)

    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.billing_id  Billing Identification
        Byte array
        Billing identification info
    smpp.broadcast_area_identifier  Broadcast Message - Area Identifier
        Byte array
        Cell Broadcast Message - Area Identifier
    smpp.broadcast_area_identifier.format  Broadcast Message - Area Identifier Format
        Unsigned 8-bit integer
        Cell Broadcast Message - Area Identifier Format
    smpp.broadcast_area_success  Broadcast Message - Area Success
        Unsigned 8-bit integer
        Cell Broadcast Message - success rate indicator (ratio) - No. of BTS which accepted Message:Total BTS
    smpp.broadcast_channel_indicator  Cell Broadcast channel
        Unsigned 8-bit integer
    smpp.broadcast_content_type.nw  Broadcast Content Type - Network Tag
        Unsigned 8-bit integer
        Cell Broadcast content type
    smpp.broadcast_content_type.type  Broadcast Content Type - Content Type
        Unsigned 16-bit integer
        Cell Broadcast content type
    smpp.broadcast_end_time  Broadcast Message - End Time
        Date/Time stamp
        Cell Broadcast Message - Date and time at which MC set the state of the message to terminated
    smpp.broadcast_end_time_r  Broadcast Message - End Time
        Time duration
        Cell Broadcast Message - Date and time at which MC set the state of the message to terminated
    smpp.broadcast_error_status  Broadcast Message - Error Status
        Unsigned 32-bit integer
        Cell Broadcast Message - Error Status
    smpp.broadcast_frequency_interval.unit  Broadcast Message - frequency interval - Unit
        Unsigned 8-bit integer
        Cell Broadcast Message - frequency interval at which broadcast must be repeated
    smpp.broadcast_frequency_interval.value  Broadcast Message - frequency interval - Unit
        Unsigned 16-bit integer
        Cell Broadcast Message - frequency interval at which broadcast must be repeated
    smpp.broadcast_message_class  Broadcast Message Class
        Unsigned 8-bit integer
        Cell Broadcast Message Class
    smpp.broadcast_rep_num  Broadcast Message - Number of repetitions requested
        Unsigned 16-bit integer
        Cell Broadcast Message - Number of repetitions requested
    smpp.broadcast_service_group  Broadcast Message - Service Group
        Byte array
        Cell Broadcast Message - Service Group
    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.congestion_state  Congestion State
        Unsigned 8-bit integer
        Congestion info between ESME and MC for flow control/cong. control
    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_np_country  Destination Country Code
        Byte array
        Destination Country Code (E.164 Region Code)
    smpp.dest_addr_np_info  Number Portability information
        Byte array
    smpp.dest_addr_np_resolution  Number Portability query information
        Unsigned 8-bit integer
        Number Portability query information - method used to resolve number
    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_id  Destination Network ID
        String
        Unique ID for a network or ESME operator
    smpp.dest_network_type  Destination network
        Unsigned 8-bit integer
        Network associated with the destination address.
    smpp.dest_node_id  Destination Node ID
        Byte array
        Unique ID for a ESME or MC node
    smpp.dest_subaddress  Destination Subaddress
        Byte array
    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  Unsuccessful delivery list
        No value
        The list of unsuccessful 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 parameter
        No value
    smpp.opt_param_len  Length
        Unsigned 16-bit integer
        Optional parameter length
    smpp.opt_param_tag  Tag
        Unsigned 16-bit integer
        Optional parameter intentifier tag
    smpp.opt_params  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  Value
        Byte array
        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.sms_signal  SMS signal
        Unsigned 16-bit integer
        Alert the user according to the information contained within this information element.
    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_id  Source Network ID
        String
        Unique ID for a network or ESME operator
    smpp.source_network_type  Originator network
        Unsigned 8-bit integer
        Network associated with the originator address.
    smpp.source_node_id  Source Node ID
        Byte array
        Unique ID for a ESME or MC node
    smpp.source_port  Source port
        Unsigned 16-bit integer
        Application port associated with the source of the message.
    smpp.source_subaddress  Source Subaddress
        Byte array
    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
        Categorizes 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  Value
        Byte array
        A supplied optional parameter specific to an SMSC-vendor.

Short Message Relaying Service (smrse)

    smrse.address_type  address-type
        Signed 32-bit integer
    smrse.address_value  address-value
        Unsigned 32-bit integer
    smrse.alerting_MS_ISDN  alerting-MS-ISDN
        No value
        SMS_Address
    smrse.connect_fail_reason  connect-fail-reason
        Signed 32-bit integer
        Connect_fail
    smrse.error_reason  error-reason
        Signed 32-bit integer
    smrse.length  Length
        Unsigned 16-bit integer
        Length of SMRSE PDU
    smrse.message_reference  message-reference
        Unsigned 32-bit integer
        RP_MR
    smrse.mo_message_reference  mo-message-reference
        Unsigned 32-bit integer
        RP_MR
    smrse.mo_originating_address  mo-originating-address
        No value
        SMS_Address
    smrse.mo_user_data  mo-user-data
        Byte array
        RP_UD
    smrse.moimsi  moimsi
        Byte array
        IMSI_Address
    smrse.ms_address  ms-address
        No value
        SMS_Address
    smrse.msg_waiting_set  msg-waiting-set
        Boolean
        BOOLEAN
    smrse.mt_destination_address  mt-destination-address
        No value
        SMS_Address
    smrse.mt_message_reference  mt-message-reference
        Unsigned 32-bit integer
        RP_MR
    smrse.mt_mms  mt-mms
        Boolean
        BOOLEAN
    smrse.mt_origVMSCAddr  mt-origVMSCAddr
        No value
        SMS_Address
    smrse.mt_originating_address  mt-originating-address
        No value
        SMS_Address
    smrse.mt_priority_request  mt-priority-request
        Boolean
        BOOLEAN
    smrse.mt_tariffClass  mt-tariffClass
        Unsigned 32-bit integer
        SM_TC
    smrse.mt_user_data  mt-user-data
        Byte array
        RP_UD
    smrse.numbering_plan  numbering-plan
        Signed 32-bit integer
    smrse.octet_Format  octet-Format
        String
        SMS-Address/address-value/octet-format
    smrse.octet_format  octet-format
        Byte array
        T_octet_format
    smrse.origVMSCAddr  origVMSCAddr
        No value
        SMS_Address
    smrse.password  password
        String
    smrse.reserved  Reserved
        Unsigned 8-bit integer
        Reserved byte, must be 126
    smrse.sc_address  sc-address
        No value
        SMS_Address
    smrse.sm_diag_info  sm-diag-info
        Byte array
        RP_UD
    smrse.tag  Tag
        Unsigned 8-bit integer

Signaling Compression (sigcomp)

    sigcomp.addr.output.start  %Output_start[memory address]
        Unsigned 16-bit integer
        Output start
    sigcomp.code.len  Code length
        Unsigned 16-bit integer
    sigcomp.compression-ratio  Compression ratio (%)
        Unsigned 32-bit integer
        Compression ratio (decompressed / compressed) %
    sigcomp.destination  Destination
        Unsigned 8-bit integer
    sigcomp.length  Partial state id length
        Unsigned 8-bit integer
        Sigcomp length
    sigcomp.memory_size  Memory size
        Unsigned 16-bit integer
    sigcomp.min.acc.len  %Minimum access length
        Unsigned 16-bit integer
        Minimum access length
    sigcomp.nack.cycles_per_bit  Cycles Per Bit
        Unsigned 8-bit integer
        NACK Cycles Per Bit
    sigcomp.nack.failed_op_code  OPCODE of failed instruction
        Unsigned 8-bit integer
        NACK OPCODE of failed instruction
    sigcomp.nack.pc  PC of failed instruction
        Unsigned 16-bit integer
        NACK PC of failed instruction
    sigcomp.nack.reason  Reason Code
        Unsigned 8-bit integer
        NACK Reason Code
    sigcomp.nack.sha1  SHA-1 Hash of failed message
        Byte array
        NACK SHA-1 Hash of failed message
    sigcomp.nack.state_id  State ID (6 - 20 bytes)
        Byte array
        NACK State ID (6 - 20 bytes)
    sigcomp.nack.ver  NACK Version
        Unsigned 8-bit integer
    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
    sigcomp.remaining-bytes  Remaining SigComp message bytes
        Unsigned 32-bit integer
        Number of bytes remaining in message
    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
        Returned parameters location
    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
    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.byte-code  Uploaded UDVM bytecode
        No value
    sigcomp.udvm.destination  %Destination
        Unsigned 16-bit integer
        Destination
    sigcomp.udvm.execution-trace  UDVM execution trace
        No value
    sigcomp.udvm.instr  UDVM instruction code
        Unsigned 8-bit integer
    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
    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
    sigcomp.udvm.offset  %Offset
        Unsigned 16-bit integer
        Offset
    sigcomp.udvm.operand  UDVM operand
        Unsigned 16-bit integer
    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
    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
        State retention priority
    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

Signalling Connection Control Part (sccp)

    sccp.assoc.id  Association ID
        Unsigned 32-bit integer
    sccp.assoc.msg  Message in frame
        Frame number
    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.lr  Local Reference
        Unsigned 24-bit integer
    sccp.message_type  Message Type
        Unsigned 8-bit integer
    sccp.more  More data
        Unsigned 8-bit integer
    sccp.msg.fragment  Message fragment
        Frame number
    sccp.msg.fragment.error  Message defragmentation error
        Frame number
    sccp.msg.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    sccp.msg.fragment.overlap  Message fragment overlap
        Boolean
    sccp.msg.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    sccp.msg.fragment.too_long_fragment  Message fragment too long
        Boolean
    sccp.msg.fragments  Message fragments
        No value
    sccp.msg.reassembled.in  Reassembled in
        Frame number
    sccp.msg.reassembled.length  Reassembled SCCP length
        Unsigned 32-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

Signalling Connection Control Part Management (sccpmg)

    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 Congestion 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

Simple Mail Transfer Protocol (smtp)

    smtp.data.fragment  DATA fragment
        Frame number
        Message fragment
    smtp.data.fragment.error  DATA defragmentation error
        Frame number
        Message defragmentation error
    smtp.data.fragment.multiple_tails  DATA has multiple tail fragments
        Boolean
        Message has multiple tail fragments
    smtp.data.fragment.overlap  DATA fragment overlap
        Boolean
        Message fragment overlap
    smtp.data.fragment.overlap.conflicts  DATA fragment overlapping with conflicting data
        Boolean
        Message fragment overlapping with conflicting data
    smtp.data.fragment.too_long_fragment  DATA fragment too long
        Boolean
        Message fragment too long
    smtp.data.fragments  DATA fragments
        No value
        Message fragments
    smtp.data.reassembled.in  Reassembled DATA in frame
        Frame number
        This DATA fragment is reassembled in this frame
    smtp.data.reassembled.length  Reassembled DATA length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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

Simple Network Management Protocol (snmp)

    snmp.SMUX_PDUs  SMUX-PDUs
        Unsigned 32-bit integer
    snmp.VarBind  VarBind
        No value
    snmp.agent_addr  agent-addr
        IPv4 address
        NetworkAddress
    snmp.close  close
        Signed 32-bit integer
        ClosePDU
    snmp.commitOrRollback  commitOrRollback
        Signed 32-bit integer
        SOutPDU
    snmp.community  community
        String
    snmp.contextEngineID  contextEngineID
        Byte array
        SnmpEngineID
    snmp.contextName  contextName
        Byte array
        OCTET_STRING
    snmp.data  data
        Unsigned 32-bit integer
        PDUs
    snmp.datav2u  datav2u
        Unsigned 32-bit integer
    snmp.decrypted_pdu  Decrypted ScopedPDU
        Byte array
        Decrypted PDU
    snmp.description  description
        Byte array
        DisplayString
    snmp.encrypted  encrypted
        Byte array
        OCTET_STRING
    snmp.encryptedPDU  encryptedPDU
        Byte array
    snmp.endOfMibView  endOfMibView
        No value
    snmp.engineid.cisco.type  Engine ID Data: Cisco type
        Unsigned 8-bit integer
    snmp.engineid.conform  Engine ID Conformance
        Boolean
        Engine ID RFC3411 Conformance
    snmp.engineid.data  Engine ID Data
        Byte array
    snmp.engineid.enterprise  Engine Enterprise ID
        Unsigned 32-bit integer
    snmp.engineid.format  Engine ID Format
        Unsigned 8-bit integer
    snmp.engineid.ipv4  Engine ID Data: IPv4 address
        IPv4 address
    snmp.engineid.ipv6  Engine ID Data: IPv6 address
        IPv6 address
    snmp.engineid.mac  Engine ID Data: MAC address
        6-byte Hardware (MAC) Address
    snmp.engineid.text  Engine ID Data: Text
        String
    snmp.engineid.time  Engine ID Data: Creation Time
        Date/Time stamp
    snmp.enterprise  enterprise
        Object Identifier
        EnterpriseOID
    snmp.error_index  error-index
        Signed 32-bit integer
        INTEGER
    snmp.error_status  error-status
        Signed 32-bit integer
    snmp.generic_trap  generic-trap
        Signed 32-bit integer
        GenericTrap
    snmp.getBulkRequest  getBulkRequest
        No value
        GetBulkRequest_PDU
    snmp.get_next_request  get-next-request
        No value
        GetNextRequest_PDU
    snmp.get_request  get-request
        No value
        GetRequest_PDU
    snmp.get_response  get-response
        No value
        GetResponse_PDU
    snmp.identity  identity
        Object Identifier
        OBJECT_IDENTIFIER
    snmp.informRequest  informRequest
        No value
        InformRequest_PDU
    snmp.max_repetitions  max-repetitions
        Unsigned 32-bit integer
        INTEGER_0_2147483647
    snmp.msgAuthenticationParameters  msgAuthenticationParameters
        Byte array
    snmp.msgAuthoritativeEngineBoots  msgAuthoritativeEngineBoots
        Unsigned 32-bit integer
    snmp.msgAuthoritativeEngineID  msgAuthoritativeEngineID
        Byte array
    snmp.msgAuthoritativeEngineTime  msgAuthoritativeEngineTime
        Unsigned 32-bit integer
    snmp.msgData  msgData
        Unsigned 32-bit integer
        ScopedPduData
    snmp.msgFlags  msgFlags
        Byte array
    snmp.msgGlobalData  msgGlobalData
        No value
        HeaderData
    snmp.msgID  msgID
        Unsigned 32-bit integer
        INTEGER_0_2147483647
    snmp.msgMaxSize  msgMaxSize
        Unsigned 32-bit integer
        INTEGER_484_2147483647
    snmp.msgPrivacyParameters  msgPrivacyParameters
        Byte array
    snmp.msgSecurityModel  msgSecurityModel
        Unsigned 32-bit integer
    snmp.msgSecurityParameters  msgSecurityParameters
        Byte array
    snmp.msgUserName  msgUserName
        String
    snmp.msgVersion  msgVersion
        Signed 32-bit integer
        Version
    snmp.name  Object Name
        Object Identifier
    snmp.name.index  Scalar Instance Index
        Unsigned 64-bit integer
    snmp.noSuchInstance  noSuchInstance
        No value
    snmp.noSuchObject  noSuchObject
        No value
    snmp.non_repeaters  non-repeaters
        Unsigned 32-bit integer
        INTEGER_0_2147483647
    snmp.open  open
        Unsigned 32-bit integer
        OpenPDU
    snmp.operation  operation
        Signed 32-bit integer
    snmp.pDUs  pDUs
        Unsigned 32-bit integer
    snmp.parameters  parameters
        Byte array
        OCTET_STRING
    snmp.password  password
        Byte array
        OCTET_STRING
    snmp.plaintext  plaintext
        Unsigned 32-bit integer
        PDUs
    snmp.priority  priority
        Signed 32-bit integer
        INTEGER_M1_2147483647
    snmp.rRspPDU  rRspPDU
        Signed 32-bit integer
    snmp.registerRequest  registerRequest
        No value
        RReqPDU
    snmp.registerResponse  registerResponse
        Unsigned 32-bit integer
    snmp.report  report
        No value
        Report_PDU
    snmp.request_id  request-id
        Signed 32-bit integer
        INTEGER
    snmp.sNMPv2_Trap  sNMPv2-Trap
        No value
        SNMPv2_Trap_PDU
    snmp.set_request  set-request
        No value
        SetRequest_PDU
    snmp.smux_simple  smux-simple
        No value
        SimpleOpen
    snmp.smux_version  smux-version
        Signed 32-bit integer
    snmp.specific_trap  specific-trap
        Signed 32-bit integer
        SpecificTrap
    snmp.subtree  subtree
        Object Identifier
        ObjectName
    snmp.time_stamp  time-stamp
        Unsigned 32-bit integer
        TimeTicks
    snmp.trap  trap
        No value
        Trap_PDU
    snmp.unSpecified  unSpecified
        No value
    snmp.v3.auth  Authentication
        Boolean
    snmp.v3.flags.auth  Authenticated
        Boolean
    snmp.v3.flags.crypt  Encrypted
        Boolean
    snmp.v3.flags.report  Reportable
        Boolean
    snmp.value.addr  Value (IpAddress)
        Byte array
    snmp.value.counter  Value (Counter32)
        Unsigned 64-bit integer
    snmp.value.g32  Value (Gauge32)
        Signed 64-bit integer
    snmp.value.int  Value (Integer32)
        Signed 64-bit integer
    snmp.value.ipv4  Value (IpAddress)
        IPv4 address
    snmp.value.ipv6  Value (IpAddress)
        IPv6 address
    snmp.value.nsap  Value (NSAP)
        Unsigned 64-bit integer
    snmp.value.null  Value (Null)
        No value
    snmp.value.octets  Value (OctetString)
        Byte array
    snmp.value.oid  Value (OID)
        Object Identifier
    snmp.value.opaque  Value (Opaque)
        Byte array
    snmp.value.timeticks  Value (Timeticks)
        Unsigned 64-bit integer
    snmp.value.u32  Value (Unsigned32)
        Signed 64-bit integer
    snmp.value.unk  Value (Unknown)
        Byte array
    snmp.valueType  valueType
        No value
    snmp.variable_bindings  variable-bindings
        Unsigned 32-bit integer
        VarBindList
    snmp.version  version
        Signed 32-bit integer

Simple Protected Negotiation (spnego)

    spnego.MechType  MechType
        Object Identifier
    spnego.anonFlag  anonFlag
        Boolean
    spnego.confFlag  confFlag
        Boolean
    spnego.delegFlag  delegFlag
        Boolean
    spnego.innerContextToken  innerContextToken
        No value
    spnego.integFlag  integFlag
        Boolean
    spnego.krb5.acceptor_subkey  AcceptorSubkey
        Boolean
    spnego.krb5.blob  krb5_blob
        Byte array
    spnego.krb5.cfx_ec  krb5_cfx_ec
        Unsigned 16-bit integer
        KRB5 CFX Extra Count
    spnego.krb5.cfx_flags  krb5_cfx_flags
        Unsigned 8-bit integer
        KRB5 CFX Flags
    spnego.krb5.cfx_rrc  krb5_cfx_rrc
        Unsigned 16-bit integer
        KRB5 CFX Right Rotation Count
    spnego.krb5.cfx_seq  krb5_cfx_seq
        Unsigned 64-bit integer
        KRB5 Sequence Number
    spnego.krb5.confounder  krb5_confounder
        Byte array
        KRB5 Confounder
    spnego.krb5.filler  krb5_filler
        Byte array
        KRB5 Filler
    spnego.krb5.seal_alg  krb5_seal_alg
        Unsigned 16-bit integer
        KRB5 Sealing Algorithm
    spnego.krb5.sealed  Sealed
        Boolean
    spnego.krb5.send_by_acceptor  SendByAcceptor
        Boolean
    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.krb5_oid  KRB5 OID
        String
    spnego.mechListMIC  mechListMIC
        Byte array
        T_NegTokenInit_mechListMIC
    spnego.mechToken  mechToken
        Byte array
    spnego.mechTypes  mechTypes
        Unsigned 32-bit integer
        MechTypeList
    spnego.mutualFlag  mutualFlag
        Boolean
    spnego.negResult  negResult
        Unsigned 32-bit integer
    spnego.negTokenInit  negTokenInit
        No value
    spnego.negTokenTarg  negTokenTarg
        No value
    spnego.principal  principal
        String
        GeneralString
    spnego.replayFlag  replayFlag
        Boolean
    spnego.reqFlags  reqFlags
        Byte array
        ContextFlags
    spnego.responseToken  responseToken
        Byte array
    spnego.sequenceFlag  sequenceFlag
        Boolean
    spnego.supportedMech  supportedMech
        Object Identifier
    spnego.thisMech  thisMech
        Object Identifier
        MechType
    spnego.wraptoken  wrapToken
        No value
        SPNEGO wrapToken

Simple Traversal of UDP Through NAT (classicstun)

    classicstun.att  Attributes
        No value
    classicstun.att.bandwidth  Bandwidth
        Unsigned 32-bit integer
    classicstun.att.change.ip  Change IP
        Boolean
    classicstun.att.change.port  Change Port
        Boolean
    classicstun.att.connection_request_binding  Connection Request Binding
        String
    classicstun.att.data  Data
        Byte array
    classicstun.att.error  Error Code
        Unsigned 8-bit integer
    classicstun.att.error.class  Error Class
        Unsigned 8-bit integer
    classicstun.att.error.reason  Error Reason Phase
        String
    classicstun.att.family  Protocol Family
        Unsigned 16-bit integer
    classicstun.att.ipv4  IP
        IPv4 address
    classicstun.att.ipv4-xord  IP (XOR-d)
        IPv4 address
    classicstun.att.ipv6  IP
        IPv6 address
    classicstun.att.ipv6-xord  IP (XOR-d)
        IPv6 address
    classicstun.att.length  Attribute Length
        Unsigned 16-bit integer
    classicstun.att.lifetime  Lifetime
        Unsigned 32-bit integer
    classicstun.att.magic.cookie  Magic Cookie
        Unsigned 32-bit integer
    classicstun.att.port  Port
        Unsigned 16-bit integer
    classicstun.att.port-xord  Port (XOR-d)
        Unsigned 16-bit integer
    classicstun.att.server  Server version
        String
    classicstun.att.type  Attribute Type
        Unsigned 16-bit integer
    classicstun.att.unknown  Unknown Attribute
        Unsigned 16-bit integer
    classicstun.att.value  Value
        Byte array
    classicstun.id  Message Transaction ID
        Byte array
    classicstun.length  Message Length
        Unsigned 16-bit integer
    classicstun.response_in  Response In
        Frame number
        The response to this CLASSICSTUN query is in this frame
    classicstun.response_to  Request In
        Frame number
        This is a response to the CLASSICSTUN Request in this frame
    classicstun.time  Time
        Time duration
        The time between the Request and the Response
    classicstun.type  Message Type
        Unsigned 16-bit integer

Sinec H1 Protocol (h1)

    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 (sipfrag)

    sipfrag.line  Line
        String

Skinny Client Control Protocol (skinny)

    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
    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.bitRate  BitRate
        Unsigned 32-bit integer
        BitRate.
    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
    skinny.dateSeconds  Seconds
        Unsigned 32-bit integer
    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.displayName  DisplayName
        String
        The display name for this line.
    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
    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  FullyQualifiedDisplayName
        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
    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
    skinny.miscCommandType  MiscCommandType
        Unsigned 32-bit integer
    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.ringMode  Ring Mode
        Unsigned 32-bit integer
        What mode of ring to play
    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
    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 Communication Protocol (slimp3)

    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

Slow Protocols (slow)

    slow.esmc.event_flag  Event Flag
        Unsigned 8-bit integer
        This bit distinguishes the critical, time sensitive behaviour of the ESMC Event PDU from the ESMC Information PDU
    slow.esmc.itu_oui  ITU-OUI
        Byte array
        IEEE assigned Organizationally Unique Identifier for ITU-T
    slow.esmc.itu_subtype  ITU Subtype
        Unsigned 16-bit integer
        The ITU Subtype is assigned by the ITU-T TSB
    slow.esmc.padding  Padding
        Byte array
        This field contains necessary padding to achieve the minimum frame size of 64 bytes at least
    slow.esmc.ql  SSM Code
        Unsigned 8-bit integer
        Quality Level information
    slow.esmc.reserved  Reserved
        Unsigned 32-bit integer
        Reserved. Set to all zero at the transmitter and ignored by the receiver
    slow.esmc.timestamp  Timestamp (ns)
        Signed 32-bit integer
        Timestamp according to the "whole nanoseconds" part of the IEEE 1588 originTimestamp
    slow.esmc.timestamp_valid_flag  Timestamp Valid Flag
        Unsigned 8-bit integer
        Indicates validity (i.e. presence) of the Timestamp TLV
    slow.esmc.tlv  ESMC TLV
        No value
    slow.esmc.tlv_length  TLV Length
        Unsigned 16-bit integer
    slow.esmc.tlv_ql_unused  Unused
        Unsigned 8-bit integer
        This field is not used in QL TLV
    slow.esmc.tlv_ts_reserved  Reserved
        Unsigned 8-bit integer
        Reserved. Set to all zero at the transmitter and ignored by the receiver
    slow.esmc.tlv_type  TLV Type
        Unsigned 8-bit integer
    slow.esmc.version  Version
        Unsigned 8-bit integer
        This field indicates the version of ITU-T SG15 Q13 OSSP frame format
    slow.lacp.actorInfo  Actor Information
        Unsigned 8-bit integer
        TLV type = Actor
    slow.lacp.actorInfoLen  Actor Information Length
        Unsigned 8-bit integer
        The length of the Actor TLV
    slow.lacp.actorKey  Actor Key
        Unsigned 16-bit integer
        The operational Key value assigned to the port by the Actor
    slow.lacp.actorPort  Actor Port
        Unsigned 16-bit integer
        The port number assigned to the port by the Actor (via Management or Admin)
    slow.lacp.actorPortPriority  Actor Port Priority
        Unsigned 16-bit integer
        The priority assigned to the port by the Actor (via Management or Admin)
    slow.lacp.actorState  Actor State
        Unsigned 8-bit integer
        The Actor's state variables for the port, encoded as bits within a single octet
    slow.lacp.actorState.activity  LACP Activity
        Boolean
        Activity control value for this link. Active = 1, Passive = 0
    slow.lacp.actorState.aggregation  Aggregation
        Boolean
        Aggregatable = 1, Individual = 0
    slow.lacp.actorState.collecting  Collecting
        Boolean
        Collection of incoming frames is: Enabled = 1, Disabled = 0
    slow.lacp.actorState.defaulted  Defaulted
        Boolean
        1 = Actor Rx machine is using DEFAULT Partner info, 0 = using info in Rx'd LACPDU
    slow.lacp.actorState.distributing  Distributing
        Boolean
        Distribution of outgoing frames is: Enabled = 1, Disabled = 0
    slow.lacp.actorState.expired  Expired
        Boolean
        1 = Actor Rx machine is EXPIRED, 0 = is NOT EXPIRED
    slow.lacp.actorState.synchronization  Synchronization
        Boolean
        In Sync = 1, Out of Sync = 0
    slow.lacp.actorState.timeout  LACP Timeout
        Boolean
        Timeout control value for this link. Short Timeout = 1, Long Timeout = 0
    slow.lacp.actorSysPriority  Actor System Priority
        Unsigned 16-bit integer
        The priority assigned to this System by management or admin
    slow.lacp.actorSystem  Actor System
        6-byte Hardware (MAC) Address
        The Actor's System ID encoded as a MAC address
    slow.lacp.coll_reserved  Reserved
        Byte array
    slow.lacp.collectorInfo  Collector Information
        Unsigned 8-bit integer
        TLV type = Collector
    slow.lacp.collectorInfoLen  Collector Information Length
        Unsigned 8-bit integer
        The length of the Collector TLV
    slow.lacp.collectorMaxDelay  Collector Max Delay
        Unsigned 16-bit integer
        The max delay of the station tx'ing the LACPDU (in tens of usecs)
    slow.lacp.partnerInfo  Partner Information
        Unsigned 8-bit integer
        TLV type = Partner
    slow.lacp.partnerInfoLen  Partner Information Length
        Unsigned 8-bit integer
        The length of the Partner TLV
    slow.lacp.partnerKey  Partner Key
        Unsigned 16-bit integer
        The operational Key value assigned to the port associated with this link by the Partner
    slow.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)
    slow.lacp.partnerPortPriority  Partner Port Priority
        Unsigned 16-bit integer
        The priority assigned to the port by the Partner (via Management or Admin)
    slow.lacp.partnerState  Partner State
        Unsigned 8-bit integer
        The Partner's state variables for the port, encoded as bits within a single octet
    slow.lacp.partnerState.activity  LACP Activity
        Boolean
        Activity control value for this link. Active = 1, Passive = 0
    slow.lacp.partnerState.aggregation  Aggregation
        Boolean
        Aggregatable = 1, Individual = 0
    slow.lacp.partnerState.collecting  Collecting
        Boolean
        Collection of incoming frames is: Enabled = 1, Disabled = 0
    slow.lacp.partnerState.defaulted  Defaulted
        Boolean
        1 = Actor Rx machine is using DEFAULT Partner info, 0 = using info in Rx'd LACPDU
    slow.lacp.partnerState.distributing  Distributing
        Boolean
        Distribution of outgoing frames is: Enabled = 1, Disabled = 0
    slow.lacp.partnerState.expired  Expired
        Boolean
        1 = Actor Rx machine is EXPIRED, 0 = is NOT EXPIRED
    slow.lacp.partnerState.synchronization  Synchronization
        Boolean
        In Sync = 1, Out of Sync = 0
    slow.lacp.partnerState.timeout  LACP Timeout
        Boolean
        Timeout control value for this link. Short Timeout = 1, Long Timeout = 0
    slow.lacp.partnerSysPriority  Partner System Priority
        Unsigned 16-bit integer
        The priority assigned to the Partner System by management or admin
    slow.lacp.partnerSystem  Partner System
        6-byte Hardware (MAC) Address
        The Partner's System ID encoded as a MAC address
    slow.lacp.reserved  Reserved
        Byte array
    slow.lacp.termInfo  Terminator Information
        Unsigned 8-bit integer
        TLV type = Terminator
    slow.lacp.termLen  Terminator Length
        Unsigned 8-bit integer
        The length of the Terminator TLV
    slow.lacp.term_reserved  Reserved
        Byte array
    slow.lacp.version  LACP Version Number
        Unsigned 8-bit integer
        Identifies the LACP version
    slow.marker.requesterPort  Requester Port
        Unsigned 16-bit integer
        The Requester Port
    slow.marker.requesterSystem  Requester System
        6-byte Hardware (MAC) Address
        The Requester System ID encoded as a MAC address
    slow.marker.requesterTransId  Requester Transaction ID
        Unsigned 32-bit integer
        The Requester Transaction ID
    slow.marker.tlvLen  TLV Length
        Unsigned 8-bit integer
        The length of the Actor TLV
    slow.marker.tlvType  TLV Type
        Unsigned 8-bit integer
        Marker TLV type
    slow.marker.version  Version Number
        Unsigned 8-bit integer
        Identifies the Marker version
    slow.oam.code  OAMPDU code
        Unsigned 8-bit integer
        Identifies the TLVs code
    slow.oam.event.efeErrors  Errored Frames
        Unsigned 32-bit integer
        Number of symbols in error
    slow.oam.event.efeThreshold  Errored Frame Threshold
        Unsigned 32-bit integer
        Number of frames required to generate the Event
    slow.oam.event.efeTotalErrors  Error Running Total
        Unsigned 64-bit integer
        Number of frames in error since reset of the sublayer
    slow.oam.event.efeTotalEvents  Event Running Total
        Unsigned 32-bit integer
        Total Event generated since reset of the sublayer
    slow.oam.event.efeWindow  Errored Frame Window
        Unsigned 16-bit integer
        Number of symbols in the period
    slow.oam.event.efpeThreshold  Errored Frame Threshold
        Unsigned 32-bit integer
        Number of frames required to generate the Event
    slow.oam.event.efpeTotalErrors  Error Running Total
        Unsigned 64-bit integer
        Number of frames in error since reset of the sublayer
    slow.oam.event.efpeTotalEvents  Event Running Total
        Unsigned 32-bit integer
        Total Event generated since reset of the sublayer
    slow.oam.event.efpeWindow  Errored Frame Window
        Unsigned 32-bit integer
        Number of frame in error during the period
    slow.oam.event.efsseThreshold  Errored Frame Threshold
        Unsigned 16-bit integer
        Number of frames required to generate the Event
    slow.oam.event.efsseTotalErrors  Error Running Total
        Unsigned 32-bit integer
        Number of frames in error since reset of the sublayer
    slow.oam.event.efsseTotalEvents  Event Running Total
        Unsigned 32-bit integer
        Total Event generated since reset of the sublayer
    slow.oam.event.efsseWindow  Errored Frame Window
        Unsigned 16-bit integer
        Number of frame in error during the period
    slow.oam.event.espeErrors  Errored Symbols
        Unsigned 64-bit integer
        Number of symbols in error
    slow.oam.event.espeThreshold  Errored Symbol Threshold
        Unsigned 64-bit integer
        Number of symbols required to generate the Event
    slow.oam.event.espeTotalErrors  Error Running Total
        Unsigned 64-bit integer
        Number of symbols in error since reset of the sublayer
    slow.oam.event.espeTotalEvents  Event Running Total
        Unsigned 32-bit integer
        Total Event generated since reset of the sublayer
    slow.oam.event.espeWindow  Errored Symbol Window
        Unsigned 64-bit integer
        Number of symbols in the period
    slow.oam.event.length  Event Length
        Unsigned 8-bit integer
        This field indicates the length in octets of the TLV-tuple
    slow.oam.event.sequence  Sequence Number
        Unsigned 16-bit integer
        Identifies the Event Notification TLVs
    slow.oam.event.timestamp  Event Timestamp (100ms)
        Unsigned 16-bit integer
        Event Time Stamp in term of 100 ms intervals
    slow.oam.event.type  Event Type
        Unsigned 8-bit integer
        Identifies the TLV type
    slow.oam.flags  Flags
        Unsigned 16-bit integer
        The Flags Field
    slow.oam.flags.criticalEvent  Critical Event
        Boolean
        A critical event has occurred. True = 1, False = 0
    slow.oam.flags.dyingGasp  Dying Gasp
        Boolean
        An unrecoverable local failure occured. True = 1, False = 0
    slow.oam.flags.linkFault  Link Fault
        Boolean
        The PHY detected a fault in the receive direction. True = 1, False = 0
    slow.oam.flags.localEvaluating  Local Evaluating
        Boolean
        Local DTE Discovery process in progress. True = 1, False = 0
    slow.oam.flags.localStable  Local Stable
        Boolean
        Local DTE is Stable. True = 1, False = 0
    slow.oam.flags.remoteEvaluating  Remote Evaluating
        Boolean
        Remote DTE Discovery process in progress. True = 1, False = 0
    slow.oam.flags.remoteStable  Remote Stable
        Boolean
        Remote DTE is Stable. True = 1, False = 0
    slow.oam.info.length  TLV Length
        Unsigned 8-bit integer
        Identifies the TLVs type
    slow.oam.info.oamConfig  OAM Configuration
        Unsigned 8-bit integer
    slow.oam.info.oamConfig.mode  OAM Mode
        Boolean
    slow.oam.info.oampduConfig  Max OAMPDU Size
        Unsigned 16-bit integer
        OAMPDU Configuration
    slow.oam.info.oui  Organizationally Unique Identifier
        Byte array
    slow.oam.info.revision  TLV Revision
        Unsigned 16-bit integer
        Identifies the TLVs revision
    slow.oam.info.state  OAM DTE States
        Unsigned 8-bit integer
        OAM DTE State of the Mux and the Parser
    slow.oam.info.state.muxiplexer  Muxiplexer Action
        Boolean
    slow.oam.info.state.parser  Parser Action
        Unsigned 8-bit integer
    slow.oam.info.type  Type
        Unsigned 8-bit integer
        Identifies the TLV type
    slow.oam.info.vendor  Vendor Specific Information
        Byte array
    slow.oam.info.version  TLV Version
        Unsigned 8-bit integer
        Identifies the TLVs version
    slow.oam.lpbk.commands  Commands
        Unsigned 8-bit integer
        The List of Loopback Commands
    slow.oam.lpbk.commands.disable  Disable Remote Loopback
        Boolean
        Disable Remote Loopback Command
    slow.oam.lpbk.commands.enable  Enable Remote Loopback
        Boolean
        Enable Remote Loopback Command
    slow.oam.variable.attribute  Leaf
        Unsigned 16-bit integer
        Attribute, derived from the CMIP protocol in Annex 30A
    slow.oam.variable.binding  Leaf
        Unsigned 16-bit integer
        Binding, derived from the CMIP protocol in Annex 30A
    slow.oam.variable.branch  Branch
        Unsigned 8-bit integer
        Variable Branch, derived from the CMIP protocol in Annex 30A
    slow.oam.variable.indication  Variable indication
        Unsigned 8-bit integer
    slow.oam.variable.object  Leaf
        Unsigned 16-bit integer
        Object, derived from the CMIP protocol in Annex 30A
    slow.oam.variable.package  Leaf
        Unsigned 16-bit integer
        Package, derived from the CMIP protocol in Annex 30A
    slow.oam.variable.value  Variable Value
        Byte array
        Value
    slow.oam.variable.width  Variable Width
        Unsigned 8-bit integer
        Width
    slow.subtype  Slow Protocols subtype
        Unsigned 8-bit integer
        Identifies the LACP version

Societe Internationale de Telecommunications Aeronautiques (sita)

    sita.errors.abort  Abort
        Boolean
        TRUE if Abort Received
    sita.errors.break  Break
        Boolean
        TRUE if Break Received
    sita.errors.collision  Collision
        Boolean
        TRUE if Collision
    sita.errors.crc  CRC
        Boolean
        TRUE if CRC Error
    sita.errors.framing  Framing
        Boolean
        TRUE if Framing Error
    sita.errors.length  Length
        Boolean
        TRUE if Length Violation
    sita.errors.longframe  Long Frame
        Boolean
        TRUE if Long Frame Received
    sita.errors.lostcd  Carrier
        Boolean
        TRUE if Carrier Lost
    sita.errors.lostcts  Clear To Send
        Boolean
        TRUE if Clear To Send Lost
    sita.errors.nonaligned  NonAligned
        Boolean
        TRUE if NonAligned Frame
    sita.errors.overrun  Overrun
        Boolean
        TRUE if Overrun Error
    sita.errors.parity  Parity
        Boolean
        TRUE if Parity Error
    sita.errors.protocol  Protocol
        Unsigned 8-bit integer
        Protocol value
    sita.errors.rtxlimit  Retx Limit
        Boolean
        TRUE if Retransmit Limit reached
    sita.errors.rxdpll  DPLL
        Boolean
        TRUE if DPLL Error
    sita.errors.shortframe  Short Frame
        Boolean
        TRUE if Short Frame
    sita.errors.uarterror  UART
        Boolean
        TRUE if UART Error
    sita.errors.underrun  Underrun
        Boolean
        TRUE if Tx Underrun
    sita.flags.droppedframe  No Buffers
        Boolean
        TRUE if Buffer Failure
    sita.flags.flags  Direction
        Boolean
        TRUE 'from Remote', FALSE 'from Local'
    sita.signals.cts  CTS
        Boolean
        TRUE if Clear To Send
    sita.signals.dcd  DCD
        Boolean
        TRUE if Data Carrier Detect
    sita.signals.dsr  DSR
        Boolean
        TRUE if Data Set Ready
    sita.signals.dtr  DTR
        Boolean
        TRUE if Data Terminal Ready
    sita.signals.rts  RTS
        Boolean
        TRUE if Request To Send

Socks Protocol (socks)

    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.gssapi.command  SOCKS/GSSAPI command
        Unsigned 8-bit integer
    socks.gssapi.data  GSSAPI data
        Byte array
    socks.gssapi.length  SOCKS/GSSAPI data length
        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
        NULL terminated string
    socks.v4a_dns_name  SOCKS v4a Remote Domain Name
        NULL terminated string
    socks.version  Version
        Unsigned 8-bit integer

Solaris IPNET (ipnet)

    ipnet.family  Address family
        Unsigned 8-bit integer
    ipnet.grifindex  Group interface index
        Unsigned 32-bit integer
    ipnet.htype  Hook type
        Unsigned 16-bit integer
    ipnet.ifindex  Interface index
        Unsigned 32-bit integer
    ipnet.pktlen  Data length
        Unsigned 32-bit integer
    ipnet.version  Header version
        Unsigned 8-bit integer
    ipnet.zdst  Destination Zone ID
        Unsigned 32-bit integer
    ipnet.zsrc  Source Zone ID
        Unsigned 32-bit integer

SoulSeek Protocol (slsk)

    slsk.average.speed  Average Speed
        Unsigned 32-bit integer
    slsk.byte  Byte
        Unsigned 8-bit integer
    slsk.chat.message  Chat Message
        String
    slsk.chat.message.id  Chat Message ID
        Unsigned 32-bit integer
    slsk.checksum  Checksum
        Unsigned 32-bit integer
    slsk.client.ip  Client IP
        IPv4 address
        Client IP Address
    slsk.code  Code
        Unsigned 32-bit integer
    slsk.compr.packet  [zlib compressed packet]
        No value
        zlib compressed packet
    slsk.connection.type  Connection Type
        String
    slsk.day.count  Number of Days
        Unsigned 32-bit integer
    slsk.directories  Directories
        Unsigned 32-bit integer
    slsk.directory  Directory
        String
    slsk.download.number  Download Number
        Unsigned 32-bit integer
    slsk.file.count  File Count
        Unsigned 32-bit integer
    slsk.filename  Filename
        String
    slsk.files  Files
        Unsigned 32-bit integer
    slsk.folder.count  Folder Count
        Unsigned 32-bit integer
    slsk.integer  Integer
        Unsigned 32-bit integer
    slsk.ip.address  IP Address
        IPv4 address
    slsk.login.message  Login Message
        String
    slsk.login.successful  Login successful
        Unsigned 8-bit integer
        Login Successful
    slsk.message.code  Message Code
        Unsigned 32-bit integer
    slsk.message.length  Message Length
        Unsigned 32-bit integer
    slsk.nodes.in.cache.before.disconnect  Nodes In Cache Before Disconnect
        Unsigned 32-bit integer
    slsk.parent.min.speed  Parent Min Speed
        Unsigned 32-bit integer
    slsk.parent.speed.connection.ratio  Parent Speed Connection Ratio
        Unsigned 32-bit integer
    slsk.password  Password
        String
    slsk.port.number  Port Number
        Unsigned 32-bit integer
    slsk.queue.place  Place in Queue
        Unsigned 32-bit integer
    slsk.ranking  Ranking
        Unsigned 32-bit integer
    slsk.recommendation  Recommendation
        String
    slsk.room  Room
        String
    slsk.room.count  Number of Rooms
        Unsigned 32-bit integer
    slsk.room.users  Users in Room
        Unsigned 32-bit integer
        Number of Users in Room
    slsk.search.text  Search Text
        String
    slsk.seconds.before.ping.children  Seconds Before Ping Children
        Unsigned 32-bit integer
    slsk.seconds.parent.inactivity.before.disconnect  Seconds Parent Inactivity Before Disconnect
        Unsigned 32-bit integer
    slsk.seconds.server.inactivity.before.disconnect  Seconds Server Inactivity Before Disconnect
        Unsigned 32-bit integer
    slsk.server.ip  SoulSeek Server IP
        Unsigned 32-bit integer
    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
    slsk.string  String
        String
    slsk.string.length  String Length
        Unsigned 32-bit integer
    slsk.timestamp  Timestamp
        Unsigned 32-bit integer
    slsk.token  Token
        Unsigned 32-bit integer
    slsk.transfer.direction  Transfer Direction
        Unsigned 32-bit integer
    slsk.uploads.available  Upload Slots available
        Unsigned 8-bit integer
    slsk.uploads.queued  Queued uploads
        Unsigned 32-bit integer
    slsk.uploads.total  Total uploads allowed
        Unsigned 32-bit integer
    slsk.uploads.user  User uploads
        Unsigned 32-bit integer
    slsk.user.allowed  Download allowed
        Unsigned 8-bit integer
        allowed
    slsk.user.count  Number of Users
        Unsigned 32-bit integer
    slsk.user.description  User Description
        String
    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
    slsk.version  Version
        Unsigned 32-bit integer

Spanning Tree Protocol (stp)

    mstp.cist_bridge.ext  CIST Bridge Identifier System ID Extension
        Unsigned 16-bit integer
    mstp.cist_bridge.hw  CIST Bridge Identifier System ID
        6-byte Hardware (MAC) Address
    mstp.cist_bridge.prio  CIST Bridge Priority
        Unsigned 16-bit integer
    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
        NULL terminated 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  Port identifier
        Unsigned 16-bit integer
    mstp.msti.port_priority  Port identifier priority
        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  Version 3 Length
        Unsigned 16-bit integer
    stp.bridge.ext  Bridge System ID Extension
        Unsigned 16-bit integer
    stp.bridge.hw  Bridge System ID
        6-byte Hardware (MAC) Address
    stp.bridge.prio  Bridge Priority
        Unsigned 16-bit integer
    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.ext  Root Bridge System ID Extension
        Unsigned 16-bit integer
    stp.root.hw  Root Bridge System ID
        6-byte Hardware (MAC) Address
    stp.root.prio  Root Bridge Priority
        Unsigned 16-bit integer
    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

StarTeam (starteam)

    starteam.data  Data
        NULL terminated string
    starteam.id.client  Client ID
        NULL terminated string
        ID client ID
    starteam.id.command  Command ID
        Unsigned 32-bit integer
        ID command ID
    starteam.id.commandtime  Command time
        Unsigned 32-bit integer
        ID command time
    starteam.id.commanduserid  Command user ID
        Unsigned 32-bit integer
        ID command user ID
    starteam.id.component  Component ID
        Unsigned 32-bit integer
        ID component ID
    starteam.id.connect  Connect ID
        Unsigned 32-bit integer
        ID connect ID
    starteam.id.level  Revision level
        Unsigned 16-bit integer
        ID revision level
    starteam.mdh.ctimestamp  Client timestamp
        Unsigned 32-bit integer
        MDH client timestamp
    starteam.mdh.flags  Flags
        Unsigned 32-bit integer
        MDH flags
    starteam.mdh.keyid  Key ID
        Unsigned 32-bit integer
        MDH key ID
    starteam.mdh.reserved  Reserved
        Unsigned 32-bit integer
        MDH reserved
    starteam.mdh.stag  Session tag
        Unsigned 32-bit integer
        MDH session tag
    starteam.ph.dsize  Data size
        Unsigned 32-bit integer
        PH data size
    starteam.ph.flags  Flags
        Unsigned 32-bit integer
        PH flags
    starteam.ph.psize  Packet size
        Unsigned 32-bit integer
        PH packet size
    starteam.ph.signature  Signature
        NULL terminated string
        PH signature

Stream Control Transmission Protocol (sctp)

    sctp.abort_t_bit  T-Bit
        Boolean
    sctp.ack  Acknowledges TSN
        Unsigned 32-bit integer
    sctp.ack_frame  Chunk acknowledged in frame
        Frame number
    sctp.acked  This chunk is acked in frame
        Frame number
    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_type_to_auth  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_i_bit  I-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.duplicate  Fragment already seen in frame
        Frame number
    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.fragment  SCTP Fragment
        Frame number
    sctp.fragments  Reassembled SCTP Fragments
        No value
    sctp.hmac  HMAC
        Byte array
    sctp.hmac_id  HMAC identifier
        Unsigned 16-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.nr_sack_a_rwnd  Advertised receiver window credit (a_rwnd)
        Unsigned 32-bit integer
    sctp.nr_sack_cumulative_tsn_ack  Cumulative TSN ACK
        Unsigned 32-bit integer
    sctp.nr_sack_duplicate_tsn  Duplicate TSN
        Unsigned 16-bit integer
    sctp.nr_sack_gap_block_end  End
        Unsigned 16-bit integer
    sctp.nr_sack_gap_block_end_tsn  End TSN
        Unsigned 32-bit integer
    sctp.nr_sack_gap_block_start  Start
        Unsigned 16-bit integer
    sctp.nr_sack_gap_block_start_tsn  Start TSN
        Unsigned 32-bit integer
    sctp.nr_sack_nounce_sum  Nounce sum
        Unsigned 8-bit integer
    sctp.nr_sack_nr_gap_block_end  End
        Unsigned 16-bit integer
    sctp.nr_sack_nr_gap_block_end_tsn  End TSN
        Unsigned 32-bit integer
    sctp.nr_sack_nr_gap_block_start  Start
        Unsigned 16-bit integer
    sctp.nr_sack_nr_gap_block_start_tsn  Start TSN
        Unsigned 32-bit integer
    sctp.nr_sack_number_of_duplicated_tsns  Number of duplicated TSNs
        Unsigned 16-bit integer
    sctp.nr_sack_number_of_gap_blocks  Number of gap acknowledgement blocks
        Unsigned 16-bit integer
    sctp.nr_sack_number_of_nr_gap_blocks  Number of nr-gap acknowledgement blocks
        Unsigned 16-bit integer
    sctp.nr_sack_number_of_tsns_gap_acked  Number of TSNs in gap acknowledgement blocks
        Unsigned 32-bit integer
    sctp.nr_sack_number_of_tsns_nr_gap_acked  Number of TSNs in nr-gap acknowledgement blocks
        Unsigned 32-bit integer
    sctp.nr_sack_reserved  Reserved
        Unsigned 16-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_receivers_next_tsn  Receivers next TSN
        Unsigned 32-bit integer
    sctp.parameter_senders_last_assigned_tsn  Senders last assigned TSN
        Unsigned 32-bit integer
    sctp.parameter_senders_next_tsn  Senders next TSN
        Unsigned 32-bit integer
    sctp.parameter_state_cookie  State cookie
        Byte array
    sctp.parameter_stream_reset_request_sequence_number  Stream reset request sequence number
        Unsigned 32-bit integer
    sctp.parameter_stream_reset_response_result  Result
        Unsigned 32-bit integer
    sctp.parameter_stream_reset_response_sequence_number  Stream reset response sequence number
        Unsigned 32-bit integer
    sctp.parameter_stream_reset_sid  Stream Identifier
        Unsigned 16-bit integer
    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.random_number  Random number
        Byte array
    sctp.reassembled_in  Reassembled Message in frame
        Frame number
    sctp.retransmission  This TSN is a retransmission of one in frame
        Frame number
    sctp.retransmission_time  Retransmitted after
        Time duration
    sctp.retransmitted  This TSN is retransmitted in frame
        Frame number
    sctp.retransmitted_after_ack  Chunk was acked prior to retransmission
        Frame number
    sctp.retransmitted_count  TSN was retransmitted this many times
        Unsigned 32-bit integer
    sctp.rtt  The RTT to ACK the chunk was
        Time duration
    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_end_tsn  End TSN
        Unsigned 32-bit integer
    sctp.sack_gap_block_start  Start
        Unsigned 16-bit integer
    sctp.sack_gap_block_start_tsn  Start TSN
        Unsigned 32-bit integer
    sctp.sack_nounce_sum  Nounce sum
        Unsigned 8-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 acknowledgement blocks
        Unsigned 16-bit integer
    sctp.sack_number_of_tsns_gap_acked  Number of TSNs in gap acknowledgement blocks
        Unsigned 32-bit integer
    sctp.shared_key_id  Shared key identifier
        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.supported_chunk_type  Supported chunk type
        Unsigned 8-bit integer
    sctp.verification_tag  Verification tag
        Unsigned 32-bit integer

Subnetwork Dependent Convergence Protocol (sndcp)

    npdu.fragment  N-PDU Fragment
        Frame number
    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
    npdu.reassembled.in  Reassembled in
        Frame number
        N-PDU fragments are reassembled in the given packet
    npdu.reassembled.length  Reassembled N-PDU length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    sndcp.dcomp  DCOMP
        Unsigned 8-bit integer
        Data compression coding
    sndcp.f  First segment indicator bit
        Boolean
    sndcp.m  More bit
        Boolean
    sndcp.npdu  N-PDU
        Unsigned 8-bit integer
    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)

Subnetwork Dependent Convergence Protocol XID (sndcpxid)

    llcgprs.l3xidalgoid  Algorithm identifier
        Unsigned 8-bit integer
        Data
    llcgprs.l3xidcomplen  Length
        Unsigned 8-bit integer
        Data
    llcgprs.l3xiddcomp  DCOMP1
        Unsigned 8-bit integer
        Data
    llcgprs.l3xiddcomppbit  P bit
        Unsigned 8-bit integer
        Data
    llcgprs.l3xidentity  Entity
        Unsigned 8-bit integer
        Data
    llcgprs.l3xidparlen  Length
        Unsigned 8-bit integer
        Data
    llcgprs.l3xidpartype  Parameter type
        Unsigned 8-bit integer
        Data
    llcgprs.l3xidparvalue  Value
        Unsigned 8-bit integer
        Data
    llcgprs.l3xidspare  Spare
        Unsigned 8-bit integer
        Ignore
    sndcpxid.V42bis_p0  P0
        Unsigned 8-bit integer
        Data
    sndcpxid.V42bis_p0spare  Spare
        Unsigned 8-bit integer
        Ignore
    sndcpxid.V42bis_p1_lsb  P1 LSB
        Unsigned 8-bit integer
        Data
    sndcpxid.V42bis_p1_msb  P1 MSB
        Unsigned 8-bit integer
        Data
    sndcpxid.V42bis_p2  P2
        Unsigned 8-bit integer
        Data
    sndcpxid.V44_c0  P2
        Unsigned 8-bit integer
        Data
    sndcpxid.V44_c0_spare  P2
        Unsigned 8-bit integer
        Ignore
    sndcpxid.V44_p0  P0
        Unsigned 8-bit integer
        Data
    sndcpxid.V44_p0spare  Spare
        Unsigned 8-bit integer
        Ignore
    sndcpxid.V44_p1r_lsb  P1r LSB
        Unsigned 8-bit integer
        Data
    sndcpxid.V44_p1r_msb  P1r MSB
        Unsigned 8-bit integer
        Data
    sndcpxid.V44_p1t_lsb  P1t LSB
        Unsigned 8-bit integer
        Data
    sndcpxid.V44_p1t_msb  P1t MSB
        Unsigned 8-bit integer
        Data
    sndcpxid.V44_p3r_lsb  P3r LSB
        Unsigned 8-bit integer
        Data
    sndcpxid.V44_p3r_msb  P3r MSB
        Unsigned 8-bit integer
        Data
    sndcpxid.V44_p3t_lsb  P3t LSB
        Unsigned 8-bit integer
        Data
    sndcpxid.V44_p3t_msb  P3t MSB
        Unsigned 8-bit integer
        Data
    sndcpxid.nsapi10  NSAPI 10
        Unsigned 8-bit integer
        Data
    sndcpxid.nsapi11  NSAPI 11
        Unsigned 8-bit integer
        Data
    sndcpxid.nsapi12  NSAPI 12
        Unsigned 8-bit integer
        Data
    sndcpxid.nsapi13  NSAPI 13
        Unsigned 8-bit integer
        Data
    sndcpxid.nsapi14  NSAPI 14
        Unsigned 8-bit integer
        Data
    sndcpxid.nsapi15  NSAPI 15
        Unsigned 8-bit integer
        Data
    sndcpxid.nsapi5  NSAPI 5
        Unsigned 8-bit integer
        Data
    sndcpxid.nsapi6  NSAPI 6
        Unsigned 8-bit integer
        Data
    sndcpxid.nsapi7  NSAPI 7
        Unsigned 8-bit integer
        Data
    sndcpxid.nsapi8  NSAPI 8
        Unsigned 8-bit integer
        Data
    sndcpxid.nsapi9  NSAPI 9
        Unsigned 8-bit integer
        Data
    sndcpxid.rfc1144_s0  S0 - 1
        Unsigned 8-bit integer
        Data
    sndcpxid.rfc2507_f_max_period_lsb  F Max Period LSB
        Unsigned 8-bit integer
        Data
    sndcpxid.rfc2507_f_max_period_msb  F Max Period MSB
        Unsigned 8-bit integer
        Data
    sndcpxid.rfc2507_f_max_time  F Max Time
        Unsigned 8-bit integer
        Data
    sndcpxid.rfc2507_max_header  Max Header
        Unsigned 8-bit integer
        Data
    sndcpxid.rfc2507_max_non_tcp_space_lsb  TCP non space LSB
        Unsigned 8-bit integer
        Data
    sndcpxid.rfc2507_max_non_tcp_space_msb  TCP non space MSB
        Unsigned 8-bit integer
        Data
    sndcpxid.rfc2507_max_tcp_space  TCP Space
        Unsigned 8-bit integer
        Data
    sndcpxid.rohc_max_cid_lsb  Max CID LSB
        Unsigned 8-bit integer
        Data
    sndcpxid.rohc_max_cid_msb  Max CID MSB
        Unsigned 8-bit integer
        Data
    sndcpxid.rohc_max_cid_spare  Spare
        Unsigned 8-bit integer
        Ignore
    sndcpxid.rohc_max_header  Max header
        Unsigned 8-bit integer
        Data
    sndcpxid.rohc_profile_lsb  Profile LSB
        Unsigned 8-bit integer
        Data
    sndcpxid.rohc_profile_msb  Profile MSB
        Unsigned 8-bit integer
        Data
    sndcpxid.spare  Spare
        Unsigned 8-bit integer
        Ignore

Symantec Enterprise Firewall (symantec)

    symantec.if  Interface
        IPv4 address
    symantec.type  Type
        Unsigned 16-bit integer

Synchronized Multimedia Integration Language (smil)

    smil.a  a
        String
    smil.a.href  href
        String
    smil.a.id  id
        String
    smil.a.show  show
        String
    smil.a.title  title
        String
    smil.anchor  anchor
        String
    smil.anchor.begin  begin
        String
    smil.anchor.coords  coords
        String
    smil.anchor.end  end
        String
    smil.anchor.href  href
        String
    smil.anchor.id  id
        String
    smil.anchor.show  show
        String
    smil.anchor.skip-content  skip-content
        String
    smil.anchor.title  title
        String
    smil.animation  animation
        String
    smil.animation.abstract  abstract
        String
    smil.animation.alt  alt
        String
    smil.animation.author  author
        String
    smil.animation.begin  begin
        String
    smil.animation.clip-begin  clip-begin
        String
    smil.animation.clip-end  clip-end
        String
    smil.animation.copyright  copyright
        String
    smil.animation.dur  dur
        String
    smil.animation.end  end
        String
    smil.animation.fill  fill
        String
    smil.animation.id  id
        String
    smil.animation.longdesc  longdesc
        String
    smil.animation.region  region
        String
    smil.animation.repeat  repeat
        String
    smil.animation.src  src
        String
    smil.animation.system-bitrate  system-bitrate
        String
    smil.animation.system-captions  system-captions
        String
    smil.animation.system-language  system-language
        String
    smil.animation.system-overdub-or-caption  system-overdub-or-caption
        String
    smil.animation.system-required  system-required
        String
    smil.animation.system-screen-depth  system-screen-depth
        String
    smil.animation.system-screen-size  system-screen-size
        String
    smil.animation.title  title
        String
    smil.animation.type  type
        String
    smil.audio  audio
        String
    smil.audio.abstract  abstract
        String
    smil.audio.alt  alt
        String
    smil.audio.author  author
        String
    smil.audio.begin  begin
        String
    smil.audio.clip-begin  clip-begin
        String
    smil.audio.clip-end  clip-end
        String
    smil.audio.copyright  copyright
        String
    smil.audio.dur  dur
        String
    smil.audio.end  end
        String
    smil.audio.fill  fill
        String
    smil.audio.id  id
        String
    smil.audio.longdesc  longdesc
        String
    smil.audio.region  region
        String
    smil.audio.repeat  repeat
        String
    smil.audio.src  src
        String
    smil.audio.system-bitrate  system-bitrate
        String
    smil.audio.system-captions  system-captions
        String
    smil.audio.system-language  system-language
        String
    smil.audio.system-overdub-or-caption  system-overdub-or-caption
        String
    smil.audio.system-required  system-required
        String
    smil.audio.system-screen-depth  system-screen-depth
        String
    smil.audio.system-screen-size  system-screen-size
        String
    smil.audio.title  title
        String
    smil.audio.type  type
        String
    smil.body  body
        String
    smil.body.id  id
        String
    smil.head  head
        String
    smil.head.id  id
        String
    smil.img  img
        String
    smil.img.abstract  abstract
        String
    smil.img.alt  alt
        String
    smil.img.author  author
        String
    smil.img.begin  begin
        String
    smil.img.copyright  copyright
        String
    smil.img.dur  dur
        String
    smil.img.end  end
        String
    smil.img.fill  fill
        String
    smil.img.id  id
        String
    smil.img.longdesc  longdesc
        String
    smil.img.region  region
        String
    smil.img.repeat  repeat
        String
    smil.img.src  src
        String
    smil.img.system-bitrate  system-bitrate
        String
    smil.img.system-captions  system-captions
        String
    smil.img.system-language  system-language
        String
    smil.img.system-overdub-or-caption  system-overdub-or-caption
        String
    smil.img.system-required  system-required
        String
    smil.img.system-screen-depth  system-screen-depth
        String
    smil.img.system-screen-size  system-screen-size
        String
    smil.img.title  title
        String
    smil.img.type  type
        String
    smil.layout  layout
        String
    smil.layout.id  id
        String
    smil.layout.type  type
        String
    smil.meta  meta
        String
    smil.meta.content  content
        String
    smil.meta.name  name
        String
    smil.meta.skip-content  skip-content
        String
    smil.par  par
        String
    smil.par.abstract  abstract
        String
    smil.par.author  author
        String
    smil.par.begin  begin
        String
    smil.par.copyright  copyright
        String
    smil.par.dur  dur
        String
    smil.par.end  end
        String
    smil.par.endsync  endsync
        String
    smil.par.id  id
        String
    smil.par.region  region
        String
    smil.par.repeat  repeat
        String
    smil.par.system-bitrate  system-bitrate
        String
    smil.par.system-captions  system-captions
        String
    smil.par.system-language  system-language
        String
    smil.par.system-overdub-or-caption  system-overdub-or-caption
        String
    smil.par.system-required  system-required
        String
    smil.par.system-screen-depth  system-screen-depth
        String
    smil.par.system-screen-size  system-screen-size
        String
    smil.par.title  title
        String
    smil.ref  ref
        String
    smil.ref.abstract  abstract
        String
    smil.ref.alt  alt
        String
    smil.ref.author  author
        String
    smil.ref.begin  begin
        String
    smil.ref.clip-begin  clip-begin
        String
    smil.ref.clip-end  clip-end
        String
    smil.ref.copyright  copyright
        String
    smil.ref.dur  dur
        String
    smil.ref.end  end
        String
    smil.ref.fill  fill
        String
    smil.ref.id  id
        String
    smil.ref.longdesc  longdesc
        String
    smil.ref.region  region
        String
    smil.ref.repeat  repeat
        String
    smil.ref.src  src
        String
    smil.ref.system-bitrate  system-bitrate
        String
    smil.ref.system-captions  system-captions
        String
    smil.ref.system-language  system-language
        String
    smil.ref.system-overdub-or-caption  system-overdub-or-caption
        String
    smil.ref.system-required  system-required
        String
    smil.ref.system-screen-depth  system-screen-depth
        String
    smil.ref.system-screen-size  system-screen-size
        String
    smil.ref.title  title
        String
    smil.ref.type  type
        String
    smil.region  region
        String
    smil.region.background-color  background-color
        String
    smil.region.fit  fit
        String
    smil.region.height  height
        String
    smil.region.id  id
        String
    smil.region.left  left
        String
    smil.region.skip-content  skip-content
        String
    smil.region.title  title
        String
    smil.region.top  top
        String
    smil.region.width  width
        String
    smil.region.z-index  z-index
        String
    smil.root-layout  root-layout
        String
    smil.root-layout.background-color  background-color
        String
    smil.root-layout.height  height
        String
    smil.root-layout.id  id
        String
    smil.root-layout.skip-content  skip-content
        String
    smil.root-layout.title  title
        String
    smil.root-layout.width  width
        String
    smil.seq  seq
        String
    smil.seq.abstract  abstract
        String
    smil.seq.author  author
        String
    smil.seq.begin  begin
        String
    smil.seq.copyright  copyright
        String
    smil.seq.dur  dur
        String
    smil.seq.end  end
        String
    smil.seq.id  id
        String
    smil.seq.region  region
        String
    smil.seq.repeat  repeat
        String
    smil.seq.system-bitrate  system-bitrate
        String
    smil.seq.system-captions  system-captions
        String
    smil.seq.system-language  system-language
        String
    smil.seq.system-overdub-or-caption  system-overdub-or-caption
        String
    smil.seq.system-required  system-required
        String
    smil.seq.system-screen-depth  system-screen-depth
        String
    smil.seq.system-screen-size  system-screen-size
        String
    smil.seq.title  title
        String
    smil.smil  smil
        String
    smil.smil.id  id
        String
    smil.switch  switch
        String
    smil.switch.id  id
        String
    smil.switch.title  title
        String
    smil.text  text
        String
    smil.text.abstract  abstract
        String
    smil.text.alt  alt
        String
    smil.text.author  author
        String
    smil.text.begin  begin
        String
    smil.text.copyright  copyright
        String
    smil.text.dur  dur
        String
    smil.text.end  end
        String
    smil.text.fill  fill
        String
    smil.text.id  id
        String
    smil.text.longdesc  longdesc
        String
    smil.text.region  region
        String
    smil.text.repeat  repeat
        String
    smil.text.src  src
        String
    smil.text.system-bitrate  system-bitrate
        String
    smil.text.system-captions  system-captions
        String
    smil.text.system-language  system-language
        String
    smil.text.system-overdub-or-caption  system-overdub-or-caption
        String
    smil.text.system-required  system-required
        String
    smil.text.system-screen-depth  system-screen-depth
        String
    smil.text.system-screen-size  system-screen-size
        String
    smil.text.title  title
        String
    smil.text.type  type
        String
    smil.textstream  textstream
        String
    smil.textstream.abstract  abstract
        String
    smil.textstream.alt  alt
        String
    smil.textstream.author  author
        String
    smil.textstream.begin  begin
        String
    smil.textstream.clip-begin  clip-begin
        String
    smil.textstream.clip-end  clip-end
        String
    smil.textstream.copyright  copyright
        String
    smil.textstream.dur  dur
        String
    smil.textstream.end  end
        String
    smil.textstream.fill  fill
        String
    smil.textstream.id  id
        String
    smil.textstream.longdesc  longdesc
        String
    smil.textstream.region  region
        String
    smil.textstream.repeat  repeat
        String
    smil.textstream.src  src
        String
    smil.textstream.system-bitrate  system-bitrate
        String
    smil.textstream.system-captions  system-captions
        String
    smil.textstream.system-language  system-language
        String
    smil.textstream.system-overdub-or-caption  system-overdub-or-caption
        String
    smil.textstream.system-required  system-required
        String
    smil.textstream.system-screen-depth  system-screen-depth
        String
    smil.textstream.system-screen-size  system-screen-size
        String
    smil.textstream.title  title
        String
    smil.textstream.type  type
        String
    smil.video  video
        String
    smil.video.abstract  abstract
        String
    smil.video.alt  alt
        String
    smil.video.author  author
        String
    smil.video.begin  begin
        String
    smil.video.clip-begin  clip-begin
        String
    smil.video.clip-end  clip-end
        String
    smil.video.copyright  copyright
        String
    smil.video.dur  dur
        String
    smil.video.end  end
        String
    smil.video.fill  fill
        String
    smil.video.id  id
        String
    smil.video.longdesc  longdesc
        String
    smil.video.region  region
        String
    smil.video.repeat  repeat
        String
    smil.video.src  src
        String
    smil.video.system-bitrate  system-bitrate
        String
    smil.video.system-captions  system-captions
        String
    smil.video.system-language  system-language
        String
    smil.video.system-overdub-or-caption  system-overdub-or-caption
        String
    smil.video.system-required  system-required
        String
    smil.video.system-screen-depth  system-screen-depth
        String
    smil.video.system-screen-size  system-screen-size
        String
    smil.video.title  title
        String
    smil.video.type  type
        String

Synchronous Data Link Control (SDLC) (sdlc)

    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

Synergy (synergy)

    synergy.ack  resolution change acknowledgment
        No value
    synergy.cbye  Close Connection
        No value
    synergy.cinn  Enter Screen
        No value
    synergy.cinn.mask  Modifier Key Mask
        Unsigned 16-bit integer
    synergy.cinn.sequence  Sequence Number
        Unsigned 32-bit integer
    synergy.cinn.x  Screen X
        Unsigned 16-bit integer
    synergy.cinn.y  Screen Y
        Unsigned 16-bit integer
    synergy.clientdata  Client Data
        No value
    synergy.clipboard  Grab Clipboard
        No value
    synergy.clipboard.identifier  Identifier
        Unsigned 8-bit integer
    synergy.clipboard.sequence  Sequence Number
        Unsigned 32-bit integer
    synergy.clipboarddata  Clipboard Data
        No value
    synergy.clipboarddata.data  Clipboard Data
        String
    synergy.clipboarddata.identifier  Clipboard Identifier
        Unsigned 8-bit integer
    synergy.clipboarddata.sequence  Sequence Number
        Unsigned 32-bit integer
    synergy.clps  coordinate of leftmost pixel on secondary screen
        Unsigned 16-bit integer
    synergy.clps.ctp  coordinate of topmost pixel on secondary screen
        Unsigned 16-bit integer
    synergy.clps.hsp  height of secondary screen in pixels
        Unsigned 16-bit integer
    synergy.clps.swz  size of warp zone
        Unsigned 16-bit integer
    synergy.clps.wsp  width of secondary screen in pixels
        Unsigned 16-bit integer
    synergy.clps.x  x position of the mouse on the secondary screen
        Unsigned 16-bit integer
    synergy.clps.y  y position of the mouse on the secondary screen
        Unsigned 16-bit integer
    synergy.cnop  No Operation
        No value
    synergy.cout  Leave Screen
        No value
    synergy.ebsy  Connection Already in Use
        No value
    synergy.eicv  incompatible versions
        No value
    synergy.eicv.major  Major Version Number
        Unsigned 16-bit integer
    synergy.eicv.minor  Minor Version Number
        Unsigned 16-bit integer
    synergy.handshake  Handshake
        No value
    synergy.handshake.client  Client Name
        String
    synergy.handshake.majorversion  Major Version
        Unsigned 16-bit integer
    synergy.handshake.minorversion  Minor Version
        Unsigned 16-bit integer
    synergy.keyautorepeat  key auto-repeat
        No value
    synergy.keyautorepeat.key  Key Button
        Unsigned 16-bit integer
    synergy.keyautorepeat.keyid  Key ID
        Unsigned 16-bit integer
    synergy.keyautorepeat.mask  Key modifier Mask
        Unsigned 16-bit integer
    synergy.keyautorepeat.repeat  Number of Repeats
        Unsigned 16-bit integer
    synergy.keypressed  Key Pressed
        No value
    synergy.keypressed.key  Key Button
        Unsigned 16-bit integer
    synergy.keypressed.keyid  Key Id
        Unsigned 16-bit integer
    synergy.keypressed.mask  Key Modifier Mask
        Unsigned 16-bit integer
    synergy.keyreleased  key released
        No value
    synergy.keyreleased.key  Key Button
        Unsigned 16-bit integer
    synergy.keyreleased.keyid  Key Id
        Unsigned 16-bit integer
    synergy.mousebuttonpressed  Mouse Button Pressed
        Unsigned 8-bit integer
    synergy.mousebuttonreleased  Mouse Button Released
        Unsigned 8-bit integer
    synergy.mousemoved  Mouse Moved
        No value
    synergy.mousemoved.x  X Axis
        Unsigned 16-bit integer
    synergy.mousemoved.y  Y Axis
        Unsigned 16-bit integer
    synergy.qinf  Query Screen Info
        No value
    synergy.relativemousemove  Relative Mouse Move
        No value
    synergy.relativemousemove.x  X Axis
        Unsigned 16-bit integer
    synergy.relativemousemove.y  Y Axis
        Unsigned 16-bit integer
    synergy.resetoptions  Reset Options
        No value
    synergy.screensaver  Screen Saver Change
        Boolean
    synergy.setoptions  Set Options
        Unsigned 32-bit integer
    synergy.unknown  unknown
        No value
    synergy.violation  protocol violation
        No value
    synergykeyreleased.mask  Key Modifier Mask
        Unsigned 16-bit integer

Syslog message (syslog)

    syslog.facility  Facility
        Unsigned 8-bit integer
        Message facility
    syslog.level  Level
        Unsigned 8-bit integer
        Message level
    syslog.msg  Message
        String
        Message Text
    syslog.msu_present  SS7 MSU present
        Boolean
        True if an SS7 MSU was detected in the syslog message

Systems Network Architecture (sna)

    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 Qualifier 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 Identifier
        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 Indicator
        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

Systems Network Architecture XID (sna_xid)

T.30 (t30)

    t30.Address  Address
        Unsigned 8-bit integer
        Address Field
    t30.Control  Control
        Unsigned 8-bit integer
        Control Field
    t30.FacsimileControl  Facsimile Control
        Unsigned 8-bit integer
    t30.fif.100x100cg  100 pels/25.4 mm x 100 lines/25.4 mm for colour/gray scale
        Boolean
    t30.fif.1200x1200  1200 pels/25.4 mm x 1200 lines/25.4 mm
        Boolean
    t30.fif.12c  12 bits/pel component
        Boolean
    t30.fif.300x300  300x300 pels/25.4 mm
        Boolean
    t30.fif.300x600  300 pels/25.4 mm x 600 lines/25.4 mm
        Boolean
    t30.fif.3gmn  3rd Generation Mobile Network
        Boolean
    t30.fif.400x800  400 pels/25.4 mm x 800 lines/25.4 mm
        Boolean
    t30.fif.600x1200  600 pels/25.4 mm x 1200 lines/25.4 mm
        Boolean
    t30.fif.600x600  600 pels/25.4 mm x 600 lines/25.4 mm
        Boolean
    t30.fif.acn2c  Alternative cipher number 2 capability
        Boolean
    t30.fif.acn3c  Alternative cipher number 3 capability
        Boolean
    t30.fif.ahsn2  Alternative hashing system number 2 capability
        Boolean
    t30.fif.ahsn3  Alternative hashing system number 3 capability
        Boolean
    t30.fif.bft  Binary File Transfer (BFT)
        Boolean
    t30.fif.btm  Basic Transfer Mode (BTM)
        Boolean
    t30.fif.bwmrcp  Black and white mixed raster content profile (MRCbw)
        Boolean
    t30.fif.cg1200x1200  Colour/gray scale 1200 pels/25.4 mm x 1200 lines/25.4 mm resolution
        Boolean
    t30.fif.cg300  Colour/gray-scale 300 pels/25.4 mm x 300 lines/25.4 mm or 400 pels/25.4 mm x 400 lines/25.4 mm resolution
        Boolean
    t30.fif.cg600x600  Colour/gray scale 600 pels/25.4 mm x 600 lines/25.4 mm resolution
        Boolean
    t30.fif.cgr  Custom gamut range
        Boolean
    t30.fif.ci  Custom illuminant
        Boolean
    t30.fif.cm  Compress/Uncompress mode
        Boolean
    t30.fif.country_code  ITU-T Country code
        Unsigned 8-bit integer
    t30.fif.dnc  Digital network capability
        Boolean
    t30.fif.do  Duplex operation
        Boolean
    t30.fif.dspcam  Double sided printing capability (alternate mode)
        Boolean
    t30.fif.dspccm  Double sided printing capability (continuous mode)
        Boolean
    t30.fif.dsr  Data signalling rate
        Unsigned 8-bit integer
    t30.fif.dsr_dcs  Data signalling rate
        Unsigned 8-bit integer
    t30.fif.dtm  Document Transfer Mode (DTM)
        Boolean
    t30.fif.ebft  Extended BFT Negotiations capability
        Boolean
    t30.fif.ecm  Error correction mode
        Boolean
    t30.fif.edi  Electronic Data Interchange (EDI)
        Boolean
    t30.fif.ext  Extension indicator
        Boolean
    t30.fif.fcm  Full colour mode
        Boolean
    t30.fif.fs_dcm  Frame size
        Boolean
    t30.fif.fvc  Field valid capability
        Boolean
    t30.fif.hfx40  HFX40 cipher capability
        Boolean
    t30.fif.hfx40i  HFX40-I hashing capability
        Boolean
    t30.fif.hkm  HKM key management capability
        Boolean
    t30.fif.ibrp  Inch based resolution preferred
        Boolean
    t30.fif.ira  Internet Routing Address (IRA)
        Boolean
    t30.fif.isp  Internet Selective Polling Address (ISP)
        Boolean
    t30.fif.jpeg  JPEG coding
        Boolean
    t30.fif.mbrp  Metric based resolution preferred
        Boolean
    t30.fif.mm  Mixed mode (Annex E/T.4)
        Boolean
    t30.fif.mslt_dcs  Minimum scan line time
        Unsigned 8-bit integer
    t30.fif.msltchr  Minimum scan line time capability for higher resolutions
        Boolean
    t30.fif.msltcr  Minimum scan line time capability at the receiver
        Unsigned 8-bit integer
    t30.fif.mspc  Multiple selective polling capability
        Boolean
    t30.fif.naleg  North American Legal (215.9 x 355.6 mm) capability
        Boolean
    t30.fif.nalet  North American Letter (215.9 x 279.4 mm) capability
        Boolean
    t30.fif.non_standard_cap  Non-standard capabilities
        Byte array
    t30.fif.ns  No subsampling (1:1:1)
        Boolean
    t30.fif.number  Number
        String
    t30.fif.oc  Override capability
        Boolean
    t30.fif.op  Octets preferred
        Boolean
    t30.fif.passw  Password
        Boolean
    t30.fif.pht  Preferred Huffman tables
        Boolean
    t30.fif.pi  Plane interleave
        Boolean
    t30.fif.plmss  Page length maximum strip size for T.44 (Mixed Raster Content)
        Boolean
    t30.fif.pm26  Processable mode 26 (ITU T T.505)
        Boolean
    t30.fif.ps  Polled Subaddress
        Boolean
    t30.fif.r16x15  R16x15.4 lines/mm and/or 400x400 pels/25.4 mm
        Boolean
    t30.fif.r8x15  R8x15.4 lines/mm
        Boolean
    t30.fif.res  R8x7.7 lines/mm and/or 200x200 pels/25.4 mm
        Boolean
    t30.fif.rfo  Receiver fax operation
        Boolean
    t30.fif.rl_dcs  Recording length capability
        Unsigned 8-bit integer
    t30.fif.rlc  Recording length capability
        Unsigned 8-bit integer
    t30.fif.rsa  RSA key management capability
        Boolean
    t30.fif.rtfc  Ready to transmit a facsimile document (polling)
        Boolean
    t30.fif.rtif  Real-time Internet fax (ITU T T.38)
        Boolean
    t30.fif.rts  Resolution type selection
        Boolean
    t30.fif.rttcmmd  Ready to transmit a character or mixed mode document (polling)
        Boolean
    t30.fif.rttd  Ready to transmit a data file (polling)
        Boolean
    t30.fif.rw_dcs  Recording width
        Unsigned 8-bit integer
    t30.fif.rwc  Recording width capabilities
        Unsigned 8-bit integer
    t30.fif.sc  Subaddressing capability
        Boolean
    t30.fif.sdmc  SharedDataMemory capacity
        Unsigned 8-bit integer
    t30.fif.sit  Sender Identification transmission
        Boolean
    t30.fif.sm  Store and forward Internet fax- Simple mode (ITU-T T.37)
        Boolean
    t30.fif.sp  Selective polling
        Boolean
    t30.fif.spcbft  Simple Phase C BFT Negotiations capability
        Boolean
    t30.fif.spscb  Single-progression sequential coding (ITU-T T.85) basic capability
        Boolean
    t30.fif.spsco  Single-progression sequential coding (ITU-T T.85) optional L0 capability
        Boolean
    t30.fif.t43  T.43 coding
        Boolean
    t30.fif.t441  T.44 (Mixed Raster Content)
        Boolean
    t30.fif.t442  T.44 (Mixed Raster Content)
        Boolean
    t30.fif.t443  T.44 (Mixed Raster Content)
        Boolean
    t30.fif.t45  T.45 (run length colour encoding)
        Boolean
    t30.fif.t6  T.6 coding capability
        Boolean
    t30.fif.tdcc  Two dimensional coding capability
        Boolean
    t30.fif.v8c  V.8 capabilities
        Boolean
    t30.fif.vc32k  Voice coding with 32k ADPCM (ITU T G.726)
        Boolean
    t30.pps.fcf2  Post-message command
        Unsigned 8-bit integer
    t30.t4.block_count  Block counter
        Unsigned 8-bit integer
    t30.t4.data  T.4 Facsimile data field
        Byte array
    t30.t4.frame_count  Frame counter
        Unsigned 8-bit integer
    t30.t4.frame_num  T.4 Frame number
        Unsigned 8-bit integer
    t30.t4.page_count  Page counter
        Unsigned 8-bit integer

T.38 (t38)

    t38.Data_Field_item  Data-Field item
        No value
    t38.IFPPacket  IFPPacket
        No value
    t38.UDPTLPacket  UDPTLPacket
        No value
    t38.data_field  data-field
        Unsigned 32-bit integer
    t38.error_recovery  error-recovery
        Unsigned 32-bit integer
    t38.fec_data  fec-data
        Unsigned 32-bit integer
    t38.fec_data_item  fec-data item
        Byte array
        OCTET_STRING
    t38.fec_info  fec-info
        No value
    t38.fec_npackets  fec-npackets
        Signed 32-bit integer
        INTEGER
    t38.field_data  field-data
        Byte array
    t38.field_type  field-type
        Unsigned 32-bit integer
    t38.fragment  Message fragment
        Frame number
    t38.fragment.error  Message defragmentation error
        Frame number
    t38.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    t38.fragment.overlap  Message fragment overlap
        Boolean
    t38.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    t38.fragment.too_long_fragment  Message fragment too long
        Boolean
    t38.fragments  Message fragments
        No value
    t38.primary_ifp_packet  primary-ifp-packet
        No value
    t38.reassembled.in  Reassembled in
        Frame number
    t38.reassembled.length  Reassembled T38 length
        Unsigned 32-bit integer
    t38.secondary_ifp_packets  secondary-ifp-packets
        Unsigned 32-bit integer
    t38.secondary_ifp_packets_item  secondary-ifp-packets item
        No value
        OpenType_IFPPacket
    t38.seq_number  seq-number
        Unsigned 32-bit integer
    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_data  t30-data
        Unsigned 32-bit integer
    t38.t30_indicator  t30-indicator
        Unsigned 32-bit integer
    t38.type_of_msg  type-of-msg
        Unsigned 32-bit integer

TACACS (tacacs)

    tacacs.destaddr  Destination address
        IPv4 address
    tacacs.destport  Destination port
        Unsigned 16-bit integer
    tacacs.line  Line
        Unsigned 16-bit integer
    tacacs.nonce  Nonce
        Unsigned 16-bit integer
    tacacs.passlen  Password length
        Unsigned 8-bit integer
    tacacs.reason  Reason
        Unsigned 8-bit integer
    tacacs.response  Response
        Unsigned 8-bit integer
    tacacs.result1  Result 1
        Unsigned 32-bit integer
    tacacs.result2  Result 2
        Unsigned 32-bit integer
    tacacs.result3  Result 3
        Unsigned 16-bit integer
    tacacs.type  Type
        Unsigned 8-bit integer
    tacacs.userlen  Username length
        Unsigned 8-bit integer
    tacacs.version  Version
        Unsigned 8-bit integer

TACACS+ (tacplus)

    tacplus.acct.flags  Flags
        Unsigned 8-bit integer
    tacplus.flags  Flags
        Unsigned 8-bit integer
    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
    tacplus.request  Request
        Boolean
        TRUE if TACACS+ request
    tacplus.response  Response
        Boolean
        TRUE if TACACS+ response
    tacplus.seqno  Sequence number
        Unsigned 8-bit integer
    tacplus.session_id  Session ID
        Unsigned 32-bit integer
    tacplus.type  Type
        Unsigned 8-bit integer

TCP Encapsulation of IPsec Packets (tcpencap)

    tcpencap.espzero  ESP zero
        Unsigned 16-bit integer
    tcpencap.ikedirection  ISAKMP traffic direction
        Unsigned 16-bit integer
    tcpencap.magic  Magic number
        Byte array
    tcpencap.magic2  Magic 2
        Byte array
    tcpencap.proto  Protocol
        Unsigned 8-bit integer
    tcpencap.seq  Sequence number
        Unsigned 16-bit integer
    tcpencap.unknown  Unknown trailer
        Byte array
    tcpencap.zero  All zero
        Byte array

TDMA RTmac Discipline (tdma)

TEI Management Procedure, Channel D (LAPD) (tei_management)

    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

TN3270 Protocol (tn3270)

    hf_tn3270_aid  Attention Identification
        Unsigned 8-bit integer
    hf_tn3270_partition_command  Partition Command
        Unsigned 8-bit integer
    hf_tn3270_partition_rv  The y, or row, origin of the viewport relative to the top edge of the usable area
        Unsigned 16-bit integer
    tn3270..tn3270e_header_data  TN3270E Header Data
        EBCDIC string
    tn3270.3270_tranlim  Maximum transmission size allowed outbound
        Unsigned 16-bit integer
    tn3270.all_character_attributes  all_character_attributes
        Unsigned 8-bit integer
    tn3270.ap_apa  All Points addressability supported
        Boolean
    tn3270.ap_apres1  Reserved
        Boolean
    tn3270.ap_apres2  Reserved
        Boolean
    tn3270.ap_cm  Character multiplier
        Unsigned 8-bit integer
    tn3270.ap_co  Column overhead
        Unsigned 8-bit integer
    tn3270.ap_flags  Flags
        Unsigned 8-bit integer
    tn3270.ap_fo  Fixed overhead
        Unsigned 16-bit integer
    tn3270.ap_horizontal_scrolling  Horizontal Scrolling Supported
        Boolean
    tn3270.ap_lc  Presentation space local copy supported
        Boolean
    tn3270.ap_m  Total available partition storage
        Unsigned 16-bit integer
    tn3270.ap_mp  Modify Partition supported
        Boolean
    tn3270.ap_na   Max number of alphanumeric partitions
        Unsigned 8-bit integer
    tn3270.ap_pp  Partition protection supported
        Boolean
    tn3270.ap_ro  Row overhead
        Unsigned 8-bit integer
    tn3270.ap_vertical_scrolling  Vertical Scrolling Supported
        Boolean
    tn3270.asia_sdp_ic_func  SO/SI Creation supported
        Boolean
    tn3270.asia_sdp_sosi_soset  Set ID of the Shift Out (SO) character set
        Unsigned 8-bit integer
        Set ID of the Shift Out (SO) character set
    tn3270.attribute_type  Attribute Type
        Unsigned 8-bit integer
    tn3270.begin_end_flags1  Begin End Flags1
        Unsigned 8-bit integer
    tn3270.begin_end_flags2  Begin End Flags2
        Unsigned 8-bit integer
    tn3270.bsc  SNA BSC
        Unsigned 8-bit integer
    tn3270.buffer_address  Buffer Address
        Unsigned 16-bit integer
    tn3270.c_cav  Color attribute value accepted by the device
        Unsigned 8-bit integer
    tn3270.c_ci  Color identifier
        Unsigned 8-bit integer
    tn3270.c_offset  Byte offset within the String Control Byte string or structured field of the checkpointed character
        Unsigned 16-bit integer
    tn3270.c_scsoff  Byte offset within the parameterized SCS control code (for example, TRN) of the checkpointed character.
        Unsigned 16-bit integer
    tn3270.c_seqoff  Byte offset within the RU of the checkpointed character
        Unsigned 16-bit integer
    tn3270.c_sequence  RU sequence number of the RU containing the checkpoint character
        Unsigned 16-bit integer
    tn3270.cc  Cursor column offset
        Unsigned 16-bit integer
    tn3270.cc_prtblk  Printer only - black ribbon is loaded
        Boolean
    tn3270.ccc  Copy Control Code
        Unsigned 8-bit integer
    tn3270.ccc_coding  Coding
        Unsigned 8-bit integer
    tn3270.ccc_copytype  Type of Data to be Copied
        Unsigned 8-bit integer
    tn3270.ccc_printout  Printout Format
        Unsigned 8-bit integer
    tn3270.ccc_sound_alarm  The sound-alarm bit
        Boolean
    tn3270.ccc_start_print  The start-print bit
        Boolean
    tn3270.ccsgid  Coded Graphic Character Set Identifier.
        Unsigned 64-bit integer
    tn3270.ccsid  Coded Character Set Identifier.
        Unsigned 64-bit integer
    tn3270.character_code  Character Code
        Unsigned 8-bit integer
    tn3270.character_sets_flags1  Flags (1)
        Unsigned 8-bit integer
    tn3270.character_sets_flags2  Flags (2)
        Unsigned 8-bit integer
    tn3270.charset  Character set parameter of Set Attribute control in effect at the checkpoint
        Unsigned 8-bit integer
    tn3270.checkpoint  Byte offset from Set Checkpoint Interval structured field to the first character afterhe code point or character that caused an eject to the checkpointed page
        Unsigned 32-bit integer
    tn3270.color  Color
        Unsigned 8-bit integer
    tn3270.color_command  Color Command
        Unsigned 16-bit integer
    tn3270.color_flags  Flags
        Unsigned 8-bit integer
    tn3270.command_code  Command Code
        Unsigned 8-bit integer
        Command Code
    tn3270.cro  Cursor row offset
        Unsigned 16-bit integer
    tn3270.cs_cf  CCSID present
        Boolean
    tn3270.cs_ch2  Two-byte coded character sets are supported
        Boolean
    tn3270.cs_descriptor_flags  Flags
        Unsigned 8-bit integer
    tn3270.cs_descriptor_set  Device Specific Character Set ID (PS store No.)
        Unsigned 8-bit integer
    tn3270.cs_dl  Length of each descriptor
        Unsigned 8-bit integer
    tn3270.cs_ds_cb  No LCID compare
        Boolean
    tn3270.cs_ds_char  Double-Byte coded character set
        Boolean
    tn3270.cs_ds_load  Loadable character set
        Boolean
    tn3270.cs_ds_triple  Triple-plane character set
        Boolean
    tn3270.cs_form_type1  18-byte form; the first 2 bytes contain a 16-bit vertical slice, the following 16 bytes contain 8-bit horizontal slices. For a 9 x 12 character matrix the last 4 bytes contain binary zero.
        Boolean
    tn3270.cs_form_type2  18-byte form; the first 2 bytes contain a 16-bit vertical slice, the following 16 bytes contain 8-bit horizontal slices. For a 9 x 12 character matrix the last 4 bytes contain binary zero. (COMPRESSED)
        Boolean
    tn3270.cs_form_type3  Row loading (from top to bottom)
        Boolean
    tn3270.cs_form_type4  Row loading (from top to bottom) (Compressed)
        Boolean
    tn3270.cs_form_type5  Column loading (from left to right)
        Boolean
    tn3270.cs_form_type6  Column loading (from left to right) (Compressed)
        Boolean
    tn3270.cs_form_type8  Vector
        Boolean
    tn3270.cs_ge  Graphic Escape supported
        Boolean
    tn3270.cs_gf  CGCSGID is present
        Boolean
    tn3270.cs_lps  Load PSSF is supported
        Boolean
    tn3270.cs_lpse  Load PS EXTENDED is supported
        Boolean
    tn3270.cs_mi  Multiple LCIDs are supported
        Boolean
    tn3270.cs_ms  More than one size of character slot is supported
        Boolean
    tn3270.cs_pscs  Load PS slot size match not required
        Boolean
    tn3270.cs_res  Reserved
        Boolean
    tn3270.cs_res2  Reserved
        Boolean
    tn3270.cs_res3  Reserved
        Boolean
    tn3270.cs_sdh  Default character slot height
        Unsigned 8-bit integer
    tn3270.cs_sdw  Default character slot width
        Unsigned 8-bit integer
    tn3270.cursor_x  Cursor X
        Unsigned 8-bit integer
    tn3270.cursor_y  Cursor Y
        Unsigned 8-bit integer
    tn3270.cw  Column Offset of Window Origin
        Unsigned 16-bit integer
    tn3270.data_chain_bitmask  Mask
        Unsigned 8-bit integer
    tn3270.db_cavdef  Default color attribute value
        Unsigned 8-bit integer
    tn3270.db_cidef  Default background color identifier
        Unsigned 8-bit integer
    tn3270.dc_both  Both
        Boolean
    tn3270.dc_device  From Device Only
        Boolean
    tn3270.dc_dir_flags  Indicates which direction can use the Data Chain structured field.
        Unsigned 8-bit integer
    tn3270.dc_to_device  To Device Only
        Boolean
    tn3270.ddm_ddmss   DDM subset identifier
        Unsigned 8-bit integer
    tn3270.ddm_flags  Flags (Reserved)
        Unsigned 8-bit integer
    tn3270.ddm_limin  Maximum DDM bytes/transmission allowed inbound
        Unsigned 16-bit integer
    tn3270.ddm_limout  Maximum DDM bytes/transmission allowed outbound
        Unsigned 16-bit integer
    tn3270.ddm_nss  Number of subsets supported
        Unsigned 8-bit integer
    tn3270.destination_or_origin_bitmask  Mask
        Unsigned 8-bit integer
    tn3270.dia_diafn  DIA function set number
        Unsigned 16-bit integer
    tn3270.dia_diafs  DIA function set identifier
        Unsigned 8-bit integer
    tn3270.dia_flags  Flags (Reserved)
        Unsigned 16-bit integer
    tn3270.dia_limin  Maximum DIA bytes/transmission allowed inbound
        Unsigned 16-bit integer
    tn3270.dia_limout  Maximum DIA bytes/transmission allowed outbound
        Unsigned 16-bit integer
    tn3270.dia_nfs  Number of subsets supported
        Unsigned 8-bit integer
    tn3270.double_byte_sf_id  Structured Field
        Unsigned 8-bit integer
    tn3270.ds_default_sfid  Default Data Stream
        Unsigned 8-bit integer
    tn3270.ds_sfid  Supported Data Stream
        Unsigned 8-bit integer
    tn3270.erase_flags  tn3270.erase_flags
        Unsigned 8-bit integer
        tn3270.erase_flags
    tn3270.esubsn  Ending subsection.
        Unsigned 8-bit integer
    tn3270.exception_or_status_flags  Flags
        Unsigned 8-bit integer
    tn3270.extended_highlighting  Extended Highlighting
        Unsigned 8-bit integer
    tn3270.extended_ps_color   Color planes
        Unsigned 8-bit integer
    tn3270.extended_ps_echar  Ending code point
        Unsigned 8-bit integer
    tn3270.extended_ps_flags  Flags
        Unsigned 8-bit integer
    tn3270.extended_ps_length  Length of parameters for extended form, including the length parameter
        Unsigned 8-bit integer
    tn3270.extended_ps_lh  Number of Y-units in character cell (depth ofcharacter matrixes)
        Unsigned 8-bit integer
    tn3270.extended_ps_lw  Number of X-units in character cell (width of character matrixes)
        Unsigned 8-bit integer
    tn3270.extended_ps_nh  Number of height pairs
        Unsigned 8-bit integer
    tn3270.extended_ps_nw  Number of width pairs
        Unsigned 8-bit integer
    tn3270.extended_ps_res  Reserved
        Unsigned 8-bit integer
    tn3270.extended_ps_stsubs  Starting Subsection Identifier
        Unsigned 8-bit integer
    tn3270.extended_ps_subsn  Subsection ID
        Unsigned 8-bit integer
    tn3270.fa.display  Display
        Unsigned 8-bit integer
    tn3270.fa.graphic_convert1  Graphic Convert1
        Boolean
    tn3270.fa.graphic_convert2  Graphic Convert2
        Boolean
    tn3270.fa.modified  Modified
        Boolean
    tn3270.fa.numeric  Numeric
        Boolean
    tn3270.fa.protected  Protected
        Boolean
    tn3270.fa.reserved  Reserved
        Boolean
    tn3270.featl  Length (in bytes) of feature information that follows
        Unsigned 8-bit integer
    tn3270.feats  CPR length and feature flags
        Unsigned 16-bit integer
    tn3270.field_attribute  3270 Field Attribute
        Unsigned 8-bit integer
    tn3270.field_data  Field Data
        EBCDIC string
        tn3270.field_data
    tn3270.field_outlining  Field Outlining
        Unsigned 8-bit integer
    tn3270.field_validation_mandatory_entry  3270 Field validation_mandatory_entry
        Boolean
    tn3270.field_validation_mandatory_fill  3270 Field validation_mandatory_fill
        Boolean
    tn3270.field_validation_mandatory_trigger  3270 Field validation_mandatory_trigger
        Boolean
    tn3270.fo_flags  Flags
        Unsigned 8-bit integer
    tn3270.fo_hpos  Location of overline/underline
        Unsigned 8-bit integer
    tn3270.fo_hpos0  Location of overline in case of separation
        Unsigned 8-bit integer
    tn3270.fo_hpos1  Location of underline in case of separation
        Unsigned 8-bit integer
    tn3270.fo_vpos  Location of vertical line
        Unsigned 8-bit integer
    tn3270.form  Form Types
        Unsigned 8-bit integer
    tn3270.format_group_name  Format Group name
        EBCDIC string
    tn3270.format_name  Format name
        EBCDIC string
    tn3270.formres  Form Types (Reserved)
        Unsigned 8-bit integer
    tn3270.fov  Format Offset Value
        Unsigned 16-bit integer
    tn3270.fpc  Format Presentation Command
        Unsigned 8-bit integer
    tn3270.fsad_flags  Flags
        Unsigned 8-bit integer
    tn3270.fsad_limin  Reserved for LIMIN parameter. Must be set to zeros.
        Unsigned 16-bit integer
    tn3270.fsad_limout  Maximum bytes of format storage data per transmission allowed outbound.
        Unsigned 16-bit integer
    tn3270.fsad_size  Size of the format storage space
        Unsigned 16-bit integer
    tn3270.h_ai  Data stream action
        Unsigned 8-bit integer
    tn3270.h_length  Length of the SHF character string required for restart
        Unsigned 16-bit integer
    tn3270.h_np  Number of attribute-value/action pairs
        Unsigned 8-bit integer
    tn3270.h_offset  Byte offset from Checkpoint Interval structured field to the Set Horizontal Format control in effect for the checkpoint
        Unsigned 32-bit integer
    tn3270.h_sequence  RU sequence number
        Unsigned 16-bit integer
    tn3270.h_vi  Data stream attribute value accepted
        Unsigned 8-bit integer
    tn3270.hilite  Highlighting
        Unsigned 8-bit integer
    tn3270.horizon  Byte offset from Checkpoint Interval structured field to the Set Horizontal Format control in effect for the checkpoint
        Unsigned 32-bit integer
    tn3270.hw  Window height
        Unsigned 16-bit integer
    tn3270.ibm_flags  Flags
        Unsigned 8-bit integer
    tn3270.ibm_limin  Inbound message size limit
        Unsigned 16-bit integer
    tn3270.ibm_limout  Outbound message size limit
        Unsigned 16-bit integer
    tn3270.ibm_type  Type of IBM Auxiliary Device
        Unsigned 16-bit integer
    tn3270.interval  Checkpoint interval
        Unsigned 8-bit integer
        Specifies the number of pages in the interval between terminal checkpoints
    tn3270.ioca_limin  Max IOCA bytes/inbound transmission
        Unsigned 16-bit integer
    tn3270.ioca_limout  Max IOCA bytes/outbound transmission
        Unsigned 16-bit integer
    tn3270.ioca_type  Type of IOCA Auxiliary Device
        Unsigned 16-bit integer
    tn3270.ip_flags  Flags (Reserved)
        Unsigned 8-bit integer
    tn3270.ipccd_hca  Height of the character cell for the Implicit Partition alternate screen size
        Unsigned 16-bit integer
    tn3270.ipccd_hcd  Height of the character cell for the Implicit Partition default screen size
        Unsigned 16-bit integer
    tn3270.ipccd_wca  Width of the character cell for the Implicit Partition alternate screen size
        Unsigned 16-bit integer
    tn3270.ipccd_wcd  Width of the character cell for the Implicit Partition default screen size
        Unsigned 16-bit integer
    tn3270.ipdd_ha  Height of the Implicit Partition alternate screen size
        Unsigned 16-bit integer
    tn3270.ipdd_hd  Height of the Implicit Partition default screen size
        Unsigned 16-bit integer
    tn3270.ipdd_wa  Width of the Implicit Partition alternate screen size
        Unsigned 16-bit integer
    tn3270.ipdd_wd  Width of the Implicit Partition default screen siz (in character cells)
        Unsigned 16-bit integer
    tn3270.ippd_apbs   Default printer buffer size (in character cells)
        Unsigned 64-bit integer
    tn3270.ippd_dpbs   Default printer buffer size (in character cells)
        Unsigned 64-bit integer
    tn3270.lcid  Local character set ID (alias)
        Unsigned 8-bit integer
    tn3270.limin  Maximum CPR bytes/transmission allowed inbound
        Unsigned 16-bit integer
    tn3270.limout  Maximum CPR bytes/transmission allowed outbound
        Unsigned 16-bit integer
    tn3270.lines  Number of lines printed since the checkpoint
        Unsigned 16-bit integer
    tn3270.load_color_command  Command
        Unsigned 16-bit integer
    tn3270.load_format_storage_flags1  Flags
        Unsigned 8-bit integer
    tn3270.load_format_storage_flags2  Flags (Reserved)
        Unsigned 8-bit integer
    tn3270.load_format_storage_format_data  Format data
        EBCDIC string
    tn3270.load_format_storage_localname  Local name for user selectable formats
        EBCDIC string
    tn3270.load_format_storage_operand  Operand:
        Unsigned 8-bit integer
    tn3270.load_line_type_command  Line Type Command
        Unsigned 8-bit integer
    tn3270.lvl  Cursor level
        Unsigned 8-bit integer
    tn3270.mode  Mode
        Unsigned 8-bit integer
    tn3270.msr.auto  Auto Enter
        Boolean
    tn3270.msr.ind1  Audible Ind 1 Suppress
        Boolean
    tn3270.msr.ind2  Audible Ind 2 Suppress
        Boolean
    tn3270.msr.locked  Locked
        Boolean
    tn3270.msr.user  User Mode
        Boolean
    tn3270.msr_ind_mask  Indicator Mask
        Unsigned 8-bit integer
    tn3270.msr_ind_value  Indicator Value
        Unsigned 8-bit integer
    tn3270.msr_nd  Number of MSR device types
        Unsigned 8-bit integer
    tn3270.msr_state_mask  State Mask
        Unsigned 8-bit integer
    tn3270.msr_state_value  State Value
        Unsigned 8-bit integer
    tn3270.msr_type  MSR type
        Unsigned 8-bit integer
    tn3270.np  Length of color attribute list
        Unsigned 8-bit integer
    tn3270.null  Trailing Null (Possible Mainframe/Emulator Bug)
        Unsigned 8-bit integer
    tn3270.number_of_attributes  Number of Attributes
        Unsigned 8-bit integer
    tn3270.object_control_flags  Flags
        Unsigned 8-bit integer
    tn3270.object_type  Object Type
        Unsigned 8-bit integer
    tn3270.oem_dsref  Data stream reference identifier
        Unsigned 8-bit integer
    tn3270.oem_dtype  Device type
        EBCDIC string
    tn3270.oem_sdp_daid_doid  Destination/Origin ID
        Unsigned 16-bit integer
    tn3270.oem_sdp_ll_limin  Maximum OEM dsf bytes/transmission allowed inbound
        Unsigned 16-bit integer
    tn3270.oem_sdp_ll_limout  Maximum OEM dsf bytes/transmission allowed outbound
        Unsigned 16-bit integer
    tn3270.oem_sdp_pclk_vers  Protocol version
        Unsigned 16-bit integer
    tn3270.oem_uname  User assigned name
        EBCDIC string
    tn3270.operation_type  Operation Type
        Unsigned 8-bit integer
    tn3270.order_code  Order Code
        Unsigned 8-bit integer
    tn3270.outbound_text_header_hdr  Initial format controls
        Unsigned 8-bit integer
    tn3270.outbound_text_header_lhdr  Header length includes itself
        Unsigned 16-bit integer
    tn3270.pages  Number of pages printed since the checkpoint
        Unsigned 16-bit integer
    tn3270.partition_cv  The x, or column, origin of the viewport relative to the left side of the usable area
        Unsigned 16-bit integer
    tn3270.partition_cw  The x, or column, origin of the window relative to the left edge of the presentation  space
        Unsigned 16-bit integer
    tn3270.partition_flags  Flags
        Unsigned 8-bit integer
    tn3270.partition_height  The height of the presentation space
        Unsigned 16-bit integer
    tn3270.partition_hv  The height of the viewport
        Unsigned 16-bit integer
    tn3270.partition_id  Partition ID
        Unsigned 8-bit integer
    tn3270.partition_ph  The number of points in the vertical direction in a character cell in this presentation space
        Unsigned 16-bit integer
    tn3270.partition_pw  The number of points in the horizontal direction in a character cell in this presentation space
        Unsigned 8-bit integer
    tn3270.partition_res  Reserved
        Unsigned 16-bit integer
    tn3270.partition_rs  The number of units to be scrolled in a vertical multiple scroll
        Unsigned 16-bit integer
    tn3270.partition_rw  The y, or row, origin of the window relative to the top edge of the presentation space
        Unsigned 16-bit integer
    tn3270.partition_uom  The unit of measure and address mode
        Unsigned 8-bit integer
    tn3270.partition_width  The width of the presentation space
        Unsigned 16-bit integer
    tn3270.partition_wv  The width of the viewport
        Unsigned 16-bit integer
    tn3270.pc_vo_thickness  Thickness
        Unsigned 8-bit integer
    tn3270.pdds_refid  Reference identifier
        Unsigned 8-bit integer
    tn3270.pdds_ssid  Subset identifier
        Unsigned 8-bit integer
    tn3270.pft_bmo  Bottom margin offset in 1/1440ths of an inch
        Unsigned 16-bit integer
    tn3270.pft_flags  Flags
        Unsigned 8-bit integer
    tn3270.pft_tmo  Top margin offset in 1/1440ths of an inch
        Unsigned 16-bit integer
    tn3270.prime  Prime compression character
        Unsigned 8-bit integer
    tn3270.printer_flags  Flags
        Unsigned 8-bit integer
    tn3270.ps_char  Beginning code point X'41' through X'FE'
        Unsigned 8-bit integer
    tn3270.ps_flags  Flags
        Unsigned 8-bit integer
    tn3270.ps_lcid  Local character set ID
        Unsigned 8-bit integer
    tn3270.ps_rws  Loadable Character Set RWS Number
        Unsigned 8-bit integer
    tn3270.query_reply_usable_area_flags1  Usable Area Flags
        Unsigned 8-bit integer
    tn3270.query_reply_usable_area_flags2  Usable Area Flags
        Unsigned 8-bit integer
    tn3270.recovery_data_flags  Flags
        Unsigned 8-bit integer
    tn3270.reply_mode_attr_list  Type codes for the attribute types
        Unsigned 8-bit integer
    tn3270.reqtyp  Request Type
        Unsigned 8-bit integer
    tn3270.res_twobytes  Flags (Reserved)
        Unsigned 16-bit integer
    tn3270.resbyte  Flags (Reserved)
        Unsigned 8-bit integer
    tn3270.resbytes  Flags (Reserved)
        Unsigned 8-bit integer
    tn3270.reserved  Reserved
        Boolean
    tn3270.rpq_device  Device type identifier
        EBCDIC string
    tn3270.rpq_mid  Model type identifier
        Unsigned 64-bit integer
    tn3270.rpq_name  RPQ name
        EBCDIC string
    tn3270.rpq_rpql  Length of RPQ name (including this byte)
        Unsigned 8-bit integer
    tn3270.rw  Row offset of window origin
        Unsigned 16-bit integer
    tn3270.save_or_restore_format_flags  Flags
        Unsigned 8-bit integer
    tn3270.scs_data  SCS data (noncompressed and noncompacted) to set up for restart
        Byte array
    tn3270.sdp_excode  Exception Code
        Unsigned 16-bit integer
    tn3270.sdp_id  Self-Defining Parameter ID
        Unsigned 8-bit integer
    tn3270.sdp_ln  Length of this Self-Defining Parameter
        Unsigned 8-bit integer
    tn3270.sdp_ngl  Number of groups currently assigned
        Unsigned 16-bit integer
    tn3270.sdp_nlml  Number of local names used
        Unsigned 16-bit integer
    tn3270.sdp_nml  Number of formats currently loaded
        Unsigned 16-bit integer
    tn3270.sdp_statcode  Status Code
        Unsigned 16-bit integer
    tn3270.sdp_stor  Amount of format storage space available (KB)
        Unsigned 32-bit integer
    tn3270.sf_inbound_id  Structured Field
        Unsigned 8-bit integer
    tn3270.sf_inbound_outbound_id  Structured Field
        Unsigned 8-bit integer
    tn3270.sf_length  Structured Field Length
        Unsigned 16-bit integer
        Structured Field Length
    tn3270.sf_outbound_id  Structured Field
        Unsigned 8-bit integer
    tn3270.sf_query_reply  Query Reply
        Unsigned 8-bit integer
    tn3270.sh  Height of the character slots in this character set.
        Unsigned 8-bit integer
    tn3270.sld  SLD -- Set line density parameter in effect at the checkpoint
        Unsigned 8-bit integer
    tn3270.sp_objlist  Identifiers of objects housed in this storage pool
        Unsigned 16-bit integer
    tn3270.sp_size  Size of this storage pool when empty
        Unsigned 32-bit integer
    tn3270.sp_space  Space available in this storage pool
        Unsigned 32-bit integer
    tn3270.sp_spid  Storage pool identity
        Unsigned 8-bit integer
    tn3270.spc_epc_flags  Flags
        Unsigned 8-bit integer
    tn3270.spc_sdp_eucflags  Flags
        Unsigned 8-bit integer
    tn3270.spc_sdp_ob  Bottom edge outline thickness
        Unsigned 8-bit integer
    tn3270.spc_sdp_ol  Left edge outline thickness
        Unsigned 8-bit integer
    tn3270.spc_sdp_or  Right edge outline thickness
        Unsigned 8-bit integer
    tn3270.spc_sdp_ot  Top edge outline thickness
        Unsigned 8-bit integer
    tn3270.spc_sdp_srepc  Set/Reset Early Print Complete
        Unsigned 8-bit integer
    tn3270.spd  Set Primary Density parameter in effect at the checkpoint
        Unsigned 16-bit integer
    tn3270.srf_fpcb  Contents of the FPCB that is to be saved or restored
        Byte array
    tn3270.srf_fpcbl  Format parameter control block length
        Unsigned 16-bit integer
    tn3270.ssubsn  Starting subsection.
        Unsigned 8-bit integer
    tn3270.start_line  Number of lines to skip on page for restart
        Unsigned 16-bit integer
    tn3270.start_page  Number of pages to skip on restart
        Unsigned 16-bit integer
    tn3270.stop_address  Stop Address
        Unsigned 16-bit integer
    tn3270.sw  Width of the character slots in this characterset.
        Unsigned 8-bit integer
    tn3270.t_ai  Associated action value
        Unsigned 8-bit integer
    tn3270.t_np   Number of pairs
        Unsigned 8-bit integer
    tn3270.t_vi  Data stream attribute value accepted
        Unsigned 8-bit integer
    tn3270.tn3270e_data_type  TN3270E Data Type
        Unsigned 8-bit integer
    tn3270.tn3270e_request_flag  TN3270E Request Flag
        Unsigned 8-bit integer
    tn3270.tn3270e_response_flag  TN3270E Response Flag
        Unsigned 8-bit integer
    tn3270.tn3270e_seq_number  TN3270E Seq Number
        Unsigned 16-bit integer
    tn3270.tp_flags  Flags
        Unsigned 8-bit integer
    tn3270.tp_m  Maximum partition size
        Unsigned 16-bit integer
    tn3270.tp_nt  Maximum number of text partitions
        Unsigned 8-bit integer
    tn3270.tp_ntt  Number of text types supported
        Unsigned 8-bit integer
    tn3270.tp_tlist  List of types supported
        Unsigned 8-bit integer
    tn3270.transparency  Transparency
        Unsigned 8-bit integer
    tn3270.type_1_text_outbound_data  tn3270.type_1_text_outbound_data
        Unsigned 8-bit integer
    tn3270.ua_addressing  Usable Area Addressing
        Unsigned 8-bit integer
    tn3270.ua_ah  Number of Y units in default cell
        Unsigned 8-bit integer
    tn3270.ua_aw  Number of X units in default cell
        Unsigned 8-bit integer
    tn3270.ua_buffsz  Character buffer size (bytes)
        Unsigned 16-bit integer
        Character buffer size (bytes)
    tn3270.ua_cell_units  Cell Units
        Boolean
    tn3270.ua_characters  Variable Characters
        Boolean
    tn3270.ua_hard_copy  Hard Copy
        Boolean
    tn3270.ua_height_cells_pels  Height of usable area in cells/pels
        Unsigned 16-bit integer
    tn3270.ua_page_printer  Page Printer
        Boolean
    tn3270.ua_uom_cells_pels  Units of measure for cells/pels
        Unsigned 8-bit integer
    tn3270.ua_variable_cells  Variable Cells
        Boolean
    tn3270.ua_width_cells_pels  Width of usable area in cells/pels
        Unsigned 16-bit integer
    tn3270.ua_xmax   Maximum number of X units in variable cell
        Unsigned 8-bit integer
    tn3270.ua_xmin   Minimum number of X units in variable cell
        Unsigned 8-bit integer
    tn3270.ua_xr  Distance between points in X direction as a fraction, measured in UNITS, with 2-byte numerator and 2-byte denominator
        Unsigned 64-bit integer
    tn3270.ua_ymax   Maximum number of Y units in variable cell
        Unsigned 8-bit integer
    tn3270.ua_ymin   Minimum number of Y units in variable cell
        Unsigned 8-bit integer
    tn3270.unknown_data  Unknown Data (Possible Mainframe/Emulator Bug)
        EBCDIC string
    tn3270.v_length  Length of the SVF character string required for restart
        Unsigned 16-bit integer
    tn3270.v_offset  Byte offset within the string control byte string or the SVF character
        Unsigned 16-bit integer
    tn3270.v_sequence  RU sequence number
        Unsigned 16-bit integer
    tn3270.vertical  Byte offset from Checkpoint Interval structured field to the Set Vertical Format control in effect for the checkpoint
        Unsigned 32-bit integer
    tn3270.wcc.keyboard_restore  WCC Keyboard Restore
        Boolean
    tn3270.wcc.nop  WCC NOP
        Boolean
    tn3270.wcc.printer1  WCC Printer1
        Boolean
    tn3270.wcc.printer2  WCC Printer2
        Boolean
    tn3270.wcc.reset  WCC Reset
        Boolean
    tn3270.wcc.reset_mdt  WCC Reset MDT
        Boolean
    tn3270.wcc.sound_alarm  WCC Sound Alarm
        Boolean
    tn3270.wcc.start_printer  WCC Start Printer
        Boolean
    tn3270.ww  Window width
        Unsigned 16-bit integer

TN5250 Protocol (tn5250)

    tn5250.aid  Attention Identification
        Unsigned 8-bit integer
    tn5250.attn_key  5250 attention key was pressed.
        Boolean
    tn5250.attribute  Attribute Type
        Unsigned 8-bit integer
    tn5250.buffer_x  Row Address
        Unsigned 8-bit integer
    tn5250.buffer_y  Column Address
        Unsigned 8-bit integer
    tn5250.class  Structured Field Class
        Unsigned 8-bit integer
    tn5250.command_code  Command Code
        Unsigned 8-bit integer
    tn5250.ctp_lsid  Printer LSID
        Unsigned 8-bit integer
    tn5250.ctp_mlpp  Max Lines Per Page
        Unsigned 8-bit integer
    tn5250.cua_parm  TN5250 CUA Parameter
        Unsigned 16-bit integer
    tn5250.dawt_char  Character
        EBCDIC string
    tn5250.dawt_id  ID
        Unsigned 8-bit integer
    tn5250.dawt_length  Length
        Unsigned 8-bit integer
    tn5250.dawt_message  Message
        EBCDIC string
    tn5250.dckf_function_code  Function Code
        Unsigned 8-bit integer
    tn5250.dckf_id  ID
        Unsigned 8-bit integer
    tn5250.dckf_key_code  Key Code
        Unsigned 8-bit integer
    tn5250.dckf_length  Length
        Unsigned 8-bit integer
    tn5250.dckf_prompt_text  Prompt Text
        EBCDIC string
    tn5250.dfdpck_coreflag  Core Area Flag
        Unsigned 8-bit integer
    tn5250.dfdpck_coreflag_0  Bit 0
        Boolean
    tn5250.dfdpck_coreflag_1  Bit 1
        Boolean
    tn5250.dfdpck_coreflag_2  Bit 2
        Boolean
    tn5250.dfdpck_coreflag_3  Bit 3
        Boolean
    tn5250.dfdpck_coreflag_4  Bit 4
        Boolean
    tn5250.dfdpck_coreflag_5  Bit 5
        Boolean
    tn5250.dfdpck_coreflag_6  Bit 6
        Boolean
    tn5250.dfdpck_coreflag_7  Bit 7
        Boolean
    tn5250.dfdpck_data_field  Data Field
        Unsigned 8-bit integer
    tn5250.dfdpck_partition  Partition
        Unsigned 8-bit integer
    tn5250.dfdpck_toprowflag1  Top Row Flags
        Unsigned 8-bit integer
    tn5250.dfdpck_toprowflag1_0  Bit 0
        Boolean
    tn5250.dfdpck_toprowflag1_1  Bit 1
        Boolean
    tn5250.dfdpck_toprowflag1_2  Bit 2
        Boolean
    tn5250.dfdpck_toprowflag1_3  Bit 3
        Boolean
    tn5250.dfdpck_toprowflag1_4  Bit 4
        Boolean
    tn5250.dfdpck_toprowflag1_5  Bit 5
        Boolean
    tn5250.dfdpck_toprowflag1_6  Bit 6
        Boolean
    tn5250.dfdpck_toprowflag1_7  Bit 7
        Boolean
    tn5250.dfdpck_toprowflag2  Top Row Flags
        Unsigned 8-bit integer
    tn5250.dfdpck_toprowflag2_0  Bit 0
        Boolean
    tn5250.dfdpck_toprowflag2_1  Bit 1
        Boolean
    tn5250.dfdpck_toprowflag2_2  Bit 2
        Boolean
    tn5250.dfdpck_toprowflag2_3  Bit 3
        Boolean
    tn5250.dfdpck_toprowflag2_4  Bit 4
        Boolean
    tn5250.dfdpck_toprowflag2_5  Bit 5
        Boolean
    tn5250.dfdpck_toprowflag2_6  Bit 6
        Boolean
    tn5250.dfdpck_toprowflag2_7  Bit 7
        Boolean
    tn5250.dfdpck_toprowflag3  Top Row Flags
        Unsigned 8-bit integer
    tn5250.dfdpck_toprowflag3_0  Bit 0
        Boolean
    tn5250.dfdpck_toprowflag3_1  Bit 1
        Boolean
    tn5250.dfdpck_toprowflag3_2  Bit 2
        Boolean
    tn5250.dfdpck_toprowflag3_3  Bit 3
        Boolean
    tn5250.dfdpck_toprowflag3_4  Bit 4
        Boolean
    tn5250.dfdpck_toprowflag3_5  Bit 5
        Boolean
    tn5250.dfdpck_toprowflag3_6  Bit 6
        Boolean
    tn5250.dfdpck_toprowflag3_7  Bit 7
        Boolean
    tn5250.dorm_ec  Error Code
        Unsigned 16-bit integer
    tn5250.dorm_id  ID
        Unsigned 8-bit integer
    tn5250.dorm_length  Length
        Unsigned 8-bit integer
    tn5250.dorm_mt  Message Text
        EBCDIC string
    tn5250.dpo_displace_characters  Displaced Characters
        EBCDIC string
    tn5250.dpo_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.dpo_flag1_0  Bit 0
        Boolean
    tn5250.dpo_flag1_1  Bit 1
        Boolean
    tn5250.dpo_flag1_2  Bit 2
        Boolean
    tn5250.dpo_flag1_3  Bit 3
        Boolean
    tn5250.dpo_flag1_4  Bit 4
        Boolean
    tn5250.dpo_flag1_5  Bit 5
        Boolean
    tn5250.dpo_flag1_6  Bit 6
        Boolean
    tn5250.dpo_flag1_7  Bit 7
        Boolean
    tn5250.dpo_flag2  Byte 1
        Unsigned 8-bit integer
    tn5250.dpo_flag2_0  Bit 0
        Boolean
    tn5250.dpo_flag2_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.dpo_partition  Partition
        Unsigned 8-bit integer
    tn5250.dpo_start_location_col  Start Location (Column)
        Unsigned 16-bit integer
    tn5250.dpo_start_location_row  Start Location (Row)
        Unsigned 16-bit integer
    tn5250.dpt_ec  EBCDIC Code
        EBCDIC string
    tn5250.dpt_id  ID
        Unsigned 8-bit integer
    tn5250.ds_output_error  Data Stream Output Error
        Boolean
    tn5250.dsc_ev  EBCDIC Value
        EBCDIC string
    tn5250.dsc_partition  Partition
        Unsigned 8-bit integer
    tn5250.dsc_sk  Symbol Key
        Unsigned 8-bit integer
    tn5250.dsl_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.dsl_flag1_0  Bit 0
        Boolean
    tn5250.dsl_flag1_1  Bit 1
        Boolean
    tn5250.dsl_flag1_2  Bit 2
        Boolean
    tn5250.dsl_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.dsl_function  Function
        Unsigned 8-bit integer
    tn5250.dsl_id  ID
        Unsigned 8-bit integer
    tn5250.dsl_location  Location
        Unsigned 8-bit integer
    tn5250.dsl_offset  Offset
        Unsigned 8-bit integer
    tn5250.dsl_partition  Partition
        Unsigned 8-bit integer
    tn5250.dsl_rtl_offset  RTL Offset
        Unsigned 8-bit integer
    tn5250.dtsf_first_line  First Line in Text Body
        Unsigned 8-bit integer
    tn5250.dtsf_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.dtsf_flag1_0  Bit 0
        Boolean
    tn5250.dtsf_flag1_1  Bit 1
        Boolean
    tn5250.dtsf_flag1_2  Bit 2
        Boolean
    tn5250.dtsf_flag1_3  Bit 3
        Boolean
    tn5250.dtsf_flag1_4  Bit 4
        Boolean
    tn5250.dtsf_flag1_5  Bit 5
        Boolean
    tn5250.dtsf_flag1_6  Bit 6
        Boolean
    tn5250.dtsf_flag1_7  Bit 7
        Boolean
    tn5250.dtsf_flag2  Byte 1
        Unsigned 8-bit integer
    tn5250.dtsf_flag2_0  Bit 0
        Boolean
    tn5250.dtsf_flag2_1  Bit 1
        Boolean
    tn5250.dtsf_flag2_2  Bit 2
        Boolean
    tn5250.dtsf_flag2_3  Bit 3
        Boolean
    tn5250.dtsf_flag2_4to7  Bits 4 to 7
        Unsigned 8-bit integer
    tn5250.dtsf_line_cmd_field_size  Line Cmd Field Size
        Unsigned 8-bit integer
    tn5250.dtsf_location_of_pitch  Location of Pitch
        Unsigned 8-bit integer
    tn5250.dtsf_partition  Partition
        Unsigned 8-bit integer
    tn5250.dtsf_text_body_height  Text Body Height
        Unsigned 16-bit integer
    tn5250.error_code  TN5250 Error Code
        Unsigned 16-bit integer
    tn5250.error_state  In Error State
        Boolean
    tn5250.escape_code  Escape Code
        Unsigned 8-bit integer
    tn5250.fa_color  Field Attribute (Color)
        Unsigned 8-bit integer
    tn5250.fcw  Field Control Word
        Unsigned 16-bit integer
    tn5250.ffw  Field Format Word
        Unsigned 8-bit integer
    tn5250.ffw_adjust  Right Adjust/Mandatory Fill
        Unsigned 8-bit integer
    tn5250.ffw_auto  Auto Enter
        Boolean
    tn5250.ffw_bypass  Bypass
        Boolean
    tn5250.ffw_dup  Dupe or Field Mark Enable
        Boolean
    tn5250.ffw_fer  Field Exit Required
        Boolean
    tn5250.ffw_id  Field Format Word ID
        Unsigned 8-bit integer
    tn5250.ffw_mdt  Modified Data Tag
        Boolean
    tn5250.ffw_me  Mandatory Enter
        Boolean
    tn5250.ffw_monocase  Monocase
        Boolean
    tn5250.ffw_res  Reserved
        Boolean
    tn5250.ffw_shift  Field Shift/Edit Specification
        Unsigned 8-bit integer
    tn5250.field_data  Field Data
        EBCDIC string
    tn5250.foreground_color_attr  Foreground Color Attribute
        Unsigned 8-bit integer
    tn5250.header_flags  TN5250 SNA Flags
        Unsigned 8-bit integer
    tn5250.ideographic_attr  Ideographic Attribute
        Unsigned 8-bit integer
    tn5250.image_fax_error  Image/Fax Error
        Unsigned 16-bit integer
    tn5250.length  Length
        Unsigned 8-bit integer
    tn5250.logical_record_length  TN5250 Logical Record Length
        Unsigned 16-bit integer
    tn5250.negative_response  Negative Response
        Unsigned 32-bit integer
    tn5250.operation_code  TN5250 Operation Code
        Unsigned 8-bit integer
    tn5250.order_code  Order Code
        Unsigned 8-bit integer
    tn5250.qr_ccl  Controller Code Level
        Unsigned 24-bit integer
    tn5250.qr_chc  Controller Hardware Class
        Unsigned 16-bit integer
    tn5250.qr_dm  Device Model
        EBCDIC string
    tn5250.qr_dsn  Display Serial Number
        Unsigned 32-bit integer
    tn5250.qr_dt  Device Type
        Unsigned 8-bit integer
    tn5250.qr_dtc  Device Type
        EBCDIC string
    tn5250.qr_eki  Extended Keyboard ID
        Unsigned 8-bit integer
    tn5250.qr_flag  Flag
        Unsigned 8-bit integer
    tn5250.qr_flag1  Flags
        Unsigned 8-bit integer
    tn5250.qr_flag1_0  Bit 0 (Reserved)
        Boolean
    tn5250.qr_flag1_1  Bit 1
        Boolean
    tn5250.qr_flag1_2  Bit 2
        Boolean
    tn5250.qr_flag1_3  Bit 3
        Boolean
    tn5250.qr_flag1_4  Bit 4
        Boolean
    tn5250.qr_flag1_5  Bit 5
        Boolean
    tn5250.qr_flag1_6  Bit 6
        Boolean
    tn5250.qr_flag1_7  Bit 7
        Boolean
    tn5250.qr_flag2  Flags
        Unsigned 8-bit integer
    tn5250.qr_flag2_0to3  Bits 0 to 3
        Unsigned 8-bit integer
    tn5250.qr_flag2_4  Bit 4
        Boolean
    tn5250.qr_flag2_5  Bit 5
        Boolean
    tn5250.qr_flag2_6to7  Bits 6 to 7
        Unsigned 8-bit integer
    tn5250.qr_flag3  Flags
        Unsigned 8-bit integer
    tn5250.qr_flag4  Flags
        Unsigned 8-bit integer
    tn5250.qr_flag_0  Bit 1
        Boolean
    tn5250.qr_flag_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.qr_ki  Keyboard ID
        Unsigned 8-bit integer
    tn5250.qr_mni  Maximum number of input fields
        Unsigned 16-bit integer
    tn5250.repeated_character  Repeated Character
        EBCDIC string
    tn5250.reserved  Flags (Reserved):
        Unsigned 8-bit integer
    tn5250.roll_bottom_line  Line number defining the bottom line of the area that will participate in the roll
        Unsigned 8-bit integer
    tn5250.roll_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.roll_flag1_0  Bit 0
        Boolean
    tn5250.roll_flag1_lines  Number of lines that the designated area is to be rolled
        Unsigned 8-bit integer
    tn5250.roll_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.roll_top_line  Line number defining the top line of the area that will participate in the roll
        Unsigned 8-bit integer
    tn5250.rts_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.rts_flag1_0  Bit 0 (Last Data Stream flag)
        Boolean
    tn5250.rts_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.rts_partition  Partition
        Unsigned 8-bit integer
    tn5250.sf_attr_flag  Attribute ID
        Unsigned 8-bit integer
    tn5250.sf_fa  Field Attributes
        Unsigned 8-bit integer
    tn5250.sf_length  Structured Field Length
        Unsigned 16-bit integer
    tn5250.sna_record_type  TN5250 SNA Record Type
        Unsigned 16-bit integer
    tn5250.soh_cursor_direction  Right To Left Screen-Level Cursor Direction
        Boolean
    tn5250.soh_err  Error Row
        Unsigned 8-bit integer
    tn5250.soh_flags  Start of Header Flags
        Unsigned 8-bit integer
    tn5250.soh_input_capable_only  The cursor is allowed to move only to input-capable positions
        Boolean
    tn5250.soh_length  Length
        Unsigned 8-bit integer
    tn5250.soh_pf1  PF1
        Boolean
    tn5250.soh_pf10  PF10
        Boolean
    tn5250.soh_pf11  PF11
        Boolean
    tn5250.soh_pf12  PF12
        Boolean
    tn5250.soh_pf13  PF13
        Boolean
    tn5250.soh_pf14  PF14
        Boolean
    tn5250.soh_pf15  PF15
        Boolean
    tn5250.soh_pf16  PF16
        Boolean
    tn5250.soh_pf16to9  Command Key Switch 2
        Unsigned 8-bit integer
    tn5250.soh_pf17  PF17
        Boolean
    tn5250.soh_pf18  PF18
        Boolean
    tn5250.soh_pf19  PF19
        Boolean
    tn5250.soh_pf2  PF2
        Boolean
    tn5250.soh_pf20  PF20
        Boolean
    tn5250.soh_pf21  PF21
        Boolean
    tn5250.soh_pf22  PF22
        Boolean
    tn5250.soh_pf23  PF22
        Boolean
    tn5250.soh_pf24  PF24
        Boolean
    tn5250.soh_pf24to17  Command Key Switch 1
        Unsigned 8-bit integer
    tn5250.soh_pf3  PF3
        Boolean
    tn5250.soh_pf4  PF4
        Boolean
    tn5250.soh_pf5  PF5
        Boolean
    tn5250.soh_pf6  PF6
        Boolean
    tn5250.soh_pf7  PF7
        Boolean
    tn5250.soh_pf8  PF8
        Boolean
    tn5250.soh_pf8to1  Command Key Switch 3
        Unsigned 8-bit integer
    tn5250.soh_pf9  PF9
        Boolean
    tn5250.soh_resq  Resequence to Field
        Unsigned 8-bit integer
    tn5250.soh_screen_reverse  Automatic local screen reverse
        Boolean
    tn5250.sps_flag1  Flags
        Unsigned 8-bit integer
    tn5250.sps_flag1_0  Bit 0
        Boolean
    tn5250.sps_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.sps_left_column  Left Column
        Unsigned 8-bit integer
    tn5250.sps_top_row  Top Row
        Unsigned 8-bit integer
    tn5250.sps_window_depth  Window Depth
        Unsigned 8-bit integer
    tn5250.sps_window_width  Window Width
        Unsigned 8-bit integer
    tn5250.sys_request_key  5250 System Request key was pressed
        Boolean
    tn5250.test_request_key  5250 Test Request key was pressed
        Boolean
    tn5250.type  Structured Field Type
        Unsigned 8-bit integer
    tn5250.unknown_data  Unknown Data (Possible Mainframe/Emulator Bug)
        Byte array
    tn5250.vac_data  Video/Audio Control Data
        Unsigned 32-bit integer
    tn5250.vac_data_prefix  Video/Audio Control Data Prefix
        Unsigned 16-bit integer
    tn5250.variable_record_length  TN5250 Variable Record Length
        Unsigned 8-bit integer
    tn5250.wdsf_cgl_partition  Partition
        Unsigned 8-bit integer
    tn5250.wdsf_cgl_rectangle_height  Height of Rectangle
        Unsigned 8-bit integer
    tn5250.wdsf_cgl_rectangle_width  Width of Rectangle
        Unsigned 8-bit integer
    tn5250.wdsf_cgl_start_column  Start Column
        Unsigned 8-bit integer
    tn5250.wdsf_cgl_start_row  Start Row
        Unsigned 8-bit integer
    tn5250.wdsf_cw_bp_bbc  Bottom Border Character
        EBCDIC string
    tn5250.wdsf_cw_bp_cba  Color Border Attribute
        Unsigned 8-bit integer
    tn5250.wdsf_cw_bp_flag1  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_cw_bp_flag1_1  Flag 1
        Boolean
    tn5250.wdsf_cw_bp_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_cw_bp_lbc  Left Border Character
        EBCDIC string
    tn5250.wdsf_cw_bp_llbc  Lower Left Border Character
        EBCDIC string
    tn5250.wdsf_cw_bp_lrbc  Lower Right Border Character
        EBCDIC string
    tn5250.wdsf_cw_bp_mba  Monochrome Border Attribute
        Unsigned 8-bit integer
    tn5250.wdsf_cw_bp_rbc  Right Border Character
        EBCDIC string
    tn5250.wdsf_cw_bp_tbc  Top Border Character
        EBCDIC string
    tn5250.wdsf_cw_bp_ulbc  Upper Left Border Character
        EBCDIC string
    tn5250.wdsf_cw_bp_urbc  Upper Right Border Character
        EBCDIC string
    tn5250.wdsf_cw_flag1  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_cw_flag1_1  Flag 1
        Boolean
    tn5250.wdsf_cw_flag1_2  Flag 2
        Boolean
    tn5250.wdsf_cw_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_cw_minor_type  Minor Structured Field Type
        Unsigned 8-bit integer
    tn5250.wdsf_cw_tf_cba  Color Title/Footer Attribute
        Unsigned 8-bit integer
    tn5250.wdsf_cw_tf_flag  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_cw_tf_flag_1  Title/Footer Defined
        Boolean
    tn5250.wdsf_cw_tf_flag_orientation  Orientation
        Unsigned 8-bit integer
    tn5250.wdsf_cw_tf_flag_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_cw_tf_mba  Monochrome Title/Footer Attribute
        Unsigned 8-bit integer
    tn5250.wdsf_cw_tf_text  Title Text
        EBCDIC string
    tn5250.wdsf_cw_wd  Window Depth
        Unsigned 8-bit integer
    tn5250.wdsf_cw_ww  Window Width
        Unsigned 8-bit integer
    tn5250.wdsf_deg_default_color  Default Color for Grid Lines
        Unsigned 8-bit integer
    tn5250.wdsf_deg_default_line  Default Line Style
        Unsigned 8-bit integer
    tn5250.wdsf_deg_flag1  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_deg_flag1_0  Bit 0
        Boolean
    tn5250.wdsf_deg_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_deg_flag2  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_deg_flag2_0  Bit 0
        Boolean
    tn5250.wdsf_deg_flag2_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_deg_minor_type  Construct
        Unsigned 8-bit integer
    tn5250.wdsf_deg_ms_default_color  Color
        Unsigned 8-bit integer
    tn5250.wdsf_deg_ms_flag1  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_deg_ms_flag1_0  Bit 0
        Boolean
    tn5250.wdsf_deg_ms_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_deg_ms_horizontal_dimension  Horizontal Dimenstion
        Unsigned 8-bit integer
    tn5250.wdsf_deg_ms_line_interval  Line Interval
        Unsigned 8-bit integer
    tn5250.wdsf_deg_ms_line_repeat  Line Repeat
        Unsigned 8-bit integer
    tn5250.wdsf_deg_ms_start_column  Start Column
        Unsigned 8-bit integer
    tn5250.wdsf_deg_ms_start_row  Start Row
        Unsigned 8-bit integer
    tn5250.wdsf_deg_ms_vertical_dimension  Vertical Dimenstion
        Unsigned 8-bit integer
    tn5250.wdsf_deg_partition  Partition
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cancel_aid  Mouse Pull-Down Cancel AID
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ci_first_choice  Character That Replaces the First Choice Text Character for Unavailable Choices On a Monochrome Display
        EBCDIC string
    tn5250.wdsf_ds_ci_flag1  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ci_flag1_0  Bit 0
        Boolean
    tn5250.wdsf_ds_ci_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ci_left_push  Empty Indicator or Left Push Button
        EBCDIC string
    tn5250.wdsf_ds_ci_right_push  Selected Indicator or Right Push Button
        EBCDIC string
    tn5250.wdsf_ds_columns  Columns/Menu Bar Choices
        Unsigned 8-bit integer
    tn5250.wdsf_ds_country_sel  Country Specific Selection Character
        EBCDIC string
    tn5250.wdsf_ds_cpda_color_avail  Color Available Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_color_indicator  Color Indicator Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_color_sel_avail  Color Selection Cursor Available Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_color_sel_selected  Color Selection Cursor Selected Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_color_sel_unavail  Color Selection Cursor Unavailable Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_color_selected  Color Selected Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_color_unavail  Color Unavailable Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_color_unavail_indicator  Color Unavailable Indicator Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_flag1  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_flag1_0  Bit 0
        Boolean
    tn5250.wdsf_ds_cpda_flag1_1  Bit 1
        Boolean
    tn5250.wdsf_ds_cpda_flag1_2  Bit 2
        Boolean
    tn5250.wdsf_ds_cpda_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_monochrome_avail  Monochrome Available Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_monochrome_indicator  Monochrome Indicator Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_monochrome_sel_avail  Monochrome Selection Cursor Available Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_monochrome_sel_selected  Monochrome Selection Cursor Selected Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_monochrome_sel_unavail  Monochrome Selection Cursor Unavailable Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_monochrome_selected  Monochrome Selected Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_monochrome_unavail  Monochrome Unavailable Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_cpda_monochrome_unavail_indicator  Monochrome Unavailable Indicator Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ct_aid  AID
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ct_flag1  Flag Byte 1
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ct_flag1_2  Bit 2
        Boolean
    tn5250.wdsf_ds_ct_flag1_3  Bit 3
        Boolean
    tn5250.wdsf_ds_ct_flag1_4  Bit 4
        Boolean
    tn5250.wdsf_ds_ct_flag1_5  Bit 5
        Boolean
    tn5250.wdsf_ds_ct_flag1_choice_state  Choice State
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ct_flag1_numeric_selection  Numeric Selection Characters
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ct_flag2  Flag Byte 2
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ct_flag2_0  Bit 0
        Boolean
    tn5250.wdsf_ds_ct_flag2_1  Bit 1
        Boolean
    tn5250.wdsf_ds_ct_flag2_2  Bit 2
        Boolean
    tn5250.wdsf_ds_ct_flag2_3  Bit 3
        Boolean
    tn5250.wdsf_ds_ct_flag2_4  Bit 4
        Boolean
    tn5250.wdsf_ds_ct_flag2_5  Bit 5
        Boolean
    tn5250.wdsf_ds_ct_flag2_6  Bit 6
        Boolean
    tn5250.wdsf_ds_ct_flag2_7  Bit 7
        Boolean
    tn5250.wdsf_ds_ct_flag3  Flag Byte 3
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ct_flag3_0  Bit 0
        Boolean
    tn5250.wdsf_ds_ct_flag3_1  Bit 1
        Boolean
    tn5250.wdsf_ds_ct_flag3_2  Bit 2
        Boolean
    tn5250.wdsf_ds_ct_flag3_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ct_mnemonic_offset  Mnemonic Offset
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ct_numeric  Numeric Characters
        Unsigned 8-bit integer
    tn5250.wdsf_ds_ct_text  Choice Text
        EBCDIC string
    tn5250.wdsf_ds_flag1  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_ds_flag1_1  Auto Select
        Boolean
    tn5250.wdsf_ds_flag1_2  Field MDT
        Boolean
    tn5250.wdsf_ds_flag1_auto_enter  Mouse Characteristics
        Unsigned 8-bit integer
    tn5250.wdsf_ds_flag1_mouse_characteristics  Mouse Characteristics
        Unsigned 8-bit integer
    tn5250.wdsf_ds_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_ds_flag2  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_ds_flag2_1  Bit 0
        Boolean
    tn5250.wdsf_ds_flag2_2  Bit 1
        Boolean
    tn5250.wdsf_ds_flag2_3  Bit 2
        Boolean
    tn5250.wdsf_ds_flag2_4  Bit 3
        Boolean
    tn5250.wdsf_ds_flag2_5  Bit 4
        Boolean
    tn5250.wdsf_ds_flag2_6  Bit 5
        Boolean
    tn5250.wdsf_ds_flag3  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_ds_flag3_1  Bit 0
        Boolean
    tn5250.wdsf_ds_flag3_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_ds_gdc  GUI Device Characteristics
        Unsigned 8-bit integer
    tn5250.wdsf_ds_gdc_indicators  Indicators
        Unsigned 8-bit integer
    tn5250.wdsf_ds_gdc_reserved  Reserved
        Boolean
    tn5250.wdsf_ds_mbs_color_sep  Color Separator Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_mbs_end_column  End Column
        Unsigned 8-bit integer
    tn5250.wdsf_ds_mbs_flag  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_ds_mbs_flag_0  Bit 0
        Boolean
    tn5250.wdsf_ds_mbs_flag_1  Bit 1
        Boolean
    tn5250.wdsf_ds_mbs_flag_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_ds_mbs_monochrome_sep  Monochrome Separator Emphasis
        Unsigned 8-bit integer
    tn5250.wdsf_ds_mbs_sep_char  Separator Character
        EBCDIC string
    tn5250.wdsf_ds_mbs_start_column  Start Column
        Unsigned 8-bit integer
    tn5250.wdsf_ds_minor_type  Minor Structured Field Type
        Unsigned 8-bit integer
    tn5250.wdsf_ds_numeric_sep  Numeric Separator Character
        EBCDIC string
    tn5250.wdsf_ds_nws  NWS With Mnemonic Underscore Characteristics
        Unsigned 8-bit integer
    tn5250.wdsf_ds_nws_indicators  Indicators
        Unsigned 8-bit integer
    tn5250.wdsf_ds_nws_reserved  Reserved
        Boolean
    tn5250.wdsf_ds_padding  Padding Between Choices
        Unsigned 8-bit integer
    tn5250.wdsf_ds_rows  Rows
        Unsigned 8-bit integer
    tn5250.wdsf_ds_sbi_bottom_character  Bottom Scroll Bar Character
        EBCDIC string
    tn5250.wdsf_ds_sbi_color_top_highlight_shaft  Color Shaft ScrollBar Highlighting
        Unsigned 8-bit integer
    tn5250.wdsf_ds_sbi_color_top_highlightl  Color Top of ScrollBar Highlighting
        Unsigned 8-bit integer
    tn5250.wdsf_ds_sbi_empty_character  Empty Scroll Bar Character
        EBCDIC string
    tn5250.wdsf_ds_sbi_flag1  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_ds_sbi_flag1_0  Bit 0
        Boolean
    tn5250.wdsf_ds_sbi_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_ds_sbi_monochrome_top_highlight  Monochrome Top of ScrollBar Highlighting
        Unsigned 8-bit integer
    tn5250.wdsf_ds_sbi_monochrome_top_highlight_shaft  Monochrome Shaft ScrollBar Highlighting
        Unsigned 8-bit integer
    tn5250.wdsf_ds_sbi_slider_character  Slider Scroll Bar Character
        EBCDIC string
    tn5250.wdsf_ds_sbi_top_character  Top Scroll Bar Character
        EBCDIC string
    tn5250.wdsf_ds_selection_techniques  Selection Techniques
        Unsigned 8-bit integer
    tn5250.wdsf_ds_sliderpos  Slider Positions That Can Be Scrolled
        Unsigned 32-bit integer
    tn5250.wdsf_ds_textsize  Text Size
        Unsigned 8-bit integer
    tn5250.wdsf_ds_totalrows  Total Rows or Minor Structures That Can Be Scrolled
        Unsigned 32-bit integer
    tn5250.wdsf_ds_type  Type of Selection Field
        Unsigned 8-bit integer
    tn5250.wdsf_dsb_flag1  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_dsb_flag1_0  Bit 0
        Boolean
    tn5250.wdsf_dsb_flag1_1  Bit 1
        Boolean
    tn5250.wdsf_dsb_flag1_7  Bit 7
        Boolean
    tn5250.wdsf_dsb_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_pmb_first_mouse_event  First Mouse Event (Leading Edge Event)
        Unsigned 8-bit integer
    tn5250.wdsf_pmb_flag1  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_pmb_flag1_0  Bit 0
        Boolean
    tn5250.wdsf_pmb_flag1_1  Bit 1
        Boolean
    tn5250.wdsf_pmb_flag1_2  Bit 2
        Boolean
    tn5250.wdsf_pmb_flag1_3  Bit 3
        Boolean
    tn5250.wdsf_pmb_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_pmb_second_mouse_event  Second Mouse Event (Trailing Edge Event)
        Unsigned 8-bit integer
    tn5250.wdsf_ragc_flag  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_ragc_flag1_0  GUI-Like Characters
        Boolean
    tn5250.wdsf_ragc_flag_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_rgw_flag  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_rgw_flag1_0  Reserved
        Boolean
    tn5250.wdsf_rgw_flag1_1  Window Pull-Down
        Boolean
    tn5250.wdsf_rgw_flag_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wdsf_sbi_rowscols  Rows or Columns
        Unsigned 8-bit integer
    tn5250.wdsf_sbi_sliderpos  SliderPos
        Unsigned 32-bit integer
    tn5250.wdsf_sbi_total_scroll  TotalRows or TotalCols That Can  Be Scrolled
        Unsigned 32-bit integer
    tn5250.wdsf_wdf_flag1  Flags
        Unsigned 8-bit integer
    tn5250.wdsf_wdf_flag1_0  Bit 0
        Boolean
    tn5250.wdsf_wdf_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wea_prim_attr  Extended Primary Attributes
        Unsigned 8-bit integer
    tn5250.wea_prim_attr_blink  Blink
        Boolean
    tn5250.wea_prim_attr_col  Column Separator
        Boolean
    tn5250.wea_prim_attr_flag  Attribute Change
        Boolean
    tn5250.wea_prim_attr_int  Intensity
        Boolean
    tn5250.wea_prim_attr_rev  Reverse Image
        Boolean
    tn5250.wea_prim_attr_und  Underscore
        Boolean
    tn5250.wectw_end_column  End Column
        Unsigned 8-bit integer
    tn5250.wectw_start_column  Start Column
        Unsigned 8-bit integer
    tn5250.wsf_qss_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.wsf_qss_flag1_0  Bit 0
        Boolean
    tn5250.wsf_qss_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wsf_qss_flag2  Byte 2
        Unsigned 8-bit integer
    tn5250.wsf_qss_flag2_7  Bit 7
        Boolean
    tn5250.wsf_qss_flag2_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wssf_cc_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.wssf_cc_flag1_7  Bit 7
        Boolean
    tn5250.wssf_cc_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wssf_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.wssf_flag2  Byte 2
        Unsigned 8-bit integer
    tn5250.wssf_flag2_0  Bit 0
        Boolean
    tn5250.wssf_flag2_1  Bit 1
        Boolean
    tn5250.wssf_flag2_2  Bit 2
        Boolean
    tn5250.wssf_flag2_3  Bit 3
        Boolean
    tn5250.wssf_flag2_4  Bit 4
        Boolean
    tn5250.wssf_flag2_5  Bit 5
        Boolean
    tn5250.wssf_flag2_6  Bit 6
        Boolean
    tn5250.wssf_flag2_7  Bit 7
        Boolean
    tn5250.wssf_ifc_background_color  Background Color
        Unsigned 8-bit integer
    tn5250.wssf_ifc_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.wssf_ifc_flag1_0  Bit 0 (Cache allowed flag)
        Boolean
    tn5250.wssf_ifc_flag1_1to3  Bits 1-3 (Type of image/fax display)
        Unsigned 8-bit integer
    tn5250.wssf_ifc_flag1_4  Bit 4 (Color importance during scaling)
        Boolean
    tn5250.wssf_ifc_flag1_5  Bit 5 (Allow display to control scaling)
        Boolean
    tn5250.wssf_ifc_flag1_6  Bit 6 (Reverse image)
        Boolean
    tn5250.wssf_ifc_flag1_7  Bit 7 (Allow/Inhibit EasyScroll with a mouse)
        Boolean
    tn5250.wssf_ifc_flag2  Byte 2
        Unsigned 8-bit integer
    tn5250.wssf_ifc_flag2_0  Bit 0 (Duplicate Scan Lines)
        Boolean
    tn5250.wssf_ifc_flag2_1  Bit 1 (Allow/Inhibit Trim Magnify Scaling)
        Boolean
    tn5250.wssf_ifc_flag2_7  Bit 7
        Boolean
    tn5250.wssf_ifc_flag2_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wssf_ifc_foreground_color  Foreground Color
        Unsigned 8-bit integer
    tn5250.wssf_ifc_image_format  Image Format
        Unsigned 16-bit integer
    tn5250.wssf_ifc_imagefax_name  Image/Fax Name
        EBCDIC string
    tn5250.wssf_ifc_rotation  Rotation (Degrees)
        Unsigned 16-bit integer
    tn5250.wssf_ifc_scaling  Scaling
        Unsigned 16-bit integer
    tn5250.wssf_ifc_viewimage_location_col  View Image Location (Horizontal Position)
        Unsigned 8-bit integer
    tn5250.wssf_ifc_viewimage_location_row  View Image Location (Vertical Percentage)
        Unsigned 8-bit integer
    tn5250.wssf_ifc_viewport_location_col  Viewport Location (Column)
        Unsigned 8-bit integer
    tn5250.wssf_ifc_viewport_location_row  Viewport Location (Row)
        Unsigned 8-bit integer
    tn5250.wssf_ifc_viewport_size_col  Viewport Size (Column)
        Unsigned 8-bit integer
    tn5250.wssf_ifc_viewport_size_row  Viewport Size (Row)
        Unsigned 8-bit integer
    tn5250.wssf_ifd_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.wssf_ifd_flag1_0  Bit 0 (Last Data Stream flag)
        Boolean
    tn5250.wssf_ifd_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wssf_ifd_imagefax_data  Image/Fax Data
        EBCDIC string
    tn5250.wssf_ifd_imagefax_name  Image/Fax Name
        EBCDIC string
    tn5250.wssf_kbc_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.wssf_kbc_flag1_5  Bit 5
        Boolean
    tn5250.wssf_kbc_flag1_6  Bit 6
        Boolean
    tn5250.wssf_kbc_flag1_7  Bit 7
        Boolean
    tn5250.wssf_kbc_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wssf_ttw_data  Transparent Data
        EBCDIC string
    tn5250.wssf_ttw_flag  Flag
        Unsigned 8-bit integer
    tn5250.wssf_wsc_minor_type  Minor Structured Field Type
        Unsigned 8-bit integer
    tn5250.wtd_ccc1  Write To Display Command Control Character Byte 1
        Unsigned 8-bit integer
    tn5250.wtd_ccc2  Write To Display Command Control Character Byte 2
        Unsigned 8-bit integer
    tn5250.wtd_ccc_alarm  Sound Alarm
        Boolean
    tn5250.wtd_ccc_cursor  Cursor does not move when keyboard unlocks
        Boolean
    tn5250.wtd_ccc_off  Set Message Waiting indicator off
        Boolean
    tn5250.wtd_ccc_on  Set Message Waiting indicator on
        Boolean
    tn5250.wtd_ccc_reserved  Reserved
        Boolean
    tn5250.wtd_ccc_reset  Reset blinking cursor
        Boolean
    tn5250.wtd_ccc_set  Set blinking cursor
        Boolean
    tn5250.wtd_ccc_unlock  Unlock the keyboard and reset any pending AID bytes
        Boolean
    tn5250.wts_cld_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.wts_cld_flag1_0  Bit 0
        Boolean
    tn5250.wts_cld_flag1_1  Bit 1
        Boolean
    tn5250.wts_cld_flag1_2  Bit 2
        Boolean
    tn5250.wts_cld_flag1_3  Bit 3
        Boolean
    tn5250.wts_cld_flag1_4  Bit 4
        Boolean
    tn5250.wts_cld_flag1_5  Bit 5
        Boolean
    tn5250.wts_cld_flag1_6  Bit 6
        Boolean
    tn5250.wts_cld_flag1_7  Bit 7
        Boolean
    tn5250.wts_cld_flag2  Byte 2
        Unsigned 8-bit integer
    tn5250.wts_cld_flag2_0  Bit 0
        Boolean
    tn5250.wts_cld_flag2_1  Bit 1
        Boolean
    tn5250.wts_cld_flag2_2  Bit 2
        Boolean
    tn5250.wts_cld_flag2_3  Bit 3
        Boolean
    tn5250.wts_cld_flag2_4  Bit 4
        Boolean
    tn5250.wts_cld_flag2_line_spacing  Line Spacing in Half-Units
        Unsigned 8-bit integer
    tn5250.wts_cld_flag3  Byte 3
        Unsigned 8-bit integer
    tn5250.wts_cld_flag3_0  Bit 0
        Boolean
    tn5250.wts_cld_flag3_1  Bit 1
        Boolean
    tn5250.wts_cld_flag3_2  Bit 2
        Boolean
    tn5250.wts_cld_flag3_3  Bit 3
        Boolean
    tn5250.wts_cld_flag3_4  Bit 4
        Boolean
    tn5250.wts_cld_flag3_5  Bit 5
        Boolean
    tn5250.wts_cld_flag3_6  Bit 6
        Boolean
    tn5250.wts_cld_flag3_7  Bit 7
        Boolean
    tn5250.wts_cld_io  Indent Offset
        Unsigned 8-bit integer
    tn5250.wts_cld_li  Line Image
        EBCDIC string
    tn5250.wts_cld_lmo  Left Margin Offset
        Unsigned 8-bit integer
    tn5250.wts_cld_page_num  Page Number
        Unsigned 16-bit integer
    tn5250.wts_cld_row  Row
        Unsigned 16-bit integer
    tn5250.wts_cld_sli  Scale Line ID
        Unsigned 8-bit integer
    tn5250.wts_flag1  Byte 1
        Unsigned 8-bit integer
    tn5250.wts_flag1_0  Bit 0
        Boolean
    tn5250.wts_flag1_1  Bit 1
        Boolean
    tn5250.wts_flag1_2  Bit 2
        Boolean
    tn5250.wts_flag1_3  Bit 3
        Boolean
    tn5250.wts_flag1_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wts_flag2  Byte 2
        Unsigned 8-bit integer
    tn5250.wts_flag2_6  Bit 6
        Boolean
    tn5250.wts_flag2_reserved  Reserved
        Unsigned 8-bit integer
    tn5250.wts_flag3  Byte 3
        Unsigned 8-bit integer
    tn5250.wts_flag3_0  Bit 0
        Boolean
    tn5250.wts_flag3_1  Bit 1
        Boolean
    tn5250.wts_flag3_2  Bit 2
        Boolean
    tn5250.wts_flag3_3  Bit 3
        Boolean
    tn5250.wts_flag3_4  Bit 4
        Boolean
    tn5250.wts_flag3_5  Bit 5
        Boolean
    tn5250.wts_flag3_6  Bit 6
        Boolean
    tn5250.wts_flag3_7  Bit 7
        Boolean
    tn5250.wts_home_position_col  Home Position (Column)
        Unsigned 16-bit integer
    tn5250.wts_home_position_row  Home Position (Row)
        Unsigned 16-bit integer
    tn5250.wts_partition  Partition
        Unsigned 8-bit integer

TPKT - ISO on TCP - RFC1006 (tpkt)

    tpkt.length  Length
        Unsigned 16-bit integer
        Length of data unit, including this header
    tpkt.reserved  Reserved
        Unsigned 8-bit integer
        Reserved, should be 0
    tpkt.version  Version
        Unsigned 8-bit integer
        Version, only version 3 is defined

TRILL (trill)

    trill.egress_nick  Egress/Root RBridge Nickname
        Unsigned 16-bit integer
        The Egress or Distribution Tree Root RBridge Nickname.
    trill.hop_cnt  Hop Count
        Unsigned 16-bit integer
        The remaining hop count for this frame.
    trill.ingress_nick  Ingress RBridge Nickname
        Unsigned 16-bit integer
        The Ingress RBridge Nickname.
    trill.multi_dst  Multi Destination
        Boolean
        A boolean specifying if this is a multi-destination frame.
    trill.op_len  Option Length
        Unsigned 16-bit integer
        The length of the options field of this frame.
    trill.options  Options
        Byte array
        The TRILL Options field.
    trill.reserved  Reserved
        Unsigned 16-bit integer
        Bits reserved for future specification.
    trill.version  Version
        Unsigned 16-bit integer
        The TRILL version number.

TTEthernet (tte)

    tte.cf  Constant Field
        Unsigned 32-bit integer
    tte.ctid  Critical Traffic Identifier
        Unsigned 16-bit integer

TTEthernet Protocol Control Frame (tte_pcf)

    tte.pcf  Protocol Control Frame
        Byte array
    tte.pcf.ic  Integration Cycle
        Unsigned 32-bit integer
    tte.pcf.mn  Membership New
        Unsigned 32-bit integer
    tte.pcf.res0  Reserved 0
        Unsigned 32-bit integer
    tte.pcf.res1  Reserved 1
        Byte array
    tte.pcf.sd  Sync Domain
        Unsigned 8-bit integer
    tte.pcf.sp  Sync Priority
        Unsigned 8-bit integer
    tte.pcf.tc  Transparent Clock
        Unsigned 64-bit integer
    tte.pcf.type  Type
        Unsigned 8-bit integer

TURN Channel (turnchannel)

    turnchannel.id  TURN Channel ID
        Unsigned 16-bit integer
    turnchannel.length  Data Length
        Unsigned 16-bit integer

Tabular Data Stream (tds)

    tds.channel  Channel
        Unsigned 16-bit integer
        Channel Number
    tds.fragment  TDS Fragment
        Frame number
    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.packet_number  Packet Number
        Unsigned 8-bit integer
    tds.reassembled.length  Reassembled TDS length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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
    tds7.message  Message
        String
    tds7login.client_pid  Client PID
        Unsigned 32-bit integer
    tds7login.client_version  Client version
        Unsigned 32-bit integer
    tds7login.collation  Collation
        Unsigned 32-bit integer
    tds7login.connection_id  Connection ID
        Unsigned 32-bit integer
    tds7login.option_flags1  Option Flags 1
        Unsigned 8-bit integer
    tds7login.option_flags2  Option Flags 2
        Unsigned 8-bit integer
    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
    tds7login.time_zone  Time Zone
        Unsigned 32-bit integer
    tds7login.total_len  Total Packet Length
        Unsigned 32-bit integer
        TDS7 Login Packet total packet length
    tds7login.version  TDS version
        Unsigned 32-bit integer

Tango Dissector Using GIOP API (giop-tango)

Tazmen Sniffer Protocol (tzsp)

    tzsp.encap  Encapsulation
        Unsigned 16-bit integer
    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
    tzsp.unknown  Unknown tag
        Byte array
        Unknown
    tzsp.version  Version
        Unsigned 8-bit integer
    tzsp.wlan.channel  Channel
        Unsigned 8-bit integer
    tzsp.wlan.rate  Rate
        Unsigned 8-bit integer
    tzsp.wlan.signal  Signal
        Signed 8-bit integer
    tzsp.wlan.silence  Silence
        Signed 8-bit integer
    tzsp.wlan.status  Status
        Unsigned 16-bit integer
    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
    tzsp.wlan.time  Time
        Unsigned 32-bit integer

Teamspeak2 Protocol (ts2)

    ts2.badlogin  Bad Login
        Boolean
    ts2.chaneldescription  Channel Description
        NULL terminated string
    ts2.chanelid  Channel Id
        Unsigned 32-bit integer
    ts2.chanelname  Channel Name
        NULL terminated string
    ts2.chaneltopic  Channel Topic
        NULL terminated string
    ts2.channel  Channel
        Length string pair
    ts2.channelflags  Channel Flags
        Unsigned 8-bit integer
    ts2.channelflags.default  Default
        Boolean
    ts2.channelflags.has_password  Has password
        Boolean
    ts2.channelflags.has_subchannels  Has subchannels
        Boolean
    ts2.channelflags.moderated  Moderated
        Boolean
    ts2.channelflags.unregistered  Unregistered
        Boolean
    ts2.channelorder  Channel order
        Unsigned 16-bit integer
    ts2.channelpassword  Channel Password
        Length string pair
    ts2.class  Class
        Unsigned 16-bit integer
    ts2.clientid  Client id
        Unsigned 32-bit integer
    ts2.codec  Codec
        Unsigned 16-bit integer
    ts2.crc32  CRC32 Checksum
        Unsigned 32-bit integer
    ts2.emptyspace  Empty Space
        No value
    ts2.fragment  Message fragment
        Frame number
    ts2.fragment.error  Message defragmentation error
        Frame number
    ts2.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    ts2.fragment.overlap  Message fragment overlap
        Boolean
    ts2.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    ts2.fragment.too_long_fragment  Message fragment too long
        Boolean
    ts2.fragmentnumber  Fragment Number
        Unsigned 16-bit integer
    ts2.fragments  Message fragments
        No value
    ts2.maxusers  Max users
        Unsigned 16-bit integer
    ts2.name  Name
        Length string pair
    ts2.nick  Nick
        Length string pair
    ts2.numberofchannels  Number Of Channels
        Unsigned 32-bit integer
    ts2.numberofplayers  Number Of Players
        Unsigned 32-bit integer
    ts2.parentchannelid  Parent Channel ID
        Unsigned 32-bit integer
    ts2.password  Password
        Length string pair
    ts2.ping_ackto  Ping Reply To
        Unsigned 32-bit integer
    ts2.platformstring  Platform String
        Length string pair
    ts2.playerid  Player Id
        Unsigned 32-bit integer
    ts2.playerstatusflags  Player Status Flags
        Unsigned 16-bit integer
    ts2.playerstatusflags.away  Away
        Boolean
    ts2.playerstatusflags.blockwhispers  Block Whispers
        Boolean
    ts2.playerstatusflags.channelcommander  Channel Commander
        Boolean
    ts2.playerstatusflags.mute  Mute
        Boolean
    ts2.playerstatusflags.mutemicrophone  Mute Microphone
        Boolean
    ts2.protocolstring  Protocol String
        Length string pair
    ts2.reassembled.in  Reassembled in
        Frame number
    ts2.reassembled.length  Reassembled TeamSpeak2 length
        Unsigned 32-bit integer
    ts2.registeredlogin  Registered Login
        Boolean
    ts2.resendcount  Resend Count
        Unsigned 16-bit integer
    ts2.sequencenum  Sequence Number
        Unsigned 32-bit integer
    ts2.servername  Server Name
        Length string pair
    ts2.serverwelcomemessage  Server Welcome Message
        Length string pair
    ts2.sessionkey  Session Key
        Unsigned 32-bit integer
    ts2.string  String
        String
    ts2.subchannel  Sub-Channel
        Length string pair
    ts2.type  Type
        Unsigned 16-bit integer
    ts2.unknown  Unknown
        Byte array

Telkonet powerline (telkonet)

    telkonet.type  Type
        Byte array
        TELKONET type

Telnet (telnet)

    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
    telnet.data  Data
        String
    telnet.enc.cmd  Enc Cmd
        Unsigned 8-bit integer
        Encryption command
    telnet.enc.type  Enc Type
        Unsigned 8-bit integer
        Encryption type

Teredo IPv6 over UDP tunneling (teredo)

    teredo.auth  Teredo Authentication header
        No value
    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
    teredo.orig.port  Origin UDP port
        Unsigned 16-bit integer

The Armagetron Advanced OpenGL Tron clone (armagetronad)

    armagetronad.data  Data
        String
        The actual data (array of shorts in network order)
    armagetronad.data_len  DataLen
        Unsigned 16-bit integer
        The length of the data (in shorts)
    armagetronad.descriptor_id  Descriptor
        Unsigned 16-bit integer
        The ID of the descriptor (the command)
    armagetronad.message  Message
        No value
        A message
    armagetronad.message_id  MessageID
        Unsigned 16-bit integer
        The ID of the message (to ack it)
    armagetronad.sender_id  SenderID
        Unsigned 16-bit integer
        The ID of the sender (0x0000 for the server)

TiVoConnect Discovery Protocol (tivoconnect)

    tivoconnect.flavor  Flavor
        NULL terminated string
        Protocol Flavor supported by the originator
    tivoconnect.identity  Identity
        NULL terminated string
        Unique serial number for the system
    tivoconnect.machine  Machine
        NULL terminated string
        Human-readable system name
    tivoconnect.method  Method
        NULL terminated string
        Packet was delivered via UDP(broadcast) or TCP(connected)
    tivoconnect.platform  Platform
        NULL terminated string
        System platform, either tcd(TiVo) or pc(Computer)
    tivoconnect.services  Services
        NULL terminated string
        List of available services on the system
    tivoconnect.version  Version
        NULL terminated string
        System software version

Time Protocol (time)

    time.time  Time
        Unsigned 32-bit integer
        Seconds since 00:00 (midnight) 1 January 1900 GMT

Time Synchronization Protocol (tsp)

    tsp.hopcnt  Hop Count
        Unsigned 8-bit integer
    tsp.name  Machine Name
        NULL terminated string
        Sender Machine Name
    tsp.sec  Seconds
        Unsigned 32-bit integer
    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
    tsp.version  Version
        Unsigned 8-bit integer
        Protocol Version Number

Tiny Transport Protocol (ttp)

    ttp.dcredit  Delta Credit
        Unsigned 8-bit integer
    ttp.icredit  Initial Credit
        Unsigned 8-bit integer
    ttp.m  More Bit
        Boolean
    ttp.p  Parameter Bit
        Boolean

Token-Ring (tr)

    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
    tr.src  Source
        6-byte Hardware (MAC) Address
        Source Hardware Address

Token-Ring Media Access Control (trmac)

    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

Totem Single Ring Protocol implemented in Corosync Cluster Engine (corosync_totemsrp)

    corosync_totemsrp.ip_address  Node IP address
        No value
    corosync_totemsrp.ip_address.addr  Address
        Byte array
    corosync_totemsrp.ip_address.addr4  Address
        IPv4 address
    corosync_totemsrp.ip_address.addr4_padding  Address padding
        Byte array
    corosync_totemsrp.ip_address.addr6  Address
        IPv6 address
    corosync_totemsrp.ip_address.family  Address family
        Unsigned 16-bit integer
    corosync_totemsrp.ip_address.nodeid  Node ID
        Unsigned 32-bit integer
    corosync_totemsrp.mcast  ring ordered multicast message
        No value
    corosync_totemsrp.mcast.guarantee  Guarantee
        Signed 32-bit integer
    corosync_totemsrp.mcast.node_id  Node id(unused?)
        Unsigned 32-bit integer
    corosync_totemsrp.mcast.seq  Multicast sequence number
        Unsigned 32-bit integer
    corosync_totemsrp.mcast.system_from  System from address
        No value
    corosync_totemsrp.mcast.this_seqno  This Sequence number
        Signed 32-bit integer
    corosync_totemsrp.memb_commit_token  Membership commit token
        No value
    corosync_totemsrp.memb_commit_token.addr_entries  The number of address entries
        Signed 32-bit integer
    corosync_totemsrp.memb_commit_token.memb_index  Member index
        Signed 32-bit integer
    corosync_totemsrp.memb_commit_token.retrans_flg  Retransmission flag
        Unsigned 32-bit integer
    corosync_totemsrp.memb_commit_token.token_seq  Token sequence
        Unsigned 32-bit integer
    corosync_totemsrp.memb_commit_token_memb_entry  Membership entry
        No value
    corosync_totemsrp.memb_commit_token_memb_entry.aru  Sequnce number all received up to
        Unsigned 32-bit integer
    corosync_totemsrp.memb_commit_token_memb_entry.high_delivered  High delivered
        Unsigned 32-bit integer
    corosync_totemsrp.memb_commit_token_memb_entry.received_flg  Received flag
        Unsigned 32-bit integer
    corosync_totemsrp.memb_join  Membership join message
        No value
    corosync_totemsrp.memb_join.failed_list_entries  The number of failed list entries 
        Unsigned 32-bit integer
    corosync_totemsrp.memb_join.proc_list_entries  The number of processor list entries 
        Unsigned 32-bit integer
    corosync_totemsrp.memb_join.ring_seq  Ring sequence number
        Unsigned 64-bit integer
    corosync_totemsrp.memb_merge_detect  Merge rings if there are available rings
        No value
    corosync_totemsrp.memb_ring_id  Member ring id
        No value
    corosync_totemsrp.memb_ring_id.seq  Squence in member ring id
        Unsigned 64-bit integer
    corosync_totemsrp.message_header.encapsulated  Encapsulated
        Signed 8-bit integer
    corosync_totemsrp.message_header.endian_detector  Endian detector
        Unsigned 16-bit integer
    corosync_totemsrp.message_header.nodeid  Node ID
        Unsigned 32-bit integer
    corosync_totemsrp.message_header.type  Type
        Signed 8-bit integer
    corosync_totemsrp.orf_token  Ordering, Reliability, Flow (ORF) control Token
        No value
    corosync_totemsrp.orf_token.aru  Sequnce number all received up to
        Unsigned 32-bit integer
    corosync_totemsrp.orf_token.aru_addr  ID of node setting ARU
        Unsigned 32-bit integer
    corosync_totemsrp.orf_token.backlog  Backlog
        Unsigned 32-bit integer
        The sum of the number of new message waiting to be transmitted by each processor on the ring at the time at which that processor forwarded the token during the previous rotation[1]
    corosync_totemsrp.orf_token.fcc  FCC
        Unsigned 32-bit integer
        A count of the number of messages broadcast by all processors during the previous rotation of the token[1]
    corosync_totemsrp.orf_token.retrans_flg  Retransmission flag
        Signed 32-bit integer
    corosync_totemsrp.orf_token.rtr_list_entries  The number of retransmission list entries
        Signed 32-bit integer
    corosync_totemsrp.orf_token.seq  Sequence number allowing recognition of redundant copies of the token
        Unsigned 32-bit integer
    corosync_totemsrp.rtr_item  Retransmission Item
        No value
    corosync_totemsrp.rtr_item.seq  Sequence of Retransmission Item
        Unsigned 32-bit integer
    corosync_totemsrp.srp_addr  Single Ring Protocol Address
        No value
    corosync_totemsrp.token_hold_canel  Hold cancel token
        No value

Totemnet Layer of Corosync Cluster Engine (corosync_totemnet)

    corosync_totemnet.security_header_hash_digest  Hash digest
        Byte array
    corosync_totemnet.security_header_salt  Salt
        Byte array

Transaction Capabilities Application Part (tcap)

    tcap.Component  Component
        Unsigned 32-bit integer
    tcap.DialoguePDU  DialoguePDU
        Unsigned 32-bit integer
    tcap.UniDialoguePDU  UniDialoguePDU
        Unsigned 32-bit integer
    tcap.abort  abort
        No value
    tcap.abort_source  abort-source
        Signed 32-bit integer
        ABRT_source
    tcap.application_context_name  application-context-name
        Object Identifier
        AUDT_application_context_name
    tcap.begin  begin
        No value
    tcap.components  components
        Unsigned 32-bit integer
        ComponentPortion
    tcap.continue  continue
        No value
    tcap.data  Data
        Byte array
    tcap.derivable  derivable
        Signed 32-bit integer
        InvokeIdType
    tcap.dialog  dialog
        Byte array
        Dialog1
    tcap.dialogueAbort  dialogueAbort
        No value
        ABRT_apdu
    tcap.dialoguePortion  dialoguePortion
        Byte array
    tcap.dialogueRequest  dialogueRequest
        No value
        AARQ_apdu
    tcap.dialogueResponse  dialogueResponse
        No value
        AARE_apdu
    tcap.dialogue_service_provider  dialogue-service-provider
        Signed 32-bit integer
    tcap.dialogue_service_user  dialogue-service-user
        Signed 32-bit integer
    tcap.dtid  dtid
        Byte array
        DestTransactionID
    tcap.end  end
        No value
    tcap.errorCode  errorCode
        Unsigned 32-bit integer
    tcap.generalProblem  generalProblem
        Signed 32-bit integer
    tcap.globalValue  globalValue
        Object Identifier
        OBJECT_IDENTIFIER
    tcap.invoke  invoke
        No value
    tcap.invokeID  invokeID
        Signed 32-bit integer
        InvokeIdType
    tcap.invokeIDRej  invokeIDRej
        Unsigned 32-bit integer
    tcap.invokeProblem  invokeProblem
        Signed 32-bit integer
    tcap.len  Length
        Unsigned 8-bit integer
    tcap.linkedID  linkedID
        Signed 32-bit integer
        InvokeIdType
    tcap.localValue  localValue
        Signed 32-bit integer
        INTEGER
    tcap.msgtype  Tag
        Unsigned 8-bit integer
    tcap.nationaler  nationaler
        Signed 32-bit integer
        INTEGER_M32768_32767
    tcap.not_derivable  not-derivable
        No value
    tcap.oid  oid
        Object Identifier
        OBJECT_IDENTIFIER
    tcap.opCode  opCode
        Unsigned 32-bit integer
        OPERATION
    tcap.otid  otid
        Byte array
        OrigTransactionID
    tcap.p_abortCause  p-abortCause
        Unsigned 32-bit integer
    tcap.parameter  parameter
        No value
    tcap.privateer  privateer
        Signed 32-bit integer
        INTEGER
    tcap.problem  problem
        Unsigned 32-bit integer
    tcap.protocol_version  protocol-version
        Byte array
        AUDT_protocol_version
    tcap.reason  reason
        Unsigned 32-bit integer
    tcap.reject  reject
        No value
    tcap.result  result
        Signed 32-bit integer
        Associate_result
    tcap.result_source_diagnostic  result-source-diagnostic
        Unsigned 32-bit integer
        Associate_source_diagnostic
    tcap.resultretres  resultretres
        No value
    tcap.returnError  returnError
        No value
    tcap.returnErrorProblem  returnErrorProblem
        Signed 32-bit integer
    tcap.returnResultLast  returnResultLast
        No value
        ReturnResult
    tcap.returnResultNotLast  returnResultNotLast
        No value
        ReturnResult
    tcap.returnResultProblem  returnResultProblem
        Signed 32-bit integer
    tcap.srt.begin  Begin Session
        Frame number
        SRT Begin of Session
    tcap.srt.duplicate  Session Duplicate
        Frame number
        SRT Duplicated with Session
    tcap.srt.end  End Session
        Frame number
        SRT End of Session
    tcap.srt.session_id  Session Id
        Unsigned 32-bit integer
    tcap.srt.sessiontime  Session duration
        Time duration
        Duration of the TCAP session
    tcap.tid  Transaction Id
        Byte array
    tcap.u_abortCause  u-abortCause
        Byte array
        DialoguePortion
    tcap.unidialoguePDU  unidialoguePDU
        No value
        AUDT_apdu
    tcap.unidirectional  unidirectional
        No value
    tcap.user_information  user-information
        Unsigned 32-bit integer
        AUDT_user_information
    tcap.user_information_item  user-information item
        No value
        EXTERNAL
    tcap.version1  version1
        Boolean

Transmission Control Protocol (tcp)

    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.bytes_in_flight  Number of bytes in flight
        Unsigned 32-bit integer
        How many bytes are now in flight for this connection
    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.reused_ports  TCP Port numbers reused
        No value
        A new tcp session has started with previously used port numbers
    tcp.analysis.rto  The RTO for this segment was
        Time duration
        How long transmission was delayed before this segment was retransmitted (RTO)
    tcp.analysis.rto_frame  RTO based on delta from frame
        Frame number
        This is the frame we measure the RTO from
    tcp.analysis.window_full  Window full
        No value
        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_probe_ack  Zero Window Probe Ack
        No value
        This is an ACK to a zero-window-probe
    tcp.checksum  Checksum
        Unsigned 16-bit integer
        Details at: http://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html
    tcp.checksum_bad  Bad Checksum
        Boolean
        True: checksum doesn't match packet content; False: matches content or not checked
    tcp.checksum_good  Good Checksum
        Boolean
        True: checksum matches packet content; False: doesn't match content or not checked
    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  Acknowledgement
        Boolean
    tcp.flags.cwr  Congestion Window Reduced (CWR)
        Boolean
    tcp.flags.ecn  ECN-Echo
        Boolean
    tcp.flags.fin  Fin
        Boolean
    tcp.flags.ns  Nonce
        Boolean
        ECN concealment protection (RFC 3540)
    tcp.flags.push  Push
        Boolean
    tcp.flags.res  Reserved
        Boolean
        Three reserved bits (must be zero)
    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  TCP Options
        Byte array
    tcp.options.cc  TCP CC Option
        Boolean
    tcp.options.ccecho  TCP CC Echo Option
        Boolean
    tcp.options.ccnew  TCP CC New Option
        Boolean
    tcp.options.echo  TCP Echo Option
        Boolean
        TCP Sack Echo
    tcp.options.echo_reply  TCP Echo Reply Option
        Boolean
    tcp.options.md5  TCP MD5 Option
        Boolean
    tcp.options.mood  TCP Mood Option
        Boolean
    tcp.options.mood_val  TCP Mood Option Value
        String
    tcp.options.mss  TCP MSS Option
        Boolean
    tcp.options.mss_val  TCP MSS Option Value
        Unsigned 16-bit integer
    tcp.options.qs  TCP QS Option
        Boolean
    tcp.options.sack  TCP SACK Option
        Boolean
    tcp.options.sack_le  TCP SACK Left Edge
        Unsigned 32-bit integer
    tcp.options.sack_perm  TCP SACK Permitted Option
        Boolean
    tcp.options.sack_re  TCP SACK Right Edge
        Unsigned 32-bit integer
    tcp.options.scps  TCP SCPS Capabilities Option
        Boolean
    tcp.options.scps.binding  TCP SCPS Extended Binding Spacce
        Unsigned 8-bit integer
        TCP SCPS Extended Binding Space
    tcp.options.scps.vector  TCP SCPS Capabilities Vector
        Unsigned 8-bit integer
    tcp.options.scpsflags.bets  Partial Reliability Capable (BETS)
        Boolean
    tcp.options.scpsflags.compress  Lossless Header Compression (COMP)
        Boolean
    tcp.options.scpsflags.nlts  Network Layer Timestamp (NLTS)
        Boolean
    tcp.options.scpsflags.reserved1  Reserved Bit 1
        Boolean
    tcp.options.scpsflags.reserved2  Reserved Bit 2
        Boolean
    tcp.options.scpsflags.reserved3  Reserved Bit 3
        Boolean
    tcp.options.scpsflags.snack1  Short Form SNACK Capable (SNACK1)
        Boolean
    tcp.options.scpsflags.snack2  Long Form SNACK Capable (SNACK2)
        Boolean
    tcp.options.snack  TCP Selective Negative Acknowledgement Option
        Boolean
    tcp.options.snack.le  TCP SNACK Left Edge
        Unsigned 16-bit integer
    tcp.options.snack.offset  TCP SNACK Offset
        Unsigned 16-bit integer
    tcp.options.snack.re  TCP SNACK Right Edge
        Unsigned 16-bit integer
    tcp.options.snack.size  TCP SNACK Size
        Unsigned 16-bit integer
    tcp.options.time_stamp  TCP Time Stamp Option
        Boolean
    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.size  PDU Size
        Unsigned 32-bit integer
        The size of this PDU
    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.proc.dstcmd  Destination process name
        String
        Destination process command name
    tcp.proc.dstpid  Destination process ID
        Unsigned 32-bit integer
    tcp.proc.dstuid  Destination process user ID
        Unsigned 32-bit integer
    tcp.proc.dstuname  Destination process user name
        String
    tcp.proc.srccmd  Source process name
        String
        Source process command name
    tcp.proc.srcpid  Source process ID
        Unsigned 32-bit integer
    tcp.proc.srcuid  Source process user ID
        Unsigned 32-bit integer
    tcp.proc.srcuname  Source process user name
        String
    tcp.reassembled.length  Reassembled TCP length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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.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  Reassembled TCP Segments
        No value
        TCP Segments
    tcp.seq  Sequence number
        Unsigned 32-bit integer
    tcp.srcport  Source Port
        Unsigned 16-bit integer
    tcp.stream  Stream index
        Unsigned 32-bit integer
    tcp.time_delta  Time since previous frame in this TCP stream
        Time duration
        Time delta from previous frame in this TCP stream
    tcp.time_relative  Time since first frame in this TCP stream
        Time duration
        Time relative to first frame in this TCP stream
    tcp.urgent_pointer  Urgent pointer
        Unsigned 16-bit integer
    tcp.window_size  Window size
        Unsigned 32-bit integer

Transparent Inter Process Communication(TIPC) (tipc)

    tipc.ack_link_lev_seq  Acknowledged link level sequence number
        Unsigned 32-bit integer
        TIPC Acknowledged link level sequence number
    tipc.act_id  Activity identity
        Unsigned 32-bit integer
        TIPC Activity identity
    tipc.bearer_id  Bearer identity
        Unsigned 32-bit integer
        TIPC Bearer identity
    tipc.bearer_name  Bearer name
        NULL terminated string
        TIPC Bearer name
    tipc.cng_prot_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipc.data_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipc.destdrop  Destination Droppable
        Unsigned 32-bit integer
        Destination Droppable Bit
    tipc.dist_key  Key (Use for verification at withdrawal)
        Unsigned 32-bit integer
        TIPC key
    tipc.dist_port  Random number part of port identity
        Unsigned 32-bit integer
        TIPC Random number part of port identity
    tipc.dst_port  Destination port
        Unsigned 32-bit integer
        TIPC Destination port
    tipc.dst_proc  Destination processor
        String
        TIPC Destination processor
    tipc.err_code  Error code
        Unsigned 32-bit integer
        TIPC Error code
    tipc.hdr_size  Header size
        Unsigned 32-bit integer
        TIPC Header size
    tipc.hdr_unused  Unused
        Unsigned 32-bit integer
        TIPC Unused
    tipc.importance  Importance
        Unsigned 32-bit integer
        TIPC Importance
    tipc.imsg_cnt  Message count
        Unsigned 32-bit integer
        TIPC Message count
    tipc.link_lev_seq  Link level sequence number
        Unsigned 32-bit integer
        TIPC Link level sequence number
    tipc.link_selector  Link selector
        Unsigned 32-bit integer
        TIPC Link selector
    tipc.lp_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipc.msg.fragment  Message fragment
        Frame number
    tipc.msg.fragment.error  Message defragmentation error
        Frame number
    tipc.msg.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    tipc.msg.fragment.overlap  Message fragment overlap
        Boolean
    tipc.msg.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    tipc.msg.fragment.too_long_fragment  Message fragment too long
        Boolean
    tipc.msg.fragments  Message fragments
        No value
    tipc.msg.reassembled.in  Reassembled in
        Frame number
    tipc.msg.reassembled.length  Reassembled TIPC length
        Unsigned 32-bit integer
    tipc.msg_size  Message size
        Unsigned 32-bit integer
        TIPC Message size
    tipc.msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipc.name_dist_lower  Lower bound of published sequence
        Unsigned 32-bit integer
        TIPC Lower bound of published sequence
    tipc.name_dist_type  Published port name type
        Unsigned 32-bit integer
        TIPC Published port name type
    tipc.name_dist_upper  Upper bound of published sequence
        Unsigned 32-bit integer
        TIPC Upper bound of published sequence
    tipc.nd_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipc.non_sequenced  Non-sequenced
        Unsigned 32-bit integer
        Non-sequenced Bit
    tipc.nxt_snt_pkg  Next sent packet
        Unsigned 32-bit integer
        TIPC Next sent packet
    tipc.org_port  Originating port
        Unsigned 32-bit integer
        TIPC Originating port
    tipc.org_proc  Originating processor
        String
        TIPC Originating processor
    tipc.prev_proc  Previous processor
        String
        TIPC Previous processor
    tipc.probe  Probe
        Unsigned 32-bit integer
        TIPC Probe
    tipc.remote_addr  Remote address
        Unsigned 32-bit integer
        TIPC Remote address
    tipc.rm_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipc.route_cnt  Reroute counter
        Unsigned 32-bit integer
        TIPC Reroute counter
    tipc.seq_gap  Sequence gap
        Unsigned 32-bit integer
        TIPC Sequence gap
    tipc.sm_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipc.srcdrop  Source Droppable
        Unsigned 32-bit integer
        Destination Droppable Bit
    tipc.unknown_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipc.unused2  Unused
        Unsigned 32-bit integer
        TIPC Unused
    tipc.unused3  Unused
        Unsigned 32-bit integer
        TIPC Unused
    tipc.usr  User
        Unsigned 32-bit integer
        TIPC User
    tipc.ver  Version
        Unsigned 32-bit integer
        TIPC protocol version
    tipcv2.bcast_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipcv2.bcast_seq_gap  Broadcast Sequence Gap
        Unsigned 32-bit integer
    tipcv2.bcast_seq_no  Broadcast Sequence Number
        Unsigned 32-bit integer
    tipcv2.bcast_tag  Broadcast Tag
        Unsigned 32-bit integer
    tipcv2.bearer_id  Bearer identity
        Unsigned 32-bit integer
    tipcv2.bearer_instance  Bearer Instance
        NULL terminated string
        Bearer instance used by the sender node for this link
    tipcv2.bearer_level_orig_addr  Bearer Level Originating Address
        Byte array
    tipcv2.bitmap  Bitmap
        Byte array
        Bitmap, indicating to which nodes within that cluster the sending node has direct links
    tipcv2.broadcast_ack_no  Broadcast Acknowledge Number
        Unsigned 32-bit integer
    tipcv2.bundler_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipcv2.changeover_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipcv2.cluster_address  Cluster Address
        String
        The remote cluster concerned by the table
    tipcv2.conn_mgr_msg_ack  Number of Messages Acknowledged
        Unsigned 32-bit integer
    tipcv2.connmgr_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipcv2.data_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipcv2.dest_node  Destination Node
        String
        TIPC Destination Node
    tipcv2.destination_domain  Destination Domain
        String
        The domain to which the link request is directed
    tipcv2.dist_dist  Route Distributor Dist
        Unsigned 32-bit integer
    tipcv2.dist_scope  Route Distributor Scope
        Unsigned 32-bit integer
    tipcv2.errorcode  Error code
        Unsigned 32-bit integer
    tipcv2.fragment_msg_number  Fragment Message Number
        Unsigned 32-bit integer
    tipcv2.fragment_number  Fragment Number
        Unsigned 32-bit integer
    tipcv2.fragmenter_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipcv2.item_size  Item Size
        Unsigned 32-bit integer
    tipcv2.link_level_ack_no  Link Level Acknowledge Number
        Unsigned 32-bit integer
    tipcv2.link_level_seq_no  Link Level Sequence Number
        Unsigned 32-bit integer
    tipcv2.link_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipcv2.link_prio  Link Priority
        Unsigned 32-bit integer
    tipcv2.link_tolerance  Link Tolerance (ms)
        Unsigned 32-bit integer
        Link Tolerance in ms
    tipcv2.local_router  Local Router
        String
    tipcv2.lookup_scope  Lookup Scope
        Unsigned 32-bit integer
    tipcv2.max_packet  Max Packet
        Unsigned 32-bit integer
    tipcv2.media_id  Media Id
        Unsigned 32-bit integer
    tipcv2.msg_count  Message Count
        Unsigned 32-bit integer
    tipcv2.multicast_lower  Multicast lower bound
        Unsigned 32-bit integer
        Multicast port name instance lower bound
    tipcv2.multicast_upper  Multicast upper bound
        Unsigned 32-bit integer
        Multicast port name instance upper bound
    tipcv2.naming_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipcv2.network_id  Network Identity
        Unsigned 32-bit integer
        The sender node's network identity
    tipcv2.network_plane  Network Plane
        Unsigned 32-bit integer
    tipcv2.network_region  Network Region
        String
    tipcv2.next_sent_broadcast  Next Sent Broadcast
        Unsigned 32-bit integer
    tipcv2.next_sent_packet  Next Sent Packet
        Unsigned 32-bit integer
    tipcv2.node_address  Node Address
        String
        Which node the route addition/loss concern
    tipcv2.opt_p  Options Position
        Unsigned 32-bit integer
    tipcv2.orig_node  Originating Node
        String
        TIPC Originating Node
    tipcv2.port_id_node  Port Id Node
        String
    tipcv2.port_name_instance  Port name instance
        Unsigned 32-bit integer
    tipcv2.port_name_type  Port name type
        Unsigned 32-bit integer
    tipcv2.prev_node  Previous Node
        String
        TIPC Previous Node
    tipcv2.probe  Probe
        Unsigned 32-bit integer
        probe
    tipcv2.redundant_link  Redundant Link
        Unsigned 32-bit integer
    tipcv2.remote_router  Remote Router
        String
    tipcv2.req_links  Requested Links
        Unsigned 32-bit integer
    tipcv2.rer_cnt  Reroute Counter
        Unsigned 32-bit integer
    tipcv2.route_msg_type  Message type
        Unsigned 32-bit integer
        TIPC Message type
    tipcv2.seq_gap  Sequence Gap
        Unsigned 32-bit integer
    tipcv2.session_no  Session Number
        Unsigned 32-bit integer
    tipcv2.timestamp  Timestamp
        Unsigned 32-bit integer
        OS-dependent Timestamp
    tipcv2.tseq_no  Transport Sequence No
        Unsigned 32-bit integer
        Transport Level Sequence Number

Transparent Network Substrate Protocol (tns)

    tns.abort  Abort
        Boolean
    tns.abort_data  Abort Data
        String
    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
    tns.accept_data  Accept Data
        String
    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
    tns.compat_version  Version (Compatible)
        Unsigned 16-bit integer
    tns.connect  Connect
        Boolean
    tns.connect_data  Connect Data
        String
    tns.connect_data_length  Length of Connect Data
        Unsigned 16-bit integer
    tns.connect_data_max  Maximum Receivable Connect Data
        Unsigned 32-bit integer
    tns.connect_data_offset  Offset to Connect Data
        Unsigned 16-bit integer
    tns.connect_flags.enablena  NA services enabled
        Boolean
    tns.connect_flags.ichg  Interchange is involved
        Boolean
    tns.connect_flags.nalink  NA services linked in
        Boolean
    tns.connect_flags.nareq  NA services required
        Boolean
    tns.connect_flags.wantna  NA services wanted
        Boolean
    tns.connect_flags0  Connect Flags 0
        Unsigned 8-bit integer
    tns.connect_flags1  Connect Flags 1
        Unsigned 8-bit integer
    tns.control  Control
        Boolean
    tns.control.cmd  Control Command
        Unsigned 16-bit integer
    tns.control.data  Control Data
        Byte array
    tns.data  Data
        Boolean
    tns.data_flag  Data Flag
        Unsigned 16-bit integer
    tns.data_flag.c  Confirmation
        Boolean
    tns.data_flag.dic  Do Immediate Confirmation
        Boolean
    tns.data_flag.eof  End of File
        Boolean
    tns.data_flag.more  More Data to Come
        Boolean
    tns.data_flag.rc  Request Confirmation
        Boolean
    tns.data_flag.reserved  Reserved
        Boolean
    tns.data_flag.rts  Request To Send
        Boolean
    tns.data_flag.send  Send Token
        Boolean
    tns.data_flag.sntt  Send NT Trailer
        Boolean
    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
    tns.marker  Marker
        Boolean
    tns.marker.data  Marker Data
        Unsigned 16-bit integer
    tns.marker.databyte  Marker Data Byte
        Unsigned 8-bit integer
    tns.marker.type  Marker Type
        Unsigned 8-bit integer
    tns.max_tdu_size  Maximum Transmission Data Unit Size
        Unsigned 16-bit integer
    tns.nt_proto_characteristics  NT Protocol Characteristics
        Unsigned 16-bit integer
    tns.ntp_flag.asio  ASync IO Supported
        Boolean
    tns.ntp_flag.cbio  Callback IO supported
        Boolean
    tns.ntp_flag.crel  Confirmed release
        Boolean
    tns.ntp_flag.dfio  Full duplex IO supported
        Boolean
    tns.ntp_flag.dtest  Data test
        Boolean
        Data Test
    tns.ntp_flag.grant  Can grant connection to another
        Boolean
    tns.ntp_flag.handoff  Can handoff connection to another
        Boolean
    tns.ntp_flag.hangon  Hangon to listener connect
        Boolean
    tns.ntp_flag.pio  Packet oriented IO
        Boolean
    tns.ntp_flag.sigio  Generate SIGIO signal
        Boolean
    tns.ntp_flag.sigpipe  Generate SIGPIPE signal
        Boolean
    tns.ntp_flag.sigurg  Generate SIGURG signal
        Boolean
    tns.ntp_flag.srun  Spawner running
        Boolean
    tns.ntp_flag.tduio  TDU based IO
        Boolean
    tns.ntp_flag.testop  Test operation
        Boolean
    tns.ntp_flag.urgentio  Urgent IO supported
        Boolean
    tns.packet_checksum  Packet Checksum
        Unsigned 16-bit integer
        Checksum of Packet Data
    tns.redirect  Redirect
        Boolean
    tns.redirect_data  Redirect Data
        String
    tns.redirect_data_length  Redirect Data Length
        Unsigned 16-bit integer
        Length of Redirect Data
    tns.refuse  Refuse
        Boolean
    tns.refuse_data  Refuse Data
        String
    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
    tns.response  Response
        Boolean
        TRUE if TNS response
    tns.sdu_size  Session Data Unit Size
        Unsigned 16-bit integer
    tns.service_options  Service Options
        Unsigned 16-bit integer
    tns.so_flag.ap  Attention Processing
        Boolean
    tns.so_flag.bconn  Broken Connect Notify
        Boolean
    tns.so_flag.dc1  Don't Care
        Boolean
    tns.so_flag.dc2  Don't Care
        Boolean
    tns.so_flag.dio  Direct IO to Transport
        Boolean
    tns.so_flag.fd  Full Duplex
        Boolean
    tns.so_flag.hc  Header Checksum
        Boolean
    tns.so_flag.hd  Half Duplex
        Boolean
    tns.so_flag.pc  Packet Checksum
        Boolean
    tns.so_flag.ra  Can Receive Attention
        Boolean
    tns.so_flag.sa  Can Send Attention
        Boolean
    tns.trace_cf1  Trace Cross Facility Item 1
        Unsigned 32-bit integer
    tns.trace_cf2  Trace Cross Facility Item 2
        Unsigned 32-bit integer
    tns.trace_cid  Trace Unique Connection ID
        Unsigned 64-bit integer
    tns.type  Packet Type
        Unsigned 8-bit integer
        Type of TNS packet
    tns.value_of_one  Value of 1 in Hardware
        Byte array
    tns.version  Version
        Unsigned 16-bit integer

Transport Adapter Layer Interface v1.0, RFC 3094 (tali)

    tali.msu_length  Length
        Unsigned 16-bit integer
        TALI MSU Length
    tali.opcode  Opcode
        String
        TALI Operation Code
    tali.sync  Sync
        String
        TALI SYNC

Transport-Neutral Encapsulation Format (tnef)

    tnef.PropValue.MVbin  Mvbin
        No value
    tnef.PropValue.MVft  Mvft
        No value
    tnef.PropValue.MVguid  Mvguid
        No value
    tnef.PropValue.MVi  Mvi
        No value
    tnef.PropValue.MVl  Mvl
        No value
    tnef.PropValue.MVszA  Mvsza
        No value
    tnef.PropValue.MVszW  Mvszw
        No value
    tnef.PropValue.b  B
        Unsigned 16-bit integer
    tnef.PropValue.bin  Bin
        No value
    tnef.PropValue.err  Err
        Unsigned 32-bit integer
    tnef.PropValue.ft  Ft
        No value
    tnef.PropValue.i  I
        Unsigned 16-bit integer
    tnef.PropValue.l  L
        Unsigned 32-bit integer
    tnef.PropValue.lpguid  Lpguid
        No value
    tnef.PropValue.lpszA  Lpsza
        String
    tnef.PropValue.lpszW  Lpszw
        String
    tnef.PropValue.null  Null
        Unsigned 32-bit integer
    tnef.PropValue.object  Object
        Unsigned 32-bit integer
    tnef.attribute  Attribute
        No value
    tnef.attribute.checksum  Checksum
        Unsigned 16-bit integer
    tnef.attribute.date  Date
        No value
    tnef.attribute.date.day  Day
        Unsigned 16-bit integer
    tnef.attribute.date.day_of_week  Day Of Week
        Unsigned 16-bit integer
    tnef.attribute.date.hour  Hour
        Unsigned 16-bit integer
    tnef.attribute.date.minute  Minute
        Unsigned 16-bit integer
    tnef.attribute.date.month  Month
        Unsigned 16-bit integer
    tnef.attribute.date.second  Second
        Unsigned 16-bit integer
    tnef.attribute.date.year  Year
        Unsigned 16-bit integer
    tnef.attribute.display_name  Display Name
        String
    tnef.attribute.email_address  Email Address
        String
    tnef.attribute.length  Length
        Unsigned 32-bit integer
    tnef.attribute.lvl  Type
        Unsigned 8-bit integer
    tnef.attribute.string  String
        String
    tnef.attribute.tag  Tag
        Unsigned 32-bit integer
    tnef.attribute.tag.id  Tag
        Unsigned 16-bit integer
    tnef.attribute.tag.kind  Kind
        Unsigned 32-bit integer
    tnef.attribute.tag.name.id  Name
        Unsigned 32-bit integer
    tnef.attribute.tag.name.length  Length
        Unsigned 32-bit integer
    tnef.attribute.tag.name.string  Name
        String
    tnef.attribute.tag.set  Set
        Globally Unique Identifier
    tnef.attribute.tag.type  Type
        Unsigned 16-bit integer
    tnef.attribute.value  Value
        No value
    tnef.key  Key
        Unsigned 16-bit integer
    tnef.mapi_props  MAPI Properties
        No value
    tnef.mapi_props.count  Count
        Unsigned 16-bit integer
    tnef.message_class  Message Class
        String
    tnef.message_class.original  Original Message Class
        String
    tnef.oem_codepage  OEM Codepage
        Unsigned 64-bit integer
    tnef.padding  Padding
        No value
    tnef.priority  Priority
        Unsigned 16-bit integer
    tnef.property  Property
        No value
    tnef.property.padding  Padding
        No value
    tnef.property.tag  Tag
        Unsigned 32-bit integer
    tnef.property.tag.id  Tag
        Unsigned 16-bit integer
    tnef.property.tag.type  Type
        Unsigned 16-bit integer
    tnef.signature  Signature
        Unsigned 32-bit integer
    tnef.value.length  Length
        Unsigned 16-bit integer
    tnef.values.count  Count
        Unsigned 16-bit integer
    tnef.version  Version
        Unsigned 32-bit integer

Trapeze Access Point Access Protocol (tapa)

    tapa.discover.flags  Flags
        Unsigned 8-bit integer
    tapa.discover.length  Length
        Unsigned 16-bit integer
    tapa.discover.newtlv.length  New tlv length
        Unsigned 16-bit integer
    tapa.discover.newtlv.pad  New tlv padding
        Unsigned 8-bit integer
    tapa.discover.newtlv.type  New tlv type
        Unsigned 8-bit integer
    tapa.discover.newtlv.valuehex  New tlv value
        Byte array
    tapa.discover.newtlv.valuetext  New tlv value
        String
    tapa.discover.reply.bias  Reply bias
        Unsigned 8-bit integer
    tapa.discover.reply.pad  Reply pad
        Byte array
    tapa.discover.reply.switchip  Switch Ip
        IPv4 address
    tapa.discover.reply.unused  Reply unused
        Unsigned 8-bit integer
    tapa.discover.req.length  Req length
        Unsigned 16-bit integer
    tapa.discover.req.pad  Req padding
        Unsigned 8-bit integer
    tapa.discover.req.type  Req type
        Unsigned 8-bit integer
    tapa.discover.req.value  Req value
        Byte array
    tapa.discover.type  Type
        Unsigned 8-bit integer
    tapa.discover.unknown  Tapa unknown packet
        Byte array
    tapa.tunnel.0804  Tapa tunnel 0804
        Unsigned 16-bit integer
    tapa.tunnel.dmac  Tapa tunnel dest mac
        6-byte Hardware (MAC) Address
    tapa.tunnel.five  Tapa tunnel five
        Unsigned 8-bit integer
    tapa.tunnel.length  Tapa tunnel length
        Unsigned 16-bit integer
    tapa.tunnel.remaining  Tapa tunnel all data
        Byte array
    tapa.tunnel.seqno  Tapa tunnel seqno
        Unsigned 16-bit integer
    tapa.tunnel.smac  Tapa tunnel src mac
        6-byte Hardware (MAC) Address
    tapa.tunnel.tags  Tapa tunnel tags, seqno, pad
        Byte array
    tapa.tunnel.type  Tapa tunnel type
        Unsigned 8-bit integer
    tapa.tunnel.version  Tapa tunnel version
        Unsigned 8-bit integer
    tapa.tunnel.zero  Tapa tunnel zeroes
        Byte array

Trivial File Transfer Protocol (tftp)

    tftp.block  Block
        Unsigned 16-bit integer
        Block number
    tftp.destination_file  DESTINATION File
        NULL terminated 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
        NULL terminated string
        Error string in case of TFTP error message
    tftp.opcode  Opcode
        Unsigned 16-bit integer
        TFTP message type
    tftp.option.name  Option name
        NULL terminated string
    tftp.option.value  Option value
        NULL terminated string
    tftp.source_file  Source File
        NULL terminated string
        TFTP source file name
    tftp.type  Type
        NULL terminated string
        TFTP transfer type

Turbocell Aggregate Data (turbocell_aggregate)

    turbocell_aggregate.len  Total Length
        Unsigned 16-bit integer
        Total reported length
    turbocell_aggregate.msduheader  MAC Service Data Unit (MSDU)
        Unsigned 16-bit integer
    turbocell_aggregate.msdulen  MSDU length
        Unsigned 16-bit integer
    turbocell_aggregate.unknown1  Unknown
        Unsigned 16-bit integer
        Always 0x7856
    turbocell_aggregate.unknown2  Unknown
        Unsigned 8-bit integer
        have the values 0x4,0xC or 0x8

Turbocell Header (turbocell)

    turbocell.counter  Counter
        Unsigned 24-bit integer
        Increments every frame (per station)
    turbocell.dst  Destination
        6-byte Hardware (MAC) Address
        Seems to be the destination
    turbocell.ip  IP
        IPv4 address
        IP adress of base station ?
    turbocell.name  Network Name
        NULL terminated string
    turbocell.nwid  Network ID
        Unsigned 8-bit integer
    turbocell.satmode  Satellite Mode
        Unsigned 8-bit integer
    turbocell.station  Station 0
        6-byte Hardware (MAC) Address
        connected stations / satellites ?
    turbocell.timestamp  Timestamp (in 10 ms)
        Unsigned 24-bit integer
        Timestamp per station (since connection?)
    turbocell.type  Packet Type
        Unsigned 8-bit integer
    turbocell.unknown  Unknown
        Unsigned 16-bit integer
        Always 0000

TwinCAT IO-RAW (ioraw)

    ioraw.data  VarData
        No value
    ioraw.header  Header
        No value
    ioraw.summary  Summary of the IoRaw Packet
        String

TwinCAT NV (tc_nv)

    tc_nv.count  Count
        Unsigned 16-bit integer
    tc_nv.cycleindex  CycleIndex
        Unsigned 16-bit integer
    tc_nv.data  Data
        Byte array
    tc_nv.hash  Hash
        Unsigned 16-bit integer
    tc_nv.header  Header
        No value
    tc_nv.id  Id
        Unsigned 16-bit integer
    tc_nv.length  Length
        Unsigned 16-bit integer
    tc_nv.publisher  Publisher
        Byte array
    tc_nv.quality  Quality
        Unsigned 16-bit integer
    tc_nv.summary  Summary of the Nv Packet
        Byte array
    tc_nv.varheader  VarHeader
        No value
    tc_nv.variable  Variable
        Byte array

Twisted Banana (banana)

    banana.float  Float
        Double-precision floating point
        Banana float
    banana.int  Integer
        Unsigned 32-bit integer
        Banana integer
    banana.lg_int  Float
        Byte array
        Banana large integer
    banana.lg_neg_int  Float
        Byte array
        Banana large negative integer
    banana.list  List Length
        Unsigned 32-bit integer
        Banana list
    banana.neg_int  Negative Integer
        Signed 32-bit integer
        Banana negative integer
    banana.pb  pb Profile Value
        Unsigned 8-bit integer
        Banana Perspective Broker Profile Value
    banana.string  String
        String
        Banana string

UDP Encapsulation of IPsec Packets (udpencap)

UNISTIM Protocol (unistim)

    uftp.blocksize  UFTP Datablock Size
        Unsigned 32-bit integer
    uftp.cmd  UFTP CMD
        Unsigned 8-bit integer
    uftp.datablock  UFTP Data Block
        Byte array
    uftp.filename  UFTP Filename
        NULL terminated string
    uftp.limit  UFTP Datablock Limit
        Unsigned 8-bit integer
    unistim.acd.super.control  ACD Supervisor Control
        Boolean
    unistim.add  UNISTIM CMD Address
        Unsigned 8-bit integer
    unistim.alert.cad.sel  Alerting Cadence Select
        Unsigned 8-bit integer
    unistim.alert.warb.select  Alerting Warbler Select
        Unsigned 8-bit integer
    unistim.apb.operation.data  APB Operation Data
        Byte array
    unistim.apb.param.len  APB Operation Parameter Length
        Unsigned 8-bit integer
    unistim.apb.volume.rpt  APB Volume Report
        Unsigned 8-bit integer
    unistim.arrow.direction  Arrow Display Direction
        Unsigned 8-bit integer
    unistim.audio.aa.vol.rpt  Audio Manager Auto Adjust Volume RPT
        Boolean
    unistim.audio.adj.volume  Query Audio Manager Adjustable Receive Volume
        Boolean
    unistim.audio.alerting  Query Audio Manager Alerting
        Boolean
    unistim.audio.apb.number  APB Number
        Unsigned 8-bit integer
    unistim.audio.apb.op.code  APB Operation Code
        Unsigned 8-bit integer
    unistim.audio.attenuated.on  Audio Manager Transducer Tone Attenuated
        Boolean
    unistim.audio.attr  Query Audio Manager Attributes
        Boolean
    unistim.audio.bytes.per.frame  Bytes Per Frame
        Unsigned 16-bit integer
    unistim.audio.def.volume  Query Audio Manager Default Receive Volume
        Boolean
    unistim.audio.desired.jitter  Desired Jitter
        Unsigned 8-bit integer
    unistim.audio.direction.codes  Stream Direction Code
        Unsigned 8-bit integer
    unistim.audio.frf.11  FRF.11 Enable
        Boolean
    unistim.audio.handset  Query Audio Manager Handset
        Boolean
    unistim.audio.hd.on.air  HD On Air
        Boolean
    unistim.audio.headset  Query Audio Manager Headset
        Boolean
    unistim.audio.hs.on.air  HS On Air
        Boolean
    unistim.audio.max.tone  Audio Manager Enable Max Tone Volume
        Boolean
    unistim.audio.mute  Audio Manager Mute
        Boolean
    unistim.audio.nat.ip  NAT IP Address
        IPv4 address
    unistim.audio.nat.port  NAT Port
        Unsigned 16-bit integer
    unistim.audio.options  Query Audio Manager Options
        Boolean
    unistim.audio.opts.adj.vol  Audio Manager Adjust Volume
        Boolean
    unistim.audio.phone  Audio Cmd (phone)
        Unsigned 8-bit integer
    unistim.audio.precedence  Precedence
        Unsigned 8-bit integer
    unistim.audio.rtcp.bucket.id  RTCP Bucket ID
        Unsigned 8-bit integer
    unistim.audio.rtp.type  RTP Type
        Unsigned 8-bit integer
    unistim.audio.rx.tx  Audio Manager RX or TX
        Boolean
    unistim.audio.rx.vol.ceiling  RX Volume at Ceiling
        Boolean
    unistim.audio.rx.vol.floor  RX Volume at Floor
        Boolean
    unistim.audio.sample.rate  Sample Rate
        Unsigned 8-bit integer
    unistim.audio.sidetone.disable  Disable Sidetone
        Boolean
    unistim.audio.squelch  Audio Manager Noise Squelch
        Boolean
    unistim.audio.stream.direction  Audio Stream Direction
        Unsigned 8-bit integer
    unistim.audio.stream.id  Audio Manager Stream ID
        Unsigned 8-bit integer
    unistim.audio.stream.state  Audio Stream State
        Boolean
    unistim.audio.switch  Audio Cmd (switch)
        Unsigned 8-bit integer
    unistim.audio.tone.level  Tone Level
        Unsigned 8-bit integer
    unistim.audio.transducer.on  Audio Manager Transducer Based Tone On
        Unsigned 8-bit integer
    unistim.audio.type.service  Type of Service
        Unsigned 8-bit integer
    unistim.audio.volume.adj  Volume Adjustments
        Boolean
    unistim.audio.volume.id  Audio Manager Default Receive Volume ID
        Unsigned 8-bit integer
    unistim.audio.volume.up  Volume Up
        Boolean
    unistim.auto.adj.rx.vol  Auto Adjust RX Volume
        Boolean
    unistim.auto.noise.squelch  Automatic Squelch
        Boolean
    unistim.basic.attrs  Query Basic Manager Attributes
        Boolean
        Basic Query Attributes
    unistim.basic.code  Query Basic Manager Prod Eng Code
        Boolean
        Basic Query Production Engineering Code
    unistim.basic.eeprom.data  EEProm Data
        Byte array
    unistim.basic.element.id  Basic Element ID
        Unsigned 8-bit integer
    unistim.basic.eng.code  Product Engineering Code for phone
        String
    unistim.basic.fw  Query Basic Switch Firmware
        Boolean
        Basic Query Firmware
    unistim.basic.fw.ver  Basic Phone Firmware Version
        String
    unistim.basic.gray  Query Basic Manager Gray Mkt Info
        Boolean
        Basic Query Gray Market Info
    unistim.basic.hw.id  Basic Phone Hardware ID
        Byte array
    unistim.basic.hwid  Query Basic Manager Hardware ID
        Boolean
        Basic Query Hardware ID
    unistim.basic.opts  Query Basic Manager Options
        Boolean
        Basic Query Options
    unistim.basic.phone  Basic Cmd (phone)
        Unsigned 8-bit integer
    unistim.basic.query  Query Basic Manager
        Unsigned 8-bit integer
        INITIAL PHONE QUERY
    unistim.basic.secure  Basic Switch Options Secure Code
        Boolean
    unistim.basic.switch  Basic Cmd (switch)
        Unsigned 8-bit integer
    unistim.basic.type  Query Basic Manager Phone Type
        Boolean
        Basic Query Phone Type
    unistim.bit.fields  FLAGS
        Boolean
    unistim.broadcast.day  Day
        Unsigned 8-bit integer
    unistim.broadcast.hour  Hour
        Unsigned 8-bit integer
    unistim.broadcast.minute  Minute
        Unsigned 8-bit integer
    unistim.broadcast.month  Month
        Unsigned 8-bit integer
    unistim.broadcast.phone  Broadcast Cmd (phone)
        Unsigned 8-bit integer
    unistim.broadcast.second  Second
        Unsigned 8-bit integer
    unistim.broadcast.switch  Broadcast Cmd (switch)
        Unsigned 8-bit integer
    unistim.broadcast.year  Year
        Unsigned 8-bit integer
    unistim.cadence.select  Cadence Select
        Unsigned 8-bit integer
    unistim.clear.bucket  Clear Bucket Counter
        Boolean
    unistim.config.element  Configure Network Element
        Unsigned 8-bit integer
    unistim.conspic.prog.keys  Conspicuous and Programmable Keys Same
        Boolean
    unistim.context.width  Phone Context Width
        Unsigned 8-bit integer
    unistim.current.rx.vol.level  Current RX Volume Level
        Unsigned 8-bit integer
    unistim.current.rx.vol.range  Current RX Volume Range
        Unsigned 8-bit integer
    unistim.current.volume.rpt  Current APB Volume Report
        Unsigned 8-bit integer
    unistim.cursor.blink  Should Cursor Blink
        Boolean
    unistim.cursor.move.cmd  Cursor Movement Command
        Unsigned 8-bit integer
    unistim.cursor.skey.id  Soft Key Id
        Unsigned 8-bit integer
    unistim.date.width  Phone Date Width
        Unsigned 8-bit integer
    unistim.destructive.active  Destructive/Additive
        Boolean
    unistim.diag.enabled  Diagnostic Command Enabled
        Boolean
    unistim.display.call.timer.delay  Call Timer Delay
        Boolean
    unistim.display.call.timer.display  Call Timer Display
        Boolean
    unistim.display.call.timer.id  Call Timer ID
        Unsigned 8-bit integer
    unistim.display.call.timer.mode  Call Timer Mode
        Boolean
    unistim.display.call.timer.reset  Call Timer Reset
        Boolean
    unistim.display.char.address  Display Character Address
        Unsigned 8-bit integer
    unistim.display.clear.all.sks  Clear All Soft Key Labels
        Boolean
    unistim.display.clear.context  Context Field in InfoBar
        Boolean
    unistim.display.clear.date  Date Field
        Boolean
    unistim.display.clear.left  Clear Left
        Boolean
    unistim.display.clear.line  Line Data
        Boolean
    unistim.display.clear.line1  Line 1
        Boolean
    unistim.display.clear.line2  Line 2
        Boolean
    unistim.display.clear.line3  Line 3
        Boolean
    unistim.display.clear.line4  Line 4
        Boolean
    unistim.display.clear.line5  Line 5
        Boolean
    unistim.display.clear.line6  Line 6
        Boolean
    unistim.display.clear.line7  Line 7
        Boolean
    unistim.display.clear.line8  Line 8
        Boolean
    unistim.display.clear.numeric  Numeric Index Field in InfoBar
        Boolean
    unistim.display.clear.right  Clear Right
        Boolean
    unistim.display.clear.sbar.icon1  Status Bar Icon 1
        Boolean
    unistim.display.clear.sbar.icon2  Status Bar Icon 2
        Boolean
    unistim.display.clear.sbar.icon3  Status Bar Icon 3
        Boolean
    unistim.display.clear.sbar.icon4  Status Bar Icon 4
        Boolean
    unistim.display.clear.sbar.icon5  Status Bar Icon 5
        Boolean
    unistim.display.clear.sbar.icon6  Status Bar Icon 6
        Boolean
    unistim.display.clear.sbar.icon7  Status Bar Icon 7
        Boolean
    unistim.display.clear.sbar.icon8  Status Bar Icon 8
        Boolean
    unistim.display.clear.sk.label.id  Soft Key Label ID
        Unsigned 8-bit integer
    unistim.display.clear.soft.key1  Soft Key 1
        Boolean
    unistim.display.clear.soft.key2  Soft Key 2
        Boolean
    unistim.display.clear.soft.key3  Soft Key 3
        Boolean
    unistim.display.clear.soft.key4  Soft Key 4
        Boolean
    unistim.display.clear.soft.key5  Soft Key 5
        Boolean
    unistim.display.clear.soft.key6  Soft Key 6
        Boolean
    unistim.display.clear.soft.key7  Soft Key 7
        Boolean
    unistim.display.clear.soft.key8  Soft Key 8
        Boolean
    unistim.display.clear.softkey  Soft Key
        Boolean
    unistim.display.clear.softkey.label  Soft Key Label
        Boolean
    unistim.display.clear.time  Time Field
        Boolean
    unistim.display.context.field  Context Info Bar Field
        Unsigned 8-bit integer
    unistim.display.context.format  Context Info Bar Format
        Unsigned 8-bit integer
    unistim.display.cursor.move  Cursor Move
        Boolean
    unistim.display.date.format  Date Format
        Unsigned 8-bit integer
    unistim.display.highlight  Highlight
        Boolean
    unistim.display.line.number  Display Line Number
        Unsigned 8-bit integer
    unistim.display.phone  Display Cmd (phone)
        Unsigned 8-bit integer
    unistim.display.shift.left  Shift Left
        Boolean
    unistim.display.shift.right  Shift Right
        Boolean
    unistim.display.statusbar.icon  Status Bar Icon
        Boolean
    unistim.display.switch  Display Cmd (switch)
        Unsigned 8-bit integer
    unistim.display.text.tag  Tag for text
        Unsigned 8-bit integer
    unistim.display.time.format  Time Format
        Unsigned 8-bit integer
    unistim.display.use.date.format  Use Date Format
        Boolean
    unistim.display.use.time.format  Use Time Format
        Boolean
    unistim.display.write.address.char.pos  Character Position or Soft-Label Key ID
        Unsigned 8-bit integer
    unistim.dont.force.active  Don't Force Active
        Boolean
    unistim.download.action  Download Server Action
        Unsigned 8-bit integer
    unistim.download.address  Download Server Address
        Unsigned 32-bit integer
    unistim.download.failover  Download Failover Server ID
        Unsigned 8-bit integer
    unistim.download.id  Download Server ID
        Unsigned 8-bit integer
    unistim.download.port  Download Server Port
        Unsigned 16-bit integer
    unistim.download.retry  Download Retry Count
        Unsigned 8-bit integer
    unistim.dynam.cksum  Basic Phone EEProm Dynamic Checksum
        Unsigned 8-bit integer
    unistim.early.packet.thresh  Threshold in x/8000 sec where packets are too early
        Unsigned 32-bit integer
    unistim.eeprom.insane  EEProm Insane
        Boolean
    unistim.eeprom.unsafe  EEProm Unsafe
        Boolean
    unistim.enable.annexa  Enable Annex A
        Boolean
    unistim.enable.annexb  Enable Annex B
        Boolean
    unistim.enable.diag  Network Manager Enable DIAG
        Boolean
    unistim.enable.network.rel.udp  Network Manager Enable RUDP
        Boolean
    unistim.exist.copy.key  Copy Key Exists
        Boolean
    unistim.exist.hd.key  Headset Key Exists
        Boolean
    unistim.exist.mute.key  Mute Key Exists
        Boolean
    unistim.exist.mwi.key  Message Waiting Indicator Exists
        Boolean
    unistim.exist.quit.key  Quit Key Exists
        Boolean
    unistim.far.ip.address  Distant IP Address for RT[C]P
        IPv4 address
    unistim.far.rtcp.port  Distant RTCP Port
        Unsigned 16-bit integer
    unistim.far.rtp.port  Distant RTP Port
        Unsigned 16-bit integer
    unistim.field.context  Context Field
        Boolean
    unistim.field.numeric  Numeric Index Field
        Boolean
    unistim.field.text.line  Text Line
        Boolean
    unistim.generic.data  DATA
        String
    unistim.handsfree.support  Handsfree supported
        Boolean
    unistim.high.water.mark  Threshold of audio frames where jitter buffer removes frames
        Unsigned 8-bit integer
    unistim.hilite.end.pos  Display Highlight End Position
        Unsigned 8-bit integer
    unistim.hilite.start.pos  Display Highlight Start Position
        Unsigned 8-bit integer
    unistim.icon.cadence  Icon Cadence
        Unsigned 8-bit integer
    unistim.icon.id  Icon ID
        Unsigned 8-bit integer
    unistim.icon.state  Icon State
        Unsigned 8-bit integer
    unistim.icon.types  Icon Types
        Unsigned 8-bit integer
    unistim.invalid.msg  Received Invalid MSG
        Boolean
    unistim.it.type  IT (Phone) Type
        Unsigned 8-bit integer
    unistim.key.action  Key Action
        Unsigned 8-bit integer
    unistim.key.enable.vol  Enable Volume Control
        Boolean
    unistim.key.feedback  Local Keypad Feedback
        Unsigned 8-bit integer
    unistim.key.icon.admin.cmd  Admin Command
        Unsigned 8-bit integer
    unistim.key.icon.id  Icon ID
        Unsigned 8-bit integer
    unistim.key.led.cadence  LED Cadence
        Unsigned 8-bit integer
    unistim.key.led.id  LED ID
        Unsigned 8-bit integer
    unistim.key.name  Key Name
        Unsigned 8-bit integer
    unistim.key.phone  Key Cmd (phone)
        Unsigned 8-bit integer
    unistim.key.send.release  Send Key Release
        Boolean
    unistim.key.switch  Key Cmd (switch)
        Unsigned 8-bit integer
    unistim.keys.cadence.off.time  Indicator Cadence Off Time
        Unsigned 8-bit integer
    unistim.keys.cadence.on.time  Indicator Cadence On Time
        Unsigned 8-bit integer
    unistim.keys.led.id  Led ID
        Unsigned 8-bit integer
    unistim.keys.logical.icon.id  Logical Icon ID
        Unsigned 16-bit integer
    unistim.keys.phone.icon.id  Phone Icon ID
        Unsigned 8-bit integer
    unistim.keys.repeat.time.one  Key Repeat Timer 1 Value
        Unsigned 8-bit integer
    unistim.keys.repeat.time.two  Key Repeat Timer 2 Value
        Unsigned 8-bit integer
    unistim.keys.user.timeout.value  User Activity Timeout Value
        Unsigned 8-bit integer
    unistim.late.packet.thresh  Threshold in x/8000 sec where packets are too late
        Unsigned 32-bit integer
    unistim.layer.all.skeys  All Softkeys
        Boolean
    unistim.layer.display.duration  Display Duration (20ms steps)
        Unsigned 8-bit integer
    unistim.layer.once.cyclic  Layer Softkey Once/Cyclic
        Boolean
    unistim.layer.softkey.id  Softkey ID
        Unsigned 8-bit integer
    unistim.len  UNISTIM CMD Length
        Unsigned 8-bit integer
    unistim.line.width  Phone Line Width
        Unsigned 8-bit integer
    unistim.local.rtcp.port  Phone RTCP Port
        Unsigned 16-bit integer
    unistim.local.rtp.port  Phone RTP Port
        Unsigned 16-bit integer
    unistim.max.vol  Max Volume
        Boolean
    unistim.nat.address.len  NAT Address Length
        Unsigned 8-bit integer
    unistim.nat.listen.address  NAT Listen Address
        Unsigned 8-bit integer
    unistim.nat.listen.port  NAT Listen Port
        Unsigned 16-bit integer
    unistim.net.file.server.address  File Server IP Address
        IPv4 address
    unistim.net.file.server.port  File Server Port
        Unsigned 16-bit integer
    unistim.net.file.xfer.mode  File Transfer Mode
        Unsigned 8-bit integer
    unistim.net.force.download  Force Download
        Boolean
    unistim.net.local.xfer.port  Local XFer Port
        Unsigned 16-bit integer
    unistim.net.phone.primary.id  Phone Primary Server ID
        Unsigned 8-bit integer
    unistim.net.use.local.port  Use Custom Local Port
        Boolean
    unistim.net.use.server.port  Use Custom Server Port
        Boolean
    unistim.netconfig.cksum  Basic Phone EEProm Net Config Checksum
        Unsigned 8-bit integer
    unistim.network.phone  Network Cmd (phone)
        Unsigned 8-bit integer
    unistim.network.switch  Network Cmd (switch)
        Unsigned 8-bit integer
    unistim.num  RUDP Seq Num
        Unsigned 32-bit integer
    unistim.num.conspic.keys  Number Of Conspicuous Keys
        Unsigned 8-bit integer
    unistim.num.nav.keys  Number of Navigation Keys
        Unsigned 8-bit integer
    unistim.num.prog.keys  Number of Programmable Keys
        Unsigned 8-bit integer
    unistim.num.soft.keys  Number of Soft Keys
        Unsigned 8-bit integer
    unistim.number.dload.chars  Number of Downloadable Chars
        Unsigned 8-bit integer
    unistim.number.dload.icons  Number of Freeform Icon Downloads
        Unsigned 8-bit integer
    unistim.number.lines  Number Of Lines
        Unsigned 8-bit integer
    unistim.numeric.width  Phone Numeric Width
        Unsigned 8-bit integer
    unistim.open.audio.stream.rpt  Open Stream Report
        Unsigned 8-bit integer
    unistim.pay  UNISTIM Payload
        Unsigned 8-bit integer
    unistim.phone.address.len  Phone Address Length
        Unsigned 8-bit integer
    unistim.phone.char.pos  Character Position
        Unsigned 8-bit integer
    unistim.phone.charsets  Character Sets
        Unsigned 8-bit integer
    unistim.phone.contrast.level  Phone Contrast Level
        Unsigned 8-bit integer
    unistim.phone.ether  Phone Ethernet Address
        6-byte Hardware (MAC) Address
    unistim.phone.icon.type  Phone Icon Type
        Unsigned 8-bit integer
    unistim.phone.listen.address  Phone Listen Address
        IPv4 address
    unistim.phone.listen.port  Phone Listen Port
        Unsigned 16-bit integer
    unistim.phone.softkeys  Phone Softkeys
        Unsigned 8-bit integer
    unistim.position.skey  Softkey Position
        Boolean
    unistim.query.attributes  Query Network Manager Attributes
        Boolean
    unistim.query.diagnostic  Query Network Manager Diagnostic
        Boolean
    unistim.query.managers  Query Network Manager Managers
        Boolean
    unistim.query.options  Query Network Manager Options
        Boolean
    unistim.query.sanity  Query Network Manager Sanity
        Boolean
    unistim.query.serverInfo  Query Network Manager Server Info
        Boolean
    unistim.receive.empty  Receive Buffer Unexpectedly Empty
        Boolean
    unistim.receive.enable  RX Enable
        Boolean
    unistim.receive.overflow  Receive Buffer Overflow
        Boolean
    unistim.recovery.high  Recovery Procedure Idle High Boundary
        Unsigned 16-bit integer
    unistim.recovery.low  Recovery Procedure Idle Low Boundary
        Unsigned 16-bit integer
    unistim.resolve.far.ip  Resolve Far End IP
        IPv4 address
    unistim.resolve.far.port  Resolve Far End Port
        Unsigned 16-bit integer
    unistim.resolve.phone.port  Resolve Phone Port
        Unsigned 16-bit integer
    unistim.rpt.rtcp.buk.id  Report RTCP Bucket ID
        Unsigned 8-bit integer
    unistim.rpt.src.desc  Report Source Description
        Unsigned 8-bit integer
    unistim.rtcp.bucket.id  RTCP Bucket ID
        Unsigned 16-bit integer
    unistim.rudp.active  Reliable UDP Active
        Boolean
    unistim.rx.stream.id  Receive Stream Id
        Unsigned 8-bit integer
    unistim.sdes.rtcp.bucket  RTCP Bucket Id
        Unsigned 8-bit integer
    unistim.server.action.byte  Action
        Unsigned 8-bit integer
    unistim.server.failover.id  Failover Server ID
        Unsigned 8-bit integer
    unistim.server.ip.address  IP address
        IPv4 address
    unistim.server.port  Port Number
        Unsigned 16-bit integer
    unistim.server.retry.count  Number of times to Retry
        Unsigned 8-bit integer
    unistim.softkey.layer.num  Softkey Layer Number
        Unsigned 8-bit integer
    unistim.softkey.width  Phone Softkey Width
        Unsigned 8-bit integer
    unistim.softlabel.key.width  Soft-Label Key width
        Unsigned 8-bit integer
    unistim.source.desc.item  Source Description Item
        Unsigned 8-bit integer
    unistim.special.tone.select  Special Tone Select
        Unsigned 8-bit integer
    unistim.static.cksum  Basic Phone EEProm Static Checksum
        Unsigned 8-bit integer
    unistim.stream.based.tone.rx.tx  Stream Based Tone RX or TX
        Boolean
    unistim.stream.tone.id  Stream Based Tone ID
        Unsigned 8-bit integer
    unistim.stream.tone.mute  Stream Based Tone Mute
        Boolean
    unistim.stream.volume.id  Stream Based Volume ID
        Unsigned 8-bit integer
    unistim.switch.terminal.id  Terminal ID assigned by Switch
        IPv4 address
    unistim.terminal.id  Terminal ID
        IPv4 address
    unistim.time.width  Phone Time Width
        Unsigned 8-bit integer
    unistim.tone.volume.range  Tone Volume Range in Steps
        Unsigned 8-bit integer
    unistim.trans.list.len  Transducer List Length
        Unsigned 8-bit integer
    unistim.trans.overflow  Transmit Buffer Overflow
        Boolean
    unistim.transducer.pairs  Audio Transducer Pair
        Unsigned 8-bit integer
    unistim.transducer.routing  Transducer Routing
        Unsigned 8-bit integer
    unistim.transmit.enable  TX Enable
        Boolean
    unistim.type  RUDP Pkt type
        Unsigned 8-bit integer
    unistim.visual.tones  Enable Visual Tones
        Boolean
    unistim.vocoder.config.param  Vocoder Config Param
        Unsigned 8-bit integer
    unistim.vocoder.entity  Vocoder Entity
        Unsigned 8-bit integer
    unistim.vocoder.frames.per.packet  Frames Per Packet
        Unsigned 8-bit integer
    unistim.vocoder.id  Vocoder Protocol
        Unsigned 8-bit integer
    unistim.warbler.select  Warbler Select
        Unsigned 8-bit integer
    unistim.watchdog.timeout  Watchdog Timeout
        Unsigned 16-bit integer
    unistim.write.addres.softkey.id  Soft Key ID
        Unsigned 8-bit integer
    unistim.write.address.context  Context Field in the Info Bar
        Boolean
    unistim.write.address.line  Write A Line
        Boolean
    unistim.write.address.line.number  Line Number
        Unsigned 8-bit integer
    unistim.write.address.numeric  Is Address Numeric
        Boolean
    unistim.write.address.softkey  Write a SoftKey
        Boolean
    unistim.write.address.softkey.label  Write A Softkey Label
        Boolean

USB (usb)

    usb.DescriptorIndex  Descriptor Index
        Unsigned 8-bit integer
    usb.LanguageId  Language Id
        Unsigned 16-bit integer
    usb.bAlternateSetting  bAlternateSetting
        Unsigned 8-bit integer
    usb.bConfigurationValue  bConfigurationValue
        Unsigned 8-bit integer
    usb.bDescriptorType  bDescriptorType
        Unsigned 8-bit integer
    usb.bDeviceClass  bDeviceClass
        Unsigned 8-bit integer
    usb.bDeviceProtocol  bDeviceProtocol
        Unsigned 8-bit integer
    usb.bDeviceSubClass  bDeviceSubClass
        Unsigned 8-bit integer
    usb.bEndpointAddress  bEndpointAddress
        Unsigned 8-bit integer
    usb.bEndpointAddress.direction  Direction
        Boolean
    usb.bEndpointAddress.number  Endpoint Number
        Unsigned 8-bit integer
    usb.bInterfaceClass  bInterfaceClass
        Unsigned 8-bit integer
    usb.bInterfaceNumber  bInterfaceNumber
        Unsigned 8-bit integer
    usb.bInterfaceProtocol  bInterfaceProtocol
        Unsigned 8-bit integer
    usb.bInterfaceSubClass  bInterfaceSubClass
        Unsigned 8-bit integer
    usb.bInterval  bInterval
        Unsigned 8-bit integer
    usb.bLength  bLength
        Unsigned 8-bit integer
    usb.bMaxPacketSize0  bMaxPacketSize0
        Unsigned 8-bit integer
    usb.bMaxPower  bMaxPower
        Unsigned 8-bit integer
    usb.bNumConfigurations  bNumConfigurations
        Unsigned 8-bit integer
    usb.bNumEndpoints  bNumEndpoints
        Unsigned 8-bit integer
    usb.bNumInterfaces  bNumInterfaces
        Unsigned 8-bit integer
    usb.bString  bString
        String
    usb.bcdDevice  bcdDevice
        Unsigned 16-bit integer
    usb.bcdUSB  bcdUSB
        Unsigned 16-bit integer
    usb.bmAttributes  bmAttributes
        Unsigned 8-bit integer
    usb.bmAttributes.behaviour  Behaviourtype
        Unsigned 8-bit integer
    usb.bmAttributes.sync  Synchronisationtype
        Unsigned 8-bit integer
    usb.bmAttributes.transfer  Transfertype
        Unsigned 8-bit integer
    usb.bmRequestType  bmRequestType
        Unsigned 8-bit integer
    usb.bmRequestType.direction  Direction
        Boolean
    usb.bmRequestType.recipient  Recipient
        Unsigned 8-bit integer
    usb.bmRequestType.type  Type
        Unsigned 8-bit integer
    usb.bus_id  URB bus id
        Unsigned 16-bit integer
    usb.capdata  Leftover Capture Data
        Byte array
        Padding added by the USB capture system
    usb.configuration.bmAttributes  Configuration bmAttributes
        Unsigned 8-bit integer
    usb.configuration.legacy10buspowered  Must be 1
        Boolean
        Legacy USB 1.0 bus powered
    usb.configuration.remotewakeup  Remote Wakeup
        Boolean
    usb.configuration.selfpowered  Self-Powered
        Boolean
    usb.data  Application Data
        Byte array
        Payload is application data
    usb.data_flag  Data
        String
        USB data is present (0) or not
    usb.data_len  Data length [bytes]
        Unsigned 32-bit integer
        URB data length in bytes
    usb.device_address  Device
        Unsigned 8-bit integer
        USB device address
    usb.dst.endpoint  Dst Endpoint
        Unsigned 8-bit integer
        Destination USB endpoint number
    usb.endpoint_number  Endpoint
        Unsigned 8-bit integer
        USB endpoint number
    usb.iConfiguration  iConfiguration
        Unsigned 8-bit integer
    usb.iInterface  iInterface
        Unsigned 8-bit integer
    usb.iManufacturer  iManufacturer
        Unsigned 8-bit integer
    usb.iProduct  iProduct
        Unsigned 8-bit integer
    usb.iSerialNumber  iSerialNumber
        Unsigned 8-bit integer
    usb.idProduct  idProduct
        Unsigned 16-bit integer
    usb.idVendor  idVendor
        Unsigned 16-bit integer
    usb.request_in  Request in
        Frame number
        The request to this packet is in this packet
    usb.response_in  Response in
        Frame number
        The response to this packet is in this packet
    usb.setup.bRequest  bRequest
        Unsigned 8-bit integer
    usb.setup.wFeatureSelector  wFeatureSelector
        Unsigned 16-bit integer
    usb.setup.wFrameNumber  wFrameNumber
        Unsigned 16-bit integer
    usb.setup.wIndex  wIndex
        Unsigned 16-bit integer
    usb.setup.wInterface  wInterface
        Unsigned 16-bit integer
    usb.setup.wLength  wLength
        Unsigned 16-bit integer
    usb.setup.wStatus  wStatus
        Unsigned 16-bit integer
    usb.setup.wValue  wValue
        Unsigned 16-bit integer
    usb.setup_flag  Device setup request
        String
        USB device setup request is relevant (0) or not
    usb.src.endpoint  Src Endpoint
        Unsigned 8-bit integer
        Source USB endpoint number
    usb.time  Time from request
        Time duration
        Time between Request and Response for USB cmds
    usb.transfer_type  URB transfer type
        Unsigned 8-bit integer
    usb.urb_id  URB id
        Unsigned 64-bit integer
    usb.urb_len  URB length [bytes]
        Unsigned 32-bit integer
        URB length in bytes
    usb.urb_status  URB status
        Signed 32-bit integer
    usb.urb_ts_sec  URB sec
        Unsigned 64-bit integer
    usb.urb_ts_usec  URB usec
        Unsigned 32-bit integer
    usb.urb_type  URB type
        String
    usb.wLANGID  wLANGID
        Unsigned 16-bit integer
    usb.wMaxPacketSize  wMaxPacketSize
        Unsigned 16-bit integer
    usb.wTotalLength  wTotalLength
        Unsigned 16-bit integer

USB HID (usbhid)

    usbhid.item.bDataSize  bDataSize
        Unsigned 8-bit integer
    usbhid.item.bLongItemTag  bTag
        Unsigned 8-bit integer
    usbhid.item.bSize  bSize
        Unsigned 8-bit integer
    usbhid.item.bTag  bTag
        Unsigned 8-bit integer
    usbhid.item.bType  bType
        Unsigned 8-bit integer
    usbhid.item.data  Item data
        Byte array
    usbhid.item.global.log_max  Logical maximum
        Unsigned 8-bit integer
    usbhid.item.global.log_min  Logical minimum
        Unsigned 8-bit integer
    usbhid.item.global.phy_max  Physical maximum
        Unsigned 8-bit integer
    usbhid.item.global.phy_min  Physical minimum
        Unsigned 8-bit integer
    usbhid.item.global.pop  Pop
        Unsigned 8-bit integer
    usbhid.item.global.push  Push
        Unsigned 8-bit integer
    usbhid.item.global.report_count  Report count
        Unsigned 8-bit integer
    usbhid.item.global.report_id  Report ID
        Unsigned 8-bit integer
    usbhid.item.global.report_size  Report size
        Unsigned 8-bit integer
    usbhid.item.global.unit.brightness  Luminous intensity
        Unsigned 32-bit integer
    usbhid.item.global.unit.current  Current
        Unsigned 32-bit integer
    usbhid.item.global.unit.length  Length
        Unsigned 32-bit integer
    usbhid.item.global.unit.mass  Mass
        Unsigned 32-bit integer
    usbhid.item.global.unit.system  System
        Unsigned 32-bit integer
    usbhid.item.global.unit.temperature  Temperature
        Unsigned 32-bit integer
    usbhid.item.global.unit.time  Time
        Unsigned 32-bit integer
    usbhid.item.global.unit_exp  Unit exponent
        Unsigned 8-bit integer
    usbhid.item.global.usage  Usage page
        Unsigned 8-bit integer
    usbhid.item.local.delimiter  Delimiter
        Unsigned 8-bit integer
    usbhid.item.local.desig_index  Designator index
        Unsigned 8-bit integer
    usbhid.item.local.desig_max  Designator maximum
        Unsigned 8-bit integer
    usbhid.item.local.desig_min  Designator minimum
        Unsigned 8-bit integer
    usbhid.item.local.string_index  String index
        Unsigned 8-bit integer
    usbhid.item.local.string_max  String maximum
        Unsigned 8-bit integer
    usbhid.item.local.string_min  String minimum
        Unsigned 8-bit integer
    usbhid.item.local.usage  Usage
        Unsigned 8-bit integer
    usbhid.item.local.usage_max  Usage maximum
        Unsigned 8-bit integer
    usbhid.item.local.usage_min  Usage minimum
        Unsigned 8-bit integer
    usbhid.item.main.buffered_bytes  Bits or bytes
        Boolean
    usbhid.item.main.colltype  Collection type
        Unsigned 8-bit integer
    usbhid.item.main.no_preferred_state  Preferred state
        Boolean
    usbhid.item.main.nonlinear  Physical relationship to data
        Boolean
    usbhid.item.main.nullstate  Has null position
        Boolean
    usbhid.item.main.readonly  Data/constant
        Boolean
    usbhid.item.main.relative  Coordinates
        Boolean
    usbhid.item.main.variable  Data type
        Boolean
    usbhid.item.main.volatile  (Non)-volatile
        Boolean
    usbhid.item.main.wrap  Min/max wraparound
        Boolean
    usbhid.setup.Duration  Duration
        Unsigned 8-bit integer
    usbhid.setup.ReportID  ReportID
        Unsigned 8-bit integer
    usbhid.setup.ReportType  ReportType
        Unsigned 8-bit integer
    usbhid.setup.bRequest  bRequest
        Unsigned 8-bit integer
    usbhid.setup.wIndex  wIndex
        Unsigned 16-bit integer
    usbhid.setup.wLength  wLength
        Unsigned 16-bit integer
    usbhid.setup.wValue  wValue
        Unsigned 16-bit integer
    usbhid.setup.zero  (zero)
        Unsigned 8-bit integer

USB HUB (usbhub)

    usbhub.setup.DescriptorIndex  DescriptorIndex
        Unsigned 8-bit integer
    usbhub.setup.DescriptorLength  DescriptorLength
        Unsigned 8-bit integer
    usbhub.setup.DescriptorType  DescriptorType
        Unsigned 8-bit integer
    usbhub.setup.Dev_Addr  Dev_Addr
        Unsigned 8-bit integer
    usbhub.setup.EP_Num  EP_Num
        Unsigned 8-bit integer
    usbhub.setup.HubFeatureSelector  HubFeatureSelector
        Unsigned 16-bit integer
    usbhub.setup.Port  Port
        Unsigned 8-bit integer
    usbhub.setup.PortFeatureSelector  PortFeatureSelector
        Unsigned 16-bit integer
    usbhub.setup.PortSelector  PortSelector
        Unsigned 8-bit integer
    usbhub.setup.TT_Flags  TT_Flags
        Unsigned 8-bit integer
    usbhub.setup.TT_Port  TT_Port
        Unsigned 16-bit integer
    usbhub.setup.TT_StateLength  TT State Length
        Unsigned 16-bit integer
    usbhub.setup.bRequest  bRequest
        Unsigned 8-bit integer
    usbhub.setup.wIndex  wIndex
        Unsigned 16-bit integer
    usbhub.setup.wLength  wLength
        Unsigned 16-bit integer
    usbhub.setup.wValue  wValue
        Unsigned 16-bit integer
    usbhub.setup.zero  (zero)
        Unsigned 8-bit integer

USB Mass Storage (usbms)

    usbms.dCBWCBLength  CDB Length
        Unsigned 8-bit integer
    usbms.dCBWDataTransferLength  DataTransferLength
        Unsigned 32-bit integer
    usbms.dCBWFlags  Flags
        Unsigned 8-bit integer
    usbms.dCBWLUN  LUN
        Unsigned 8-bit integer
    usbms.dCBWSignature  Signature
        Unsigned 32-bit integer
    usbms.dCBWTag  Tag
        Unsigned 32-bit integer
    usbms.dCSWDataResidue  DataResidue
        Unsigned 32-bit integer
    usbms.dCSWSignature  Signature
        Unsigned 32-bit integer
    usbms.dCSWStatus  Status
        Unsigned 8-bit integer
    usbms.setup.bRequest  bRequest
        Unsigned 8-bit integer
    usbms.setup.maxlun  Max LUN
        Unsigned 8-bit integer
    usbms.setup.wIndex  wIndex
        Unsigned 16-bit integer
    usbms.setup.wLength  wLength
        Unsigned 16-bit integer
    usbms.setup.wValue  wValue
        Unsigned 16-bit integer

UTRAN IuBC interface SABP signaling (sabp)

    sabp.Broadcast_Message_Content  Broadcast-Message-Content
        Byte array
    sabp.Broadcast_Message_Content_Validity_Indicator  Broadcast-Message-Content-Validity-Indicator
        Unsigned 32-bit integer
    sabp.Category  Category
        Unsigned 32-bit integer
    sabp.Cause  Cause
        Unsigned 32-bit integer
    sabp.CriticalityDiagnostics_IE_List_item  CriticalityDiagnostics-IE-List item
        No value
    sabp.Criticality_Diagnostics  Criticality-Diagnostics
        No value
    sabp.Data_Coding_Scheme  Data-Coding-Scheme
        Byte array
    sabp.Error_Indication  Error-Indication
        No value
    sabp.Failure  Failure
        No value
    sabp.Failure_List  Failure-List
        Unsigned 32-bit integer
    sabp.Failure_List_Item  Failure-List-Item
        No value
    sabp.Kill  Kill
        No value
    sabp.Kill_Complete  Kill-Complete
        No value
    sabp.Kill_Failure  Kill-Failure
        No value
    sabp.Load_Query  Load-Query
        No value
    sabp.Load_Query_Complete  Load-Query-Complete
        No value
    sabp.Load_Query_Failure  Load-Query-Failure
        No value
    sabp.MessageStructure  MessageStructure
        Unsigned 32-bit integer
    sabp.MessageStructure_item  MessageStructure item
        No value
    sabp.Message_Identifier  Message-Identifier
        Byte array
    sabp.Message_Status_Query  Message-Status-Query
        No value
    sabp.Message_Status_Query_Complete  Message-Status-Query-Complete
        No value
    sabp.Message_Status_Query_Failure  Message-Status-Query-Failure
        No value
    sabp.New_Serial_Number  New-Serial-Number
        Byte array
    sabp.Number_of_Broadcasts_Completed_List  Number-of-Broadcasts-Completed-List
        Unsigned 32-bit integer
    sabp.Number_of_Broadcasts_Completed_List_Item  Number-of-Broadcasts-Completed-List-Item
        No value
    sabp.Number_of_Broadcasts_Requested  Number-of-Broadcasts-Requested
        Unsigned 32-bit integer
    sabp.Old_Serial_Number  Old-Serial-Number
        Byte array
    sabp.Paging_ETWS_Indicator  Paging-ETWS-Indicator
        Unsigned 32-bit integer
    sabp.ProtocolExtensionField  ProtocolExtensionField
        No value
    sabp.ProtocolIE_Field  ProtocolIE-Field
        No value
    sabp.Radio_Resource_Loading_List  Radio-Resource-Loading-List
        Unsigned 32-bit integer
    sabp.Radio_Resource_Loading_List_Item  Radio-Resource-Loading-List-Item
        No value
    sabp.Recovery_Indication  Recovery-Indication
        Unsigned 32-bit integer
    sabp.Repetition_Period  Repetition-Period
        Unsigned 32-bit integer
    sabp.Reset  Reset
        No value
    sabp.Reset_Complete  Reset-Complete
        No value
    sabp.Reset_Failure  Reset-Failure
        No value
    sabp.Restart  Restart
        No value
    sabp.SABP_PDU  SABP-PDU
        Unsigned 32-bit integer
    sabp.Serial_Number  Serial-Number
        Byte array
    sabp.Service_Area_Identifier  Service-Area-Identifier
        No value
    sabp.Service_Areas_List  Service-Areas-List
        Unsigned 32-bit integer
    sabp.TypeOfError  TypeOfError
        Unsigned 32-bit integer
    sabp.WarningSecurityInfo  WarningSecurityInfo
        Byte array
    sabp.Warning_Type  Warning-Type
        Byte array
    sabp.Write_Replace  Write-Replace
        No value
    sabp.Write_Replace_Complete  Write-Replace-Complete
        No value
    sabp.Write_Replace_Failure  Write-Replace-Failure
        No value
    sabp.available_bandwidth  available-bandwidth
        Unsigned 32-bit integer
    sabp.cause  cause
        Unsigned 32-bit integer
    sabp.criticality  criticality
        Unsigned 32-bit integer
    sabp.extensionValue  extensionValue
        No value
    sabp.iECriticality  iECriticality
        Unsigned 32-bit integer
        Criticality
    sabp.iE_Extensions  iE-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    sabp.iE_ID  iE-ID
        Unsigned 32-bit integer
        ProtocolIE_ID
    sabp.iEsCriticalityDiagnostics  iEsCriticalityDiagnostics
        Unsigned 32-bit integer
        CriticalityDiagnostics_IE_List
    sabp.id  id
        Unsigned 32-bit integer
        ProtocolIE_ID
    sabp.initiatingMessage  initiatingMessage
        No value
    sabp.lac  lac
        Byte array
        OCTET_STRING_SIZE_2
    sabp.no_of_pages  Number-of-Pages
        Unsigned 8-bit integer
    sabp.number_of_broadcasts_completed  number-of-broadcasts-completed
        Unsigned 32-bit integer
        INTEGER_0_65535
    sabp.number_of_broadcasts_completed_info  number-of-broadcasts-completed-info
        Unsigned 32-bit integer
    sabp.pLMNidentity  pLMNidentity
        Byte array
    sabp.procedureCode  procedureCode
        Unsigned 32-bit integer
    sabp.procedureCriticality  procedureCriticality
        Unsigned 32-bit integer
        Criticality
    sabp.protocolExtensions  protocolExtensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    sabp.protocolIEs  protocolIEs
        Unsigned 32-bit integer
        ProtocolIE_Container
    sabp.repetitionNumber  repetitionNumber
        Unsigned 32-bit integer
        RepetitionNumber0
    sabp.sac  sac
        Byte array
        OCTET_STRING_SIZE_2
    sabp.service_area_identifier  service-area-identifier
        No value
    sabp.successfulOutcome  successfulOutcome
        No value
    sabp.triggeringMessage  triggeringMessage
        Unsigned 32-bit integer
    sabp.unsuccessfulOutcome  unsuccessfulOutcome
        No value
    sabp.value  value
        No value
        ProtocolIE_Field_value

UTRAN Iub interface NBAP signalling (nbap)

    nbap.AICH_ParametersItem_CTCH_ReconfRqstFDD  AICH-ParametersItem-CTCH-ReconfRqstFDD
        No value
    nbap.AICH_ParametersListIE_CTCH_ReconfRqstFDD  AICH-ParametersListIE-CTCH-ReconfRqstFDD
        Unsigned 32-bit integer
    nbap.ActivationInformation  ActivationInformation
        Unsigned 32-bit integer
    nbap.ActivationInformationItem  ActivationInformationItem
        No value
    nbap.Active_Pattern_Sequence_Information  Active-Pattern-Sequence-Information
        No value
    nbap.Add_To_E_AGCH_Resource_Pool_768_PSCH_ReconfRqst  Add-To-E-AGCH-Resource-Pool-768-PSCH-ReconfRqst
        No value
    nbap.Add_To_E_AGCH_Resource_Pool_LCR_PSCH_ReconfRqst  Add-To-E-AGCH-Resource-Pool-LCR-PSCH-ReconfRqst
        No value
    nbap.Add_To_E_AGCH_Resource_Pool_PSCH_ReconfRqst  Add-To-E-AGCH-Resource-Pool-PSCH-ReconfRqst
        No value
    nbap.Add_To_E_HICH_Resource_Pool_LCR_PSCH_ReconfRqst  Add-To-E-HICH-Resource-Pool-LCR-PSCH-ReconfRqst
        No value
    nbap.Add_To_HS_SCCH_Resource_Pool_PSCH_ReconfRqst  Add-To-HS-SCCH-Resource-Pool-PSCH-ReconfRqst
        No value
    nbap.Add_To_Non_HS_SCCH_Associated_HS_SICH_Resource_Pool_LCR_PSCH_ReconfRqst  Add-To-Non-HS-SCCH-Associated-HS-SICH-Resource-Pool-LCR-PSCH-ReconfRqst
        No value
    nbap.AdditionalMeasurementValue  AdditionalMeasurementValue
        No value
    nbap.AdditionalMeasurementValueList  AdditionalMeasurementValueList
        Unsigned 32-bit integer
    nbap.AdditionalTimeSlotLCR  AdditionalTimeSlotLCR
        No value
    nbap.AdditionalTimeSlotListLCR  AdditionalTimeSlotListLCR
        Unsigned 32-bit integer
    nbap.Additional_EDCH_Cell_Information_Bearer_Rearrangement_ItemIEs  Additional-EDCH-Cell-Information-Bearer-Rearrangement-ItemIEs
        No value
    nbap.Additional_EDCH_Cell_Information_Bearer_Rearrangement_List  Additional-EDCH-Cell-Information-Bearer-Rearrangement-List
        Unsigned 32-bit integer
    nbap.Additional_EDCH_Cell_Information_RL_Add_Req  Additional-EDCH-Cell-Information-RL-Add-Req
        No value
    nbap.Additional_EDCH_Cell_Information_RL_Param_Upd  Additional-EDCH-Cell-Information-RL-Param-Upd
        Unsigned 32-bit integer
    nbap.Additional_EDCH_Cell_Information_RL_Param_Upd_ItemIEs  Additional-EDCH-Cell-Information-RL-Param-Upd-ItemIEs
        No value
    nbap.Additional_EDCH_Cell_Information_RL_Reconf_Prep  Additional-EDCH-Cell-Information-RL-Reconf-Prep
        No value
    nbap.Additional_EDCH_Cell_Information_RL_Reconf_Req  Additional-EDCH-Cell-Information-RL-Reconf-Req
        No value
    nbap.Additional_EDCH_Cell_Information_Removal_Info_ItemIEs  Additional-EDCH-Cell-Information-Removal-Info-ItemIEs
        No value
    nbap.Additional_EDCH_Cell_Information_Response_List  Additional-EDCH-Cell-Information-Response-List
        Unsigned 32-bit integer
    nbap.Additional_EDCH_Cell_Information_Response_RLReconf_List  Additional-EDCH-Cell-Information-Response-RLReconf-List
        Unsigned 32-bit integer
    nbap.Additional_EDCH_Cell_Information_Response_RL_Add_ItemIEs  Additional-EDCH-Cell-Information-Response-RL-Add-ItemIEs
        No value
    nbap.Additional_EDCH_Cell_Information_Response_RL_Add_List  Additional-EDCH-Cell-Information-Response-RL-Add-List
        Unsigned 32-bit integer
    nbap.Additional_EDCH_Cell_Information_To_Add_ItemIEs  Additional-EDCH-Cell-Information-To-Add-ItemIEs
        No value
    nbap.Additional_EDCH_ConfigurationChange_Info_ItemIEs  Additional-EDCH-ConfigurationChange-Info-ItemIEs
        No value
    nbap.Additional_EDCH_DL_Control_Channel_Change_Info_ItemIEs  Additional-EDCH-DL-Control-Channel-Change-Info-ItemIEs
        No value
    nbap.Additional_EDCH_FDD_Information_Response_ItemIEs  Additional-EDCH-FDD-Information-Response-ItemIEs
        No value
    nbap.Additional_EDCH_FDD_Information_Response_RLReconf_Items  Additional-EDCH-FDD-Information-Response-RLReconf-Items
        No value
    nbap.Additional_EDCH_FDD_Setup_Cell_Information  Additional-EDCH-FDD-Setup-Cell-Information
        No value
    nbap.Additional_EDCH_MAC_d_Flows_Specific_Info  Additional-EDCH-MAC-d-Flows-Specific-Info
        No value
    nbap.Additional_EDCH_MAC_d_Flows_Specific_Info_Response  Additional-EDCH-MAC-d-Flows-Specific-Info-Response
        No value
    nbap.Additional_EDCH_Preconfiguration_Information  Additional-EDCH-Preconfiguration-Information
        Unsigned 32-bit integer
    nbap.Additional_EDCH_Preconfiguration_Information_ItemIEs  Additional-EDCH-Preconfiguration-Information-ItemIEs
        No value
    nbap.Additional_EDCH_RL_Specific_Information_To_Modify_ItemIEs  Additional-EDCH-RL-Specific-Information-To-Modify-ItemIEs
        No value
    nbap.Additional_EDCH_RL_Specific_Information_To_Setup_ItemIEs  Additional-EDCH-RL-Specific-Information-To-Setup-ItemIEs
        No value
    nbap.Additional_EDCH_Setup_Info  Additional-EDCH-Setup-Info
        No value
    nbap.Additional_HS_Cell_Change_Information_Response_ItemIEs  Additional-HS-Cell-Change-Information-Response-ItemIEs
        No value
    nbap.Additional_HS_Cell_Change_Information_Response_List  Additional-HS-Cell-Change-Information-Response-List
        Unsigned 32-bit integer
    nbap.Additional_HS_Cell_Information_RL_Addition_ItemIEs  Additional-HS-Cell-Information-RL-Addition-ItemIEs
        No value
    nbap.Additional_HS_Cell_Information_RL_Addition_List  Additional-HS-Cell-Information-RL-Addition-List
        Unsigned 32-bit integer
    nbap.Additional_HS_Cell_Information_RL_Param_Upd  Additional-HS-Cell-Information-RL-Param-Upd
        Unsigned 32-bit integer
    nbap.Additional_HS_Cell_Information_RL_Param_Upd_ItemIEs  Additional-HS-Cell-Information-RL-Param-Upd-ItemIEs
        No value
    nbap.Additional_HS_Cell_Information_RL_Reconf_Prep  Additional-HS-Cell-Information-RL-Reconf-Prep
        Unsigned 32-bit integer
    nbap.Additional_HS_Cell_Information_RL_Reconf_Prep_ItemIEs  Additional-HS-Cell-Information-RL-Reconf-Prep-ItemIEs
        No value
    nbap.Additional_HS_Cell_Information_RL_Reconf_Req  Additional-HS-Cell-Information-RL-Reconf-Req
        Unsigned 32-bit integer
    nbap.Additional_HS_Cell_Information_RL_Reconf_Req_ItemIEs  Additional-HS-Cell-Information-RL-Reconf-Req-ItemIEs
        No value
    nbap.Additional_HS_Cell_Information_RL_Setup_ItemIEs  Additional-HS-Cell-Information-RL-Setup-ItemIEs
        No value
    nbap.Additional_HS_Cell_Information_RL_Setup_List  Additional-HS-Cell-Information-RL-Setup-List
        Unsigned 32-bit integer
    nbap.Additional_HS_Cell_Information_Response_ItemIEs  Additional-HS-Cell-Information-Response-ItemIEs
        No value
    nbap.Additional_HS_Cell_Information_Response_List  Additional-HS-Cell-Information-Response-List
        Unsigned 32-bit integer
    nbap.AdjustmentPeriod  AdjustmentPeriod
        Unsigned 32-bit integer
    nbap.AllowedSlotFormatInformationItem_CTCH_ReconfRqstFDD  AllowedSlotFormatInformationItem-CTCH-ReconfRqstFDD
        No value
    nbap.AllowedSlotFormatInformationItem_CTCH_SetupRqstFDD  AllowedSlotFormatInformationItem-CTCH-SetupRqstFDD
        No value
    nbap.AlternativeFormatReportingIndicator  AlternativeFormatReportingIndicator
        Unsigned 32-bit integer
    nbap.Angle_Of_Arrival_Value_LCR  Angle-Of-Arrival-Value-LCR
        No value
    nbap.AuditFailure  AuditFailure
        No value
    nbap.AuditRequest  AuditRequest
        No value
    nbap.AuditRequiredIndication  AuditRequiredIndication
        No value
    nbap.AuditResponse  AuditResponse
        No value
    nbap.BCCH_ModificationTime  BCCH-ModificationTime
        Unsigned 32-bit integer
    nbap.BearerRearrangementIndication  BearerRearrangementIndication
        No value
    nbap.Best_Cell_Portions_Item  Best-Cell-Portions-Item
        No value
    nbap.Best_Cell_Portions_ItemLCR  Best-Cell-Portions-ItemLCR
        No value
    nbap.Best_Cell_Portions_Value  Best-Cell-Portions-Value
        Unsigned 32-bit integer
    nbap.Best_Cell_Portions_ValueLCR  Best-Cell-Portions-ValueLCR
        Unsigned 32-bit integer
    nbap.BindingID  BindingID
        Byte array
    nbap.BlockResourceFailure  BlockResourceFailure
        No value
    nbap.BlockResourceRequest  BlockResourceRequest
        No value
    nbap.BlockResourceResponse  BlockResourceResponse
        No value
    nbap.BlockingPriorityIndicator  BlockingPriorityIndicator
        Unsigned 32-bit integer
    nbap.BroadcastCommonTransportBearerIndication  BroadcastCommonTransportBearerIndication
        No value
    nbap.BroadcastReference  BroadcastReference
        Byte array
    nbap.CCP_InformationItem_AuditRsp  CCP-InformationItem-AuditRsp
        No value
    nbap.CCP_InformationItem_ResourceStatusInd  CCP-InformationItem-ResourceStatusInd
        No value
    nbap.CCP_InformationList_AuditRsp  CCP-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.CCTrCH_InformationItem_RL_FailureInd  CCTrCH-InformationItem-RL-FailureInd
        No value
    nbap.CCTrCH_InformationItem_RL_RestoreInd  CCTrCH-InformationItem-RL-RestoreInd
        No value
    nbap.CCTrCH_TPCAddItem_RL_ReconfPrepTDD  CCTrCH-TPCAddItem-RL-ReconfPrepTDD
        No value
    nbap.CCTrCH_TPCItem_RL_SetupRqstTDD  CCTrCH-TPCItem-RL-SetupRqstTDD
        No value
    nbap.CCTrCH_TPCModifyItem_RL_ReconfPrepTDD  CCTrCH-TPCModifyItem-RL-ReconfPrepTDD
        No value
    nbap.CFN  CFN
        Unsigned 32-bit integer
    nbap.CPC_Information  CPC-Information
        No value
    nbap.CPC_InformationLCR  CPC-InformationLCR
        No value
    nbap.CRNC_CommunicationContextID  CRNC-CommunicationContextID
        Unsigned 32-bit integer
    nbap.CSBMeasurementID  CSBMeasurementID
        Unsigned 32-bit integer
    nbap.CSBTransmissionID  CSBTransmissionID
        Unsigned 32-bit integer
    nbap.C_ID  C-ID
        Unsigned 32-bit integer
    nbap.Cause  Cause
        Unsigned 32-bit integer
    nbap.CauseLevel_PSCH_ReconfFailure  CauseLevel-PSCH-ReconfFailure
        Unsigned 32-bit integer
    nbap.CauseLevel_RL_AdditionFailureFDD  CauseLevel-RL-AdditionFailureFDD
        Unsigned 32-bit integer
    nbap.CauseLevel_RL_AdditionFailureTDD  CauseLevel-RL-AdditionFailureTDD
        Unsigned 32-bit integer
    nbap.CauseLevel_RL_ReconfFailure  CauseLevel-RL-ReconfFailure
        Unsigned 32-bit integer
    nbap.CauseLevel_RL_SetupFailureFDD  CauseLevel-RL-SetupFailureFDD
        Unsigned 32-bit integer
    nbap.CauseLevel_RL_SetupFailureTDD  CauseLevel-RL-SetupFailureTDD
        Unsigned 32-bit integer
    nbap.CauseLevel_SyncAdjustmntFailureTDD  CauseLevel-SyncAdjustmntFailureTDD
        Unsigned 32-bit integer
    nbap.CellAdjustmentInfoItem_SyncAdjustmentRqstTDD  CellAdjustmentInfoItem-SyncAdjustmentRqstTDD
        No value
    nbap.CellAdjustmentInfo_SyncAdjustmentRqstTDD  CellAdjustmentInfo-SyncAdjustmentRqstTDD
        Unsigned 32-bit integer
    nbap.CellDeletionRequest  CellDeletionRequest
        No value
    nbap.CellDeletionResponse  CellDeletionResponse
        No value
    nbap.CellParameterID  CellParameterID
        Unsigned 32-bit integer
    nbap.CellPortion_CapabilityLCR  CellPortion-CapabilityLCR
        Unsigned 32-bit integer
    nbap.CellPortion_InformationItem_Cell_ReconfRqstFDD  CellPortion-InformationItem-Cell-ReconfRqstFDD
        No value
    nbap.CellPortion_InformationItem_Cell_SetupRqstFDD  CellPortion-InformationItem-Cell-SetupRqstFDD
        No value
    nbap.CellPortion_InformationList_Cell_ReconfRqstFDD  CellPortion-InformationList-Cell-ReconfRqstFDD
        Unsigned 32-bit integer
    nbap.CellPortion_InformationList_Cell_SetupRqstFDD  CellPortion-InformationList-Cell-SetupRqstFDD
        Unsigned 32-bit integer
    nbap.CellReconfigurationFailure  CellReconfigurationFailure
        No value
    nbap.CellReconfigurationRequestFDD  CellReconfigurationRequestFDD
        No value
    nbap.CellReconfigurationRequestTDD  CellReconfigurationRequestTDD
        No value
    nbap.CellReconfigurationResponse  CellReconfigurationResponse
        No value
    nbap.CellSetupFailure  CellSetupFailure
        No value
    nbap.CellSetupRequestFDD  CellSetupRequestFDD
        No value
    nbap.CellSetupRequestTDD  CellSetupRequestTDD
        No value
    nbap.CellSetupResponse  CellSetupResponse
        No value
    nbap.CellSyncBurstInfoItem_CellSyncReconfRqstTDD  CellSyncBurstInfoItem-CellSyncReconfRqstTDD
        No value
    nbap.CellSyncBurstInfo_CellSyncReprtTDD  CellSyncBurstInfo-CellSyncReprtTDD
        Unsigned 32-bit integer
    nbap.CellSyncBurstMeasInfoItem_CellSyncReconfRqstTDD  CellSyncBurstMeasInfoItem-CellSyncReconfRqstTDD
        No value
    nbap.CellSyncBurstMeasInfoItem_CellSyncReprtTDD  CellSyncBurstMeasInfoItem-CellSyncReprtTDD
        No value
    nbap.CellSyncBurstMeasInfoListIE_CellSyncReconfRqstTDD  CellSyncBurstMeasInfoListIE-CellSyncReconfRqstTDD
        Unsigned 32-bit integer
    nbap.CellSyncBurstMeasInfo_CellSyncReconfRqstTDD  CellSyncBurstMeasInfo-CellSyncReconfRqstTDD
        No value
    nbap.CellSyncBurstMeasureInit_CellSyncInitiationRqstTDD  CellSyncBurstMeasureInit-CellSyncInitiationRqstTDD
        No value
    nbap.CellSyncBurstRepetitionPeriod  CellSyncBurstRepetitionPeriod
        Unsigned 32-bit integer
    nbap.CellSyncBurstTransInfoItem_CellSyncReconfRqstTDD  CellSyncBurstTransInfoItem-CellSyncReconfRqstTDD
        No value
    nbap.CellSyncBurstTransInit_CellSyncInitiationRqstTDD  CellSyncBurstTransInit-CellSyncInitiationRqstTDD
        No value
    nbap.CellSyncBurstTransReconfInfo_CellSyncReconfRqstTDD  CellSyncBurstTransReconfInfo-CellSyncReconfRqstTDD
        Unsigned 32-bit integer
    nbap.CellSyncInfoItemIE_CellSyncReprtTDD  CellSyncInfoItemIE-CellSyncReprtTDD
        No value
    nbap.CellSyncInfo_CellSyncReprtTDD  CellSyncInfo-CellSyncReprtTDD
        Unsigned 32-bit integer
    nbap.CellSynchronisationAdjustmentFailureTDD  CellSynchronisationAdjustmentFailureTDD
        No value
    nbap.CellSynchronisationAdjustmentRequestTDD  CellSynchronisationAdjustmentRequestTDD
        No value
    nbap.CellSynchronisationAdjustmentResponseTDD  CellSynchronisationAdjustmentResponseTDD
        No value
    nbap.CellSynchronisationFailureIndicationTDD  CellSynchronisationFailureIndicationTDD
        No value
    nbap.CellSynchronisationInitiationFailureTDD  CellSynchronisationInitiationFailureTDD
        No value
    nbap.CellSynchronisationInitiationRequestTDD  CellSynchronisationInitiationRequestTDD
        No value
    nbap.CellSynchronisationInitiationResponseTDD  CellSynchronisationInitiationResponseTDD
        No value
    nbap.CellSynchronisationReconfigurationFailureTDD  CellSynchronisationReconfigurationFailureTDD
        No value
    nbap.CellSynchronisationReconfigurationRequestTDD  CellSynchronisationReconfigurationRequestTDD
        No value
    nbap.CellSynchronisationReconfigurationResponseTDD  CellSynchronisationReconfigurationResponseTDD
        No value
    nbap.CellSynchronisationReportTDD  CellSynchronisationReportTDD
        No value
    nbap.CellSynchronisationTerminationRequestTDD  CellSynchronisationTerminationRequestTDD
        No value
    nbap.Cell_Capability_Container  Cell-Capability-Container
        Byte array
    nbap.Cell_ERNTI_Status_Information  Cell-ERNTI-Status-Information
        Unsigned 32-bit integer
    nbap.Cell_ERNTI_Status_Information_Item  Cell-ERNTI-Status-Information-Item
        No value
    nbap.Cell_Frequency_Item_LCR_MulFreq_Cell_SetupRqstTDD  Cell-Frequency-Item-LCR-MulFreq-Cell-SetupRqstTDD
        No value
    nbap.Cell_Frequency_List_InformationItem_LCR_MulFreq_AuditRsp  Cell-Frequency-List-InformationItem-LCR-MulFreq-AuditRsp
        No value
    nbap.Cell_Frequency_List_InformationItem_LCR_MulFreq_ResourceStatusInd  Cell-Frequency-List-InformationItem-LCR-MulFreq-ResourceStatusInd
        No value
    nbap.Cell_Frequency_List_Information_LCR_MulFreq_AuditRsp  Cell-Frequency-List-Information-LCR-MulFreq-AuditRsp
        Unsigned 32-bit integer
    nbap.Cell_Frequency_List_Information_LCR_MulFreq_ResourceStatusInd  Cell-Frequency-List-Information-LCR-MulFreq-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.Cell_Frequency_List_LCR_MulFreq_Cell_SetupRqstTDD  Cell-Frequency-List-LCR-MulFreq-Cell-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.Cell_Frequency_ModifyItem_LCR_MulFreq_Cell_ReconfRqstTDD  Cell-Frequency-ModifyItem-LCR-MulFreq-Cell-ReconfRqstTDD
        No value
    nbap.Cell_InformationItem_AuditRsp  Cell-InformationItem-AuditRsp
        No value
    nbap.Cell_InformationItem_ResourceStatusInd  Cell-InformationItem-ResourceStatusInd
        No value
    nbap.Cell_InformationList_AuditRsp  Cell-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.Closedlooptimingadjustmentmode  Closedlooptimingadjustmentmode
        Unsigned 32-bit integer
    nbap.CommonChannelsCapacityConsumptionLaw_item  CommonChannelsCapacityConsumptionLaw item
        No value
    nbap.CommonMACFlow_Specific_InfoItem  CommonMACFlow-Specific-InfoItem
        No value
    nbap.CommonMACFlow_Specific_InfoItemLCR  CommonMACFlow-Specific-InfoItemLCR
        No value
    nbap.CommonMACFlow_Specific_InfoItem_Response  CommonMACFlow-Specific-InfoItem-Response
        No value
    nbap.CommonMACFlow_Specific_InfoItem_ResponseLCR  CommonMACFlow-Specific-InfoItem-ResponseLCR
        No value
    nbap.CommonMeasurementAccuracy  CommonMeasurementAccuracy
        Unsigned 32-bit integer
    nbap.CommonMeasurementFailureIndication  CommonMeasurementFailureIndication
        No value
    nbap.CommonMeasurementInitiationFailure  CommonMeasurementInitiationFailure
        No value
    nbap.CommonMeasurementInitiationRequest  CommonMeasurementInitiationRequest
        No value
    nbap.CommonMeasurementInitiationResponse  CommonMeasurementInitiationResponse
        No value
    nbap.CommonMeasurementObjectType_CM_Rprt  CommonMeasurementObjectType-CM-Rprt
        Unsigned 32-bit integer
    nbap.CommonMeasurementObjectType_CM_Rqst  CommonMeasurementObjectType-CM-Rqst
        Unsigned 32-bit integer
    nbap.CommonMeasurementObjectType_CM_Rsp  CommonMeasurementObjectType-CM-Rsp
        Unsigned 32-bit integer
    nbap.CommonMeasurementReport  CommonMeasurementReport
        No value
    nbap.CommonMeasurementTerminationRequest  CommonMeasurementTerminationRequest
        No value
    nbap.CommonMeasurementType  CommonMeasurementType
        Unsigned 32-bit integer
    nbap.CommonPhysicalChannelID  CommonPhysicalChannelID
        Unsigned 32-bit integer
    nbap.CommonPhysicalChannelID768  CommonPhysicalChannelID768
        Unsigned 32-bit integer
    nbap.CommonPhysicalChannelType_CTCH_ReconfRqstFDD  CommonPhysicalChannelType-CTCH-ReconfRqstFDD
        Unsigned 32-bit integer
    nbap.CommonPhysicalChannelType_CTCH_SetupRqstFDD  CommonPhysicalChannelType-CTCH-SetupRqstFDD
        Unsigned 32-bit integer
    nbap.CommonPhysicalChannelType_CTCH_SetupRqstTDD  CommonPhysicalChannelType-CTCH-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.CommonTransportChannelDeletionRequest  CommonTransportChannelDeletionRequest
        No value
    nbap.CommonTransportChannelDeletionResponse  CommonTransportChannelDeletionResponse
        No value
    nbap.CommonTransportChannelReconfigurationFailure  CommonTransportChannelReconfigurationFailure
        No value
    nbap.CommonTransportChannelReconfigurationRequestFDD  CommonTransportChannelReconfigurationRequestFDD
        No value
    nbap.CommonTransportChannelReconfigurationRequestTDD  CommonTransportChannelReconfigurationRequestTDD
        No value
    nbap.CommonTransportChannelReconfigurationResponse  CommonTransportChannelReconfigurationResponse
        No value
    nbap.CommonTransportChannelSetupFailure  CommonTransportChannelSetupFailure
        No value
    nbap.CommonTransportChannelSetupRequestFDD  CommonTransportChannelSetupRequestFDD
        No value
    nbap.CommonTransportChannelSetupRequestTDD  CommonTransportChannelSetupRequestTDD
        No value
    nbap.CommonTransportChannelSetupResponse  CommonTransportChannelSetupResponse
        No value
    nbap.CommonTransportChannel_InformationResponse  CommonTransportChannel-InformationResponse
        No value
    nbap.Common_EDCH_Capability  Common-EDCH-Capability
        Unsigned 32-bit integer
    nbap.Common_EDCH_System_InformationFDD  Common-EDCH-System-InformationFDD
        No value
    nbap.Common_EDCH_System_InformationLCR  Common-EDCH-System-InformationLCR
        No value
    nbap.Common_EDCH_System_Information_ResponseFDD  Common-EDCH-System-Information-ResponseFDD
        No value
    nbap.Common_EDCH_System_Information_ResponseLCR  Common-EDCH-System-Information-ResponseLCR
        No value
    nbap.Common_E_AGCH_ItemLCR  Common-E-AGCH-ItemLCR
        No value
    nbap.Common_E_DCH_HSDPCCH_Capability  Common-E-DCH-HSDPCCH-Capability
        Unsigned 32-bit integer
    nbap.Common_E_DCH_LogicalChannel_InfoList_Item  Common-E-DCH-LogicalChannel-InfoList-Item
        No value
    nbap.Common_E_DCH_MACdFlow_Specific_InfoList_Item  Common-E-DCH-MACdFlow-Specific-InfoList-Item
        No value
    nbap.Common_E_DCH_MACdFlow_Specific_InfoList_ItemLCR  Common-E-DCH-MACdFlow-Specific-InfoList-ItemLCR
        No value
    nbap.Common_E_DCH_Resource_Combination_InfoList_Item  Common-E-DCH-Resource-Combination-InfoList-Item
        No value
    nbap.Common_E_HICH_ItemLCR  Common-E-HICH-ItemLCR
        No value
    nbap.Common_E_RNTI_Info_ItemLCR  Common-E-RNTI-Info-ItemLCR
        No value
    nbap.Common_H_RNTI_InfoItemLCR  Common-H-RNTI-InfoItemLCR
        No value
    nbap.Common_MACFlow_PriorityQueue_Item  Common-MACFlow-PriorityQueue-Item
        No value
    nbap.Common_MACFlows_to_DeleteFDD  Common-MACFlows-to-DeleteFDD
        Unsigned 32-bit integer
    nbap.Common_MACFlows_to_DeleteFDD_Item  Common-MACFlows-to-DeleteFDD-Item
        No value
    nbap.Common_MACFlows_to_DeleteLCR  Common-MACFlows-to-DeleteLCR
        Unsigned 32-bit integer
    nbap.Common_MACFlows_to_DeleteLCR_Item  Common-MACFlows-to-DeleteLCR-Item
        No value
    nbap.Common_PhysicalChannel_Status_Information  Common-PhysicalChannel-Status-Information
        No value
    nbap.Common_PhysicalChannel_Status_Information768  Common-PhysicalChannel-Status-Information768
        No value
    nbap.Common_System_Information_ResponseLCR  Common-System-Information-ResponseLCR
        No value
    nbap.Common_TransportChannel_Status_Information  Common-TransportChannel-Status-Information
        No value
    nbap.CommunicationContextInfoItem_Reset  CommunicationContextInfoItem-Reset
        No value
    nbap.CommunicationControlPortID  CommunicationControlPortID
        Unsigned 32-bit integer
    nbap.CommunicationControlPortInfoItem_Reset  CommunicationControlPortInfoItem-Reset
        No value
    nbap.CompressedModeCommand  CompressedModeCommand
        No value
    nbap.Compressed_Mode_Deactivation_Flag  Compressed-Mode-Deactivation-Flag
        Unsigned 32-bit integer
    nbap.ConfigurationGenerationID  ConfigurationGenerationID
        Unsigned 32-bit integer
    nbap.ConstantValue  ConstantValue
        Signed 32-bit integer
    nbap.ContinuousPacketConnectivityDTX_DRX_Capability  ContinuousPacketConnectivityDTX-DRX-Capability
        Unsigned 32-bit integer
    nbap.ContinuousPacketConnectivityDTX_DRX_Information  ContinuousPacketConnectivityDTX-DRX-Information
        No value
    nbap.ContinuousPacketConnectivityHS_SCCH_less_Capability  ContinuousPacketConnectivityHS-SCCH-less-Capability
        Unsigned 32-bit integer
    nbap.ContinuousPacketConnectivityHS_SCCH_less_Deactivate_Indicator  ContinuousPacketConnectivityHS-SCCH-less-Deactivate-Indicator
        No value
    nbap.ContinuousPacketConnectivityHS_SCCH_less_Information  ContinuousPacketConnectivityHS-SCCH-less-Information
        Unsigned 32-bit integer
    nbap.ContinuousPacketConnectivityHS_SCCH_less_InformationItem  ContinuousPacketConnectivityHS-SCCH-less-InformationItem
        No value
    nbap.ContinuousPacketConnectivityHS_SCCH_less_Information_Response  ContinuousPacketConnectivityHS-SCCH-less-Information-Response
        No value
    nbap.ContinuousPacketConnectivity_DRX_CapabilityLCR  ContinuousPacketConnectivity-DRX-CapabilityLCR
        Unsigned 32-bit integer
    nbap.ContinuousPacketConnectivity_DRX_InformationLCR  ContinuousPacketConnectivity-DRX-InformationLCR
        No value
    nbap.ContinuousPacketConnectivity_DRX_Information_ResponseLCR  ContinuousPacketConnectivity-DRX-Information-ResponseLCR
        No value
    nbap.ControlGAP  ControlGAP
        Unsigned 32-bit integer
    nbap.CriticalityDiagnostics  CriticalityDiagnostics
        No value
    nbap.CriticalityDiagnostics_IE_List_item  CriticalityDiagnostics-IE-List item
        No value
    nbap.DCH_DeleteItem_RL_ReconfPrepFDD  DCH-DeleteItem-RL-ReconfPrepFDD
        No value
    nbap.DCH_DeleteItem_RL_ReconfPrepTDD  DCH-DeleteItem-RL-ReconfPrepTDD
        No value
    nbap.DCH_DeleteItem_RL_ReconfRqstFDD  DCH-DeleteItem-RL-ReconfRqstFDD
        No value
    nbap.DCH_DeleteItem_RL_ReconfRqstTDD  DCH-DeleteItem-RL-ReconfRqstTDD
        No value
    nbap.DCH_DeleteList_RL_ReconfPrepFDD  DCH-DeleteList-RL-ReconfPrepFDD
        Unsigned 32-bit integer
    nbap.DCH_DeleteList_RL_ReconfPrepTDD  DCH-DeleteList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.DCH_DeleteList_RL_ReconfRqstFDD  DCH-DeleteList-RL-ReconfRqstFDD
        Unsigned 32-bit integer
    nbap.DCH_DeleteList_RL_ReconfRqstTDD  DCH-DeleteList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.DCH_FDD_Information  DCH-FDD-Information
        Unsigned 32-bit integer
    nbap.DCH_FDD_InformationItem  DCH-FDD-InformationItem
        No value
    nbap.DCH_Indicator_For_E_DCH_HSDPA_Operation  DCH-Indicator-For-E-DCH-HSDPA-Operation
        Unsigned 32-bit integer
    nbap.DCH_InformationResponse  DCH-InformationResponse
        Unsigned 32-bit integer
    nbap.DCH_InformationResponseItem  DCH-InformationResponseItem
        No value
    nbap.DCH_MeasurementOccasion_Information  DCH-MeasurementOccasion-Information
        Unsigned 32-bit integer
    nbap.DCH_ModifyItem_TDD  DCH-ModifyItem-TDD
        No value
    nbap.DCH_ModifySpecificItem_FDD  DCH-ModifySpecificItem-FDD
        No value
    nbap.DCH_ModifySpecificItem_TDD  DCH-ModifySpecificItem-TDD
        No value
    nbap.DCH_RearrangeItem_Bearer_RearrangeInd  DCH-RearrangeItem-Bearer-RearrangeInd
        No value
    nbap.DCH_RearrangeList_Bearer_RearrangeInd  DCH-RearrangeList-Bearer-RearrangeInd
        Unsigned 32-bit integer
    nbap.DCH_Specific_FDD_Item  DCH-Specific-FDD-Item
        No value
    nbap.DCH_Specific_TDD_Item  DCH-Specific-TDD-Item
        No value
    nbap.DCH_TDD_Information  DCH-TDD-Information
        Unsigned 32-bit integer
    nbap.DCH_TDD_InformationItem  DCH-TDD-InformationItem
        No value
    nbap.DGANSS_Corrections_Req  DGANSS-Corrections-Req
        No value
    nbap.DGANSS_InformationItem  DGANSS-InformationItem
        No value
    nbap.DGANSS_SignalInformationItem  DGANSS-SignalInformationItem
        No value
    nbap.DGNSS_ValidityPeriod  DGNSS-ValidityPeriod
        No value
    nbap.DLTransmissionBranchLoadValue  DLTransmissionBranchLoadValue
        Unsigned 32-bit integer
    nbap.DL_CCTrCH_InformationAddItem_RL_ReconfPrepTDD  DL-CCTrCH-InformationAddItem-RL-ReconfPrepTDD
        No value
    nbap.DL_CCTrCH_InformationAddList_RL_ReconfPrepTDD  DL-CCTrCH-InformationAddList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.DL_CCTrCH_InformationDeleteItem_RL_ReconfPrepTDD  DL-CCTrCH-InformationDeleteItem-RL-ReconfPrepTDD
        No value
    nbap.DL_CCTrCH_InformationDeleteItem_RL_ReconfRqstTDD  DL-CCTrCH-InformationDeleteItem-RL-ReconfRqstTDD
        No value
    nbap.DL_CCTrCH_InformationDeleteList_RL_ReconfPrepTDD  DL-CCTrCH-InformationDeleteList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.DL_CCTrCH_InformationDeleteList_RL_ReconfRqstTDD  DL-CCTrCH-InformationDeleteList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.DL_CCTrCH_InformationItem_RL_AdditionRqstTDD  DL-CCTrCH-InformationItem-RL-AdditionRqstTDD
        No value
    nbap.DL_CCTrCH_InformationItem_RL_SetupRqstTDD  DL-CCTrCH-InformationItem-RL-SetupRqstTDD
        No value
    nbap.DL_CCTrCH_InformationList_RL_AdditionRqstTDD  DL-CCTrCH-InformationList-RL-AdditionRqstTDD
        Unsigned 32-bit integer
    nbap.DL_CCTrCH_InformationList_RL_SetupRqstTDD  DL-CCTrCH-InformationList-RL-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.DL_CCTrCH_InformationModifyItem_RL_ReconfPrepTDD  DL-CCTrCH-InformationModifyItem-RL-ReconfPrepTDD
        No value
    nbap.DL_CCTrCH_InformationModifyItem_RL_ReconfRqstTDD  DL-CCTrCH-InformationModifyItem-RL-ReconfRqstTDD
        No value
    nbap.DL_CCTrCH_InformationModifyList_RL_ReconfPrepTDD  DL-CCTrCH-InformationModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.DL_CCTrCH_InformationModifyList_RL_ReconfRqstTDD  DL-CCTrCH-InformationModifyList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.DL_Code_768_InformationModifyItem_PSCH_ReconfRqst  DL-Code-768-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.DL_Code_768_InformationModify_ModifyItem_RL_ReconfPrepTDD  DL-Code-768-InformationModify-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.DL_Code_InformationAddItem_768_PSCH_ReconfRqst  DL-Code-InformationAddItem-768-PSCH-ReconfRqst
        No value
    nbap.DL_Code_InformationAddItem_LCR_PSCH_ReconfRqst  DL-Code-InformationAddItem-LCR-PSCH-ReconfRqst
        No value
    nbap.DL_Code_InformationAddItem_PSCH_ReconfRqst  DL-Code-InformationAddItem-PSCH-ReconfRqst
        No value
    nbap.DL_Code_InformationModifyItem_PSCH_ReconfRqst  DL-Code-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.DL_Code_InformationModify_ModifyItem_RL_ReconfPrepTDD  DL-Code-InformationModify-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.DL_Code_LCR_InformationModifyItem_PSCH_ReconfRqst  DL-Code-LCR-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.DL_Code_LCR_InformationModify_ModifyItem_RL_ReconfPrepTDD  DL-Code-LCR-InformationModify-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.DL_DPCH_768_InformationAddList_RL_ReconfPrepTDD  DL-DPCH-768-InformationAddList-RL-ReconfPrepTDD
        No value
    nbap.DL_DPCH_768_InformationModify_AddList_RL_ReconfPrepTDD  DL-DPCH-768-InformationModify-AddList-RL-ReconfPrepTDD
        No value
    nbap.DL_DPCH_768_Information_RL_SetupRqstTDD  DL-DPCH-768-Information-RL-SetupRqstTDD
        No value
    nbap.DL_DPCH_InformationAddItem_RL_ReconfPrepTDD  DL-DPCH-InformationAddItem-RL-ReconfPrepTDD
        No value
    nbap.DL_DPCH_InformationItem_768_RL_AdditionRqstTDD  DL-DPCH-InformationItem-768-RL-AdditionRqstTDD
        No value
    nbap.DL_DPCH_InformationItem_LCR_RL_AdditionRqstTDD  DL-DPCH-InformationItem-LCR-RL-AdditionRqstTDD
        No value
    nbap.DL_DPCH_InformationItem_RL_AdditionRqstTDD  DL-DPCH-InformationItem-RL-AdditionRqstTDD
        No value
    nbap.DL_DPCH_InformationItem_RL_SetupRqstTDD  DL-DPCH-InformationItem-RL-SetupRqstTDD
        No value
    nbap.DL_DPCH_InformationModify_AddItem_RL_ReconfPrepTDD  DL-DPCH-InformationModify-AddItem-RL-ReconfPrepTDD
        No value
    nbap.DL_DPCH_InformationModify_DeleteItem_RL_ReconfPrepTDD  DL-DPCH-InformationModify-DeleteItem-RL-ReconfPrepTDD
        No value
    nbap.DL_DPCH_InformationModify_DeleteListIE_RL_ReconfPrepTDD  DL-DPCH-InformationModify-DeleteListIE-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.DL_DPCH_InformationModify_ModifyItem_RL_ReconfPrepTDD  DL-DPCH-InformationModify-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.DL_DPCH_Information_RL_ReconfPrepFDD  DL-DPCH-Information-RL-ReconfPrepFDD
        No value
    nbap.DL_DPCH_Information_RL_ReconfRqstFDD  DL-DPCH-Information-RL-ReconfRqstFDD
        No value
    nbap.DL_DPCH_Information_RL_SetupRqstFDD  DL-DPCH-Information-RL-SetupRqstFDD
        No value
    nbap.DL_DPCH_LCR_InformationAddList_RL_ReconfPrepTDD  DL-DPCH-LCR-InformationAddList-RL-ReconfPrepTDD
        No value
    nbap.DL_DPCH_LCR_InformationModify_AddList_RL_ReconfPrepTDD  DL-DPCH-LCR-InformationModify-AddList-RL-ReconfPrepTDD
        No value
    nbap.DL_DPCH_LCR_InformationModify_ModifyList_RL_ReconfRqstTDD  DL-DPCH-LCR-InformationModify-ModifyList-RL-ReconfRqstTDD
        No value
    nbap.DL_DPCH_LCR_Information_RL_SetupRqstTDD  DL-DPCH-LCR-Information-RL-SetupRqstTDD
        No value
    nbap.DL_DPCH_Power_Information_RL_ReconfPrepFDD  DL-DPCH-Power-Information-RL-ReconfPrepFDD
        No value
    nbap.DL_DPCH_TimingAdjustment  DL-DPCH-TimingAdjustment
        Unsigned 32-bit integer
    nbap.DL_HS_PDSCH_Timeslot_InformationItem_768_PSCH_ReconfRqst  DL-HS-PDSCH-Timeslot-InformationItem-768-PSCH-ReconfRqst
        No value
    nbap.DL_HS_PDSCH_Timeslot_InformationItem_LCR_PSCH_ReconfRqst  DL-HS-PDSCH-Timeslot-InformationItem-LCR-PSCH-ReconfRqst
        No value
    nbap.DL_HS_PDSCH_Timeslot_InformationItem_PSCH_ReconfRqst  DL-HS-PDSCH-Timeslot-InformationItem-PSCH-ReconfRqst
        No value
    nbap.DL_HS_PDSCH_Timeslot_Information_768_PSCH_ReconfRqst  DL-HS-PDSCH-Timeslot-Information-768-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.DL_Power  DL-Power
        Signed 32-bit integer
    nbap.DL_PowerBalancing_ActivationIndicator  DL-PowerBalancing-ActivationIndicator
        Unsigned 32-bit integer
    nbap.DL_PowerBalancing_Information  DL-PowerBalancing-Information
        No value
    nbap.DL_PowerBalancing_UpdatedIndicator  DL-PowerBalancing-UpdatedIndicator
        Unsigned 32-bit integer
    nbap.DL_PowerControlRequest  DL-PowerControlRequest
        No value
    nbap.DL_PowerTimeslotControlRequest  DL-PowerTimeslotControlRequest
        No value
    nbap.DL_RLC_PDU_Size_Format  DL-RLC-PDU-Size-Format
        Unsigned 32-bit integer
    nbap.DL_ReferencePowerInformationItem  DL-ReferencePowerInformationItem
        No value
    nbap.DL_ReferencePowerInformationItem_DL_PC_Rqst  DL-ReferencePowerInformationItem-DL-PC-Rqst
        No value
    nbap.DL_ReferencePowerInformationList_DL_PC_Rqst  DL-ReferencePowerInformationList-DL-PC-Rqst
        Unsigned 32-bit integer
    nbap.DL_ScramblingCode  DL-ScramblingCode
        Unsigned 32-bit integer
    nbap.DL_TPC_Pattern01Count  DL-TPC-Pattern01Count
        Unsigned 32-bit integer
    nbap.DL_Timeslot768_InformationItem  DL-Timeslot768-InformationItem
        No value
    nbap.DL_TimeslotISCPInfo  DL-TimeslotISCPInfo
        Unsigned 32-bit integer
    nbap.DL_TimeslotISCPInfoItem  DL-TimeslotISCPInfoItem
        No value
    nbap.DL_TimeslotISCPInfoItemLCR  DL-TimeslotISCPInfoItemLCR
        No value
    nbap.DL_TimeslotISCPInfoLCR  DL-TimeslotISCPInfoLCR
        Unsigned 32-bit integer
    nbap.DL_TimeslotLCR_InformationItem  DL-TimeslotLCR-InformationItem
        No value
    nbap.DL_Timeslot_768_InformationModifyItem_PSCH_ReconfRqst  DL-Timeslot-768-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.DL_Timeslot_768_InformationModify_ModifyItem_RL_ReconfPrepTDD  DL-Timeslot-768-InformationModify-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.DL_Timeslot_768_InformationModify_ModifyList_RL_ReconfPrepTDD  DL-Timeslot-768-InformationModify-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.DL_Timeslot_InformationAddItem_768_PSCH_ReconfRqst  DL-Timeslot-InformationAddItem-768-PSCH-ReconfRqst
        No value
    nbap.DL_Timeslot_InformationAddItem_LCR_PSCH_ReconfRqst  DL-Timeslot-InformationAddItem-LCR-PSCH-ReconfRqst
        No value
    nbap.DL_Timeslot_InformationAddItem_PSCH_ReconfRqst  DL-Timeslot-InformationAddItem-PSCH-ReconfRqst
        No value
    nbap.DL_Timeslot_InformationItem  DL-Timeslot-InformationItem
        No value
    nbap.DL_Timeslot_InformationModifyItem_PSCH_ReconfRqst  DL-Timeslot-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.DL_Timeslot_InformationModify_ModifyItem_RL_ReconfPrepTDD  DL-Timeslot-InformationModify-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.DL_Timeslot_LCR_InformationModifyItem_PSCH_ReconfRqst  DL-Timeslot-LCR-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.DL_Timeslot_LCR_InformationModify_ModifyItem_RL_ReconfPrepTDD  DL-Timeslot-LCR-InformationModify-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.DL_Timeslot_LCR_InformationModify_ModifyItem_RL_ReconfRqstTDD  DL-Timeslot-LCR-InformationModify-ModifyItem-RL-ReconfRqstTDD
        No value
    nbap.DL_Timeslot_LCR_InformationModify_ModifyList_RL_ReconfPrepTDD  DL-Timeslot-LCR-InformationModify-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.DPCH_ID768  DPCH-ID768
        Unsigned 32-bit integer
    nbap.DPC_Mode  DPC-Mode
        Unsigned 32-bit integer
    nbap.DSCH_InformationResponse  DSCH-InformationResponse
        Unsigned 32-bit integer
    nbap.DSCH_InformationResponseItem  DSCH-InformationResponseItem
        No value
    nbap.DSCH_Information_DeleteItem_RL_ReconfPrepTDD  DSCH-Information-DeleteItem-RL-ReconfPrepTDD
        No value
    nbap.DSCH_Information_DeleteList_RL_ReconfPrepTDD  DSCH-Information-DeleteList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.DSCH_Information_ModifyItem_RL_ReconfPrepTDD  DSCH-Information-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.DSCH_Information_ModifyList_RL_ReconfPrepTDD  DSCH-Information-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.DSCH_RearrangeItem_Bearer_RearrangeInd  DSCH-RearrangeItem-Bearer-RearrangeInd
        No value
    nbap.DSCH_RearrangeList_Bearer_RearrangeInd  DSCH-RearrangeList-Bearer-RearrangeInd
        Unsigned 32-bit integer
    nbap.DSCH_TDD_Information  DSCH-TDD-Information
        Unsigned 32-bit integer
    nbap.DSCH_TDD_InformationItem  DSCH-TDD-InformationItem
        No value
    nbap.DchMeasurementOccasionInformation_Item  DchMeasurementOccasionInformation-Item
        No value
    nbap.DedicatedChannelsCapacityConsumptionLaw_item  DedicatedChannelsCapacityConsumptionLaw item
        No value
    nbap.DedicatedMeasurementFailureIndication  DedicatedMeasurementFailureIndication
        No value
    nbap.DedicatedMeasurementInitiationFailure  DedicatedMeasurementInitiationFailure
        No value
    nbap.DedicatedMeasurementInitiationRequest  DedicatedMeasurementInitiationRequest
        No value
    nbap.DedicatedMeasurementInitiationResponse  DedicatedMeasurementInitiationResponse
        No value
    nbap.DedicatedMeasurementObjectType_DM_Rprt  DedicatedMeasurementObjectType-DM-Rprt
        Unsigned 32-bit integer
    nbap.DedicatedMeasurementObjectType_DM_Rqst  DedicatedMeasurementObjectType-DM-Rqst
        Unsigned 32-bit integer
    nbap.DedicatedMeasurementObjectType_DM_Rsp  DedicatedMeasurementObjectType-DM-Rsp
        Unsigned 32-bit integer
    nbap.DedicatedMeasurementReport  DedicatedMeasurementReport
        No value
    nbap.DedicatedMeasurementTerminationRequest  DedicatedMeasurementTerminationRequest
        No value
    nbap.DedicatedMeasurementType  DedicatedMeasurementType
        Unsigned 32-bit integer
    nbap.DelayedActivation  DelayedActivation
        Unsigned 32-bit integer
    nbap.DelayedActivationInformationList_RL_ActivationCmdFDD  DelayedActivationInformationList-RL-ActivationCmdFDD
        Unsigned 32-bit integer
    nbap.DelayedActivationInformationList_RL_ActivationCmdTDD  DelayedActivationInformationList-RL-ActivationCmdTDD
        Unsigned 32-bit integer
    nbap.DelayedActivationInformation_RL_ActivationCmdFDD  DelayedActivationInformation-RL-ActivationCmdFDD
        No value
    nbap.DelayedActivationInformation_RL_ActivationCmdTDD  DelayedActivationInformation-RL-ActivationCmdTDD
        No value
    nbap.Delete_From_E_AGCH_Resource_PoolItem_PSCH_ReconfRqst  Delete-From-E-AGCH-Resource-PoolItem-PSCH-ReconfRqst
        No value
    nbap.Delete_From_E_AGCH_Resource_Pool_PSCH_ReconfRqst  Delete-From-E-AGCH-Resource-Pool-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.Delete_From_E_HICH_Resource_PoolItem_PSCH_ReconfRqst  Delete-From-E-HICH-Resource-PoolItem-PSCH-ReconfRqst
        No value
    nbap.Delete_From_E_HICH_Resource_Pool_PSCH_ReconfRqst  Delete-From-E-HICH-Resource-Pool-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.Delete_From_HS_SCCH_Resource_PoolExt_PSCH_ReconfRqst  Delete-From-HS-SCCH-Resource-PoolExt-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.Delete_From_HS_SCCH_Resource_PoolItem_PSCH_ReconfRqst  Delete-From-HS-SCCH-Resource-PoolItem-PSCH-ReconfRqst
        No value
    nbap.Delete_From_HS_SCCH_Resource_Pool_PSCH_ReconfRqst  Delete-From-HS-SCCH-Resource-Pool-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.Delete_From_Non_HS_SCCH_Associated_HS_SICH_Resource_Pool_LCR_PSCH_ReconfRqst  Delete-From-Non-HS-SCCH-Associated-HS-SICH-Resource-Pool-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.Delete_From_Non_HS_SCCH_Associated_HS_SICH_Resource_Pool_LCR_PSCH_ReconfRqstItem  Delete-From-Non-HS-SCCH-Associated-HS-SICH-Resource-Pool-LCR-PSCH-ReconfRqstItem
        No value
    nbap.Delete_From_Non_HS_SCCH_Associated_HS_SICH_Resource_Pool_LCR_PSCH_ReconfRqst_Ext  Delete-From-Non-HS-SCCH-Associated-HS-SICH-Resource-Pool-LCR-PSCH-ReconfRqst-Ext
        Unsigned 32-bit integer
    nbap.DiversityMode  DiversityMode
        Unsigned 32-bit integer
    nbap.DormantModeIndicator  DormantModeIndicator
        Unsigned 32-bit integer
    nbap.Dual_Band_Capability_Info  Dual-Band-Capability-Info
        No value
    nbap.DwPCH_LCR_Information_Cell_ReconfRqstTDD  DwPCH-LCR-Information-Cell-ReconfRqstTDD
        No value
    nbap.DwPCH_LCR_Information_Cell_SetupRqstTDD  DwPCH-LCR-Information-Cell-SetupRqstTDD
        No value
    nbap.DwPCH_LCR_Information_ResourceStatusInd  DwPCH-LCR-Information-ResourceStatusInd
        No value
    nbap.DwPCH_Power  DwPCH-Power
        Signed 32-bit integer
    nbap.EDCH_Additional_Modified_RL_Specific_Information_Response_List_Items  EDCH-Additional-Modified-RL-Specific-Information-Response-List-Items
        No value
    nbap.EDCH_Additional_RL_Specific_Information_Response_ItemIEs  EDCH-Additional-RL-Specific-Information-Response-ItemIEs
        No value
    nbap.EDCH_Additional_RL_Specific_Information_To_Add_List  EDCH-Additional-RL-Specific-Information-To-Add-List
        No value
    nbap.EDCH_RACH_Report_IncrDecrThres  EDCH-RACH-Report-IncrDecrThres
        No value
    nbap.EDCH_RACH_Report_ThresholdInformation  EDCH-RACH-Report-ThresholdInformation
        No value
    nbap.EDCH_RACH_Report_Value  EDCH-RACH-Report-Value
        Unsigned 32-bit integer
    nbap.EDCH_RACH_Report_Value_item  EDCH-RACH-Report-Value item
        No value
    nbap.ERACH_CM_Rprt  ERACH-CM-Rprt
        No value
    nbap.ERACH_CM_Rqst  ERACH-CM-Rqst
        No value
    nbap.ERACH_CM_Rsp  ERACH-CM-Rsp
        No value
    nbap.E_AGCH_FDD_Code_Information  E-AGCH-FDD-Code-Information
        Unsigned 32-bit integer
    nbap.E_AGCH_InformationItem_768_PSCH_ReconfRqst  E-AGCH-InformationItem-768-PSCH-ReconfRqst
        No value
    nbap.E_AGCH_InformationItem_LCR_PSCH_ReconfRqst  E-AGCH-InformationItem-LCR-PSCH-ReconfRqst
        No value
    nbap.E_AGCH_InformationItem_PSCH_ReconfRqst  E-AGCH-InformationItem-PSCH-ReconfRqst
        No value
    nbap.E_AGCH_InformationModifyItem_768_PSCH_ReconfRqst  E-AGCH-InformationModifyItem-768-PSCH-ReconfRqst
        No value
    nbap.E_AGCH_InformationModifyItem_LCR_PSCH_ReconfRqst  E-AGCH-InformationModifyItem-LCR-PSCH-ReconfRqst
        No value
    nbap.E_AGCH_InformationModifyItem_PSCH_ReconfRqst  E-AGCH-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.E_AGCH_Specific_InformationResp_ItemTDD  E-AGCH-Specific-InformationResp-ItemTDD
        No value
    nbap.E_AGCH_Table_Choice  E-AGCH-Table-Choice
        Unsigned 32-bit integer
    nbap.E_AGCH_UE_Inactivity_Monitor_Threshold  E-AGCH-UE-Inactivity-Monitor-Threshold
        Unsigned 32-bit integer
    nbap.E_AI_Capability  E-AI-Capability
        Unsigned 32-bit integer
    nbap.E_DCHCapacityConsumptionLaw  E-DCHCapacityConsumptionLaw
        No value
    nbap.E_DCHProvidedBitRate  E-DCHProvidedBitRate
        Unsigned 32-bit integer
    nbap.E_DCHProvidedBitRateValueInformation_For_CellPortion  E-DCHProvidedBitRateValueInformation-For-CellPortion
        Unsigned 32-bit integer
    nbap.E_DCHProvidedBitRateValueInformation_For_CellPortion_Item  E-DCHProvidedBitRateValueInformation-For-CellPortion-Item
        No value
    nbap.E_DCHProvidedBitRate_Item  E-DCHProvidedBitRate-Item
        No value
    nbap.E_DCH_768_Information  E-DCH-768-Information
        No value
    nbap.E_DCH_768_Information_Reconfig  E-DCH-768-Information-Reconfig
        No value
    nbap.E_DCH_Capability  E-DCH-Capability
        Unsigned 32-bit integer
    nbap.E_DCH_DL_Control_Channel_Change_Information  E-DCH-DL-Control-Channel-Change-Information
        Unsigned 32-bit integer
    nbap.E_DCH_DL_Control_Channel_Change_Information_Item  E-DCH-DL-Control-Channel-Change-Information-Item
        No value
    nbap.E_DCH_DL_Control_Channel_Grant_Information  E-DCH-DL-Control-Channel-Grant-Information
        Unsigned 32-bit integer
    nbap.E_DCH_DL_Control_Channel_Grant_Information_Item  E-DCH-DL-Control-Channel-Grant-Information-Item
        No value
    nbap.E_DCH_FDD_DL_Control_Channel_Information  E-DCH-FDD-DL-Control-Channel-Information
        No value
    nbap.E_DCH_FDD_Information  E-DCH-FDD-Information
        No value
    nbap.E_DCH_FDD_Information_Response  E-DCH-FDD-Information-Response
        No value
    nbap.E_DCH_FDD_Information_to_Modify  E-DCH-FDD-Information-to-Modify
        No value
    nbap.E_DCH_FDD_Update_Information  E-DCH-FDD-Update-Information
        No value
    nbap.E_DCH_HARQ_Combining_Capability  E-DCH-HARQ-Combining-Capability
        Unsigned 32-bit integer
    nbap.E_DCH_Information  E-DCH-Information
        No value
    nbap.E_DCH_Information_Reconfig  E-DCH-Information-Reconfig
        No value
    nbap.E_DCH_Information_Response  E-DCH-Information-Response
        No value
    nbap.E_DCH_LCR_Information  E-DCH-LCR-Information
        No value
    nbap.E_DCH_LCR_Information_Reconfig  E-DCH-LCR-Information-Reconfig
        No value
    nbap.E_DCH_LogicalChannelInformationItem  E-DCH-LogicalChannelInformationItem
        No value
    nbap.E_DCH_LogicalChannelToDeleteItem  E-DCH-LogicalChannelToDeleteItem
        No value
    nbap.E_DCH_LogicalChannelToModifyItem  E-DCH-LogicalChannelToModifyItem
        No value
    nbap.E_DCH_MACdFlow_InfoTDDItem  E-DCH-MACdFlow-InfoTDDItem
        No value
    nbap.E_DCH_MACdFlow_ModifyTDDItem  E-DCH-MACdFlow-ModifyTDDItem
        No value
    nbap.E_DCH_MACdFlow_Retransmission_Timer  E-DCH-MACdFlow-Retransmission-Timer
        Unsigned 32-bit integer
    nbap.E_DCH_MACdFlow_Specific_InfoItem  E-DCH-MACdFlow-Specific-InfoItem
        No value
    nbap.E_DCH_MACdFlow_Specific_InfoItem_to_Modify  E-DCH-MACdFlow-Specific-InfoItem-to-Modify
        No value
    nbap.E_DCH_MACdFlow_Specific_InformationResp_Item  E-DCH-MACdFlow-Specific-InformationResp-Item
        No value
    nbap.E_DCH_MACdFlow_Specific_UpdateInformation_Item  E-DCH-MACdFlow-Specific-UpdateInformation-Item
        No value
    nbap.E_DCH_MACdFlow_to_Delete_Item  E-DCH-MACdFlow-to-Delete-Item
        No value
    nbap.E_DCH_MACdFlow_to_Delete_ItemLCR  E-DCH-MACdFlow-to-Delete-ItemLCR
        No value
    nbap.E_DCH_MACdFlows_Information  E-DCH-MACdFlows-Information
        No value
    nbap.E_DCH_MACdFlows_to_Delete  E-DCH-MACdFlows-to-Delete
        Unsigned 32-bit integer
    nbap.E_DCH_MACdFlows_to_DeleteLCR  E-DCH-MACdFlows-to-DeleteLCR
        Unsigned 32-bit integer
    nbap.E_DCH_MACdPDUSizeFormat  E-DCH-MACdPDUSizeFormat
        Unsigned 32-bit integer
    nbap.E_DCH_MACdPDU_SizeCapability  E-DCH-MACdPDU-SizeCapability
        Unsigned 32-bit integer
    nbap.E_DCH_MACdPDU_SizeListItem  E-DCH-MACdPDU-SizeListItem
        No value
    nbap.E_DCH_Non_serving_Relative_Grant_Down_Commands  E-DCH-Non-serving-Relative-Grant-Down-Commands
        Unsigned 32-bit integer
    nbap.E_DCH_PowerOffset_for_SchedulingInfo  E-DCH-PowerOffset-for-SchedulingInfo
        Unsigned 32-bit integer
    nbap.E_DCH_RL_Indication  E-DCH-RL-Indication
        Unsigned 32-bit integer
    nbap.E_DCH_RL_InformationList_Rsp_Item  E-DCH-RL-InformationList-Rsp-Item
        No value
    nbap.E_DCH_RearrangeItem_Bearer_RearrangeInd  E-DCH-RearrangeItem-Bearer-RearrangeInd
        No value
    nbap.E_DCH_RearrangeList_Bearer_RearrangeInd  E-DCH-RearrangeList-Bearer-RearrangeInd
        Unsigned 32-bit integer
    nbap.E_DCH_RefBeta_Item  E-DCH-RefBeta-Item
        No value
    nbap.E_DCH_Resources_Information_AuditRsp  E-DCH-Resources-Information-AuditRsp
        No value
    nbap.E_DCH_Resources_Information_ResourceStatusInd  E-DCH-Resources-Information-ResourceStatusInd
        No value
    nbap.E_DCH_SF_Capability  E-DCH-SF-Capability
        Unsigned 32-bit integer
    nbap.E_DCH_SF_allocation_item  E-DCH-SF-allocation item
        No value
    nbap.E_DCH_Semi_PersistentScheduling_Information_LCR  E-DCH-Semi-PersistentScheduling-Information-LCR
        No value
    nbap.E_DCH_Semi_PersistentScheduling_Information_ResponseLCR  E-DCH-Semi-PersistentScheduling-Information-ResponseLCR
        No value
    nbap.E_DCH_Serving_Cell_Change_Info_Response  E-DCH-Serving-Cell-Change-Info-Response
        No value
    nbap.E_DCH_TDD_CapacityConsumptionLaw  E-DCH-TDD-CapacityConsumptionLaw
        No value
    nbap.E_DCH_TDD_MACdFlow_Specific_InformationResp_Item  E-DCH-TDD-MACdFlow-Specific-InformationResp-Item
        No value
    nbap.E_DCH_TTI2ms_Capability  E-DCH-TTI2ms-Capability
        Boolean
    nbap.E_DPCCH_Power_Boosting_Capability  E-DPCCH-Power-Boosting-Capability
        Unsigned 32-bit integer
    nbap.E_DPCH_Information_RL_AdditionReqFDD  E-DPCH-Information-RL-AdditionReqFDD
        No value
    nbap.E_DPCH_Information_RL_ReconfPrepFDD  E-DPCH-Information-RL-ReconfPrepFDD
        No value
    nbap.E_DPCH_Information_RL_ReconfRqstFDD  E-DPCH-Information-RL-ReconfRqstFDD
        No value
    nbap.E_DPCH_Information_RL_SetupRqstFDD  E-DPCH-Information-RL-SetupRqstFDD
        No value
    nbap.E_DPDCH_PowerInterpolation  E-DPDCH-PowerInterpolation
        Boolean
    nbap.E_HICH_InformationItem_LCR_PSCH_ReconfRqst  E-HICH-InformationItem-LCR-PSCH-ReconfRqst
        No value
    nbap.E_HICH_InformationModifyItem_LCR_PSCH_ReconfRqst  E-HICH-InformationModifyItem-LCR-PSCH-ReconfRqst
        No value
    nbap.E_HICH_Information_768_PSCH_ReconfRqst  E-HICH-Information-768-PSCH-ReconfRqst
        No value
    nbap.E_HICH_Information_PSCH_ReconfRqst  E-HICH-Information-PSCH-ReconfRqst
        No value
    nbap.E_HICH_TimeOffset  E-HICH-TimeOffset
        Unsigned 32-bit integer
    nbap.E_HICH_TimeOffsetLCR  E-HICH-TimeOffsetLCR
        Unsigned 32-bit integer
    nbap.E_HICH_TimeOffset_ExtensionLCR  E-HICH-TimeOffset-ExtensionLCR
        Unsigned 32-bit integer
    nbap.E_HICH_TimeOffset_ReconfFailureTDD  E-HICH-TimeOffset-ReconfFailureTDD
        Unsigned 32-bit integer
    nbap.E_PUCH_Information_768_PSCH_ReconfRqst  E-PUCH-Information-768-PSCH-ReconfRqst
        No value
    nbap.E_PUCH_Information_LCR_PSCH_ReconfRqst  E-PUCH-Information-LCR-PSCH-ReconfRqst
        No value
    nbap.E_PUCH_Information_PSCH_ReconfRqst  E-PUCH-Information-PSCH-ReconfRqst
        No value
    nbap.E_PUCH_Timeslot_Item_InfoLCR  E-PUCH-Timeslot-Item-InfoLCR
        No value
    nbap.E_RGCH_E_HICH_FDD_Code_Information  E-RGCH-E-HICH-FDD-Code-Information
        Unsigned 32-bit integer
    nbap.E_RNTI  E-RNTI
        Unsigned 32-bit integer
    nbap.E_RNTI_List  E-RNTI-List
        Unsigned 32-bit integer
    nbap.E_RUCCH_768_InformationList_AuditRsp  E-RUCCH-768-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.E_RUCCH_768_InformationList_ResourceStatusInd  E-RUCCH-768-InformationList-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.E_RUCCH_768_parameters  E-RUCCH-768-parameters
        No value
    nbap.E_RUCCH_InformationList_AuditRsp  E-RUCCH-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.E_RUCCH_InformationList_ResourceStatusInd  E-RUCCH-InformationList-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.E_RUCCH_parameters  E-RUCCH-parameters
        No value
    nbap.E_TFCI_Boost_Information  E-TFCI-Boost-Information
        No value
    nbap.End_Of_Audit_Sequence_Indicator  End-Of-Audit-Sequence-Indicator
        Unsigned 32-bit integer
    nbap.EnhancedHSServingCC_Abort  EnhancedHSServingCC-Abort
        Unsigned 32-bit integer
    nbap.Enhanced_FACH_Capability  Enhanced-FACH-Capability
        Unsigned 32-bit integer
    nbap.Enhanced_PCH_Capability  Enhanced-PCH-Capability
        Unsigned 32-bit integer
    nbap.Enhanced_UE_DRX_Capability  Enhanced-UE-DRX-Capability
        Unsigned 32-bit integer
    nbap.Enhanced_UE_DRX_InformationFDD  Enhanced-UE-DRX-InformationFDD
        No value
    nbap.Enhanced_UE_DRX_InformationLCR  Enhanced-UE-DRX-InformationLCR
        No value
    nbap.ErrorIndication  ErrorIndication
        No value
    nbap.Ext_Max_Bits_MACe_PDU_non_scheduled  Ext-Max-Bits-MACe-PDU-non-scheduled
        Unsigned 32-bit integer
    nbap.Ext_Reference_E_TFCI_PO  Ext-Reference-E-TFCI-PO
        Unsigned 32-bit integer
    nbap.ExtendedPropagationDelay  ExtendedPropagationDelay
        Unsigned 32-bit integer
    nbap.Extended_E_DCH_LCRTDD_PhysicalLayerCategory  Extended-E-DCH-LCRTDD-PhysicalLayerCategory
        Unsigned 32-bit integer
    nbap.Extended_E_HICH_ID_TDD  Extended-E-HICH-ID-TDD
        Unsigned 32-bit integer
    nbap.Extended_HS_SCCH_ID  Extended-HS-SCCH-ID
        Unsigned 32-bit integer
    nbap.Extended_HS_SICH_ID  Extended-HS-SICH-ID
        Unsigned 32-bit integer
    nbap.Extended_RNC_ID  Extended-RNC-ID
        Unsigned 32-bit integer
    nbap.Extended_Round_Trip_Time_Value  Extended-Round-Trip-Time-Value
        Unsigned 32-bit integer
    nbap.FACH_CommonTransportChannel_InformationResponse  FACH-CommonTransportChannel-InformationResponse
        Unsigned 32-bit integer
    nbap.FACH_ParametersItem_CTCH_ReconfRqstFDD  FACH-ParametersItem-CTCH-ReconfRqstFDD
        No value
    nbap.FACH_ParametersItem_CTCH_ReconfRqstTDD  FACH-ParametersItem-CTCH-ReconfRqstTDD
        No value
    nbap.FACH_ParametersItem_CTCH_SetupRqstFDD  FACH-ParametersItem-CTCH-SetupRqstFDD
        No value
    nbap.FACH_ParametersItem_CTCH_SetupRqstTDD  FACH-ParametersItem-CTCH-SetupRqstTDD
        No value
    nbap.FACH_ParametersListIE_CTCH_ReconfRqstFDD  FACH-ParametersListIE-CTCH-ReconfRqstFDD
        Unsigned 32-bit integer
    nbap.FACH_ParametersListIE_CTCH_SetupRqstFDD  FACH-ParametersListIE-CTCH-SetupRqstFDD
        Unsigned 32-bit integer
    nbap.FACH_ParametersListIE_CTCH_SetupRqstTDD  FACH-ParametersListIE-CTCH-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.FACH_ParametersList_CTCH_ReconfRqstTDD  FACH-ParametersList-CTCH-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.FDD_DCHs_to_Modify  FDD-DCHs-to-Modify
        Unsigned 32-bit integer
    nbap.FDD_DCHs_to_ModifyItem  FDD-DCHs-to-ModifyItem
        No value
    nbap.FDD_DL_ChannelisationCodeNumber  FDD-DL-ChannelisationCodeNumber
        Unsigned 32-bit integer
    nbap.FDD_DL_CodeInformationItem  FDD-DL-CodeInformationItem
        No value
    nbap.FDD_S_CCPCH_FrameOffset  FDD-S-CCPCH-FrameOffset
        Unsigned 32-bit integer
    nbap.FNReportingIndicator  FNReportingIndicator
        Unsigned 32-bit integer
    nbap.FPACH_LCR_InformationList_AuditRsp  FPACH-LCR-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.FPACH_LCR_InformationList_ResourceStatusInd  FPACH-LCR-InformationList-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.FPACH_LCR_Parameters_CTCH_ReconfRqstTDD  FPACH-LCR-Parameters-CTCH-ReconfRqstTDD
        No value
    nbap.FPACH_LCR_Parameters_CTCH_SetupRqstTDD  FPACH-LCR-Parameters-CTCH-SetupRqstTDD
        No value
    nbap.F_DPCH_Capability  F-DPCH-Capability
        Unsigned 32-bit integer
    nbap.F_DPCH_Information_RL_ReconfPrepFDD  F-DPCH-Information-RL-ReconfPrepFDD
        No value
    nbap.F_DPCH_Information_RL_SetupRqstFDD  F-DPCH-Information-RL-SetupRqstFDD
        No value
    nbap.F_DPCH_SlotFormat  F-DPCH-SlotFormat
        Unsigned 32-bit integer
    nbap.F_DPCH_SlotFormatCapability  F-DPCH-SlotFormatCapability
        Unsigned 32-bit integer
    nbap.Fast_Reconfiguration_Mode  Fast-Reconfiguration-Mode
        Unsigned 32-bit integer
    nbap.Fast_Reconfiguration_Permission  Fast-Reconfiguration-Permission
        Unsigned 32-bit integer
    nbap.GANSS_ALM_ECEFsbasAlmanacSet  GANSS-ALM-ECEFsbasAlmanacSet
        No value
    nbap.GANSS_ALM_GlonassAlmanacSet  GANSS-ALM-GlonassAlmanacSet
        No value
    nbap.GANSS_ALM_MidiAlmanacSet  GANSS-ALM-MidiAlmanacSet
        No value
    nbap.GANSS_ALM_NAVKeplerianSet  GANSS-ALM-NAVKeplerianSet
        No value
    nbap.GANSS_ALM_ReducedKeplerianSet  GANSS-ALM-ReducedKeplerianSet
        No value
    nbap.GANSS_AddIonoModelReq  GANSS-AddIonoModelReq
        Byte array
    nbap.GANSS_AddNavigationModelsReq  GANSS-AddNavigationModelsReq
        Boolean
    nbap.GANSS_AddUTCModelsReq  GANSS-AddUTCModelsReq
        Boolean
    nbap.GANSS_Additional_Ionospheric_Model  GANSS-Additional-Ionospheric-Model
        No value
    nbap.GANSS_Additional_Navigation_Models  GANSS-Additional-Navigation-Models
        No value
    nbap.GANSS_Additional_Time_Models  GANSS-Additional-Time-Models
        Unsigned 32-bit integer
    nbap.GANSS_Additional_UTC_Models  GANSS-Additional-UTC-Models
        Unsigned 32-bit integer
    nbap.GANSS_AuxInfoGANSS_ID1_element  GANSS-AuxInfoGANSS-ID1-element
        No value
    nbap.GANSS_AuxInfoGANSS_ID3_element  GANSS-AuxInfoGANSS-ID3-element
        No value
    nbap.GANSS_AuxInfoReq  GANSS-AuxInfoReq
        Boolean
    nbap.GANSS_Auxiliary_Information  GANSS-Auxiliary-Information
        Unsigned 32-bit integer
    nbap.GANSS_Common_Data  GANSS-Common-Data
        No value
    nbap.GANSS_DataBitAssistanceItem  GANSS-DataBitAssistanceItem
        No value
    nbap.GANSS_DataBitAssistanceSgnItem  GANSS-DataBitAssistanceSgnItem
        No value
    nbap.GANSS_EarthOrientParaReq  GANSS-EarthOrientParaReq
        Boolean
    nbap.GANSS_Earth_Orientation_Parameters  GANSS-Earth-Orientation-Parameters
        No value
    nbap.GANSS_GenericDataInfoReqItem  GANSS-GenericDataInfoReqItem
        No value
    nbap.GANSS_Generic_Data  GANSS-Generic-Data
        Unsigned 32-bit integer
    nbap.GANSS_Generic_DataItem  GANSS-Generic-DataItem
        No value
    nbap.GANSS_ID  GANSS-ID
        Unsigned 32-bit integer
    nbap.GANSS_Information  GANSS-Information
        No value
    nbap.GANSS_RealTimeInformationItem  GANSS-RealTimeInformationItem
        No value
    nbap.GANSS_SAT_Info_Almanac_GLOkp  GANSS-SAT-Info-Almanac-GLOkp
        No value
    nbap.GANSS_SAT_Info_Almanac_MIDIkp  GANSS-SAT-Info-Almanac-MIDIkp
        No value
    nbap.GANSS_SAT_Info_Almanac_NAVkp  GANSS-SAT-Info-Almanac-NAVkp
        No value
    nbap.GANSS_SAT_Info_Almanac_REDkp  GANSS-SAT-Info-Almanac-REDkp
        No value
    nbap.GANSS_SAT_Info_Almanac_SBASecef  GANSS-SAT-Info-Almanac-SBASecef
        No value
    nbap.GANSS_SBAS_ID  GANSS-SBAS-ID
        Unsigned 32-bit integer
    nbap.GANSS_Sat_Info_Nav_item  GANSS-Sat-Info-Nav item
        No value
    nbap.GANSS_SatelliteClockModelItem  GANSS-SatelliteClockModelItem
        No value
    nbap.GANSS_SatelliteInformationKPItem  GANSS-SatelliteInformationKPItem
        No value
    nbap.GANSS_Time_ID  GANSS-Time-ID
        Unsigned 32-bit integer
    nbap.GANSS_Time_Model  GANSS-Time-Model
        No value
    nbap.GPS_Information_Item  GPS-Information-Item
        Unsigned 32-bit integer
    nbap.GPS_NavandRecovery_Item  GPS-NavandRecovery-Item
        No value
    nbap.Ganss_Sat_Info_AddNavList_item  Ganss-Sat-Info-AddNavList item
        No value
    nbap.HARQ_MemoryPartitioningInfoExtForMIMO  HARQ-MemoryPartitioningInfoExtForMIMO
        Unsigned 32-bit integer
    nbap.HARQ_MemoryPartitioningItem  HARQ-MemoryPartitioningItem
        No value
    nbap.HARQ_Preamble_Mode  HARQ-Preamble-Mode
        Unsigned 32-bit integer
    nbap.HARQ_Preamble_Mode_Activation_Indicator  HARQ-Preamble-Mode-Activation-Indicator
        Unsigned 32-bit integer
    nbap.HSDPA_And_EDCH_CellPortion_InformationItem_PSCH_ReconfRqst  HSDPA-And-EDCH-CellPortion-InformationItem-PSCH-ReconfRqst
        No value
    nbap.HSDPA_And_EDCH_CellPortion_InformationList_PSCH_ReconfRqst  HSDPA-And-EDCH-CellPortion-InformationList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.HSDPA_Capability  HSDPA-Capability
        Unsigned 32-bit integer
    nbap.HSDSCH_Common_System_InformationFDD  HSDSCH-Common-System-InformationFDD
        No value
    nbap.HSDSCH_Common_System_InformationLCR  HSDSCH-Common-System-InformationLCR
        No value
    nbap.HSDSCH_Common_System_Information_ResponseFDD  HSDSCH-Common-System-Information-ResponseFDD
        No value
    nbap.HSDSCH_Common_System_Information_ResponseLCR  HSDSCH-Common-System-Information-ResponseLCR
        No value
    nbap.HSDSCH_Configured_Indicator  HSDSCH-Configured-Indicator
        Unsigned 32-bit integer
    nbap.HSDSCH_FDD_Information  HSDSCH-FDD-Information
        No value
    nbap.HSDSCH_FDD_Information_Response  HSDSCH-FDD-Information-Response
        No value
    nbap.HSDSCH_FDD_Update_Information  HSDSCH-FDD-Update-Information
        No value
    nbap.HSDSCH_Information_to_Modify  HSDSCH-Information-to-Modify
        No value
    nbap.HSDSCH_Information_to_Modify_Unsynchronised  HSDSCH-Information-to-Modify-Unsynchronised
        No value
    nbap.HSDSCH_Initial_Capacity_AllocationItem  HSDSCH-Initial-Capacity-AllocationItem
        No value
    nbap.HSDSCH_MACdFlow_Specific_InfoItem  HSDSCH-MACdFlow-Specific-InfoItem
        No value
    nbap.HSDSCH_MACdFlow_Specific_InfoItem_to_Modify  HSDSCH-MACdFlow-Specific-InfoItem-to-Modify
        No value
    nbap.HSDSCH_MACdFlow_Specific_InformationResp_Item  HSDSCH-MACdFlow-Specific-InformationResp-Item
        No value
    nbap.HSDSCH_MACdFlows_Information  HSDSCH-MACdFlows-Information
        No value
    nbap.HSDSCH_MACdFlows_to_Delete  HSDSCH-MACdFlows-to-Delete
        Unsigned 32-bit integer
    nbap.HSDSCH_MACdFlows_to_Delete_Item  HSDSCH-MACdFlows-to-Delete-Item
        No value
    nbap.HSDSCH_MACdPDUSizeFormat  HSDSCH-MACdPDUSizeFormat
        Unsigned 32-bit integer
    nbap.HSDSCH_MACdPDU_SizeCapability  HSDSCH-MACdPDU-SizeCapability
        Unsigned 32-bit integer
    nbap.HSDSCH_Paging_System_InformationFDD  HSDSCH-Paging-System-InformationFDD
        No value
    nbap.HSDSCH_Paging_System_InformationLCR  HSDSCH-Paging-System-InformationLCR
        No value
    nbap.HSDSCH_Paging_System_Information_ResponseFDD  HSDSCH-Paging-System-Information-ResponseFDD
        Unsigned 32-bit integer
    nbap.HSDSCH_Paging_System_Information_ResponseLCR  HSDSCH-Paging-System-Information-ResponseLCR
        Unsigned 32-bit integer
    nbap.HSDSCH_Paging_System_Information_ResponseList  HSDSCH-Paging-System-Information-ResponseList
        No value
    nbap.HSDSCH_Paging_System_Information_ResponseListLCR  HSDSCH-Paging-System-Information-ResponseListLCR
        No value
    nbap.HSDSCH_PreconfigurationInfo  HSDSCH-PreconfigurationInfo
        No value
    nbap.HSDSCH_PreconfigurationSetup  HSDSCH-PreconfigurationSetup
        No value
    nbap.HSDSCH_RNTI  HSDSCH-RNTI
        Unsigned 32-bit integer
    nbap.HSDSCH_RearrangeItem_Bearer_RearrangeInd  HSDSCH-RearrangeItem-Bearer-RearrangeInd
        No value
    nbap.HSDSCH_RearrangeList_Bearer_RearrangeInd  HSDSCH-RearrangeList-Bearer-RearrangeInd
        Unsigned 32-bit integer
    nbap.HSDSCH_TBSizeTableIndicator  HSDSCH-TBSizeTableIndicator
        Unsigned 32-bit integer
    nbap.HSDSCH_TDD_Information  HSDSCH-TDD-Information
        No value
    nbap.HSDSCH_TDD_Information_Response  HSDSCH-TDD-Information-Response
        No value
    nbap.HSDSCH_TDD_Update_Information  HSDSCH-TDD-Update-Information
        No value
    nbap.HSSCCH_Codes  HSSCCH-Codes
        No value
    nbap.HSSCCH_Specific_InformationRespItemLCR  HSSCCH-Specific-InformationRespItemLCR
        No value
    nbap.HSSCCH_Specific_InformationRespItemTDD  HSSCCH-Specific-InformationRespItemTDD
        No value
    nbap.HSSCCH_Specific_InformationRespItemTDD768  HSSCCH-Specific-InformationRespItemTDD768
        No value
    nbap.HSSCCH_Specific_InformationRespItemTDDLCR  HSSCCH-Specific-InformationRespItemTDDLCR
        No value
    nbap.HSSCCH_Specific_InformationRespListTDD768  HSSCCH-Specific-InformationRespListTDD768
        Unsigned 32-bit integer
    nbap.HSSICH_InfoExt_DM_Rqst  HSSICH-InfoExt-DM-Rqst
        Unsigned 32-bit integer
    nbap.HSSICH_Info_DM_Rqst  HSSICH-Info-DM-Rqst
        Unsigned 32-bit integer
    nbap.HSSICH_ReferenceSignal_InformationLCR  HSSICH-ReferenceSignal-InformationLCR
        No value
    nbap.HSSICH_ReferenceSignal_InformationModifyLCR  HSSICH-ReferenceSignal-InformationModifyLCR
        No value
    nbap.HS_DSCHProvidedBitRate  HS-DSCHProvidedBitRate
        Unsigned 32-bit integer
    nbap.HS_DSCHProvidedBitRateValueInformation_For_CellPortion  HS-DSCHProvidedBitRateValueInformation-For-CellPortion
        Unsigned 32-bit integer
    nbap.HS_DSCHProvidedBitRateValueInformation_For_CellPortionLCR  HS-DSCHProvidedBitRateValueInformation-For-CellPortionLCR
        Unsigned 32-bit integer
    nbap.HS_DSCHProvidedBitRateValueInformation_For_CellPortionLCR_Item  HS-DSCHProvidedBitRateValueInformation-For-CellPortionLCR-Item
        No value
    nbap.HS_DSCHProvidedBitRateValueInformation_For_CellPortion_Item  HS-DSCHProvidedBitRateValueInformation-For-CellPortion-Item
        No value
    nbap.HS_DSCHProvidedBitRate_Item  HS-DSCHProvidedBitRate-Item
        No value
    nbap.HS_DSCHRequiredPower  HS-DSCHRequiredPower
        Unsigned 32-bit integer
    nbap.HS_DSCHRequiredPowerPerUEInformation_Item  HS-DSCHRequiredPowerPerUEInformation-Item
        No value
    nbap.HS_DSCHRequiredPowerValue  HS-DSCHRequiredPowerValue
        Unsigned 32-bit integer
    nbap.HS_DSCHRequiredPowerValueInformation_For_CellPortion  HS-DSCHRequiredPowerValueInformation-For-CellPortion
        Unsigned 32-bit integer
    nbap.HS_DSCHRequiredPowerValueInformation_For_CellPortionLCR  HS-DSCHRequiredPowerValueInformation-For-CellPortionLCR
        Unsigned 32-bit integer
    nbap.HS_DSCHRequiredPowerValueInformation_For_CellPortionLCR_Item  HS-DSCHRequiredPowerValueInformation-For-CellPortionLCR-Item
        No value
    nbap.HS_DSCHRequiredPowerValueInformation_For_CellPortion_Item  HS-DSCHRequiredPowerValueInformation-For-CellPortion-Item
        No value
    nbap.HS_DSCHRequiredPower_Item  HS-DSCHRequiredPower-Item
        No value
    nbap.HS_DSCH_Resources_Information_AuditRsp  HS-DSCH-Resources-Information-AuditRsp
        No value
    nbap.HS_DSCH_Resources_Information_ResourceStatusInd  HS-DSCH-Resources-Information-ResourceStatusInd
        No value
    nbap.HS_DSCH_SPS_Operation_Indicator  HS-DSCH-SPS-Operation-Indicator
        Unsigned 32-bit integer
    nbap.HS_DSCH_Semi_PersistentScheduling_Information_LCR  HS-DSCH-Semi-PersistentScheduling-Information-LCR
        No value
    nbap.HS_DSCH_Semi_PersistentScheduling_Information_ResponseLCR  HS-DSCH-Semi-PersistentScheduling-Information-ResponseLCR
        No value
    nbap.HS_DSCH_Serving_Cell_Change_Info  HS-DSCH-Serving-Cell-Change-Info
        No value
    nbap.HS_DSCH_Serving_Cell_Change_Info_Response  HS-DSCH-Serving-Cell-Change-Info-Response
        No value
    nbap.HS_PDSCH_Code_Change_Grant  HS-PDSCH-Code-Change-Grant
        Unsigned 32-bit integer
    nbap.HS_PDSCH_Code_Change_Indicator  HS-PDSCH-Code-Change-Indicator
        Unsigned 32-bit integer
    nbap.HS_PDSCH_FDD_Code_Information  HS-PDSCH-FDD-Code-Information
        No value
    nbap.HS_PDSCH_TDD_Information_PSCH_ReconfRqst  HS-PDSCH-TDD-Information-PSCH-ReconfRqst
        No value
    nbap.HS_SCCH_FDD_Code_Information  HS-SCCH-FDD-Code-Information
        Unsigned 32-bit integer
    nbap.HS_SCCH_FDD_Code_Information_Item  HS-SCCH-FDD-Code-Information-Item
        Unsigned 32-bit integer
    nbap.HS_SCCH_InformationExt_LCR_PSCH_ReconfRqst  HS-SCCH-InformationExt-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.HS_SCCH_InformationItem_768_PSCH_ReconfRqst  HS-SCCH-InformationItem-768-PSCH-ReconfRqst
        No value
    nbap.HS_SCCH_InformationItem_LCR_PSCH_ReconfRqst  HS-SCCH-InformationItem-LCR-PSCH-ReconfRqst
        No value
    nbap.HS_SCCH_InformationItem_PSCH_ReconfRqst  HS-SCCH-InformationItem-PSCH-ReconfRqst
        No value
    nbap.HS_SCCH_InformationModifyExt_LCR_PSCH_ReconfRqst  HS-SCCH-InformationModifyExt-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.HS_SCCH_InformationModifyItem_768_PSCH_ReconfRqst  HS-SCCH-InformationModifyItem-768-PSCH-ReconfRqst
        No value
    nbap.HS_SCCH_InformationModifyItem_LCR_PSCH_ReconfRqst  HS-SCCH-InformationModifyItem-LCR-PSCH-ReconfRqst
        No value
    nbap.HS_SCCH_InformationModifyItem_PSCH_ReconfRqst  HS-SCCH-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.HS_SCCH_InformationModify_768_PSCH_ReconfRqst  HS-SCCH-InformationModify-768-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.HS_SCCH_Information_768_PSCH_ReconfRqst  HS-SCCH-Information-768-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.HS_SCCH_PreconfiguredCodesItem  HS-SCCH-PreconfiguredCodesItem
        No value
    nbap.HS_SICH_ID  HS-SICH-ID
        Unsigned 32-bit integer
    nbap.HS_SICH_InformationItem_for_HS_DSCH_SPS  HS-SICH-InformationItem-for-HS-DSCH-SPS
        No value
    nbap.HS_SICH_Reception_Quality_Measurement_Value  HS-SICH-Reception-Quality-Measurement-Value
        Unsigned 32-bit integer
    nbap.HS_SICH_Reception_Quality_Value  HS-SICH-Reception-Quality-Value
        No value
    nbap.HS_SICH_failed  HS-SICH-failed
        Unsigned 32-bit integer
    nbap.HS_SICH_missed  HS-SICH-missed
        Unsigned 32-bit integer
    nbap.HS_SICH_total  HS-SICH-total
        Unsigned 32-bit integer
    nbap.IMB_Parameters  IMB-Parameters
        No value
    nbap.IPDLParameter_Information_Cell_ReconfRqstFDD  IPDLParameter-Information-Cell-ReconfRqstFDD
        No value
    nbap.IPDLParameter_Information_Cell_ReconfRqstTDD  IPDLParameter-Information-Cell-ReconfRqstTDD
        No value
    nbap.IPDLParameter_Information_Cell_SetupRqstFDD  IPDLParameter-Information-Cell-SetupRqstFDD
        No value
    nbap.IPDLParameter_Information_Cell_SetupRqstTDD  IPDLParameter-Information-Cell-SetupRqstTDD
        No value
    nbap.IPDLParameter_Information_LCR_Cell_ReconfRqstTDD  IPDLParameter-Information-LCR-Cell-ReconfRqstTDD
        No value
    nbap.IPDLParameter_Information_LCR_Cell_SetupRqstTDD  IPDLParameter-Information-LCR-Cell-SetupRqstTDD
        No value
    nbap.IPMulticastDataBearerIndication  IPMulticastDataBearerIndication
        Boolean
    nbap.IPMulticastIndication  IPMulticastIndication
        No value
    nbap.IdleIntervalInformation  IdleIntervalInformation
        No value
    nbap.IndicationType_ResourceStatusInd  IndicationType-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.InformationExchangeFailureIndication  InformationExchangeFailureIndication
        No value
    nbap.InformationExchangeID  InformationExchangeID
        Unsigned 32-bit integer
    nbap.InformationExchangeInitiationFailure  InformationExchangeInitiationFailure
        No value
    nbap.InformationExchangeInitiationRequest  InformationExchangeInitiationRequest
        No value
    nbap.InformationExchangeInitiationResponse  InformationExchangeInitiationResponse
        No value
    nbap.InformationExchangeObjectType_InfEx_Rprt  InformationExchangeObjectType-InfEx-Rprt
        Unsigned 32-bit integer
    nbap.InformationExchangeObjectType_InfEx_Rqst  InformationExchangeObjectType-InfEx-Rqst
        Unsigned 32-bit integer
    nbap.InformationExchangeObjectType_InfEx_Rsp  InformationExchangeObjectType-InfEx-Rsp
        Unsigned 32-bit integer
    nbap.InformationExchangeTerminationRequest  InformationExchangeTerminationRequest
        No value
    nbap.InformationReport  InformationReport
        No value
    nbap.InformationReportCharacteristics  InformationReportCharacteristics
        Unsigned 32-bit integer
    nbap.InformationType  InformationType
        No value
    nbap.Initial_DL_DPCH_TimingAdjustment_Allowed  Initial-DL-DPCH-TimingAdjustment-Allowed
        Unsigned 32-bit integer
    nbap.InnerLoopDLPCStatus  InnerLoopDLPCStatus
        Unsigned 32-bit integer
    nbap.LCRTDD_HSDSCH_Physical_Layer_Category  LCRTDD-HSDSCH-Physical-Layer-Category
        Unsigned 32-bit integer
    nbap.LCRTDD_Uplink_Physical_Channel_Capability  LCRTDD-Uplink-Physical-Channel-Capability
        No value
    nbap.Limited_power_increase_information_Cell_SetupRqstFDD  Limited-power-increase-information-Cell-SetupRqstFDD
        No value
    nbap.Local_Cell_Group_InformationItem2_ResourceStatusInd  Local-Cell-Group-InformationItem2-ResourceStatusInd
        No value
    nbap.Local_Cell_Group_InformationItem_AuditRsp  Local-Cell-Group-InformationItem-AuditRsp
        No value
    nbap.Local_Cell_Group_InformationItem_ResourceStatusInd  Local-Cell-Group-InformationItem-ResourceStatusInd
        No value
    nbap.Local_Cell_Group_InformationList_AuditRsp  Local-Cell-Group-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.Local_Cell_ID  Local-Cell-ID
        Unsigned 32-bit integer
    nbap.Local_Cell_InformationItem2_ResourceStatusInd  Local-Cell-InformationItem2-ResourceStatusInd
        No value
    nbap.Local_Cell_InformationItem_AuditRsp  Local-Cell-InformationItem-AuditRsp
        No value
    nbap.Local_Cell_InformationItem_ResourceStatusInd  Local-Cell-InformationItem-ResourceStatusInd
        No value
    nbap.Local_Cell_InformationList_AuditRsp  Local-Cell-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.MAC_PDU_SizeExtended  MAC-PDU-SizeExtended
        Unsigned 32-bit integer
    nbap.MACdPDU_Size_IndexItem  MACdPDU-Size-IndexItem
        No value
    nbap.MACdPDU_Size_IndexItem_to_Modify  MACdPDU-Size-IndexItem-to-Modify
        No value
    nbap.MACes_Maximum_Bitrate_LCR  MACes-Maximum-Bitrate-LCR
        Unsigned 32-bit integer
    nbap.MAChs_ResetIndicator  MAChs-ResetIndicator
        Unsigned 32-bit integer
    nbap.MBMSNotificationUpdateCommand  MBMSNotificationUpdateCommand
        No value
    nbap.MBMS_Capability  MBMS-Capability
        Unsigned 32-bit integer
    nbap.MBSFN_Only_Mode_Capability  MBSFN-Only-Mode-Capability
        Unsigned 32-bit integer
    nbap.MBSFN_Only_Mode_Indicator  MBSFN-Only-Mode-Indicator
        Unsigned 32-bit integer
    nbap.MIB_SB_SIB_InformationItem_SystemInfoUpdateRqst  MIB-SB-SIB-InformationItem-SystemInfoUpdateRqst
        No value
    nbap.MIB_SB_SIB_InformationList_SystemInfoUpdateRqst  MIB-SB-SIB-InformationList-SystemInfoUpdateRqst
        Unsigned 32-bit integer
    nbap.MICH_768_Parameters_CTCH_ReconfRqstTDD  MICH-768-Parameters-CTCH-ReconfRqstTDD
        No value
    nbap.MICH_CFN  MICH-CFN
        Unsigned 32-bit integer
    nbap.MICH_Parameters_CTCH_ReconfRqstFDD  MICH-Parameters-CTCH-ReconfRqstFDD
        No value
    nbap.MICH_Parameters_CTCH_ReconfRqstTDD  MICH-Parameters-CTCH-ReconfRqstTDD
        No value
    nbap.MICH_Parameters_CTCH_SetupRqstFDD  MICH-Parameters-CTCH-SetupRqstFDD
        No value
    nbap.MICH_Parameters_CTCH_SetupRqstTDD  MICH-Parameters-CTCH-SetupRqstTDD
        No value
    nbap.MIMO_ActivationIndicator  MIMO-ActivationIndicator
        No value
    nbap.MIMO_Capability  MIMO-Capability
        Unsigned 32-bit integer
    nbap.MIMO_Mode_Indicator  MIMO-Mode-Indicator
        Unsigned 32-bit integer
    nbap.MIMO_N_M_Ratio  MIMO-N-M-Ratio
        Unsigned 32-bit integer
    nbap.MIMO_PilotConfiguration  MIMO-PilotConfiguration
        Unsigned 32-bit integer
    nbap.MIMO_PilotConfigurationExtension  MIMO-PilotConfigurationExtension
        Unsigned 32-bit integer
    nbap.MIMO_PowerOffsetForS_CPICHCapability  MIMO-PowerOffsetForS-CPICHCapability
        Unsigned 32-bit integer
    nbap.MIMO_ReferenceSignal_InformationListLCR  MIMO-ReferenceSignal-InformationListLCR
        Unsigned 32-bit integer
    nbap.MIMO_SFMode_For_HSPDSCHDualStream  MIMO-SFMode-For-HSPDSCHDualStream
        Unsigned 32-bit integer
    nbap.MaxAdjustmentStep  MaxAdjustmentStep
        Unsigned 32-bit integer
    nbap.MaxHSDSCH_HSSCCH_Power_per_CELLPORTION  MaxHSDSCH-HSSCCH-Power-per-CELLPORTION
        Unsigned 32-bit integer
    nbap.MaxHSDSCH_HSSCCH_Power_per_CELLPORTION_Item  MaxHSDSCH-HSSCCH-Power-per-CELLPORTION-Item
        No value
    nbap.Max_RTWP_perUARFCN_Information_LCR_PSCH_ReconfRqst  Max-RTWP-perUARFCN-Information-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.Max_RTWP_perUARFCN_Information_LCR_PSCH_ReconfRqst_Item  Max-RTWP-perUARFCN-Information-LCR-PSCH-ReconfRqst-Item
        No value
    nbap.Max_UE_DTX_Cycle  Max-UE-DTX-Cycle
        Unsigned 32-bit integer
    nbap.MaximumTransmissionPower  MaximumTransmissionPower
        Unsigned 32-bit integer
    nbap.Maximum_Generated_ReceivedTotalWideBandPowerInOtherCells  Maximum-Generated-ReceivedTotalWideBandPowerInOtherCells
        Unsigned 32-bit integer
    nbap.Maximum_Number_of_Retransmissions_For_E_DCH  Maximum-Number-of-Retransmissions-For-E-DCH
        Unsigned 32-bit integer
    nbap.Maximum_Target_ReceivedTotalWideBandPower  Maximum-Target-ReceivedTotalWideBandPower
        Unsigned 32-bit integer
    nbap.Maximum_Target_ReceivedTotalWideBandPower_LCR  Maximum-Target-ReceivedTotalWideBandPower-LCR
        Unsigned 32-bit integer
    nbap.MeasurementFilterCoefficient  MeasurementFilterCoefficient
        Unsigned 32-bit integer
    nbap.MeasurementID  MeasurementID
        Unsigned 32-bit integer
    nbap.MeasurementRecoveryBehavior  MeasurementRecoveryBehavior
        No value
    nbap.MeasurementRecoveryReportingIndicator  MeasurementRecoveryReportingIndicator
        No value
    nbap.MeasurementRecoverySupportIndicator  MeasurementRecoverySupportIndicator
        No value
    nbap.MessageStructure  MessageStructure
        Unsigned 32-bit integer
    nbap.MessageStructure_item  MessageStructure item
        No value
    nbap.MidambleShiftLCR  MidambleShiftLCR
        No value
    nbap.MinimumReducedE_DPDCH_GainFactor  MinimumReducedE-DPDCH-GainFactor
        Unsigned 32-bit integer
    nbap.Modification_Period  Modification-Period
        Unsigned 32-bit integer
    nbap.ModifyPriorityQueue  ModifyPriorityQueue
        Unsigned 32-bit integer
    nbap.Modify_E_AGCH_Resource_Pool_768_PSCH_ReconfRqst  Modify-E-AGCH-Resource-Pool-768-PSCH-ReconfRqst
        No value
    nbap.Modify_E_AGCH_Resource_Pool_LCR_PSCH_ReconfRqst  Modify-E-AGCH-Resource-Pool-LCR-PSCH-ReconfRqst
        No value
    nbap.Modify_E_AGCH_Resource_Pool_PSCH_ReconfRqst  Modify-E-AGCH-Resource-Pool-PSCH-ReconfRqst
        No value
    nbap.Modify_E_HICH_Resource_Pool_LCR_PSCH_ReconfRqst  Modify-E-HICH-Resource-Pool-LCR-PSCH-ReconfRqst
        No value
    nbap.Modify_HS_SCCH_Resource_Pool_PSCH_ReconfRqst  Modify-HS-SCCH-Resource-Pool-PSCH-ReconfRqst
        No value
    nbap.Modify_Non_HS_SCCH_Associated_HS_SICH_InformationItem  Modify-Non-HS-SCCH-Associated-HS-SICH-InformationItem
        No value
    nbap.Modify_Non_HS_SCCH_Associated_HS_SICH_InformationList_Ext  Modify-Non-HS-SCCH-Associated-HS-SICH-InformationList-Ext
        Unsigned 32-bit integer
    nbap.Modify_Non_HS_SCCH_Associated_HS_SICH_Resource_Pool_LCR_PSCH_ReconfRqst  Modify-Non-HS-SCCH-Associated-HS-SICH-Resource-Pool-LCR-PSCH-ReconfRqst
        No value
    nbap.ModulationMBSFN  ModulationMBSFN
        Unsigned 32-bit integer
    nbap.ModulationPO_MBSFN  ModulationPO-MBSFN
        Unsigned 32-bit integer
    nbap.Multi_Cell_Capability_Info  Multi-Cell-Capability-Info
        No value
    nbap.Multicarrier_Number  Multicarrier-Number
        Unsigned 32-bit integer
    nbap.Multicell_EDCH_InformationItemIEs  Multicell-EDCH-InformationItemIEs
        No value
    nbap.Multicell_EDCH_RL_Specific_InformationItemIEs  Multicell-EDCH-RL-Specific-InformationItemIEs
        No value
    nbap.MultipleFreq_DL_HS_PDSCH_Timeslot_Information_LCRItem_PSCH_ReconfRqst  MultipleFreq-DL-HS-PDSCH-Timeslot-Information-LCRItem-PSCH-ReconfRqst
        No value
    nbap.MultipleFreq_DL_HS_PDSCH_Timeslot_Information_LCR_PSCH_ReconfRqst  MultipleFreq-DL-HS-PDSCH-Timeslot-Information-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.MultipleFreq_E_DCH_Resources_InformationList_AuditRsp  MultipleFreq-E-DCH-Resources-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.MultipleFreq_E_DCH_Resources_InformationList_ResourceStatusInd  MultipleFreq-E-DCH-Resources-InformationList-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.MultipleFreq_E_HICH_TimeOffsetLCR  MultipleFreq-E-HICH-TimeOffsetLCR
        No value
    nbap.MultipleFreq_E_PUCH_Timeslot_InformationList_LCR_PSCH_ReconfRqst  MultipleFreq-E-PUCH-Timeslot-InformationList-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.MultipleFreq_E_PUCH_Timeslot_Information_LCRItem_PSCH_ReconfRqst  MultipleFreq-E-PUCH-Timeslot-Information-LCRItem-PSCH-ReconfRqst
        No value
    nbap.MultipleFreq_HARQ_MemoryPartitioning_InformationItem  MultipleFreq-HARQ-MemoryPartitioning-InformationItem
        No value
    nbap.MultipleFreq_HARQ_MemoryPartitioning_InformationList  MultipleFreq-HARQ-MemoryPartitioning-InformationList
        Unsigned 32-bit integer
    nbap.MultipleFreq_HSPDSCH_InformationItem_ResponseTDDLCR  MultipleFreq-HSPDSCH-InformationItem-ResponseTDDLCR
        No value
    nbap.MultipleFreq_HSPDSCH_InformationList_ResponseTDDLCR  MultipleFreq-HSPDSCH-InformationList-ResponseTDDLCR
        Unsigned 32-bit integer
    nbap.MultipleFreq_HS_DSCH_Resources_InformationList_AuditRsp  MultipleFreq-HS-DSCH-Resources-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.MultipleFreq_HS_DSCH_Resources_InformationList_ResourceStatusInd  MultipleFreq-HS-DSCH-Resources-InformationList-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.MultipleRL_DL_CCTrCH_InformationModifyListIE_RL_ReconfRqstTDD  MultipleRL-DL-CCTrCH-InformationModifyListIE-RL-ReconfRqstTDD
        No value
    nbap.MultipleRL_DL_CCTrCH_InformationModifyList_RL_ReconfRqstTDD  MultipleRL-DL-CCTrCH-InformationModifyList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.MultipleRL_DL_DPCH_InformationAddListIE_RL_ReconfPrepTDD  MultipleRL-DL-DPCH-InformationAddListIE-RL-ReconfPrepTDD
        No value
    nbap.MultipleRL_DL_DPCH_InformationAddList_RL_ReconfPrepTDD  MultipleRL-DL-DPCH-InformationAddList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.MultipleRL_DL_DPCH_InformationModifyListIE_RL_ReconfPrepTDD  MultipleRL-DL-DPCH-InformationModifyListIE-RL-ReconfPrepTDD
        No value
    nbap.MultipleRL_DL_DPCH_InformationModifyList_RL_ReconfPrepTDD  MultipleRL-DL-DPCH-InformationModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.MultipleRL_Information_RL_ReconfPrepTDD  MultipleRL-Information-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.MultipleRL_UL_DPCH_InformationAddListIE_RL_ReconfPrepTDD  MultipleRL-UL-DPCH-InformationAddListIE-RL-ReconfPrepTDD
        No value
    nbap.MultipleRL_UL_DPCH_InformationAddList_RL_ReconfPrepTDD  MultipleRL-UL-DPCH-InformationAddList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.MultipleRL_UL_DPCH_InformationModifyListIE_RL_ReconfPrepTDD  MultipleRL-UL-DPCH-InformationModifyListIE-RL-ReconfPrepTDD
        No value
    nbap.MultipleRL_UL_DPCH_InformationModifyList_RL_ReconfPrepTDD  MultipleRL-UL-DPCH-InformationModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.Multiple_DedicatedMeasurementValueItem_768_TDD_DM_Rsp  Multiple-DedicatedMeasurementValueItem-768-TDD-DM-Rsp
        No value
    nbap.Multiple_DedicatedMeasurementValueItem_LCR_TDD_DM_Rsp  Multiple-DedicatedMeasurementValueItem-LCR-TDD-DM-Rsp
        No value
    nbap.Multiple_DedicatedMeasurementValueItem_TDD_DM_Rsp  Multiple-DedicatedMeasurementValueItem-TDD-DM-Rsp
        No value
    nbap.Multiple_DedicatedMeasurementValueList_768_TDD_DM_Rsp  Multiple-DedicatedMeasurementValueList-768-TDD-DM-Rsp
        Unsigned 32-bit integer
    nbap.Multiple_DedicatedMeasurementValueList_LCR_TDD_DM_Rsp  Multiple-DedicatedMeasurementValueList-LCR-TDD-DM-Rsp
        Unsigned 32-bit integer
    nbap.Multiple_DedicatedMeasurementValueList_TDD_DM_Rsp  Multiple-DedicatedMeasurementValueList-TDD-DM-Rsp
        Unsigned 32-bit integer
    nbap.Multiple_HSSICHMeasurementValueItem_TDD_DM_Rsp  Multiple-HSSICHMeasurementValueItem-TDD-DM-Rsp
        No value
    nbap.Multiple_HSSICHMeasurementValueList_TDD_DM_Rsp  Multiple-HSSICHMeasurementValueList-TDD-DM-Rsp
        Unsigned 32-bit integer
    nbap.Multiple_PUSCH_InfoListIE_DM_Rprt  Multiple-PUSCH-InfoListIE-DM-Rprt
        No value
    nbap.Multiple_PUSCH_InfoListIE_DM_Rsp  Multiple-PUSCH-InfoListIE-DM-Rsp
        No value
    nbap.Multiple_PUSCH_InfoList_DM_Rprt  Multiple-PUSCH-InfoList-DM-Rprt
        Unsigned 32-bit integer
    nbap.Multiple_PUSCH_InfoList_DM_Rsp  Multiple-PUSCH-InfoList-DM-Rsp
        Unsigned 32-bit integer
    nbap.Multiple_RL_Information_RL_ReconfRqstTDD  Multiple-RL-Information-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.NBAP_PDU  NBAP-PDU
        Unsigned 32-bit integer
    nbap.NCyclesPerSFNperiod  NCyclesPerSFNperiod
        Unsigned 32-bit integer
    nbap.NI_Information  NI-Information
        Unsigned 32-bit integer
    nbap.NRepetitionsPerCyclePeriod  NRepetitionsPerCyclePeriod
        Unsigned 32-bit integer
    nbap.NSubCyclesPerCyclePeriod  NSubCyclesPerCyclePeriod
        Unsigned 32-bit integer
    nbap.NULL  NULL
        No value
    nbap.NeighbouringCellMeasurementInformation  NeighbouringCellMeasurementInformation
        Unsigned 32-bit integer
    nbap.NeighbouringCellMeasurementInformation_item  NeighbouringCellMeasurementInformation item
        Unsigned 32-bit integer
    nbap.NeighbouringTDDCellMeasurementInformation768  NeighbouringTDDCellMeasurementInformation768
        No value
    nbap.NeighbouringTDDCellMeasurementInformationLCR  NeighbouringTDDCellMeasurementInformationLCR
        No value
    nbap.NoOfTargetCellHS_SCCH_Order  NoOfTargetCellHS-SCCH-Order
        Unsigned 32-bit integer
    nbap.NodeB_CommunicationContextID  NodeB-CommunicationContextID
        Unsigned 32-bit integer
    nbap.NonCellSpecificTxDiversity  NonCellSpecificTxDiversity
        Unsigned 32-bit integer
    nbap.Non_HS_SCCH_Associated_HS_SICH_InformationItem  Non-HS-SCCH-Associated-HS-SICH-InformationItem
        No value
    nbap.Non_HS_SCCH_Associated_HS_SICH_InformationList_Ext  Non-HS-SCCH-Associated-HS-SICH-InformationList-Ext
        Unsigned 32-bit integer
    nbap.Notification_Indicator  Notification-Indicator
        Unsigned 32-bit integer
    nbap.NumberOfReportedCellPortions  NumberOfReportedCellPortions
        Unsigned 32-bit integer
    nbap.NumberOfReportedCellPortionsLCR  NumberOfReportedCellPortionsLCR
        Unsigned 32-bit integer
    nbap.Number_Of_Supported_Carriers  Number-Of-Supported-Carriers
        Unsigned 32-bit integer
    nbap.Out_of_Sychronization_Window  Out-of-Sychronization-Window
        Unsigned 32-bit integer
    nbap.PCCPCH_768_Information_Cell_ReconfRqstTDD  PCCPCH-768-Information-Cell-ReconfRqstTDD
        No value
    nbap.PCCPCH_768_Information_Cell_SetupRqstTDD  PCCPCH-768-Information-Cell-SetupRqstTDD
        No value
    nbap.PCCPCH_Information_Cell_ReconfRqstTDD  PCCPCH-Information-Cell-ReconfRqstTDD
        No value
    nbap.PCCPCH_Information_Cell_SetupRqstTDD  PCCPCH-Information-Cell-SetupRqstTDD
        No value
    nbap.PCCPCH_LCR_Information_Cell_SetupRqstTDD  PCCPCH-LCR-Information-Cell-SetupRqstTDD
        No value
    nbap.PCH_ParametersItem_CTCH_ReconfRqstFDD  PCH-ParametersItem-CTCH-ReconfRqstFDD
        No value
    nbap.PCH_ParametersItem_CTCH_SetupRqstFDD  PCH-ParametersItem-CTCH-SetupRqstFDD
        No value
    nbap.PCH_ParametersItem_CTCH_SetupRqstTDD  PCH-ParametersItem-CTCH-SetupRqstTDD
        No value
    nbap.PCH_Parameters_CTCH_ReconfRqstTDD  PCH-Parameters-CTCH-ReconfRqstTDD
        No value
    nbap.PDSCHSets_AddItem_PSCH_ReconfRqst  PDSCHSets-AddItem-PSCH-ReconfRqst
        No value
    nbap.PDSCHSets_AddList_PSCH_ReconfRqst  PDSCHSets-AddList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.PDSCHSets_DeleteItem_PSCH_ReconfRqst  PDSCHSets-DeleteItem-PSCH-ReconfRqst
        No value
    nbap.PDSCHSets_DeleteList_PSCH_ReconfRqst  PDSCHSets-DeleteList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.PDSCHSets_ModifyItem_PSCH_ReconfRqst  PDSCHSets-ModifyItem-PSCH-ReconfRqst
        No value
    nbap.PDSCHSets_ModifyList_PSCH_ReconfRqst  PDSCHSets-ModifyList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.PDSCH_AddInformation_768_AddItem_PSCH_ReconfRqst  PDSCH-AddInformation-768-AddItem-PSCH-ReconfRqst
        No value
    nbap.PDSCH_AddInformation_LCR_AddItem_PSCH_ReconfRqst  PDSCH-AddInformation-LCR-AddItem-PSCH-ReconfRqst
        No value
    nbap.PDSCH_Information_AddItem_PSCH_ReconfRqst  PDSCH-Information-AddItem-PSCH-ReconfRqst
        No value
    nbap.PDSCH_Information_ModifyItem_PSCH_ReconfRqst  PDSCH-Information-ModifyItem-PSCH-ReconfRqst
        No value
    nbap.PDSCH_ModifyInformation_768_ModifyItem_PSCH_ReconfRqst  PDSCH-ModifyInformation-768-ModifyItem-PSCH-ReconfRqst
        No value
    nbap.PDSCH_ModifyInformation_LCR_ModifyItem_PSCH_ReconfRqst  PDSCH-ModifyInformation-LCR-ModifyItem-PSCH-ReconfRqst
        No value
    nbap.PICH_768_ParametersItem_CTCH_SetupRqstTDD  PICH-768-ParametersItem-CTCH-SetupRqstTDD
        No value
    nbap.PICH_768_Parameters_CTCH_ReconfRqstTDD  PICH-768-Parameters-CTCH-ReconfRqstTDD
        No value
    nbap.PICH_LCR_Parameters_CTCH_SetupRqstTDD  PICH-LCR-Parameters-CTCH-SetupRqstTDD
        No value
    nbap.PICH_ParametersItem_CTCH_ReconfRqstFDD  PICH-ParametersItem-CTCH-ReconfRqstFDD
        No value
    nbap.PICH_ParametersItem_CTCH_SetupRqstTDD  PICH-ParametersItem-CTCH-SetupRqstTDD
        No value
    nbap.PICH_Parameters_CTCH_ReconfRqstTDD  PICH-Parameters-CTCH-ReconfRqstTDD
        No value
    nbap.PLCCH_InformationList_AuditRsp  PLCCH-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.PLCCH_InformationList_ResourceStatusInd  PLCCH-InformationList-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.PLCCH_Parameters_CTCH_ReconfRqstTDD  PLCCH-Parameters-CTCH-ReconfRqstTDD
        No value
    nbap.PLCCH_parameters  PLCCH-parameters
        No value
    nbap.PLCCHinformation  PLCCHinformation
        No value
    nbap.PRACH_768_InformationList_AuditRsp  PRACH-768-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.PRACH_768_InformationList_ResourceStatusInd  PRACH-768-InformationList-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.PRACH_768_ParametersItem_CTCH_SetupRqstTDD  PRACH-768-ParametersItem-CTCH-SetupRqstTDD
        No value
    nbap.PRACH_LCR_ParametersItem_CTCH_SetupRqstTDD  PRACH-LCR-ParametersItem-CTCH-SetupRqstTDD
        No value
    nbap.PRACH_LCR_ParametersList_CTCH_SetupRqstTDD  PRACH-LCR-ParametersList-CTCH-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.PRACH_ParametersItem_CTCH_ReconfRqstFDD  PRACH-ParametersItem-CTCH-ReconfRqstFDD
        No value
    nbap.PRACH_ParametersItem_CTCH_SetupRqstTDD  PRACH-ParametersItem-CTCH-SetupRqstTDD
        No value
    nbap.PRACH_ParametersListIE_CTCH_ReconfRqstFDD  PRACH-ParametersListIE-CTCH-ReconfRqstFDD
        Unsigned 32-bit integer
    nbap.PRXdes_base_Item  PRXdes-base-Item
        No value
    nbap.PUSCHSets_AddItem_PSCH_ReconfRqst  PUSCHSets-AddItem-PSCH-ReconfRqst
        No value
    nbap.PUSCHSets_AddList_PSCH_ReconfRqst  PUSCHSets-AddList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.PUSCHSets_DeleteItem_PSCH_ReconfRqst  PUSCHSets-DeleteItem-PSCH-ReconfRqst
        No value
    nbap.PUSCHSets_DeleteList_PSCH_ReconfRqst  PUSCHSets-DeleteList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.PUSCHSets_ModifyItem_PSCH_ReconfRqst  PUSCHSets-ModifyItem-PSCH-ReconfRqst
        No value
    nbap.PUSCHSets_ModifyList_PSCH_ReconfRqst  PUSCHSets-ModifyList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.PUSCH_AddInformation_768_AddItem_PSCH_ReconfRqst  PUSCH-AddInformation-768-AddItem-PSCH-ReconfRqst
        No value
    nbap.PUSCH_AddInformation_LCR_AddItem_PSCH_ReconfRqst  PUSCH-AddInformation-LCR-AddItem-PSCH-ReconfRqst
        No value
    nbap.PUSCH_ID  PUSCH-ID
        Unsigned 32-bit integer
    nbap.PUSCH_Info_DM_Rprt  PUSCH-Info-DM-Rprt
        Unsigned 32-bit integer
    nbap.PUSCH_Info_DM_Rqst  PUSCH-Info-DM-Rqst
        Unsigned 32-bit integer
    nbap.PUSCH_Info_DM_Rsp  PUSCH-Info-DM-Rsp
        Unsigned 32-bit integer
    nbap.PUSCH_Information_AddItem_PSCH_ReconfRqst  PUSCH-Information-AddItem-PSCH-ReconfRqst
        No value
    nbap.PUSCH_Information_ModifyItem_PSCH_ReconfRqst  PUSCH-Information-ModifyItem-PSCH-ReconfRqst
        No value
    nbap.PUSCH_ModifyInformation_768_ModifyItem_PSCH_ReconfRqst  PUSCH-ModifyInformation-768-ModifyItem-PSCH-ReconfRqst
        No value
    nbap.PUSCH_ModifyInformation_LCR_ModifyItem_PSCH_ReconfRqst  PUSCH-ModifyInformation-LCR-ModifyItem-PSCH-ReconfRqst
        No value
    nbap.Paging_MACFlow_PriorityQueue_Item  Paging-MACFlow-PriorityQueue-Item
        No value
    nbap.Paging_MACFlows_to_DeleteFDD  Paging-MACFlows-to-DeleteFDD
        Unsigned 32-bit integer
    nbap.Paging_MACFlows_to_DeleteFDD_Item  Paging-MACFlows-to-DeleteFDD-Item
        No value
    nbap.Paging_MACFlows_to_DeleteLCR  Paging-MACFlows-to-DeleteLCR
        Unsigned 32-bit integer
    nbap.Paging_MACFlows_to_DeleteLCR_Item  Paging-MACFlows-to-DeleteLCR-Item
        No value
    nbap.Paging_MAC_Flow_Specific_Information_Item  Paging-MAC-Flow-Specific-Information-Item
        No value
    nbap.Paging_MAC_Flow_Specific_Information_ItemLCR  Paging-MAC-Flow-Specific-Information-ItemLCR
        No value
    nbap.PhysicalChannelID_for_CommonERNTI_RequestedIndicator  PhysicalChannelID-for-CommonERNTI-RequestedIndicator
        Unsigned 32-bit integer
    nbap.PhysicalSharedChannelReconfigurationFailure  PhysicalSharedChannelReconfigurationFailure
        No value
    nbap.PhysicalSharedChannelReconfigurationRequestFDD  PhysicalSharedChannelReconfigurationRequestFDD
        No value
    nbap.PhysicalSharedChannelReconfigurationRequestTDD  PhysicalSharedChannelReconfigurationRequestTDD
        No value
    nbap.PhysicalSharedChannelReconfigurationResponse  PhysicalSharedChannelReconfigurationResponse
        No value
    nbap.Possible_Secondary_Serving_Cell  Possible-Secondary-Serving-Cell
        No value
    nbap.PowerAdjustmentType  PowerAdjustmentType
        Unsigned 32-bit integer
    nbap.PowerLocalCellGroup_CM_Rprt  PowerLocalCellGroup-CM-Rprt
        No value
    nbap.PowerLocalCellGroup_CM_Rqst  PowerLocalCellGroup-CM-Rqst
        No value
    nbap.PowerLocalCellGroup_CM_Rsp  PowerLocalCellGroup-CM-Rsp
        No value
    nbap.Power_Local_Cell_Group_InformationItem2_ResourceStatusInd  Power-Local-Cell-Group-InformationItem2-ResourceStatusInd
        No value
    nbap.Power_Local_Cell_Group_InformationItem_AuditRsp  Power-Local-Cell-Group-InformationItem-AuditRsp
        No value
    nbap.Power_Local_Cell_Group_InformationItem_ResourceStatusInd  Power-Local-Cell-Group-InformationItem-ResourceStatusInd
        No value
    nbap.Power_Local_Cell_Group_InformationList2_ResourceStatusInd  Power-Local-Cell-Group-InformationList2-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.Power_Local_Cell_Group_InformationList_AuditRsp  Power-Local-Cell-Group-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.Power_Local_Cell_Group_InformationList_ResourceStatusInd  Power-Local-Cell-Group-InformationList-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.PrecodingWeightSetRestriction  PrecodingWeightSetRestriction
        Unsigned 32-bit integer
    nbap.PrimaryCCPCH_Information_Cell_ReconfRqstFDD  PrimaryCCPCH-Information-Cell-ReconfRqstFDD
        No value
    nbap.PrimaryCCPCH_Information_Cell_SetupRqstFDD  PrimaryCCPCH-Information-Cell-SetupRqstFDD
        No value
    nbap.PrimaryCCPCH_RSCP  PrimaryCCPCH-RSCP
        Unsigned 32-bit integer
    nbap.PrimaryCCPCH_RSCP_Delta  PrimaryCCPCH-RSCP-Delta
        Signed 32-bit integer
    nbap.PrimaryCPICH_Information_Cell_ReconfRqstFDD  PrimaryCPICH-Information-Cell-ReconfRqstFDD
        No value
    nbap.PrimaryCPICH_Information_Cell_SetupRqstFDD  PrimaryCPICH-Information-Cell-SetupRqstFDD
        No value
    nbap.PrimarySCH_Information_Cell_ReconfRqstFDD  PrimarySCH-Information-Cell-ReconfRqstFDD
        No value
    nbap.PrimarySCH_Information_Cell_SetupRqstFDD  PrimarySCH-Information-Cell-SetupRqstFDD
        No value
    nbap.PrimaryScramblingCode  PrimaryScramblingCode
        Unsigned 32-bit integer
    nbap.Primary_CPICH_Usage_for_Channel_Estimation  Primary-CPICH-Usage-for-Channel-Estimation
        Unsigned 32-bit integer
    nbap.PriorityQueue_InfoItem  PriorityQueue-InfoItem
        No value
    nbap.PriorityQueue_InfoItem_to_Modify_Unsynchronised  PriorityQueue-InfoItem-to-Modify-Unsynchronised
        No value
    nbap.PrivateIE_Field  PrivateIE-Field
        No value
    nbap.PrivateMessage  PrivateMessage
        No value
    nbap.ProtocolExtensionField  ProtocolExtensionField
        No value
    nbap.ProtocolIE_Field  ProtocolIE-Field
        No value
    nbap.ProtocolIE_Single_Container  ProtocolIE-Single-Container
        No value
    nbap.RACH_ParameterItem_CTCH_SetupRqstTDD  RACH-ParameterItem-CTCH-SetupRqstTDD
        No value
    nbap.RACH_ParametersItem_CTCH_SetupRqstFDD  RACH-ParametersItem-CTCH-SetupRqstFDD
        No value
    nbap.RL_ID  RL-ID
        Unsigned 32-bit integer
    nbap.RL_InformationItem_DM_Rprt  RL-InformationItem-DM-Rprt
        No value
    nbap.RL_InformationItem_DM_Rqst  RL-InformationItem-DM-Rqst
        No value
    nbap.RL_InformationItem_DM_Rsp  RL-InformationItem-DM-Rsp
        No value
    nbap.RL_InformationItem_RL_AdditionRqstFDD  RL-InformationItem-RL-AdditionRqstFDD
        No value
    nbap.RL_InformationItem_RL_FailureInd  RL-InformationItem-RL-FailureInd
        No value
    nbap.RL_InformationItem_RL_PreemptRequiredInd  RL-InformationItem-RL-PreemptRequiredInd
        No value
    nbap.RL_InformationItem_RL_ReconfPrepFDD  RL-InformationItem-RL-ReconfPrepFDD
        No value
    nbap.RL_InformationItem_RL_ReconfRqstFDD  RL-InformationItem-RL-ReconfRqstFDD
        No value
    nbap.RL_InformationItem_RL_RestoreInd  RL-InformationItem-RL-RestoreInd
        No value
    nbap.RL_InformationItem_RL_SetupRqstFDD  RL-InformationItem-RL-SetupRqstFDD
        No value
    nbap.RL_InformationList_RL_AdditionRqstFDD  RL-InformationList-RL-AdditionRqstFDD
        Unsigned 32-bit integer
    nbap.RL_InformationList_RL_PreemptRequiredInd  RL-InformationList-RL-PreemptRequiredInd
        Unsigned 32-bit integer
    nbap.RL_InformationList_RL_ReconfPrepFDD  RL-InformationList-RL-ReconfPrepFDD
        Unsigned 32-bit integer
    nbap.RL_InformationList_RL_ReconfRqstFDD  RL-InformationList-RL-ReconfRqstFDD
        Unsigned 32-bit integer
    nbap.RL_InformationList_RL_SetupRqstFDD  RL-InformationList-RL-SetupRqstFDD
        Unsigned 32-bit integer
    nbap.RL_InformationResponseItem_RL_AdditionRspFDD  RL-InformationResponseItem-RL-AdditionRspFDD
        No value
    nbap.RL_InformationResponseItem_RL_ReconfReady  RL-InformationResponseItem-RL-ReconfReady
        No value
    nbap.RL_InformationResponseItem_RL_ReconfRsp  RL-InformationResponseItem-RL-ReconfRsp
        No value
    nbap.RL_InformationResponseItem_RL_SetupRspFDD  RL-InformationResponseItem-RL-SetupRspFDD
        No value
    nbap.RL_InformationResponseList_RL_AdditionRspFDD  RL-InformationResponseList-RL-AdditionRspFDD
        Unsigned 32-bit integer
    nbap.RL_InformationResponseList_RL_ReconfReady  RL-InformationResponseList-RL-ReconfReady
        Unsigned 32-bit integer
    nbap.RL_InformationResponseList_RL_ReconfRsp  RL-InformationResponseList-RL-ReconfRsp
        Unsigned 32-bit integer
    nbap.RL_InformationResponseList_RL_SetupRspFDD  RL-InformationResponseList-RL-SetupRspFDD
        Unsigned 32-bit integer
    nbap.RL_InformationResponse_LCR_RL_AdditionRspTDD  RL-InformationResponse-LCR-RL-AdditionRspTDD
        No value
    nbap.RL_InformationResponse_LCR_RL_SetupRspTDD  RL-InformationResponse-LCR-RL-SetupRspTDD
        No value
    nbap.RL_InformationResponse_RL_AdditionRspTDD  RL-InformationResponse-RL-AdditionRspTDD
        No value
    nbap.RL_InformationResponse_RL_SetupRspTDD  RL-InformationResponse-RL-SetupRspTDD
        No value
    nbap.RL_Information_RL_AdditionRqstTDD  RL-Information-RL-AdditionRqstTDD
        No value
    nbap.RL_Information_RL_ReconfPrepTDD  RL-Information-RL-ReconfPrepTDD
        No value
    nbap.RL_Information_RL_ReconfRqstTDD  RL-Information-RL-ReconfRqstTDD
        No value
    nbap.RL_Information_RL_SetupRqstTDD  RL-Information-RL-SetupRqstTDD
        No value
    nbap.RL_ReconfigurationFailureItem_RL_ReconfFailure  RL-ReconfigurationFailureItem-RL-ReconfFailure
        No value
    nbap.RL_Set_ID  RL-Set-ID
        Unsigned 32-bit integer
    nbap.RL_Set_InformationItem_DM_Rprt  RL-Set-InformationItem-DM-Rprt
        No value
    nbap.RL_Set_InformationItem_DM_Rqst  RL-Set-InformationItem-DM-Rqst
        No value
    nbap.RL_Set_InformationItem_DM_Rsp  RL-Set-InformationItem-DM-Rsp
        No value
    nbap.RL_Set_InformationItem_RL_FailureInd  RL-Set-InformationItem-RL-FailureInd
        No value
    nbap.RL_Set_InformationItem_RL_RestoreInd  RL-Set-InformationItem-RL-RestoreInd
        No value
    nbap.RL_Specific_DCH_Info  RL-Specific-DCH-Info
        Unsigned 32-bit integer
    nbap.RL_Specific_DCH_Info_Item  RL-Specific-DCH-Info-Item
        No value
    nbap.RL_Specific_E_DCH_Info  RL-Specific-E-DCH-Info
        No value
    nbap.RL_Specific_E_DCH_Information_Item  RL-Specific-E-DCH-Information-Item
        No value
    nbap.RL_informationItem_RL_DeletionRqst  RL-informationItem-RL-DeletionRqst
        No value
    nbap.RL_informationList_RL_DeletionRqst  RL-informationList-RL-DeletionRqst
        Unsigned 32-bit integer
    nbap.RSEPS_Value_IncrDecrThres  RSEPS-Value-IncrDecrThres
        Unsigned 32-bit integer
    nbap.RTWP_CellPortion_ReportingIndicator  RTWP-CellPortion-ReportingIndicator
        Unsigned 32-bit integer
    nbap.RTWP_ReportingIndicator  RTWP-ReportingIndicator
        Unsigned 32-bit integer
    nbap.RadioLinkActivationCommandFDD  RadioLinkActivationCommandFDD
        No value
    nbap.RadioLinkActivationCommandTDD  RadioLinkActivationCommandTDD
        No value
    nbap.RadioLinkAdditionFailureFDD  RadioLinkAdditionFailureFDD
        No value
    nbap.RadioLinkAdditionFailureTDD  RadioLinkAdditionFailureTDD
        No value
    nbap.RadioLinkAdditionRequestFDD  RadioLinkAdditionRequestFDD
        No value
    nbap.RadioLinkAdditionRequestTDD  RadioLinkAdditionRequestTDD
        No value
    nbap.RadioLinkAdditionResponseFDD  RadioLinkAdditionResponseFDD
        No value
    nbap.RadioLinkAdditionResponseTDD  RadioLinkAdditionResponseTDD
        No value
    nbap.RadioLinkDeletionRequest  RadioLinkDeletionRequest
        No value
    nbap.RadioLinkDeletionResponse  RadioLinkDeletionResponse
        No value
    nbap.RadioLinkFailureIndication  RadioLinkFailureIndication
        No value
    nbap.RadioLinkParameterUpdateIndicationFDD  RadioLinkParameterUpdateIndicationFDD
        No value
    nbap.RadioLinkParameterUpdateIndicationTDD  RadioLinkParameterUpdateIndicationTDD
        No value
    nbap.RadioLinkPreemptionRequiredIndication  RadioLinkPreemptionRequiredIndication
        No value
    nbap.RadioLinkReconfigurationCancel  RadioLinkReconfigurationCancel
        No value
    nbap.RadioLinkReconfigurationCommit  RadioLinkReconfigurationCommit
        No value
    nbap.RadioLinkReconfigurationFailure  RadioLinkReconfigurationFailure
        No value
    nbap.RadioLinkReconfigurationPrepareFDD  RadioLinkReconfigurationPrepareFDD
        No value
    nbap.RadioLinkReconfigurationPrepareTDD  RadioLinkReconfigurationPrepareTDD
        No value
    nbap.RadioLinkReconfigurationReady  RadioLinkReconfigurationReady
        No value
    nbap.RadioLinkReconfigurationRequestFDD  RadioLinkReconfigurationRequestFDD
        No value
    nbap.RadioLinkReconfigurationRequestTDD  RadioLinkReconfigurationRequestTDD
        No value
    nbap.RadioLinkReconfigurationResponse  RadioLinkReconfigurationResponse
        No value
    nbap.RadioLinkRestoreIndication  RadioLinkRestoreIndication
        No value
    nbap.RadioLinkSetupFailureFDD  RadioLinkSetupFailureFDD
        No value
    nbap.RadioLinkSetupFailureTDD  RadioLinkSetupFailureTDD
        No value
    nbap.RadioLinkSetupRequestFDD  RadioLinkSetupRequestFDD
        No value
    nbap.RadioLinkSetupRequestTDD  RadioLinkSetupRequestTDD
        No value
    nbap.RadioLinkSetupResponseFDD  RadioLinkSetupResponseFDD
        No value
    nbap.RadioLinkSetupResponseTDD  RadioLinkSetupResponseTDD
        No value
    nbap.Received_Scheduled_EDCH_Power_Share_For_CellPortion_Value  Received-Scheduled-EDCH-Power-Share-For-CellPortion-Value
        Unsigned 32-bit integer
    nbap.Received_Scheduled_EDCH_Power_Share_For_CellPortion_Value_Item  Received-Scheduled-EDCH-Power-Share-For-CellPortion-Value-Item
        No value
    nbap.Received_Scheduled_EDCH_Power_Share_Value  Received-Scheduled-EDCH-Power-Share-Value
        No value
    nbap.Received_total_wide_band_power_For_CellPortion_Value  Received-total-wide-band-power-For-CellPortion-Value
        Unsigned 32-bit integer
    nbap.Received_total_wide_band_power_For_CellPortion_ValueLCR  Received-total-wide-band-power-For-CellPortion-ValueLCR
        Unsigned 32-bit integer
    nbap.Received_total_wide_band_power_For_CellPortion_ValueLCR_Item  Received-total-wide-band-power-For-CellPortion-ValueLCR-Item
        No value
    nbap.Received_total_wide_band_power_For_CellPortion_Value_Item  Received-total-wide-band-power-For-CellPortion-Value-Item
        No value
    nbap.Received_total_wide_band_power_Value_IncrDecrThres  Received-total-wide-band-power-Value-IncrDecrThres
        Unsigned 32-bit integer
    nbap.ReferenceClockAvailability  ReferenceClockAvailability
        Unsigned 32-bit integer
    nbap.ReferenceSFNoffset  ReferenceSFNoffset
        Unsigned 32-bit integer
    nbap.Reference_E_TFCI_Information_Item  Reference-E-TFCI-Information-Item
        No value
    nbap.Reference_ReceivedTotalWideBandPower  Reference-ReceivedTotalWideBandPower
        Unsigned 32-bit integer
    nbap.Reference_ReceivedTotalWideBandPowerReporting  Reference-ReceivedTotalWideBandPowerReporting
        Unsigned 32-bit integer
    nbap.Reference_ReceivedTotalWideBandPowerSupportIndicator  Reference-ReceivedTotalWideBandPowerSupportIndicator
        Unsigned 32-bit integer
    nbap.RepetitionPeriodIndex  RepetitionPeriodIndex
        Unsigned 32-bit integer
    nbap.Repetition_Period_Item_LCR  Repetition-Period-Item-LCR
        No value
    nbap.ReportCharacteristics  ReportCharacteristics
        Unsigned 32-bit integer
    nbap.ReportCharacteristicsType_OnModification  ReportCharacteristicsType-OnModification
        No value
    nbap.Reporting_Object_RL_FailureInd  Reporting-Object-RL-FailureInd
        Unsigned 32-bit integer
    nbap.Reporting_Object_RL_RestoreInd  Reporting-Object-RL-RestoreInd
        Unsigned 32-bit integer
    nbap.ResetIndicator  ResetIndicator
        Unsigned 32-bit integer
    nbap.ResetRequest  ResetRequest
        No value
    nbap.ResetResponse  ResetResponse
        No value
    nbap.ResourceStatusIndication  ResourceStatusIndication
        No value
    nbap.Rx_Timing_Deviation_Value_384_ext  Rx-Timing-Deviation-Value-384-ext
        Unsigned 32-bit integer
    nbap.Rx_Timing_Deviation_Value_768  Rx-Timing-Deviation-Value-768
        Unsigned 32-bit integer
    nbap.Rx_Timing_Deviation_Value_LCR  Rx-Timing-Deviation-Value-LCR
        Unsigned 32-bit integer
    nbap.SAT_Info_Almanac_ExtItem  SAT-Info-Almanac-ExtItem
        No value
    nbap.SAT_Info_Almanac_ExtList  SAT-Info-Almanac-ExtList
        Unsigned 32-bit integer
    nbap.SAT_Info_Almanac_Item  SAT-Info-Almanac-Item
        No value
    nbap.SAT_Info_DGPSCorrections_Item  SAT-Info-DGPSCorrections-Item
        No value
    nbap.SAT_Info_RealTime_Integrity_Item  SAT-Info-RealTime-Integrity-Item
        No value
    nbap.SCH_768_Information_Cell_ReconfRqstTDD  SCH-768-Information-Cell-ReconfRqstTDD
        No value
    nbap.SCH_768_Information_Cell_SetupRqstTDD  SCH-768-Information-Cell-SetupRqstTDD
        No value
    nbap.SCH_Information_Cell_ReconfRqstTDD  SCH-Information-Cell-ReconfRqstTDD
        No value
    nbap.SCH_Information_Cell_SetupRqstTDD  SCH-Information-Cell-SetupRqstTDD
        No value
    nbap.SFN  SFN
        Unsigned 32-bit integer
    nbap.SFNSFNMeasurementThresholdInformation  SFNSFNMeasurementThresholdInformation
        No value
    nbap.SFNSFNMeasurementValueInformation  SFNSFNMeasurementValueInformation
        No value
    nbap.SPS_Reservation_Indicator  SPS-Reservation-Indicator
        Unsigned 32-bit integer
    nbap.SYNCDlCodeIdInfoItemLCR_CellSyncReconfRqstTDD  SYNCDlCodeIdInfoItemLCR-CellSyncReconfRqstTDD
        No value
    nbap.SYNCDlCodeIdMeasInfoItem_CellSyncReconfRqstTDD  SYNCDlCodeIdMeasInfoItem-CellSyncReconfRqstTDD
        No value
    nbap.SYNCDlCodeIdMeasInfoLCR_CellSyncReconfRqstTDD  SYNCDlCodeIdMeasInfoLCR-CellSyncReconfRqstTDD
        No value
    nbap.SYNCDlCodeIdTransReconfInfoLCR_CellSyncReconfRqstTDD  SYNCDlCodeIdTransReconfInfoLCR-CellSyncReconfRqstTDD
        Unsigned 32-bit integer
    nbap.SYNCDlCodeIdTransReconfItemLCR_CellSyncReconfRqstTDD  SYNCDlCodeIdTransReconfItemLCR-CellSyncReconfRqstTDD
        No value
    nbap.SYNCDlCodeId_MeasureInitLCR_CellSyncInitiationRqstTDD  SYNCDlCodeId-MeasureInitLCR-CellSyncInitiationRqstTDD
        No value
    nbap.SYNCDlCodeId_TransInitLCR_CellSyncInitiationRqstTDD  SYNCDlCodeId-TransInitLCR-CellSyncInitiationRqstTDD
        No value
    nbap.SYNC_UL_Partition_LCR  SYNC-UL-Partition-LCR
        No value
    nbap.S_CCPCH_768_InformationList_AuditRsp  S-CCPCH-768-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.S_CCPCH_768_InformationList_ResourceStatusInd  S-CCPCH-768-InformationList-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.S_CCPCH_InformationListExt_AuditRsp  S-CCPCH-InformationListExt-AuditRsp
        Unsigned 32-bit integer
    nbap.S_CCPCH_InformationListExt_ResourceStatusInd  S-CCPCH-InformationListExt-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.S_CCPCH_LCR_InformationListExt_AuditRsp  S-CCPCH-LCR-InformationListExt-AuditRsp
        Unsigned 32-bit integer
    nbap.S_CCPCH_LCR_InformationListExt_ResourceStatusInd  S-CCPCH-LCR-InformationListExt-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.ScaledAdjustmentRatio  ScaledAdjustmentRatio
        Unsigned 32-bit integer
    nbap.Scheduled_E_HICH_Specific_InformationItem_ResponseLCRTDD  Scheduled-E-HICH-Specific-InformationItem-ResponseLCRTDD
        No value
    nbap.SchedulingPriorityIndicator  SchedulingPriorityIndicator
        Unsigned 32-bit integer
    nbap.SecondaryCPICH_InformationItem_Cell_ReconfRqstFDD  SecondaryCPICH-InformationItem-Cell-ReconfRqstFDD
        No value
    nbap.SecondaryCPICH_InformationItem_Cell_SetupRqstFDD  SecondaryCPICH-InformationItem-Cell-SetupRqstFDD
        No value
    nbap.SecondaryCPICH_InformationList_Cell_ReconfRqstFDD  SecondaryCPICH-InformationList-Cell-ReconfRqstFDD
        Unsigned 32-bit integer
    nbap.SecondaryCPICH_InformationList_Cell_SetupRqstFDD  SecondaryCPICH-InformationList-Cell-SetupRqstFDD
        Unsigned 32-bit integer
    nbap.SecondarySCH_Information_Cell_ReconfRqstFDD  SecondarySCH-Information-Cell-ReconfRqstFDD
        No value
    nbap.SecondarySCH_Information_Cell_SetupRqstFDD  SecondarySCH-Information-Cell-SetupRqstFDD
        No value
    nbap.SecondaryServingCellsItem  SecondaryServingCellsItem
        No value
    nbap.SecondaryULFrequencyReport  SecondaryULFrequencyReport
        No value
    nbap.SecondaryULFrequencyUpdateIndication  SecondaryULFrequencyUpdateIndication
        No value
    nbap.Secondary_CCPCHItem_CTCH_ReconfRqstTDD  Secondary-CCPCHItem-CTCH-ReconfRqstTDD
        No value
    nbap.Secondary_CCPCHListIE_CTCH_ReconfRqstTDD  Secondary-CCPCHListIE-CTCH-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.Secondary_CCPCH_768_Item_CTCH_ReconfRqstTDD  Secondary-CCPCH-768-Item-CTCH-ReconfRqstTDD
        No value
    nbap.Secondary_CCPCH_768_Parameters_CTCH_ReconfRqstTDD  Secondary-CCPCH-768-Parameters-CTCH-ReconfRqstTDD
        No value
    nbap.Secondary_CCPCH_768_parameterItem_CTCH_SetupRqstTDD  Secondary-CCPCH-768-parameterItem-CTCH-SetupRqstTDD
        No value
    nbap.Secondary_CCPCH_768_parameterList_CTCH_SetupRqstTDD  Secondary-CCPCH-768-parameterList-CTCH-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.Secondary_CCPCH_LCR_parameterExtendedList_CTCH_ReconfRqstTDD  Secondary-CCPCH-LCR-parameterExtendedList-CTCH-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.Secondary_CCPCH_LCR_parameterExtendedList_CTCH_SetupRqstTDD  Secondary-CCPCH-LCR-parameterExtendedList-CTCH-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.Secondary_CCPCH_LCR_parameterItem_CTCH_SetupRqstTDD  Secondary-CCPCH-LCR-parameterItem-CTCH-SetupRqstTDD
        No value
    nbap.Secondary_CCPCH_LCR_parameterList_CTCH_SetupRqstTDD  Secondary-CCPCH-LCR-parameterList-CTCH-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.Secondary_CCPCH_Parameters_CTCH_ReconfRqstTDD  Secondary-CCPCH-Parameters-CTCH-ReconfRqstTDD
        No value
    nbap.Secondary_CCPCH_SlotFormat_Extended  Secondary-CCPCH-SlotFormat-Extended
        Unsigned 32-bit integer
    nbap.Secondary_CCPCH_parameterExtendedList_CTCH_ReconfRqstTDD  Secondary-CCPCH-parameterExtendedList-CTCH-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.Secondary_CCPCH_parameterExtendedList_CTCH_SetupRqstTDD  Secondary-CCPCH-parameterExtendedList-CTCH-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.Secondary_CCPCH_parameterItem_CTCH_SetupRqstTDD  Secondary-CCPCH-parameterItem-CTCH-SetupRqstTDD
        No value
    nbap.Secondary_CCPCH_parameterListIE_CTCH_SetupRqstTDD  Secondary-CCPCH-parameterListIE-CTCH-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.Secondary_CPICH_Information_Change  Secondary-CPICH-Information-Change
        Unsigned 32-bit integer
    nbap.SegmentInformationItem_SystemInfoUpdate  SegmentInformationItem-SystemInfoUpdate
        No value
    nbap.SegmentInformationListIE_SystemInfoUpdate  SegmentInformationListIE-SystemInfoUpdate
        Unsigned 32-bit integer
    nbap.Selected_MBMS_Service_Item  Selected-MBMS-Service-Item
        No value
    nbap.Semi_PersistentScheduling_CapabilityLCR  Semi-PersistentScheduling-CapabilityLCR
        Unsigned 32-bit integer
    nbap.Serving_E_DCH_RL_ID  Serving-E-DCH-RL-ID
        Unsigned 32-bit integer
    nbap.SetsOfHS_SCCH_CodesItem  SetsOfHS-SCCH-CodesItem
        No value
    nbap.ShutdownTimer  ShutdownTimer
        Unsigned 32-bit integer
    nbap.SignallingBearerRequestIndicator  SignallingBearerRequestIndicator
        Unsigned 32-bit integer
    nbap.Single_Stream_MIMO_ActivationIndicator  Single-Stream-MIMO-ActivationIndicator
        No value
    nbap.Single_Stream_MIMO_Capability  Single-Stream-MIMO-Capability
        Unsigned 32-bit integer
    nbap.Single_Stream_MIMO_Mode_Indicator  Single-Stream-MIMO-Mode-Indicator
        Unsigned 32-bit integer
    nbap.SixteenQAM_UL_Capability  SixteenQAM-UL-Capability
        Unsigned 32-bit integer
    nbap.SixteenQAM_UL_Operation_Indicator  SixteenQAM-UL-Operation-Indicator
        Unsigned 32-bit integer
    nbap.SixtyfourQAM_DL_Capability  SixtyfourQAM-DL-Capability
        Unsigned 32-bit integer
    nbap.SixtyfourQAM_DL_MIMO_Combined_Capability  SixtyfourQAM-DL-MIMO-Combined-Capability
        Unsigned 32-bit integer
    nbap.SixtyfourQAM_DL_UsageIndicator  SixtyfourQAM-DL-UsageIndicator
        Unsigned 32-bit integer
    nbap.SixtyfourQAM_UsageAllowedIndicator  SixtyfourQAM-UsageAllowedIndicator
        Unsigned 32-bit integer
    nbap.Start_Of_Audit_Sequence_Indicator  Start-Of-Audit-Sequence-Indicator
        Unsigned 32-bit integer
    nbap.Successful_RL_InformationRespItem_RL_AdditionFailureFDD  Successful-RL-InformationRespItem-RL-AdditionFailureFDD
        No value
    nbap.Successful_RL_InformationRespItem_RL_SetupFailureFDD  Successful-RL-InformationRespItem-RL-SetupFailureFDD
        No value
    nbap.SyncCase  SyncCase
        Unsigned 32-bit integer
    nbap.SyncCaseIndicatorItem_Cell_SetupRqstTDD_PSCH  SyncCaseIndicatorItem-Cell-SetupRqstTDD-PSCH
        Unsigned 32-bit integer
    nbap.SyncDLCodeIdItem_CellSyncReprtTDD  SyncDLCodeIdItem-CellSyncReprtTDD
        Unsigned 32-bit integer
    nbap.SyncDLCodeIdThreInfoLCR  SyncDLCodeIdThreInfoLCR
        Unsigned 32-bit integer
    nbap.SyncDLCodeIdThreInfoList  SyncDLCodeIdThreInfoList
        No value
    nbap.SyncDLCodeIdsMeasInfoItem_CellSyncReprtTDD  SyncDLCodeIdsMeasInfoItem-CellSyncReprtTDD
        No value
    nbap.SyncDLCodeIdsMeasInfoList_CellSyncReprtTDD  SyncDLCodeIdsMeasInfoList-CellSyncReprtTDD
        Unsigned 32-bit integer
    nbap.SyncDLCodeInfoItemLCR  SyncDLCodeInfoItemLCR
        No value
    nbap.SyncReportType_CellSyncReprtTDD  SyncReportType-CellSyncReprtTDD
        Unsigned 32-bit integer
    nbap.SynchronisationIndicator  SynchronisationIndicator
        Unsigned 32-bit integer
    nbap.SynchronisationReportCharactCellSyncBurstInfoItem  SynchronisationReportCharactCellSyncBurstInfoItem
        No value
    nbap.SynchronisationReportCharactThreInfoItem  SynchronisationReportCharactThreInfoItem
        No value
    nbap.SynchronisationReportCharacteristics  SynchronisationReportCharacteristics
        No value
    nbap.SynchronisationReportType  SynchronisationReportType
        Unsigned 32-bit integer
    nbap.Synchronisation_Configuration_Cell_ReconfRqst  Synchronisation-Configuration-Cell-ReconfRqst
        No value
    nbap.Synchronisation_Configuration_Cell_SetupRqst  Synchronisation-Configuration-Cell-SetupRqst
        No value
    nbap.SystemInformationUpdateFailure  SystemInformationUpdateFailure
        No value
    nbap.SystemInformationUpdateRequest  SystemInformationUpdateRequest
        No value
    nbap.SystemInformationUpdateResponse  SystemInformationUpdateResponse
        No value
    nbap.TDD_ChannelisationCode  TDD-ChannelisationCode
        Unsigned 32-bit integer
    nbap.TDD_ChannelisationCode768  TDD-ChannelisationCode768
        Unsigned 32-bit integer
    nbap.TDD_DCHs_to_Modify  TDD-DCHs-to-Modify
        Unsigned 32-bit integer
    nbap.TDD_DL_Code_768_InformationItem  TDD-DL-Code-768-InformationItem
        No value
    nbap.TDD_DL_Code_InformationItem  TDD-DL-Code-InformationItem
        No value
    nbap.TDD_DL_Code_LCR_InformationItem  TDD-DL-Code-LCR-InformationItem
        No value
    nbap.TDD_DL_DPCH_TimeSlotFormat_LCR  TDD-DL-DPCH-TimeSlotFormat-LCR
        Unsigned 32-bit integer
    nbap.TDD_TPC_DownlinkStepSize  TDD-TPC-DownlinkStepSize
        Unsigned 32-bit integer
    nbap.TDD_TPC_UplinkStepSize_LCR  TDD-TPC-UplinkStepSize-LCR
        Unsigned 32-bit integer
    nbap.TDD_UL_Code_768_InformationItem  TDD-UL-Code-768-InformationItem
        No value
    nbap.TDD_UL_Code_InformationItem  TDD-UL-Code-InformationItem
        No value
    nbap.TDD_UL_Code_LCR_InformationItem  TDD-UL-Code-LCR-InformationItem
        No value
    nbap.TDD_UL_DPCH_TimeSlotFormat_LCR  TDD-UL-DPCH-TimeSlotFormat-LCR
        Unsigned 32-bit integer
    nbap.TFCI_Presence  TFCI-Presence
        Unsigned 32-bit integer
    nbap.TFCS_TFCSList_item  TFCS-TFCSList item
        No value
    nbap.TS0_CapabilityLCR  TS0-CapabilityLCR
        Unsigned 32-bit integer
    nbap.TSN_Length  TSN-Length
        Unsigned 32-bit integer
    nbap.TSTD_Indicator  TSTD-Indicator
        Unsigned 32-bit integer
    nbap.TUTRANGANSSMeasurementThresholdInformation  TUTRANGANSSMeasurementThresholdInformation
        No value
    nbap.TUTRANGANSSMeasurementValueInformation  TUTRANGANSSMeasurementValueInformation
        No value
    nbap.TUTRANGPSMeasurementThresholdInformation  TUTRANGPSMeasurementThresholdInformation
        No value
    nbap.TUTRANGPSMeasurementValueInformation  TUTRANGPSMeasurementValueInformation
        No value
    nbap.T_Cell  T-Cell
        Unsigned 32-bit integer
    nbap.Target_NonServing_EDCH_To_Total_EDCH_Power_Ratio  Target-NonServing-EDCH-To-Total-EDCH-Power-Ratio
        Unsigned 32-bit integer
    nbap.TimeSlot  TimeSlot
        Unsigned 32-bit integer
    nbap.TimeSlotConfigurationItem_Cell_ReconfRqstTDD  TimeSlotConfigurationItem-Cell-ReconfRqstTDD
        No value
    nbap.TimeSlotConfigurationItem_Cell_SetupRqstTDD  TimeSlotConfigurationItem-Cell-SetupRqstTDD
        No value
    nbap.TimeSlotConfigurationItem_LCR_CTCH_SetupRqstTDD  TimeSlotConfigurationItem-LCR-CTCH-SetupRqstTDD
        No value
    nbap.TimeSlotConfigurationItem_LCR_Cell_ReconfRqstTDD  TimeSlotConfigurationItem-LCR-Cell-ReconfRqstTDD
        No value
    nbap.TimeSlotConfigurationItem_LCR_Cell_SetupRqstTDD  TimeSlotConfigurationItem-LCR-Cell-SetupRqstTDD
        No value
    nbap.TimeSlotConfigurationList_Cell_ReconfRqstTDD  TimeSlotConfigurationList-Cell-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.TimeSlotConfigurationList_Cell_SetupRqstTDD  TimeSlotConfigurationList-Cell-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.TimeSlotConfigurationList_LCR_CTCH_SetupRqstTDD  TimeSlotConfigurationList-LCR-CTCH-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.TimeSlotConfigurationList_LCR_Cell_ReconfRqstTDD  TimeSlotConfigurationList-LCR-Cell-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.TimeSlotConfigurationList_LCR_Cell_SetupRqstTDD  TimeSlotConfigurationList-LCR-Cell-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.TimeSlotLCR  TimeSlotLCR
        Unsigned 32-bit integer
    nbap.TimeSlotMeasurementValueLCR  TimeSlotMeasurementValueLCR
        No value
    nbap.TimeSlotMeasurementValueListLCR  TimeSlotMeasurementValueListLCR
        Unsigned 32-bit integer
    nbap.TimeslotInfo_CellSyncInitiationRqstTDD  TimeslotInfo-CellSyncInitiationRqstTDD
        Unsigned 32-bit integer
    nbap.TimeslotLCR_Extension  TimeslotLCR-Extension
        Unsigned 32-bit integer
    nbap.TimingAdjustmentValue  TimingAdjustmentValue
        Unsigned 32-bit integer
    nbap.TimingAdjustmentValueLCR  TimingAdjustmentValueLCR
        Unsigned 32-bit integer
    nbap.TimingAdvanceApplied  TimingAdvanceApplied
        Unsigned 32-bit integer
    nbap.TnlQos  TnlQos
        Unsigned 32-bit integer
    nbap.TransmissionDiversityApplied  TransmissionDiversityApplied
        Boolean
    nbap.TransmissionTimeIntervalInformation_item  TransmissionTimeIntervalInformation item
        No value
    nbap.Transmission_Gap_Pattern_Sequence_Information  Transmission-Gap-Pattern-Sequence-Information
        Unsigned 32-bit integer
    nbap.Transmission_Gap_Pattern_Sequence_Information_item  Transmission-Gap-Pattern-Sequence-Information item
        No value
    nbap.Transmission_Gap_Pattern_Sequence_Status_List_item  Transmission-Gap-Pattern-Sequence-Status-List item
        No value
    nbap.TransmitDiversityIndicator  TransmitDiversityIndicator
        Unsigned 32-bit integer
    nbap.TransmittedCarrierPowerOfAllCodesNotUsedForHSTransmissionValue  TransmittedCarrierPowerOfAllCodesNotUsedForHSTransmissionValue
        Unsigned 32-bit integer
    nbap.TransmittedCarrierPowerOfAllCodesNotUsedForHS_PDSCH_HS_SCCH_E_AGCHOrE_HICHTransmissionCellPortionValue  TransmittedCarrierPowerOfAllCodesNotUsedForHS-PDSCH-HS-SCCH-E-AGCHOrE-HICHTransmissionCellPortionValue
        Unsigned 32-bit integer
    nbap.TransmittedCarrierPowerOfAllCodesNotUsedForHS_PDSCH_HS_SCCH_E_AGCHOrE_HICHTransmissionCellPortionValue_Item  TransmittedCarrierPowerOfAllCodesNotUsedForHS-PDSCH-HS-SCCH-E-AGCHOrE-HICHTransmissionCellPortionValue-Item
        No value
    nbap.TransmittedCarrierPowerOfAllCodesNotUsedForHS_PDSCH_HS_SCCH_E_AGCH_E_RGCHOrE_HICHTransmissionCellPortionValue  TransmittedCarrierPowerOfAllCodesNotUsedForHS-PDSCH-HS-SCCH-E-AGCH-E-RGCHOrE-HICHTransmissionCellPortionValue
        Unsigned 32-bit integer
    nbap.TransmittedCarrierPowerOfAllCodesNotUsedForHS_PDSCH_HS_SCCH_E_AGCH_E_RGCHOrE_HICHTransmissionCellPortionValue_Item  TransmittedCarrierPowerOfAllCodesNotUsedForHS-PDSCH-HS-SCCH-E-AGCH-E-RGCHOrE-HICHTransmissionCellPortionValue-Item
        No value
    nbap.Transmitted_Carrier_Power_For_CellPortion_Value  Transmitted-Carrier-Power-For-CellPortion-Value
        Unsigned 32-bit integer
    nbap.Transmitted_Carrier_Power_For_CellPortion_ValueLCR  Transmitted-Carrier-Power-For-CellPortion-ValueLCR
        Unsigned 32-bit integer
    nbap.Transmitted_Carrier_Power_For_CellPortion_ValueLCR_Item  Transmitted-Carrier-Power-For-CellPortion-ValueLCR-Item
        No value
    nbap.Transmitted_Carrier_Power_For_CellPortion_Value_Item  Transmitted-Carrier-Power-For-CellPortion-Value-Item
        No value
    nbap.Transmitted_Carrier_Power_Value  Transmitted-Carrier-Power-Value
        Unsigned 32-bit integer
    nbap.TransportBearerNotRequestedIndicator  TransportBearerNotRequestedIndicator
        Unsigned 32-bit integer
    nbap.TransportBearerNotSetupIndicator  TransportBearerNotSetupIndicator
        Unsigned 32-bit integer
    nbap.TransportBearerRequestIndicator  TransportBearerRequestIndicator
        Unsigned 32-bit integer
    nbap.TransportFormatSet_DynamicPartList_item  TransportFormatSet-DynamicPartList item
        No value
    nbap.TransportLayerAddress  TransportLayerAddress
        Byte array
    nbap.Transport_Block_Size_Item_LCR  Transport-Block-Size-Item-LCR
        No value
    nbap.Transport_Block_Size_List_item  Transport-Block-Size-List item
        No value
    nbap.TxDiversityOnDLControlChannelsByMIMOUECapability  TxDiversityOnDLControlChannelsByMIMOUECapability
        Unsigned 32-bit integer
    nbap.TypeOfError  TypeOfError
        Unsigned 32-bit integer
    nbap.UARFCN  UARFCN
        Unsigned 32-bit integer
    nbap.UARFCNSpecificCauseList_PSCH_ReconfFailureTDD  UARFCNSpecificCauseList-PSCH-ReconfFailureTDD
        Unsigned 32-bit integer
    nbap.UARFCN_Adjustment  UARFCN-Adjustment
        Unsigned 32-bit integer
    nbap.UEStatusUpdateCommand  UEStatusUpdateCommand
        No value
    nbap.UE_AggregateMaximumBitRate  UE-AggregateMaximumBitRate
        No value
    nbap.UE_AggregateMaximumBitRate_Enforcement_Indicator  UE-AggregateMaximumBitRate-Enforcement-Indicator
        No value
    nbap.UE_Capability_Information  UE-Capability-Information
        No value
    nbap.UE_Selected_MBMS_Service_Information  UE-Selected-MBMS-Service-Information
        Unsigned 32-bit integer
    nbap.UE_SupportIndicatorExtension  UE-SupportIndicatorExtension
        Byte array
    nbap.UE_TS0_CapabilityLCR  UE-TS0-CapabilityLCR
        Unsigned 32-bit integer
    nbap.UL_CCTrCH_InformationAddItem_RL_ReconfPrepTDD  UL-CCTrCH-InformationAddItem-RL-ReconfPrepTDD
        No value
    nbap.UL_CCTrCH_InformationAddList_RL_ReconfPrepTDD  UL-CCTrCH-InformationAddList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.UL_CCTrCH_InformationDeleteItem_RL_ReconfPrepTDD  UL-CCTrCH-InformationDeleteItem-RL-ReconfPrepTDD
        No value
    nbap.UL_CCTrCH_InformationDeleteItem_RL_ReconfRqstTDD  UL-CCTrCH-InformationDeleteItem-RL-ReconfRqstTDD
        No value
    nbap.UL_CCTrCH_InformationDeleteList_RL_ReconfPrepTDD  UL-CCTrCH-InformationDeleteList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.UL_CCTrCH_InformationDeleteList_RL_ReconfRqstTDD  UL-CCTrCH-InformationDeleteList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.UL_CCTrCH_InformationItem_RL_AdditionRqstTDD  UL-CCTrCH-InformationItem-RL-AdditionRqstTDD
        No value
    nbap.UL_CCTrCH_InformationItem_RL_SetupRqstTDD  UL-CCTrCH-InformationItem-RL-SetupRqstTDD
        No value
    nbap.UL_CCTrCH_InformationList_RL_AdditionRqstTDD  UL-CCTrCH-InformationList-RL-AdditionRqstTDD
        Unsigned 32-bit integer
    nbap.UL_CCTrCH_InformationList_RL_SetupRqstTDD  UL-CCTrCH-InformationList-RL-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.UL_CCTrCH_InformationModifyItem_RL_ReconfPrepTDD  UL-CCTrCH-InformationModifyItem-RL-ReconfPrepTDD
        No value
    nbap.UL_CCTrCH_InformationModifyItem_RL_ReconfRqstTDD  UL-CCTrCH-InformationModifyItem-RL-ReconfRqstTDD
        No value
    nbap.UL_CCTrCH_InformationModifyList_RL_ReconfPrepTDD  UL-CCTrCH-InformationModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.UL_CCTrCH_InformationModifyList_RL_ReconfRqstTDD  UL-CCTrCH-InformationModifyList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.UL_Code_768_InformationModifyItem_PSCH_ReconfRqst  UL-Code-768-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.UL_Code_InformationAddItem_768_PSCH_ReconfRqst  UL-Code-InformationAddItem-768-PSCH-ReconfRqst
        No value
    nbap.UL_Code_InformationAddItem_LCR_PSCH_ReconfRqst  UL-Code-InformationAddItem-LCR-PSCH-ReconfRqst
        No value
    nbap.UL_Code_InformationAddItem_PSCH_ReconfRqst  UL-Code-InformationAddItem-PSCH-ReconfRqst
        No value
    nbap.UL_Code_InformationModifyItem_PSCH_ReconfRqst  UL-Code-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.UL_Code_InformationModify_ModifyItem_RL_ReconfPrepTDD  UL-Code-InformationModify-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.UL_Code_InformationModify_ModifyItem_RL_ReconfPrepTDD768  UL-Code-InformationModify-ModifyItem-RL-ReconfPrepTDD768
        No value
    nbap.UL_Code_InformationModify_ModifyItem_RL_ReconfPrepTDDLCR  UL-Code-InformationModify-ModifyItem-RL-ReconfPrepTDDLCR
        No value
    nbap.UL_Code_LCR_InformationModifyItem_PSCH_ReconfRqst  UL-Code-LCR-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.UL_DPCH_768_InformationAddList_RL_ReconfPrepTDD  UL-DPCH-768-InformationAddList-RL-ReconfPrepTDD
        No value
    nbap.UL_DPCH_768_InformationModify_AddList_RL_ReconfPrepTDD  UL-DPCH-768-InformationModify-AddList-RL-ReconfPrepTDD
        No value
    nbap.UL_DPCH_768_Information_RL_SetupRqstTDD  UL-DPCH-768-Information-RL-SetupRqstTDD
        No value
    nbap.UL_DPCH_InformationAddItem_RL_ReconfPrepTDD  UL-DPCH-InformationAddItem-RL-ReconfPrepTDD
        No value
    nbap.UL_DPCH_InformationItem_768_RL_AdditionRqstTDD  UL-DPCH-InformationItem-768-RL-AdditionRqstTDD
        No value
    nbap.UL_DPCH_InformationItem_LCR_RL_AdditionRqstTDD  UL-DPCH-InformationItem-LCR-RL-AdditionRqstTDD
        No value
    nbap.UL_DPCH_InformationItem_RL_AdditionRqstTDD  UL-DPCH-InformationItem-RL-AdditionRqstTDD
        No value
    nbap.UL_DPCH_InformationItem_RL_SetupRqstTDD  UL-DPCH-InformationItem-RL-SetupRqstTDD
        No value
    nbap.UL_DPCH_InformationModify_AddItem_RL_ReconfPrepTDD  UL-DPCH-InformationModify-AddItem-RL-ReconfPrepTDD
        No value
    nbap.UL_DPCH_InformationModify_DeleteItem_RL_ReconfPrepTDD  UL-DPCH-InformationModify-DeleteItem-RL-ReconfPrepTDD
        No value
    nbap.UL_DPCH_InformationModify_DeleteListIE_RL_ReconfPrepTDD  UL-DPCH-InformationModify-DeleteListIE-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.UL_DPCH_InformationModify_ModifyItem_RL_ReconfPrepTDD  UL-DPCH-InformationModify-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.UL_DPCH_Information_RL_ReconfPrepFDD  UL-DPCH-Information-RL-ReconfPrepFDD
        No value
    nbap.UL_DPCH_Information_RL_ReconfRqstFDD  UL-DPCH-Information-RL-ReconfRqstFDD
        No value
    nbap.UL_DPCH_Information_RL_SetupRqstFDD  UL-DPCH-Information-RL-SetupRqstFDD
        No value
    nbap.UL_DPCH_LCR_InformationAddList_RL_ReconfPrepTDD  UL-DPCH-LCR-InformationAddList-RL-ReconfPrepTDD
        No value
    nbap.UL_DPCH_LCR_InformationModify_AddList_RL_ReconfPrepTDD  UL-DPCH-LCR-InformationModify-AddList-RL-ReconfPrepTDD
        No value
    nbap.UL_DPCH_LCR_Information_RL_SetupRqstTDD  UL-DPCH-LCR-Information-RL-SetupRqstTDD
        No value
    nbap.UL_DPDCH_Indicator_For_E_DCH_Operation  UL-DPDCH-Indicator-For-E-DCH-Operation
        Unsigned 32-bit integer
    nbap.UL_SIR  UL-SIR
        Signed 32-bit integer
    nbap.UL_Synchronisation_Parameters_LCR  UL-Synchronisation-Parameters-LCR
        No value
    nbap.UL_TimeSlot_ISCP_InfoItem  UL-TimeSlot-ISCP-InfoItem
        No value
    nbap.UL_TimeSlot_ISCP_LCR_InfoItem  UL-TimeSlot-ISCP-LCR-InfoItem
        No value
    nbap.UL_Timeslot768_InformationItem  UL-Timeslot768-InformationItem
        No value
    nbap.UL_Timeslot768_InformationModify_ModifyList_RL_ReconfPrepTDD  UL-Timeslot768-InformationModify-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.UL_TimeslotISCP_For_CellPortion_Value  UL-TimeslotISCP-For-CellPortion-Value
        Unsigned 32-bit integer
    nbap.UL_TimeslotISCP_For_CellPortion_Value_Item  UL-TimeslotISCP-For-CellPortion-Value-Item
        No value
    nbap.UL_TimeslotISCP_Value_IncrDecrThres  UL-TimeslotISCP-Value-IncrDecrThres
        Unsigned 32-bit integer
    nbap.UL_TimeslotLCR_InformationItem  UL-TimeslotLCR-InformationItem
        No value
    nbap.UL_TimeslotLCR_InformationModify_ModifyList_RL_ReconfPrepTDD  UL-TimeslotLCR-InformationModify-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.UL_Timeslot_768_InformationModifyItem_PSCH_ReconfRqst  UL-Timeslot-768-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.UL_Timeslot_768_InformationModify_ModifyItem_RL_ReconfPrepTDD  UL-Timeslot-768-InformationModify-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.UL_Timeslot_InformationAddItem_768_PSCH_ReconfRqst  UL-Timeslot-InformationAddItem-768-PSCH-ReconfRqst
        No value
    nbap.UL_Timeslot_InformationAddItem_LCR_PSCH_ReconfRqst  UL-Timeslot-InformationAddItem-LCR-PSCH-ReconfRqst
        No value
    nbap.UL_Timeslot_InformationAddItem_PSCH_ReconfRqst  UL-Timeslot-InformationAddItem-PSCH-ReconfRqst
        No value
    nbap.UL_Timeslot_InformationItem  UL-Timeslot-InformationItem
        No value
    nbap.UL_Timeslot_InformationModifyItem_PSCH_ReconfRqst  UL-Timeslot-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.UL_Timeslot_InformationModify_ModifyItem_RL_ReconfPrepTDD  UL-Timeslot-InformationModify-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.UL_Timeslot_LCR_InformationModifyItem_PSCH_ReconfRqst  UL-Timeslot-LCR-InformationModifyItem-PSCH-ReconfRqst
        No value
    nbap.UL_Timeslot_LCR_InformationModify_ModifyItem_RL_ReconfPrepTDD  UL-Timeslot-LCR-InformationModify-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.UPPCHPositionLCR  UPPCHPositionLCR
        Unsigned 32-bit integer
    nbap.UPPCH_LCR_InformationItem_AuditRsp  UPPCH-LCR-InformationItem-AuditRsp
        No value
    nbap.UPPCH_LCR_InformationItem_ResourceStatusInd  UPPCH-LCR-InformationItem-ResourceStatusInd
        No value
    nbap.UPPCH_LCR_InformationList_AuditRsp  UPPCH-LCR-InformationList-AuditRsp
        Unsigned 32-bit integer
    nbap.UPPCH_LCR_InformationList_ResourceStatusInd  UPPCH-LCR-InformationList-ResourceStatusInd
        Unsigned 32-bit integer
    nbap.UPPCH_LCR_Parameters_CTCH_ReconfRqstTDD  UPPCH-LCR-Parameters-CTCH-ReconfRqstTDD
        No value
    nbap.USCH_Information  USCH-Information
        Unsigned 32-bit integer
    nbap.USCH_InformationItem  USCH-InformationItem
        No value
    nbap.USCH_InformationResponse  USCH-InformationResponse
        Unsigned 32-bit integer
    nbap.USCH_InformationResponseItem  USCH-InformationResponseItem
        No value
    nbap.USCH_Information_DeleteItem_RL_ReconfPrepTDD  USCH-Information-DeleteItem-RL-ReconfPrepTDD
        No value
    nbap.USCH_Information_DeleteList_RL_ReconfPrepTDD  USCH-Information-DeleteList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.USCH_Information_ModifyItem_RL_ReconfPrepTDD  USCH-Information-ModifyItem-RL-ReconfPrepTDD
        No value
    nbap.USCH_Information_ModifyList_RL_ReconfPrepTDD  USCH-Information-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.USCH_RearrangeItem_Bearer_RearrangeInd  USCH-RearrangeItem-Bearer-RearrangeInd
        No value
    nbap.USCH_RearrangeList_Bearer_RearrangeInd  USCH-RearrangeList-Bearer-RearrangeInd
        Unsigned 32-bit integer
    nbap.Ul_common_E_DCH_MACflow_Specific_InfoList_Item  Ul-common-E-DCH-MACflow-Specific-InfoList-Item
        No value
    nbap.Ul_common_E_DCH_MACflow_Specific_InfoList_ItemLCR  Ul-common-E-DCH-MACflow-Specific-InfoList-ItemLCR
        No value
    nbap.Ul_common_E_DCH_MACflow_Specific_InfoResponseListLCR_Ext  Ul-common-E-DCH-MACflow-Specific-InfoResponseListLCR-Ext
        Unsigned 32-bit integer
    nbap.Ul_common_E_DCH_MACflow_Specific_InfoResponseList_Item  Ul-common-E-DCH-MACflow-Specific-InfoResponseList-Item
        No value
    nbap.Ul_common_E_DCH_MACflow_Specific_InfoResponseList_ItemLCR  Ul-common-E-DCH-MACflow-Specific-InfoResponseList-ItemLCR
        No value
    nbap.UnblockResourceIndication  UnblockResourceIndication
        No value
    nbap.Unidirectional_DCH_Indicator  Unidirectional-DCH-Indicator
        Unsigned 32-bit integer
    nbap.Unsuccessful_PDSCHSetItem_PSCH_ReconfFailureTDD  Unsuccessful-PDSCHSetItem-PSCH-ReconfFailureTDD
        No value
    nbap.Unsuccessful_PUSCHSetItem_PSCH_ReconfFailureTDD  Unsuccessful-PUSCHSetItem-PSCH-ReconfFailureTDD
        No value
    nbap.Unsuccessful_RL_InformationRespItem_RL_AdditionFailureFDD  Unsuccessful-RL-InformationRespItem-RL-AdditionFailureFDD
        No value
    nbap.Unsuccessful_RL_InformationRespItem_RL_SetupFailureFDD  Unsuccessful-RL-InformationRespItem-RL-SetupFailureFDD
        No value
    nbap.Unsuccessful_RL_InformationResp_RL_AdditionFailureTDD  Unsuccessful-RL-InformationResp-RL-AdditionFailureTDD
        No value
    nbap.Unsuccessful_RL_InformationResp_RL_SetupFailureTDD  Unsuccessful-RL-InformationResp-RL-SetupFailureTDD
        No value
    nbap.Unsuccessful_UARFCNItem_PSCH_ReconfFailureTDD  Unsuccessful-UARFCNItem-PSCH-ReconfFailureTDD
        No value
    nbap.Unsuccessful_cell_InformationRespItem_SyncAdjustmntFailureTDD  Unsuccessful-cell-InformationRespItem-SyncAdjustmntFailureTDD
        No value
    nbap.UpPTSInterferenceValue  UpPTSInterferenceValue
        Unsigned 32-bit integer
    nbap.UpPTSInterference_For_CellPortion_Value  UpPTSInterference-For-CellPortion-Value
        Unsigned 32-bit integer
    nbap.UpPTSInterference_For_CellPortion_Value_Item  UpPTSInterference-For-CellPortion-Value-Item
        No value
    nbap.aICH_InformationList  aICH-InformationList
        Unsigned 32-bit integer
        AICH_InformationList_AuditRsp
    nbap.aICH_Parameters  aICH-Parameters
        No value
        AICH_Parameters_CTCH_SetupRqstFDD
    nbap.aICH_ParametersList_CTCH_ReconfRqstFDD  aICH-ParametersList-CTCH-ReconfRqstFDD
        No value
    nbap.aICH_Power  aICH-Power
        Signed 32-bit integer
    nbap.aICH_TransmissionTiming  aICH-TransmissionTiming
        Unsigned 32-bit integer
    nbap.aOA_LCR  aOA-LCR
        Unsigned 32-bit integer
    nbap.aOA_LCR_Accuracy_Class  aOA-LCR-Accuracy-Class
        Unsigned 32-bit integer
    nbap.a_f_1_nav  a-f-1-nav
        Byte array
        BIT_STRING_SIZE_16
    nbap.a_f_2_nav  a-f-2-nav
        Byte array
        BIT_STRING_SIZE_8
    nbap.a_f_zero_nav  a-f-zero-nav
        Byte array
        BIT_STRING_SIZE_22
    nbap.a_i0  a-i0
        Byte array
        BIT_STRING_SIZE_28
    nbap.a_i1  a-i1
        Byte array
        BIT_STRING_SIZE_18
    nbap.a_i2  a-i2
        Byte array
        BIT_STRING_SIZE_12
    nbap.a_one_utc  a-one-utc
        Byte array
        BIT_STRING_SIZE_24
    nbap.a_sqrt_nav  a-sqrt-nav
        Byte array
        BIT_STRING_SIZE_32
    nbap.a_zero_utc  a-zero-utc
        Byte array
        BIT_STRING_SIZE_32
    nbap.ackNackRepetitionFactor  ackNackRepetitionFactor
        Unsigned 32-bit integer
        AckNack_RepetitionFactor
    nbap.ackPowerOffset  ackPowerOffset
        Unsigned 32-bit integer
        Ack_Power_Offset
    nbap.acknowledged_prach_preambles  acknowledged-prach-preambles
        Unsigned 32-bit integer
        Acknowledged_PRACH_preambles_Value
    nbap.activate  activate
        No value
        Activate_Info
    nbap.activation_type  activation-type
        Unsigned 32-bit integer
        Execution_Type
    nbap.addPriorityQueue  addPriorityQueue
        No value
        PriorityQueue_InfoItem_to_Add
    nbap.addition  addition
        Unsigned 32-bit integer
        Additional_EDCH_Cell_Information_To_Add_List
    nbap.additional_EDCH_Cell_Information_Setup  additional-EDCH-Cell-Information-Setup
        Unsigned 32-bit integer
    nbap.additional_EDCH_DL_Control_Channel_Change_Information  additional-EDCH-DL-Control-Channel-Change-Information
        Unsigned 32-bit integer
        Additional_EDCH_DL_Control_Channel_Change_Information_List
    nbap.additional_EDCH_FDD_Information  additional-EDCH-FDD-Information
        No value
    nbap.additional_EDCH_FDD_Information_Response  additional-EDCH-FDD-Information-Response
        No value
        Additional_EDCH_FDD_Information_Response_ItemIEs
    nbap.additional_EDCH_FDD_Information_Response_ItemIEs  additional-EDCH-FDD-Information-Response-ItemIEs
        No value
    nbap.additional_EDCH_FDD_Information_To_Modify  additional-EDCH-FDD-Information-To-Modify
        No value
        Additional_EDCH_FDD_Information
    nbap.additional_EDCH_FDD_Update_Information  additional-EDCH-FDD-Update-Information
        No value
    nbap.additional_EDCH_F_DPCH_Information_Modify  additional-EDCH-F-DPCH-Information-Modify
        No value
        Additional_EDCH_F_DPCH_Information
    nbap.additional_EDCH_F_DPCH_Information_Setup  additional-EDCH-F-DPCH-Information-Setup
        No value
        Additional_EDCH_F_DPCH_Information
    nbap.additional_EDCH_MAC_d_Flow_Specific_Information_Response  additional-EDCH-MAC-d-Flow-Specific-Information-Response
        Unsigned 32-bit integer
        Additional_EDCH_MAC_d_Flow_Specific_Information_Response_List
    nbap.additional_EDCH_MAC_d_Flows_Specific_Information  additional-EDCH-MAC-d-Flows-Specific-Information
        Unsigned 32-bit integer
        Additional_EDCH_MAC_d_Flows_Specific_Info_List
    nbap.additional_EDCH_RL_Specific_Information_To_Add  additional-EDCH-RL-Specific-Information-To-Add
        Unsigned 32-bit integer
        Additional_EDCH_RL_Specific_Information_To_Add_ItemIEs
    nbap.additional_EDCH_RL_Specific_Information_To_Add_ItemIEs  additional-EDCH-RL-Specific-Information-To-Add-ItemIEs
        Unsigned 32-bit integer
    nbap.additional_EDCH_RL_Specific_Information_To_Modify  additional-EDCH-RL-Specific-Information-To-Modify
        Unsigned 32-bit integer
        Additional_EDCH_RL_Specific_Information_To_Modify_List
    nbap.additional_EDCH_RL_Specific_Information_To_Setup  additional-EDCH-RL-Specific-Information-To-Setup
        Unsigned 32-bit integer
        Additional_EDCH_RL_Specific_Information_To_Setup_List
    nbap.additional_EDCH_Serving_Cell_Change_Information_Response  additional-EDCH-Serving-Cell-Change-Information-Response
        No value
        E_DCH_Serving_Cell_Change_Info_Response
    nbap.additional_EDCH_UL_DPCH_Information_Modify  additional-EDCH-UL-DPCH-Information-Modify
        No value
    nbap.additional_EDCH_UL_DPCH_Information_Setup  additional-EDCH-UL-DPCH-Information-Setup
        No value
    nbap.additional_Modififed_EDCH_FDD_Information_Response_ItemIEs  additional-Modififed-EDCH-FDD-Information-Response-ItemIEs
        No value
    nbap.addorDeleteIndicator  addorDeleteIndicator
        Unsigned 32-bit integer
    nbap.adjustmentPeriod  adjustmentPeriod
        Unsigned 32-bit integer
    nbap.adjustmentRatio  adjustmentRatio
        Unsigned 32-bit integer
        ScaledAdjustmentRatio
    nbap.all_RL  all-RL
        No value
        AllRL_DM_Rqst
    nbap.all_RLS  all-RLS
        No value
        AllRL_Set_DM_Rqst
    nbap.allocationRetentionPriority  allocationRetentionPriority
        No value
    nbap.allowedSlotFormatInformation  allowedSlotFormatInformation
        Unsigned 32-bit integer
        AllowedSlotFormatInformationList_CTCH_SetupRqstFDD
    nbap.alpha_beta_parameters  alpha-beta-parameters
        No value
        GPS_Ionospheric_Model
    nbap.alpha_one_ionos  alpha-one-ionos
        Byte array
        BIT_STRING_SIZE_12
    nbap.alpha_three_ionos  alpha-three-ionos
        Byte array
        BIT_STRING_SIZE_8
    nbap.alpha_two_ionos  alpha-two-ionos
        Byte array
        BIT_STRING_SIZE_12
    nbap.alpha_zero_ionos  alpha-zero-ionos
        Byte array
        BIT_STRING_SIZE_12
    nbap.altitude  altitude
        Unsigned 32-bit integer
        INTEGER_0_32767
    nbap.aodo_nav  aodo-nav
        Byte array
        BIT_STRING_SIZE_5
    nbap.associatedCommon_MACFlow  associatedCommon-MACFlow
        Unsigned 32-bit integer
        Common_MACFlow_ID
    nbap.associatedCommon_MACFlowLCR  associatedCommon-MACFlowLCR
        Unsigned 32-bit integer
        Common_MACFlow_ID_LCR
    nbap.associatedHSDSCH_MACdFlow  associatedHSDSCH-MACdFlow
        Unsigned 32-bit integer
        HSDSCH_MACdFlow_ID
    nbap.associatedSecondaryCPICH  associatedSecondaryCPICH
        Unsigned 32-bit integer
        CommonPhysicalChannelID
    nbap.availabilityStatus  availabilityStatus
        Unsigned 32-bit integer
    nbap.b1  b1
        Byte array
        BIT_STRING_SIZE_11
    nbap.b2  b2
        Byte array
        BIT_STRING_SIZE_10
    nbap.bCCH_Specific_HSDSCH_RNTI  bCCH-Specific-HSDSCH-RNTI
        Unsigned 32-bit integer
        HSDSCH_RNTI
    nbap.bCCH_Specific_HSDSCH_RNTI_Information  bCCH-Specific-HSDSCH-RNTI-Information
        No value
    nbap.bCCH_Specific_HSDSCH_RNTI_InformationLCR  bCCH-Specific-HSDSCH-RNTI-InformationLCR
        No value
    nbap.bCH_Information  bCH-Information
        No value
        BCH_Information_AuditRsp
    nbap.bCH_Power  bCH-Power
        Signed 32-bit integer
        DL_Power
    nbap.bCH_information  bCH-information
        No value
        BCH_Information_Cell_SetupRqstFDD
    nbap.bad_ganss_satId  bad-ganss-satId
        Unsigned 32-bit integer
        INTEGER_0_63
    nbap.bad_ganss_signalId  bad-ganss-signalId
        Byte array
        BIT_STRING_SIZE_8
    nbap.bad_sat_id  bad-sat-id
        Unsigned 32-bit integer
        SAT_ID
    nbap.bad_satellites  bad-satellites
        No value
        GPSBadSat_Info_RealTime_Integrity
    nbap.betaC  betaC
        Unsigned 32-bit integer
        BetaCD
    nbap.betaD  betaD
        Unsigned 32-bit integer
        BetaCD
    nbap.beta_one_ionos  beta-one-ionos
        Byte array
        BIT_STRING_SIZE_8
    nbap.beta_three_ionos  beta-three-ionos
        Byte array
        BIT_STRING_SIZE_8
    nbap.beta_two_ionos  beta-two-ionos
        Byte array
        BIT_STRING_SIZE_8
    nbap.beta_zero_ionos  beta-zero-ionos
        Byte array
        BIT_STRING_SIZE_8
    nbap.bindingID  bindingID
        Byte array
    nbap.buffer_Size_for_HS_DSCH_SPS  buffer-Size-for-HS-DSCH-SPS
        Unsigned 32-bit integer
        Process_Memory_Size
    nbap.bundlingModeIndicator  bundlingModeIndicator
        Unsigned 32-bit integer
    nbap.burstFreq  burstFreq
        Unsigned 32-bit integer
        INTEGER_1_16
    nbap.burstLength  burstLength
        Unsigned 32-bit integer
        INTEGER_10_25
    nbap.burstModeParams  burstModeParams
        No value
    nbap.burstStart  burstStart
        Unsigned 32-bit integer
        INTEGER_0_15
    nbap.cCCH_PriorityQueue_Id  cCCH-PriorityQueue-Id
        Unsigned 32-bit integer
        PriorityQueue_Id
    nbap.cCP_InformationList  cCP-InformationList
        Unsigned 32-bit integer
        CCP_InformationList_ResourceStatusInd
    nbap.cCTrCH  cCTrCH
        No value
        CCTrCH_RL_FailureInd
    nbap.cCTrCH_ID  cCTrCH-ID
        Unsigned 32-bit integer
    nbap.cCTrCH_InformationList_RL_FailureInd  cCTrCH-InformationList-RL-FailureInd
        Unsigned 32-bit integer
    nbap.cCTrCH_InformationList_RL_RestoreInd  cCTrCH-InformationList-RL-RestoreInd
        Unsigned 32-bit integer
    nbap.cCTrCH_Initial_DL_Power  cCTrCH-Initial-DL-Power
        Signed 32-bit integer
        DL_Power
    nbap.cCTrCH_Maximum_DL_Power_InformationAdd_RL_ReconfPrepTDD  cCTrCH-Maximum-DL-Power-InformationAdd-RL-ReconfPrepTDD
        Signed 32-bit integer
        DL_Power
    nbap.cCTrCH_Maximum_DL_Power_InformationModify_RL_ReconfPrepTDD  cCTrCH-Maximum-DL-Power-InformationModify-RL-ReconfPrepTDD
        Signed 32-bit integer
        DL_Power
    nbap.cCTrCH_Maximum_DL_Power_InformationModify_RL_ReconfRqstTDD  cCTrCH-Maximum-DL-Power-InformationModify-RL-ReconfRqstTDD
        Signed 32-bit integer
        DL_Power
    nbap.cCTrCH_Minimum_DL_Power_InformationAdd_RL_ReconfPrepTDD  cCTrCH-Minimum-DL-Power-InformationAdd-RL-ReconfPrepTDD
        Signed 32-bit integer
        DL_Power
    nbap.cCTrCH_Minimum_DL_Power_InformationModify_RL_ReconfPrepTDD  cCTrCH-Minimum-DL-Power-InformationModify-RL-ReconfPrepTDD
        Signed 32-bit integer
        DL_Power
    nbap.cCTrCH_Minimum_DL_Power_InformationModify_RL_ReconfRqstTDD  cCTrCH-Minimum-DL-Power-InformationModify-RL-ReconfRqstTDD
        Signed 32-bit integer
        DL_Power
    nbap.cCTrCH_TPCList  cCTrCH-TPCList
        Unsigned 32-bit integer
        CCTrCH_TPCList_RL_SetupRqstTDD
    nbap.cFN  cFN
        Unsigned 32-bit integer
    nbap.cFNOffset  cFNOffset
        Unsigned 32-bit integer
        INTEGER_0_255
    nbap.cHipRate768_TDD  cHipRate768-TDD
        No value
        MICH_768_Parameters_CTCH_SetupRqstTDD
    nbap.cMConfigurationChangeCFN  cMConfigurationChangeCFN
        Unsigned 32-bit integer
        CFN
    nbap.cQI_DTX_Timer  cQI-DTX-Timer
        Unsigned 32-bit integer
    nbap.cRC_Size  cRC-Size
        Unsigned 32-bit integer
        TransportFormatSet_CRC_Size
    nbap.cRNC_CommunicationContextID  cRNC-CommunicationContextID
        Unsigned 32-bit integer
    nbap.cSBMeasurementID  cSBMeasurementID
        Unsigned 32-bit integer
    nbap.cSBTransmissionID  cSBTransmissionID
        Unsigned 32-bit integer
    nbap.cTFC  cTFC
        Unsigned 32-bit integer
        TFCS_CTFC
    nbap.c_ID  c-ID
        Unsigned 32-bit integer
    nbap.c_ID_CellSyncReprtTDD  c-ID-CellSyncReprtTDD
        No value
        C_ID_IE_CellSyncReprtTDD
    nbap.c_ic_nav  c-ic-nav
        Byte array
        BIT_STRING_SIZE_16
    nbap.c_is_nav  c-is-nav
        Byte array
        BIT_STRING_SIZE_16
    nbap.c_rc_nav  c-rc-nav
        Byte array
        BIT_STRING_SIZE_16
    nbap.c_rs_nav  c-rs-nav
        Byte array
        BIT_STRING_SIZE_16
    nbap.c_uc_nav  c-uc-nav
        Byte array
        BIT_STRING_SIZE_16
    nbap.c_us_nav  c-us-nav
        Byte array
        BIT_STRING_SIZE_16
    nbap.ca_or_p_on_l2_nav  ca-or-p-on-l2-nav
        Byte array
        BIT_STRING_SIZE_2
    nbap.case1  case1
        No value
        Case1_Cell_SetupRqstTDD
    nbap.case2  case2
        No value
        Case2_Cell_SetupRqstTDD
    nbap.cause  cause
        Unsigned 32-bit integer
    nbap.cell  cell
        No value
        Cell_CM_Rqst
    nbap.cellParameterID  cellParameterID
        Unsigned 32-bit integer
    nbap.cellPortionID  cellPortionID
        Unsigned 32-bit integer
    nbap.cellPortionLCRID  cellPortionLCRID
        Unsigned 32-bit integer
    nbap.cellSpecificCause  cellSpecificCause
        No value
        CellSpecificCauseList_SyncAdjustmntFailureTDD
    nbap.cellSyncBurstAvailable  cellSyncBurstAvailable
        No value
        CellSyncBurstAvailable_CellSyncReprtTDD
    nbap.cellSyncBurstCode  cellSyncBurstCode
        Unsigned 32-bit integer
    nbap.cellSyncBurstCodeShift  cellSyncBurstCodeShift
        Unsigned 32-bit integer
    nbap.cellSyncBurstInfo_CellSyncReprtTDD  cellSyncBurstInfo-CellSyncReprtTDD
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxNrOfReceptsPerSyncFrame_OF_CellSyncBurstInfo_CellSyncReprtTDD
    nbap.cellSyncBurstInformation  cellSyncBurstInformation
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxNrOfReceptsPerSyncFrame_OF_SynchronisationReportCharactCellSyncBurstInfoItem
    nbap.cellSyncBurstMeasInfoList_CellSyncReconfRqstTDD  cellSyncBurstMeasInfoList-CellSyncReconfRqstTDD
        No value
    nbap.cellSyncBurstMeasuredInfo  cellSyncBurstMeasuredInfo
        Unsigned 32-bit integer
        CellSyncBurstMeasInfoList_CellSyncReprtTDD
    nbap.cellSyncBurstNotAvailable  cellSyncBurstNotAvailable
        No value
    nbap.cellSyncBurstSIR  cellSyncBurstSIR
        Unsigned 32-bit integer
    nbap.cellSyncBurstTiming  cellSyncBurstTiming
        Unsigned 32-bit integer
    nbap.cellSyncBurstTimingThreshold  cellSyncBurstTimingThreshold
        Unsigned 32-bit integer
    nbap.cell_Frequency_Add_LCR_MulFreq_Cell_ReconfRqstTDD  cell-Frequency-Add-LCR-MulFreq-Cell-ReconfRqstTDD
        No value
    nbap.cell_Frequency_Delete_LCR_MulFreq_Cell_ReconfRqstTDD  cell-Frequency-Delete-LCR-MulFreq-Cell-ReconfRqstTDD
        No value
    nbap.cell_Frequency_ModifyList_LCR_MulFreq_Cell_ReconfRqstTDD  cell-Frequency-ModifyList-LCR-MulFreq-Cell-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.cell_InformationList  cell-InformationList
        Unsigned 32-bit integer
        Cell_InformationList_ResourceStatusInd
    nbap.cfn  cfn
        Unsigned 32-bit integer
    nbap.channelCoding  channelCoding
        Unsigned 32-bit integer
        TransportFormatSet_ChannelCodingType
    nbap.channelNumber  channelNumber
        Signed 32-bit integer
        INTEGER_M7_13
    nbap.chipOffset  chipOffset
        Unsigned 32-bit integer
    nbap.cid  cid
        Unsigned 32-bit integer
        C_ID
    nbap.cnavAdot  cnavAdot
        Byte array
        BIT_STRING_SIZE_25
    nbap.cnavAf0  cnavAf0
        Byte array
        BIT_STRING_SIZE_26
    nbap.cnavAf1  cnavAf1
        Byte array
        BIT_STRING_SIZE_20
    nbap.cnavAf2  cnavAf2
        Byte array
        BIT_STRING_SIZE_10
    nbap.cnavCic  cnavCic
        Byte array
        BIT_STRING_SIZE_16
    nbap.cnavCis  cnavCis
        Byte array
        BIT_STRING_SIZE_16
    nbap.cnavClockModel  cnavClockModel
        No value
        GANSS_CNAVclockModel
    nbap.cnavCrc  cnavCrc
        Byte array
        BIT_STRING_SIZE_24
    nbap.cnavCrs  cnavCrs
        Byte array
        BIT_STRING_SIZE_24
    nbap.cnavCuc  cnavCuc
        Byte array
        BIT_STRING_SIZE_21
    nbap.cnavCus  cnavCus
        Byte array
        BIT_STRING_SIZE_21
    nbap.cnavDeltaA  cnavDeltaA
        Byte array
        BIT_STRING_SIZE_26
    nbap.cnavDeltaNo  cnavDeltaNo
        Byte array
        BIT_STRING_SIZE_17
    nbap.cnavDeltaNoDot  cnavDeltaNoDot
        Byte array
        BIT_STRING_SIZE_23
    nbap.cnavDeltaOmegaDot  cnavDeltaOmegaDot
        Byte array
        BIT_STRING_SIZE_17
    nbap.cnavE  cnavE
        Byte array
        BIT_STRING_SIZE_33
    nbap.cnavISCl1ca  cnavISCl1ca
        Byte array
        BIT_STRING_SIZE_13
    nbap.cnavISCl1cd  cnavISCl1cd
        Byte array
        BIT_STRING_SIZE_13
    nbap.cnavISCl1cp  cnavISCl1cp
        Byte array
        BIT_STRING_SIZE_13
    nbap.cnavISCl2c  cnavISCl2c
        Byte array
        BIT_STRING_SIZE_13
    nbap.cnavISCl5i5  cnavISCl5i5
        Byte array
        BIT_STRING_SIZE_13
    nbap.cnavISCl5q5  cnavISCl5q5
        Byte array
        BIT_STRING_SIZE_13
    nbap.cnavIo  cnavIo
        Byte array
        BIT_STRING_SIZE_33
    nbap.cnavIoDot  cnavIoDot
        Byte array
        BIT_STRING_SIZE_15
    nbap.cnavKeplerianSet  cnavKeplerianSet
        No value
        GANSS_NavModel_CNAVKeplerianSet
    nbap.cnavMo  cnavMo
        Byte array
        BIT_STRING_SIZE_33
    nbap.cnavOMEGA0  cnavOMEGA0
        Byte array
        BIT_STRING_SIZE_33
    nbap.cnavOmega  cnavOmega
        Byte array
        BIT_STRING_SIZE_33
    nbap.cnavTgd  cnavTgd
        Byte array
        BIT_STRING_SIZE_13
    nbap.cnavToc  cnavToc
        Byte array
        BIT_STRING_SIZE_11
    nbap.cnavTop  cnavTop
        Byte array
        BIT_STRING_SIZE_11
    nbap.cnavURA0  cnavURA0
        Byte array
        BIT_STRING_SIZE_5
    nbap.cnavURA1  cnavURA1
        Byte array
        BIT_STRING_SIZE_3
    nbap.cnavURA2  cnavURA2
        Byte array
        BIT_STRING_SIZE_3
    nbap.cnavURAindex  cnavURAindex
        Byte array
        BIT_STRING_SIZE_5
    nbap.codeNumber  codeNumber
        Unsigned 32-bit integer
        INTEGER_0_127
    nbap.codingRate  codingRate
        Unsigned 32-bit integer
        TransportFormatSet_CodingRate
    nbap.combining  combining
        No value
        Combining_RL_SetupRspFDD
    nbap.commonChannelsCapacityConsumptionLaw  commonChannelsCapacityConsumptionLaw
        Unsigned 32-bit integer
    nbap.commonMACFlow_ID  commonMACFlow-ID
        Unsigned 32-bit integer
        Common_MACFlow_ID
    nbap.commonMACFlow_Specific_Info_Response  commonMACFlow-Specific-Info-Response
        Unsigned 32-bit integer
        CommonMACFlow_Specific_InfoList_Response
    nbap.commonMACFlow_Specific_Info_ResponseLCR  commonMACFlow-Specific-Info-ResponseLCR
        Unsigned 32-bit integer
        CommonMACFlow_Specific_InfoList_ResponseLCR
    nbap.commonMACFlow_Specific_Information  commonMACFlow-Specific-Information
        Unsigned 32-bit integer
        CommonMACFlow_Specific_InfoList
    nbap.commonMACFlow_Specific_InformationLCR  commonMACFlow-Specific-InformationLCR
        Unsigned 32-bit integer
        CommonMACFlow_Specific_InfoListLCR
    nbap.commonMeasurementValue  commonMeasurementValue
        Unsigned 32-bit integer
    nbap.commonMeasurementValueInformation  commonMeasurementValueInformation
        Unsigned 32-bit integer
    nbap.commonMidamble  commonMidamble
        No value
    nbap.commonPhysicalChannelID  commonPhysicalChannelID
        Unsigned 32-bit integer
    nbap.commonPhysicalChannelID768  commonPhysicalChannelID768
        Unsigned 32-bit integer
    nbap.commonPhysicalChannelId  commonPhysicalChannelId
        Unsigned 32-bit integer
    nbap.commonTransportChannelID  commonTransportChannelID
        Unsigned 32-bit integer
    nbap.common_EDCH_System_Information_ResponseLCR  common-EDCH-System-Information-ResponseLCR
        No value
    nbap.common_E_AGCH_ListLCR  common-E-AGCH-ListLCR
        Unsigned 32-bit integer
    nbap.common_E_DCHLogicalChannelInformation  common-E-DCHLogicalChannelInformation
        Unsigned 32-bit integer
        Common_E_DCH_LogicalChannel_InfoList
    nbap.common_E_DCH_AICH_Information  common-E-DCH-AICH-Information
        No value
    nbap.common_E_DCH_CQI_Info  common-E-DCH-CQI-Info
        No value
    nbap.common_E_DCH_EDPCH_Information  common-E-DCH-EDPCH-Information
        No value
        Common_E_DCH_EDPCH_InfoItem
    nbap.common_E_DCH_E_AGCH_ChannelisationCodeNumber  common-E-DCH-E-AGCH-ChannelisationCodeNumber
        Unsigned 32-bit integer
        FDD_DL_ChannelisationCodeNumber
    nbap.common_E_DCH_FDPCH_Information  common-E-DCH-FDPCH-Information
        No value
        Common_E_DCH_FDPCH_InfoItem
    nbap.common_E_DCH_HSDPCCH_Information  common-E-DCH-HSDPCCH-Information
        No value
        Common_E_DCH_HSDPCCH_InfoItem
    nbap.common_E_DCH_ImplicitRelease_Indicator  common-E-DCH-ImplicitRelease-Indicator
        Boolean
        BOOLEAN
    nbap.common_E_DCH_Information  common-E-DCH-Information
        No value
        Common_E_DCH_InfoItem
    nbap.common_E_DCH_MACdFlow_Specific_Information  common-E-DCH-MACdFlow-Specific-Information
        Unsigned 32-bit integer
        Common_E_DCH_MACdFlow_Specific_InfoList
    nbap.common_E_DCH_MACdFlow_Specific_InformationLCR  common-E-DCH-MACdFlow-Specific-InformationLCR
        Unsigned 32-bit integer
        Common_E_DCH_MACdFlow_Specific_InfoListLCR
    nbap.common_E_DCH_PreambleSignatures  common-E-DCH-PreambleSignatures
        Byte array
        PreambleSignatures
    nbap.common_E_DCH_Preamble_Control_Information  common-E-DCH-Preamble-Control-Information
        No value
        Common_E_DCH_Preamble_Control_InfoItem
    nbap.common_E_DCH_Resource_Combination_Information  common-E-DCH-Resource-Combination-Information
        Unsigned 32-bit integer
        Common_E_DCH_Resource_Combination_InfoList
    nbap.common_E_DCH_UL_DPCH_Information  common-E-DCH-UL-DPCH-Information
        No value
        Common_E_DCH_UL_DPCH_InfoItem
    nbap.common_E_HICH_ListLCR  common-E-HICH-ListLCR
        Unsigned 32-bit integer
    nbap.common_E_PUCH_InformationLCR  common-E-PUCH-InformationLCR
        No value
    nbap.common_E_RNTI_Info_LCR  common-E-RNTI-Info-LCR
        Unsigned 32-bit integer
    nbap.common_H_RNTI  common-H-RNTI
        Unsigned 32-bit integer
        HSDSCH_RNTI
    nbap.common_H_RNTI_InformationLCR  common-H-RNTI-InformationLCR
        Unsigned 32-bit integer
    nbap.common_MACFlow_ID  common-MACFlow-ID
        Unsigned 32-bit integer
    nbap.common_MACFlow_ID_LCR  common-MACFlow-ID-LCR
        Unsigned 32-bit integer
    nbap.common_MACFlow_Id  common-MACFlow-Id
        Unsigned 32-bit integer
    nbap.common_MACFlow_PriorityQueue_Information  common-MACFlow-PriorityQueue-Information
        Unsigned 32-bit integer
    nbap.common_MACFlow_PriorityQueue_InformationLCR  common-MACFlow-PriorityQueue-InformationLCR
        Unsigned 32-bit integer
        Common_MACFlow_PriorityQueue_Information
    nbap.common_e_DCH_MACdFlow_ID  common-e-DCH-MACdFlow-ID
        Unsigned 32-bit integer
        E_DCH_MACdFlow_ID
    nbap.commonmeasurementValue  commonmeasurementValue
        Unsigned 32-bit integer
    nbap.communicationContext  communicationContext
        No value
        CommunicationContextList_Reset
    nbap.communicationContextInfoList_Reset  communicationContextInfoList-Reset
        Unsigned 32-bit integer
    nbap.communicationContextType_Reset  communicationContextType-Reset
        Unsigned 32-bit integer
    nbap.communicationControlPort  communicationControlPort
        No value
        CommunicationControlPortList_Reset
    nbap.communicationControlPortID  communicationControlPortID
        Unsigned 32-bit integer
    nbap.communicationControlPortInfoList_Reset  communicationControlPortInfoList-Reset
        Unsigned 32-bit integer
    nbap.computedGainFactors  computedGainFactors
        Unsigned 32-bit integer
        RefTFCNumber
    nbap.configurationChange  configurationChange
        Unsigned 32-bit integer
        Additional_EDCH_Cell_Information_ConfigurationChange_List
    nbap.configurationGenerationID  configurationGenerationID
        Unsigned 32-bit integer
    nbap.continuousPacketConnectivityDTX_DRX_Information  continuousPacketConnectivityDTX-DRX-Information
        No value
    nbap.continuousPacketConnectivityDTX_DRX_Information_to_Modify  continuousPacketConnectivityDTX-DRX-Information-to-Modify
        No value
    nbap.continuousPacketConnectivityHS_SCCH_less_Information  continuousPacketConnectivityHS-SCCH-less-Information
        Unsigned 32-bit integer
    nbap.continuousPacketConnectivityHS_SCCH_less_Information_Response  continuousPacketConnectivityHS-SCCH-less-Information-Response
        No value
    nbap.continuousPacketConnectivity_DRX_InformationLCR  continuousPacketConnectivity-DRX-InformationLCR
        No value
    nbap.continuousPacketConnectivity_DRX_Information_to_Modify_LCR  continuousPacketConnectivity-DRX-Information-to-Modify-LCR
        No value
    nbap.cqiFeedback_CycleK  cqiFeedback-CycleK
        Unsigned 32-bit integer
        CQI_Feedback_Cycle
    nbap.cqiPowerOffset  cqiPowerOffset
        Unsigned 32-bit integer
        CQI_Power_Offset
    nbap.cqiRepetitionFactor  cqiRepetitionFactor
        Unsigned 32-bit integer
        CQI_RepetitionFactor
    nbap.criticality  criticality
        Unsigned 32-bit integer
    nbap.ctfc12bit  ctfc12bit
        Unsigned 32-bit integer
        INTEGER_0_4095
    nbap.ctfc16bit  ctfc16bit
        Unsigned 32-bit integer
        INTEGER_0_65535
    nbap.ctfc2bit  ctfc2bit
        Unsigned 32-bit integer
        INTEGER_0_3
    nbap.ctfc4bit  ctfc4bit
        Unsigned 32-bit integer
        INTEGER_0_15
    nbap.ctfc6bit  ctfc6bit
        Unsigned 32-bit integer
        INTEGER_0_63
    nbap.ctfc8bit  ctfc8bit
        Unsigned 32-bit integer
        INTEGER_0_255
    nbap.ctfcmaxbit  ctfcmaxbit
        Unsigned 32-bit integer
        INTEGER_0_maxCTFC
    nbap.dCH_ID  dCH-ID
        Unsigned 32-bit integer
    nbap.dCH_Information  dCH-Information
        No value
        DCH_Information_RL_AdditionRspTDD
    nbap.dCH_InformationResponse  dCH-InformationResponse
        Unsigned 32-bit integer
    nbap.dCH_InformationResponseList  dCH-InformationResponseList
        No value
        DCH_InformationResponseList_RL_SetupRspTDD
    nbap.dCH_InformationResponseList_RL_ReconfReady  dCH-InformationResponseList-RL-ReconfReady
        No value
    nbap.dCH_InformationResponseList_RL_ReconfRsp  dCH-InformationResponseList-RL-ReconfRsp
        No value
    nbap.dCH_SpecificInformationList  dCH-SpecificInformationList
        Unsigned 32-bit integer
        DCH_Specific_FDD_InformationList
    nbap.dCH_id  dCH-id
        Unsigned 32-bit integer
    nbap.dGANSSThreshold  dGANSSThreshold
        No value
    nbap.dGANSS_Information  dGANSS-Information
        Unsigned 32-bit integer
    nbap.dGANSS_ReferenceTime  dGANSS-ReferenceTime
        Unsigned 32-bit integer
        INTEGER_0_119
    nbap.dGANSS_SignalInformation  dGANSS-SignalInformation
        Unsigned 32-bit integer
    nbap.dGANSS_Signal_ID  dGANSS-Signal-ID
        Byte array
        BIT_STRING_SIZE_8
    nbap.dLPowerAveragingWindowSize  dLPowerAveragingWindowSize
        Unsigned 32-bit integer
    nbap.dLReferencePower  dLReferencePower
        Signed 32-bit integer
        DL_Power
    nbap.dLReferencePowerList_DL_PC_Rqst  dLReferencePowerList-DL-PC-Rqst
        Unsigned 32-bit integer
        DL_ReferencePowerInformationList
    nbap.dLTransPower  dLTransPower
        Signed 32-bit integer
        DL_Power
    nbap.dL_Code_768_Information  dL-Code-768-Information
        Unsigned 32-bit integer
        TDD_DL_Code_768_Information
    nbap.dL_Code_768_InformationModifyList_PSCH_ReconfRqst  dL-Code-768-InformationModifyList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_Code_768_InformationModify_ModifyList_RL_ReconfPrepTDD  dL-Code-768-InformationModify-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.dL_Code_Information  dL-Code-Information
        Unsigned 32-bit integer
        TDD_DL_Code_Information
    nbap.dL_Code_InformationAddList_768_PSCH_ReconfRqst  dL-Code-InformationAddList-768-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_Code_InformationAddList_LCR_PSCH_ReconfRqst  dL-Code-InformationAddList-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_Code_InformationAddList_PSCH_ReconfRqst  dL-Code-InformationAddList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_Code_InformationModifyList_PSCH_ReconfRqst  dL-Code-InformationModifyList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_Code_InformationModify_ModifyList_RL_ReconfPrepTDD  dL-Code-InformationModify-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.dL_Code_LCR_Information  dL-Code-LCR-Information
        Unsigned 32-bit integer
        TDD_DL_Code_LCR_Information
    nbap.dL_Code_LCR_InformationModifyList_PSCH_ReconfRqst  dL-Code-LCR-InformationModifyList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_Code_LCR_InformationModify_ModifyList_RL_ReconfPrepTDD  dL-Code-LCR-InformationModify-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.dL_DPCH_Information  dL-DPCH-Information
        No value
        DL_DPCH_Information_RL_SetupRqstTDD
    nbap.dL_FrameType  dL-FrameType
        Unsigned 32-bit integer
    nbap.dL_HS_PDSCH_Timeslot_Information_LCR_PSCH_ReconfRqst  dL-HS-PDSCH-Timeslot-Information-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_HS_PDSCH_Timeslot_Information_PSCH_ReconfRqst  dL-HS-PDSCH-Timeslot-Information-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_PowerBalancing_ActivationIndicator  dL-PowerBalancing-ActivationIndicator
        Unsigned 32-bit integer
    nbap.dL_PowerBalancing_Information  dL-PowerBalancing-Information
        No value
    nbap.dL_PowerBalancing_UpdatedIndicator  dL-PowerBalancing-UpdatedIndicator
        Unsigned 32-bit integer
    nbap.dL_TimeSlotISCPInfo  dL-TimeSlotISCPInfo
        Unsigned 32-bit integer
    nbap.dL_Timeslot768_Information  dL-Timeslot768-Information
        Unsigned 32-bit integer
    nbap.dL_TimeslotISCP  dL-TimeslotISCP
        Unsigned 32-bit integer
    nbap.dL_TimeslotLCR_Information  dL-TimeslotLCR-Information
        Unsigned 32-bit integer
    nbap.dL_Timeslot_768_InformationModifyList_PSCH_ReconfRqst  dL-Timeslot-768-InformationModifyList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_Timeslot_Information  dL-Timeslot-Information
        Unsigned 32-bit integer
    nbap.dL_Timeslot_Information768  dL-Timeslot-Information768
        Unsigned 32-bit integer
        DL_Timeslot768_Information
    nbap.dL_Timeslot_InformationAddList_768_PSCH_ReconfRqst  dL-Timeslot-InformationAddList-768-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_Timeslot_InformationAddList_LCR_PSCH_ReconfRqst  dL-Timeslot-InformationAddList-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_Timeslot_InformationAddList_PSCH_ReconfRqst  dL-Timeslot-InformationAddList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_Timeslot_InformationAddModify_ModifyList_RL_ReconfPrepTDD  dL-Timeslot-InformationAddModify-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
        DL_Timeslot_InformationModify_ModifyList_RL_ReconfPrepTDD
    nbap.dL_Timeslot_InformationLCR  dL-Timeslot-InformationLCR
        Unsigned 32-bit integer
        DL_TimeslotLCR_Information
    nbap.dL_Timeslot_InformationModifyList_PSCH_ReconfRqst  dL-Timeslot-InformationModifyList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_Timeslot_LCR_InformationModifyList_PSCH_ReconfRqst  dL-Timeslot-LCR-InformationModifyList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dL_Timeslot_LCR_InformationModify_ModifyList_RL_ReconfRqstTDD  dL-Timeslot-LCR-InformationModify-ModifyList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.dPCH_ID  dPCH-ID
        Unsigned 32-bit integer
    nbap.dPCH_ID768  dPCH-ID768
        Unsigned 32-bit integer
    nbap.dPC_Mode  dPC-Mode
        Unsigned 32-bit integer
    nbap.dRX_Information  dRX-Information
        No value
    nbap.dRX_Information_to_Modify  dRX-Information-to-Modify
        Unsigned 32-bit integer
    nbap.dRX_Information_to_Modify_LCR  dRX-Information-to-Modify-LCR
        Unsigned 32-bit integer
    nbap.dRX_Interruption_by_HS_DSCH  dRX-Interruption-by-HS-DSCH
        Unsigned 32-bit integer
    nbap.dSCH_ID  dSCH-ID
        Unsigned 32-bit integer
    nbap.dSCH_InformationResponseList  dSCH-InformationResponseList
        No value
        DSCH_InformationResponseList_RL_SetupRspTDD
    nbap.dSCH_InformationResponseList_RL_ReconfReady  dSCH-InformationResponseList-RL-ReconfReady
        No value
    nbap.dTX_Information  dTX-Information
        No value
    nbap.dTX_Information_to_Modify  dTX-Information-to-Modify
        Unsigned 32-bit integer
    nbap.dataBitAssistanceSgnList  dataBitAssistanceSgnList
        Unsigned 32-bit integer
        GANSS_DataBitAssistanceSgnList
    nbap.dataBitAssistancelist  dataBitAssistancelist
        Unsigned 32-bit integer
        GANSS_DataBitAssistanceList
    nbap.dataID  dataID
        Byte array
        BIT_STRING_SIZE_2
    nbap.data_id  data-id
        Unsigned 32-bit integer
    nbap.ddMode  ddMode
        Unsigned 32-bit integer
    nbap.deactivate  deactivate
        No value
    nbap.deactivation_type  deactivation-type
        Unsigned 32-bit integer
        Execution_Type
    nbap.dedicatedChannelsCapacityConsumptionLaw  dedicatedChannelsCapacityConsumptionLaw
        Unsigned 32-bit integer
    nbap.dedicatedMeasurementValue  dedicatedMeasurementValue
        Unsigned 32-bit integer
    nbap.dedicatedMeasurementValueInformation  dedicatedMeasurementValueInformation
        Unsigned 32-bit integer
    nbap.dedicatedmeasurementValue  dedicatedmeasurementValue
        Unsigned 32-bit integer
    nbap.defaultMidamble  defaultMidamble
        No value
    nbap.degreesOfLatitude  degreesOfLatitude
        Unsigned 32-bit integer
        INTEGER_0_2147483647
    nbap.degreesOfLongitude  degreesOfLongitude
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    nbap.delayed_activation_update  delayed-activation-update
        Unsigned 32-bit integer
        DelayedActivationUpdate
    nbap.deletePriorityQueue  deletePriorityQueue
        Unsigned 32-bit integer
        PriorityQueue_Id
    nbap.deletionIndicator  deletionIndicator
        Unsigned 32-bit integer
        DeletionIndicator_SystemInfoUpdate
    nbap.deltaUT1  deltaUT1
        Byte array
        BIT_STRING_SIZE_31
    nbap.deltaUT1dot  deltaUT1dot
        Byte array
        BIT_STRING_SIZE_19
    nbap.delta_SIR1  delta-SIR1
        Unsigned 32-bit integer
        DeltaSIR
    nbap.delta_SIR2  delta-SIR2
        Unsigned 32-bit integer
        DeltaSIR
    nbap.delta_SIR_after1  delta-SIR-after1
        Unsigned 32-bit integer
        DeltaSIR
    nbap.delta_SIR_after2  delta-SIR-after2
        Unsigned 32-bit integer
        DeltaSIR
    nbap.delta_n_nav  delta-n-nav
        Byte array
        BIT_STRING_SIZE_16
    nbap.delta_t_ls_utc  delta-t-ls-utc
        Byte array
        BIT_STRING_SIZE_8
    nbap.delta_t_lsf_utc  delta-t-lsf-utc
        Byte array
        BIT_STRING_SIZE_8
    nbap.denied_EDCH_RACH_resources  denied-EDCH-RACH-resources
        Unsigned 32-bit integer
        Denied_EDCH_RACH_Resources_Value
    nbap.dganss_Correction  dganss-Correction
        No value
        DGANSSCorrections
    nbap.dgps  dgps
        No value
        DGPSThresholds
    nbap.dgps_corrections  dgps-corrections
        No value
        DGPSCorrections
    nbap.directionOfAltitude  directionOfAltitude
        Unsigned 32-bit integer
    nbap.discardTimer  discardTimer
        Unsigned 32-bit integer
    nbap.diversityControlField  diversityControlField
        Unsigned 32-bit integer
    nbap.diversityIndication  diversityIndication
        Unsigned 32-bit integer
        DiversityIndication_RL_SetupRspFDD
    nbap.diversityMode  diversityMode
        Unsigned 32-bit integer
    nbap.dlTransPower  dlTransPower
        Signed 32-bit integer
        DL_Power
    nbap.dl_CCTrCH_ID  dl-CCTrCH-ID
        Unsigned 32-bit integer
        CCTrCH_ID
    nbap.dl_CodeInformation  dl-CodeInformation
        Unsigned 32-bit integer
        FDD_DL_CodeInformation
    nbap.dl_Cost  dl-Cost
        Unsigned 32-bit integer
        INTEGER_0_65535
    nbap.dl_Cost_1  dl-Cost-1
        Unsigned 32-bit integer
        INTEGER_0_65535
    nbap.dl_Cost_2  dl-Cost-2
        Unsigned 32-bit integer
        INTEGER_0_65535
    nbap.dl_DPCH_InformationAddList  dl-DPCH-InformationAddList
        No value
        DL_DPCH_InformationModify_AddList_RL_ReconfPrepTDD
    nbap.dl_DPCH_InformationAddListLCR  dl-DPCH-InformationAddListLCR
        No value
        DL_DPCH_LCR_InformationModify_AddList_RL_ReconfPrepTDD
    nbap.dl_DPCH_InformationDeleteList  dl-DPCH-InformationDeleteList
        No value
        DL_DPCH_InformationModify_DeleteList_RL_ReconfPrepTDD
    nbap.dl_DPCH_InformationList  dl-DPCH-InformationList
        No value
        DL_DPCH_InformationAddList_RL_ReconfPrepTDD
    nbap.dl_DPCH_InformationListLCR  dl-DPCH-InformationListLCR
        No value
        DL_DPCH_LCR_InformationAddList_RL_ReconfPrepTDD
    nbap.dl_DPCH_InformationModifyList  dl-DPCH-InformationModifyList
        No value
        DL_DPCH_InformationModify_ModifyList_RL_ReconfPrepTDD
    nbap.dl_DPCH_LCR_InformationModifyList  dl-DPCH-LCR-InformationModifyList
        No value
        DL_DPCH_LCR_InformationModify_ModifyList_RL_ReconfRqstTDD
    nbap.dl_DPCH_SlotFormat  dl-DPCH-SlotFormat
        Unsigned 32-bit integer
    nbap.dl_HS_PDSCH_Codelist_768_PSCH_ReconfRqst  dl-HS-PDSCH-Codelist-768-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dl_HS_PDSCH_Codelist_LCR_PSCH_ReconfRqst  dl-HS-PDSCH-Codelist-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dl_HS_PDSCH_Codelist_PSCH_ReconfRqst  dl-HS-PDSCH-Codelist-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.dl_ReferencePower  dl-ReferencePower
        Signed 32-bit integer
        DL_Power
    nbap.dl_Reference_Power  dl-Reference-Power
        Signed 32-bit integer
        DL_Power
    nbap.dl_ScramblingCode  dl-ScramblingCode
        Unsigned 32-bit integer
    nbap.dl_TFCS  dl-TFCS
        No value
        TFCS
    nbap.dl_TransportFormatSet  dl-TransportFormatSet
        No value
        TransportFormatSet
    nbap.dl_or_global_capacityCredit  dl-or-global-capacityCredit
        Unsigned 32-bit integer
    nbap.dn_utc  dn-utc
        Byte array
        BIT_STRING_SIZE_8
    nbap.downlink_Compressed_Mode_Method  downlink-Compressed-Mode-Method
        Unsigned 32-bit integer
    nbap.dsField  dsField
        Byte array
    nbap.dual_Band_Capability  dual-Band-Capability
        Unsigned 32-bit integer
    nbap.dwPCH_Power  dwPCH-Power
        Signed 32-bit integer
    nbap.dynamicParts  dynamicParts
        Unsigned 32-bit integer
        TransportFormatSet_DynamicPartList
    nbap.eDCHLogicalChannelInformation  eDCHLogicalChannelInformation
        Unsigned 32-bit integer
        E_DCH_LogicalChannelInformation
    nbap.eDCH_Additional_Modified_RL_Specific_Information_Response  eDCH-Additional-Modified-RL-Specific-Information-Response
        Unsigned 32-bit integer
        EDCH_Additional_Modified_RL_Specific_Information_Response_List
    nbap.eDCH_Additional_RL_ID  eDCH-Additional-RL-ID
        Unsigned 32-bit integer
        RL_ID
    nbap.eDCH_Additional_RL_Specific_Information_Response  eDCH-Additional-RL-Specific-Information-Response
        Unsigned 32-bit integer
        EDCH_Additional_RL_Specific_Information_Response_List
    nbap.eDCH_Grant_TypeTDD  eDCH-Grant-TypeTDD
        Unsigned 32-bit integer
        E_DCH_Grant_TypeTDD
    nbap.eDCH_Grant_Type_Information  eDCH-Grant-Type-Information
        Unsigned 32-bit integer
        E_DCH_Grant_Type_Information
    nbap.eDCH_HARQ_PO_FDD  eDCH-HARQ-PO-FDD
        Unsigned 32-bit integer
        E_DCH_HARQ_PO_FDD
    nbap.eDCH_HARQ_PO_TDD  eDCH-HARQ-PO-TDD
        Unsigned 32-bit integer
        E_DCH_HARQ_PO_TDD
    nbap.eDCH_LogicalChannelToAdd  eDCH-LogicalChannelToAdd
        Unsigned 32-bit integer
        E_DCH_LogicalChannelInformation
    nbap.eDCH_LogicalChannelToDelete  eDCH-LogicalChannelToDelete
        Unsigned 32-bit integer
        E_DCH_LogicalChannelToDelete
    nbap.eDCH_LogicalChannelToModify  eDCH-LogicalChannelToModify
        Unsigned 32-bit integer
        E_DCH_LogicalChannelToModify
    nbap.eDCH_MACdFlow_Multiplexing_List  eDCH-MACdFlow-Multiplexing-List
        Byte array
        E_DCH_MACdFlow_Multiplexing_List
    nbap.eDCH_MACdFlow_Retransmission_Timer  eDCH-MACdFlow-Retransmission-Timer
        Unsigned 32-bit integer
        E_DCH_MACdFlow_Retransmission_Timer
    nbap.eDCH_Retransmission_Timer_SchedulingInfo  eDCH-Retransmission-Timer-SchedulingInfo
        Unsigned 32-bit integer
        E_DCH_MACdFlow_Retransmission_Timer
    nbap.eI  eI
        Unsigned 32-bit integer
    nbap.eRUCCH_SYNC_UL_codes_bitmap  eRUCCH-SYNC-UL-codes-bitmap
        Byte array
        BIT_STRING_SIZE_8
    nbap.e_AGCH_And_E_RGCH_E_HICH_FDD_Scrambling_Code  e-AGCH-And-E-RGCH-E-HICH-FDD-Scrambling-Code
        Unsigned 32-bit integer
        DL_ScramblingCode
    nbap.e_AGCH_Channelisation_Code  e-AGCH-Channelisation-Code
        Unsigned 32-bit integer
        FDD_DL_ChannelisationCodeNumber
    nbap.e_AGCH_DRX_Information_LCR  e-AGCH-DRX-Information-LCR
        Unsigned 32-bit integer
    nbap.e_AGCH_DRX_Information_ResponseLCR  e-AGCH-DRX-Information-ResponseLCR
        Unsigned 32-bit integer
    nbap.e_AGCH_DRX_Parameters  e-AGCH-DRX-Parameters
        No value
    nbap.e_AGCH_DRX_Parameters_Response  e-AGCH-DRX-Parameters-Response
        No value
    nbap.e_AGCH_FDD_Code_Information  e-AGCH-FDD-Code-Information
        Unsigned 32-bit integer
    nbap.e_AGCH_ID  e-AGCH-ID
        Unsigned 32-bit integer
    nbap.e_AGCH_Id  e-AGCH-Id
        Unsigned 32-bit integer
    nbap.e_AGCH_InformationModify_768_PSCH_ReconfRqst  e-AGCH-InformationModify-768-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.e_AGCH_InformationModify_LCR_PSCH_ReconfRqst  e-AGCH-InformationModify-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.e_AGCH_InformationModify_PSCH_ReconfRqst  e-AGCH-InformationModify-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.e_AGCH_Information_768_PSCH_ReconfRqst  e-AGCH-Information-768-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.e_AGCH_Information_LCR_PSCH_ReconfRqst  e-AGCH-Information-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.e_AGCH_Information_PSCH_ReconfRqst  e-AGCH-Information-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.e_AGCH_MaxPower  e-AGCH-MaxPower
        Signed 32-bit integer
        DL_Power
    nbap.e_AGCH_PowerOffset  e-AGCH-PowerOffset
        Unsigned 32-bit integer
    nbap.e_AGCH_Specific_Information_ResponseTDD  e-AGCH-Specific-Information-ResponseTDD
        Unsigned 32-bit integer
        E_AGCH_Specific_InformationRespListTDD
    nbap.e_AGCH_TPC_StepSize  e-AGCH-TPC-StepSize
        Unsigned 32-bit integer
        TDD_TPC_DownlinkStepSize
    nbap.e_AGCH_UE_DRX_Cycle_LCR  e-AGCH-UE-DRX-Cycle-LCR
        Unsigned 32-bit integer
        UE_DRX_Cycle_LCR
    nbap.e_AGCH_UE_DRX_Offset_LCR  e-AGCH-UE-DRX-Offset-LCR
        Unsigned 32-bit integer
        UE_DRX_Offset_LCR
    nbap.e_AGCH_UE_Inactivity_Monitor_Threshold  e-AGCH-UE-Inactivity-Monitor-Threshold
        Unsigned 32-bit integer
    nbap.e_AI_Indicator  e-AI-Indicator
        Boolean
    nbap.e_DCHProvidedBitRateValue  e-DCHProvidedBitRateValue
        Unsigned 32-bit integer
    nbap.e_DCH_DDI_Value  e-DCH-DDI-Value
        Unsigned 32-bit integer
    nbap.e_DCH_DL_Control_Channel_Grant  e-DCH-DL-Control-Channel-Grant
        No value
    nbap.e_DCH_FDD_DL_Control_Channel_Info  e-DCH-FDD-DL-Control-Channel-Info
        No value
        E_DCH_FDD_DL_Control_Channel_Information
    nbap.e_DCH_FDD_DL_Control_Channel_Information  e-DCH-FDD-DL-Control-Channel-Information
        No value
    nbap.e_DCH_LCRTDD_Information  e-DCH-LCRTDD-Information
        No value
    nbap.e_DCH_LCRTDD_PhysicalLayerCategory  e-DCH-LCRTDD-PhysicalLayerCategory
        Unsigned 32-bit integer
    nbap.e_DCH_LogicalChannelToAdd  e-DCH-LogicalChannelToAdd
        Unsigned 32-bit integer
        E_DCH_LogicalChannelInformation
    nbap.e_DCH_LogicalChannelToDelete  e-DCH-LogicalChannelToDelete
        Unsigned 32-bit integer
    nbap.e_DCH_LogicalChannelToModify  e-DCH-LogicalChannelToModify
        Unsigned 32-bit integer
    nbap.e_DCH_MACdFlow_ID  e-DCH-MACdFlow-ID
        Unsigned 32-bit integer
    nbap.e_DCH_MACdFlow_ID_LCR  e-DCH-MACdFlow-ID-LCR
        Unsigned 32-bit integer
    nbap.e_DCH_MACdFlow_Specific_Info  e-DCH-MACdFlow-Specific-Info
        Unsigned 32-bit integer
        E_DCH_MACdFlow_Specific_InfoList
    nbap.e_DCH_MACdFlow_Specific_Info_to_Modify  e-DCH-MACdFlow-Specific-Info-to-Modify
        Unsigned 32-bit integer
        E_DCH_MACdFlow_Specific_InfoList_to_Modify
    nbap.e_DCH_MACdFlow_Specific_InformationResp  e-DCH-MACdFlow-Specific-InformationResp
        Unsigned 32-bit integer
    nbap.e_DCH_MACdFlow_Specific_UpdateInformation  e-DCH-MACdFlow-Specific-UpdateInformation
        Unsigned 32-bit integer
    nbap.e_DCH_MACdFlows_Information  e-DCH-MACdFlows-Information
        No value
    nbap.e_DCH_MACdFlows_Information_TDD  e-DCH-MACdFlows-Information-TDD
        Unsigned 32-bit integer
    nbap.e_DCH_MACdFlows_to_Add  e-DCH-MACdFlows-to-Add
        Unsigned 32-bit integer
        E_DCH_MACdFlows_Information_TDD
    nbap.e_DCH_MACdFlows_to_Delete  e-DCH-MACdFlows-to-Delete
        Unsigned 32-bit integer
    nbap.e_DCH_MacdFlow_Id  e-DCH-MacdFlow-Id
        Unsigned 32-bit integer
    nbap.e_DCH_Maximum_Bitrate  e-DCH-Maximum-Bitrate
        Unsigned 32-bit integer
    nbap.e_DCH_Min_Set_E_TFCI  e-DCH-Min-Set-E-TFCI
        Unsigned 32-bit integer
        E_TFCI
    nbap.e_DCH_Non_Scheduled_Grant_Info  e-DCH-Non-Scheduled-Grant-Info
        No value
    nbap.e_DCH_Non_Scheduled_Grant_Info768  e-DCH-Non-Scheduled-Grant-Info768
        No value
    nbap.e_DCH_Non_Scheduled_Grant_LCR_Info  e-DCH-Non-Scheduled-Grant-LCR-Info
        No value
    nbap.e_DCH_Non_Scheduled_Transmission_Grant  e-DCH-Non-Scheduled-Transmission-Grant
        No value
        E_DCH_Non_Scheduled_Transmission_Grant_Items
    nbap.e_DCH_PowerOffset_for_SchedulingInfo  e-DCH-PowerOffset-for-SchedulingInfo
        Unsigned 32-bit integer
    nbap.e_DCH_Processing_Overload_Level  e-DCH-Processing-Overload-Level
        Unsigned 32-bit integer
    nbap.e_DCH_QPSK_RefBetaInfo  e-DCH-QPSK-RefBetaInfo
        Unsigned 32-bit integer
    nbap.e_DCH_RL_ID  e-DCH-RL-ID
        Unsigned 32-bit integer
        RL_ID
    nbap.e_DCH_RL_InformationList_Rsp  e-DCH-RL-InformationList-Rsp
        Unsigned 32-bit integer
    nbap.e_DCH_RL_Set_ID  e-DCH-RL-Set-ID
        Unsigned 32-bit integer
        RL_Set_ID
    nbap.e_DCH_Reference_Power_Offset  e-DCH-Reference-Power-Offset
        Unsigned 32-bit integer
    nbap.e_DCH_SF_allocation  e-DCH-SF-allocation
        Unsigned 32-bit integer
    nbap.e_DCH_SPS_Deactivate_Indicator_LCR  e-DCH-SPS-Deactivate-Indicator-LCR
        No value
    nbap.e_DCH_SPS_Indicator  e-DCH-SPS-Indicator
        Byte array
    nbap.e_DCH_Scheduled_Transmission_Grant  e-DCH-Scheduled-Transmission-Grant
        No value
    nbap.e_DCH_Semi_PersistentScheduling_Information_LCR  e-DCH-Semi-PersistentScheduling-Information-LCR
        No value
    nbap.e_DCH_Semi_PersistentScheduling_Information_to_Modify_LCR  e-DCH-Semi-PersistentScheduling-Information-to-Modify-LCR
        No value
    nbap.e_DCH_TDD_Information  e-DCH-TDD-Information
        No value
    nbap.e_DCH_TDD_Information768  e-DCH-TDD-Information768
        No value
    nbap.e_DCH_TDD_Information_to_Modify  e-DCH-TDD-Information-to-Modify
        No value
    nbap.e_DCH_TDD_Information_to_Modify_List  e-DCH-TDD-Information-to-Modify-List
        Unsigned 32-bit integer
    nbap.e_DCH_TDD_MACdFlow_Specific_InformationResp  e-DCH-TDD-MACdFlow-Specific-InformationResp
        Unsigned 32-bit integer
    nbap.e_DCH_TDD_Maximum_Bitrate  e-DCH-TDD-Maximum-Bitrate
        Unsigned 32-bit integer
    nbap.e_DCH_TDD_Maximum_Bitrate768  e-DCH-TDD-Maximum-Bitrate768
        Unsigned 32-bit integer
    nbap.e_DCH_TFCI_Table_Index  e-DCH-TFCI-Table-Index
        Unsigned 32-bit integer
    nbap.e_DCH_TTI_Length  e-DCH-TTI-Length
        Unsigned 32-bit integer
    nbap.e_DCH_TTI_Length_to_Modify  e-DCH-TTI-Length-to-Modify
        Unsigned 32-bit integer
    nbap.e_DCH_serving_cell_change_successful  e-DCH-serving-cell-change-successful
        No value
    nbap.e_DCH_serving_cell_change_unsuccessful  e-DCH-serving-cell-change-unsuccessful
        No value
    nbap.e_DCH_serving_cell_choice  e-DCH-serving-cell-choice
        Unsigned 32-bit integer
    nbap.e_DCH_sixteenQAM_RefBetaInfo  e-DCH-sixteenQAM-RefBetaInfo
        Unsigned 32-bit integer
    nbap.e_DPCCH_PO  e-DPCCH-PO
        Unsigned 32-bit integer
    nbap.e_HICH_ID  e-HICH-ID
        Unsigned 32-bit integer
        E_HICH_ID_LCR
    nbap.e_HICH_ID_TDD  e-HICH-ID-TDD
        Unsigned 32-bit integer
    nbap.e_HICH_InformationModify_LCR_PSCH_ReconfRqst  e-HICH-InformationModify-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.e_HICH_Information_LCR_PSCH_ReconfRqst  e-HICH-Information-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.e_HICH_LCR_Information  e-HICH-LCR-Information
        No value
    nbap.e_HICH_MaxPower  e-HICH-MaxPower
        Signed 32-bit integer
        DL_Power
    nbap.e_HICH_PowerOffset  e-HICH-PowerOffset
        Unsigned 32-bit integer
    nbap.e_HICH_Signature_Sequence  e-HICH-Signature-Sequence
        Unsigned 32-bit integer
    nbap.e_HICH_TimeOffsetLCR  e-HICH-TimeOffsetLCR
        Unsigned 32-bit integer
    nbap.e_HICH_Type  e-HICH-Type
        Unsigned 32-bit integer
    nbap.e_PUCH_Codelist_LCR  e-PUCH-Codelist-LCR
        Unsigned 32-bit integer
    nbap.e_PUCH_Information  e-PUCH-Information
        No value
    nbap.e_PUCH_LCR_Information  e-PUCH-LCR-Information
        No value
    nbap.e_PUCH_PowerControlGAP  e-PUCH-PowerControlGAP
        Unsigned 32-bit integer
        ControlGAP
    nbap.e_PUCH_TPC_StepSize  e-PUCH-TPC-StepSize
        Unsigned 32-bit integer
        TDD_TPC_UplinkStepSize_LCR
    nbap.e_PUCH_Timeslot_Info  e-PUCH-Timeslot-Info
        Unsigned 32-bit integer
    nbap.e_PUCH_Timeslot_InfoLCR  e-PUCH-Timeslot-InfoLCR
        Unsigned 32-bit integer
    nbap.e_RGCH_2_IndexStepThreshold  e-RGCH-2-IndexStepThreshold
        Unsigned 32-bit integer
    nbap.e_RGCH_3_IndexStepThreshold  e-RGCH-3-IndexStepThreshold
        Unsigned 32-bit integer
    nbap.e_RGCH_E_HICH_Channelisation_Code  e-RGCH-E-HICH-Channelisation-Code
        Unsigned 32-bit integer
        FDD_DL_ChannelisationCodeNumber
    nbap.e_RGCH_E_HICH_FDD_Code_Information  e-RGCH-E-HICH-FDD-Code-Information
        Unsigned 32-bit integer
    nbap.e_RGCH_PowerOffset  e-RGCH-PowerOffset
        Unsigned 32-bit integer
    nbap.e_RGCH_Release_Indicator  e-RGCH-Release-Indicator
        Unsigned 32-bit integer
    nbap.e_RGCH_Signature_Sequence  e-RGCH-Signature-Sequence
        Unsigned 32-bit integer
    nbap.e_RNTI  e-RNTI
        Unsigned 32-bit integer
    nbap.e_RUCCH_Midamble  e-RUCCH-Midamble
        Unsigned 32-bit integer
        PRACH_Midamble
    nbap.e_TFCI_BetaEC_Boost  e-TFCI-BetaEC-Boost
        Unsigned 32-bit integer
    nbap.e_TFCS_Information  e-TFCS-Information
        No value
    nbap.e_TFCS_Information_TDD  e-TFCS-Information-TDD
        No value
    nbap.e_TTI  e-TTI
        Unsigned 32-bit integer
    nbap.eightPSK  eightPSK
        Unsigned 32-bit integer
        EightPSK_DL_DPCH_TimeSlotFormatTDD_LCR
    nbap.enabling_Delay  enabling-Delay
        Unsigned 32-bit integer
    nbap.endCode  endCode
        Unsigned 32-bit integer
        TDD_ChannelisationCode
    nbap.event_a  event-a
        No value
        ReportCharacteristicsType_EventA
    nbap.event_b  event-b
        No value
        ReportCharacteristicsType_EventB
    nbap.event_c  event-c
        No value
        ReportCharacteristicsType_EventC
    nbap.event_d  event-d
        No value
        ReportCharacteristicsType_EventD
    nbap.event_e  event-e
        No value
        ReportCharacteristicsType_EventE
    nbap.event_f  event-f
        No value
        ReportCharacteristicsType_EventF
    nbap.explicit  explicit
        No value
        HARQ_MemoryPartitioning_Explicit
    nbap.extendedPropagationDelay  extendedPropagationDelay
        Unsigned 32-bit integer
    nbap.extended_HS_SICH_ID  extended-HS-SICH-ID
        Unsigned 32-bit integer
    nbap.extensionValue  extensionValue
        No value
    nbap.extension_CauseLevel_PSCH_ReconfFailure  extension-CauseLevel-PSCH-ReconfFailure
        No value
    nbap.extension_CommonMeasurementObjectType_CM_Rprt  extension-CommonMeasurementObjectType-CM-Rprt
        No value
    nbap.extension_CommonMeasurementObjectType_CM_Rqst  extension-CommonMeasurementObjectType-CM-Rqst
        No value
    nbap.extension_CommonMeasurementObjectType_CM_Rsp  extension-CommonMeasurementObjectType-CM-Rsp
        No value
    nbap.extension_CommonMeasurementValue  extension-CommonMeasurementValue
        No value
    nbap.extension_CommonPhysicalChannelType_CTCH_SetupRqstTDD  extension-CommonPhysicalChannelType-CTCH-SetupRqstTDD
        No value
    nbap.extension_DedicatedMeasurementValue  extension-DedicatedMeasurementValue
        No value
    nbap.extension_GANSS_AlmanacModel  extension-GANSS-AlmanacModel
        No value
    nbap.extension_ReportCharacteristics  extension-ReportCharacteristics
        No value
    nbap.extension_ReportCharacteristicsType_MeasurementIncreaseDecreaseThreshold  extension-ReportCharacteristicsType-MeasurementIncreaseDecreaseThreshold
        No value
    nbap.extension_ReportCharacteristicsType_MeasurementThreshold  extension-ReportCharacteristicsType-MeasurementThreshold
        No value
    nbap.extension_neighbouringCellMeasurementInformation  extension-neighbouringCellMeasurementInformation
        No value
    nbap.fACH_CCTrCH_ID  fACH-CCTrCH-ID
        Unsigned 32-bit integer
        CCTrCH_ID
    nbap.fACH_InformationList  fACH-InformationList
        Unsigned 32-bit integer
        FACH_InformationList_AuditRsp
    nbap.fACH_Measurement_Occasion_Cycle_Length_Coefficient  fACH-Measurement-Occasion-Cycle-Length-Coefficient
        Unsigned 32-bit integer
    nbap.fACH_Parameters  fACH-Parameters
        No value
        FACH_ParametersList_CTCH_SetupRqstFDD
    nbap.fACH_ParametersList  fACH-ParametersList
        No value
        FACH_ParametersList_CTCH_SetupRqstTDD
    nbap.fACH_ParametersList_CTCH_ReconfRqstFDD  fACH-ParametersList-CTCH-ReconfRqstFDD
        No value
    nbap.fDD_DL_ChannelisationCodeNumber  fDD-DL-ChannelisationCodeNumber
        Unsigned 32-bit integer
    nbap.fPACHPower  fPACHPower
        Signed 32-bit integer
        FPACH_Power
    nbap.fPACH_Power  fPACH-Power
        Signed 32-bit integer
    nbap.f_DPCH_DL_Code_Number  f-DPCH-DL-Code-Number
        Unsigned 32-bit integer
        FDD_DL_ChannelisationCodeNumber
    nbap.f_DPCH_SlotFormat  f-DPCH-SlotFormat
        Unsigned 32-bit integer
    nbap.failed_HS_SICH  failed-HS-SICH
        Unsigned 32-bit integer
        HS_SICH_failed
    nbap.fdd  fdd
        No value
    nbap.fdd_DL_ChannelisationCodeNumber  fdd-DL-ChannelisationCodeNumber
        Unsigned 32-bit integer
    nbap.fdd_DL_Channelisation_CodeNumber  fdd-DL-Channelisation-CodeNumber
        Unsigned 32-bit integer
        FDD_DL_ChannelisationCodeNumber
    nbap.fdd_S_CCPCH_Offset  fdd-S-CCPCH-Offset
        Unsigned 32-bit integer
    nbap.fdd_TPC_DownlinkStepSize  fdd-TPC-DownlinkStepSize
        Unsigned 32-bit integer
    nbap.fdd_dl_ChannelisationCodeNumber  fdd-dl-ChannelisationCodeNumber
        Unsigned 32-bit integer
    nbap.firstRLS_Indicator  firstRLS-Indicator
        Unsigned 32-bit integer
    nbap.firstRLS_indicator  firstRLS-indicator
        Unsigned 32-bit integer
    nbap.first_TDD_ChannelisationCode  first-TDD-ChannelisationCode
        Unsigned 32-bit integer
        TDD_ChannelisationCode
    nbap.fit_interval_flag_nav  fit-interval-flag-nav
        Byte array
        BIT_STRING_SIZE_1
    nbap.frameAdjustmentValue  frameAdjustmentValue
        Unsigned 32-bit integer
    nbap.frameHandlingPriority  frameHandlingPriority
        Unsigned 32-bit integer
    nbap.frameOffset  frameOffset
        Unsigned 32-bit integer
    nbap.frequencyAcquisition  frequencyAcquisition
        No value
    nbap.gANSS_AlmanacModel  gANSS-AlmanacModel
        Unsigned 32-bit integer
    nbap.gANSS_CommonDataInfoReq  gANSS-CommonDataInfoReq
        No value
    nbap.gANSS_GenericDataInfoReqList  gANSS-GenericDataInfoReqList
        Unsigned 32-bit integer
    nbap.gANSS_IonosphereRegionalStormFlags  gANSS-IonosphereRegionalStormFlags
        No value
    nbap.gANSS_SatelliteInformationKP  gANSS-SatelliteInformationKP
        Unsigned 32-bit integer
    nbap.gANSS_SignalId  gANSS-SignalId
        Unsigned 32-bit integer
        GANSS_Signal_ID
    nbap.gANSS_StatusHealth  gANSS-StatusHealth
        Unsigned 32-bit integer
    nbap.gANSS_iod  gANSS-iod
        Byte array
        BIT_STRING_SIZE_10
    nbap.gANSS_keplerianParameters  gANSS-keplerianParameters
        No value
        GANSS_KeplerianParametersAlm
    nbap.gPSInformation  gPSInformation
        Unsigned 32-bit integer
        GPS_Information
    nbap.gainFactor  gainFactor
        Unsigned 32-bit integer
    nbap.ganssAddClockModels  ganssAddClockModels
        Unsigned 32-bit integer
        GANSS_AddClockModels
    nbap.ganssAddOrbitModels  ganssAddOrbitModels
        Unsigned 32-bit integer
        GANSS_AddOrbitModels
    nbap.ganssClockModel  ganssClockModel
        Unsigned 32-bit integer
        GANSS_Clock_Model
    nbap.ganssDataBits  ganssDataBits
        Byte array
        BIT_STRING_SIZE_1_1024
    nbap.ganssDay  ganssDay
        Unsigned 32-bit integer
        INTEGER_0_8191
    nbap.ganssID1  ganssID1
        Unsigned 32-bit integer
        GANSS_AuxInfoGANSS_ID1
    nbap.ganssID3  ganssID3
        Unsigned 32-bit integer
        GANSS_AuxInfoGANSS_ID3
    nbap.ganssOrbitModel  ganssOrbitModel
        Unsigned 32-bit integer
        GANSS_Orbit_Model
    nbap.ganssSatInfoNav  ganssSatInfoNav
        Unsigned 32-bit integer
        GANSS_Sat_Info_Nav
    nbap.ganssSatInfoNavList  ganssSatInfoNavList
        Unsigned 32-bit integer
        Ganss_Sat_Info_AddNavList
    nbap.ganssTod  ganssTod
        Unsigned 32-bit integer
        INTEGER_0_59_
    nbap.ganss_Almanac  ganss-Almanac
        Boolean
        BOOLEAN
    nbap.ganss_DataBitInterval  ganss-DataBitInterval
        Unsigned 32-bit integer
        INTEGER_0_15
    nbap.ganss_Data_Bit_Assistance  ganss-Data-Bit-Assistance
        No value
    nbap.ganss_Data_Bit_Assistance_Req  ganss-Data-Bit-Assistance-Req
        No value
        GANSS_Data_Bit_Assistance_ReqItem
    nbap.ganss_Data_Bit_Assistance_ReqList  ganss-Data-Bit-Assistance-ReqList
        No value
    nbap.ganss_Id  ganss-Id
        Unsigned 32-bit integer
    nbap.ganss_Ionospheric_Model  ganss-Ionospheric-Model
        No value
    nbap.ganss_Navigation_Model_And_Time_Recovery  ganss-Navigation-Model-And-Time-Recovery
        Boolean
        BOOLEAN
    nbap.ganss_Real_Time_Integrity  ganss-Real-Time-Integrity
        Boolean
        BOOLEAN
    nbap.ganss_Rx_Pos  ganss-Rx-Pos
        No value
    nbap.ganss_SatelliteInfo  ganss-SatelliteInfo
        Unsigned 32-bit integer
    nbap.ganss_SatelliteInfo_item  ganss-SatelliteInfo item
        Unsigned 32-bit integer
        INTEGER_0_63
    nbap.ganss_SignalId  ganss-SignalId
        Unsigned 32-bit integer
        GANSS_Signal_ID
    nbap.ganss_Time_Model  ganss-Time-Model
        No value
    nbap.ganss_Time_Model_GNSS_GNSS  ganss-Time-Model-GNSS-GNSS
        Byte array
        BIT_STRING_SIZE_9
    nbap.ganss_Transmission_Time  ganss-Transmission-Time
        No value
    nbap.ganss_UTC_Model  ganss-UTC-Model
        Boolean
        BOOLEAN
    nbap.ganss_UTC_TIME  ganss-UTC-TIME
        No value
        GANSS_UTC_Model
    nbap.ganss_af_one_alm  ganss-af-one-alm
        Byte array
        BIT_STRING_SIZE_11
    nbap.ganss_af_zero_alm  ganss-af-zero-alm
        Byte array
        BIT_STRING_SIZE_14
    nbap.ganss_delta_I_alm  ganss-delta-I-alm
        Byte array
        BIT_STRING_SIZE_11
    nbap.ganss_delta_a_sqrt_alm  ganss-delta-a-sqrt-alm
        Byte array
        BIT_STRING_SIZE_17
    nbap.ganss_e_alm  ganss-e-alm
        Byte array
        BIT_STRING_SIZE_11
    nbap.ganss_e_nav  ganss-e-nav
        Byte array
        BIT_STRING_SIZE_32
    nbap.ganss_m_zero_alm  ganss-m-zero-alm
        Byte array
        BIT_STRING_SIZE_16
    nbap.ganss_omega_alm  ganss-omega-alm
        Byte array
        BIT_STRING_SIZE_16
    nbap.ganss_omega_nav  ganss-omega-nav
        Byte array
        BIT_STRING_SIZE_32
    nbap.ganss_omegadot_alm  ganss-omegadot-alm
        Byte array
        BIT_STRING_SIZE_11
    nbap.ganss_omegazero_alm  ganss-omegazero-alm
        Byte array
        BIT_STRING_SIZE_16
    nbap.ganss_prc  ganss-prc
        Signed 32-bit integer
        INTEGER_M2047_2047
    nbap.ganss_rrc  ganss-rrc
        Signed 32-bit integer
        INTEGER_M127_127
    nbap.ganss_svhealth_alm  ganss-svhealth-alm
        Byte array
        BIT_STRING_SIZE_4
    nbap.ganss_t_a0  ganss-t-a0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    nbap.ganss_t_a1  ganss-t-a1
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    nbap.ganss_t_a2  ganss-t-a2
        Signed 32-bit integer
        INTEGER_M64_63
    nbap.ganss_time_model_Ref_Time  ganss-time-model-Ref-Time
        Unsigned 32-bit integer
        INTEGER_0_37799
    nbap.ganss_wk_number  ganss-wk-number
        Unsigned 32-bit integer
        INTEGER_0_255
    nbap.generalCause  generalCause
        No value
        GeneralCauseList_RL_SetupFailureFDD
    nbap.genericTrafficCategory  genericTrafficCategory
        Byte array
    nbap.gloAkmDeltaTA  gloAkmDeltaTA
        Byte array
        BIT_STRING_SIZE_22
    nbap.gloAlmCA  gloAlmCA
        Byte array
        BIT_STRING_SIZE_1
    nbap.gloAlmDeltaIA  gloAlmDeltaIA
        Byte array
        BIT_STRING_SIZE_18
    nbap.gloAlmDeltaTdotA  gloAlmDeltaTdotA
        Byte array
        BIT_STRING_SIZE_7
    nbap.gloAlmEpsilonA  gloAlmEpsilonA
        Byte array
        BIT_STRING_SIZE_15
    nbap.gloAlmHA  gloAlmHA
        Byte array
        BIT_STRING_SIZE_5
    nbap.gloAlmLambdaA  gloAlmLambdaA
        Byte array
        BIT_STRING_SIZE_21
    nbap.gloAlmMA  gloAlmMA
        Byte array
        BIT_STRING_SIZE_2
    nbap.gloAlmNA  gloAlmNA
        Byte array
        BIT_STRING_SIZE_11
    nbap.gloAlmOmegaA  gloAlmOmegaA
        Byte array
        BIT_STRING_SIZE_16
    nbap.gloAlmTauA  gloAlmTauA
        Byte array
        BIT_STRING_SIZE_10
    nbap.gloAlmTlambdaA  gloAlmTlambdaA
        Byte array
        BIT_STRING_SIZE_21
    nbap.gloAlmnA  gloAlmnA
        Byte array
        BIT_STRING_SIZE_5
    nbap.gloDeltaTau  gloDeltaTau
        Byte array
        BIT_STRING_SIZE_5
    nbap.gloEn  gloEn
        Byte array
        BIT_STRING_SIZE_5
    nbap.gloGamma  gloGamma
        Byte array
        BIT_STRING_SIZE_11
    nbap.gloM  gloM
        Byte array
        BIT_STRING_SIZE_2
    nbap.gloP1  gloP1
        Byte array
        BIT_STRING_SIZE_2
    nbap.gloP2  gloP2
        Byte array
        BIT_STRING_SIZE_1
    nbap.gloTau  gloTau
        Byte array
        BIT_STRING_SIZE_22
    nbap.gloX  gloX
        Byte array
        BIT_STRING_SIZE_27
    nbap.gloXdot  gloXdot
        Byte array
        BIT_STRING_SIZE_24
    nbap.gloXdotdot  gloXdotdot
        Byte array
        BIT_STRING_SIZE_5
    nbap.gloY  gloY
        Byte array
        BIT_STRING_SIZE_27
    nbap.gloYdot  gloYdot
        Byte array
        BIT_STRING_SIZE_24
    nbap.gloYdotdot  gloYdotdot
        Byte array
        BIT_STRING_SIZE_5
    nbap.gloZ  gloZ
        Byte array
        BIT_STRING_SIZE_27
    nbap.gloZdot  gloZdot
        Byte array
        BIT_STRING_SIZE_24
    nbap.gloZdotdot  gloZdotdot
        Byte array
        BIT_STRING_SIZE_5
    nbap.global  global
        Object Identifier
        OBJECT_IDENTIFIER
    nbap.glonassClockModel  glonassClockModel
        No value
        GANSS_GLONASSclockModel
    nbap.glonassECEF  glonassECEF
        No value
        GANSS_NavModel_GLONASSecef
    nbap.gnss_to_id  gnss-to-id
        Unsigned 32-bit integer
    nbap.gps_a_sqrt_alm  gps-a-sqrt-alm
        Byte array
        BIT_STRING_SIZE_24
    nbap.gps_af_one_alm  gps-af-one-alm
        Byte array
        BIT_STRING_SIZE_11
    nbap.gps_af_zero_alm  gps-af-zero-alm
        Byte array
        BIT_STRING_SIZE_11
    nbap.gps_almanac  gps-almanac
        No value
    nbap.gps_delta_I_alm  gps-delta-I-alm
        Byte array
        BIT_STRING_SIZE_16
    nbap.gps_e_alm  gps-e-alm
        Byte array
        BIT_STRING_SIZE_16
    nbap.gps_e_nav  gps-e-nav
        Byte array
        BIT_STRING_SIZE_32
    nbap.gps_ionos_model  gps-ionos-model
        No value
        GPS_Ionospheric_Model
    nbap.gps_navandrecovery  gps-navandrecovery
        Unsigned 32-bit integer
        GPS_NavigationModel_and_TimeRecovery
    nbap.gps_omega_alm  gps-omega-alm
        Byte array
        BIT_STRING_SIZE_24
    nbap.gps_omega_nav  gps-omega-nav
        Byte array
        BIT_STRING_SIZE_32
    nbap.gps_rt_integrity  gps-rt-integrity
        Unsigned 32-bit integer
        GPS_RealTime_Integrity
    nbap.gps_toa_alm  gps-toa-alm
        Byte array
        BIT_STRING_SIZE_8
    nbap.gps_utc_model  gps-utc-model
        No value
    nbap.gpsrxpos  gpsrxpos
        No value
        GPS_RX_POS
    nbap.gpstow  gpstow
        Unsigned 32-bit integer
    nbap.granted_EDCH_RACH_resources  granted-EDCH-RACH-resources
        Unsigned 32-bit integer
        Granted_EDCH_RACH_Resources_Value
    nbap.hARQ_Info_for_E_DCH  hARQ-Info-for-E-DCH
        Unsigned 32-bit integer
    nbap.hARQ_MemoryPartitioning  hARQ-MemoryPartitioning
        Unsigned 32-bit integer
    nbap.hARQ_MemoryPartitioningList  hARQ-MemoryPartitioningList
        Unsigned 32-bit integer
    nbap.hARQ_Preamble_Mode  hARQ-Preamble-Mode
        Unsigned 32-bit integer
    nbap.hARQ_Preamble_Mode_Activation_Indicator  hARQ-Preamble-Mode-Activation-Indicator
        Unsigned 32-bit integer
    nbap.hARQ_Process_Allocation_NonSched_2ms  hARQ-Process-Allocation-NonSched-2ms
        Byte array
        HARQ_Process_Allocation_2ms_EDCH
    nbap.hARQ_Process_Allocation_NonSched_2ms_EDCH  hARQ-Process-Allocation-NonSched-2ms-EDCH
        Byte array
        HARQ_Process_Allocation_2ms_EDCH
    nbap.hARQ_Process_Allocation_Scheduled_2ms_EDCH  hARQ-Process-Allocation-Scheduled-2ms-EDCH
        Byte array
        HARQ_Process_Allocation_2ms_EDCH
    nbap.hCR_TDD  hCR-TDD
        No value
        MICH_HCR_Parameters_CTCH_SetupRqstTDD
    nbap.hSDPA_PICH_notShared_ID  hSDPA-PICH-notShared-ID
        Unsigned 32-bit integer
        CommonPhysicalChannelID
    nbap.hSDPA_associated_PICH_Info  hSDPA-associated-PICH-Info
        Unsigned 32-bit integer
        HSDPA_Associated_PICH_Information
    nbap.hSDPA_associated_PICH_InfoLCR  hSDPA-associated-PICH-InfoLCR
        Unsigned 32-bit integer
        HSDPA_Associated_PICH_InformationLCR
    nbap.hSDSCH_Common_System_Information_ResponseLCR  hSDSCH-Common-System-Information-ResponseLCR
        No value
    nbap.hSDSCH_Configured_Indicator  hSDSCH-Configured-Indicator
        Unsigned 32-bit integer
    nbap.hSDSCH_FDD_Information  hSDSCH-FDD-Information
        No value
    nbap.hSDSCH_FDD_Information_Response  hSDSCH-FDD-Information-Response
        No value
    nbap.hSDSCH_InitialWindowSize  hSDSCH-InitialWindowSize
        Unsigned 32-bit integer
    nbap.hSDSCH_Initial_Capacity_Allocation  hSDSCH-Initial-Capacity-Allocation
        Unsigned 32-bit integer
    nbap.hSDSCH_MACdFlow_Specific_Info  hSDSCH-MACdFlow-Specific-Info
        Unsigned 32-bit integer
        HSDSCH_MACdFlow_Specific_InfoList
    nbap.hSDSCH_MACdFlows_Information  hSDSCH-MACdFlows-Information
        No value
    nbap.hSDSCH_MACdPDUSizeFormat  hSDSCH-MACdPDUSizeFormat
        Unsigned 32-bit integer
    nbap.hSDSCH_Paging_System_Information_ResponseLCR  hSDSCH-Paging-System-Information-ResponseLCR
        Unsigned 32-bit integer
    nbap.hSDSCH_Physical_Layer_Category  hSDSCH-Physical-Layer-Category
        Unsigned 32-bit integer
        INTEGER_1_64_
    nbap.hSDSCH_RNTI  hSDSCH-RNTI
        Unsigned 32-bit integer
    nbap.hSDSCH_TBSizeTableIndicator  hSDSCH-TBSizeTableIndicator
        Unsigned 32-bit integer
    nbap.hSPDSCH_Code_Index  hSPDSCH-Code-Index
        Unsigned 32-bit integer
    nbap.hSPDSCH_First_Code_Index  hSPDSCH-First-Code-Index
        Unsigned 32-bit integer
    nbap.hSPDSCH_Power  hSPDSCH-Power
        Signed 32-bit integer
        DL_Power
    nbap.hSPDSCH_RL_ID  hSPDSCH-RL-ID
        Unsigned 32-bit integer
        RL_ID
    nbap.hSPDSCH_Second_Code_Index  hSPDSCH-Second-Code-Index
        Unsigned 32-bit integer
    nbap.hSPDSCH_Second_Code_Support  hSPDSCH-Second-Code-Support
        Boolean
    nbap.hSSCCHCodeChangeGrant  hSSCCHCodeChangeGrant
        Unsigned 32-bit integer
        HSSCCH_Code_Change_Grant
    nbap.hSSCCH_CodeChangeGrant  hSSCCH-CodeChangeGrant
        Unsigned 32-bit integer
        HSSCCH_Code_Change_Grant
    nbap.hSSCCH_Power  hSSCCH-Power
        Signed 32-bit integer
        DL_Power
    nbap.hSSICH_Info  hSSICH-Info
        No value
    nbap.hSSICH_Info768  hSSICH-Info768
        No value
    nbap.hSSICH_InfoLCR  hSSICH-InfoLCR
        No value
    nbap.hSSICH_ReferenceSignal_InformationLCR  hSSICH-ReferenceSignal-InformationLCR
        No value
    nbap.hSSICH_SIRTarget  hSSICH-SIRTarget
        Signed 32-bit integer
        UL_SIR
    nbap.hSSICH_TPC_StepSize  hSSICH-TPC-StepSize
        Unsigned 32-bit integer
        TDD_TPC_UplinkStepSize_LCR
    nbap.hS_DSCHProvidedBitRateValue  hS-DSCHProvidedBitRateValue
        Unsigned 32-bit integer
    nbap.hS_DSCHRequiredPowerPerUEInformation  hS-DSCHRequiredPowerPerUEInformation
        Unsigned 32-bit integer
    nbap.hS_DSCHRequiredPowerPerUEWeight  hS-DSCHRequiredPowerPerUEWeight
        Unsigned 32-bit integer
    nbap.hS_DSCHRequiredPowerValue  hS-DSCHRequiredPowerValue
        Unsigned 32-bit integer
    nbap.hS_DSCH_DRX_Cycle_FACH  hS-DSCH-DRX-Cycle-FACH
        Unsigned 32-bit integer
    nbap.hS_DSCH_FDD_Secondary_Serving_Information  hS-DSCH-FDD-Secondary-Serving-Information
        No value
    nbap.hS_DSCH_FDD_Secondary_Serving_Information_Response  hS-DSCH-FDD-Secondary-Serving-Information-Response
        No value
    nbap.hS_DSCH_FDD_Secondary_Serving_Information_To_Modify_Unsynchronised  hS-DSCH-FDD-Secondary-Serving-Information-To-Modify-Unsynchronised
        No value
    nbap.hS_DSCH_FDD_Secondary_Serving_Update_Information  hS-DSCH-FDD-Secondary-Serving-Update-Information
        No value
    nbap.hS_DSCH_RX_Burst_FACH  hS-DSCH-RX-Burst-FACH
        Unsigned 32-bit integer
    nbap.hS_DSCH_SPS_Deactivate_Indicator_LCR  hS-DSCH-SPS-Deactivate-Indicator-LCR
        No value
    nbap.hS_DSCH_SPS_Operation_Indicator  hS-DSCH-SPS-Operation-Indicator
        Unsigned 32-bit integer
    nbap.hS_DSCH_SPS_Reservation_Indicator  hS-DSCH-SPS-Reservation-Indicator
        Unsigned 32-bit integer
        SPS_Reservation_Indicator
    nbap.hS_DSCH_Secondary_Serving_Cell_Change_Information_Response  hS-DSCH-Secondary-Serving-Cell-Change-Information-Response
        No value
    nbap.hS_DSCH_Secondary_Serving_Information_To_Modify  hS-DSCH-Secondary-Serving-Information-To-Modify
        No value
    nbap.hS_DSCH_Secondary_Serving_Remove  hS-DSCH-Secondary-Serving-Remove
        No value
    nbap.hS_DSCH_Secondary_Serving_cell_choice  hS-DSCH-Secondary-Serving-cell-choice
        Unsigned 32-bit integer
        HS_DSCH_Secondary_Serving_cell_change_choice
    nbap.hS_DSCH_Semi_PersistentScheduling_Information_LCR  hS-DSCH-Semi-PersistentScheduling-Information-LCR
        No value
    nbap.hS_DSCH_Semi_PersistentScheduling_Information_to_Modify_LCR  hS-DSCH-Semi-PersistentScheduling-Information-to-Modify-LCR
        No value
    nbap.hS_DSCH_serving_cell_choice  hS-DSCH-serving-cell-choice
        Unsigned 32-bit integer
    nbap.hS_HS_DSCH_Secondary_Serving_Remove  hS-HS-DSCH-Secondary-Serving-Remove
        No value
        HS_DSCH_Secondary_Serving_Remove
    nbap.hS_PDSCH_Code_Change_Indicator  hS-PDSCH-Code-Change-Indicator
        Unsigned 32-bit integer
    nbap.hS_PDSCH_FDD_Code_Information_PSCH_ReconfRqst  hS-PDSCH-FDD-Code-Information-PSCH-ReconfRqst
        No value
        HS_PDSCH_FDD_Code_Information
    nbap.hS_PDSCH_HS_SCCH_E_AGCH_E_RGCH_E_HICH_MaxPower_PSCH_ReconfRqst  hS-PDSCH-HS-SCCH-E-AGCH-E-RGCH-E-HICH-MaxPower-PSCH-ReconfRqst
        Unsigned 32-bit integer
        MaximumTransmissionPower
    nbap.hS_PDSCH_HS_SCCH_ScramblingCode_PSCH_ReconfRqst  hS-PDSCH-HS-SCCH-ScramblingCode-PSCH-ReconfRqst
        Unsigned 32-bit integer
        DL_ScramblingCode
    nbap.hS_PDSCH_Offset  hS-PDSCH-Offset
        Unsigned 32-bit integer
        TDD_PhysicalChannelOffset
    nbap.hS_PDSCH_Start_code_number  hS-PDSCH-Start-code-number
        Unsigned 32-bit integer
    nbap.hS_SCCH_Associated_HS_SICH  hS-SCCH-Associated-HS-SICH
        No value
    nbap.hS_SCCH_CodeNumber  hS-SCCH-CodeNumber
        Unsigned 32-bit integer
    nbap.hS_SCCH_DRX_Information_LCR  hS-SCCH-DRX-Information-LCR
        No value
    nbap.hS_SCCH_DRX_Information_ResponseLCR  hS-SCCH-DRX-Information-ResponseLCR
        No value
    nbap.hS_SCCH_FDD_Code_Information_PSCH_ReconfRqst  hS-SCCH-FDD-Code-Information-PSCH-ReconfRqst
        Unsigned 32-bit integer
        HS_SCCH_FDD_Code_Information
    nbap.hS_SCCH_ID  hS-SCCH-ID
        Unsigned 32-bit integer
    nbap.hS_SCCH_ID_LCR  hS-SCCH-ID-LCR
        Unsigned 32-bit integer
    nbap.hS_SCCH_Inactivity_Threshold_for_UE_DRX_Cycle_LCR  hS-SCCH-Inactivity-Threshold-for-UE-DRX-Cycle-LCR
        Unsigned 32-bit integer
        Inactivity_Threshold_for_UE_DRX_Cycle_LCR
    nbap.hS_SCCH_InformationModify_LCR_PSCH_ReconfRqst  hS-SCCH-InformationModify-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.hS_SCCH_InformationModify_PSCH_ReconfRqst  hS-SCCH-InformationModify-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.hS_SCCH_Information_LCR_PSCH_ReconfRqst  hS-SCCH-Information-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.hS_SCCH_Information_PSCH_ReconfRqst  hS-SCCH-Information-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.hS_SCCH_MaxPower  hS-SCCH-MaxPower
        Signed 32-bit integer
        DL_Power
    nbap.hS_SCCH_PreconfiguredCodes  hS-SCCH-PreconfiguredCodes
        Unsigned 32-bit integer
    nbap.hS_SCCH_UE_DRX_Cycle_LCR  hS-SCCH-UE-DRX-Cycle-LCR
        Unsigned 32-bit integer
        UE_DRX_Cycle_LCR
    nbap.hS_SCCH_UE_DRX_Offset_LCR  hS-SCCH-UE-DRX-Offset-LCR
        Unsigned 32-bit integer
        UE_DRX_Offset_LCR
    nbap.hS_SICH_Information  hS-SICH-Information
        No value
        HS_SICH_Information_PSCH_ReconfRqst
    nbap.hS_SICH_InformationList_for_HS_DSCH_SPS  hS-SICH-InformationList-for-HS-DSCH-SPS
        Unsigned 32-bit integer
    nbap.hS_SICH_Information_768  hS-SICH-Information-768
        No value
        HS_SICH_Information_768_PSCH_ReconfRqst
    nbap.hS_SICH_Information_LCR  hS-SICH-Information-LCR
        No value
        HS_SICH_Information_LCR_PSCH_ReconfRqst
    nbap.hS_SICH_Mapping_Index  hS-SICH-Mapping-Index
        Unsigned 32-bit integer
    nbap.hS_SICH_Type  hS-SICH-Type
        Unsigned 32-bit integer
    nbap.hS_Secondary_Serving_cell_change_successful  hS-Secondary-Serving-cell-change-successful
        No value
    nbap.hS_Secondary_Serving_cell_change_unsuccessful  hS-Secondary-Serving-cell-change-unsuccessful
        No value
    nbap.hS_serving_cell_change_successful  hS-serving-cell-change-successful
        No value
    nbap.hS_serving_cell_change_unsuccessful  hS-serving-cell-change-unsuccessful
        No value
    nbap.harqInfo  harqInfo
        Unsigned 32-bit integer
        HARQ_Info_for_E_DCH
    nbap.ho_word_nav  ho-word-nav
        Byte array
        BIT_STRING_SIZE_22
    nbap.hours  hours
        Unsigned 32-bit integer
        ReportPeriodicity_Scaledhour
    nbap.hsDSCHMacdFlow_Id  hsDSCHMacdFlow-Id
        Unsigned 32-bit integer
        HSDSCH_MACdFlow_ID
    nbap.hsDSCH_MACdFlow_ID  hsDSCH-MACdFlow-ID
        Unsigned 32-bit integer
    nbap.hsDSCH_MACdFlow_Specific_Info_to_Modify  hsDSCH-MACdFlow-Specific-Info-to-Modify
        Unsigned 32-bit integer
        HSDSCH_MACdFlow_Specific_InfoList_to_Modify
    nbap.hsDSCH_MACdFlow_Specific_InformationResp  hsDSCH-MACdFlow-Specific-InformationResp
        Unsigned 32-bit integer
    nbap.hsSCCHCodeChangeIndicator  hsSCCHCodeChangeIndicator
        Unsigned 32-bit integer
        HSSCCH_CodeChangeIndicator
    nbap.hsSCCH_Specific_Information_ResponseFDD  hsSCCH-Specific-Information-ResponseFDD
        Unsigned 32-bit integer
        HSSCCH_Specific_InformationRespListFDD
    nbap.hsSCCH_Specific_Information_ResponseLCR  hsSCCH-Specific-Information-ResponseLCR
        Unsigned 32-bit integer
        HSSCCH_Specific_InformationRespListLCR
    nbap.hsSCCH_Specific_Information_ResponseTDD  hsSCCH-Specific-Information-ResponseTDD
        Unsigned 32-bit integer
        HSSCCH_Specific_InformationRespListTDD
    nbap.hsSCCH_Specific_Information_ResponseTDDLCR  hsSCCH-Specific-Information-ResponseTDDLCR
        Unsigned 32-bit integer
        HSSCCH_Specific_InformationRespListTDDLCR
    nbap.hsSICH_ID  hsSICH-ID
        Unsigned 32-bit integer
        HS_SICH_ID
    nbap.hsdpa_PICH_SharedPCH_ID  hsdpa-PICH-SharedPCH-ID
        Unsigned 32-bit integer
        CommonPhysicalChannelID
    nbap.hsdpa_PICH_Shared_with_PCH  hsdpa-PICH-Shared-with-PCH
        No value
    nbap.hsdpa_PICH_notShared_with_PCH  hsdpa-PICH-notShared-with-PCH
        No value
    nbap.hsdpa_PICH_notShared_with_PCHLCR  hsdpa-PICH-notShared-with-PCHLCR
        No value
    nbap.hsdsch_Common_Information  hsdsch-Common-Information
        No value
    nbap.hsdsch_Common_InformationLCR  hsdsch-Common-InformationLCR
        No value
    nbap.hsdsch_RNTI  hsdsch-RNTI
        Unsigned 32-bit integer
    nbap.hspdsch_RL_ID  hspdsch-RL-ID
        Unsigned 32-bit integer
        RL_ID
    nbap.hsscch_PowerOffset  hsscch-PowerOffset
        Unsigned 32-bit integer
    nbap.iB_OC_ID  iB-OC-ID
        Unsigned 32-bit integer
    nbap.iB_SG_DATA  iB-SG-DATA
        Byte array
    nbap.iB_SG_POS  iB-SG-POS
        Unsigned 32-bit integer
    nbap.iB_SG_REP  iB-SG-REP
        Unsigned 32-bit integer
    nbap.iB_Type  iB-Type
        Unsigned 32-bit integer
    nbap.iECriticality  iECriticality
        Unsigned 32-bit integer
        Criticality
    nbap.iE_Extensions  iE-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    nbap.iE_ID  iE-ID
        Unsigned 32-bit integer
        ProtocolIE_ID
    nbap.iEsCriticalityDiagnostics  iEsCriticalityDiagnostics
        Unsigned 32-bit integer
        CriticalityDiagnostics_IE_List
    nbap.iPDL_FDD_Parameters  iPDL-FDD-Parameters
        No value
    nbap.iPDL_Indicator  iPDL-Indicator
        Unsigned 32-bit integer
    nbap.iPDL_TDD_Parameters  iPDL-TDD-Parameters
        No value
    nbap.iPDL_TDD_Parameters_LCR  iPDL-TDD-Parameters-LCR
        No value
    nbap.iP_Length  iP-Length
        Unsigned 32-bit integer
    nbap.iP_Offset  iP-Offset
        Unsigned 32-bit integer
        INTEGER_0_9
    nbap.iP_PCCPCH  iP-PCCPCH
        Unsigned 32-bit integer
    nbap.iP_Slot  iP-Slot
        Unsigned 32-bit integer
        INTEGER_0_14
    nbap.iP_SpacingFDD  iP-SpacingFDD
        Unsigned 32-bit integer
    nbap.iP_SpacingTDD  iP-SpacingTDD
        Unsigned 32-bit integer
    nbap.iP_Start  iP-Start
        Unsigned 32-bit integer
        INTEGER_0_4095
    nbap.iP_Sub  iP-Sub
        Unsigned 32-bit integer
    nbap.iSCP  iSCP
        Unsigned 32-bit integer
        UL_TimeslotISCP_Value
    nbap.i_zero_nav  i-zero-nav
        Byte array
        BIT_STRING_SIZE_32
    nbap.id  id
        Unsigned 32-bit integer
        ProtocolIE_ID
    nbap.idleIntervalInfo_k  idleIntervalInfo-k
        Unsigned 32-bit integer
    nbap.idleIntervalInfo_offset  idleIntervalInfo-offset
        Unsigned 32-bit integer
        INTEGER_0_7
    nbap.idot_nav  idot-nav
        Byte array
        BIT_STRING_SIZE_14
    nbap.ie_Extensions  ie-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    nbap.implicit  implicit
        No value
        HARQ_MemoryPartitioning_Implicit
    nbap.inactivity_Threshold_for_UE_DRX_Cycle  inactivity-Threshold-for-UE-DRX-Cycle
        Unsigned 32-bit integer
    nbap.inactivity_Threshold_for_UE_DTX_Cycle2  inactivity-Threshold-for-UE-DTX-Cycle2
        Unsigned 32-bit integer
    nbap.inactivity_Threshold_for_UE_Grant_Monitoring  inactivity-Threshold-for-UE-Grant-Monitoring
        Unsigned 32-bit integer
    nbap.informationAvailable  informationAvailable
        No value
    nbap.information_Type_Item  information-Type-Item
        Unsigned 32-bit integer
    nbap.information_thresholds  information-thresholds
        Unsigned 32-bit integer
        InformationThresholds
    nbap.informationnotAvailable  informationnotAvailable
        No value
    nbap.initialDLTransPower  initialDLTransPower
        Signed 32-bit integer
        DL_Power
    nbap.initialDL_TransmissionPower  initialDL-TransmissionPower
        Signed 32-bit integer
        DL_Power
    nbap.initialDL_transmissionPower  initialDL-transmissionPower
        Signed 32-bit integer
        DL_Power
    nbap.initialOffset  initialOffset
        Unsigned 32-bit integer
        INTEGER_0_255
    nbap.initialPhase  initialPhase
        Unsigned 32-bit integer
        INTEGER_0_1048575_
    nbap.initial_DL_Transmission_Power  initial-DL-Transmission-Power
        Signed 32-bit integer
        DL_Power
    nbap.initial_HS_PDSCH_SPS_Resource  initial-HS-PDSCH-SPS-Resource
        No value
    nbap.initial_dl_tx_power  initial-dl-tx-power
        Signed 32-bit integer
        DL_Power
    nbap.initiatingMessage  initiatingMessage
        No value
    nbap.innerLoopDLPCStatus  innerLoopDLPCStatus
        Unsigned 32-bit integer
    nbap.intStdPhSyncInfo_CellSyncReprtTDD  intStdPhSyncInfo-CellSyncReprtTDD
        No value
        IntStdPhCellSyncInfo_CellSyncReprtTDD
    nbap.iod  iod
        Byte array
        BIT_STRING_SIZE_11
    nbap.iod_a  iod-a
        Unsigned 32-bit integer
        INTEGER_0_3
    nbap.iodc_nav  iodc-nav
        Byte array
        BIT_STRING_SIZE_10
    nbap.iode_dgps  iode-dgps
        Byte array
        BIT_STRING_SIZE_8
    nbap.ionospheric_Model  ionospheric-Model
        Boolean
        BOOLEAN
    nbap.kp  kp
        Byte array
        BIT_STRING_SIZE_2
    nbap.l2_p_dataflag_nav  l2-p-dataflag-nav
        Byte array
        BIT_STRING_SIZE_1
    nbap.lCR_TDD  lCR-TDD
        No value
        MICH_LCR_Parameters_CTCH_SetupRqstTDD
    nbap.lS  lS
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    nbap.lTGI_Presence  lTGI-Presence
        Boolean
    nbap.lateEntrantCell  lateEntrantCell
        No value
    nbap.latitude  latitude
        Unsigned 32-bit integer
        INTEGER_0_8388607
    nbap.latitudeSign  latitudeSign
        Unsigned 32-bit integer
    nbap.limitedPowerIncrease  limitedPowerIncrease
        Unsigned 32-bit integer
    nbap.local  local
        Unsigned 32-bit integer
        INTEGER_0_maxPrivateIEs
    nbap.local_CellID  local-CellID
        Unsigned 32-bit integer
        Local_Cell_ID
    nbap.local_Cell_Group_ID  local-Cell-Group-ID
        Unsigned 32-bit integer
        Local_Cell_ID
    nbap.local_Cell_Group_InformationList  local-Cell-Group-InformationList
        Unsigned 32-bit integer
        Local_Cell_Group_InformationList_ResourceStatusInd
    nbap.local_Cell_ID  local-Cell-ID
        Unsigned 32-bit integer
    nbap.local_Cell_InformationList  local-Cell-InformationList
        Unsigned 32-bit integer
        Local_Cell_InformationList_ResourceStatusInd
    nbap.logicalChannelId  logicalChannelId
        Unsigned 32-bit integer
    nbap.logicalChannellevel  logicalChannellevel
        Byte array
    nbap.longTransActionId  longTransActionId
        Unsigned 32-bit integer
        INTEGER_0_32767
    nbap.longitude  longitude
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    nbap.ls_part  ls-part
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    nbap.mAC_DTX_Cycle_10ms  mAC-DTX-Cycle-10ms
        Unsigned 32-bit integer
    nbap.mAC_DTX_Cycle_2ms  mAC-DTX-Cycle-2ms
        Unsigned 32-bit integer
    nbap.mAC_Inactivity_Threshold  mAC-Inactivity-Threshold
        Unsigned 32-bit integer
    nbap.mAC_ehs_Reset_Timer  mAC-ehs-Reset-Timer
        Unsigned 32-bit integer
    nbap.mAC_hsWindowSize  mAC-hsWindowSize
        Unsigned 32-bit integer
    nbap.mACdPDU_Size  mACdPDU-Size
        Unsigned 32-bit integer
    nbap.mACd_PDU_Size_List  mACd-PDU-Size-List
        Unsigned 32-bit integer
        E_DCH_MACdPDU_SizeList
    nbap.mACeReset_Indicator  mACeReset-Indicator
        Unsigned 32-bit integer
    nbap.mACesGuaranteedBitRate  mACesGuaranteedBitRate
        Unsigned 32-bit integer
    nbap.mAChsGuaranteedBitRate  mAChsGuaranteedBitRate
        Unsigned 32-bit integer
    nbap.mAChsResetScheme  mAChsResetScheme
        Unsigned 32-bit integer
    nbap.mAChs_Reordering_Buffer_Size_for_RLC_UM  mAChs-Reordering-Buffer-Size-for-RLC-UM
        Unsigned 32-bit integer
        MAChsReorderingBufferSize_for_RLC_UM
    nbap.mBMS_Service_TDM_Information  mBMS-Service-TDM-Information
        No value
    nbap.mICH_Mode  mICH-Mode
        Unsigned 32-bit integer
    nbap.mICH_Power  mICH-Power
        Signed 32-bit integer
        PICH_Power
    nbap.mICH_TDDOption_Specific_Parameters  mICH-TDDOption-Specific-Parameters
        Unsigned 32-bit integer
        MICH_TDDOption_Specific_Parameters_CTCH_SetupRqstTDD
    nbap.mIMO_ActivationIndicator  mIMO-ActivationIndicator
        No value
    nbap.mIMO_N_M_Ratio  mIMO-N-M-Ratio
        Unsigned 32-bit integer
    nbap.mS  mS
        Unsigned 32-bit integer
        INTEGER_0_16383
    nbap.m_zero_alm  m-zero-alm
        Byte array
        BIT_STRING_SIZE_24
    nbap.m_zero_nav  m-zero-nav
        Byte array
        BIT_STRING_SIZE_32
    nbap.macdPDU_Size  macdPDU-Size
        Unsigned 32-bit integer
    nbap.macdPDU_Size_Index  macdPDU-Size-Index
        Unsigned 32-bit integer
        MACdPDU_Size_Indexlist
    nbap.macdPDU_Size_Index_to_Modify  macdPDU-Size-Index-to-Modify
        Unsigned 32-bit integer
        MACdPDU_Size_Indexlist_to_Modify
    nbap.maxAdjustmentStep  maxAdjustmentStep
        Unsigned 32-bit integer
    nbap.maxBits_MACe_PDU_non_scheduled  maxBits-MACe-PDU-non-scheduled
        Unsigned 32-bit integer
        Max_Bits_MACe_PDU_non_scheduled
    nbap.maxCR  maxCR
        Unsigned 32-bit integer
        CodeRate
    nbap.maxDL_Power  maxDL-Power
        Signed 32-bit integer
        DL_Power
    nbap.maxE_RUCCH_MidambleShifts  maxE-RUCCH-MidambleShifts
        Unsigned 32-bit integer
        MaxPRACH_MidambleShifts
    nbap.maxFACH_Power  maxFACH-Power
        Signed 32-bit integer
        DL_Power
    nbap.maxHSDSCH_HSSCCH_Power  maxHSDSCH-HSSCCH-Power
        Unsigned 32-bit integer
        MaximumTransmissionPower
    nbap.maxNrOfUL_DPDCHs  maxNrOfUL-DPDCHs
        Unsigned 32-bit integer
    nbap.maxPRACH_MidambleShifts  maxPRACH-MidambleShifts
        Unsigned 32-bit integer
    nbap.maxPhysChPerTimeslot  maxPhysChPerTimeslot
        Unsigned 32-bit integer
    nbap.maxPowerLCR  maxPowerLCR
        Signed 32-bit integer
        DL_Power
    nbap.maxPowerPLCCH  maxPowerPLCCH
        Signed 32-bit integer
        DL_Power
    nbap.maxSet_E_DPDCHs  maxSet-E-DPDCHs
        Unsigned 32-bit integer
        Max_Set_E_DPDCHs
    nbap.maxTimeslotsPerSubFrame  maxTimeslotsPerSubFrame
        Unsigned 32-bit integer
        INTEGER_1_6
    nbap.max_EDCH_Resource_Allocation_for_CCCH  max-EDCH-Resource-Allocation-for-CCCH
        Unsigned 32-bit integer
    nbap.max_Period_for_Collistion_Resolution  max-Period-for-Collistion-Resolution
        Unsigned 32-bit integer
    nbap.max_TB_Sizes  max-TB-Sizes
        No value
    nbap.maximumDL_Power  maximumDL-Power
        Signed 32-bit integer
        DL_Power
    nbap.maximumDL_PowerCapability  maximumDL-PowerCapability
        Unsigned 32-bit integer
    nbap.maximumDL_power  maximumDL-power
        Signed 32-bit integer
        DL_Power
    nbap.maximumMACcPDU_SizeExtended  maximumMACcPDU-SizeExtended
        Unsigned 32-bit integer
        MAC_PDU_SizeExtended
    nbap.maximumTransmissionPowerforCellPortion  maximumTransmissionPowerforCellPortion
        Unsigned 32-bit integer
        MaximumTransmissionPower
    nbap.maximum_DL_PowerCapability  maximum-DL-PowerCapability
        Unsigned 32-bit integer
        MaximumDL_PowerCapability
    nbap.maximum_MACcPDU_Size  maximum-MACcPDU-Size
        Unsigned 32-bit integer
        MAC_PDU_SizeExtended
    nbap.maximum_MACdPDU_Size  maximum-MACdPDU-Size
        Unsigned 32-bit integer
        MACdPDU_Size
    nbap.maximum_Number_of_Retransmissions_For_E_DCH  maximum-Number-of-Retransmissions-For-E-DCH
        Unsigned 32-bit integer
    nbap.maximum_Number_of_Retransmissions_For_SchedulingInfo  maximum-Number-of-Retransmissions-For-SchedulingInfo
        Unsigned 32-bit integer
        Maximum_Number_of_Retransmissions_For_E_DCH
    nbap.maximum_TB_Size_cell_edge_users  maximum-TB-Size-cell-edge-users
        Unsigned 32-bit integer
        INTEGER_0_5000_
    nbap.maximum_TB_Size_other_users  maximum-TB-Size-other-users
        Unsigned 32-bit integer
        INTEGER_0_5000_
    nbap.maximum_Target_ReceivedTotalWideBandPower_LCR  maximum-Target-ReceivedTotalWideBandPower-LCR
        Unsigned 32-bit integer
    nbap.measurementAvailable  measurementAvailable
        No value
        CommonMeasurementAvailable
    nbap.measurementChangeTime  measurementChangeTime
        Unsigned 32-bit integer
        ReportCharacteristicsType_ScaledMeasurementChangeTime
    nbap.measurementDecreaseThreshold  measurementDecreaseThreshold
        Unsigned 32-bit integer
        ReportCharacteristicsType_MeasurementIncreaseDecreaseThreshold
    nbap.measurementHysteresisTime  measurementHysteresisTime
        Unsigned 32-bit integer
        ReportCharacteristicsType_ScaledMeasurementHysteresisTime
    nbap.measurementIncreaseThreshold  measurementIncreaseThreshold
        Unsigned 32-bit integer
        ReportCharacteristicsType_MeasurementIncreaseDecreaseThreshold
    nbap.measurementThreshold  measurementThreshold
        Unsigned 32-bit integer
        ReportCharacteristicsType_MeasurementThreshold
    nbap.measurementThreshold1  measurementThreshold1
        Unsigned 32-bit integer
        ReportCharacteristicsType_MeasurementThreshold
    nbap.measurementThreshold2  measurementThreshold2
        Unsigned 32-bit integer
        ReportCharacteristicsType_MeasurementThreshold
    nbap.measurement_Occasion_Pattern_Sequence_parameters  measurement-Occasion-Pattern-Sequence-parameters
        No value
    nbap.measurement_Occasion_Pattern_Sequence_parameters_M_Length  measurement-Occasion-Pattern-Sequence-parameters-M-Length
        Unsigned 32-bit integer
        INTEGER_1_512
    nbap.measurement_Occasion_Pattern_Sequence_parameters_Timeslot_Bitmap  measurement-Occasion-Pattern-Sequence-parameters-Timeslot-Bitmap
        Byte array
        BIT_STRING_SIZE_7
    nbap.measurement_Occasion_Pattern_Sequence_parameters_k  measurement-Occasion-Pattern-Sequence-parameters-k
        Unsigned 32-bit integer
        INTEGER_1_9
    nbap.measurement_Occasion_Pattern_Sequence_parameters_offset  measurement-Occasion-Pattern-Sequence-parameters-offset
        Unsigned 32-bit integer
        INTEGER_0_511
    nbap.measurement_Power_Offset  measurement-Power-Offset
        Signed 32-bit integer
    nbap.measurementnotAvailable  measurementnotAvailable
        No value
        CommonMeasurementnotAvailable
    nbap.messageDiscriminator  messageDiscriminator
        Unsigned 32-bit integer
    nbap.midambleAllocationMode  midambleAllocationMode
        Unsigned 32-bit integer
        MidambleAllocationMode1
    nbap.midambleConfigurationBurstType1And3  midambleConfigurationBurstType1And3
        Unsigned 32-bit integer
    nbap.midambleConfigurationBurstType2  midambleConfigurationBurstType2
        Unsigned 32-bit integer
    nbap.midambleConfigurationBurstType2_768  midambleConfigurationBurstType2-768
        Unsigned 32-bit integer
    nbap.midambleConfigurationLCR  midambleConfigurationLCR
        Unsigned 32-bit integer
    nbap.midambleShift  midambleShift
        Unsigned 32-bit integer
        INTEGER_0_15
    nbap.midambleShiftAndBurstType  midambleShiftAndBurstType
        Unsigned 32-bit integer
    nbap.midambleShiftAndBurstType768  midambleShiftAndBurstType768
        Unsigned 32-bit integer
    nbap.midambleShiftLCR  midambleShiftLCR
        No value
    nbap.midambleShiftandBurstType  midambleShiftandBurstType
        Unsigned 32-bit integer
    nbap.midambleShiftandBurstType768  midambleShiftandBurstType768
        Unsigned 32-bit integer
    nbap.midambleshiftAndBurstType  midambleshiftAndBurstType
        Unsigned 32-bit integer
    nbap.midambleshiftAndBurstType768  midambleshiftAndBurstType768
        Unsigned 32-bit integer
    nbap.midambleshiftAndBurstType78  midambleshiftAndBurstType78
        Unsigned 32-bit integer
        MidambleShiftAndBurstType768
    nbap.midiAlmDeltaI  midiAlmDeltaI
        Byte array
        BIT_STRING_SIZE_11
    nbap.midiAlmE  midiAlmE
        Byte array
        BIT_STRING_SIZE_11
    nbap.midiAlmL1Health  midiAlmL1Health
        Byte array
        BIT_STRING_SIZE_1
    nbap.midiAlmL2Health  midiAlmL2Health
        Byte array
        BIT_STRING_SIZE_1
    nbap.midiAlmL5Health  midiAlmL5Health
        Byte array
        BIT_STRING_SIZE_1
    nbap.midiAlmMo  midiAlmMo
        Byte array
        BIT_STRING_SIZE_16
    nbap.midiAlmOmega  midiAlmOmega
        Byte array
        BIT_STRING_SIZE_16
    nbap.midiAlmOmega0  midiAlmOmega0
        Byte array
        BIT_STRING_SIZE_16
    nbap.midiAlmOmegaDot  midiAlmOmegaDot
        Byte array
        BIT_STRING_SIZE_11
    nbap.midiAlmSqrtA  midiAlmSqrtA
        Byte array
        BIT_STRING_SIZE_17
    nbap.midiAlmaf0  midiAlmaf0
        Byte array
        BIT_STRING_SIZE_11
    nbap.midiAlmaf1  midiAlmaf1
        Byte array
        BIT_STRING_SIZE_10
    nbap.min  min
        Unsigned 32-bit integer
        ReportPeriodicity_Scaledmin
    nbap.minCR  minCR
        Unsigned 32-bit integer
        CodeRate
    nbap.minDL_Power  minDL-Power
        Signed 32-bit integer
        DL_Power
    nbap.minPowerLCR  minPowerLCR
        Signed 32-bit integer
        DL_Power
    nbap.minSpreadingFactor  minSpreadingFactor
        Unsigned 32-bit integer
    nbap.minUL_ChannelisationCodeLength  minUL-ChannelisationCodeLength
        Unsigned 32-bit integer
    nbap.minimumDL_Power  minimumDL-Power
        Signed 32-bit integer
        DL_Power
    nbap.minimumDL_PowerCapability  minimumDL-PowerCapability
        Unsigned 32-bit integer
    nbap.minimumDL_power  minimumDL-power
        Signed 32-bit integer
        DL_Power
    nbap.minimumReducedE_DPDCH_GainFactor  minimumReducedE-DPDCH-GainFactor
        Unsigned 32-bit integer
    nbap.misc  misc
        Unsigned 32-bit integer
        CauseMisc
    nbap.missed_HS_SICH  missed-HS-SICH
        Unsigned 32-bit integer
        HS_SICH_missed
    nbap.mode  mode
        Unsigned 32-bit integer
        TransportFormatSet_ModeDP
    nbap.model_id  model-id
        Unsigned 32-bit integer
        INTEGER_0_1_
    nbap.modify  modify
        No value
        DRX_Information_to_Modify_Items_LCR
    nbap.modifyPriorityQueue  modifyPriorityQueue
        No value
        PriorityQueue_InfoItem_to_Modify
    nbap.modify_non_HS_SCCH_Associated_HS_SICH_InformationList  modify-non-HS-SCCH-Associated-HS-SICH-InformationList
        Unsigned 32-bit integer
    nbap.modulation  modulation
        Unsigned 32-bit integer
    nbap.modulationType  modulationType
        Unsigned 32-bit integer
        ModulationSPS_LCR
    nbap.ms_part  ms-part
        Unsigned 32-bit integer
        INTEGER_0_16383
    nbap.msec  msec
        Unsigned 32-bit integer
        MeasurementChangeTime_Scaledmsec
    nbap.multi_Cell_Capability  multi-Cell-Capability
        Unsigned 32-bit integer
    nbap.multicell_EDCH_Information  multicell-EDCH-Information
        No value
    nbap.multicell_EDCH_RL_Specific_Information  multicell-EDCH-RL-Specific-Information
        No value
    nbap.multicell_EDCH_Transport_Bearer_Mode  multicell-EDCH-Transport-Bearer-Mode
        Unsigned 32-bit integer
    nbap.multiplexingPosition  multiplexingPosition
        Unsigned 32-bit integer
    nbap.nA  nA
        Byte array
        BIT_STRING_SIZE_11
    nbap.n_E_UCCH  n-E-UCCH
        Unsigned 32-bit integer
    nbap.n_E_UCCHLCR  n-E-UCCHLCR
        Unsigned 32-bit integer
    nbap.n_INSYNC_IND  n-INSYNC-IND
        Unsigned 32-bit integer
    nbap.n_OUTSYNC_IND  n-OUTSYNC-IND
        Unsigned 32-bit integer
    nbap.n_PCH  n-PCH
        Unsigned 32-bit integer
        INTEGER_1_8
    nbap.n_PROTECT  n-PROTECT
        Unsigned 32-bit integer
    nbap.nackPowerOffset  nackPowerOffset
        Unsigned 32-bit integer
        Nack_Power_Offset
    nbap.navAPowerHalf  navAPowerHalf
        Byte array
        BIT_STRING_SIZE_32
    nbap.navAlmDeltaI  navAlmDeltaI
        Byte array
        BIT_STRING_SIZE_16
    nbap.navAlmE  navAlmE
        Byte array
        BIT_STRING_SIZE_16
    nbap.navAlmMo  navAlmMo
        Byte array
        BIT_STRING_SIZE_24
    nbap.navAlmOMEGADOT  navAlmOMEGADOT
        Byte array
        BIT_STRING_SIZE_16
    nbap.navAlmOMEGAo  navAlmOMEGAo
        Byte array
        BIT_STRING_SIZE_24
    nbap.navAlmOmega  navAlmOmega
        Byte array
        BIT_STRING_SIZE_24
    nbap.navAlmSVHealth  navAlmSVHealth
        Byte array
        BIT_STRING_SIZE_8
    nbap.navAlmSqrtA  navAlmSqrtA
        Byte array
        BIT_STRING_SIZE_24
    nbap.navAlmaf0  navAlmaf0
        Byte array
        BIT_STRING_SIZE_11
    nbap.navAlmaf1  navAlmaf1
        Byte array
        BIT_STRING_SIZE_11
    nbap.navCic  navCic
        Byte array
        BIT_STRING_SIZE_16
    nbap.navCis  navCis
        Byte array
        BIT_STRING_SIZE_16
    nbap.navClockModel  navClockModel
        No value
        GANSS_NAVclockModel
    nbap.navCrc  navCrc
        Byte array
        BIT_STRING_SIZE_16
    nbap.navCrs  navCrs
        Byte array
        BIT_STRING_SIZE_16
    nbap.navCuc  navCuc
        Byte array
        BIT_STRING_SIZE_16
    nbap.navCus  navCus
        Byte array
        BIT_STRING_SIZE_16
    nbap.navDeltaN  navDeltaN
        Byte array
        BIT_STRING_SIZE_16
    nbap.navE  navE
        Byte array
        BIT_STRING_SIZE_32
    nbap.navFitFlag  navFitFlag
        Byte array
        BIT_STRING_SIZE_1
    nbap.navI0  navI0
        Byte array
        BIT_STRING_SIZE_32
    nbap.navIDot  navIDot
        Byte array
        BIT_STRING_SIZE_14
    nbap.navKeplerianSet  navKeplerianSet
        No value
        GANSS_NavModel_NAVKeplerianSet
    nbap.navM0  navM0
        Byte array
        BIT_STRING_SIZE_32
    nbap.navOmega  navOmega
        Byte array
        BIT_STRING_SIZE_32
    nbap.navOmegaA0  navOmegaA0
        Byte array
        BIT_STRING_SIZE_32
    nbap.navOmegaADot  navOmegaADot
        Byte array
        BIT_STRING_SIZE_24
    nbap.navTgd  navTgd
        Byte array
        BIT_STRING_SIZE_8
    nbap.navToc  navToc
        Byte array
        BIT_STRING_SIZE_16
    nbap.navToe  navToe
        Byte array
        BIT_STRING_SIZE_16
    nbap.navURA  navURA
        Byte array
        BIT_STRING_SIZE_4
    nbap.navaf0  navaf0
        Byte array
        BIT_STRING_SIZE_22
    nbap.navaf1  navaf1
        Byte array
        BIT_STRING_SIZE_16
    nbap.navaf2  navaf2
        Byte array
        BIT_STRING_SIZE_8
    nbap.neighbouringFDDCellMeasurementInformation  neighbouringFDDCellMeasurementInformation
        No value
    nbap.neighbouringTDDCellMeasurementInformation  neighbouringTDDCellMeasurementInformation
        No value
    nbap.new_secondary_CPICH  new-secondary-CPICH
        Unsigned 32-bit integer
        CommonPhysicalChannelID
    nbap.no_Deletion  no-Deletion
        No value
        No_Deletion_SystemInfoUpdate
    nbap.no_Failure  no-Failure
        No value
        No_Failure_ResourceStatusInd
    nbap.no_Split_in_TFCI  no-Split-in-TFCI
        Unsigned 32-bit integer
        TFCS_TFCSList
    nbap.no_bad_satellites  no-bad-satellites
        No value
    nbap.nodeB  nodeB
        No value
    nbap.nodeB_CommunicationContextID  nodeB-CommunicationContextID
        Unsigned 32-bit integer
    nbap.noinitialOffset  noinitialOffset
        Unsigned 32-bit integer
        INTEGER_0_63
    nbap.nonCombiningOrFirstRL  nonCombiningOrFirstRL
        No value
        NonCombiningOrFirstRL_RL_SetupRspFDD
    nbap.non_Combining  non-Combining
        No value
        Non_Combining_RL_AdditionRspTDD
    nbap.non_HS_SCCH_Aassociated_HS_SICH_ID  non-HS-SCCH-Aassociated-HS-SICH-ID
        Unsigned 32-bit integer
    nbap.non_HS_SCCH_Associated_HS_SICH  non-HS-SCCH-Associated-HS-SICH
        No value
    nbap.non_HS_SCCH_Associated_HS_SICH_InformationList  non-HS-SCCH-Associated-HS-SICH-InformationList
        Unsigned 32-bit integer
    nbap.non_broadcastIndication  non-broadcastIndication
        Unsigned 32-bit integer
    nbap.non_combining  non-combining
        No value
        Non_Combining_RL_AdditionRspFDD
    nbap.none  none
        No value
    nbap.normal_and_diversity_primary_CPICH  normal-and-diversity-primary-CPICH
        No value
    nbap.notApplicable  notApplicable
        No value
    nbap.notUsed_1_acknowledged_PCPCH_access_preambles  notUsed-1-acknowledged-PCPCH-access-preambles
        No value
    nbap.notUsed_1_pCPCH_InformationList  notUsed-1-pCPCH-InformationList
        No value
    nbap.notUsed_2_cPCH_InformationList  notUsed-2-cPCH-InformationList
        No value
    nbap.notUsed_2_detected_PCPCH_access_preambles  notUsed-2-detected-PCPCH-access-preambles
        No value
    nbap.notUsed_3_aP_AICH_InformationList  notUsed-3-aP-AICH-InformationList
        No value
    nbap.notUsed_4_cDCA_ICH_InformationList  notUsed-4-cDCA-ICH-InformationList
        No value
    nbap.notUsed_cPCH  notUsed-cPCH
        No value
    nbap.notUsed_cPCH_parameters  notUsed-cPCH-parameters
        No value
    nbap.notUsed_pCPCHes_parameters  notUsed-pCPCHes-parameters
        No value
    nbap.not_Used_dSCH_InformationResponseList  not-Used-dSCH-InformationResponseList
        No value
    nbap.not_Used_lengthOfTFCI2  not-Used-lengthOfTFCI2
        No value
    nbap.not_Used_pDSCH_CodeMapping  not-Used-pDSCH-CodeMapping
        No value
    nbap.not_Used_pDSCH_RL_ID  not-Used-pDSCH-RL-ID
        No value
    nbap.not_Used_sSDT_CellIDLength  not-Used-sSDT-CellIDLength
        No value
    nbap.not_Used_sSDT_CellID_Length  not-Used-sSDT-CellID-Length
        No value
    nbap.not_Used_sSDT_CellIdentity  not-Used-sSDT-CellIdentity
        No value
    nbap.not_Used_sSDT_Cell_Identity  not-Used-sSDT-Cell-Identity
        No value
    nbap.not_Used_sSDT_Indication  not-Used-sSDT-Indication
        No value
    nbap.not_Used_s_FieldLength  not-Used-s-FieldLength
        No value
    nbap.not_Used_splitType  not-Used-splitType
        No value
    nbap.not_Used_split_in_TFCI  not-Used-split-in-TFCI
        No value
    nbap.not_Used_tFCI2_BearerInformationResponse  not-Used-tFCI2-BearerInformationResponse
        No value
    nbap.not_to_be_used_1  not-to-be-used-1
        Unsigned 32-bit integer
        GapDuration
    nbap.notificationIndicatorLength  notificationIndicatorLength
        Unsigned 32-bit integer
    nbap.nrOfTransportBlocks  nrOfTransportBlocks
        Unsigned 32-bit integer
        TransportFormatSet_NrOfTransportBlocks
    nbap.numPrimaryHS_SCCH_Codes  numPrimaryHS-SCCH-Codes
        Unsigned 32-bit integer
        NumHS_SCCH_Codes
    nbap.numSecondaryHS_SCCH_Codes  numSecondaryHS-SCCH-Codes
        Unsigned 32-bit integer
        NumHS_SCCH_Codes
    nbap.number_of_Group  number-of-Group
        Unsigned 32-bit integer
        INTEGER_1_32
    nbap.number_of_HS_PDSCH_codes  number-of-HS-PDSCH-codes
        Unsigned 32-bit integer
        INTEGER_0_maxHS_PDSCHCodeNrComp_1
    nbap.number_of_PCCH_transmission  number-of-PCCH-transmission
        Unsigned 32-bit integer
    nbap.number_of_Processes  number-of-Processes
        Unsigned 32-bit integer
        INTEGER_1_8_
    nbap.number_of_Processes_for_HS_DSCH_SPS  number-of-Processes-for-HS-DSCH-SPS
        Unsigned 32-bit integer
    nbap.number_of_e_E_RNTI_perGroup  number-of-e-E-RNTI-perGroup
        Unsigned 32-bit integer
        INTEGER_1_7
    nbap.omega_zero_nav  omega-zero-nav
        Byte array
        BIT_STRING_SIZE_32
    nbap.omegadot_alm  omegadot-alm
        Byte array
        BIT_STRING_SIZE_16
    nbap.omegadot_nav  omegadot-nav
        Byte array
        BIT_STRING_SIZE_24
    nbap.omegazero_alm  omegazero-alm
        Byte array
        BIT_STRING_SIZE_24
    nbap.onDemand  onDemand
        No value
    nbap.onModification  onModification
        No value
        InformationReportCharacteristicsType_OnModification
    nbap.outcome  outcome
        No value
    nbap.pCCPCH_Power  pCCPCH-Power
        Signed 32-bit integer
    nbap.pCH_CCTrCH_ID  pCH-CCTrCH-ID
        Unsigned 32-bit integer
        CCTrCH_ID
    nbap.pCH_Information  pCH-Information
        No value
        PCH_Information_AuditRsp
    nbap.pCH_Parameters  pCH-Parameters
        No value
        PCH_Parameters_CTCH_SetupRqstFDD
    nbap.pCH_Parameters_CTCH_ReconfRqstFDD  pCH-Parameters-CTCH-ReconfRqstFDD
        No value
    nbap.pCH_Power  pCH-Power
        Signed 32-bit integer
        DL_Power
    nbap.pDSCHSet_ID  pDSCHSet-ID
        Unsigned 32-bit integer
    nbap.pDSCH_ID  pDSCH-ID
        Unsigned 32-bit integer
    nbap.pDSCH_ID768  pDSCH-ID768
        Unsigned 32-bit integer
    nbap.pDSCH_InformationList  pDSCH-InformationList
        No value
        PDSCH_Information_AddList_PSCH_ReconfRqst
    nbap.pICH_Information  pICH-Information
        No value
        PICH_Information_AuditRsp
    nbap.pICH_Mode  pICH-Mode
        Unsigned 32-bit integer
    nbap.pICH_Parameters  pICH-Parameters
        No value
        PICH_Parameters_CTCH_SetupRqstFDD
    nbap.pICH_Parameters_CTCH_ReconfRqstFDD  pICH-Parameters-CTCH-ReconfRqstFDD
        No value
    nbap.pICH_Power  pICH-Power
        Signed 32-bit integer
    nbap.pO1_ForTFCI_Bits  pO1-ForTFCI-Bits
        Unsigned 32-bit integer
        PowerOffset
    nbap.pO2_ForTPC_Bits  pO2-ForTPC-Bits
        Unsigned 32-bit integer
        PowerOffset
    nbap.pO3_ForPilotBits  pO3-ForPilotBits
        Unsigned 32-bit integer
        PowerOffset
    nbap.pRACH_InformationList  pRACH-InformationList
        Unsigned 32-bit integer
        PRACH_InformationList_AuditRsp
    nbap.pRACH_Midamble  pRACH-Midamble
        Unsigned 32-bit integer
    nbap.pRACH_ParametersList_CTCH_ReconfRqstFDD  pRACH-ParametersList-CTCH-ReconfRqstFDD
        No value
    nbap.pRACH_Parameters_CTCH_SetupRqstTDD  pRACH-Parameters-CTCH-SetupRqstTDD
        No value
    nbap.pRACH_parameters  pRACH-parameters
        No value
        PRACH_CTCH_SetupRqstFDD
    nbap.pRCDeviation  pRCDeviation
        Unsigned 32-bit integer
    nbap.pRXdes_base  pRXdes-base
        Signed 32-bit integer
    nbap.pRXdes_base_perURAFCN  pRXdes-base-perURAFCN
        Unsigned 32-bit integer
    nbap.pUSCHSet_ID  pUSCHSet-ID
        Unsigned 32-bit integer
    nbap.pUSCH_ID  pUSCH-ID
        Unsigned 32-bit integer
    nbap.pUSCH_InformationList  pUSCH-InformationList
        No value
        PUSCH_Information_AddList_PSCH_ReconfRqst
    nbap.pagingIndicatorLength  pagingIndicatorLength
        Unsigned 32-bit integer
    nbap.pagingMACFlow_ID  pagingMACFlow-ID
        Unsigned 32-bit integer
        Paging_MACFlow_ID
    nbap.paging_MACFlow_ID  paging-MACFlow-ID
        Unsigned 32-bit integer
    nbap.paging_MACFlow_Id  paging-MACFlow-Id
        Unsigned 32-bit integer
    nbap.paging_MACFlow_PriorityQueue_Information  paging-MACFlow-PriorityQueue-Information
        Unsigned 32-bit integer
    nbap.paging_MACFlow_PriorityQueue_InformationLCR  paging-MACFlow-PriorityQueue-InformationLCR
        Unsigned 32-bit integer
        Paging_MACFlow_PriorityQueue_Information
    nbap.paging_MACFlow_Specific_Information  paging-MACFlow-Specific-Information
        Unsigned 32-bit integer
    nbap.paging_MACFlow_Specific_InformationLCR  paging-MACFlow-Specific-InformationLCR
        Unsigned 32-bit integer
    nbap.paging_Subchannel_Size  paging-Subchannel-Size
        Unsigned 32-bit integer
        INTEGER_1_3
    nbap.pattern_Sequence_Identifier  pattern-Sequence-Identifier
        Unsigned 32-bit integer
    nbap.payloadCRC_PresenceIndicator  payloadCRC-PresenceIndicator
        Unsigned 32-bit integer
    nbap.periodic  periodic
        Unsigned 32-bit integer
        InformationReportCharacteristicsType_ReportPeriodicity
    nbap.pich_Mode  pich-Mode
        Unsigned 32-bit integer
    nbap.pich_Power  pich-Power
        Signed 32-bit integer
    nbap.pmX  pmX
        Byte array
        BIT_STRING_SIZE_21
    nbap.pmXdot  pmXdot
        Byte array
        BIT_STRING_SIZE_15
    nbap.pmY  pmY
        Byte array
        BIT_STRING_SIZE_21
    nbap.pmYdot  pmYdot
        Byte array
        BIT_STRING_SIZE_15
    nbap.possible_Secondary_Serving_Cell_List  possible-Secondary-Serving-Cell-List
        Unsigned 32-bit integer
    nbap.powerAdjustmentType  powerAdjustmentType
        Unsigned 32-bit integer
    nbap.powerLocalCellGroupID  powerLocalCellGroupID
        Unsigned 32-bit integer
        Local_Cell_ID
    nbap.powerOffsetInformation  powerOffsetInformation
        No value
        PowerOffsetInformation_CTCH_SetupRqstFDD
    nbap.powerRaiseLimit  powerRaiseLimit
        Unsigned 32-bit integer
    nbap.powerResource  powerResource
        Unsigned 32-bit integer
        E_DCH_PowerResource
    nbap.power_Local_Cell_Group_ID  power-Local-Cell-Group-ID
        Unsigned 32-bit integer
        Local_Cell_ID
    nbap.power_Offset_For_Secondary_CPICH_for_MIMO  power-Offset-For-Secondary-CPICH-for-MIMO
        Signed 32-bit integer
        PowerOffsetForSecondaryCPICHforMIMO
    nbap.prc  prc
        Signed 32-bit integer
    nbap.prcdeviation  prcdeviation
        Unsigned 32-bit integer
    nbap.pre_emptionCapability  pre-emptionCapability
        Unsigned 32-bit integer
    nbap.pre_emptionVulnerability  pre-emptionVulnerability
        Unsigned 32-bit integer
    nbap.preambleSignatures  preambleSignatures
        Byte array
    nbap.preambleThreshold  preambleThreshold
        Unsigned 32-bit integer
    nbap.predictedSFNSFNDeviationLimit  predictedSFNSFNDeviationLimit
        Unsigned 32-bit integer
    nbap.predictedTUTRANGANSSDeviationLimit  predictedTUTRANGANSSDeviationLimit
        Unsigned 32-bit integer
        INTEGER_1_256
    nbap.predictedTUTRANGPSDeviationLimit  predictedTUTRANGPSDeviationLimit
        Unsigned 32-bit integer
    nbap.primaryCPICH_Power  primaryCPICH-Power
        Signed 32-bit integer
    nbap.primarySCH_Power  primarySCH-Power
        Signed 32-bit integer
        DL_Power
    nbap.primaryScramblingCode  primaryScramblingCode
        Unsigned 32-bit integer
    nbap.primary_CCPCH_Information  primary-CCPCH-Information
        No value
        P_CCPCH_Information_AuditRsp
    nbap.primary_CPICH_Information  primary-CPICH-Information
        No value
        P_CPICH_Information_AuditRsp
    nbap.primary_CPICH_Usage_for_Channel_Estimation  primary-CPICH-Usage-for-Channel-Estimation
        Unsigned 32-bit integer
    nbap.primary_SCH_Information  primary-SCH-Information
        No value
        P_SCH_Information_AuditRsp
    nbap.primary_Secondary_Grant_Selector  primary-Secondary-Grant-Selector
        Unsigned 32-bit integer
        E_Primary_Secondary_Grant_Selector
    nbap.primary_and_secondary_CPICH  primary-and-secondary-CPICH
        Unsigned 32-bit integer
        CommonPhysicalChannelID
    nbap.primary_e_RNTI  primary-e-RNTI
        Unsigned 32-bit integer
        E_RNTI
    nbap.priorityLevel  priorityLevel
        Unsigned 32-bit integer
    nbap.priorityQueueId  priorityQueueId
        Unsigned 32-bit integer
        PriorityQueue_Id
    nbap.priorityQueueInfotoModify  priorityQueueInfotoModify
        Unsigned 32-bit integer
        PriorityQueue_InfoList_to_Modify
    nbap.priorityQueueInfotoModifyUnsynchronised  priorityQueueInfotoModifyUnsynchronised
        Unsigned 32-bit integer
        PriorityQueue_InfoList_to_Modify_Unsynchronised
    nbap.priorityQueue_Id  priorityQueue-Id
        Unsigned 32-bit integer
    nbap.priorityQueue_Info  priorityQueue-Info
        Unsigned 32-bit integer
        PriorityQueue_InfoList
    nbap.priorityQueuelevel  priorityQueuelevel
        Byte array
    nbap.priority_Queue_Information_for_Enhanced_FACH  priority-Queue-Information-for-Enhanced-FACH
        No value
        Priority_Queue_Information_for_Enhanced_FACH_PCH
    nbap.priority_Queue_Information_for_Enhanced_PCH  priority-Queue-Information-for-Enhanced-PCH
        No value
        Priority_Queue_Information_for_Enhanced_FACH_PCH
    nbap.privateIEs  privateIEs
        Unsigned 32-bit integer
        PrivateIE_Container
    nbap.procedureCode  procedureCode
        Unsigned 32-bit integer
    nbap.procedureCriticality  procedureCriticality
        Unsigned 32-bit integer
        Criticality
    nbap.procedureID  procedureID
        No value
    nbap.process_Memory_Size  process-Memory-Size
        Unsigned 32-bit integer
    nbap.propagationDelay  propagationDelay
        Unsigned 32-bit integer
    nbap.propagationDelayCompensation  propagationDelayCompensation
        Unsigned 32-bit integer
        TimingAdjustmentValueLCR
    nbap.propagation_delay  propagation-delay
        Unsigned 32-bit integer
        PropagationDelay
    nbap.protocol  protocol
        Unsigned 32-bit integer
        CauseProtocol
    nbap.protocolExtensions  protocolExtensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    nbap.protocolIEs  protocolIEs
        Unsigned 32-bit integer
        ProtocolIE_Container
    nbap.punctureLimit  punctureLimit
        Unsigned 32-bit integer
    nbap.qE_Selector  qE-Selector
        Unsigned 32-bit integer
    nbap.qPSK  qPSK
        No value
    nbap.rACH  rACH
        No value
        RACH_Parameter_CTCH_SetupRqstTDD
    nbap.rACHSlotFormat  rACHSlotFormat
        Unsigned 32-bit integer
        RACH_SlotFormat
    nbap.rACH_InformationList  rACH-InformationList
        Unsigned 32-bit integer
        RACH_InformationList_AuditRsp
    nbap.rACH_Measurement_Result  rACH-Measurement-Result
        Unsigned 32-bit integer
    nbap.rACH_Parameters  rACH-Parameters
        No value
        RACH_Parameters_CTCH_SetupRqstFDD
    nbap.rACH_SlotFormat  rACH-SlotFormat
        Unsigned 32-bit integer
    nbap.rACH_SubChannelNumbers  rACH-SubChannelNumbers
        Byte array
    nbap.rL  rL
        No value
        RL_DM_Rqst
    nbap.rLC_Mode  rLC-Mode
        Unsigned 32-bit integer
    nbap.rLS  rLS
        No value
        RL_Set_DM_Rqst
    nbap.rLSpecificCause  rLSpecificCause
        No value
        RLSpecificCauseList_RL_SetupFailureFDD
    nbap.rL_ID  rL-ID
        Unsigned 32-bit integer
    nbap.rL_InformationList  rL-InformationList
        Unsigned 32-bit integer
        RL_InformationList_DM_Rqst
    nbap.rL_InformationList_DM_Rprt  rL-InformationList-DM-Rprt
        Unsigned 32-bit integer
    nbap.rL_InformationList_DM_Rsp  rL-InformationList-DM-Rsp
        Unsigned 32-bit integer
    nbap.rL_InformationList_RL_FailureInd  rL-InformationList-RL-FailureInd
        Unsigned 32-bit integer
    nbap.rL_InformationList_RL_RestoreInd  rL-InformationList-RL-RestoreInd
        Unsigned 32-bit integer
    nbap.rL_ReconfigurationFailureList_RL_ReconfFailure  rL-ReconfigurationFailureList-RL-ReconfFailure
        Unsigned 32-bit integer
    nbap.rL_Set  rL-Set
        No value
        RL_Set_RL_FailureInd
    nbap.rL_Set_ID  rL-Set-ID
        Unsigned 32-bit integer
    nbap.rL_Set_InformationList_DM_Rprt  rL-Set-InformationList-DM-Rprt
        Unsigned 32-bit integer
    nbap.rL_Set_InformationList_DM_Rqst  rL-Set-InformationList-DM-Rqst
        Unsigned 32-bit integer
    nbap.rL_Set_InformationList_DM_Rsp  rL-Set-InformationList-DM-Rsp
        Unsigned 32-bit integer
    nbap.rL_Set_InformationList_RL_FailureInd  rL-Set-InformationList-RL-FailureInd
        Unsigned 32-bit integer
    nbap.rL_Set_InformationList_RL_RestoreInd  rL-Set-InformationList-RL-RestoreInd
        Unsigned 32-bit integer
    nbap.rL_Specific_E_DCH_Information  rL-Specific-E-DCH-Information
        Unsigned 32-bit integer
    nbap.rL_on_Secondary_UL_Frequency  rL-on-Secondary-UL-Frequency
        Unsigned 32-bit integer
    nbap.rNC_ID  rNC-ID
        Unsigned 32-bit integer
    nbap.rSCP  rSCP
        Unsigned 32-bit integer
        RSCP_Value
    nbap.rSCPValue  rSCPValue
        Unsigned 32-bit integer
        RSCP_Value
    nbap.radioNetwork  radioNetwork
        Unsigned 32-bit integer
        CauseRadioNetwork
    nbap.range_correction_rate  range-correction-rate
        Signed 32-bit integer
    nbap.rateMatchingAttribute  rateMatchingAttribute
        Unsigned 32-bit integer
        TransportFormatSet_RateMatchingAttribute
    nbap.received_Scheduled_power_share_value  received-Scheduled-power-share-value
        Unsigned 32-bit integer
        RSEPS_Value
    nbap.received_total_wide_band_power  received-total-wide-band-power
        Unsigned 32-bit integer
        Received_total_wide_band_power_Value
    nbap.received_total_wide_band_power_value  received-total-wide-band-power-value
        Unsigned 32-bit integer
    nbap.reception_Window_Size  reception-Window-Size
        Unsigned 32-bit integer
        INTEGER_1_16
    nbap.redAlmDeltaA  redAlmDeltaA
        Byte array
        BIT_STRING_SIZE_8
    nbap.redAlmL1Health  redAlmL1Health
        Byte array
        BIT_STRING_SIZE_1
    nbap.redAlmL2Health  redAlmL2Health
        Byte array
        BIT_STRING_SIZE_1
    nbap.redAlmL5Health  redAlmL5Health
        Byte array
        BIT_STRING_SIZE_1
    nbap.redAlmOmega0  redAlmOmega0
        Byte array
        BIT_STRING_SIZE_7
    nbap.redAlmPhi0  redAlmPhi0
        Byte array
        BIT_STRING_SIZE_7
    nbap.refBeta  refBeta
        Signed 32-bit integer
    nbap.refCodeRate  refCodeRate
        Unsigned 32-bit integer
        CodeRate_short
    nbap.refTFCNumber  refTFCNumber
        Unsigned 32-bit integer
    nbap.reference_E_TFCI  reference-E-TFCI
        Unsigned 32-bit integer
        E_TFCI
    nbap.reference_E_TFCI_Information  reference-E-TFCI-Information
        Unsigned 32-bit integer
    nbap.reference_E_TFCI_PO  reference-E-TFCI-PO
        Unsigned 32-bit integer
    nbap.removal  removal
        Unsigned 32-bit integer
        Additional_EDCH_Cell_Information_Removal_List
    nbap.remove  remove
        No value
    nbap.repetitionLength  repetitionLength
        Unsigned 32-bit integer
    nbap.repetitionNumber  repetitionNumber
        Unsigned 32-bit integer
        RepetitionNumber0
    nbap.repetitionPeriod  repetitionPeriod
        Unsigned 32-bit integer
    nbap.repetitionPeriodIndex  repetitionPeriodIndex
        Unsigned 32-bit integer
    nbap.repetition_Period_List_LCR  repetition-Period-List-LCR
        Unsigned 32-bit integer
    nbap.replace  replace
        Unsigned 32-bit integer
        E_AGCH_FDD_Code_List
    nbap.reportPeriodicity  reportPeriodicity
        Unsigned 32-bit integer
        ReportCharacteristicsType_ReportPeriodicity
    nbap.requestedDataValue  requestedDataValue
        No value
    nbap.requestedDataValueInformation  requestedDataValueInformation
        Unsigned 32-bit integer
    nbap.requesteddataValue  requesteddataValue
        No value
    nbap.resourceOperationalState  resourceOperationalState
        Unsigned 32-bit integer
    nbap.rl_ID  rl-ID
        Unsigned 32-bit integer
    nbap.roundTripTime  roundTripTime
        Unsigned 32-bit integer
        Round_Trip_Time_Value
    nbap.round_trip_time  round-trip-time
        Unsigned 32-bit integer
        Round_Trip_Time_IncrDecrThres
    nbap.rscp  rscp
        Unsigned 32-bit integer
        RSCP_Value_IncrDecrThres
    nbap.rxTimingDeviationValue  rxTimingDeviationValue
        Unsigned 32-bit integer
        Rx_Timing_Deviation_Value
    nbap.rx_timing_deviation  rx-timing-deviation
        Unsigned 32-bit integer
        Rx_Timing_Deviation_Value
    nbap.sCCPCH_CCTrCH_ID  sCCPCH-CCTrCH-ID
        Unsigned 32-bit integer
        CCTrCH_ID
    nbap.sCCPCH_Power  sCCPCH-Power
        Signed 32-bit integer
        DL_Power
    nbap.sCH_Information  sCH-Information
        No value
        SCH_Information_AuditRsp
    nbap.sCH_Power  sCH-Power
        Signed 32-bit integer
        DL_Power
    nbap.sCH_TimeSlot  sCH-TimeSlot
        Unsigned 32-bit integer
    nbap.sCTD_Indicator  sCTD-Indicator
        Unsigned 32-bit integer
    nbap.sFN  sFN
        Unsigned 32-bit integer
    nbap.sFNSFNChangeLimit  sFNSFNChangeLimit
        Unsigned 32-bit integer
    nbap.sFNSFNDriftRate  sFNSFNDriftRate
        Signed 32-bit integer
    nbap.sFNSFNDriftRateQuality  sFNSFNDriftRateQuality
        Unsigned 32-bit integer
    nbap.sFNSFNQuality  sFNSFNQuality
        Unsigned 32-bit integer
    nbap.sFNSFNTimeStampInformation  sFNSFNTimeStampInformation
        Unsigned 32-bit integer
    nbap.sFNSFNTimeStamp_FDD  sFNSFNTimeStamp-FDD
        Unsigned 32-bit integer
        SFN
    nbap.sFNSFNTimeStamp_TDD  sFNSFNTimeStamp-TDD
        No value
    nbap.sFNSFNValue  sFNSFNValue
        Unsigned 32-bit integer
    nbap.sFNSFN_FDD  sFNSFN-FDD
        Unsigned 32-bit integer
    nbap.sFNSFN_TDD  sFNSFN-TDD
        Unsigned 32-bit integer
    nbap.sFNSFN_TDD768  sFNSFN-TDD768
        Unsigned 32-bit integer
    nbap.sIB_Originator  sIB-Originator
        Unsigned 32-bit integer
    nbap.sID  sID
        Unsigned 32-bit integer
    nbap.sIRValue  sIRValue
        Unsigned 32-bit integer
        SIR_Value
    nbap.sIR_ErrorValue  sIR-ErrorValue
        Unsigned 32-bit integer
        SIR_Error_Value
    nbap.sIR_Value  sIR-Value
        Unsigned 32-bit integer
    nbap.sNPL_Reporting_Type  sNPL-Reporting-Type
        Unsigned 32-bit integer
    nbap.sPS_E_DCH_releted_E_HICH_Information  sPS-E-DCH-releted-E-HICH-Information
        No value
        E_HICH_LCR_Information
    nbap.sRB1_PriorityQueue_Id  sRB1-PriorityQueue-Id
        Unsigned 32-bit integer
        PriorityQueue_Id
    nbap.sSDT_SupportIndicator  sSDT-SupportIndicator
        Unsigned 32-bit integer
    nbap.sTTD_Indicator  sTTD-Indicator
        Unsigned 32-bit integer
    nbap.sVGlobalHealth_alm  sVGlobalHealth-alm
        Byte array
        BIT_STRING_SIZE_364
    nbap.sYNCDlCodeId  sYNCDlCodeId
        Unsigned 32-bit integer
    nbap.sYNCDlCodeIdInfoLCR  sYNCDlCodeIdInfoLCR
        Unsigned 32-bit integer
        SYNCDlCodeIdInfoListLCR_CellSyncReconfRqstTDD
    nbap.sYNCDlCodeIdMeasInfoList  sYNCDlCodeIdMeasInfoList
        Unsigned 32-bit integer
        SYNCDlCodeIdMeasInfoList_CellSyncReconfRqstTDD
    nbap.s_CCPCH_Power  s-CCPCH-Power
        Signed 32-bit integer
        DL_Power
    nbap.s_CCPCH_TimeSlotFormat_LCR  s-CCPCH-TimeSlotFormat-LCR
        Unsigned 32-bit integer
        TDD_DL_DPCH_TimeSlotFormat_LCR
    nbap.sameAsHS_SCCH  sameAsHS-SCCH
        No value
    nbap.satId  satId
        Unsigned 32-bit integer
        INTEGER_0_63
    nbap.sat_id  sat-id
        Unsigned 32-bit integer
    nbap.sat_id_nav  sat-id-nav
        Unsigned 32-bit integer
        SAT_ID
    nbap.sat_info  sat-info
        Unsigned 32-bit integer
        SATInfo_RealTime_Integrity
    nbap.sat_info_GLOkpList  sat-info-GLOkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_GLOkpList
    nbap.sat_info_MIDIkpList  sat-info-MIDIkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_MIDIkpList
    nbap.sat_info_NAVkpList  sat-info-NAVkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_NAVkpList
    nbap.sat_info_REDkpList  sat-info-REDkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_REDkpList
    nbap.sat_info_SBASecefList  sat-info-SBASecefList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_SBASecefList
    nbap.sat_info_almanac  sat-info-almanac
        Unsigned 32-bit integer
    nbap.satelliteinfo  satelliteinfo
        Unsigned 32-bit integer
        SAT_Info_DGPSCorrections
    nbap.sbagYgDotDot  sbagYgDotDot
        Byte array
        BIT_STRING_SIZE_10
    nbap.sbasAccuracy  sbasAccuracy
        Byte array
        BIT_STRING_SIZE_4
    nbap.sbasAgf1  sbasAgf1
        Byte array
        BIT_STRING_SIZE_8
    nbap.sbasAgfo  sbasAgfo
        Byte array
        BIT_STRING_SIZE_12
    nbap.sbasAlmDataID  sbasAlmDataID
        Byte array
        BIT_STRING_SIZE_2
    nbap.sbasAlmHealth  sbasAlmHealth
        Byte array
        BIT_STRING_SIZE_8
    nbap.sbasAlmTo  sbasAlmTo
        Byte array
        BIT_STRING_SIZE_11
    nbap.sbasAlmXg  sbasAlmXg
        Byte array
        BIT_STRING_SIZE_15
    nbap.sbasAlmXgdot  sbasAlmXgdot
        Byte array
        BIT_STRING_SIZE_3
    nbap.sbasAlmYg  sbasAlmYg
        Byte array
        BIT_STRING_SIZE_15
    nbap.sbasAlmYgDot  sbasAlmYgDot
        Byte array
        BIT_STRING_SIZE_3
    nbap.sbasAlmZg  sbasAlmZg
        Byte array
        BIT_STRING_SIZE_9
    nbap.sbasAlmZgDot  sbasAlmZgDot
        Byte array
        BIT_STRING_SIZE_4
    nbap.sbasClockModel  sbasClockModel
        No value
        GANSS_SBASclockModel
    nbap.sbasECEF  sbasECEF
        No value
        GANSS_NavModel_SBASecef
    nbap.sbasTo  sbasTo
        Byte array
        BIT_STRING_SIZE_13
    nbap.sbasXg  sbasXg
        Byte array
        BIT_STRING_SIZE_30
    nbap.sbasXgDot  sbasXgDot
        Byte array
        BIT_STRING_SIZE_17
    nbap.sbasXgDotDot  sbasXgDotDot
        Byte array
        BIT_STRING_SIZE_10
    nbap.sbasYg  sbasYg
        Byte array
        BIT_STRING_SIZE_30
    nbap.sbasYgDot  sbasYgDot
        Byte array
        BIT_STRING_SIZE_17
    nbap.sbasZg  sbasZg
        Byte array
        BIT_STRING_SIZE_25
    nbap.sbasZgDot  sbasZgDot
        Byte array
        BIT_STRING_SIZE_18
    nbap.sbasZgDotDot  sbasZgDotDot
        Byte array
        BIT_STRING_SIZE_10
    nbap.scheduled_E_HICH_Specific_InformationResp  scheduled-E-HICH-Specific-InformationResp
        Unsigned 32-bit integer
        Scheduled_E_HICH_Specific_Information_ResponseLCRTDD
    nbap.schedulingInformation  schedulingInformation
        Unsigned 32-bit integer
    nbap.schedulingPriorityIndicator  schedulingPriorityIndicator
        Unsigned 32-bit integer
    nbap.scramblingCodeNumber  scramblingCodeNumber
        Unsigned 32-bit integer
    nbap.second_TDD_ChannelisationCode  second-TDD-ChannelisationCode
        Unsigned 32-bit integer
        TDD_ChannelisationCode
    nbap.second_TDD_ChannelisationCodeLCR  second-TDD-ChannelisationCodeLCR
        No value
        TDD_ChannelisationCodeLCR
    nbap.secondaryCCPCH768List  secondaryCCPCH768List
        Unsigned 32-bit integer
        Secondary_CCPCH_768_List_CTCH_ReconfRqstTDD
    nbap.secondaryCCPCHList  secondaryCCPCHList
        No value
        Secondary_CCPCHList_CTCH_ReconfRqstTDD
    nbap.secondaryCCPCH_parameterList  secondaryCCPCH-parameterList
        No value
        Secondary_CCPCH_parameterList_CTCH_SetupRqstTDD
    nbap.secondaryCPICH_Power  secondaryCPICH-Power
        Signed 32-bit integer
        DL_Power
    nbap.secondaryC_ID  secondaryC-ID
        Unsigned 32-bit integer
        C_ID
    nbap.secondarySCH_Power  secondarySCH-Power
        Signed 32-bit integer
        DL_Power
    nbap.secondaryServingCells  secondaryServingCells
        Unsigned 32-bit integer
    nbap.secondary_CCPCH_InformationList  secondary-CCPCH-InformationList
        Unsigned 32-bit integer
        S_CCPCH_InformationList_AuditRsp
    nbap.secondary_CCPCH_SlotFormat  secondary-CCPCH-SlotFormat
        Unsigned 32-bit integer
        SecondaryCCPCH_SlotFormat
    nbap.secondary_CCPCH_parameters  secondary-CCPCH-parameters
        No value
        Secondary_CCPCH_CTCH_SetupRqstFDD
    nbap.secondary_CPICH_Information  secondary-CPICH-Information
        Unsigned 32-bit integer
        CommonPhysicalChannelID
    nbap.secondary_CPICH_InformationList  secondary-CPICH-InformationList
        Unsigned 32-bit integer
        S_CPICH_InformationList_AuditRsp
    nbap.secondary_CPICH_Information_Change  secondary-CPICH-Information-Change
        Unsigned 32-bit integer
    nbap.secondary_CPICH_shall_not_be_used  secondary-CPICH-shall-not-be-used
        No value
    nbap.secondary_SCH_Information  secondary-SCH-Information
        No value
        S_SCH_Information_AuditRsp
    nbap.secondary_UL_Frequency_Activation_State  secondary-UL-Frequency-Activation-State
        Unsigned 32-bit integer
    nbap.secondary_e_RNTI  secondary-e-RNTI
        Unsigned 32-bit integer
        E_RNTI
    nbap.seed  seed
        Unsigned 32-bit integer
        INTEGER_0_63
    nbap.segmentInformationList  segmentInformationList
        No value
        SegmentInformationList_SystemInfoUpdate
    nbap.segment_Type  segment-Type
        Unsigned 32-bit integer
    nbap.selected_MBMS_Service  selected-MBMS-Service
        No value
    nbap.selected_MBMS_Service_List  selected-MBMS-Service-List
        Unsigned 32-bit integer
    nbap.selected_MBMS_Service_TimeSlot_Information_LCR  selected-MBMS-Service-TimeSlot-Information-LCR
        Unsigned 32-bit integer
    nbap.semi_staticPart  semi-staticPart
        No value
        TransportFormatSet_Semi_staticPart
    nbap.separate_indication  separate-indication
        No value
    nbap.sequenceNumber  sequenceNumber
        Unsigned 32-bit integer
        PLCCHsequenceNumber
    nbap.serviceImpacting  serviceImpacting
        No value
        ServiceImpacting_ResourceStatusInd
    nbap.serving_E_DCH_RL_in_this_NodeB  serving-E-DCH-RL-in-this-NodeB
        No value
    nbap.serving_E_DCH_RL_not_in_this_NodeB  serving-E-DCH-RL-not-in-this-NodeB
        No value
    nbap.serving_Grant_Value  serving-Grant-Value
        Unsigned 32-bit integer
        E_Serving_Grant_Value
    nbap.setSpecificCause  setSpecificCause
        No value
        SetSpecificCauseList_PSCH_ReconfFailureTDD
    nbap.setsOfHS_SCCH_Codes  setsOfHS-SCCH-Codes
        Unsigned 32-bit integer
    nbap.setup  setup
        No value
        Additional_EDCH_Setup_Info
    nbap.setup_Or_Addition_Of_EDCH_On_secondary_UL_Frequency  setup-Or-Addition-Of-EDCH-On-secondary-UL-Frequency
        Unsigned 32-bit integer
    nbap.setup_Or_ConfigurationChange_Or_Removal_Of_EDCH_On_secondary_UL_Frequency  setup-Or-ConfigurationChange-Or-Removal-Of-EDCH-On-secondary-UL-Frequency
        Unsigned 32-bit integer
    nbap.sf1_reserved_nav  sf1-reserved-nav
        Byte array
        BIT_STRING_SIZE_87
    nbap.sfn  sfn
        Unsigned 32-bit integer
    nbap.shortTransActionId  shortTransActionId
        Unsigned 32-bit integer
        INTEGER_0_127
    nbap.signalledGainFactors  signalledGainFactors
        No value
    nbap.signalsAvailable  signalsAvailable
        Byte array
        BIT_STRING_SIZE_8
    nbap.signature0  signature0
        Boolean
    nbap.signature1  signature1
        Boolean
    nbap.signature10  signature10
        Boolean
    nbap.signature11  signature11
        Boolean
    nbap.signature12  signature12
        Boolean
    nbap.signature13  signature13
        Boolean
    nbap.signature14  signature14
        Boolean
    nbap.signature15  signature15
        Boolean
    nbap.signature2  signature2
        Boolean
    nbap.signature3  signature3
        Boolean
    nbap.signature4  signature4
        Boolean
    nbap.signature5  signature5
        Boolean
    nbap.signature6  signature6
        Boolean
    nbap.signature7  signature7
        Boolean
    nbap.signature8  signature8
        Boolean
    nbap.signature9  signature9
        Boolean
    nbap.signatureSequenceGroupIndex  signatureSequenceGroupIndex
        Unsigned 32-bit integer
    nbap.sir  sir
        Unsigned 32-bit integer
        SIR_Value_IncrDecrThres
    nbap.sir_error  sir-error
        Unsigned 32-bit integer
        SIR_Error_Value_IncrDecrThres
    nbap.sixteenQAM  sixteenQAM
        Signed 32-bit integer
        MBSFN_CPICH_secondary_CCPCH_power_offset
    nbap.sixtyfourQAM_DL_UsageIndicator  sixtyfourQAM-DL-UsageIndicator
        Unsigned 32-bit integer
    nbap.sixtyfourQAM_UsageAllowedIndicator  sixtyfourQAM-UsageAllowedIndicator
        Unsigned 32-bit integer
    nbap.soffset  soffset
        Unsigned 32-bit integer
    nbap.spare_zero_fill  spare-zero-fill
        Byte array
        BIT_STRING_SIZE_20
    nbap.specialBurstScheduling  specialBurstScheduling
        Unsigned 32-bit integer
    nbap.startCode  startCode
        Unsigned 32-bit integer
        TDD_ChannelisationCode
    nbap.starting_E_RNTI  starting-E-RNTI
        Unsigned 32-bit integer
        E_RNTI
    nbap.status_Flag  status-Flag
        Unsigned 32-bit integer
    nbap.status_health  status-health
        Unsigned 32-bit integer
        GPS_Status_Health
    nbap.steadyStatePhase  steadyStatePhase
        Unsigned 32-bit integer
        INTEGER_0_255_
    nbap.storm_flag_five  storm-flag-five
        Boolean
        BOOLEAN
    nbap.storm_flag_four  storm-flag-four
        Boolean
        BOOLEAN
    nbap.storm_flag_one  storm-flag-one
        Boolean
        BOOLEAN
    nbap.storm_flag_three  storm-flag-three
        Boolean
        BOOLEAN
    nbap.storm_flag_two  storm-flag-two
        Boolean
        BOOLEAN
    nbap.sttd_Indicator  sttd-Indicator
        Unsigned 32-bit integer
    nbap.subCh0  subCh0
        Boolean
    nbap.subCh1  subCh1
        Boolean
    nbap.subCh10  subCh10
        Boolean
    nbap.subCh11  subCh11
        Boolean
    nbap.subCh2  subCh2
        Boolean
    nbap.subCh3  subCh3
        Boolean
    nbap.subCh4  subCh4
        Boolean
    nbap.subCh5  subCh5
        Boolean
    nbap.subCh6  subCh6
        Boolean
    nbap.subCh7  subCh7
        Boolean
    nbap.subCh8  subCh8
        Boolean
    nbap.subCh9  subCh9
        Boolean
    nbap.sub_Frame_Number  sub-Frame-Number
        Unsigned 32-bit integer
    nbap.subframeNumber  subframeNumber
        Unsigned 32-bit integer
    nbap.succesfulOutcome  succesfulOutcome
        No value
        SuccessfulOutcome
    nbap.successful_RL_InformationRespList_RL_AdditionFailureFDD  successful-RL-InformationRespList-RL-AdditionFailureFDD
        Unsigned 32-bit integer
    nbap.successful_RL_InformationRespList_RL_SetupFailureFDD  successful-RL-InformationRespList-RL-SetupFailureFDD
        Unsigned 32-bit integer
    nbap.successfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation  successfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation
        Unsigned 32-bit integer
    nbap.successfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation_item  successfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation item
        No value
    nbap.svHealth  svHealth
        Byte array
        BIT_STRING_SIZE_6
    nbap.svID  svID
        Unsigned 32-bit integer
        INTEGER_0_63
    nbap.sv_health_nav  sv-health-nav
        Byte array
        BIT_STRING_SIZE_6
    nbap.svhealth_alm  svhealth-alm
        Byte array
        BIT_STRING_SIZE_8
    nbap.syncBurstInfo  syncBurstInfo
        Unsigned 32-bit integer
        CellSyncBurstInfoList_CellSyncReconfRqstTDD
    nbap.syncCaseIndicator  syncCaseIndicator
        No value
        SyncCaseIndicator_Cell_SetupRqstTDD_PSCH
    nbap.syncDLCodeIDNotAvailable  syncDLCodeIDNotAvailable
        No value
    nbap.syncDLCodeId  syncDLCodeId
        Unsigned 32-bit integer
    nbap.syncDLCodeIdArrivTime  syncDLCodeIdArrivTime
        Unsigned 32-bit integer
        CellSyncBurstTimingLCR
    nbap.syncDLCodeIdAvailable  syncDLCodeIdAvailable
        No value
        SyncDLCodeIdAvailable_CellSyncReprtTDD
    nbap.syncDLCodeIdInfoLCR  syncDLCodeIdInfoLCR
        Unsigned 32-bit integer
        SyncDLCodeInfoListLCR
    nbap.syncDLCodeIdInfo_CellSyncReprtTDD  syncDLCodeIdInfo-CellSyncReprtTDD
        Unsigned 32-bit integer
    nbap.syncDLCodeIdSIR  syncDLCodeIdSIR
        Unsigned 32-bit integer
        CellSyncBurstSIR
    nbap.syncDLCodeIdTiming  syncDLCodeIdTiming
        Unsigned 32-bit integer
        CellSyncBurstTimingLCR
    nbap.syncDLCodeIdTimingThre  syncDLCodeIdTimingThre
        Unsigned 32-bit integer
        CellSyncBurstTimingThreshold
    nbap.syncFrameNoToReceive  syncFrameNoToReceive
        Unsigned 32-bit integer
        SyncFrameNumber
    nbap.syncFrameNrToReceive  syncFrameNrToReceive
        Unsigned 32-bit integer
        SyncFrameNumber
    nbap.syncFrameNumber  syncFrameNumber
        Unsigned 32-bit integer
    nbap.syncFrameNumberToTransmit  syncFrameNumberToTransmit
        Unsigned 32-bit integer
        SyncFrameNumber
    nbap.syncFrameNumberforTransmit  syncFrameNumberforTransmit
        Unsigned 32-bit integer
        SyncFrameNumber
    nbap.syncReportType_CellSyncReprtTDD  syncReportType-CellSyncReprtTDD
        No value
        SyncReportTypeIE_CellSyncReprtTDD
    nbap.sync_InformationLCR  sync-InformationLCR
        No value
    nbap.synchronisationReportCharactThreExc  synchronisationReportCharactThreExc
        Unsigned 32-bit integer
    nbap.synchronisationReportCharacteristics  synchronisationReportCharacteristics
        No value
    nbap.synchronisationReportCharacteristicsType  synchronisationReportCharacteristicsType
        Unsigned 32-bit integer
    nbap.synchronisationReportType  synchronisationReportType
        Unsigned 32-bit integer
    nbap.synchronised  synchronised
        Unsigned 32-bit integer
        CFN
    nbap.t1  t1
        Unsigned 32-bit integer
    nbap.t321  t321
        Unsigned 32-bit integer
    nbap.tDDAckNackPowerOffset  tDDAckNackPowerOffset
        Signed 32-bit integer
        TDD_AckNack_Power_Offset
    nbap.tDD_AckNack_Power_Offset  tDD-AckNack-Power-Offset
        Signed 32-bit integer
    nbap.tDD_ChannelisationCode  tDD-ChannelisationCode
        Unsigned 32-bit integer
    nbap.tDD_ChannelisationCode768  tDD-ChannelisationCode768
        Unsigned 32-bit integer
    nbap.tDD_TPC_DownlinkStepSize  tDD-TPC-DownlinkStepSize
        Unsigned 32-bit integer
    nbap.tDD_TPC_DownlinkStepSize_InformationModify_RL_ReconfPrepTDD  tDD-TPC-DownlinkStepSize-InformationModify-RL-ReconfPrepTDD
        Unsigned 32-bit integer
        TDD_TPC_DownlinkStepSize
    nbap.tDD_TPC_UplinkStepSize_LCR  tDD-TPC-UplinkStepSize-LCR
        Unsigned 32-bit integer
    nbap.tDM_Length  tDM-Length
        Unsigned 32-bit integer
        INTEGER_1_8
    nbap.tDM_Offset  tDM-Offset
        Unsigned 32-bit integer
        INTEGER_0_8
    nbap.tDM_Rep  tDM-Rep
        Unsigned 32-bit integer
        INTEGER_2_9
    nbap.tFCI_Coding  tFCI-Coding
        Unsigned 32-bit integer
    nbap.tFCI_Presence  tFCI-Presence
        Unsigned 32-bit integer
    nbap.tFCI_Presence768  tFCI-Presence768
        Unsigned 32-bit integer
        TFCI_Presence
    nbap.tFCI_SignallingMode  tFCI-SignallingMode
        No value
    nbap.tFCI_SignallingOption  tFCI-SignallingOption
        Unsigned 32-bit integer
        TFCI_SignallingMode_TFCI_SignallingOption
    nbap.tFCS  tFCS
        No value
    nbap.tFCSvalues  tFCSvalues
        Unsigned 32-bit integer
    nbap.tFC_Beta  tFC-Beta
        Unsigned 32-bit integer
        TransportFormatCombination_Beta
    nbap.tGCFN  tGCFN
        Unsigned 32-bit integer
        CFN
    nbap.tGD  tGD
        Unsigned 32-bit integer
    nbap.tGL1  tGL1
        Unsigned 32-bit integer
        GapLength
    nbap.tGL2  tGL2
        Unsigned 32-bit integer
        GapLength
    nbap.tGPL1  tGPL1
        Unsigned 32-bit integer
        GapDuration
    nbap.tGPRC  tGPRC
        Unsigned 32-bit integer
    nbap.tGPSID  tGPSID
        Unsigned 32-bit integer
    nbap.tGSN  tGSN
        Unsigned 32-bit integer
    nbap.tSTD_Indicator  tSTD-Indicator
        Unsigned 32-bit integer
    nbap.tUTRANGANSS  tUTRANGANSS
        No value
    nbap.tUTRANGANSSChangeLimit  tUTRANGANSSChangeLimit
        Unsigned 32-bit integer
        INTEGER_1_256
    nbap.tUTRANGANSSDriftRate  tUTRANGANSSDriftRate
        Signed 32-bit integer
        INTEGER_M50_50
    nbap.tUTRANGANSSDriftRateQuality  tUTRANGANSSDriftRateQuality
        Unsigned 32-bit integer
        INTEGER_0_50
    nbap.tUTRANGANSSMeasurementAccuracyClass  tUTRANGANSSMeasurementAccuracyClass
        Unsigned 32-bit integer
        TUTRANGANSSAccuracyClass
    nbap.tUTRANGANSSQuality  tUTRANGANSSQuality
        Unsigned 32-bit integer
        INTEGER_0_255
    nbap.tUTRANGPS  tUTRANGPS
        No value
    nbap.tUTRANGPSChangeLimit  tUTRANGPSChangeLimit
        Unsigned 32-bit integer
    nbap.tUTRANGPSDriftRate  tUTRANGPSDriftRate
        Signed 32-bit integer
    nbap.tUTRANGPSDriftRateQuality  tUTRANGPSDriftRateQuality
        Unsigned 32-bit integer
    nbap.tUTRANGPSMeasurementAccuracyClass  tUTRANGPSMeasurementAccuracyClass
        Unsigned 32-bit integer
        TUTRANGPSAccuracyClass
    nbap.tUTRANGPSQuality  tUTRANGPSQuality
        Unsigned 32-bit integer
    nbap.t_PROTECT  t-PROTECT
        Unsigned 32-bit integer
    nbap.t_RLFAILURE  t-RLFAILURE
        Unsigned 32-bit integer
    nbap.t_SYNC  t-SYNC
        Unsigned 32-bit integer
    nbap.t_gd  t-gd
        Byte array
        BIT_STRING_SIZE_10
    nbap.t_gd_nav  t-gd-nav
        Byte array
        BIT_STRING_SIZE_8
    nbap.t_oa  t-oa
        Unsigned 32-bit integer
        INTEGER_0_255
    nbap.t_oc  t-oc
        Byte array
        BIT_STRING_SIZE_14
    nbap.t_oc_nav  t-oc-nav
        Byte array
        BIT_STRING_SIZE_16
    nbap.t_oe_nav  t-oe-nav
        Byte array
        BIT_STRING_SIZE_16
    nbap.t_ot_utc  t-ot-utc
        Byte array
        BIT_STRING_SIZE_8
    nbap.tauC  tauC
        Byte array
        BIT_STRING_SIZE_32
    nbap.tdd  tdd
        Unsigned 32-bit integer
        BetaCD
    nbap.tddE_PUCH_Offset  tddE-PUCH-Offset
        Unsigned 32-bit integer
    nbap.tdd_ChannelisationCode  tdd-ChannelisationCode
        Unsigned 32-bit integer
    nbap.tdd_ChannelisationCode768  tdd-ChannelisationCode768
        Unsigned 32-bit integer
    nbap.tdd_ChannelisationCodeLCR  tdd-ChannelisationCodeLCR
        No value
    nbap.tdd_DL_DPCH_TimeSlotFormat_LCR  tdd-DL-DPCH-TimeSlotFormat-LCR
        Unsigned 32-bit integer
    nbap.tdd_DPCHOffset  tdd-DPCHOffset
        Unsigned 32-bit integer
    nbap.tdd_PhysicalChannelOffset  tdd-PhysicalChannelOffset
        Unsigned 32-bit integer
    nbap.tdd_TPC_DownlinkStepSize  tdd-TPC-DownlinkStepSize
        Unsigned 32-bit integer
    nbap.tdd_UL_DPCH_TimeSlotFormat_LCR  tdd-UL-DPCH-TimeSlotFormat-LCR
        Unsigned 32-bit integer
    nbap.ten_ms  ten-ms
        No value
        DTX_Cycle_10ms_Items
    nbap.teop  teop
        Byte array
        BIT_STRING_SIZE_16
    nbap.timeSlot  timeSlot
        Unsigned 32-bit integer
    nbap.timeSlotConfigurationList_LCR_Cell_ReconfRqstTDD  timeSlotConfigurationList-LCR-Cell-ReconfRqstTDD
        Unsigned 32-bit integer
    nbap.timeSlotConfigurationList_LCR_Cell_SetupRqstTDD  timeSlotConfigurationList-LCR-Cell-SetupRqstTDD
        Unsigned 32-bit integer
    nbap.timeSlotDirection  timeSlotDirection
        Unsigned 32-bit integer
    nbap.timeSlotLCR  timeSlotLCR
        Unsigned 32-bit integer
    nbap.timeSlotMeasurementValueListLCR  timeSlotMeasurementValueListLCR
        Unsigned 32-bit integer
    nbap.timeSlotStatus  timeSlotStatus
        Unsigned 32-bit integer
    nbap.timeslot  timeslot
        Unsigned 32-bit integer
    nbap.timeslotLCR  timeslotLCR
        Unsigned 32-bit integer
    nbap.timeslotLCR_Parameter_ID  timeslotLCR-Parameter-ID
        Unsigned 32-bit integer
        CellParameterID
    nbap.timeslotResource  timeslotResource
        Byte array
        E_DCH_TimeslotResource
    nbap.timeslotResourceLCR  timeslotResourceLCR
        Byte array
        E_DCH_TimeslotResourceLCR
    nbap.timeslot_InitiatedListLCR  timeslot-InitiatedListLCR
        Unsigned 32-bit integer
    nbap.timeslot_Resource_Related_Information  timeslot-Resource-Related-Information
        Byte array
        E_DCH_TimeslotResourceLCR
    nbap.timingAdjustmentValue  timingAdjustmentValue
        Unsigned 32-bit integer
    nbap.tlm_message_nav  tlm-message-nav
        Byte array
        BIT_STRING_SIZE_14
    nbap.tlm_revd_c_nav  tlm-revd-c-nav
        Byte array
        BIT_STRING_SIZE_2
    nbap.tnlQos  tnlQos
        Unsigned 32-bit integer
    nbap.tnl_qos  tnl-qos
        Unsigned 32-bit integer
        TnlQos
    nbap.toAWE  toAWE
        Unsigned 32-bit integer
    nbap.toAWS  toAWS
        Unsigned 32-bit integer
    nbap.toe_nav  toe-nav
        Byte array
        BIT_STRING_SIZE_14
    nbap.total_HS_SICH  total-HS-SICH
        Unsigned 32-bit integer
        HS_SICH_total
    nbap.transactionID  transactionID
        Unsigned 32-bit integer
    nbap.transmissionGapPatternSequenceCodeInformation  transmissionGapPatternSequenceCodeInformation
        Unsigned 32-bit integer
    nbap.transmissionTimeInterval  transmissionTimeInterval
        Unsigned 32-bit integer
        TransportFormatSet_TransmissionTimeIntervalDynamic
    nbap.transmissionTimeIntervalInformation  transmissionTimeIntervalInformation
        Unsigned 32-bit integer
    nbap.transmission_Gap_Pattern_Sequence_Status  transmission-Gap-Pattern-Sequence-Status
        Unsigned 32-bit integer
        Transmission_Gap_Pattern_Sequence_Status_List
    nbap.transmission_Time_Interval  transmission-Time-Interval
        Unsigned 32-bit integer
    nbap.transmitDiversityIndicator  transmitDiversityIndicator
        Unsigned 32-bit integer
    nbap.transmittedCarrierPowerOfAllCodesNotUsedForHSTransmissionValue  transmittedCarrierPowerOfAllCodesNotUsedForHSTransmissionValue
        Unsigned 32-bit integer
    nbap.transmittedCodePowerValue  transmittedCodePowerValue
        Unsigned 32-bit integer
        Transmitted_Code_Power_Value
    nbap.transmitted_Carrier_Power_Value  transmitted-Carrier-Power-Value
        Unsigned 32-bit integer
    nbap.transmitted_carrier_power  transmitted-carrier-power
        Unsigned 32-bit integer
        Transmitted_Carrier_Power_Value
    nbap.transmitted_code_power  transmitted-code-power
        Unsigned 32-bit integer
        Transmitted_Code_Power_Value_IncrDecrThres
    nbap.transport  transport
        Unsigned 32-bit integer
        CauseTransport
    nbap.transportBearerRequestIndicator  transportBearerRequestIndicator
        Unsigned 32-bit integer
    nbap.transportBlockSize  transportBlockSize
        Unsigned 32-bit integer
        TransportFormatSet_TransportBlockSize
    nbap.transportFormatSet  transportFormatSet
        No value
    nbap.transportLayerAddress  transportLayerAddress
        Byte array
    nbap.transportLayerAddress_ipv4  transportLayerAddress IPv4
        IPv4 address
    nbap.transportLayerAddress_ipv6  transportLayerAddress IPv6
        IPv6 address
    nbap.transport_Bearer_Rearrangement_Indicator_for_Additional_EDCH_Separate_Mode  transport-Bearer-Rearrangement-Indicator-for-Additional-EDCH-Separate-Mode
        Unsigned 32-bit integer
    nbap.transport_Block_Size_Index  transport-Block-Size-Index
        Unsigned 32-bit integer
    nbap.transport_Block_Size_Index_LCR  transport-Block-Size-Index-LCR
        Unsigned 32-bit integer
    nbap.transport_Block_Size_Index_for_Enhanced_PCH  transport-Block-Size-Index-for-Enhanced-PCH
        Unsigned 32-bit integer
    nbap.transport_Block_Size_List  transport-Block-Size-List
        Unsigned 32-bit integer
    nbap.transport_Block_Size_maping_Index_LCR  transport-Block-Size-maping-Index-LCR
        Unsigned 32-bit integer
    nbap.transportlayeraddress  transportlayeraddress
        Byte array
    nbap.triggeringMessage  triggeringMessage
        Unsigned 32-bit integer
    nbap.tstdIndicator  tstdIndicator
        Unsigned 32-bit integer
        TSTD_Indicator
    nbap.two_ms  two-ms
        No value
        DTX_Cycle_2ms_Items
    nbap.tx_tow_nav  tx-tow-nav
        Unsigned 32-bit integer
        INTEGER_0_1048575
    nbap.type1  type1
        No value
    nbap.type2  type2
        No value
    nbap.type3  type3
        No value
    nbap.uARFCN  uARFCN
        Unsigned 32-bit integer
    nbap.uC_Id  uC-Id
        No value
    nbap.uE_AggregateMaximumBitRateDownlink  uE-AggregateMaximumBitRateDownlink
        Unsigned 32-bit integer
    nbap.uE_AggregateMaximumBitRateUplink  uE-AggregateMaximumBitRateUplink
        Unsigned 32-bit integer
    nbap.uE_DPCCH_burst1  uE-DPCCH-burst1
        Unsigned 32-bit integer
    nbap.uE_DPCCH_burst2  uE-DPCCH-burst2
        Unsigned 32-bit integer
    nbap.uE_DRX_Cycle  uE-DRX-Cycle
        Unsigned 32-bit integer
    nbap.uE_DRX_Grant_Monitoring  uE-DRX-Grant-Monitoring
        Boolean
    nbap.uE_DTX_Cycle1_10ms  uE-DTX-Cycle1-10ms
        Unsigned 32-bit integer
    nbap.uE_DTX_Cycle1_2ms  uE-DTX-Cycle1-2ms
        Unsigned 32-bit integer
    nbap.uE_DTX_Cycle2_10ms  uE-DTX-Cycle2-10ms
        Unsigned 32-bit integer
    nbap.uE_DTX_Cycle2_2ms  uE-DTX-Cycle2-2ms
        Unsigned 32-bit integer
    nbap.uE_DTX_DRX_Offset  uE-DTX-DRX-Offset
        Unsigned 32-bit integer
    nbap.uE_DTX_Long_Preamble  uE-DTX-Long-Preamble
        Unsigned 32-bit integer
    nbap.uE_with_enhanced_HS_SCCH_support_indicator  uE-with-enhanced-HS-SCCH-support-indicator
        No value
    nbap.uL_Code_768_InformationModifyList_PSCH_ReconfRqst  uL-Code-768-InformationModifyList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.uL_Code_InformationAddList_768_PSCH_ReconfRqst  uL-Code-InformationAddList-768-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.uL_Code_InformationAddList_LCR_PSCH_ReconfRqst  uL-Code-InformationAddList-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.uL_Code_InformationAddList_PSCH_ReconfRqst  uL-Code-InformationAddList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.uL_Code_InformationList  uL-Code-InformationList
        Unsigned 32-bit integer
        TDD_UL_Code_Information
    nbap.uL_Code_InformationModifyList_PSCH_ReconfRqst  uL-Code-InformationModifyList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.uL_Code_InformationModify_ModifyList_RL_ReconfPrepTDD  uL-Code-InformationModify-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.uL_Code_InformationModify_ModifyList_RL_ReconfPrepTDD768  uL-Code-InformationModify-ModifyList-RL-ReconfPrepTDD768
        Unsigned 32-bit integer
    nbap.uL_Code_InformationModify_ModifyList_RL_ReconfPrepTDDLCR  uL-Code-InformationModify-ModifyList-RL-ReconfPrepTDDLCR
        Unsigned 32-bit integer
    nbap.uL_Code_LCR_InformationModifyList_PSCH_ReconfRqst  uL-Code-LCR-InformationModifyList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.uL_DL_mode  uL-DL-mode
        Unsigned 32-bit integer
    nbap.uL_DPCH_Information  uL-DPCH-Information
        No value
        UL_DPCH_Information_RL_SetupRqstTDD
    nbap.uL_Delta_T2TP  uL-Delta-T2TP
        Unsigned 32-bit integer
    nbap.uL_SIR_Target  uL-SIR-Target
        Signed 32-bit integer
        UL_SIR
    nbap.uL_ScramblingCodeLength  uL-ScramblingCodeLength
        Unsigned 32-bit integer
    nbap.uL_ScramblingCodeNumber  uL-ScramblingCodeNumber
        Unsigned 32-bit integer
    nbap.uL_Synchronisation_Frequency  uL-Synchronisation-Frequency
        Unsigned 32-bit integer
    nbap.uL_Synchronisation_StepSize  uL-Synchronisation-StepSize
        Unsigned 32-bit integer
    nbap.uL_TimeSlot_ISCP_Info  uL-TimeSlot-ISCP-Info
        Unsigned 32-bit integer
    nbap.uL_TimeSlot_ISCP_InfoLCR  uL-TimeSlot-ISCP-InfoLCR
        Unsigned 32-bit integer
        UL_TimeSlot_ISCP_LCR_Info
    nbap.uL_TimeSlot_ISCP_LCR_Info  uL-TimeSlot-ISCP-LCR-Info
        Unsigned 32-bit integer
    nbap.uL_Timeslot768_Information  uL-Timeslot768-Information
        Unsigned 32-bit integer
    nbap.uL_TimeslotISCP  uL-TimeslotISCP
        Unsigned 32-bit integer
        UL_TimeslotISCP_Value
    nbap.uL_TimeslotISCP_Value  uL-TimeslotISCP-Value
        Unsigned 32-bit integer
    nbap.uL_TimeslotLCR_Information  uL-TimeslotLCR-Information
        Unsigned 32-bit integer
    nbap.uL_Timeslot_Information  uL-Timeslot-Information
        Unsigned 32-bit integer
    nbap.uL_Timeslot_Information768  uL-Timeslot-Information768
        Unsigned 32-bit integer
        UL_Timeslot768_Information
    nbap.uL_Timeslot_InformationAddList_768_PSCH_ReconfRqst  uL-Timeslot-InformationAddList-768-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.uL_Timeslot_InformationAddList_LCR_PSCH_ReconfRqst  uL-Timeslot-InformationAddList-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.uL_Timeslot_InformationAddList_PSCH_ReconfRqst  uL-Timeslot-InformationAddList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.uL_Timeslot_InformationLCR  uL-Timeslot-InformationLCR
        Unsigned 32-bit integer
        UL_TimeslotLCR_Information
    nbap.uL_Timeslot_InformationModifyList_768_PSCH_ReconfRqst  uL-Timeslot-InformationModifyList-768-PSCH-ReconfRqst
        Unsigned 32-bit integer
        UL_Timeslot_768_InformationModifyList_PSCH_ReconfRqst
    nbap.uL_Timeslot_InformationModifyList_LCR_PSCH_ReconfRqst  uL-Timeslot-InformationModifyList-LCR-PSCH-ReconfRqst
        Unsigned 32-bit integer
        UL_Timeslot_LCR_InformationModifyList_PSCH_ReconfRqst
    nbap.uL_Timeslot_InformationModifyList_PSCH_ReconfRqst  uL-Timeslot-InformationModifyList-PSCH-ReconfRqst
        Unsigned 32-bit integer
    nbap.uL_Timeslot_InformationModify_ModifyList_RL_ReconfPrepTDD  uL-Timeslot-InformationModify-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    nbap.uL_TransportFormatSet  uL-TransportFormatSet
        No value
        TransportFormatSet
    nbap.uPPCHPositionLCR  uPPCHPositionLCR
        Unsigned 32-bit integer
    nbap.uSCH_ID  uSCH-ID
        Unsigned 32-bit integer
    nbap.uSCH_InformationResponseList  uSCH-InformationResponseList
        No value
        USCH_InformationResponseList_RL_SetupRspTDD
    nbap.uSCH_InformationResponseList_RL_ReconfReady  uSCH-InformationResponseList-RL-ReconfReady
        No value
    nbap.uU_ActivationState  uU-ActivationState
        Unsigned 32-bit integer
    nbap.udre  udre
        Unsigned 32-bit integer
    nbap.udreGrowthRate  udreGrowthRate
        Unsigned 32-bit integer
    nbap.udreValidityTime  udreValidityTime
        Unsigned 32-bit integer
    nbap.ueCapability_Info  ueCapability-Info
        No value
        UE_Capability_Information
    nbap.ueSpecificMidamble  ueSpecificMidamble
        Unsigned 32-bit integer
        MidambleShiftLong
    nbap.ul_CCTrCH_ID  ul-CCTrCH-ID
        Unsigned 32-bit integer
        CCTrCH_ID
    nbap.ul_Common_MACFlowID  ul-Common-MACFlowID
        Unsigned 32-bit integer
        Common_MACFlow_ID
    nbap.ul_Common_MACFlowIDLCR  ul-Common-MACFlowIDLCR
        Unsigned 32-bit integer
        Common_MACFlow_ID_LCR
    nbap.ul_Common_MACFlowID_LCR  ul-Common-MACFlowID-LCR
        Unsigned 32-bit integer
        Common_MACFlow_ID_LCR
    nbap.ul_Cost  ul-Cost
        Unsigned 32-bit integer
        INTEGER_0_65535
    nbap.ul_Cost_1  ul-Cost-1
        Unsigned 32-bit integer
        INTEGER_0_65535
    nbap.ul_Cost_2  ul-Cost-2
        Unsigned 32-bit integer
        INTEGER_0_65535
    nbap.ul_DPCCH_SlotFormat  ul-DPCCH-SlotFormat
        Unsigned 32-bit integer
    nbap.ul_DPCH_InformationAddList  ul-DPCH-InformationAddList
        No value
        UL_DPCH_InformationModify_AddList_RL_ReconfPrepTDD
    nbap.ul_DPCH_InformationAddListLCR  ul-DPCH-InformationAddListLCR
        No value
        UL_DPCH_LCR_InformationModify_AddList_RL_ReconfPrepTDD
    nbap.ul_DPCH_InformationDeleteList  ul-DPCH-InformationDeleteList
        No value
        UL_DPCH_InformationModify_DeleteList_RL_ReconfPrepTDD
    nbap.ul_DPCH_InformationList  ul-DPCH-InformationList
        No value
        UL_DPCH_InformationAddList_RL_ReconfPrepTDD
    nbap.ul_DPCH_InformationListLCR  ul-DPCH-InformationListLCR
        No value
        UL_DPCH_LCR_InformationAddList_RL_ReconfPrepTDD
    nbap.ul_DPCH_InformationModifyList  ul-DPCH-InformationModifyList
        No value
        UL_DPCH_InformationModify_ModifyList_RL_ReconfPrepTDD
    nbap.ul_DPCH_ScramblingCode  ul-DPCH-ScramblingCode
        No value
        UL_ScramblingCode
    nbap.ul_FP_Mode  ul-FP-Mode
        Unsigned 32-bit integer
    nbap.ul_PhysCH_SF_Variation  ul-PhysCH-SF-Variation
        Unsigned 32-bit integer
    nbap.ul_PunctureLimit  ul-PunctureLimit
        Unsigned 32-bit integer
        PunctureLimit
    nbap.ul_SIR_Target  ul-SIR-Target
        Signed 32-bit integer
        UL_SIR
    nbap.ul_ScramblingCode  ul-ScramblingCode
        No value
    nbap.ul_TFCS  ul-TFCS
        No value
        TFCS
    nbap.ul_TransportFormatSet  ul-TransportFormatSet
        No value
        TransportFormatSet
    nbap.ul_capacityCredit  ul-capacityCredit
        Unsigned 32-bit integer
    nbap.ul_common_E_DCH_MACflow_Specific_InfoResponse  ul-common-E-DCH-MACflow-Specific-InfoResponse
        Unsigned 32-bit integer
        Ul_common_E_DCH_MACflow_Specific_InfoResponseList
    nbap.ul_common_E_DCH_MACflow_Specific_InfoResponseLCR  ul-common-E-DCH-MACflow-Specific-InfoResponseLCR
        Unsigned 32-bit integer
        Ul_common_E_DCH_MACflow_Specific_InfoResponseListLCR
    nbap.ul_common_E_DCH_MACflow_Specific_Information  ul-common-E-DCH-MACflow-Specific-Information
        Unsigned 32-bit integer
        Ul_common_E_DCH_MACflow_Specific_InfoList
    nbap.ul_common_E_DCH_MACflow_Specific_InformationLCR  ul-common-E-DCH-MACflow-Specific-InformationLCR
        Unsigned 32-bit integer
        Ul_common_E_DCH_MACflow_Specific_InfoListLCR
    nbap.ul_punctureLimit  ul-punctureLimit
        Unsigned 32-bit integer
        PunctureLimit
    nbap.ul_sir_target  ul-sir-target
        Signed 32-bit integer
        UL_SIR
    nbap.unsuccesfulOutcome  unsuccesfulOutcome
        No value
        UnsuccessfulOutcome
    nbap.unsuccessful_PDSCHSetList_PSCH_ReconfFailureTDD  unsuccessful-PDSCHSetList-PSCH-ReconfFailureTDD
        Unsigned 32-bit integer
    nbap.unsuccessful_PUSCHSetList_PSCH_ReconfFailureTDD  unsuccessful-PUSCHSetList-PSCH-ReconfFailureTDD
        Unsigned 32-bit integer
    nbap.unsuccessful_RL_InformationRespItem_RL_AdditionFailureTDD  unsuccessful-RL-InformationRespItem-RL-AdditionFailureTDD
        No value
    nbap.unsuccessful_RL_InformationRespItem_RL_SetupFailureTDD  unsuccessful-RL-InformationRespItem-RL-SetupFailureTDD
        No value
    nbap.unsuccessful_RL_InformationRespList_RL_AdditionFailureFDD  unsuccessful-RL-InformationRespList-RL-AdditionFailureFDD
        Unsigned 32-bit integer
    nbap.unsuccessful_RL_InformationRespList_RL_SetupFailureFDD  unsuccessful-RL-InformationRespList-RL-SetupFailureFDD
        Unsigned 32-bit integer
    nbap.unsuccessful_cell_InformationRespList_SyncAdjustmntFailureTDD  unsuccessful-cell-InformationRespList-SyncAdjustmntFailureTDD
        Unsigned 32-bit integer
    nbap.unsuccessfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation  unsuccessfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation
        Unsigned 32-bit integer
    nbap.unsuccessfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation_item  unsuccessfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation item
        No value
    nbap.unsynchronised  unsynchronised
        No value
    nbap.upPTSInterferenceValue  upPTSInterferenceValue
        Unsigned 32-bit integer
    nbap.uplink_Compressed_Mode_Method  uplink-Compressed-Mode-Method
        Unsigned 32-bit integer
    nbap.user_range_accuracy_index_nav  user-range-accuracy-index-nav
        Byte array
        BIT_STRING_SIZE_4
    nbap.utcA0  utcA0
        Byte array
        BIT_STRING_SIZE_16
    nbap.utcA0wnt  utcA0wnt
        Byte array
        BIT_STRING_SIZE_32
    nbap.utcA1  utcA1
        Byte array
        BIT_STRING_SIZE_13
    nbap.utcA1wnt  utcA1wnt
        Byte array
        BIT_STRING_SIZE_24
    nbap.utcA2  utcA2
        Byte array
        BIT_STRING_SIZE_7
    nbap.utcDN  utcDN
        Byte array
        BIT_STRING_SIZE_4
    nbap.utcDeltaTls  utcDeltaTls
        Byte array
        BIT_STRING_SIZE_8
    nbap.utcDeltaTlsf  utcDeltaTlsf
        Byte array
        BIT_STRING_SIZE_8
    nbap.utcModel1  utcModel1
        No value
        GANSS_UTCmodelSet1
    nbap.utcModel2  utcModel2
        No value
        GANSS_UTCmodelSet2
    nbap.utcModel3  utcModel3
        No value
        GANSS_UTCmodelSet3
    nbap.utcStandardID  utcStandardID
        Byte array
        BIT_STRING_SIZE_3
    nbap.utcTot  utcTot
        Byte array
        BIT_STRING_SIZE_16
    nbap.utcWNlsf  utcWNlsf
        Byte array
        BIT_STRING_SIZE_8
    nbap.utcWNot  utcWNot
        Byte array
        BIT_STRING_SIZE_13
    nbap.utcWNt  utcWNt
        Byte array
        BIT_STRING_SIZE_8
    nbap.vacant_ERNTI  vacant-ERNTI
        Unsigned 32-bit integer
    nbap.value  value
        No value
        ProtocolIE_Field_value
    nbap.w_n_lsf_utc  w-n-lsf-utc
        Byte array
        BIT_STRING_SIZE_8
    nbap.w_n_nav  w-n-nav
        Byte array
        BIT_STRING_SIZE_10
    nbap.w_n_t_utc  w-n-t-utc
        Byte array
        BIT_STRING_SIZE_8
    nbap.wna_alm  wna-alm
        Byte array
        BIT_STRING_SIZE_8
    nbap.yes_Deletion  yes-Deletion
        No value

UTRAN Iuh interface HNBAP signalling (hnbap)

    hnbap.BackoffTimer  BackoffTimer
        Unsigned 32-bit integer
    hnbap.CSGMembershipStatus  CSGMembershipStatus
        Unsigned 32-bit integer
    hnbap.CSGMembershipUpdate  CSGMembershipUpdate
        No value
    hnbap.CSG_ID  CSG-ID
        Byte array
    hnbap.Cause  Cause
        Unsigned 32-bit integer
    hnbap.CellIdentity  CellIdentity
        Byte array
    hnbap.Context_ID  Context-ID
        Byte array
    hnbap.CriticalityDiagnostics  CriticalityDiagnostics
        No value
    hnbap.CriticalityDiagnostics_IE_List_item  CriticalityDiagnostics-IE-List item
        No value
    hnbap.ErrorIndication  ErrorIndication
        No value
    hnbap.HNBAP_PDU  HNBAP-PDU
        Unsigned 32-bit integer
    hnbap.HNBDe_Register  HNBDe-Register
        No value
    hnbap.HNBRegisterAccept  HNBRegisterAccept
        No value
    hnbap.HNBRegisterReject  HNBRegisterReject
        No value
    hnbap.HNBRegisterRequest  HNBRegisterRequest
        No value
    hnbap.HNB_Cell_Access_Mode  HNB-Cell-Access-Mode
        Unsigned 32-bit integer
    hnbap.HNB_Identity  HNB-Identity
        No value
    hnbap.HNB_Location_Information  HNB-Location-Information
        No value
    hnbap.IP_Address  IP-Address
        No value
    hnbap.LAC  LAC
        Byte array
    hnbap.MuxPortNumber  MuxPortNumber
        Unsigned 32-bit integer
    hnbap.PLMNidentity  PLMNidentity
        Byte array
    hnbap.PrivateIE_Field  PrivateIE-Field
        No value
    hnbap.PrivateMessage  PrivateMessage
        No value
    hnbap.ProtocolExtensionField  ProtocolExtensionField
        No value
    hnbap.ProtocolIE_Field  ProtocolIE-Field
        No value
    hnbap.RAC  RAC
        Byte array
    hnbap.RNC_ID  RNC-ID
        Unsigned 32-bit integer
    hnbap.Registration_Cause  Registration-Cause
        Unsigned 32-bit integer
    hnbap.SAC  SAC
        Byte array
    hnbap.UEDe_Register  UEDe-Register
        No value
    hnbap.UERegisterAccept  UERegisterAccept
        No value
    hnbap.UERegisterReject  UERegisterReject
        No value
    hnbap.UERegisterRequest  UERegisterRequest
        No value
    hnbap.UE_Capabilities  UE-Capabilities
        No value
    hnbap.UE_Identity  UE-Identity
        Unsigned 32-bit integer
    hnbap.access_stratum_release_indicator  access-stratum-release-indicator
        Unsigned 32-bit integer
    hnbap.altitude  altitude
        Unsigned 32-bit integer
        INTEGER_0_32767
    hnbap.altitudeAndDirection  altitudeAndDirection
        No value
    hnbap.cI  cI
        Byte array
    hnbap.cellIdentity  cellIdentity
        Unsigned 32-bit integer
        MacroCellID
    hnbap.criticality  criticality
        Unsigned 32-bit integer
    hnbap.csg_indicator  csg-indicator
        Unsigned 32-bit integer
    hnbap.directionOfAltitude  directionOfAltitude
        Unsigned 32-bit integer
    hnbap.eSN  eSN
        Byte array
    hnbap.extensionValue  extensionValue
        No value
    hnbap.gERANCellID  gERANCellID
        No value
        CGI
    hnbap.geographicalCoordinates  geographicalCoordinates
        No value
    hnbap.global  global
        Object Identifier
        OBJECT_IDENTIFIER
    hnbap.hNB_Identity_Info  hNB-Identity-Info
        Byte array
    hnbap.iECriticality  iECriticality
        Unsigned 32-bit integer
        Criticality
    hnbap.iE_Extensions  iE-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    hnbap.iE_ID  iE-ID
        Unsigned 32-bit integer
        ProtocolIE_ID
    hnbap.iEsCriticalityDiagnostics  iEsCriticalityDiagnostics
        Unsigned 32-bit integer
        CriticalityDiagnostics_IE_List
    hnbap.iMEI  iMEI
        Byte array
    hnbap.iMSI  iMSI
        Byte array
    hnbap.iMSIDS41  iMSIDS41
        Byte array
    hnbap.iMSIESN  iMSIESN
        No value
    hnbap.id  id
        Unsigned 32-bit integer
        ProtocolIE_ID
    hnbap.initiatingMessage  initiatingMessage
        No value
    hnbap.ipaddress  ipaddress
        Unsigned 32-bit integer
    hnbap.ipv4info  ipv4info
        Byte array
        Ipv4Address
    hnbap.ipv6info  ipv6info
        Byte array
        Ipv6Address
    hnbap.lAC  lAC
        Byte array
    hnbap.lAI  lAI
        No value
    hnbap.latitude  latitude
        Unsigned 32-bit integer
        INTEGER_0_8388607
    hnbap.latitudeSign  latitudeSign
        Unsigned 32-bit integer
    hnbap.local  local
        Unsigned 32-bit integer
        INTEGER_0_65535
    hnbap.longitude  longitude
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    hnbap.macroCoverageInfo  macroCoverageInfo
        No value
        MacroCoverageInformation
    hnbap.misc  misc
        Unsigned 32-bit integer
        CauseMisc
    hnbap.pLMNID  pLMNID
        Byte array
        PLMNidentity
    hnbap.pLMNidentity  pLMNidentity
        Byte array
    hnbap.pTMSI  pTMSI
        Byte array
    hnbap.pTMSIRAI  pTMSIRAI
        No value
    hnbap.privateIEs  privateIEs
        Unsigned 32-bit integer
        PrivateIE_Container
    hnbap.procedureCode  procedureCode
        Unsigned 32-bit integer
    hnbap.procedureCriticality  procedureCriticality
        Unsigned 32-bit integer
        Criticality
    hnbap.protocol  protocol
        Unsigned 32-bit integer
        CauseProtocol
    hnbap.protocolExtensions  protocolExtensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    hnbap.protocolIEs  protocolIEs
        Unsigned 32-bit integer
        ProtocolIE_Container
    hnbap.rAC  rAC
        Byte array
    hnbap.rAI  rAI
        No value
    hnbap.radioNetwork  radioNetwork
        Unsigned 32-bit integer
        CauseRadioNetwork
    hnbap.successfulOutcome  successfulOutcome
        No value
    hnbap.tMSI  tMSI
        Byte array
        BIT_STRING_SIZE_32
    hnbap.tMSIDS41  tMSIDS41
        Byte array
    hnbap.tMSILAI  tMSILAI
        No value
    hnbap.transport  transport
        Unsigned 32-bit integer
        CauseTransport
    hnbap.triggeringMessage  triggeringMessage
        Unsigned 32-bit integer
    hnbap.typeOfError  typeOfError
        Unsigned 32-bit integer
    hnbap.uTRANCellID  uTRANCellID
        No value
    hnbap.uTRANcellID  uTRANcellID
        Byte array
        CellIdentity
    hnbap.unsuccessfulOutcome  unsuccessfulOutcome
        No value
    hnbap.value  value
        No value
        ProtocolIE_Field_value

UTRAN Iuh interface RUA signalling (rua)

    rua.CN_DomainIndicator  CN-DomainIndicator
        Unsigned 32-bit integer
    rua.CSGMembershipStatus  CSGMembershipStatus
        Unsigned 32-bit integer
    rua.Cause  Cause
        Unsigned 32-bit integer
    rua.Connect  Connect
        No value
    rua.ConnectionlessTransfer  ConnectionlessTransfer
        No value
    rua.Context_ID  Context-ID
        Byte array
    rua.CriticalityDiagnostics  CriticalityDiagnostics
        No value
    rua.CriticalityDiagnostics_IE_List_item  CriticalityDiagnostics-IE-List item
        No value
    rua.DirectTransfer  DirectTransfer
        No value
    rua.Disconnect  Disconnect
        No value
    rua.ErrorIndication  ErrorIndication
        No value
    rua.Establishment_Cause  Establishment-Cause
        Unsigned 32-bit integer
    rua.IntraDomainNasNodeSelector  IntraDomainNasNodeSelector
        No value
    rua.PrivateIE_Field  PrivateIE-Field
        No value
    rua.PrivateMessage  PrivateMessage
        No value
    rua.ProtocolExtensionField  ProtocolExtensionField
        No value
    rua.ProtocolIE_Field  ProtocolIE-Field
        No value
    rua.RANAP_Message  RANAP-Message
        Byte array
    rua.RUA_PDU  RUA-PDU
        Unsigned 32-bit integer
    rua.ansi_41_IDNNS  ansi-41-IDNNS
        Byte array
    rua.cn_Type  cn-Type
        Unsigned 32-bit integer
    rua.criticality  criticality
        Unsigned 32-bit integer
    rua.dummy  dummy
        Boolean
        BOOLEAN
    rua.extensionValue  extensionValue
        No value
    rua.futurecoding  futurecoding
        Byte array
        BIT_STRING_SIZE_15
    rua.global  global
        Object Identifier
        OBJECT_IDENTIFIER
    rua.gsm_Map_IDNNS  gsm-Map-IDNNS
        No value
    rua.iECriticality  iECriticality
        Unsigned 32-bit integer
        Criticality
    rua.iE_Extensions  iE-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    rua.iE_ID  iE-ID
        Unsigned 32-bit integer
        ProtocolIE_ID
    rua.iEsCriticalityDiagnostics  iEsCriticalityDiagnostics
        Unsigned 32-bit integer
        CriticalityDiagnostics_IE_List
    rua.iMEI  iMEI
        No value
    rua.iMSIcauseUEinitiatedEvent  iMSIcauseUEinitiatedEvent
        No value
    rua.iMSIresponsetopaging  iMSIresponsetopaging
        No value
    rua.id  id
        Unsigned 32-bit integer
        ProtocolIE_ID
    rua.initiatingMessage  initiatingMessage
        No value
    rua.later  later
        No value
    rua.local  local
        Unsigned 32-bit integer
        INTEGER_0_65535
    rua.localPTMSI  localPTMSI
        No value
    rua.misc  misc
        Unsigned 32-bit integer
        CauseMisc
    rua.privateIEs  privateIEs
        Unsigned 32-bit integer
        PrivateIE_Container
    rua.procedureCode  procedureCode
        Unsigned 32-bit integer
    rua.procedureCriticality  procedureCriticality
        Unsigned 32-bit integer
        Criticality
    rua.protocol  protocol
        Unsigned 32-bit integer
        CauseProtocol
    rua.protocolExtensions  protocolExtensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    rua.protocolIEs  protocolIEs
        Unsigned 32-bit integer
        ProtocolIE_Container
    rua.radioNetwork  radioNetwork
        Unsigned 32-bit integer
        CauseRadioNetwork
    rua.release99  release99
        No value
    rua.routingbasis  routingbasis
        Unsigned 32-bit integer
    rua.routingparameter  routingparameter
        Byte array
    rua.spare1  spare1
        No value
    rua.spare2  spare2
        No value
    rua.successfulOutcome  successfulOutcome
        No value
    rua.tMSIofdifferentPLMN  tMSIofdifferentPLMN
        No value
    rua.tMSIofsamePLMN  tMSIofsamePLMN
        No value
    rua.transport  transport
        Unsigned 32-bit integer
        CauseTransport
    rua.triggeringMessage  triggeringMessage
        Unsigned 32-bit integer
    rua.typeOfError  typeOfError
        Unsigned 32-bit integer
    rua.unsuccessfulOutcome  unsuccessfulOutcome
        No value
    rua.value  value
        No value
        ProtocolIE_Field_value
    rua.version  version
        Unsigned 32-bit integer

UTRAN Iupc interface Positioning Calculation Application Part (PCAP) (pcap)

    pcap.Abort  Abort
        No value
    pcap.AccuracyFulfilmentIndicator  AccuracyFulfilmentIndicator
        Unsigned 32-bit integer
    pcap.AcquisitionSatInfo  AcquisitionSatInfo
        No value
    pcap.AddMeasurementInfo  AddMeasurementInfo
        No value
    pcap.AddSatelliteRelatedDataGANSS  AddSatelliteRelatedDataGANSS
        No value
    pcap.AdditionalGPSAssistDataRequired  AdditionalGPSAssistDataRequired
        No value
    pcap.AdditionalGanssAssistDataRequired  AdditionalGanssAssistDataRequired
        No value
    pcap.AdditionalMeasurementInforLCR  AdditionalMeasurementInforLCR
        No value
    pcap.AlmanacSatInfo  AlmanacSatInfo
        No value
    pcap.AmountOfReporting  AmountOfReporting
        Unsigned 32-bit integer
    pcap.AngleOfArrivalLCR  AngleOfArrivalLCR
        No value
    pcap.AuxInfoGANSS_ID1_element  AuxInfoGANSS-ID1-element
        No value
    pcap.AuxInfoGANSS_ID3_element  AuxInfoGANSS-ID3-element
        No value
    pcap.BadSatList_item  BadSatList item
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.CTFC  CTFC
        Unsigned 32-bit integer
    pcap.Cause  Cause
        Unsigned 32-bit integer
    pcap.CellIDPositioning  CellIDPositioning
        No value
    pcap.CellId_MeasuredResultsInfo  CellId-MeasuredResultsInfo
        No value
    pcap.CellId_MeasuredResultsInfoList  CellId-MeasuredResultsInfoList
        Unsigned 32-bit integer
    pcap.CellId_MeasuredResultsSets  CellId-MeasuredResultsSets
        Unsigned 32-bit integer
    pcap.ClientType  ClientType
        Unsigned 32-bit integer
    pcap.CriticalityDiagnostics  CriticalityDiagnostics
        No value
    pcap.CriticalityDiagnostics_IE_List_item  CriticalityDiagnostics-IE-List item
        No value
    pcap.DGANSS_InformationItem  DGANSS-InformationItem
        No value
    pcap.DGANSS_SignalInformationItem  DGANSS-SignalInformationItem
        No value
    pcap.DGNSS_ValidityPeriod  DGNSS-ValidityPeriod
        No value
    pcap.DGPS_CorrectionSatInfo  DGPS-CorrectionSatInfo
        No value
    pcap.EnvironmentCharacterisation  EnvironmentCharacterisation
        Unsigned 32-bit integer
    pcap.ErrorIndication  ErrorIndication
        No value
    pcap.ExplicitInformation  ExplicitInformation
        Unsigned 32-bit integer
    pcap.ExtendedTimingAdvanceLCR  ExtendedTimingAdvanceLCR
        Unsigned 32-bit integer
    pcap.Extended_RNC_ID  Extended-RNC-ID
        Unsigned 32-bit integer
    pcap.GANSSGenericAssistanceData  GANSSGenericAssistanceData
        No value
    pcap.GANSSGenericDataReq  GANSSGenericDataReq
        No value
    pcap.GANSSMeasurementSignalList_item  GANSSMeasurementSignalList item
        No value
    pcap.GANSSMultiFreqMeasRequested  GANSSMultiFreqMeasRequested
        Byte array
    pcap.GANSSPositioning  GANSSPositioning
        No value
    pcap.GANSSReq_AddIonosphericModel  GANSSReq-AddIonosphericModel
        No value
    pcap.GANSSReq_EarthOrientPara  GANSSReq-EarthOrientPara
        Boolean
    pcap.GANSS_ALM_ECEFsbasAlmanacSet  GANSS-ALM-ECEFsbasAlmanacSet
        No value
    pcap.GANSS_ALM_GlonassAlmanacSet  GANSS-ALM-GlonassAlmanacSet
        No value
    pcap.GANSS_ALM_MidiAlmanacSet  GANSS-ALM-MidiAlmanacSet
        No value
    pcap.GANSS_ALM_NAVKeplerianSet  GANSS-ALM-NAVKeplerianSet
        No value
    pcap.GANSS_ALM_ReducedKeplerianSet  GANSS-ALM-ReducedKeplerianSet
        No value
    pcap.GANSS_AddADchoices  GANSS-AddADchoices
        No value
    pcap.GANSS_AddIonoModelReq  GANSS-AddIonoModelReq
        No value
    pcap.GANSS_AddNavigationModel_Req  GANSS-AddNavigationModel-Req
        Boolean
    pcap.GANSS_AddUTCModel_Req  GANSS-AddUTCModel-Req
        Boolean
    pcap.GANSS_Additional_Ionospheric_Model  GANSS-Additional-Ionospheric-Model
        No value
    pcap.GANSS_Additional_Navigation_Models  GANSS-Additional-Navigation-Models
        No value
    pcap.GANSS_Additional_Time_Models  GANSS-Additional-Time-Models
        Unsigned 32-bit integer
    pcap.GANSS_Additional_UTC_Models  GANSS-Additional-UTC-Models
        Unsigned 32-bit integer
    pcap.GANSS_AuxInfo_req  GANSS-AuxInfo-req
        Boolean
    pcap.GANSS_Auxiliary_Information  GANSS-Auxiliary-Information
        Unsigned 32-bit integer
    pcap.GANSS_CommonAssistanceData  GANSS-CommonAssistanceData
        No value
    pcap.GANSS_DataBitAssistanceItem  GANSS-DataBitAssistanceItem
        No value
    pcap.GANSS_DataBitAssistanceSgnItem  GANSS-DataBitAssistanceSgnItem
        No value
    pcap.GANSS_EarthOrientParaReq  GANSS-EarthOrientParaReq
        No value
    pcap.GANSS_Earth_Orientation_Parameters  GANSS-Earth-Orientation-Parameters
        No value
    pcap.GANSS_GenericAssistanceDataList  GANSS-GenericAssistanceDataList
        Unsigned 32-bit integer
    pcap.GANSS_GenericMeasurementInfo_item  GANSS-GenericMeasurementInfo item
        No value
    pcap.GANSS_MeasuredResults  GANSS-MeasuredResults
        No value
    pcap.GANSS_MeasuredResultsList  GANSS-MeasuredResultsList
        Unsigned 32-bit integer
    pcap.GANSS_MeasurementParametersItem  GANSS-MeasurementParametersItem
        No value
    pcap.GANSS_PositioningDataSet  GANSS-PositioningDataSet
        Unsigned 32-bit integer
    pcap.GANSS_PositioningMethodAndUsage  GANSS-PositioningMethodAndUsage
        Byte array
    pcap.GANSS_RealTimeInformationItem  GANSS-RealTimeInformationItem
        No value
    pcap.GANSS_Reference_Time_Only  GANSS-Reference-Time-Only
        No value
    pcap.GANSS_SAT_Info_Almanac_GLOkp  GANSS-SAT-Info-Almanac-GLOkp
        No value
    pcap.GANSS_SAT_Info_Almanac_MIDIkp  GANSS-SAT-Info-Almanac-MIDIkp
        No value
    pcap.GANSS_SAT_Info_Almanac_NAVkp  GANSS-SAT-Info-Almanac-NAVkp
        No value
    pcap.GANSS_SAT_Info_Almanac_REDkp  GANSS-SAT-Info-Almanac-REDkp
        No value
    pcap.GANSS_SAT_Info_Almanac_SBASecef  GANSS-SAT-Info-Almanac-SBASecef
        No value
    pcap.GANSS_SBAS_ID  GANSS-SBAS-ID
        Unsigned 32-bit integer
    pcap.GANSS_SBAS_IDs  GANSS-SBAS-IDs
        No value
    pcap.GANSS_Sat_Info_Nav_item  GANSS-Sat-Info-Nav item
        No value
    pcap.GANSS_SatelliteClockModelItem  GANSS-SatelliteClockModelItem
        No value
    pcap.GANSS_SatelliteInformationItem  GANSS-SatelliteInformationItem
        No value
    pcap.GANSS_SatelliteInformationKPItem  GANSS-SatelliteInformationKPItem
        No value
    pcap.GANSS_Signal_IDs  GANSS-Signal-IDs
        No value
    pcap.GANSS_Time_Model  GANSS-Time-Model
        No value
    pcap.GANSS_UTRAN_TRU  GANSS-UTRAN-TRU
        No value
    pcap.GANSScarrierPhaseRequested  GANSScarrierPhaseRequested
        Byte array
    pcap.GA_Polygon_item  GA-Polygon item
        No value
    pcap.GNSS_PositioningMethod  GNSS-PositioningMethod
        Byte array
    pcap.GPSPositioning  GPSPositioning
        No value
    pcap.GPSReferenceTimeUncertainty  GPSReferenceTimeUncertainty
        No value
    pcap.GPS_MeasuredResults  GPS-MeasuredResults
        No value
    pcap.GPS_MeasurementParam  GPS-MeasurementParam
        No value
    pcap.GPS_ReferenceLocation  GPS-ReferenceLocation
        No value
    pcap.GPS_TOW_Assist  GPS-TOW-Assist
        No value
    pcap.GPS_UTRAN_TRU  GPS-UTRAN-TRU
        Unsigned 32-bit integer
    pcap.GanssCodePhaseAmbiguityExt  GanssCodePhaseAmbiguityExt
        No value
    pcap.GanssIntegerCodePhaseExt  GanssIntegerCodePhaseExt
        No value
    pcap.GanssReqGenericData  GanssReqGenericData
        No value
    pcap.Ganss_Sat_Info_AddNavList_item  Ganss-Sat-Info-AddNavList item
        No value
    pcap.HorizontalAccuracyCode  HorizontalAccuracyCode
        Unsigned 32-bit integer
    pcap.IncludeVelocity  IncludeVelocity
        Unsigned 32-bit integer
    pcap.InformationExchangeFailureIndication  InformationExchangeFailureIndication
        No value
    pcap.InformationExchangeID  InformationExchangeID
        Unsigned 32-bit integer
    pcap.InformationExchangeInitiationFailure  InformationExchangeInitiationFailure
        No value
    pcap.InformationExchangeInitiationRequest  InformationExchangeInitiationRequest
        No value
    pcap.InformationExchangeInitiationResponse  InformationExchangeInitiationResponse
        No value
    pcap.InformationExchangeObjectType_InfEx_Rprt  InformationExchangeObjectType-InfEx-Rprt
        Unsigned 32-bit integer
    pcap.InformationExchangeObjectType_InfEx_Rqst  InformationExchangeObjectType-InfEx-Rqst
        Unsigned 32-bit integer
    pcap.InformationExchangeObjectType_InfEx_Rsp  InformationExchangeObjectType-InfEx-Rsp
        Unsigned 32-bit integer
    pcap.InformationExchangeTerminationRequest  InformationExchangeTerminationRequest
        No value
    pcap.InformationReport  InformationReport
        No value
    pcap.InformationReportCharacteristics  InformationReportCharacteristics
        No value
    pcap.InformationType  InformationType
        Unsigned 32-bit integer
    pcap.MeasInstructionsUsed  MeasInstructionsUsed
        No value
    pcap.MeasuredResultsList  MeasuredResultsList
        Unsigned 32-bit integer
    pcap.MessageStructure_item  MessageStructure item
        No value
    pcap.NavigationModelSatInfo  NavigationModelSatInfo
        No value
    pcap.NetworkAssistedGANSSSupport  NetworkAssistedGANSSSupport
        Unsigned 32-bit integer
    pcap.NetworkAssistedGANSSSupport_item  NetworkAssistedGANSSSupport item
        No value
    pcap.OTDOAAssistanceData  OTDOAAssistanceData
        No value
    pcap.OTDOA_AddMeasuredResultsInfo  OTDOA-AddMeasuredResultsInfo
        No value
    pcap.OTDOA_MeasuredResultsInfo  OTDOA-MeasuredResultsInfo
        No value
    pcap.OTDOA_MeasuredResultsInfoList  OTDOA-MeasuredResultsInfoList
        Unsigned 32-bit integer
    pcap.OTDOA_MeasuredResultsSets  OTDOA-MeasuredResultsSets
        Unsigned 32-bit integer
    pcap.OTDOA_MeasurementGroup  OTDOA-MeasurementGroup
        No value
    pcap.OTDOA_NeighbourCellInfo  OTDOA-NeighbourCellInfo
        No value
    pcap.OTDOA_ReferenceCellInfoSAS_centric  OTDOA-ReferenceCellInfoSAS-centric
        No value
    pcap.PCAP_PDU  PCAP-PDU
        Unsigned 32-bit integer
    pcap.PRACH_ChannelInfo  PRACH-ChannelInfo
        No value
    pcap.PeriodicLocationInfo  PeriodicLocationInfo
        No value
    pcap.PeriodicPosCalcInfo  PeriodicPosCalcInfo
        No value
    pcap.PeriodicTerminationCause  PeriodicTerminationCause
        Unsigned 32-bit integer
    pcap.PositionActivationFailure  PositionActivationFailure
        No value
    pcap.PositionActivationRequest  PositionActivationRequest
        No value
    pcap.PositionActivationResponse  PositionActivationResponse
        No value
    pcap.PositionCalculationFailure  PositionCalculationFailure
        No value
    pcap.PositionCalculationRequest  PositionCalculationRequest
        No value
    pcap.PositionCalculationResponse  PositionCalculationResponse
        No value
    pcap.PositionData  PositionData
        No value
    pcap.PositionDataUEbased  PositionDataUEbased
        No value
    pcap.PositionInitiationFailure  PositionInitiationFailure
        No value
    pcap.PositionInitiationRequest  PositionInitiationRequest
        No value
    pcap.PositionInitiationResponse  PositionInitiationResponse
        No value
    pcap.PositionParameterModification  PositionParameterModification
        No value
    pcap.PositionPeriodicReport  PositionPeriodicReport
        No value
    pcap.PositionPeriodicResult  PositionPeriodicResult
        No value
    pcap.PositionPeriodicTermination  PositionPeriodicTermination
        No value
    pcap.PositioningMethod  PositioningMethod
        No value
    pcap.PositioningMethodAndUsage  PositioningMethodAndUsage
        Byte array
    pcap.PositioningPriority  PositioningPriority
        Unsigned 32-bit integer
    pcap.Positioning_ResponseTime  Positioning-ResponseTime
        Unsigned 32-bit integer
    pcap.PrivateIE_Field  PrivateIE-Field
        No value
    pcap.PrivateMessage  PrivateMessage
        No value
    pcap.ProtocolExtensionField  ProtocolExtensionField
        No value
    pcap.ProtocolIE_Field  ProtocolIE-Field
        No value
    pcap.RRCstateChange  RRCstateChange
        No value
    pcap.Reference_E_TFCI_Information_Item  Reference-E-TFCI-Information-Item
        No value
    pcap.RequestType  RequestType
        No value
    pcap.ResponseTime  ResponseTime
        Unsigned 32-bit integer
    pcap.RoundTripTimeInfoWithType1  RoundTripTimeInfoWithType1
        No value
    pcap.RxTimingDeviation384extInfo  RxTimingDeviation384extInfo
        No value
    pcap.RxTimingDeviation768Info  RxTimingDeviation768Info
        No value
    pcap.SatelliteRelatedData  SatelliteRelatedData
        No value
    pcap.SatelliteRelatedDataGANSS  SatelliteRelatedDataGANSS
        No value
    pcap.SupportGANSSNonNativeADchoices  SupportGANSSNonNativeADchoices
        Boolean
    pcap.TDD_UL_Code_InformationItem  TDD-UL-Code-InformationItem
        No value
    pcap.TbsTTIInfo  TbsTTIInfo
        No value
    pcap.Transmission_Gap_Pattern_Sequence_Information_item  Transmission-Gap-Pattern-Sequence-Information item
        No value
    pcap.Transmission_Gap_Pattern_Sequence_Status_List_item  Transmission-Gap-Pattern-Sequence-Status-List item
        No value
    pcap.TransportFormatSet_DynamicPartList_item  TransportFormatSet-DynamicPartList item
        No value
    pcap.UC_ID  UC-ID
        No value
    pcap.UC_ID_InfEx_Rqst  UC-ID-InfEx-Rqst
        No value
    pcap.UE_PositionEstimate  UE-PositionEstimate
        Unsigned 32-bit integer
    pcap.UE_PositionEstimateInfo  UE-PositionEstimateInfo
        No value
    pcap.UE_PositioningCapability  UE-PositioningCapability
        No value
    pcap.UE_Positioning_OTDOA_NeighbourCellInfo  UE-Positioning-OTDOA-NeighbourCellInfo
        No value
    pcap.UL_Timeslot_InformationItem  UL-Timeslot-InformationItem
        No value
    pcap.UL_TrCHInfo  UL-TrCHInfo
        No value
    pcap.UTDOAPositioning  UTDOAPositioning
        No value
    pcap.UTDOA_Group  UTDOA-Group
        No value
    pcap.UTRAN_GANSSReferenceTimeResult  UTRAN-GANSSReferenceTimeResult
        No value
    pcap.UTRAN_GPSReferenceTime  UTRAN-GPSReferenceTime
        No value
    pcap.UTRAN_GPS_DriftRate  UTRAN-GPS-DriftRate
        Unsigned 32-bit integer
    pcap.VelocityEstimate  VelocityEstimate
        Unsigned 32-bit integer
    pcap.VerticalAccuracyCode  VerticalAccuracyCode
        Unsigned 32-bit integer
    pcap.a0  a0
        Byte array
        BIT_STRING_SIZE_32
    pcap.a1  a1
        Byte array
        BIT_STRING_SIZE_24
    pcap.aOA_LCR  aOA-LCR
        Unsigned 32-bit integer
    pcap.aOA_LCR_Accuracy_Class  aOA-LCR-Accuracy-Class
        Unsigned 32-bit integer
    pcap.a_Sqrt  a-Sqrt
        Byte array
        BIT_STRING_SIZE_24
    pcap.a_i0  a-i0
        Byte array
        BIT_STRING_SIZE_28
    pcap.a_i1  a-i1
        Byte array
        BIT_STRING_SIZE_18
    pcap.a_i2  a-i2
        Byte array
        BIT_STRING_SIZE_12
    pcap.a_one_utc  a-one-utc
        Byte array
        BIT_STRING_SIZE_24
    pcap.a_sqrt_nav  a-sqrt-nav
        Byte array
        BIT_STRING_SIZE_32
    pcap.a_zero_utc  a-zero-utc
        Byte array
        BIT_STRING_SIZE_32
    pcap.acquisitionAssistance  acquisitionAssistance
        No value
    pcap.activePatternSequenceInfo  activePatternSequenceInfo
        No value
        Active_Pattern_Sequence_Information
    pcap.addSatRelatedDataListGANSS  addSatRelatedDataListGANSS
        Unsigned 32-bit integer
        AddSatelliteRelatedDataListGANSS
    pcap.additionalAssistanceDataRequest  additionalAssistanceDataRequest
        Boolean
        BOOLEAN
    pcap.additionalMethodType  additionalMethodType
        Unsigned 32-bit integer
    pcap.adr  adr
        Unsigned 32-bit integer
        INTEGER_0_33554431
    pcap.af0  af0
        Byte array
        BIT_STRING_SIZE_11
    pcap.af1  af1
        Byte array
        BIT_STRING_SIZE_11
    pcap.af2  af2
        Byte array
        BIT_STRING_SIZE_8
    pcap.alert  alert
        Boolean
        BOOLEAN
    pcap.alfa0  alfa0
        Byte array
        BIT_STRING_SIZE_8
    pcap.alfa1  alfa1
        Byte array
        BIT_STRING_SIZE_8
    pcap.alfa2  alfa2
        Byte array
        BIT_STRING_SIZE_8
    pcap.alfa3  alfa3
        Byte array
        BIT_STRING_SIZE_8
    pcap.almanacAndSatelliteHealth  almanacAndSatelliteHealth
        No value
    pcap.almanacAndSatelliteHealthSIB  almanacAndSatelliteHealthSIB
        No value
        AlmanacAndSatelliteHealthSIB_InfoType
    pcap.almanacModelID  almanacModelID
        Unsigned 32-bit integer
        INTEGER_0_7
    pcap.almanacRequest  almanacRequest
        Boolean
        BOOLEAN
    pcap.almanacSatInfoList  almanacSatInfoList
        Unsigned 32-bit integer
    pcap.alpha_beta_parameters  alpha-beta-parameters
        No value
        GPS_Ionospheric_Model
    pcap.alpha_one_ionos  alpha-one-ionos
        Byte array
        BIT_STRING_SIZE_12
    pcap.alpha_two_ionos  alpha-two-ionos
        Byte array
        BIT_STRING_SIZE_12
    pcap.alpha_zero_ionos  alpha-zero-ionos
        Byte array
        BIT_STRING_SIZE_12
    pcap.altitude  altitude
        Unsigned 32-bit integer
        INTEGER_0_32767
    pcap.altitudeAndDirection  altitudeAndDirection
        No value
        GA_AltitudeAndDirection
    pcap.amountOutstandingRequests  amountOutstandingRequests
        Unsigned 32-bit integer
        INTEGER_1_8639999_
    pcap.angleOfArrivalLCR  angleOfArrivalLCR
        No value
    pcap.angleOfArrivalLCRWanted  angleOfArrivalLCRWanted
        Boolean
        BOOLEAN
    pcap.antiSpoof  antiSpoof
        Boolean
        BOOLEAN
    pcap.aodo  aodo
        Byte array
        BIT_STRING_SIZE_5
    pcap.aquisitionAssistanceRequest  aquisitionAssistanceRequest
        Boolean
        BOOLEAN
    pcap.availableSF  availableSF
        Unsigned 32-bit integer
        SF_PRACH
    pcap.availableSignatures  availableSignatures
        Byte array
    pcap.availableSubChannelNumbers  availableSubChannelNumbers
        Byte array
    pcap.azimuth  azimuth
        Unsigned 32-bit integer
        INTEGER_0_31
    pcap.azimuthAndElevation  azimuthAndElevation
        No value
    pcap.b1  b1
        Byte array
        BIT_STRING_SIZE_11
    pcap.b2  b2
        Byte array
        BIT_STRING_SIZE_10
    pcap.badSatellites  badSatellites
        Unsigned 32-bit integer
        BadSatList
    pcap.bad_ganss_satId  bad-ganss-satId
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.bad_ganss_signalId  bad-ganss-signalId
        Byte array
        BIT_STRING_SIZE_8
    pcap.bearing  bearing
        Unsigned 32-bit integer
        INTEGER_0_359
    pcap.beta0  beta0
        Byte array
        BIT_STRING_SIZE_8
    pcap.beta1  beta1
        Byte array
        BIT_STRING_SIZE_8
    pcap.beta2  beta2
        Byte array
        BIT_STRING_SIZE_8
    pcap.beta3  beta3
        Byte array
        BIT_STRING_SIZE_8
    pcap.burstFreq  burstFreq
        Unsigned 32-bit integer
        INTEGER_1_16
    pcap.burstLength  burstLength
        Unsigned 32-bit integer
        INTEGER_10_25
    pcap.burstModeParameters  burstModeParameters
        No value
    pcap.burstStart  burstStart
        Unsigned 32-bit integer
        INTEGER_0_15
    pcap.cFN  cFN
        Unsigned 32-bit integer
    pcap.cMConfigurationChangeCFN  cMConfigurationChangeCFN
        Unsigned 32-bit integer
        CFN
    pcap.cRC_Size  cRC-Size
        Unsigned 32-bit integer
        TransportFormatSet_CRC_Size
    pcap.cRNTI  cRNTI
        Byte array
        C_RNTI
    pcap.cToNzero  cToNzero
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.c_ID  c-ID
        Unsigned 32-bit integer
        INTEGER_0_65535
    pcap.c_N0  c-N0
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.c_ic  c-ic
        Byte array
        BIT_STRING_SIZE_16
    pcap.c_ic_nav  c-ic-nav
        Byte array
        BIT_STRING_SIZE_16
    pcap.c_is  c-is
        Byte array
        BIT_STRING_SIZE_16
    pcap.c_is_nav  c-is-nav
        Byte array
        BIT_STRING_SIZE_16
    pcap.c_rc  c-rc
        Byte array
        BIT_STRING_SIZE_16
    pcap.c_rc_nav  c-rc-nav
        Byte array
        BIT_STRING_SIZE_16
    pcap.c_rs  c-rs
        Byte array
        BIT_STRING_SIZE_16
    pcap.c_rs_nav  c-rs-nav
        Byte array
        BIT_STRING_SIZE_16
    pcap.c_uc  c-uc
        Byte array
        BIT_STRING_SIZE_16
    pcap.c_uc_nav  c-uc-nav
        Byte array
        BIT_STRING_SIZE_16
    pcap.c_us  c-us
        Byte array
        BIT_STRING_SIZE_16
    pcap.c_us_nav  c-us-nav
        Byte array
        BIT_STRING_SIZE_16
    pcap.carrierQualityIndication  carrierQualityIndication
        Byte array
        BIT_STRING_SIZE_2
    pcap.cellParameterID  cellParameterID
        Unsigned 32-bit integer
    pcap.cellPosition  cellPosition
        Unsigned 32-bit integer
        ReferenceCellPosition
    pcap.cell_Timing  cell-Timing
        No value
    pcap.channelCoding  channelCoding
        Unsigned 32-bit integer
        TransportFormatSet_ChannelCodingType
    pcap.channelNumber  channelNumber
        Signed 32-bit integer
        INTEGER_M7_13
    pcap.chipOffset  chipOffset
        Unsigned 32-bit integer
    pcap.clockModelID  clockModelID
        Unsigned 32-bit integer
        INTEGER_0_7
    pcap.cnavAdot  cnavAdot
        Byte array
        BIT_STRING_SIZE_25
    pcap.cnavAf0  cnavAf0
        Byte array
        BIT_STRING_SIZE_26
    pcap.cnavAf1  cnavAf1
        Byte array
        BIT_STRING_SIZE_20
    pcap.cnavAf2  cnavAf2
        Byte array
        BIT_STRING_SIZE_10
    pcap.cnavCic  cnavCic
        Byte array
        BIT_STRING_SIZE_16
    pcap.cnavCis  cnavCis
        Byte array
        BIT_STRING_SIZE_16
    pcap.cnavClockModel  cnavClockModel
        No value
    pcap.cnavCrc  cnavCrc
        Byte array
        BIT_STRING_SIZE_24
    pcap.cnavCrs  cnavCrs
        Byte array
        BIT_STRING_SIZE_24
    pcap.cnavCuc  cnavCuc
        Byte array
        BIT_STRING_SIZE_21
    pcap.cnavCus  cnavCus
        Byte array
        BIT_STRING_SIZE_21
    pcap.cnavDeltaA  cnavDeltaA
        Byte array
        BIT_STRING_SIZE_26
    pcap.cnavDeltaNo  cnavDeltaNo
        Byte array
        BIT_STRING_SIZE_17
    pcap.cnavDeltaNoDot  cnavDeltaNoDot
        Byte array
        BIT_STRING_SIZE_23
    pcap.cnavDeltaOmegaDot  cnavDeltaOmegaDot
        Byte array
        BIT_STRING_SIZE_17
    pcap.cnavE  cnavE
        Byte array
        BIT_STRING_SIZE_33
    pcap.cnavISCl1ca  cnavISCl1ca
        Byte array
        BIT_STRING_SIZE_13
    pcap.cnavISCl1cd  cnavISCl1cd
        Byte array
        BIT_STRING_SIZE_13
    pcap.cnavISCl1cp  cnavISCl1cp
        Byte array
        BIT_STRING_SIZE_13
    pcap.cnavISCl2c  cnavISCl2c
        Byte array
        BIT_STRING_SIZE_13
    pcap.cnavISCl5i5  cnavISCl5i5
        Byte array
        BIT_STRING_SIZE_13
    pcap.cnavISCl5q5  cnavISCl5q5
        Byte array
        BIT_STRING_SIZE_13
    pcap.cnavIo  cnavIo
        Byte array
        BIT_STRING_SIZE_33
    pcap.cnavIoDot  cnavIoDot
        Byte array
        BIT_STRING_SIZE_15
    pcap.cnavKeplerianSet  cnavKeplerianSet
        No value
        NavModel_CNAVKeplerianSet
    pcap.cnavMo  cnavMo
        Byte array
        BIT_STRING_SIZE_33
    pcap.cnavOMEGA0  cnavOMEGA0
        Byte array
        BIT_STRING_SIZE_33
    pcap.cnavOmega  cnavOmega
        Byte array
        BIT_STRING_SIZE_33
    pcap.cnavTgd  cnavTgd
        Byte array
        BIT_STRING_SIZE_13
    pcap.cnavToc  cnavToc
        Byte array
        BIT_STRING_SIZE_11
    pcap.cnavTop  cnavTop
        Byte array
        BIT_STRING_SIZE_11
    pcap.cnavURA0  cnavURA0
        Byte array
        BIT_STRING_SIZE_5
    pcap.cnavURA1  cnavURA1
        Byte array
        BIT_STRING_SIZE_3
    pcap.cnavURA2  cnavURA2
        Byte array
        BIT_STRING_SIZE_3
    pcap.cnavURAindex  cnavURAindex
        Byte array
        BIT_STRING_SIZE_5
    pcap.codeOnL2  codeOnL2
        Byte array
        BIT_STRING_SIZE_2
    pcap.codePhase  codePhase
        Unsigned 32-bit integer
        INTEGER_0_1022
    pcap.codePhaseRmsError  codePhaseRmsError
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.codePhaseSearchWindow  codePhaseSearchWindow
        Unsigned 32-bit integer
    pcap.codingRate  codingRate
        Unsigned 32-bit integer
        TransportFormatSet_CodingRate
    pcap.commonMidamble  commonMidamble
        No value
    pcap.compressedModeAssistanceData  compressedModeAssistanceData
        No value
        Compressed_Mode_Assistance_Data
    pcap.confidence  confidence
        Unsigned 32-bit integer
        INTEGER_0_100
    pcap.cpicEcNoWanted  cpicEcNoWanted
        Boolean
        BOOLEAN
    pcap.cpichRSCPWanted  cpichRSCPWanted
        Boolean
        BOOLEAN
    pcap.cpich_EcNo  cpich-EcNo
        Unsigned 32-bit integer
    pcap.cpich_RSCP  cpich-RSCP
        Signed 32-bit integer
    pcap.criticality  criticality
        Unsigned 32-bit integer
    pcap.ctfc12Bit  ctfc12Bit
        Unsigned 32-bit integer
    pcap.ctfc12Bit_item  ctfc12Bit item
        Unsigned 32-bit integer
        INTEGER_0_4095
    pcap.ctfc16Bit  ctfc16Bit
        Unsigned 32-bit integer
    pcap.ctfc16Bit_item  ctfc16Bit item
        Unsigned 32-bit integer
        INTEGER_0_65535
    pcap.ctfc24Bit  ctfc24Bit
        Unsigned 32-bit integer
    pcap.ctfc24Bit_item  ctfc24Bit item
        Unsigned 32-bit integer
        INTEGER_0_16777215
    pcap.ctfc2Bit  ctfc2Bit
        Unsigned 32-bit integer
    pcap.ctfc2Bit_item  ctfc2Bit item
        Unsigned 32-bit integer
        INTEGER_0_3
    pcap.ctfc4Bit  ctfc4Bit
        Unsigned 32-bit integer
    pcap.ctfc4Bit_item  ctfc4Bit item
        Unsigned 32-bit integer
        INTEGER_0_15
    pcap.ctfc6Bit  ctfc6Bit
        Unsigned 32-bit integer
    pcap.ctfc6Bit_item  ctfc6Bit item
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.ctfc8Bit  ctfc8Bit
        Unsigned 32-bit integer
    pcap.ctfc8Bit_item  ctfc8Bit item
        Unsigned 32-bit integer
        INTEGER_0_255
    pcap.dCH_Information  dCH-Information
        No value
    pcap.dGANSS_Information  dGANSS-Information
        Unsigned 32-bit integer
    pcap.dGANSS_ReferenceTime  dGANSS-ReferenceTime
        Unsigned 32-bit integer
        INTEGER_0_119
    pcap.dGANSS_SignalInformation  dGANSS-SignalInformation
        Unsigned 32-bit integer
    pcap.dataBitAssistanceSgnList  dataBitAssistanceSgnList
        Unsigned 32-bit integer
        GANSS_DataBitAssistanceSgnList
    pcap.dataBitAssistancelist  dataBitAssistancelist
        Unsigned 32-bit integer
        GANSS_DataBitAssistanceList
    pcap.dataID  dataID
        Byte array
        BIT_STRING_SIZE_2
    pcap.defaultMidamble  defaultMidamble
        No value
    pcap.deltaI  deltaI
        Byte array
        BIT_STRING_SIZE_16
    pcap.deltaUT1  deltaUT1
        Byte array
        BIT_STRING_SIZE_31
    pcap.deltaUT1dot  deltaUT1dot
        Byte array
        BIT_STRING_SIZE_19
    pcap.delta_n  delta-n
        Byte array
        BIT_STRING_SIZE_16
    pcap.delta_n_nav  delta-n-nav
        Byte array
        BIT_STRING_SIZE_16
    pcap.delta_t_LS  delta-t-LS
        Byte array
        BIT_STRING_SIZE_8
    pcap.delta_t_LSF  delta-t-LSF
        Byte array
        BIT_STRING_SIZE_8
    pcap.delta_t_ls_utc  delta-t-ls-utc
        Byte array
        BIT_STRING_SIZE_8
    pcap.delta_t_lsf_utc  delta-t-lsf-utc
        Byte array
        BIT_STRING_SIZE_8
    pcap.dganssCorrections  dganssCorrections
        No value
        DganssCorrectionsReq
    pcap.dganss_Corrections  dganss-Corrections
        No value
    pcap.dganss_sig_id_req  dganss-sig-id-req
        Byte array
    pcap.dgpsCorrections  dgpsCorrections
        No value
    pcap.dgpsCorrectionsRequest  dgpsCorrectionsRequest
        Boolean
        BOOLEAN
    pcap.dgps_CorrectionSatInfoList  dgps-CorrectionSatInfoList
        Unsigned 32-bit integer
    pcap.directionOfAltitude  directionOfAltitude
        Unsigned 32-bit integer
    pcap.dl_information  dl-information
        No value
        DL_InformationFDD
    pcap.dn  dn
        Byte array
        BIT_STRING_SIZE_8
    pcap.dn_utc  dn-utc
        Byte array
        BIT_STRING_SIZE_8
    pcap.doppler  doppler
        Signed 32-bit integer
        INTEGER_M32768_32767
    pcap.doppler0thOrder  doppler0thOrder
        Signed 32-bit integer
        INTEGER_M2048_2047
    pcap.doppler1stOrder  doppler1stOrder
        Signed 32-bit integer
        INTEGER_M42_21
    pcap.dopplerFirstOrder  dopplerFirstOrder
        Signed 32-bit integer
        INTEGER_M42_21
    pcap.dopplerUncertainty  dopplerUncertainty
        Unsigned 32-bit integer
    pcap.dopplerZeroOrder  dopplerZeroOrder
        Signed 32-bit integer
        INTEGER_M2048_2047
    pcap.dynamicPart  dynamicPart
        Unsigned 32-bit integer
        TransportFormatSet_DynamicPartList
    pcap.e  e
        Byte array
        BIT_STRING_SIZE_16
    pcap.e_DCH_TFCS_Index  e-DCH-TFCS-Index
        Unsigned 32-bit integer
    pcap.e_DPCCH_PO  e-DPCCH-PO
        Unsigned 32-bit integer
    pcap.e_DPCH_Information  e-DPCH-Information
        No value
    pcap.e_TFCS_Information  e-TFCS-Information
        No value
    pcap.e_TTI  e-TTI
        Unsigned 32-bit integer
    pcap.elevation  elevation
        Unsigned 32-bit integer
        INTEGER_0_7
    pcap.ellipsoidArc  ellipsoidArc
        No value
        GA_EllipsoidArc
    pcap.ellipsoidPoint  ellipsoidPoint
        No value
        GeographicalCoordinates
    pcap.ellipsoidPointWithAltitude  ellipsoidPointWithAltitude
        No value
        GA_PointWithAltitude
    pcap.eopReq  eopReq
        Unsigned 32-bit integer
    pcap.event  event
        Unsigned 32-bit integer
        RequestTypeEvent
    pcap.explicitInformation  explicitInformation
        Unsigned 32-bit integer
        ExplicitInformationList
    pcap.extendedRoundTripTime  extendedRoundTripTime
        Unsigned 32-bit integer
    pcap.extensionValue  extensionValue
        No value
    pcap.extension_GANSS_AlmanacModel  extension-GANSS-AlmanacModel
        No value
    pcap.extension_InformationExchangeObjectType_InfEx_Rqst  extension-InformationExchangeObjectType-InfEx-Rqst
        No value
    pcap.extension_ReferenceTimeChoice  extension-ReferenceTimeChoice
        No value
    pcap.extraDoppler  extraDoppler
        No value
        GANSS_ExtraDoppler
    pcap.extraDopplerInfo  extraDopplerInfo
        No value
    pcap.fdd  fdd
        No value
    pcap.fineSFN_SFN  fineSFN-SFN
        Unsigned 32-bit integer
        FineSFNSFN
    pcap.fitInterval  fitInterval
        Byte array
        BIT_STRING_SIZE_1
    pcap.fractionalGPS_Chips  fractionalGPS-Chips
        Unsigned 32-bit integer
        INTEGER_0_1023
    pcap.frameOffset  frameOffset
        Unsigned 32-bit integer
    pcap.frequencyInfo  frequencyInfo
        No value
    pcap.gANSS_AlmanacModel  gANSS-AlmanacModel
        Unsigned 32-bit integer
    pcap.gANSS_IonosphereRegionalStormFlags  gANSS-IonosphereRegionalStormFlags
        No value
    pcap.gANSS_SatelliteInformationKP  gANSS-SatelliteInformationKP
        Unsigned 32-bit integer
    pcap.gANSS_SignalId  gANSS-SignalId
        No value
    pcap.gANSS_StatusHealth  gANSS-StatusHealth
        Unsigned 32-bit integer
    pcap.gANSS_TimeId  gANSS-TimeId
        No value
        GANSSID
    pcap.gANSS_TimeUncertainty  gANSS-TimeUncertainty
        Unsigned 32-bit integer
        INTEGER_0_127
    pcap.gANSS_UTRAN_TimeRelationshipUncertainty  gANSS-UTRAN-TimeRelationshipUncertainty
        Unsigned 32-bit integer
    pcap.gANSS_iod  gANSS-iod
        Byte array
        BIT_STRING_SIZE_10
    pcap.gANSS_keplerianParameters  gANSS-keplerianParameters
        No value
        GANSS_KeplerianParametersAlm
    pcap.gANSS_timeId  gANSS-timeId
        No value
        GANSSID
    pcap.gANSS_tod  gANSS-tod
        Unsigned 32-bit integer
        INTEGER_0_3599999
    pcap.ga_AltitudeAndDirection  ga-AltitudeAndDirection
        No value
    pcap.ganssAddClockModels  ganssAddClockModels
        Unsigned 32-bit integer
        GANSS_AddClockModels
    pcap.ganssAddOrbitModels  ganssAddOrbitModels
        Unsigned 32-bit integer
        GANSS_AddOrbitModels
    pcap.ganssAlmanac  ganssAlmanac
        Boolean
        BOOLEAN
    pcap.ganssClockModel  ganssClockModel
        Unsigned 32-bit integer
        GANSS_Clock_Model
    pcap.ganssCodePhase  ganssCodePhase
        Unsigned 32-bit integer
        INTEGER_0_2097151
    pcap.ganssCodePhaseAmbiguity  ganssCodePhaseAmbiguity
        Unsigned 32-bit integer
        INTEGER_0_31
    pcap.ganssCodePhaseAmbiguity_ext  ganssCodePhaseAmbiguity-ext
        Unsigned 32-bit integer
        INTEGER_32_127
    pcap.ganssDataBitInterval  ganssDataBitInterval
        Unsigned 32-bit integer
        INTEGER_0_15
    pcap.ganssDataBits  ganssDataBits
        Byte array
        BIT_STRING_SIZE_1_1024
    pcap.ganssDay  ganssDay
        Unsigned 32-bit integer
        INTEGER_0_8191
    pcap.ganssDifferentialCorrection  ganssDifferentialCorrection
        Byte array
        DGANSS_Sig_Id_Req
    pcap.ganssGenericMeasurementInfo  ganssGenericMeasurementInfo
        Unsigned 32-bit integer
        GANSS_GenericMeasurementInfo
    pcap.ganssID  ganssID
        No value
    pcap.ganssID1  ganssID1
        Unsigned 32-bit integer
        AuxInfoGANSS_ID1
    pcap.ganssID3  ganssID3
        Unsigned 32-bit integer
        AuxInfoGANSS_ID3
    pcap.ganssId  ganssId
        No value
    pcap.ganssIntegerCodePhase  ganssIntegerCodePhase
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.ganssIntegerCodePhase_ext  ganssIntegerCodePhase-ext
        Unsigned 32-bit integer
        INTEGER_64_127
    pcap.ganssIonosphericModel  ganssIonosphericModel
        Boolean
        BOOLEAN
    pcap.ganssMeasurementParameters  ganssMeasurementParameters
        Unsigned 32-bit integer
        GANSS_MeasurementParameters
    pcap.ganssMeasurementSignalList  ganssMeasurementSignalList
        Unsigned 32-bit integer
    pcap.ganssMode  ganssMode
        Unsigned 32-bit integer
    pcap.ganssNavigationModel  ganssNavigationModel
        Boolean
        BOOLEAN
    pcap.ganssNavigationModelAdditionalData  ganssNavigationModelAdditionalData
        No value
        NavigationModelGANSS
    pcap.ganssOrbitModel  ganssOrbitModel
        Unsigned 32-bit integer
        GANSS_Orbit_Model
    pcap.ganssPositioningInstructions  ganssPositioningInstructions
        No value
        GANSS_PositioningInstructions
    pcap.ganssRealTimeIntegrity  ganssRealTimeIntegrity
        Boolean
        BOOLEAN
    pcap.ganssReferenceMeasurementInfo  ganssReferenceMeasurementInfo
        Boolean
        BOOLEAN
    pcap.ganssReferenceTime  ganssReferenceTime
        Boolean
        BOOLEAN
    pcap.ganssReferenceTimeOnly  ganssReferenceTimeOnly
        No value
        GANSS_ReferenceTimeOnly
    pcap.ganssRequestedGenericAssistanceDataList  ganssRequestedGenericAssistanceDataList
        Unsigned 32-bit integer
    pcap.ganssSatId  ganssSatId
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.ganssSatInfoNav  ganssSatInfoNav
        Unsigned 32-bit integer
        GANSS_Sat_Info_Nav
    pcap.ganssSatInfoNavList  ganssSatInfoNavList
        Unsigned 32-bit integer
        Ganss_Sat_Info_AddNavList
    pcap.ganssSatelliteInfo  ganssSatelliteInfo
        Unsigned 32-bit integer
    pcap.ganssSatelliteInfo_item  ganssSatelliteInfo item
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.ganssSignalID  ganssSignalID
        Unsigned 32-bit integer
        INTEGER_0_3_
    pcap.ganssSignalId  ganssSignalId
        No value
        GANSS_SignalID
    pcap.ganssTODmsec  ganssTODmsec
        Unsigned 32-bit integer
        INTEGER_0_3599999
    pcap.ganssTOE  ganssTOE
        Unsigned 32-bit integer
        INTEGER_0_167
    pcap.ganssTimeID  ganssTimeID
        No value
        GANSSID
    pcap.ganssTimeId  ganssTimeId
        No value
        GANSSID
    pcap.ganssTimeModelGnssGnss  ganssTimeModelGnssGnss
        Byte array
        BIT_STRING_SIZE_9
    pcap.ganssTimeModelGnssGnssExt  ganssTimeModelGnssGnssExt
        Byte array
        BIT_STRING_SIZE_9
    pcap.ganssTimingOfCellWanted  ganssTimingOfCellWanted
        Byte array
        BIT_STRING_SIZE_8
    pcap.ganssTod  ganssTod
        Unsigned 32-bit integer
        INTEGER_0_59_
    pcap.ganssTodUncertainty  ganssTodUncertainty
        Unsigned 32-bit integer
        INTEGER_0_127
    pcap.ganssUTCModel  ganssUTCModel
        Boolean
        BOOLEAN
    pcap.ganssWeek  ganssWeek
        Unsigned 32-bit integer
        INTEGER_0_4095
    pcap.ganss_AddNavModelsReq  ganss-AddNavModelsReq
        No value
        AddNavigationModelsGANSS
    pcap.ganss_AddUtcModelsReq  ganss-AddUtcModelsReq
        No value
    pcap.ganss_AlmanacAndSatelliteHealth  ganss-AlmanacAndSatelliteHealth
        No value
    pcap.ganss_AuxInfoReq  ganss-AuxInfoReq
        No value
    pcap.ganss_Common_DataReq  ganss-Common-DataReq
        No value
        GANSSCommonDataReq
    pcap.ganss_DataBitAssistance  ganss-DataBitAssistance
        No value
        GANSS_Data_Bit_Assistance
    pcap.ganss_Generic_DataList  ganss-Generic-DataList
        Unsigned 32-bit integer
        GANSSGenericDataList
    pcap.ganss_ID  ganss-ID
        Unsigned 32-bit integer
        INTEGER_0_7
    pcap.ganss_IonosphericModel  ganss-IonosphericModel
        Unsigned 32-bit integer
    pcap.ganss_Ionospheric_Model  ganss-Ionospheric-Model
        No value
    pcap.ganss_Navigation_Model  ganss-Navigation-Model
        No value
    pcap.ganss_Real_Time_Integrity  ganss-Real-Time-Integrity
        Unsigned 32-bit integer
    pcap.ganss_ReferenceLocation  ganss-ReferenceLocation
        Unsigned 32-bit integer
    pcap.ganss_ReferenceMeasurementInfo  ganss-ReferenceMeasurementInfo
        No value
    pcap.ganss_ReferenceTime  ganss-ReferenceTime
        Unsigned 32-bit integer
    pcap.ganss_Reference_Location  ganss-Reference-Location
        No value
    pcap.ganss_Reference_Time  ganss-Reference-Time
        No value
    pcap.ganss_SBAS_ID  ganss-SBAS-ID
        Unsigned 32-bit integer
    pcap.ganss_SignalId  ganss-SignalId
        No value
    pcap.ganss_TimeModel_Gnss_Gnss  ganss-TimeModel-Gnss-Gnss
        No value
    pcap.ganss_Time_ID  ganss-Time-ID
        No value
        GANSSID
    pcap.ganss_Time_Model  ganss-Time-Model
        No value
    pcap.ganss_UTC_Model  ganss-UTC-Model
        No value
    pcap.ganss_add_iono_mode_req  ganss-add-iono-mode-req
        Byte array
        BIT_STRING_SIZE_2
    pcap.ganss_af_one_alm  ganss-af-one-alm
        Byte array
        BIT_STRING_SIZE_11
    pcap.ganss_af_zero_alm  ganss-af-zero-alm
        Byte array
        BIT_STRING_SIZE_14
    pcap.ganss_almanacAndSatelliteHealth  ganss-almanacAndSatelliteHealth
        No value
        Ganss_almanacAndSatelliteHealthReq
    pcap.ganss_dataBitAssistance  ganss-dataBitAssistance
        No value
        GanssDataBits
    pcap.ganss_delta_I_alm  ganss-delta-I-alm
        Byte array
        BIT_STRING_SIZE_11
    pcap.ganss_delta_a_sqrt_alm  ganss-delta-a-sqrt-alm
        Byte array
        BIT_STRING_SIZE_17
    pcap.ganss_e_alm  ganss-e-alm
        Byte array
        BIT_STRING_SIZE_11
    pcap.ganss_e_nav  ganss-e-nav
        Byte array
        BIT_STRING_SIZE_32
    pcap.ganss_m_zero_alm  ganss-m-zero-alm
        Byte array
        BIT_STRING_SIZE_16
    pcap.ganss_omega_alm  ganss-omega-alm
        Byte array
        BIT_STRING_SIZE_16
    pcap.ganss_omega_nav  ganss-omega-nav
        Byte array
        BIT_STRING_SIZE_32
    pcap.ganss_omegadot_alm  ganss-omegadot-alm
        Byte array
        BIT_STRING_SIZE_11
    pcap.ganss_omegazero_alm  ganss-omegazero-alm
        Byte array
        BIT_STRING_SIZE_16
    pcap.ganss_prc  ganss-prc
        Signed 32-bit integer
        INTEGER_M2047_2047
    pcap.ganss_realTimeIntegrity  ganss-realTimeIntegrity
        No value
        Ganss_realTimeIntegrityReq
    pcap.ganss_referenceMeasurementInfo  ganss-referenceMeasurementInfo
        No value
        Ganss_referenceMeasurementInfoReq
    pcap.ganss_rrc  ganss-rrc
        Signed 32-bit integer
        INTEGER_M127_127
    pcap.ganss_sbas_ids  ganss-sbas-ids
        Byte array
        BIT_STRING_SIZE_8
    pcap.ganss_signal_ids  ganss-signal-ids
        Byte array
        BIT_STRING_SIZE_8
    pcap.ganss_svhealth_alm  ganss-svhealth-alm
        Byte array
        BIT_STRING_SIZE_4
    pcap.ganss_t_a0  ganss-t-a0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    pcap.ganss_t_a1  ganss-t-a1
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    pcap.ganss_t_a2  ganss-t-a2
        Signed 32-bit integer
        INTEGER_M64_63
    pcap.ganss_time_model_refTime  ganss-time-model-refTime
        Unsigned 32-bit integer
        INTEGER_0_37799
    pcap.ganss_utcModel  ganss-utcModel
        No value
        Ganss_utcModelReq
    pcap.ganss_wk_number  ganss-wk-number
        Unsigned 32-bit integer
        INTEGER_0_8191
    pcap.ganssreferenceLocation  ganssreferenceLocation
        Boolean
        BOOLEAN
    pcap.geographicalCoordinates  geographicalCoordinates
        No value
    pcap.gloAkmDeltaTA  gloAkmDeltaTA
        Byte array
        BIT_STRING_SIZE_22
    pcap.gloAlmCA  gloAlmCA
        Byte array
        BIT_STRING_SIZE_1
    pcap.gloAlmDeltaIA  gloAlmDeltaIA
        Byte array
        BIT_STRING_SIZE_18
    pcap.gloAlmDeltaTdotA  gloAlmDeltaTdotA
        Byte array
        BIT_STRING_SIZE_7
    pcap.gloAlmEpsilonA  gloAlmEpsilonA
        Byte array
        BIT_STRING_SIZE_15
    pcap.gloAlmHA  gloAlmHA
        Byte array
        BIT_STRING_SIZE_5
    pcap.gloAlmLambdaA  gloAlmLambdaA
        Byte array
        BIT_STRING_SIZE_21
    pcap.gloAlmMA  gloAlmMA
        Byte array
        BIT_STRING_SIZE_2
    pcap.gloAlmNA  gloAlmNA
        Byte array
        BIT_STRING_SIZE_11
    pcap.gloAlmOmegaA  gloAlmOmegaA
        Byte array
        BIT_STRING_SIZE_16
    pcap.gloAlmTauA  gloAlmTauA
        Byte array
        BIT_STRING_SIZE_10
    pcap.gloAlmTlambdaA  gloAlmTlambdaA
        Byte array
        BIT_STRING_SIZE_21
    pcap.gloAlmnA  gloAlmnA
        Byte array
        BIT_STRING_SIZE_5
    pcap.gloDeltaTau  gloDeltaTau
        Byte array
        BIT_STRING_SIZE_5
    pcap.gloEn  gloEn
        Byte array
        BIT_STRING_SIZE_5
    pcap.gloGamma  gloGamma
        Byte array
        BIT_STRING_SIZE_11
    pcap.gloM  gloM
        Byte array
        BIT_STRING_SIZE_2
    pcap.gloP1  gloP1
        Byte array
        BIT_STRING_SIZE_2
    pcap.gloP2  gloP2
        Byte array
        BIT_STRING_SIZE_1
    pcap.gloTau  gloTau
        Byte array
        BIT_STRING_SIZE_22
    pcap.gloX  gloX
        Byte array
        BIT_STRING_SIZE_27
    pcap.gloXdot  gloXdot
        Byte array
        BIT_STRING_SIZE_24
    pcap.gloXdotdot  gloXdotdot
        Byte array
        BIT_STRING_SIZE_5
    pcap.gloY  gloY
        Byte array
        BIT_STRING_SIZE_27
    pcap.gloYdot  gloYdot
        Byte array
        BIT_STRING_SIZE_24
    pcap.gloYdotdot  gloYdotdot
        Byte array
        BIT_STRING_SIZE_5
    pcap.gloZ  gloZ
        Byte array
        BIT_STRING_SIZE_27
    pcap.gloZdot  gloZdot
        Byte array
        BIT_STRING_SIZE_24
    pcap.gloZdotdot  gloZdotdot
        Byte array
        BIT_STRING_SIZE_5
    pcap.global  global
        Object Identifier
        OBJECT_IDENTIFIER
    pcap.glonassClockModel  glonassClockModel
        No value
    pcap.glonassECEF  glonassECEF
        No value
        NavModel_GLONASSecef
    pcap.gnss_to_id  gnss-to-id
        Unsigned 32-bit integer
    pcap.gpsAlmanacAndSatelliteHealth  gpsAlmanacAndSatelliteHealth
        No value
        GPS_AlmanacAndSatelliteHealth
    pcap.gpsPositioningInstructions  gpsPositioningInstructions
        No value
    pcap.gpsTimingOfCellWanted  gpsTimingOfCellWanted
        Boolean
        BOOLEAN
    pcap.gps_AcquisitionAssistance  gps-AcquisitionAssistance
        No value
    pcap.gps_BitNumber  gps-BitNumber
        Unsigned 32-bit integer
        INTEGER_0_3
    pcap.gps_Ionospheric_Model  gps-Ionospheric-Model
        No value
    pcap.gps_MeasurementParamList  gps-MeasurementParamList
        Unsigned 32-bit integer
    pcap.gps_NavigationModel  gps-NavigationModel
        Unsigned 32-bit integer
    pcap.gps_RealTime_Integrity  gps-RealTime-Integrity
        Unsigned 32-bit integer
        GPS_RealTimeIntegrity
    pcap.gps_RefTimeUNC  gps-RefTimeUNC
        Unsigned 32-bit integer
        INTEGER_0_127
    pcap.gps_ReferenceTimeOnly  gps-ReferenceTimeOnly
        Unsigned 32-bit integer
        INTEGER_0_604799999_
    pcap.gps_TOE  gps-TOE
        Unsigned 32-bit integer
        INTEGER_0_167
    pcap.gps_TOW_1msec  gps-TOW-1msec
        Unsigned 32-bit integer
        INTEGER_0_604799999
    pcap.gps_TOW_AssistList  gps-TOW-AssistList
        Unsigned 32-bit integer
    pcap.gps_TOW_sec  gps-TOW-sec
        Unsigned 32-bit integer
        INTEGER_0_604799
    pcap.gps_Transmission_TOW  gps-Transmission-TOW
        Unsigned 32-bit integer
    pcap.gps_UTC_Model  gps-UTC-Model
        No value
    pcap.gps_Week  gps-Week
        Unsigned 32-bit integer
        INTEGER_0_1023
    pcap.gps_clockAndEphemerisParms  gps-clockAndEphemerisParms
        No value
        GPS_ClockAndEphemerisParameters
    pcap.horizontalAccuracyCode  horizontalAccuracyCode
        Unsigned 32-bit integer
    pcap.horizontalSpeed  horizontalSpeed
        Unsigned 32-bit integer
        INTEGER_0_2047
    pcap.horizontalSpeedAndBearing  horizontalSpeedAndBearing
        No value
    pcap.horizontalUncertaintySpeed  horizontalUncertaintySpeed
        Unsigned 32-bit integer
        INTEGER_0_255
    pcap.horizontalVelocity  horizontalVelocity
        No value
    pcap.horizontalVelocityWithUncertainty  horizontalVelocityWithUncertainty
        No value
    pcap.horizontalWithVerticalVelocity  horizontalWithVerticalVelocity
        No value
    pcap.horizontalWithVerticalVelocityAndUncertainty  horizontalWithVerticalVelocityAndUncertainty
        No value
    pcap.horizontalaccuracyCode  horizontalaccuracyCode
        Unsigned 32-bit integer
        RequestTypeAccuracyCode
    pcap.hour  hour
        Unsigned 32-bit integer
        INTEGER_1_24_
    pcap.i0  i0
        Byte array
        BIT_STRING_SIZE_32
    pcap.iDot  iDot
        Byte array
        BIT_STRING_SIZE_14
    pcap.iECriticality  iECriticality
        Unsigned 32-bit integer
        Criticality
    pcap.iE_Extensions  iE-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    pcap.iE_ID  iE-ID
        Unsigned 32-bit integer
        ProtocolIE_ID
    pcap.iEsCriticalityDiagnostics  iEsCriticalityDiagnostics
        Unsigned 32-bit integer
        CriticalityDiagnostics_IE_List
    pcap.i_zero_nav  i-zero-nav
        Byte array
        BIT_STRING_SIZE_32
    pcap.id  id
        Unsigned 32-bit integer
        ProtocolIE_ID
    pcap.idot_nav  idot-nav
        Byte array
        BIT_STRING_SIZE_14
    pcap.ie_Extensions  ie-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    pcap.implicitInformation  implicitInformation
        Unsigned 32-bit integer
        MethodType
    pcap.includedAngle  includedAngle
        Unsigned 32-bit integer
        INTEGER_0_179
    pcap.informationAvailable  informationAvailable
        No value
    pcap.informationNotAvailable  informationNotAvailable
        No value
    pcap.initialOffset  initialOffset
        Unsigned 32-bit integer
        INTEGER_0_255
    pcap.initiatingMessage  initiatingMessage
        No value
    pcap.innerRadius  innerRadius
        Unsigned 32-bit integer
        INTEGER_0_65535
    pcap.integerCodePhase  integerCodePhase
        Unsigned 32-bit integer
        INTEGER_0_19
    pcap.iod  iod
        Byte array
        BIT_STRING_SIZE_11
    pcap.iod_a  iod-a
        Unsigned 32-bit integer
        INTEGER_0_3
    pcap.iodc  iodc
        Byte array
        BIT_STRING_SIZE_10
    pcap.iode  iode
        Unsigned 32-bit integer
        INTEGER_0_255
    pcap.ionosphericModel  ionosphericModel
        No value
    pcap.ionosphericModelRequest  ionosphericModelRequest
        Boolean
        BOOLEAN
    pcap.ip_Length  ip-Length
        Unsigned 32-bit integer
    pcap.ip_Offset  ip-Offset
        Unsigned 32-bit integer
        INTEGER_0_9
    pcap.ip_Spacing  ip-Spacing
        Unsigned 32-bit integer
    pcap.kp  kp
        Byte array
        BIT_STRING_SIZE_2
    pcap.l2Pflag  l2Pflag
        Byte array
        BIT_STRING_SIZE_1
    pcap.latitude  latitude
        Unsigned 32-bit integer
        INTEGER_0_8388607
    pcap.latitudeSign  latitudeSign
        Unsigned 32-bit integer
    pcap.local  local
        Unsigned 32-bit integer
        INTEGER_0_65535
    pcap.longTID  longTID
        Unsigned 32-bit integer
        INTEGER_0_32767
    pcap.longitude  longitude
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    pcap.ls_part  ls-part
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    pcap.lsbTOW  lsbTOW
        Byte array
        BIT_STRING_SIZE_8
    pcap.m0  m0
        Byte array
        BIT_STRING_SIZE_24
    pcap.m_zero_nav  m-zero-nav
        Byte array
        BIT_STRING_SIZE_32
    pcap.maxPRACH_MidambleShifts  maxPRACH-MidambleShifts
        Unsigned 32-bit integer
    pcap.maxSet_E_DPDCHs  maxSet-E-DPDCHs
        Unsigned 32-bit integer
        Max_Set_E_DPDCHs
    pcap.measurementDelay  measurementDelay
        Unsigned 32-bit integer
        INTEGER_0_65535
    pcap.measurementValidity  measurementValidity
        No value
    pcap.messageStructure  messageStructure
        Unsigned 32-bit integer
    pcap.midambleAllocationMode  midambleAllocationMode
        Unsigned 32-bit integer
    pcap.midambleConfigurationBurstType1And3  midambleConfigurationBurstType1And3
        Unsigned 32-bit integer
    pcap.midambleConfigurationBurstType2  midambleConfigurationBurstType2
        Unsigned 32-bit integer
    pcap.midambleShiftAndBurstType  midambleShiftAndBurstType
        Unsigned 32-bit integer
    pcap.midiAlmDeltaI  midiAlmDeltaI
        Byte array
        BIT_STRING_SIZE_11
    pcap.midiAlmE  midiAlmE
        Byte array
        BIT_STRING_SIZE_11
    pcap.midiAlmL1Health  midiAlmL1Health
        Byte array
        BIT_STRING_SIZE_1
    pcap.midiAlmL2Health  midiAlmL2Health
        Byte array
        BIT_STRING_SIZE_1
    pcap.midiAlmL5Health  midiAlmL5Health
        Byte array
        BIT_STRING_SIZE_1
    pcap.midiAlmMo  midiAlmMo
        Byte array
        BIT_STRING_SIZE_16
    pcap.midiAlmOmega  midiAlmOmega
        Byte array
        BIT_STRING_SIZE_16
    pcap.midiAlmOmega0  midiAlmOmega0
        Byte array
        BIT_STRING_SIZE_16
    pcap.midiAlmOmegaDot  midiAlmOmegaDot
        Byte array
        BIT_STRING_SIZE_11
    pcap.midiAlmSqrtA  midiAlmSqrtA
        Byte array
        BIT_STRING_SIZE_17
    pcap.midiAlmaf0  midiAlmaf0
        Byte array
        BIT_STRING_SIZE_11
    pcap.midiAlmaf1  midiAlmaf1
        Byte array
        BIT_STRING_SIZE_10
    pcap.min  min
        Unsigned 32-bit integer
        INTEGER_1_60_
    pcap.misc  misc
        Unsigned 32-bit integer
        CauseMisc
    pcap.modeSpecificInfo  modeSpecificInfo
        Unsigned 32-bit integer
    pcap.model_id  model-id
        Unsigned 32-bit integer
        INTEGER_0_3
    pcap.ms_part  ms-part
        Unsigned 32-bit integer
        INTEGER_0_16383
    pcap.multipathIndicator  multipathIndicator
        Unsigned 32-bit integer
    pcap.nA  nA
        Byte array
        BIT_STRING_SIZE_11
    pcap.navAPowerHalf  navAPowerHalf
        Byte array
        BIT_STRING_SIZE_32
    pcap.navAlmDeltaI  navAlmDeltaI
        Byte array
        BIT_STRING_SIZE_16
    pcap.navAlmE  navAlmE
        Byte array
        BIT_STRING_SIZE_16
    pcap.navAlmMo  navAlmMo
        Byte array
        BIT_STRING_SIZE_24
    pcap.navAlmOMEGADOT  navAlmOMEGADOT
        Byte array
        BIT_STRING_SIZE_16
    pcap.navAlmOMEGAo  navAlmOMEGAo
        Byte array
        BIT_STRING_SIZE_24
    pcap.navAlmOmega  navAlmOmega
        Byte array
        BIT_STRING_SIZE_24
    pcap.navAlmSVHealth  navAlmSVHealth
        Byte array
        BIT_STRING_SIZE_8
    pcap.navAlmSqrtA  navAlmSqrtA
        Byte array
        BIT_STRING_SIZE_24
    pcap.navAlmaf0  navAlmaf0
        Byte array
        BIT_STRING_SIZE_11
    pcap.navAlmaf1  navAlmaf1
        Byte array
        BIT_STRING_SIZE_11
    pcap.navCic  navCic
        Byte array
        BIT_STRING_SIZE_16
    pcap.navCis  navCis
        Byte array
        BIT_STRING_SIZE_16
    pcap.navClockModel  navClockModel
        No value
    pcap.navCrc  navCrc
        Byte array
        BIT_STRING_SIZE_16
    pcap.navCrs  navCrs
        Byte array
        BIT_STRING_SIZE_16
    pcap.navCuc  navCuc
        Byte array
        BIT_STRING_SIZE_16
    pcap.navCus  navCus
        Byte array
        BIT_STRING_SIZE_16
    pcap.navDeltaN  navDeltaN
        Byte array
        BIT_STRING_SIZE_16
    pcap.navE  navE
        Byte array
        BIT_STRING_SIZE_32
    pcap.navFitFlag  navFitFlag
        Byte array
        BIT_STRING_SIZE_1
    pcap.navI0  navI0
        Byte array
        BIT_STRING_SIZE_32
    pcap.navIDot  navIDot
        Byte array
        BIT_STRING_SIZE_14
    pcap.navKeplerianSet  navKeplerianSet
        No value
        NavModel_NAVKeplerianSet
    pcap.navM0  navM0
        Byte array
        BIT_STRING_SIZE_32
    pcap.navModelAddDataRequest  navModelAddDataRequest
        No value
        NavModelAdditionalData
    pcap.navModelAdditionalData  navModelAdditionalData
        No value
    pcap.navOmega  navOmega
        Byte array
        BIT_STRING_SIZE_32
    pcap.navOmegaA0  navOmegaA0
        Byte array
        BIT_STRING_SIZE_32
    pcap.navOmegaADot  navOmegaADot
        Byte array
        BIT_STRING_SIZE_24
    pcap.navTgd  navTgd
        Byte array
        BIT_STRING_SIZE_8
    pcap.navToc  navToc
        Byte array
        BIT_STRING_SIZE_16
    pcap.navToe  navToe
        Byte array
        BIT_STRING_SIZE_16
    pcap.navURA  navURA
        Byte array
        BIT_STRING_SIZE_4
    pcap.navaf0  navaf0
        Byte array
        BIT_STRING_SIZE_22
    pcap.navaf1  navaf1
        Byte array
        BIT_STRING_SIZE_16
    pcap.navaf2  navaf2
        Byte array
        BIT_STRING_SIZE_8
    pcap.navigationModel  navigationModel
        No value
    pcap.navigationModelRequest  navigationModelRequest
        Boolean
        BOOLEAN
    pcap.networkAssistedGPSSupport  networkAssistedGPSSupport
        Unsigned 32-bit integer
        NetworkAssistedGPSSuport
    pcap.new_ue_State  new-ue-State
        Unsigned 32-bit integer
    pcap.noBadSatellites  noBadSatellites
        No value
    pcap.noinitialOffset  noinitialOffset
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.non_broadcastIndication  non-broadcastIndication
        Unsigned 32-bit integer
    pcap.numberOfFBI_Bits  numberOfFBI-Bits
        Unsigned 32-bit integer
    pcap.numberOfMeasurements  numberOfMeasurements
        Byte array
        BIT_STRING_SIZE_3
    pcap.numberOfTbs  numberOfTbs
        Unsigned 32-bit integer
        TransportFormatSet_NrOfTransportBlocks
    pcap.numberOfTbsTTIList  numberOfTbsTTIList
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_maxNrOfTFs_OF_TbsTTIInfo
    pcap.offsetAngle  offsetAngle
        Unsigned 32-bit integer
        INTEGER_0_179
    pcap.omega  omega
        Byte array
        BIT_STRING_SIZE_24
    pcap.omega0  omega0
        Byte array
        BIT_STRING_SIZE_24
    pcap.omegaDot  omegaDot
        Byte array
        BIT_STRING_SIZE_16
    pcap.omega_zero_nav  omega-zero-nav
        Byte array
        BIT_STRING_SIZE_32
    pcap.omegadot_nav  omegadot-nav
        Byte array
        BIT_STRING_SIZE_24
    pcap.orbitModelID  orbitModelID
        Unsigned 32-bit integer
        INTEGER_0_7
    pcap.orientationOfMajorAxis  orientationOfMajorAxis
        Unsigned 32-bit integer
        INTEGER_0_89
    pcap.otdoa_MeasuredResultsSets  otdoa-MeasuredResultsSets
        Unsigned 32-bit integer
    pcap.otdoa_NeighbourCellInfoList  otdoa-NeighbourCellInfoList
        Unsigned 32-bit integer
    pcap.otdoa_ReferenceCellInfo  otdoa-ReferenceCellInfo
        No value
    pcap.outcome  outcome
        No value
    pcap.pRACH_Info  pRACH-Info
        Unsigned 32-bit integer
    pcap.pRACH_Midamble  pRACH-Midamble
        Unsigned 32-bit integer
    pcap.pRACHparameters  pRACHparameters
        Unsigned 32-bit integer
    pcap.pathloss  pathloss
        Unsigned 32-bit integer
    pcap.pathlossWanted  pathlossWanted
        Boolean
        BOOLEAN
    pcap.periodicity  periodicity
        Unsigned 32-bit integer
        InformationReportPeriodicity
    pcap.pmX  pmX
        Byte array
        BIT_STRING_SIZE_21
    pcap.pmXdot  pmXdot
        Byte array
        BIT_STRING_SIZE_15
    pcap.pmY  pmY
        Byte array
        BIT_STRING_SIZE_21
    pcap.pmYdot  pmYdot
        Byte array
        BIT_STRING_SIZE_15
    pcap.point  point
        No value
        GA_Point
    pcap.pointWithAltitude  pointWithAltitude
        No value
        GA_PointWithAltitude
    pcap.pointWithAltitudeAndUncertaintyEllipsoid  pointWithAltitudeAndUncertaintyEllipsoid
        No value
        GA_PointWithAltitudeAndUncertaintyEllipsoid
    pcap.pointWithUnCertainty  pointWithUnCertainty
        No value
        GA_PointWithUnCertainty
    pcap.pointWithUncertaintyEllipse  pointWithUncertaintyEllipse
        No value
        GA_PointWithUnCertaintyEllipse
    pcap.polygon  polygon
        Unsigned 32-bit integer
        GA_Polygon
    pcap.positionData  positionData
        Byte array
        BIT_STRING_SIZE_16
    pcap.positioningDataDiscriminator  positioningDataDiscriminator
        Byte array
    pcap.positioningDataSet  positioningDataSet
        Unsigned 32-bit integer
    pcap.positioningMode  positioningMode
        Unsigned 32-bit integer
    pcap.prc  prc
        Signed 32-bit integer
    pcap.preambleScramblingCodeWordNumber  preambleScramblingCodeWordNumber
        Unsigned 32-bit integer
    pcap.primaryCPICH_Info  primaryCPICH-Info
        Unsigned 32-bit integer
        PrimaryScramblingCode
    pcap.primaryScramblingCode  primaryScramblingCode
        Unsigned 32-bit integer
    pcap.privateIEs  privateIEs
        Unsigned 32-bit integer
        PrivateIE_Container
    pcap.procedureCode  procedureCode
        Unsigned 32-bit integer
    pcap.procedureCriticality  procedureCriticality
        Unsigned 32-bit integer
        Criticality
    pcap.protocol  protocol
        Unsigned 32-bit integer
        CauseProtocol
    pcap.protocolExtensions  protocolExtensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    pcap.protocolIEs  protocolIEs
        Unsigned 32-bit integer
        ProtocolIE_Container
    pcap.pseudorangeRMS_Error  pseudorangeRMS-Error
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.punctureLimit  punctureLimit
        Unsigned 32-bit integer
        PuncturingLimit
    pcap.puncturingLimit  puncturingLimit
        Unsigned 32-bit integer
    pcap.rNC_ID  rNC-ID
        Unsigned 32-bit integer
        INTEGER_0_4095
    pcap.radioNetwork  radioNetwork
        Unsigned 32-bit integer
        CauseRadioNetwork
    pcap.rateMatchingAttribute  rateMatchingAttribute
        Unsigned 32-bit integer
        TransportFormatSet_RateMatchingAttribute
    pcap.realTimeIntegrity  realTimeIntegrity
        No value
    pcap.realTimeIntegrityRequest  realTimeIntegrityRequest
        Boolean
        BOOLEAN
    pcap.redAlmDeltaA  redAlmDeltaA
        Byte array
        BIT_STRING_SIZE_8
    pcap.redAlmL1Health  redAlmL1Health
        Byte array
        BIT_STRING_SIZE_1
    pcap.redAlmL2Health  redAlmL2Health
        Byte array
        BIT_STRING_SIZE_1
    pcap.redAlmL5Health  redAlmL5Health
        Byte array
        BIT_STRING_SIZE_1
    pcap.redAlmOmega0  redAlmOmega0
        Byte array
        BIT_STRING_SIZE_7
    pcap.redAlmPhi0  redAlmPhi0
        Byte array
        BIT_STRING_SIZE_7
    pcap.referenceLocation  referenceLocation
        No value
    pcap.referenceLocationRequest  referenceLocationRequest
        Boolean
        BOOLEAN
    pcap.referenceNumber  referenceNumber
        Unsigned 32-bit integer
        INTEGER_0_32767_
    pcap.referencePosition  referencePosition
        No value
        RefPosition_InfEx_Rqst
    pcap.referencePositionEstimate  referencePositionEstimate
        Unsigned 32-bit integer
        UE_PositionEstimate
    pcap.referenceSfn  referenceSfn
        Unsigned 32-bit integer
        INTEGER_0_4095
    pcap.referenceTime  referenceTime
        Unsigned 32-bit integer
    pcap.referenceTimeChoice  referenceTimeChoice
        Unsigned 32-bit integer
    pcap.referenceTimeRequest  referenceTimeRequest
        Boolean
        BOOLEAN
    pcap.referenceUC_ID  referenceUC-ID
        No value
        UC_ID
    pcap.reference_E_TFCI  reference-E-TFCI
        Unsigned 32-bit integer
        E_TFCI
    pcap.reference_E_TFCI_Information  reference-E-TFCI-Information
        Unsigned 32-bit integer
    pcap.reference_E_TFCI_PO  reference-E-TFCI-PO
        Unsigned 32-bit integer
    pcap.relativeAltitude  relativeAltitude
        Signed 32-bit integer
        INTEGER_M4000_4000
    pcap.relativeEast  relativeEast
        Signed 32-bit integer
        INTEGER_M20000_20000
    pcap.relativeNorth  relativeNorth
        Signed 32-bit integer
        INTEGER_M20000_20000
    pcap.relativeTimingDifferenceInfo  relativeTimingDifferenceInfo
        Unsigned 32-bit integer
    pcap.repetitionLength  repetitionLength
        Unsigned 32-bit integer
    pcap.repetitionNumber  repetitionNumber
        Unsigned 32-bit integer
        CriticalityDiagnosticsRepetition
    pcap.repetitionPeriod  repetitionPeriod
        Unsigned 32-bit integer
    pcap.reportArea  reportArea
        Unsigned 32-bit integer
        RequestTypeReportArea
    pcap.reportingAmount  reportingAmount
        Unsigned 32-bit integer
        INTEGER_1_8639999_
    pcap.reportingInterval  reportingInterval
        Unsigned 32-bit integer
        INTEGER_1_8639999_
    pcap.requestedCellIDMeasurements  requestedCellIDMeasurements
        Unsigned 32-bit integer
    pcap.requestedDataValue  requestedDataValue
        No value
    pcap.requestedDataValueInformation  requestedDataValueInformation
        Unsigned 32-bit integer
    pcap.reserved1  reserved1
        Byte array
        BIT_STRING_SIZE_23
    pcap.reserved2  reserved2
        Byte array
        BIT_STRING_SIZE_24
    pcap.reserved3  reserved3
        Byte array
        BIT_STRING_SIZE_24
    pcap.reserved4  reserved4
        Byte array
        BIT_STRING_SIZE_16
    pcap.rlc_Size  rlc-Size
        Unsigned 32-bit integer
    pcap.roundTripTime  roundTripTime
        Unsigned 32-bit integer
    pcap.roundTripTimeInfo  roundTripTimeInfo
        No value
    pcap.roundTripTimeInfoWanted  roundTripTimeInfoWanted
        Boolean
        BOOLEAN
    pcap.roundTripTimeInfoWithType1Wanted  roundTripTimeInfoWithType1Wanted
        Boolean
        BOOLEAN
    pcap.rrc  rrc
        Signed 32-bit integer
    pcap.rxTimingDeviation  rxTimingDeviation
        Unsigned 32-bit integer
    pcap.rxTimingDeviation384ext  rxTimingDeviation384ext
        Unsigned 32-bit integer
    pcap.rxTimingDeviation384extInfoWanted  rxTimingDeviation384extInfoWanted
        Boolean
        BOOLEAN
    pcap.rxTimingDeviation768  rxTimingDeviation768
        Unsigned 32-bit integer
    pcap.rxTimingDeviation768InfoWanted  rxTimingDeviation768InfoWanted
        Boolean
        BOOLEAN
    pcap.rxTimingDeviationInfo  rxTimingDeviationInfo
        No value
    pcap.rxTimingDeviationInfoWanted  rxTimingDeviationInfoWanted
        Boolean
        BOOLEAN
    pcap.rxTimingDeviationLCR  rxTimingDeviationLCR
        Unsigned 32-bit integer
    pcap.rxTimingDeviationLCRInfo  rxTimingDeviationLCRInfo
        No value
    pcap.rxTimingDeviationLCRInfoWanted  rxTimingDeviationLCRInfoWanted
        Boolean
        BOOLEAN
    pcap.sFN  sFN
        Unsigned 32-bit integer
    pcap.sFNSFNDriftRate  sFNSFNDriftRate
        Signed 32-bit integer
    pcap.sFNSFNDriftRateQuality  sFNSFNDriftRateQuality
        Unsigned 32-bit integer
    pcap.sFNSFNMeasurementValueInfo  sFNSFNMeasurementValueInfo
        No value
    pcap.sFNSFNQuality  sFNSFNQuality
        Unsigned 32-bit integer
    pcap.sFNSFNValue  sFNSFNValue
        Unsigned 32-bit integer
    pcap.satHealth  satHealth
        Byte array
        BIT_STRING_SIZE_8
    pcap.satID  satID
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.satId  satId
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.satMask  satMask
        Byte array
        BIT_STRING_SIZE_1_32
    pcap.satRelatedDataList  satRelatedDataList
        Unsigned 32-bit integer
        SatelliteRelatedDataList
    pcap.satRelatedDataListGANSS  satRelatedDataListGANSS
        Unsigned 32-bit integer
        SatelliteRelatedDataListGANSS
    pcap.sat_info_GLOkpList  sat-info-GLOkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_GLOkpList
    pcap.sat_info_MIDIkpList  sat-info-MIDIkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_MIDIkpList
    pcap.sat_info_NAVkpList  sat-info-NAVkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_NAVkpList
    pcap.sat_info_REDkpList  sat-info-REDkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_REDkpList
    pcap.sat_info_SBASecefList  sat-info-SBASecefList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_SBASecefList
    pcap.satelliteID  satelliteID
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.satelliteInformation  satelliteInformation
        Unsigned 32-bit integer
        GANSS_SatelliteInformation
    pcap.satelliteInformationList  satelliteInformationList
        Unsigned 32-bit integer
        AcquisitionSatInfoList
    pcap.satelliteStatus  satelliteStatus
        Unsigned 32-bit integer
    pcap.sbagYgDotDot  sbagYgDotDot
        Byte array
        BIT_STRING_SIZE_10
    pcap.sbasAccuracy  sbasAccuracy
        Byte array
        BIT_STRING_SIZE_4
    pcap.sbasAgf1  sbasAgf1
        Byte array
        BIT_STRING_SIZE_8
    pcap.sbasAgfo  sbasAgfo
        Byte array
        BIT_STRING_SIZE_12
    pcap.sbasAlmDataID  sbasAlmDataID
        Byte array
        BIT_STRING_SIZE_2
    pcap.sbasAlmHealth  sbasAlmHealth
        Byte array
        BIT_STRING_SIZE_8
    pcap.sbasAlmTo  sbasAlmTo
        Byte array
        BIT_STRING_SIZE_11
    pcap.sbasAlmXg  sbasAlmXg
        Byte array
        BIT_STRING_SIZE_15
    pcap.sbasAlmXgdot  sbasAlmXgdot
        Byte array
        BIT_STRING_SIZE_3
    pcap.sbasAlmYg  sbasAlmYg
        Byte array
        BIT_STRING_SIZE_15
    pcap.sbasAlmYgDot  sbasAlmYgDot
        Byte array
        BIT_STRING_SIZE_3
    pcap.sbasAlmZg  sbasAlmZg
        Byte array
        BIT_STRING_SIZE_9
    pcap.sbasAlmZgDot  sbasAlmZgDot
        Byte array
        BIT_STRING_SIZE_4
    pcap.sbasClockModel  sbasClockModel
        No value
    pcap.sbasECEF  sbasECEF
        No value
        NavModel_SBASecef
    pcap.sbasTo  sbasTo
        Byte array
        BIT_STRING_SIZE_13
    pcap.sbasXg  sbasXg
        Byte array
        BIT_STRING_SIZE_30
    pcap.sbasXgDot  sbasXgDot
        Byte array
        BIT_STRING_SIZE_17
    pcap.sbasXgDotDot  sbasXgDotDot
        Byte array
        BIT_STRING_SIZE_10
    pcap.sbasYg  sbasYg
        Byte array
        BIT_STRING_SIZE_30
    pcap.sbasYgDot  sbasYgDot
        Byte array
        BIT_STRING_SIZE_17
    pcap.sbasZg  sbasZg
        Byte array
        BIT_STRING_SIZE_25
    pcap.sbasZgDot  sbasZgDot
        Byte array
        BIT_STRING_SIZE_18
    pcap.sbasZgDotDot  sbasZgDotDot
        Byte array
        BIT_STRING_SIZE_10
    pcap.scramblingCode  scramblingCode
        Unsigned 32-bit integer
        UL_ScramblingCode
    pcap.scramblingCodeType  scramblingCodeType
        Unsigned 32-bit integer
    pcap.searchWindowSize  searchWindowSize
        Unsigned 32-bit integer
        OTDOA_SearchWindowSize
    pcap.seed  seed
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.selectedPositionMethod  selectedPositionMethod
        Unsigned 32-bit integer
    pcap.semi_staticPart  semi-staticPart
        No value
        TransportFormatSet_Semi_staticPart
    pcap.sf1Revd  sf1Revd
        No value
        SubFrame1Reserved
    pcap.sfn  sfn
        Unsigned 32-bit integer
        INTEGER_0_4095
    pcap.sfn_Offset  sfn-Offset
        Unsigned 32-bit integer
        INTEGER_0_4095
    pcap.sfn_Offset_Validity  sfn-Offset-Validity
        Unsigned 32-bit integer
    pcap.sfn_SFN_Drift  sfn-SFN-Drift
        Unsigned 32-bit integer
    pcap.sfn_SFN_RelTimeDifference  sfn-SFN-RelTimeDifference
        No value
        SFN_SFN_RelTimeDifference1
    pcap.sfn_sfn_Reltimedifference  sfn-sfn-Reltimedifference
        Unsigned 32-bit integer
        INTEGER_0_38399
    pcap.shortTID  shortTID
        Unsigned 32-bit integer
        INTEGER_0_127
    pcap.signalsAvailable  signalsAvailable
        Byte array
        BIT_STRING_SIZE_8
    pcap.signature0  signature0
        Boolean
    pcap.signature1  signature1
        Boolean
    pcap.signature10  signature10
        Boolean
    pcap.signature11  signature11
        Boolean
    pcap.signature12  signature12
        Boolean
    pcap.signature13  signature13
        Boolean
    pcap.signature14  signature14
        Boolean
    pcap.signature15  signature15
        Boolean
    pcap.signature2  signature2
        Boolean
    pcap.signature3  signature3
        Boolean
    pcap.signature4  signature4
        Boolean
    pcap.signature5  signature5
        Boolean
    pcap.signature6  signature6
        Boolean
    pcap.signature7  signature7
        Boolean
    pcap.signature8  signature8
        Boolean
    pcap.signature9  signature9
        Boolean
    pcap.specialBurstScheduling  specialBurstScheduling
        Unsigned 32-bit integer
    pcap.standAloneLocationMethodsSupported  standAloneLocationMethodsSupported
        Boolean
        BOOLEAN
    pcap.statusHealth  statusHealth
        Unsigned 32-bit integer
        DiffCorrectionStatus
    pcap.stdOfMeasurements  stdOfMeasurements
        Byte array
        BIT_STRING_SIZE_5
    pcap.stdResolution  stdResolution
        Byte array
        BIT_STRING_SIZE_2
    pcap.storm_flag_five  storm-flag-five
        Boolean
        BOOLEAN
    pcap.storm_flag_four  storm-flag-four
        Boolean
        BOOLEAN
    pcap.storm_flag_one  storm-flag-one
        Boolean
        BOOLEAN
    pcap.storm_flag_three  storm-flag-three
        Boolean
        BOOLEAN
    pcap.storm_flag_two  storm-flag-two
        Boolean
        BOOLEAN
    pcap.subCh0  subCh0
        Boolean
    pcap.subCh1  subCh1
        Boolean
    pcap.subCh10  subCh10
        Boolean
    pcap.subCh11  subCh11
        Boolean
    pcap.subCh2  subCh2
        Boolean
    pcap.subCh3  subCh3
        Boolean
    pcap.subCh4  subCh4
        Boolean
    pcap.subCh5  subCh5
        Boolean
    pcap.subCh6  subCh6
        Boolean
    pcap.subCh7  subCh7
        Boolean
    pcap.subCh8  subCh8
        Boolean
    pcap.subCh9  subCh9
        Boolean
    pcap.successfulOutcome  successfulOutcome
        No value
    pcap.supportForIPDL  supportForIPDL
        Boolean
        BOOLEAN
    pcap.supportForRxTxTimeDiff  supportForRxTxTimeDiff
        Boolean
        BOOLEAN
    pcap.supportForSFNSFNTimeDiff  supportForSFNSFNTimeDiff
        Boolean
        BOOLEAN
    pcap.supportForUEAGPSinCellPCH  supportForUEAGPSinCellPCH
        Boolean
        BOOLEAN
    pcap.supportGANSSCarrierPhaseMeasurement  supportGANSSCarrierPhaseMeasurement
        Boolean
        BOOLEAN
    pcap.supportGANSSTimingOfCellFrame  supportGANSSTimingOfCellFrame
        Boolean
        BOOLEAN
    pcap.supportGPSTimingOfCellFrame  supportGPSTimingOfCellFrame
        Boolean
        BOOLEAN
    pcap.svGlobalHealth  svGlobalHealth
        Byte array
        BIT_STRING_SIZE_364
    pcap.svHealth  svHealth
        Byte array
        BIT_STRING_SIZE_6
    pcap.svID  svID
        Unsigned 32-bit integer
        INTEGER_0_63
    pcap.tFCI_Coding  tFCI-Coding
        Unsigned 32-bit integer
    pcap.tFCI_Presence  tFCI-Presence
        Boolean
        BOOLEAN
    pcap.tFCS  tFCS
        Unsigned 32-bit integer
    pcap.tFS  tFS
        No value
        TransportFormatSet
    pcap.tGCFN  tGCFN
        Unsigned 32-bit integer
        CFN
    pcap.tGD  tGD
        Unsigned 32-bit integer
    pcap.tGL1  tGL1
        Unsigned 32-bit integer
        GapLength
    pcap.tGL2  tGL2
        Unsigned 32-bit integer
        GapLength
    pcap.tGPL1  tGPL1
        Unsigned 32-bit integer
        GapDuration
    pcap.tGPRC  tGPRC
        Unsigned 32-bit integer
    pcap.tGPSID  tGPSID
        Unsigned 32-bit integer
    pcap.tGSN  tGSN
        Unsigned 32-bit integer
    pcap.tTIInfo  tTIInfo
        Unsigned 32-bit integer
        TransportFormatSet_TransmissionTimeIntervalDynamic
    pcap.tUTRANGANSS  tUTRANGANSS
        No value
    pcap.tUTRANGANSSDriftRate  tUTRANGANSSDriftRate
        Signed 32-bit integer
        INTEGER_M50_50
    pcap.tUTRANGANSSDriftRateQuality  tUTRANGANSSDriftRateQuality
        Unsigned 32-bit integer
        INTEGER_0_50
    pcap.tUTRANGANSSMeasurementValueInfo  tUTRANGANSSMeasurementValueInfo
        No value
    pcap.tUTRANGANSSQuality  tUTRANGANSSQuality
        Unsigned 32-bit integer
        INTEGER_0_255
    pcap.tUTRANGPS  tUTRANGPS
        No value
    pcap.tUTRANGPSDriftRate  tUTRANGPSDriftRate
        Signed 32-bit integer
    pcap.tUTRANGPSDriftRateQuality  tUTRANGPSDriftRateQuality
        Unsigned 32-bit integer
    pcap.tUTRANGPSMeasurementValueInfo  tUTRANGPSMeasurementValueInfo
        No value
    pcap.tUTRANGPSQuality  tUTRANGPSQuality
        Unsigned 32-bit integer
    pcap.t_GD  t-GD
        Byte array
        BIT_STRING_SIZE_8
    pcap.t_TOE_limit  t-TOE-limit
        Unsigned 32-bit integer
        INTEGER_0_10
    pcap.t_gd  t-gd
        Byte array
        BIT_STRING_SIZE_10
    pcap.t_oa  t-oa
        Unsigned 32-bit integer
        INTEGER_0_255
    pcap.t_oc  t-oc
        Byte array
        BIT_STRING_SIZE_14
    pcap.t_oe  t-oe
        Byte array
        BIT_STRING_SIZE_16
    pcap.t_ot  t-ot
        Byte array
        BIT_STRING_SIZE_8
    pcap.t_ot_utc  t-ot-utc
        Byte array
        BIT_STRING_SIZE_8
    pcap.t_toe_limit  t-toe-limit
        Unsigned 32-bit integer
        INTEGER_0_10
    pcap.tauC  tauC
        Byte array
        BIT_STRING_SIZE_32
    pcap.tdd  tdd
        No value
    pcap.tdd_ChannelisationCode  tdd-ChannelisationCode
        Unsigned 32-bit integer
    pcap.tdd_DPCHOffset  tdd-DPCHOffset
        Unsigned 32-bit integer
    pcap.teop  teop
        Byte array
        BIT_STRING_SIZE_16
    pcap.tfci_Existence  tfci-Existence
        Boolean
        BOOLEAN
    pcap.tfs  tfs
        No value
        TransportFormatSet
    pcap.timeSlot  timeSlot
        Unsigned 32-bit integer
    pcap.timingAdvance  timingAdvance
        Unsigned 32-bit integer
    pcap.timingAdvance384ext  timingAdvance384ext
        Unsigned 32-bit integer
    pcap.timingAdvance768  timingAdvance768
        Unsigned 32-bit integer
    pcap.timingAdvanceLCR  timingAdvanceLCR
        Unsigned 32-bit integer
    pcap.timingAdvanceLCRWanted  timingAdvanceLCRWanted
        Boolean
        BOOLEAN
    pcap.timingAdvanceLCR_R7  timingAdvanceLCR-R7
        Unsigned 32-bit integer
    pcap.tlm_Message  tlm-Message
        Byte array
        BIT_STRING_SIZE_14
    pcap.tlm_Reserved  tlm-Reserved
        Byte array
        BIT_STRING_SIZE_2
    pcap.toe_nav  toe-nav
        Byte array
        BIT_STRING_SIZE_14
    pcap.trChInfo  trChInfo
        Unsigned 32-bit integer
        TrChInfoList
    pcap.transactionID  transactionID
        Unsigned 32-bit integer
    pcap.transmissionGanssTimeIndicator  transmissionGanssTimeIndicator
        Unsigned 32-bit integer
    pcap.transmissionGapPatternSequenceInfo  transmissionGapPatternSequenceInfo
        Unsigned 32-bit integer
        Transmission_Gap_Pattern_Sequence_Information
    pcap.transmissionTOWIndicator  transmissionTOWIndicator
        Unsigned 32-bit integer
    pcap.transmissionTimeInterval  transmissionTimeInterval
        Unsigned 32-bit integer
        TransportFormatSet_TransmissionTimeIntervalSemiStatic
    pcap.transmission_Gap_Pattern_Sequence_Status  transmission-Gap-Pattern-Sequence-Status
        Unsigned 32-bit integer
        Transmission_Gap_Pattern_Sequence_Status_List
    pcap.transport  transport
        Unsigned 32-bit integer
        CauseTransport
    pcap.triggeringMessage  triggeringMessage
        Unsigned 32-bit integer
    pcap.tutran_ganss_driftRate  tutran-ganss-driftRate
        Unsigned 32-bit integer
    pcap.type  type
        Unsigned 32-bit integer
        InformationReportCharacteristicsType
    pcap.type1  type1
        No value
    pcap.type2  type2
        No value
    pcap.type3  type3
        No value
    pcap.typeOfError  typeOfError
        Unsigned 32-bit integer
    pcap.uC_ID  uC-ID
        No value
    pcap.uE_Positioning_OTDOA_AssistanceData  uE-Positioning-OTDOA-AssistanceData
        No value
    pcap.uL_Code_InformationList  uL-Code-InformationList
        Unsigned 32-bit integer
        TDD_UL_Code_Information
    pcap.uL_DPCHInfo  uL-DPCHInfo
        Unsigned 32-bit integer
    pcap.uL_Timeslot_Information  uL-Timeslot-Information
        Unsigned 32-bit integer
    pcap.uL_TrCHtype  uL-TrCHtype
        Unsigned 32-bit integer
    pcap.uSCH_SchedulingOffset  uSCH-SchedulingOffset
        Unsigned 32-bit integer
    pcap.uTDOA_CELLDCH  uTDOA-CELLDCH
        No value
    pcap.uTDOA_CELLFACH  uTDOA-CELLFACH
        No value
    pcap.uTDOA_ChannelSettings  uTDOA-ChannelSettings
        Unsigned 32-bit integer
        UTDOA_RRCState
    pcap.uTRANAccessPointPositionAltitude  uTRANAccessPointPositionAltitude
        No value
    pcap.uarfcn  uarfcn
        Unsigned 32-bit integer
    pcap.uarfcn_DL  uarfcn-DL
        Unsigned 32-bit integer
        UARFCN
    pcap.uarfcn_UL  uarfcn-UL
        Unsigned 32-bit integer
        UARFCN
    pcap.udre  udre
        Unsigned 32-bit integer
    pcap.udreGrowthRate  udreGrowthRate
        Unsigned 32-bit integer
    pcap.udreValidityTime  udreValidityTime
        Unsigned 32-bit integer
    pcap.ueAssisted  ueAssisted
        No value
    pcap.ueBased  ueBased
        No value
    pcap.ueBasedOTDOASupported  ueBasedOTDOASupported
        Boolean
        BOOLEAN
    pcap.ueSpecificMidamble  ueSpecificMidamble
        Unsigned 32-bit integer
        MidambleShiftLong
    pcap.ue_GANSSTimingOfCell  ue-GANSSTimingOfCell
        Unsigned 32-bit integer
    pcap.ue_GANSSTimingOfCellFrames  ue-GANSSTimingOfCellFrames
        Unsigned 64-bit integer
    pcap.ue_GPSTimingOfCell  ue-GPSTimingOfCell
        Unsigned 64-bit integer
    pcap.ue_PositionEstimate  ue-PositionEstimate
        Unsigned 32-bit integer
    pcap.ue_PositioningMeasQuality  ue-PositioningMeasQuality
        No value
    pcap.ue_RxTxTimeDifferenceType1  ue-RxTxTimeDifferenceType1
        Unsigned 32-bit integer
    pcap.ue_RxTxTimeDifferenceType2  ue-RxTxTimeDifferenceType2
        Unsigned 32-bit integer
    pcap.ue_SFNSFNTimeDifferenceType2  ue-SFNSFNTimeDifferenceType2
        Unsigned 32-bit integer
        INTEGER_0_40961
    pcap.ue_SFNSFNTimeDifferenceType2Info  ue-SFNSFNTimeDifferenceType2Info
        No value
    pcap.ue_State  ue-State
        Unsigned 32-bit integer
    pcap.ue_positionEstimate  ue-positionEstimate
        Unsigned 32-bit integer
    pcap.ue_positioning_IPDL_Paremeters  ue-positioning-IPDL-Paremeters
        No value
        UE_Positioning_IPDL_Parameters
    pcap.ue_positioning_OTDOA_NeighbourCellList  ue-positioning-OTDOA-NeighbourCellList
        Unsigned 32-bit integer
    pcap.ue_positioning_OTDOA_ReferenceCellInfo  ue-positioning-OTDOA-ReferenceCellInfo
        No value
    pcap.ul_PunctureLimit  ul-PunctureLimit
        Unsigned 32-bit integer
        PuncturingLimit
    pcap.ul_information  ul-information
        No value
        UL_InformationFDD
    pcap.uncertaintyAltitude  uncertaintyAltitude
        Unsigned 32-bit integer
        INTEGER_0_127
    pcap.uncertaintyCode  uncertaintyCode
        Unsigned 32-bit integer
        INTEGER_0_127
    pcap.uncertaintyEllipse  uncertaintyEllipse
        No value
        GA_UncertaintyEllipse
    pcap.uncertaintyRadius  uncertaintyRadius
        Unsigned 32-bit integer
        INTEGER_0_127
    pcap.uncertaintySemi_major  uncertaintySemi-major
        Unsigned 32-bit integer
        INTEGER_0_127
    pcap.uncertaintySemi_minor  uncertaintySemi-minor
        Unsigned 32-bit integer
        INTEGER_0_127
    pcap.uncertaintySpeed  uncertaintySpeed
        Unsigned 32-bit integer
        INTEGER_0_255
    pcap.unsuccessfulOutcome  unsuccessfulOutcome
        No value
    pcap.uplink_Compressed_Mode_Method  uplink-Compressed-Mode-Method
        Unsigned 32-bit integer
    pcap.uraIndex  uraIndex
        Byte array
        BIT_STRING_SIZE_4
    pcap.uschParameters  uschParameters
        No value
    pcap.utcA0  utcA0
        Byte array
        BIT_STRING_SIZE_16
    pcap.utcA0wnt  utcA0wnt
        Byte array
        BIT_STRING_SIZE_32
    pcap.utcA1  utcA1
        Byte array
        BIT_STRING_SIZE_13
    pcap.utcA1wnt  utcA1wnt
        Byte array
        BIT_STRING_SIZE_24
    pcap.utcA2  utcA2
        Byte array
        BIT_STRING_SIZE_7
    pcap.utcDN  utcDN
        Byte array
        BIT_STRING_SIZE_4
    pcap.utcDeltaTls  utcDeltaTls
        Byte array
        BIT_STRING_SIZE_8
    pcap.utcDeltaTlsf  utcDeltaTlsf
        Byte array
        BIT_STRING_SIZE_8
    pcap.utcModel  utcModel
        No value
    pcap.utcModel1  utcModel1
        No value
        UTCmodelSet1
    pcap.utcModel2  utcModel2
        No value
        UTCmodelSet2
    pcap.utcModel3  utcModel3
        No value
        UTCmodelSet3
    pcap.utcModelID  utcModelID
        Unsigned 32-bit integer
        INTEGER_0_7
    pcap.utcModelRequest  utcModelRequest
        Boolean
        BOOLEAN
    pcap.utcStandardID  utcStandardID
        Byte array
        BIT_STRING_SIZE_3
    pcap.utcTot  utcTot
        Byte array
        BIT_STRING_SIZE_16
    pcap.utcWNlsf  utcWNlsf
        Byte array
        BIT_STRING_SIZE_8
    pcap.utcWNot  utcWNot
        Byte array
        BIT_STRING_SIZE_13
    pcap.utcWNt  utcWNt
        Byte array
        BIT_STRING_SIZE_8
    pcap.utdoa_BitCount  utdoa-BitCount
        Unsigned 32-bit integer
    pcap.utdoa_timeInterval  utdoa-timeInterval
        Unsigned 32-bit integer
    pcap.utranReferenceTime  utranReferenceTime
        No value
        UTRAN_GANSSReferenceTimeUL
    pcap.utran_GANSSTimingOfCellFrames  utran-GANSSTimingOfCellFrames
        Unsigned 32-bit integer
        INTEGER_0_3999999
    pcap.utran_GPSReferenceTimeResult  utran-GPSReferenceTimeResult
        No value
    pcap.utran_GPSTimingOfCell  utran-GPSTimingOfCell
        Unsigned 64-bit integer
    pcap.utran_ganssreferenceTime  utran-ganssreferenceTime
        No value
        UTRAN_GANSSReferenceTimeDL
    pcap.value  value
        No value
        T_ie_field_value
    pcap.verticalAccuracyCode  verticalAccuracyCode
        Unsigned 32-bit integer
    pcap.verticalSpeed  verticalSpeed
        Unsigned 32-bit integer
        INTEGER_0_255
    pcap.verticalSpeedDirection  verticalSpeedDirection
        Unsigned 32-bit integer
    pcap.verticalUncertaintySpeed  verticalUncertaintySpeed
        Unsigned 32-bit integer
        INTEGER_0_255
    pcap.verticalVelocity  verticalVelocity
        No value
    pcap.w_n_lsf_utc  w-n-lsf-utc
        Byte array
        BIT_STRING_SIZE_8
    pcap.w_n_t_utc  w-n-t-utc
        Byte array
        BIT_STRING_SIZE_8
    pcap.weekNumber  weekNumber
        Unsigned 32-bit integer
        INTEGER_0_255
    pcap.wholeGPS_Chips  wholeGPS-Chips
        Unsigned 32-bit integer
        INTEGER_0_1022
    pcap.wn_a  wn-a
        Byte array
        BIT_STRING_SIZE_8
    pcap.wn_lsf  wn-lsf
        Byte array
        BIT_STRING_SIZE_8
    pcap.wn_t  wn-t
        Byte array
        BIT_STRING_SIZE_8

UTRAN Iur interface Radio Network Subsystem Application Part (rnsap)

    rnsap.ActivationInformation  ActivationInformation
        Unsigned 32-bit integer
    rnsap.ActivationInformationItem  ActivationInformationItem
        No value
    rnsap.Active_MBMS_Bearer_Service_ListFDD  Active-MBMS-Bearer-Service-ListFDD
        Unsigned 32-bit integer
    rnsap.Active_MBMS_Bearer_Service_ListFDD_PFL  Active-MBMS-Bearer-Service-ListFDD-PFL
        Unsigned 32-bit integer
    rnsap.Active_MBMS_Bearer_Service_ListTDD  Active-MBMS-Bearer-Service-ListTDD
        Unsigned 32-bit integer
    rnsap.Active_MBMS_Bearer_Service_ListTDD_PFL  Active-MBMS-Bearer-Service-ListTDD-PFL
        Unsigned 32-bit integer
    rnsap.Active_Pattern_Sequence_Information  Active-Pattern-Sequence-Information
        No value
    rnsap.AdditionalPreferredFrequencyItem  AdditionalPreferredFrequencyItem
        No value
    rnsap.Additional_EDCH_Cell_Information_RL_Add_Req  Additional-EDCH-Cell-Information-RL-Add-Req
        No value
    rnsap.Additional_EDCH_Cell_Information_RL_Param_Upd  Additional-EDCH-Cell-Information-RL-Param-Upd
        Unsigned 32-bit integer
    rnsap.Additional_EDCH_Cell_Information_RL_Param_Upd_ItemIEs  Additional-EDCH-Cell-Information-RL-Param-Upd-ItemIEs
        No value
    rnsap.Additional_EDCH_Cell_Information_RL_Reconf_Prep  Additional-EDCH-Cell-Information-RL-Reconf-Prep
        No value
    rnsap.Additional_EDCH_Cell_Information_RL_Reconf_Req  Additional-EDCH-Cell-Information-RL-Reconf-Req
        No value
    rnsap.Additional_EDCH_Cell_Information_Removal_Info_ItemIEs  Additional-EDCH-Cell-Information-Removal-Info-ItemIEs
        No value
    rnsap.Additional_EDCH_Cell_Information_Response_List  Additional-EDCH-Cell-Information-Response-List
        Unsigned 32-bit integer
    rnsap.Additional_EDCH_Cell_Information_Response_RLAddList  Additional-EDCH-Cell-Information-Response-RLAddList
        Unsigned 32-bit integer
    rnsap.Additional_EDCH_Cell_Information_Response_RLAdd_ItemIEs  Additional-EDCH-Cell-Information-Response-RLAdd-ItemIEs
        No value
    rnsap.Additional_EDCH_Cell_Information_Response_RLReconf_List  Additional-EDCH-Cell-Information-Response-RLReconf-List
        Unsigned 32-bit integer
    rnsap.Additional_EDCH_Cell_Information_To_Add_ItemIEs  Additional-EDCH-Cell-Information-To-Add-ItemIEs
        No value
    rnsap.Additional_EDCH_ConfigurationChange_Info_ItemIEs  Additional-EDCH-ConfigurationChange-Info-ItemIEs
        No value
    rnsap.Additional_EDCH_DL_Control_Channel_Change_Info_ItemIEs  Additional-EDCH-DL-Control-Channel-Change-Info-ItemIEs
        No value
    rnsap.Additional_EDCH_FDD_Information_Response_ItemIEs  Additional-EDCH-FDD-Information-Response-ItemIEs
        No value
    rnsap.Additional_EDCH_FDD_Information_Response_RLReconf_Items  Additional-EDCH-FDD-Information-Response-RLReconf-Items
        No value
    rnsap.Additional_EDCH_FDD_Setup_Cell_Information  Additional-EDCH-FDD-Setup-Cell-Information
        No value
    rnsap.Additional_EDCH_MAC_d_Flows_Specific_Info  Additional-EDCH-MAC-d-Flows-Specific-Info
        No value
    rnsap.Additional_EDCH_MAC_d_Flows_Specific_Info_Response  Additional-EDCH-MAC-d-Flows-Specific-Info-Response
        No value
    rnsap.Additional_EDCH_Preconfiguration_Information  Additional-EDCH-Preconfiguration-Information
        Unsigned 32-bit integer
    rnsap.Additional_EDCH_Preconfiguration_Information_ItemIEs  Additional-EDCH-Preconfiguration-Information-ItemIEs
        No value
    rnsap.Additional_EDCH_RL_Specific_Information_To_Add_ItemIEs  Additional-EDCH-RL-Specific-Information-To-Add-ItemIEs
        No value
    rnsap.Additional_EDCH_RL_Specific_Information_To_Modify_ItemIEs  Additional-EDCH-RL-Specific-Information-To-Modify-ItemIEs
        No value
    rnsap.Additional_EDCH_RL_Specific_Information_To_Setup_ItemIEs  Additional-EDCH-RL-Specific-Information-To-Setup-ItemIEs
        No value
    rnsap.Additional_EDCH_Setup_Info  Additional-EDCH-Setup-Info
        No value
    rnsap.Additional_HS_Cell_Change_Information_Response_ItemIEs  Additional-HS-Cell-Change-Information-Response-ItemIEs
        No value
    rnsap.Additional_HS_Cell_Change_Information_Response_List  Additional-HS-Cell-Change-Information-Response-List
        Unsigned 32-bit integer
    rnsap.Additional_HS_Cell_Information_RL_Addition_ItemIEs  Additional-HS-Cell-Information-RL-Addition-ItemIEs
        No value
    rnsap.Additional_HS_Cell_Information_RL_Addition_List  Additional-HS-Cell-Information-RL-Addition-List
        Unsigned 32-bit integer
    rnsap.Additional_HS_Cell_Information_RL_Param_Upd  Additional-HS-Cell-Information-RL-Param-Upd
        Unsigned 32-bit integer
    rnsap.Additional_HS_Cell_Information_RL_Param_Upd_ItemIEs  Additional-HS-Cell-Information-RL-Param-Upd-ItemIEs
        No value
    rnsap.Additional_HS_Cell_Information_RL_Reconf_Prep  Additional-HS-Cell-Information-RL-Reconf-Prep
        Unsigned 32-bit integer
    rnsap.Additional_HS_Cell_Information_RL_Reconf_Prep_ItemIEs  Additional-HS-Cell-Information-RL-Reconf-Prep-ItemIEs
        No value
    rnsap.Additional_HS_Cell_Information_RL_Reconf_Req  Additional-HS-Cell-Information-RL-Reconf-Req
        Unsigned 32-bit integer
    rnsap.Additional_HS_Cell_Information_RL_Reconf_Req_ItemIEs  Additional-HS-Cell-Information-RL-Reconf-Req-ItemIEs
        No value
    rnsap.Additional_HS_Cell_Information_RL_Setup_ItemIEs  Additional-HS-Cell-Information-RL-Setup-ItemIEs
        No value
    rnsap.Additional_HS_Cell_Information_RL_Setup_List  Additional-HS-Cell-Information-RL-Setup-List
        Unsigned 32-bit integer
    rnsap.Additional_HS_Cell_Information_Response_ItemIEs  Additional-HS-Cell-Information-Response-ItemIEs
        No value
    rnsap.Additional_HS_Cell_Information_Response_List  Additional-HS-Cell-Information-Response-List
        Unsigned 32-bit integer
    rnsap.Additional_HS_Cell_RL_Reconf_Response  Additional-HS-Cell-RL-Reconf-Response
        Unsigned 32-bit integer
    rnsap.Additional_HS_Cell_RL_Reconf_Response_ItemIEs  Additional-HS-Cell-RL-Reconf-Response-ItemIEs
        No value
    rnsap.AdjustmentPeriod  AdjustmentPeriod
        Unsigned 32-bit integer
    rnsap.AllowedQueuingTime  AllowedQueuingTime
        Unsigned 32-bit integer
    rnsap.Allowed_Rate_Information  Allowed-Rate-Information
        No value
    rnsap.AlternativeFormatReportingIndicator  AlternativeFormatReportingIndicator
        Unsigned 32-bit integer
    rnsap.Angle_Of_Arrival_Value_LCR  Angle-Of-Arrival-Value-LCR
        No value
    rnsap.AntennaColocationIndicator  AntennaColocationIndicator
        Unsigned 32-bit integer
    rnsap.BindingID  BindingID
        Byte array
    rnsap.CCTrCH_InformationItem_RL_FailureInd  CCTrCH-InformationItem-RL-FailureInd
        No value
    rnsap.CCTrCH_InformationItem_RL_RestoreInd  CCTrCH-InformationItem-RL-RestoreInd
        No value
    rnsap.CCTrCH_TPCAddItem_RL_ReconfPrepTDD  CCTrCH-TPCAddItem-RL-ReconfPrepTDD
        No value
    rnsap.CCTrCH_TPCItem_RL_SetupRqstTDD  CCTrCH-TPCItem-RL-SetupRqstTDD
        No value
    rnsap.CCTrCH_TPCModifyItem_RL_ReconfPrepTDD  CCTrCH-TPCModifyItem-RL-ReconfPrepTDD
        No value
    rnsap.CFN  CFN
        Unsigned 32-bit integer
    rnsap.CNOriginatedPage_PagingRqst  CNOriginatedPage-PagingRqst
        No value
    rnsap.CN_CS_DomainIdentifier  CN-CS-DomainIdentifier
        No value
    rnsap.CN_PS_DomainIdentifier  CN-PS-DomainIdentifier
        No value
    rnsap.CPC_Information  CPC-Information
        No value
    rnsap.CPC_InformationLCR  CPC-InformationLCR
        No value
    rnsap.C_ID  C-ID
        Unsigned 32-bit integer
    rnsap.C_RNTI  C-RNTI
        Unsigned 32-bit integer
    rnsap.Cause  Cause
        Unsigned 32-bit integer
    rnsap.CauseLevel_RL_AdditionFailureFDD  CauseLevel-RL-AdditionFailureFDD
        Unsigned 32-bit integer
    rnsap.CauseLevel_RL_AdditionFailureTDD  CauseLevel-RL-AdditionFailureTDD
        Unsigned 32-bit integer
    rnsap.CauseLevel_RL_ReconfFailure  CauseLevel-RL-ReconfFailure
        Unsigned 32-bit integer
    rnsap.CauseLevel_RL_SetupFailureFDD  CauseLevel-RL-SetupFailureFDD
        Unsigned 32-bit integer
    rnsap.CauseLevel_RL_SetupFailureTDD  CauseLevel-RL-SetupFailureTDD
        Unsigned 32-bit integer
    rnsap.CellCapabilityContainerExtension_FDD  CellCapabilityContainerExtension-FDD
        Byte array
    rnsap.CellCapabilityContainer_FDD  CellCapabilityContainer-FDD
        Byte array
    rnsap.CellCapabilityContainer_TDD  CellCapabilityContainer-TDD
        Byte array
    rnsap.CellCapabilityContainer_TDD768  CellCapabilityContainer-TDD768
        Byte array
    rnsap.CellCapabilityContainer_TDD_LCR  CellCapabilityContainer-TDD-LCR
        Byte array
    rnsap.CellPortionID  CellPortionID
        Unsigned 32-bit integer
    rnsap.CellPortionLCRID  CellPortionLCRID
        Unsigned 32-bit integer
    rnsap.Cell_Capacity_Class_Value  Cell-Capacity-Class-Value
        No value
    rnsap.ChipOffset  ChipOffset
        Unsigned 32-bit integer
    rnsap.ClosedLoopMode1_SupportIndicator  ClosedLoopMode1-SupportIndicator
        Unsigned 32-bit integer
    rnsap.CommonMeasurementAccuracy  CommonMeasurementAccuracy
        Unsigned 32-bit integer
    rnsap.CommonMeasurementFailureIndication  CommonMeasurementFailureIndication
        No value
    rnsap.CommonMeasurementInitiationFailure  CommonMeasurementInitiationFailure
        No value
    rnsap.CommonMeasurementInitiationRequest  CommonMeasurementInitiationRequest
        No value
    rnsap.CommonMeasurementInitiationResponse  CommonMeasurementInitiationResponse
        No value
    rnsap.CommonMeasurementObjectType_CM_Rprt  CommonMeasurementObjectType-CM-Rprt
        Unsigned 32-bit integer
    rnsap.CommonMeasurementObjectType_CM_Rqst  CommonMeasurementObjectType-CM-Rqst
        Unsigned 32-bit integer
    rnsap.CommonMeasurementObjectType_CM_Rsp  CommonMeasurementObjectType-CM-Rsp
        Unsigned 32-bit integer
    rnsap.CommonMeasurementReport  CommonMeasurementReport
        No value
    rnsap.CommonMeasurementTerminationRequest  CommonMeasurementTerminationRequest
        No value
    rnsap.CommonMeasurementType  CommonMeasurementType
        Unsigned 32-bit integer
    rnsap.CommonTransportChannelResourcesFailure  CommonTransportChannelResourcesFailure
        No value
    rnsap.CommonTransportChannelResourcesInitialisationNotRequired  CommonTransportChannelResourcesInitialisationNotRequired
        Unsigned 32-bit integer
    rnsap.CommonTransportChannelResourcesReleaseRequest  CommonTransportChannelResourcesReleaseRequest
        No value
    rnsap.CommonTransportChannelResourcesRequest  CommonTransportChannelResourcesRequest
        No value
    rnsap.CommonTransportChannelResourcesResponseFDD  CommonTransportChannelResourcesResponseFDD
        No value
    rnsap.CommonTransportChannelResourcesResponseTDD  CommonTransportChannelResourcesResponseTDD
        No value
    rnsap.Common_EDCH_MAC_d_Flow_Specific_InformationFDD  Common-EDCH-MAC-d-Flow-Specific-InformationFDD
        Unsigned 32-bit integer
    rnsap.Common_EDCH_MAC_d_Flow_Specific_InformationFDDItem  Common-EDCH-MAC-d-Flow-Specific-InformationFDDItem
        No value
    rnsap.Common_EDCH_MAC_d_Flow_Specific_InformationItemLCR  Common-EDCH-MAC-d-Flow-Specific-InformationItemLCR
        No value
    rnsap.Common_EDCH_MAC_d_Flow_Specific_InformationLCR  Common-EDCH-MAC-d-Flow-Specific-InformationLCR
        Unsigned 32-bit integer
    rnsap.Common_EDCH_Support_Indicator  Common-EDCH-Support-Indicator
        No value
    rnsap.Common_E_DCH_LogicalChannelInformationItem  Common-E-DCH-LogicalChannelInformationItem
        No value
    rnsap.CompressedModeCommand  CompressedModeCommand
        No value
    rnsap.CongestionCause  CongestionCause
        Unsigned 32-bit integer
    rnsap.ContextGroupInfoItem_Reset  ContextGroupInfoItem-Reset
        No value
    rnsap.ContextInfoItem_Reset  ContextInfoItem-Reset
        No value
    rnsap.ContinuousPacketConnectivity_DRX_InformationLCR  ContinuousPacketConnectivity-DRX-InformationLCR
        No value
    rnsap.ContinuousPacketConnectivity_DRX_Information_ResponseLCR  ContinuousPacketConnectivity-DRX-Information-ResponseLCR
        No value
    rnsap.Continuous_Packet_Connectivity_DTX_DRX_Information  Continuous-Packet-Connectivity-DTX-DRX-Information
        No value
    rnsap.Continuous_Packet_Connectivity_HS_SCCH_Less_Information  Continuous-Packet-Connectivity-HS-SCCH-Less-Information
        Unsigned 32-bit integer
    rnsap.Continuous_Packet_Connectivity_HS_SCCH_Less_InformationItem  Continuous-Packet-Connectivity-HS-SCCH-Less-InformationItem
        No value
    rnsap.Continuous_Packet_Connectivity_HS_SCCH_Less_Information_Response  Continuous-Packet-Connectivity-HS-SCCH-Less-Information-Response
        No value
    rnsap.Continuous_Packet_Connectivity_HS_SCCH_less_Deactivate_Indicator  Continuous-Packet-Connectivity-HS-SCCH-less-Deactivate-Indicator
        No value
    rnsap.ControlGAP  ControlGAP
        Unsigned 32-bit integer
    rnsap.Counting_Information  Counting-Information
        Unsigned 32-bit integer
    rnsap.Counting_Information_List  Counting-Information-List
        No value
    rnsap.CoverageIndicator  CoverageIndicator
        Unsigned 32-bit integer
    rnsap.CriticalityDiagnostics  CriticalityDiagnostics
        No value
    rnsap.CriticalityDiagnostics_IE_List_item  CriticalityDiagnostics-IE-List item
        No value
    rnsap.DCH_DeleteItem_RL_ReconfPrepFDD  DCH-DeleteItem-RL-ReconfPrepFDD
        No value
    rnsap.DCH_DeleteItem_RL_ReconfPrepTDD  DCH-DeleteItem-RL-ReconfPrepTDD
        No value
    rnsap.DCH_DeleteItem_RL_ReconfRqstFDD  DCH-DeleteItem-RL-ReconfRqstFDD
        No value
    rnsap.DCH_DeleteItem_RL_ReconfRqstTDD  DCH-DeleteItem-RL-ReconfRqstTDD
        No value
    rnsap.DCH_DeleteList_RL_ReconfPrepFDD  DCH-DeleteList-RL-ReconfPrepFDD
        Unsigned 32-bit integer
    rnsap.DCH_DeleteList_RL_ReconfPrepTDD  DCH-DeleteList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    rnsap.DCH_DeleteList_RL_ReconfRqstFDD  DCH-DeleteList-RL-ReconfRqstFDD
        Unsigned 32-bit integer
    rnsap.DCH_DeleteList_RL_ReconfRqstTDD  DCH-DeleteList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.DCH_FDD_Information  DCH-FDD-Information
        Unsigned 32-bit integer
    rnsap.DCH_FDD_InformationItem  DCH-FDD-InformationItem
        No value
    rnsap.DCH_Indicator_For_E_DCH_HSDPA_Operation  DCH-Indicator-For-E-DCH-HSDPA-Operation
        Unsigned 32-bit integer
    rnsap.DCH_InformationResponse  DCH-InformationResponse
        Unsigned 32-bit integer
    rnsap.DCH_InformationResponseItem  DCH-InformationResponseItem
        No value
    rnsap.DCH_MeasurementOccasion_Information  DCH-MeasurementOccasion-Information
        Unsigned 32-bit integer
    rnsap.DCH_MeasurementType_Indicator  DCH-MeasurementType-Indicator
        Byte array
    rnsap.DCH_Rate_InformationItem_RL_CongestInd  DCH-Rate-InformationItem-RL-CongestInd
        No value
    rnsap.DCH_Specific_FDD_Item  DCH-Specific-FDD-Item
        No value
    rnsap.DCH_Specific_TDD_Item  DCH-Specific-TDD-Item
        No value
    rnsap.DCH_TDD_Information  DCH-TDD-Information
        Unsigned 32-bit integer
    rnsap.DCH_TDD_InformationItem  DCH-TDD-InformationItem
        No value
    rnsap.DGANSS_Corrections_Req  DGANSS-Corrections-Req
        No value
    rnsap.DGNSS_ValidityPeriod  DGNSS-ValidityPeriod
        No value
    rnsap.DL_CCTrCHInformationItem_RL_AdditionRspTDD  DL-CCTrCHInformationItem-RL-AdditionRspTDD
        No value
    rnsap.DL_CCTrCHInformationItem_RL_AdditionRspTDD768  DL-CCTrCHInformationItem-RL-AdditionRspTDD768
        No value
    rnsap.DL_CCTrCHInformationItem_RL_SetupRspTDD  DL-CCTrCHInformationItem-RL-SetupRspTDD
        No value
    rnsap.DL_CCTrCHInformationItem_RL_SetupRspTDD768  DL-CCTrCHInformationItem-RL-SetupRspTDD768
        No value
    rnsap.DL_CCTrCHInformationListIE_RL_AdditionRspTDD  DL-CCTrCHInformationListIE-RL-AdditionRspTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCHInformationListIE_RL_AdditionRspTDD768  DL-CCTrCHInformationListIE-RL-AdditionRspTDD768
        Unsigned 32-bit integer
    rnsap.DL_CCTrCHInformationListIE_RL_ReconfReadyTDD  DL-CCTrCHInformationListIE-RL-ReconfReadyTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCHInformationListIE_RL_SetupRspTDD  DL-CCTrCHInformationListIE-RL-SetupRspTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCHInformationListIE_RL_SetupRspTDD768  DL-CCTrCHInformationListIE-RL-SetupRspTDD768
        Unsigned 32-bit integer
    rnsap.DL_CCTrCH_InformationAddItem_RL_ReconfPrepTDD  DL-CCTrCH-InformationAddItem-RL-ReconfPrepTDD
        No value
    rnsap.DL_CCTrCH_InformationAddList_RL_ReconfPrepTDD  DL-CCTrCH-InformationAddList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCH_InformationDeleteItem_RL_ReconfPrepTDD  DL-CCTrCH-InformationDeleteItem-RL-ReconfPrepTDD
        No value
    rnsap.DL_CCTrCH_InformationDeleteItem_RL_ReconfRqstTDD  DL-CCTrCH-InformationDeleteItem-RL-ReconfRqstTDD
        No value
    rnsap.DL_CCTrCH_InformationDeleteList_RL_ReconfPrepTDD  DL-CCTrCH-InformationDeleteList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCH_InformationDeleteList_RL_ReconfRqstTDD  DL-CCTrCH-InformationDeleteList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCH_InformationItem_PhyChReconfRqstTDD  DL-CCTrCH-InformationItem-PhyChReconfRqstTDD
        No value
    rnsap.DL_CCTrCH_InformationItem_RL_AdditionRqstTDD  DL-CCTrCH-InformationItem-RL-AdditionRqstTDD
        No value
    rnsap.DL_CCTrCH_InformationItem_RL_ReconfReadyTDD  DL-CCTrCH-InformationItem-RL-ReconfReadyTDD
        No value
    rnsap.DL_CCTrCH_InformationItem_RL_ReconfRspTDD  DL-CCTrCH-InformationItem-RL-ReconfRspTDD
        No value
    rnsap.DL_CCTrCH_InformationItem_RL_SetupRqstTDD  DL-CCTrCH-InformationItem-RL-SetupRqstTDD
        No value
    rnsap.DL_CCTrCH_InformationListIE_PhyChReconfRqstTDD  DL-CCTrCH-InformationListIE-PhyChReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCH_InformationList_RL_AdditionRqstTDD  DL-CCTrCH-InformationList-RL-AdditionRqstTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCH_InformationList_RL_ReconfRspTDD  DL-CCTrCH-InformationList-RL-ReconfRspTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCH_InformationList_RL_SetupRqstTDD  DL-CCTrCH-InformationList-RL-SetupRqstTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCH_InformationModifyItem_RL_ReconfPrepTDD  DL-CCTrCH-InformationModifyItem-RL-ReconfPrepTDD
        No value
    rnsap.DL_CCTrCH_InformationModifyItem_RL_ReconfRqstTDD  DL-CCTrCH-InformationModifyItem-RL-ReconfRqstTDD
        No value
    rnsap.DL_CCTrCH_InformationModifyList_RL_ReconfPrepTDD  DL-CCTrCH-InformationModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCH_InformationModifyList_RL_ReconfRqstTDD  DL-CCTrCH-InformationModifyList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCH_LCR_InformationItem_RL_AdditionRspTDD  DL-CCTrCH-LCR-InformationItem-RL-AdditionRspTDD
        No value
    rnsap.DL_CCTrCH_LCR_InformationItem_RL_SetupRspTDD  DL-CCTrCH-LCR-InformationItem-RL-SetupRspTDD
        No value
    rnsap.DL_CCTrCH_LCR_InformationListIE_RL_AdditionRspTDD  DL-CCTrCH-LCR-InformationListIE-RL-AdditionRspTDD
        Unsigned 32-bit integer
    rnsap.DL_CCTrCH_LCR_InformationListIE_RL_SetupRspTDD  DL-CCTrCH-LCR-InformationListIE-RL-SetupRspTDD
        Unsigned 32-bit integer
    rnsap.DL_DPCH_InformationAddListIE_RL_ReconfReadyTDD  DL-DPCH-InformationAddListIE-RL-ReconfReadyTDD
        No value
    rnsap.DL_DPCH_InformationAddList_RL_ReconfReadyTDD768  DL-DPCH-InformationAddList-RL-ReconfReadyTDD768
        No value
    rnsap.DL_DPCH_InformationDeleteItem768_RL_ReconfReadyTDD  DL-DPCH-InformationDeleteItem768-RL-ReconfReadyTDD
        No value
    rnsap.DL_DPCH_InformationDeleteItem_RL_ReconfReadyTDD  DL-DPCH-InformationDeleteItem-RL-ReconfReadyTDD
        No value
    rnsap.DL_DPCH_InformationDeleteList768_RL_ReconfReadyTDD  DL-DPCH-InformationDeleteList768-RL-ReconfReadyTDD
        Unsigned 32-bit integer
    rnsap.DL_DPCH_InformationDeleteListIE_RL_ReconfReadyTDD  DL-DPCH-InformationDeleteListIE-RL-ReconfReadyTDD
        Unsigned 32-bit integer
    rnsap.DL_DPCH_InformationItem_PhyChReconfRqstTDD  DL-DPCH-InformationItem-PhyChReconfRqstTDD
        No value
    rnsap.DL_DPCH_InformationItem_RL_AdditionRspTDD  DL-DPCH-InformationItem-RL-AdditionRspTDD
        No value
    rnsap.DL_DPCH_InformationItem_RL_AdditionRspTDD768  DL-DPCH-InformationItem-RL-AdditionRspTDD768
        No value
    rnsap.DL_DPCH_InformationItem_RL_SetupRspTDD  DL-DPCH-InformationItem-RL-SetupRspTDD
        No value
    rnsap.DL_DPCH_InformationItem_RL_SetupRspTDD768  DL-DPCH-InformationItem-RL-SetupRspTDD768
        No value
    rnsap.DL_DPCH_InformationModifyItem_LCR_RL_ReconfRspTDD  DL-DPCH-InformationModifyItem-LCR-RL-ReconfRspTDD
        No value
    rnsap.DL_DPCH_InformationModifyListIE_RL_ReconfReadyTDD  DL-DPCH-InformationModifyListIE-RL-ReconfReadyTDD
        No value
    rnsap.DL_DPCH_Information_RL_ReconfPrepFDD  DL-DPCH-Information-RL-ReconfPrepFDD
        No value
    rnsap.DL_DPCH_Information_RL_ReconfRqstFDD  DL-DPCH-Information-RL-ReconfRqstFDD
        No value
    rnsap.DL_DPCH_Information_RL_SetupRqstFDD  DL-DPCH-Information-RL-SetupRqstFDD
        No value
    rnsap.DL_DPCH_LCR_InformationAddList_RL_ReconfReadyTDD  DL-DPCH-LCR-InformationAddList-RL-ReconfReadyTDD
        No value
    rnsap.DL_DPCH_LCR_InformationItem_RL_AdditionRspTDD  DL-DPCH-LCR-InformationItem-RL-AdditionRspTDD
        No value
    rnsap.DL_DPCH_LCR_InformationItem_RL_SetupRspTDD  DL-DPCH-LCR-InformationItem-RL-SetupRspTDD
        No value
    rnsap.DL_DPCH_Power_Information_RL_ReconfPrepFDD  DL-DPCH-Power-Information-RL-ReconfPrepFDD
        No value
    rnsap.DL_DPCH_TimingAdjustment  DL-DPCH-TimingAdjustment
        Unsigned 32-bit integer
    rnsap.DL_Physical_Channel_Information_RL_SetupRqstTDD  DL-Physical-Channel-Information-RL-SetupRqstTDD
        No value
    rnsap.DL_Power  DL-Power
        Signed 32-bit integer
    rnsap.DL_PowerBalancing_ActivationIndicator  DL-PowerBalancing-ActivationIndicator
        Unsigned 32-bit integer
    rnsap.DL_PowerBalancing_Information  DL-PowerBalancing-Information
        No value
    rnsap.DL_PowerBalancing_UpdatedIndicator  DL-PowerBalancing-UpdatedIndicator
        Unsigned 32-bit integer
    rnsap.DL_PowerControlRequest  DL-PowerControlRequest
        No value
    rnsap.DL_PowerTimeslotControlRequest  DL-PowerTimeslotControlRequest
        No value
    rnsap.DL_RLC_PDU_Size_Format  DL-RLC-PDU-Size-Format
        Unsigned 32-bit integer
    rnsap.DL_ReferencePowerInformation  DL-ReferencePowerInformation
        No value
    rnsap.DL_ReferencePowerInformationItem  DL-ReferencePowerInformationItem
        No value
    rnsap.DL_ReferencePowerInformationList_DL_PC_Rqst  DL-ReferencePowerInformationList-DL-PC-Rqst
        Unsigned 32-bit integer
    rnsap.DL_ReferencePowerInformation_DL_PC_Rqst  DL-ReferencePowerInformation-DL-PC-Rqst
        No value
    rnsap.DL_TimeSlot_ISCP_Info  DL-TimeSlot-ISCP-Info
        Unsigned 32-bit integer
    rnsap.DL_TimeSlot_ISCP_InfoItem  DL-TimeSlot-ISCP-InfoItem
        No value
    rnsap.DL_TimeSlot_ISCP_LCR_InfoItem  DL-TimeSlot-ISCP-LCR-InfoItem
        No value
    rnsap.DL_TimeSlot_ISCP_LCR_Information  DL-TimeSlot-ISCP-LCR-Information
        Unsigned 32-bit integer
    rnsap.DL_TimeslotLCR_InformationItem  DL-TimeslotLCR-InformationItem
        No value
    rnsap.DL_TimeslotLCR_InformationItem_PhyChReconfRqstTDD  DL-TimeslotLCR-InformationItem-PhyChReconfRqstTDD
        No value
    rnsap.DL_TimeslotLCR_InformationList_PhyChReconfRqstTDD  DL-TimeslotLCR-InformationList-PhyChReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.DL_TimeslotLCR_InformationModifyItem_RL_ReconfReadyTDD  DL-TimeslotLCR-InformationModifyItem-RL-ReconfReadyTDD
        No value
    rnsap.DL_TimeslotLCR_InformationModifyList_RL_ReconfReadyTDD  DL-TimeslotLCR-InformationModifyList-RL-ReconfReadyTDD
        Unsigned 32-bit integer
    rnsap.DL_Timeslot_InformationItem  DL-Timeslot-InformationItem
        No value
    rnsap.DL_Timeslot_InformationItem768  DL-Timeslot-InformationItem768
        No value
    rnsap.DL_Timeslot_InformationItem_PhyChReconfRqstTDD  DL-Timeslot-InformationItem-PhyChReconfRqstTDD
        No value
    rnsap.DL_Timeslot_InformationItem_PhyChReconfRqstTDD768  DL-Timeslot-InformationItem-PhyChReconfRqstTDD768
        No value
    rnsap.DL_Timeslot_InformationList_PhyChReconfRqstTDD768  DL-Timeslot-InformationList-PhyChReconfRqstTDD768
        Unsigned 32-bit integer
    rnsap.DL_Timeslot_InformationModifyItem_RL_ReconfReadyTDD  DL-Timeslot-InformationModifyItem-RL-ReconfReadyTDD
        No value
    rnsap.DL_Timeslot_InformationModifyItem_RL_ReconfReadyTDD768  DL-Timeslot-InformationModifyItem-RL-ReconfReadyTDD768
        No value
    rnsap.DL_Timeslot_InformationModifyList_RL_ReconfReadyTDD768  DL-Timeslot-InformationModifyList-RL-ReconfReadyTDD768
        Unsigned 32-bit integer
    rnsap.DL_Timeslot_LCR_InformationModifyItem_RL_ReconfRspTDD  DL-Timeslot-LCR-InformationModifyItem-RL-ReconfRspTDD
        No value
    rnsap.DPCH_ID768  DPCH-ID768
        Unsigned 32-bit integer
    rnsap.DPC_Mode  DPC-Mode
        Unsigned 32-bit integer
    rnsap.DPC_Mode_Change_SupportIndicator  DPC-Mode-Change-SupportIndicator
        Unsigned 32-bit integer
    rnsap.DRXCycleLengthCoefficient  DRXCycleLengthCoefficient
        Unsigned 32-bit integer
    rnsap.DSCHInformationItem_RL_AdditionRspTDD  DSCHInformationItem-RL-AdditionRspTDD
        No value
    rnsap.DSCHInformationItem_RL_SetupRspTDD  DSCHInformationItem-RL-SetupRspTDD
        No value
    rnsap.DSCHToBeAddedOrModifiedItem_RL_ReconfReadyTDD  DSCHToBeAddedOrModifiedItem-RL-ReconfReadyTDD
        No value
    rnsap.DSCHToBeAddedOrModifiedList_RL_ReconfReadyTDD  DSCHToBeAddedOrModifiedList-RL-ReconfReadyTDD
        Unsigned 32-bit integer
    rnsap.DSCH_DeleteItem_RL_ReconfPrepTDD  DSCH-DeleteItem-RL-ReconfPrepTDD
        No value
    rnsap.DSCH_DeleteList_RL_ReconfPrepTDD  DSCH-DeleteList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    rnsap.DSCH_FlowControlItem  DSCH-FlowControlItem
        No value
    rnsap.DSCH_InformationListIE_RL_AdditionRspTDD  DSCH-InformationListIE-RL-AdditionRspTDD
        Unsigned 32-bit integer
    rnsap.DSCH_InformationListIEs_RL_SetupRspTDD  DSCH-InformationListIEs-RL-SetupRspTDD
        Unsigned 32-bit integer
    rnsap.DSCH_InitialWindowSize  DSCH-InitialWindowSize
        Unsigned 32-bit integer
    rnsap.DSCH_LCR_InformationItem_RL_AdditionRspTDD  DSCH-LCR-InformationItem-RL-AdditionRspTDD
        No value
    rnsap.DSCH_LCR_InformationItem_RL_SetupRspTDD  DSCH-LCR-InformationItem-RL-SetupRspTDD
        No value
    rnsap.DSCH_LCR_InformationListIEs_RL_AdditionRspTDD  DSCH-LCR-InformationListIEs-RL-AdditionRspTDD
        Unsigned 32-bit integer
    rnsap.DSCH_LCR_InformationListIEs_RL_SetupRspTDD  DSCH-LCR-InformationListIEs-RL-SetupRspTDD
        Unsigned 32-bit integer
    rnsap.DSCH_ModifyItem_RL_ReconfPrepTDD  DSCH-ModifyItem-RL-ReconfPrepTDD
        No value
    rnsap.DSCH_ModifyList_RL_ReconfPrepTDD  DSCH-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    rnsap.DSCH_RNTI  DSCH-RNTI
        Unsigned 32-bit integer
    rnsap.DSCH_TDD_Information  DSCH-TDD-Information
        Unsigned 32-bit integer
    rnsap.DSCH_TDD_InformationItem  DSCH-TDD-InformationItem
        No value
    rnsap.D_RNTI  D-RNTI
        Unsigned 32-bit integer
    rnsap.D_RNTI_ReleaseIndication  D-RNTI-ReleaseIndication
        Unsigned 32-bit integer
    rnsap.DchMeasurementOccasionInformation_Item  DchMeasurementOccasionInformation-Item
        No value
    rnsap.DedicatedMeasurementFailureIndication  DedicatedMeasurementFailureIndication
        No value
    rnsap.DedicatedMeasurementInitiationFailure  DedicatedMeasurementInitiationFailure
        No value
    rnsap.DedicatedMeasurementInitiationRequest  DedicatedMeasurementInitiationRequest
        No value
    rnsap.DedicatedMeasurementInitiationResponse  DedicatedMeasurementInitiationResponse
        No value
    rnsap.DedicatedMeasurementObjectType_DM_Fail  DedicatedMeasurementObjectType-DM-Fail
        Unsigned 32-bit integer
    rnsap.DedicatedMeasurementObjectType_DM_Fail_Ind  DedicatedMeasurementObjectType-DM-Fail-Ind
        Unsigned 32-bit integer
    rnsap.DedicatedMeasurementObjectType_DM_Rprt  DedicatedMeasurementObjectType-DM-Rprt
        Unsigned 32-bit integer
    rnsap.DedicatedMeasurementObjectType_DM_Rqst  DedicatedMeasurementObjectType-DM-Rqst
        Unsigned 32-bit integer
    rnsap.DedicatedMeasurementObjectType_DM_Rsp  DedicatedMeasurementObjectType-DM-Rsp
        Unsigned 32-bit integer
    rnsap.DedicatedMeasurementReport  DedicatedMeasurementReport
        No value
    rnsap.DedicatedMeasurementTerminationRequest  DedicatedMeasurementTerminationRequest
        No value
    rnsap.DedicatedMeasurementType  DedicatedMeasurementType
        Unsigned 32-bit integer
    rnsap.DelayedActivation  DelayedActivation
        Unsigned 32-bit integer
    rnsap.DelayedActivationInformationList_RL_ActivationCmdFDD  DelayedActivationInformationList-RL-ActivationCmdFDD
        Unsigned 32-bit integer
    rnsap.DelayedActivationInformationList_RL_ActivationCmdTDD  DelayedActivationInformationList-RL-ActivationCmdTDD
        Unsigned 32-bit integer
    rnsap.DelayedActivationInformation_RL_ActivationCmdFDD  DelayedActivationInformation-RL-ActivationCmdFDD
        No value
    rnsap.DelayedActivationInformation_RL_ActivationCmdTDD  DelayedActivationInformation-RL-ActivationCmdTDD
        No value
    rnsap.DirectInformationTransfer  DirectInformationTransfer
        No value
    rnsap.DiversityMode  DiversityMode
        Unsigned 32-bit integer
    rnsap.DownlinkSignallingTransferRequest  DownlinkSignallingTransferRequest
        No value
    rnsap.EDCH_Additional_RL_Specific_Information_Response_ItemIEs  EDCH-Additional-RL-Specific-Information-Response-ItemIEs
        No value
    rnsap.EDCH_Additional_RL_Specific_Modified_Information_Response_ItemIEs  EDCH-Additional-RL-Specific-Modified-Information-Response-ItemIEs
        No value
    rnsap.EDCH_FDD_DL_ControlChannelInformation  EDCH-FDD-DL-ControlChannelInformation
        No value
    rnsap.EDCH_FDD_Information  EDCH-FDD-Information
        No value
    rnsap.EDCH_FDD_InformationResponse  EDCH-FDD-InformationResponse
        No value
    rnsap.EDCH_FDD_Information_To_Modify  EDCH-FDD-Information-To-Modify
        No value
    rnsap.EDCH_MACdFlow_Specific_InfoItem  EDCH-MACdFlow-Specific-InfoItem
        No value
    rnsap.EDCH_MACdFlow_Specific_InfoToModifyItem  EDCH-MACdFlow-Specific-InfoToModifyItem
        No value
    rnsap.EDCH_MACdFlow_Specific_InformationResponseItem  EDCH-MACdFlow-Specific-InformationResponseItem
        No value
    rnsap.EDCH_MACdFlows_Information  EDCH-MACdFlows-Information
        No value
    rnsap.EDCH_MACdFlows_To_Delete  EDCH-MACdFlows-To-Delete
        Unsigned 32-bit integer
    rnsap.EDCH_MACdFlows_To_Delete_Item  EDCH-MACdFlows-To-Delete-Item
        No value
    rnsap.EDCH_MacdFlowSpecificInformationItem_RL_CongestInd  EDCH-MacdFlowSpecificInformationItem-RL-CongestInd
        No value
    rnsap.EDCH_MacdFlowSpecificInformationItem_RL_PreemptRequiredInd  EDCH-MacdFlowSpecificInformationItem-RL-PreemptRequiredInd
        No value
    rnsap.EDCH_MacdFlowSpecificInformationList_RL_CongestInd  EDCH-MacdFlowSpecificInformationList-RL-CongestInd
        Unsigned 32-bit integer
    rnsap.EDCH_MacdFlowSpecificInformationList_RL_PreemptRequiredInd  EDCH-MacdFlowSpecificInformationList-RL-PreemptRequiredInd
        Unsigned 32-bit integer
    rnsap.EDCH_RL_Indication  EDCH-RL-Indication
        Unsigned 32-bit integer
    rnsap.EDCH_Serving_RL  EDCH-Serving-RL
        Unsigned 32-bit integer
    rnsap.EDPCH_Information_FDD  EDPCH-Information-FDD
        No value
    rnsap.EDPCH_Information_RLAdditionReq_FDD  EDPCH-Information-RLAdditionReq-FDD
        No value
    rnsap.EDPCH_Information_RLReconfRequest_FDD  EDPCH-Information-RLReconfRequest-FDD
        No value
    rnsap.E_AGCH_Specific_InformationResp_Item768TDD  E-AGCH-Specific-InformationResp-Item768TDD
        No value
    rnsap.E_AGCH_Specific_InformationResp_ItemTDD  E-AGCH-Specific-InformationResp-ItemTDD
        No value
    rnsap.E_AGCH_Specific_InformationResp_Item_LCR_TDD  E-AGCH-Specific-InformationResp-Item-LCR-TDD
        No value
    rnsap.E_AGCH_Table_Choice  E-AGCH-Table-Choice
        Unsigned 32-bit integer
    rnsap.E_AGCH_UE_Inactivity_Monitor_Threshold  E-AGCH-UE-Inactivity-Monitor-Threshold
        Unsigned 32-bit integer
    rnsap.E_DCH_768_Information  E-DCH-768-Information
        No value
    rnsap.E_DCH_768_Information_Reconfig  E-DCH-768-Information-Reconfig
        No value
    rnsap.E_DCH_768_Information_Response  E-DCH-768-Information-Response
        No value
    rnsap.E_DCH_DL_Control_Channel_Change_Information  E-DCH-DL-Control-Channel-Change-Information
        Unsigned 32-bit integer
    rnsap.E_DCH_DL_Control_Channel_Change_Information_Item  E-DCH-DL-Control-Channel-Change-Information-Item
        No value
    rnsap.E_DCH_DL_Control_Channel_Grant_Information  E-DCH-DL-Control-Channel-Grant-Information
        Unsigned 32-bit integer
    rnsap.E_DCH_DL_Control_Channel_Grant_Information_Item  E-DCH-DL-Control-Channel-Grant-Information-Item
        No value
    rnsap.E_DCH_FDD_Update_Information  E-DCH-FDD-Update-Information
        No value
    rnsap.E_DCH_Information  E-DCH-Information
        No value
    rnsap.E_DCH_Information_Reconfig  E-DCH-Information-Reconfig
        No value
    rnsap.E_DCH_Information_Response  E-DCH-Information-Response
        No value
    rnsap.E_DCH_LCR_Information  E-DCH-LCR-Information
        No value
    rnsap.E_DCH_LCR_Information_Reconfig  E-DCH-LCR-Information-Reconfig
        No value
    rnsap.E_DCH_LCR_Information_Response  E-DCH-LCR-Information-Response
        No value
    rnsap.E_DCH_LogicalChannelInformationItem  E-DCH-LogicalChannelInformationItem
        No value
    rnsap.E_DCH_LogicalChannelToDeleteItem  E-DCH-LogicalChannelToDeleteItem
        No value
    rnsap.E_DCH_LogicalChannelToModifyItem  E-DCH-LogicalChannelToModifyItem
        No value
    rnsap.E_DCH_MACdFlow_InfoTDDItem  E-DCH-MACdFlow-InfoTDDItem
        No value
    rnsap.E_DCH_MACdFlow_ModifyTDDItem  E-DCH-MACdFlow-ModifyTDDItem
        No value
    rnsap.E_DCH_MACdFlow_Retransmission_Timer_LCR  E-DCH-MACdFlow-Retransmission-Timer-LCR
        Unsigned 32-bit integer
    rnsap.E_DCH_MACdFlow_Specific_UpdateInformation_Item  E-DCH-MACdFlow-Specific-UpdateInformation-Item
        No value
    rnsap.E_DCH_MACdPDUSizeFormat  E-DCH-MACdPDUSizeFormat
        Unsigned 32-bit integer
    rnsap.E_DCH_MACdPDU_SizeListItem  E-DCH-MACdPDU-SizeListItem
        No value
    rnsap.E_DCH_Minimum_Set_E_TFCIValidityIndicator  E-DCH-Minimum-Set-E-TFCIValidityIndicator
        Unsigned 32-bit integer
    rnsap.E_DCH_PowerOffset_for_SchedulingInfo  E-DCH-PowerOffset-for-SchedulingInfo
        Unsigned 32-bit integer
    rnsap.E_DCH_RL_InformationList_Rsp_Item  E-DCH-RL-InformationList-Rsp-Item
        No value
    rnsap.E_DCH_RefBeta_Item  E-DCH-RefBeta-Item
        No value
    rnsap.E_DCH_Semi_PersistentScheduling_Information_LCR  E-DCH-Semi-PersistentScheduling-Information-LCR
        No value
    rnsap.E_DCH_Semi_PersistentScheduling_Information_ResponseLCR  E-DCH-Semi-PersistentScheduling-Information-ResponseLCR
        No value
    rnsap.E_DCH_Serving_cell_change_informationResponse  E-DCH-Serving-cell-change-informationResponse
        No value
    rnsap.E_DCH_TDD_MACdFlow_Specific_InformationResp_Item  E-DCH-TDD-MACdFlow-Specific-InformationResp-Item
        No value
    rnsap.E_DPDCH_PowerInterpolation  E-DPDCH-PowerInterpolation
        Boolean
    rnsap.E_HICH_Scheduled_InformationResp_Item_LCR_TDD  E-HICH-Scheduled-InformationResp-Item-LCR-TDD
        No value
    rnsap.E_RGCH_E_HICH_ChannelisationCodeValidityIndicator  E-RGCH-E-HICH-ChannelisationCodeValidityIndicator
        Unsigned 32-bit integer
    rnsap.E_RNTI  E-RNTI
        Unsigned 32-bit integer
    rnsap.E_Serving_Grant_Value  E-Serving-Grant-Value
        Unsigned 32-bit integer
    rnsap.E_TFCI_Boost_Information  E-TFCI-Boost-Information
        No value
    rnsap.EnhancedHSServingCC_Abort  EnhancedHSServingCC-Abort
        Unsigned 32-bit integer
    rnsap.EnhancedRelocationCancel  EnhancedRelocationCancel
        No value
    rnsap.EnhancedRelocationFailure  EnhancedRelocationFailure
        No value
    rnsap.EnhancedRelocationRelease  EnhancedRelocationRelease
        No value
    rnsap.EnhancedRelocationRequest  EnhancedRelocationRequest
        No value
    rnsap.EnhancedRelocationResponse  EnhancedRelocationResponse
        No value
    rnsap.EnhancedRelocationSignallingTransfer  EnhancedRelocationSignallingTransfer
        No value
    rnsap.Enhanced_FACH_Information_ResponseFDD  Enhanced-FACH-Information-ResponseFDD
        No value
    rnsap.Enhanced_FACH_Information_ResponseLCR  Enhanced-FACH-Information-ResponseLCR
        No value
    rnsap.Enhanced_FACH_Support_Indicator  Enhanced-FACH-Support-Indicator
        No value
    rnsap.Enhanced_PCH_Capability  Enhanced-PCH-Capability
        Unsigned 32-bit integer
    rnsap.Enhanced_PrimaryCPICH_EcNo  Enhanced-PrimaryCPICH-EcNo
        Unsigned 32-bit integer
    rnsap.ErrorIndication  ErrorIndication
        No value
    rnsap.Ext_Max_Bits_MACe_PDU_non_scheduled  Ext-Max-Bits-MACe-PDU-non-scheduled
        Unsigned 32-bit integer
    rnsap.Ext_Reference_E_TFCI_PO  Ext-Reference-E-TFCI-PO
        Unsigned 32-bit integer
    rnsap.ExtendedGSMCellIndividualOffset  ExtendedGSMCellIndividualOffset
        Unsigned 32-bit integer
    rnsap.ExtendedPropagationDelay  ExtendedPropagationDelay
        Unsigned 32-bit integer
    rnsap.Extended_E_DCH_LCRTDD_PhysicalLayerCategory  Extended-E-DCH-LCRTDD-PhysicalLayerCategory
        Unsigned 32-bit integer
    rnsap.Extended_RNC_ID  Extended-RNC-ID
        Unsigned 32-bit integer
    rnsap.Extended_Round_Trip_Time_Value  Extended-Round-Trip-Time-Value
        Unsigned 32-bit integer
    rnsap.FACH_FlowControlInformation  FACH-FlowControlInformation
        Unsigned 32-bit integer
    rnsap.FACH_FlowControlInformationItem  FACH-FlowControlInformationItem
        No value
    rnsap.FACH_InfoForUESelectedS_CCPCH_CTCH_ResourceRspFDD  FACH-InfoForUESelectedS-CCPCH-CTCH-ResourceRspFDD
        No value
    rnsap.FACH_InfoForUESelectedS_CCPCH_CTCH_ResourceRspTDD  FACH-InfoForUESelectedS-CCPCH-CTCH-ResourceRspTDD
        No value
    rnsap.FACH_InformationItem  FACH-InformationItem
        No value
    rnsap.FDD_DCHs_to_Modify  FDD-DCHs-to-Modify
        Unsigned 32-bit integer
    rnsap.FDD_DCHs_to_ModifyItem  FDD-DCHs-to-ModifyItem
        No value
    rnsap.FDD_DCHs_to_ModifySpecificItem  FDD-DCHs-to-ModifySpecificItem
        No value
    rnsap.FDD_DL_CodeInformation  FDD-DL-CodeInformation
        Unsigned 32-bit integer
    rnsap.FDD_DL_CodeInformationItem  FDD-DL-CodeInformationItem
        No value
    rnsap.FNReportingIndicator  FNReportingIndicator
        Unsigned 32-bit integer
    rnsap.F_DPCH_Information_RL_ReconfPrepFDD  F-DPCH-Information-RL-ReconfPrepFDD
        No value
    rnsap.F_DPCH_Information_RL_SetupRqstFDD  F-DPCH-Information-RL-SetupRqstFDD
        No value
    rnsap.F_DPCH_SlotFormat  F-DPCH-SlotFormat
        Unsigned 32-bit integer
    rnsap.F_DPCH_SlotFormatSupportRequest  F-DPCH-SlotFormatSupportRequest
        No value
    rnsap.Fast_Reconfiguration_Mode  Fast-Reconfiguration-Mode
        Unsigned 32-bit integer
    rnsap.Fast_Reconfiguration_Permission  Fast-Reconfiguration-Permission
        Unsigned 32-bit integer
    rnsap.FrameOffset  FrameOffset
        Unsigned 32-bit integer
    rnsap.FrequencyBandIndicator  FrequencyBandIndicator
        Unsigned 32-bit integer
    rnsap.GANSS_AddIonoModelReq  GANSS-AddIonoModelReq
        Byte array
    rnsap.GANSS_AddNavigationModelsReq  GANSS-AddNavigationModelsReq
        Boolean
    rnsap.GANSS_AddUTCModelsReq  GANSS-AddUTCModelsReq
        Boolean
    rnsap.GANSS_Additional_Ionospheric_Model  GANSS-Additional-Ionospheric-Model
        No value
    rnsap.GANSS_Additional_Navigation_Models  GANSS-Additional-Navigation-Models
        No value
    rnsap.GANSS_Additional_Time_Models  GANSS-Additional-Time-Models
        Unsigned 32-bit integer
    rnsap.GANSS_Additional_UTC_Models  GANSS-Additional-UTC-Models
        Unsigned 32-bit integer
    rnsap.GANSS_AuxInfoGANSS_ID1_item  GANSS-AuxInfoGANSS-ID1 item
        No value
    rnsap.GANSS_AuxInfoGANSS_ID3_item  GANSS-AuxInfoGANSS-ID3 item
        No value
    rnsap.GANSS_AuxInfoReq  GANSS-AuxInfoReq
        Boolean
    rnsap.GANSS_Auxiliary_Information  GANSS-Auxiliary-Information
        Unsigned 32-bit integer
    rnsap.GANSS_Clock_Model_item  GANSS-Clock-Model item
        No value
    rnsap.GANSS_Common_Data  GANSS-Common-Data
        No value
    rnsap.GANSS_DataBitAssistanceItem  GANSS-DataBitAssistanceItem
        No value
    rnsap.GANSS_DataBitAssistanceSgnItem  GANSS-DataBitAssistanceSgnItem
        No value
    rnsap.GANSS_EarthOrientParaReq  GANSS-EarthOrientParaReq
        Boolean
    rnsap.GANSS_Earth_Orientation_Parameters  GANSS-Earth-Orientation-Parameters
        No value
    rnsap.GANSS_GenericDataInfoReqItem  GANSS-GenericDataInfoReqItem
        No value
    rnsap.GANSS_Generic_Data  GANSS-Generic-Data
        Unsigned 32-bit integer
    rnsap.GANSS_Generic_DataItem  GANSS-Generic-DataItem
        No value
    rnsap.GANSS_ID  GANSS-ID
        Unsigned 32-bit integer
    rnsap.GANSS_Information  GANSS-Information
        No value
    rnsap.GANSS_Real_Time_Integrity_item  GANSS-Real-Time-Integrity item
        No value
    rnsap.GANSS_SAT_Info_Almanac_GLOkpList_item  GANSS-SAT-Info-Almanac-GLOkpList item
        No value
    rnsap.GANSS_SAT_Info_Almanac_MIDIkpList_item  GANSS-SAT-Info-Almanac-MIDIkpList item
        No value
    rnsap.GANSS_SAT_Info_Almanac_NAVkpList_item  GANSS-SAT-Info-Almanac-NAVkpList item
        No value
    rnsap.GANSS_SAT_Info_Almanac_REDkpList_item  GANSS-SAT-Info-Almanac-REDkpList item
        No value
    rnsap.GANSS_SAT_Info_Almanac_SBASecefList_item  GANSS-SAT-Info-Almanac-SBASecefList item
        No value
    rnsap.GANSS_SBAS_ID  GANSS-SBAS-ID
        Unsigned 32-bit integer
    rnsap.GANSS_Sat_Info_Nav_item  GANSS-Sat-Info-Nav item
        No value
    rnsap.GANSS_SatelliteInformationKP_item  GANSS-SatelliteInformationKP item
        No value
    rnsap.GANSS_Time_ID  GANSS-Time-ID
        Unsigned 32-bit integer
    rnsap.GANSS_Time_Model  GANSS-Time-Model
        No value
    rnsap.GANSS_alm_ecefSBASAlmanac  GANSS-alm-ecefSBASAlmanac
        No value
    rnsap.GANSS_alm_keplerianGLONASS  GANSS-alm-keplerianGLONASS
        No value
    rnsap.GANSS_alm_keplerianMidiAlmanac  GANSS-alm-keplerianMidiAlmanac
        No value
    rnsap.GANSS_alm_keplerianNAVAlmanac  GANSS-alm-keplerianNAVAlmanac
        No value
    rnsap.GANSS_alm_keplerianReducedAlmanac  GANSS-alm-keplerianReducedAlmanac
        No value
    rnsap.GA_Cell  GA-Cell
        Unsigned 32-bit integer
    rnsap.GA_CellAdditionalShapes  GA-CellAdditionalShapes
        Unsigned 32-bit integer
    rnsap.GA_Cell_item  GA-Cell item
        No value
    rnsap.GERANUplinkSignallingTransferIndication  GERANUplinkSignallingTransferIndication
        No value
    rnsap.GERAN_Cell_Capability  GERAN-Cell-Capability
        Byte array
    rnsap.GERAN_Classmark  GERAN-Classmark
        Byte array
    rnsap.GERAN_SystemInfo_item  GERAN-SystemInfo item
        No value
    rnsap.GPSInformation_item  GPSInformation item
        No value
    rnsap.GPS_NavigationModel_and_TimeRecovery_item  GPS-NavigationModel-and-TimeRecovery item
        No value
    rnsap.GSM_Cell_InfEx_Rqst  GSM-Cell-InfEx-Rqst
        No value
    rnsap.Ganss_Sat_Info_AddNavList_item  Ganss-Sat-Info-AddNavList item
        No value
    rnsap.Guaranteed_Rate_Information  Guaranteed-Rate-Information
        No value
    rnsap.HARQ_MemoryPartitioningInfoExtForMIMO  HARQ-MemoryPartitioningInfoExtForMIMO
        Unsigned 32-bit integer
    rnsap.HARQ_MemoryPartitioningItem  HARQ-MemoryPartitioningItem
        No value
    rnsap.HARQ_Preamble_Mode  HARQ-Preamble-Mode
        Unsigned 32-bit integer
    rnsap.HARQ_Preamble_Mode_Activation_Indicator  HARQ-Preamble-Mode-Activation-Indicator
        Unsigned 32-bit integer
    rnsap.HCS_Prio  HCS-Prio
        Unsigned 32-bit integer
    rnsap.HSDSCHMacdFlowSpecificInformationItem_RL_PreemptRequiredInd  HSDSCHMacdFlowSpecificInformationItem-RL-PreemptRequiredInd
        No value
    rnsap.HSDSCHMacdFlowSpecificInformationList_RL_PreemptRequiredInd  HSDSCHMacdFlowSpecificInformationList-RL-PreemptRequiredInd
        Unsigned 32-bit integer
    rnsap.HSDSCH_Configured_Indicator  HSDSCH-Configured-Indicator
        Unsigned 32-bit integer
    rnsap.HSDSCH_FDD_Information  HSDSCH-FDD-Information
        No value
    rnsap.HSDSCH_FDD_Information_Response  HSDSCH-FDD-Information-Response
        No value
    rnsap.HSDSCH_FDD_Update_Information  HSDSCH-FDD-Update-Information
        No value
    rnsap.HSDSCH_Information_to_Modify  HSDSCH-Information-to-Modify
        No value
    rnsap.HSDSCH_Information_to_Modify_Unsynchronised  HSDSCH-Information-to-Modify-Unsynchronised
        No value
    rnsap.HSDSCH_Initial_Capacity_AllocationItem  HSDSCH-Initial-Capacity-AllocationItem
        No value
    rnsap.HSDSCH_MACdFlow_Specific_InfoItem  HSDSCH-MACdFlow-Specific-InfoItem
        No value
    rnsap.HSDSCH_MACdFlow_Specific_InfoItem_Response  HSDSCH-MACdFlow-Specific-InfoItem-Response
        No value
    rnsap.HSDSCH_MACdFlow_Specific_InfoItem_to_Modify  HSDSCH-MACdFlow-Specific-InfoItem-to-Modify
        No value
    rnsap.HSDSCH_MACdFlows_Information  HSDSCH-MACdFlows-Information
        No value
    rnsap.HSDSCH_MACdFlows_to_Delete  HSDSCH-MACdFlows-to-Delete
        Unsigned 32-bit integer
    rnsap.HSDSCH_MACdFlows_to_Delete_Item  HSDSCH-MACdFlows-to-Delete-Item
        No value
    rnsap.HSDSCH_MACdPDUSizeFormat  HSDSCH-MACdPDUSizeFormat
        Unsigned 32-bit integer
    rnsap.HSDSCH_Physical_Layer_Category  HSDSCH-Physical-Layer-Category
        Unsigned 32-bit integer
    rnsap.HSDSCH_PreconfigurationInfo  HSDSCH-PreconfigurationInfo
        No value
    rnsap.HSDSCH_PreconfigurationSetup  HSDSCH-PreconfigurationSetup
        No value
    rnsap.HSDSCH_RNTI  HSDSCH-RNTI
        Unsigned 32-bit integer
    rnsap.HSDSCH_TBSizeTableIndicator  HSDSCH-TBSizeTableIndicator
        Unsigned 32-bit integer
    rnsap.HSDSCH_TDD_Information  HSDSCH-TDD-Information
        No value
    rnsap.HSDSCH_TDD_Information_Response  HSDSCH-TDD-Information-Response
        No value
    rnsap.HSDSCH_TDD_Update_Information  HSDSCH-TDD-Update-Information
        No value
    rnsap.HSPDSCH_TDD_Specific_InfoItem_Response  HSPDSCH-TDD-Specific-InfoItem-Response
        No value
    rnsap.HSPDSCH_TDD_Specific_InfoItem_Response768  HSPDSCH-TDD-Specific-InfoItem-Response768
        No value
    rnsap.HSPDSCH_TDD_Specific_InfoItem_Response_LCR  HSPDSCH-TDD-Specific-InfoItem-Response-LCR
        No value
    rnsap.HSPDSCH_TDD_Specific_InfoList_Response768  HSPDSCH-TDD-Specific-InfoList-Response768
        Unsigned 32-bit integer
    rnsap.HSPDSCH_Timeslot_InformationItemLCR_PhyChReconfRqstTDD  HSPDSCH-Timeslot-InformationItemLCR-PhyChReconfRqstTDD
        No value
    rnsap.HSPDSCH_Timeslot_InformationItem_PhyChReconfRqstTDD  HSPDSCH-Timeslot-InformationItem-PhyChReconfRqstTDD
        No value
    rnsap.HSPDSCH_Timeslot_InformationItem_PhyChReconfRqstTDD768  HSPDSCH-Timeslot-InformationItem-PhyChReconfRqstTDD768
        No value
    rnsap.HSPDSCH_Timeslot_InformationListLCR_PhyChReconfRqstTDD  HSPDSCH-Timeslot-InformationListLCR-PhyChReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.HSPDSCH_Timeslot_InformationList_PhyChReconfRqstTDD  HSPDSCH-Timeslot-InformationList-PhyChReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.HSPDSCH_Timeslot_InformationList_PhyChReconfRqstTDD768  HSPDSCH-Timeslot-InformationList-PhyChReconfRqstTDD768
        Unsigned 32-bit integer
    rnsap.HSSCCH_FDD_Specific_InfoItem_Response  HSSCCH-FDD-Specific-InfoItem-Response
        No value
    rnsap.HSSCCH_TDD_Specific_InfoItem_Response  HSSCCH-TDD-Specific-InfoItem-Response
        No value
    rnsap.HSSCCH_TDD_Specific_InfoItem_Response768  HSSCCH-TDD-Specific-InfoItem-Response768
        No value
    rnsap.HSSCCH_TDD_Specific_InfoItem_Response_LCR  HSSCCH-TDD-Specific-InfoItem-Response-LCR
        No value
    rnsap.HSSCCH_TDD_Specific_InfoList_Response768  HSSCCH-TDD-Specific-InfoList-Response768
        Unsigned 32-bit integer
    rnsap.HSSICH_Info_DM_Rqst  HSSICH-Info-DM-Rqst
        Unsigned 32-bit integer
    rnsap.HSSICH_Info_DM_Rqst_Extension  HSSICH-Info-DM-Rqst-Extension
        Unsigned 32-bit integer
    rnsap.HSSICH_ReferenceSignal_InformationLCR  HSSICH-ReferenceSignal-InformationLCR
        No value
    rnsap.HS_DSCH_Semi_PersistentScheduling_Information_LCR  HS-DSCH-Semi-PersistentScheduling-Information-LCR
        No value
    rnsap.HS_DSCH_Semi_PersistentScheduling_Information_ResponseLCR  HS-DSCH-Semi-PersistentScheduling-Information-ResponseLCR
        No value
    rnsap.HS_DSCH_serving_cell_change_information  HS-DSCH-serving-cell-change-information
        No value
    rnsap.HS_DSCH_serving_cell_change_informationResponse  HS-DSCH-serving-cell-change-informationResponse
        No value
    rnsap.HS_PDSCH_Code_Change_Grant  HS-PDSCH-Code-Change-Grant
        Unsigned 32-bit integer
    rnsap.HS_PDSCH_Code_Change_Indicator  HS-PDSCH-Code-Change-Indicator
        Unsigned 32-bit integer
    rnsap.HS_SCCH_PreconfiguredCodesItem  HS-SCCH-PreconfiguredCodesItem
        No value
    rnsap.HS_SICH_ID  HS-SICH-ID
        Unsigned 32-bit integer
    rnsap.HS_SICH_ID_Extension  HS-SICH-ID-Extension
        Unsigned 32-bit integer
    rnsap.HS_SICH_InformationItem_for_HS_DSCH_SPS  HS-SICH-InformationItem-for-HS-DSCH-SPS
        No value
    rnsap.HS_SICH_Reception_Quality_Measurement_Value  HS-SICH-Reception-Quality-Measurement-Value
        Unsigned 32-bit integer
    rnsap.HS_SICH_Reception_Quality_Value  HS-SICH-Reception-Quality-Value
        No value
    rnsap.IMSI  IMSI
        Byte array
    rnsap.IPDL_TDD_ParametersLCR  IPDL-TDD-ParametersLCR
        No value
    rnsap.IdleIntervalInformation  IdleIntervalInformation
        No value
    rnsap.InformationExchangeFailureIndication  InformationExchangeFailureIndication
        No value
    rnsap.InformationExchangeID  InformationExchangeID
        Unsigned 32-bit integer
    rnsap.InformationExchangeInitiationFailure  InformationExchangeInitiationFailure
        No value
    rnsap.InformationExchangeInitiationRequest  InformationExchangeInitiationRequest
        No value
    rnsap.InformationExchangeInitiationResponse  InformationExchangeInitiationResponse
        No value
    rnsap.InformationExchangeObjectType_InfEx_Rprt  InformationExchangeObjectType-InfEx-Rprt
        Unsigned 32-bit integer
    rnsap.InformationExchangeObjectType_InfEx_Rqst  InformationExchangeObjectType-InfEx-Rqst
        Unsigned 32-bit integer
    rnsap.InformationExchangeObjectType_InfEx_Rsp  InformationExchangeObjectType-InfEx-Rsp
        Unsigned 32-bit integer
    rnsap.InformationExchangeTerminationRequest  InformationExchangeTerminationRequest
        No value
    rnsap.InformationReport  InformationReport
        No value
    rnsap.InformationReportCharacteristics  InformationReportCharacteristics
        Unsigned 32-bit integer
    rnsap.InformationType  InformationType
        No value
    rnsap.Initial_DL_DPCH_TimingAdjustment_Allowed  Initial-DL-DPCH-TimingAdjustment-Allowed
        Unsigned 32-bit integer
    rnsap.InnerLoopDLPCStatus  InnerLoopDLPCStatus
        Unsigned 32-bit integer
    rnsap.Inter_Frequency_Cell  Inter-Frequency-Cell
        No value
    rnsap.Inter_Frequency_Cell_Information  Inter-Frequency-Cell-Information
        No value
    rnsap.Inter_Frequency_Cell_List  Inter-Frequency-Cell-List
        Unsigned 32-bit integer
    rnsap.Inter_Frequency_Cell_SIB11_or_SIB12  Inter-Frequency-Cell-SIB11-or-SIB12
        No value
    rnsap.Inter_Frequency_Cells_Information_SIB11_Per_Indication  Inter-Frequency-Cells-Information-SIB11-Per-Indication
        No value
    rnsap.Inter_Frequency_Cells_Information_SIB12_Per_Indication  Inter-Frequency-Cells-Information-SIB12-Per-Indication
        No value
    rnsap.InterfacesToTraceItem  InterfacesToTraceItem
        No value
    rnsap.IurDeactivateTrace  IurDeactivateTrace
        No value
    rnsap.IurInvokeTrace  IurInvokeTrace
        No value
    rnsap.L3_Information  L3-Information
        Byte array
    rnsap.LCRTDD_HSDSCH_Physical_Layer_Category  LCRTDD-HSDSCH-Physical-Layer-Category
        Unsigned 32-bit integer
    rnsap.LCRTDD_Uplink_Physical_Channel_Capability  LCRTDD-Uplink-Physical-Channel-Capability
        No value
    rnsap.ListOfInterfacesToTrace  ListOfInterfacesToTrace
        Unsigned 32-bit integer
    rnsap.Load_Value  Load-Value
        Unsigned 32-bit integer
    rnsap.Load_Value_IncrDecrThres  Load-Value-IncrDecrThres
        Unsigned 32-bit integer
    rnsap.MAC_PDU_SizeExtended  MAC-PDU-SizeExtended
        Unsigned 32-bit integer
    rnsap.MAC_c_sh_SDU_Length  MAC-c-sh-SDU-Length
        Unsigned 32-bit integer
    rnsap.MACdPDU_Size_IndexItem  MACdPDU-Size-IndexItem
        No value
    rnsap.MACdPDU_Size_IndexItem_to_Modify  MACdPDU-Size-IndexItem-to-Modify
        No value
    rnsap.MACes_Maximum_Bitrate_LCR  MACes-Maximum-Bitrate-LCR
        Unsigned 32-bit integer
    rnsap.MAChs_ResetIndicator  MAChs-ResetIndicator
        Unsigned 32-bit integer
    rnsap.MBMSAttachCommand  MBMSAttachCommand
        No value
    rnsap.MBMSChannelTypeCellList  MBMSChannelTypeCellList
        No value
    rnsap.MBMSDetachCommand  MBMSDetachCommand
        No value
    rnsap.MBMS_Bearer_ServiceItemFDD  MBMS-Bearer-ServiceItemFDD
        No value
    rnsap.MBMS_Bearer_ServiceItemFDD_PFL  MBMS-Bearer-ServiceItemFDD-PFL
        No value
    rnsap.MBMS_Bearer_ServiceItemIEs_InfEx_Rsp  MBMS-Bearer-ServiceItemIEs-InfEx-Rsp
        No value
    rnsap.MBMS_Bearer_ServiceItemTDD  MBMS-Bearer-ServiceItemTDD
        No value
    rnsap.MBMS_Bearer_ServiceItemTDD_PFL  MBMS-Bearer-ServiceItemTDD-PFL
        No value
    rnsap.MBMS_Bearer_Service_Full_Address  MBMS-Bearer-Service-Full-Address
        No value
    rnsap.MBMS_Bearer_Service_List  MBMS-Bearer-Service-List
        Unsigned 32-bit integer
    rnsap.MBMS_Bearer_Service_List_InfEx_Rsp  MBMS-Bearer-Service-List-InfEx-Rsp
        Unsigned 32-bit integer
    rnsap.MBMS_Bearer_Service_List_Item_InfEx_Rprt  MBMS-Bearer-Service-List-Item-InfEx-Rprt
        No value
    rnsap.MBMS_Bearer_Service_List_RLCinfo  MBMS-Bearer-Service-List-RLCinfo
        No value
    rnsap.MBMS_Bearer_Service_in_MBMS_Cell_InfEx_Rprt  MBMS-Bearer-Service-in-MBMS-Cell-InfEx-Rprt
        Unsigned 32-bit integer
    rnsap.MBMS_Bearer_Service_in_MBMS_Cell_InfEx_Rqst  MBMS-Bearer-Service-in-MBMS-Cell-InfEx-Rqst
        Unsigned 32-bit integer
    rnsap.MBMS_Bearer_Service_in_MBMS_Cell_InfEx_Rsp  MBMS-Bearer-Service-in-MBMS-Cell-InfEx-Rsp
        Unsigned 32-bit integer
    rnsap.MBMS_Bearer_Service_in_MBMS_Cell_Item_InfEx_Rprt  MBMS-Bearer-Service-in-MBMS-Cell-Item-InfEx-Rprt
        No value
    rnsap.MBMS_Bearer_Service_in_MBMS_Cell_Item_InfEx_Rqst  MBMS-Bearer-Service-in-MBMS-Cell-Item-InfEx-Rqst
        No value
    rnsap.MBMS_Bearer_Service_in_MBMS_Cell_Item_InfEx_Rsp  MBMS-Bearer-Service-in-MBMS-Cell-Item-InfEx-Rsp
        No value
    rnsap.MBMS_Cell_InfEx_Rprt  MBMS-Cell-InfEx-Rprt
        Unsigned 32-bit integer
    rnsap.MBMS_Cell_InfEx_Rqst  MBMS-Cell-InfEx-Rqst
        Unsigned 32-bit integer
    rnsap.MBMS_Cell_InfEx_Rsp  MBMS-Cell-InfEx-Rsp
        Unsigned 32-bit integer
    rnsap.MBMS_Cell_Item_InfEx_Rprt  MBMS-Cell-Item-InfEx-Rprt
        No value
    rnsap.MBMS_Cell_Item_InfEx_Rsp  MBMS-Cell-Item-InfEx-Rsp
        No value
    rnsap.MBMS_Neighbouring_Cell_Information  MBMS-Neighbouring-Cell-Information
        No value
    rnsap.MBMS_RLC_Sequence_Number_Information  MBMS-RLC-Sequence-Number-Information
        Unsigned 32-bit integer
    rnsap.MBMS_RLC_Sequence_Number_Information_List  MBMS-RLC-Sequence-Number-Information-List
        No value
    rnsap.MBSFNMCCHInformation  MBSFNMCCHInformation
        No value
    rnsap.MBSFN_Cluster_Identity  MBSFN-Cluster-Identity
        Unsigned 32-bit integer
    rnsap.MBSFN_Scheduling_Transmission_Time_Interval_Info_List  MBSFN-Scheduling-Transmission-Time-Interval-Info-List
        Unsigned 32-bit integer
    rnsap.MBSFN_Scheduling_Transmission_Time_Interval_Item  MBSFN-Scheduling-Transmission-Time-Interval-Item
        No value
    rnsap.MCCH_Configuration_Info  MCCH-Configuration-Info
        No value
    rnsap.MCCH_Message_List  MCCH-Message-List
        Unsigned 32-bit integer
    rnsap.MIMO_ActivationIndicator  MIMO-ActivationIndicator
        No value
    rnsap.MIMO_InformationResponse  MIMO-InformationResponse
        No value
    rnsap.MIMO_Mode_Indicator  MIMO-Mode-Indicator
        Unsigned 32-bit integer
    rnsap.MIMO_N_M_Ratio  MIMO-N-M-Ratio
        Unsigned 32-bit integer
    rnsap.MIMO_ReferenceSignal_InformationListLCR  MIMO-ReferenceSignal-InformationListLCR
        Unsigned 32-bit integer
    rnsap.MIMO_SFMode_For_HSPDSCHDualStream  MIMO-SFMode-For-HSPDSCHDualStream
        Unsigned 32-bit integer
    rnsap.MaxAdjustmentStep  MaxAdjustmentStep
        Unsigned 32-bit integer
    rnsap.MaxNrDLPhysicalchannels768  MaxNrDLPhysicalchannels768
        Unsigned 32-bit integer
    rnsap.MaxNrDLPhysicalchannelsTS  MaxNrDLPhysicalchannelsTS
        Unsigned 32-bit integer
    rnsap.MaxNrDLPhysicalchannelsTS768  MaxNrDLPhysicalchannelsTS768
        Unsigned 32-bit integer
    rnsap.MaxNr_Retransmissions_EDCH  MaxNr-Retransmissions-EDCH
        Unsigned 32-bit integer
    rnsap.Max_UE_DTX_Cycle  Max-UE-DTX-Cycle
        Unsigned 32-bit integer
    rnsap.MeasurementFilterCoefficient  MeasurementFilterCoefficient
        Unsigned 32-bit integer
    rnsap.MeasurementID  MeasurementID
        Unsigned 32-bit integer
    rnsap.MeasurementRecoveryBehavior  MeasurementRecoveryBehavior
        No value
    rnsap.MeasurementRecoveryReportingIndicator  MeasurementRecoveryReportingIndicator
        No value
    rnsap.MeasurementRecoverySupportIndicator  MeasurementRecoverySupportIndicator
        No value
    rnsap.MessageStructure  MessageStructure
        Unsigned 32-bit integer
    rnsap.MessageStructure_item  MessageStructure item
        No value
    rnsap.MinimumReducedE_DPDCH_GainFactor  MinimumReducedE-DPDCH-GainFactor
        Unsigned 32-bit integer
    rnsap.MinimumSpreadingFactor768  MinimumSpreadingFactor768
        Unsigned 32-bit integer
    rnsap.ModifyPriorityQueue  ModifyPriorityQueue
        Unsigned 32-bit integer
    rnsap.Multicarrier_Number  Multicarrier-Number
        Unsigned 32-bit integer
    rnsap.MulticellEDCH_Information  MulticellEDCH-Information
        No value
    rnsap.MulticellEDCH_RL_SpecificInformationItemIEs  MulticellEDCH-RL-SpecificInformationItemIEs
        No value
    rnsap.MultipleFreq_HSPDSCH_InformationItem_ResponseTDDLCR  MultipleFreq-HSPDSCH-InformationItem-ResponseTDDLCR
        No value
    rnsap.MultipleFreq_HSPDSCH_InformationList_ResponseTDDLCR  MultipleFreq-HSPDSCH-InformationList-ResponseTDDLCR
        Unsigned 32-bit integer
    rnsap.Multiple_DedicatedMeasurementValueItem_LCR_TDD_DM_Rsp  Multiple-DedicatedMeasurementValueItem-LCR-TDD-DM-Rsp
        No value
    rnsap.Multiple_DedicatedMeasurementValueItem_TDD768_DM_Rsp  Multiple-DedicatedMeasurementValueItem-TDD768-DM-Rsp
        No value
    rnsap.Multiple_DedicatedMeasurementValueItem_TDD_DM_Rsp  Multiple-DedicatedMeasurementValueItem-TDD-DM-Rsp
        No value
    rnsap.Multiple_DedicatedMeasurementValueList_LCR_TDD_DM_Rsp  Multiple-DedicatedMeasurementValueList-LCR-TDD-DM-Rsp
        Unsigned 32-bit integer
    rnsap.Multiple_DedicatedMeasurementValueList_TDD768_DM_Rsp  Multiple-DedicatedMeasurementValueList-TDD768-DM-Rsp
        Unsigned 32-bit integer
    rnsap.Multiple_DedicatedMeasurementValueList_TDD_DM_Rsp  Multiple-DedicatedMeasurementValueList-TDD-DM-Rsp
        Unsigned 32-bit integer
    rnsap.Multiple_HSSICHMeasurementValueItem_TDD_DM_Rsp  Multiple-HSSICHMeasurementValueItem-TDD-DM-Rsp
        No value
    rnsap.Multiple_HSSICHMeasurementValueList_TDD_DM_Rsp  Multiple-HSSICHMeasurementValueList-TDD-DM-Rsp
        Unsigned 32-bit integer
    rnsap.Multiple_PLMN_List  Multiple-PLMN-List
        No value
    rnsap.Multiple_RL_InformationResponse_RL_ReconfReadyTDD  Multiple-RL-InformationResponse-RL-ReconfReadyTDD
        Unsigned 32-bit integer
    rnsap.Multiple_RL_InformationResponse_RL_ReconfRspTDD  Multiple-RL-InformationResponse-RL-ReconfRspTDD
        Unsigned 32-bit integer
    rnsap.Multiple_RL_ReconfigurationRequestTDD_RL_Information  Multiple-RL-ReconfigurationRequestTDD-RL-Information
        Unsigned 32-bit integer
    rnsap.NACC_Related_Data  NACC-Related-Data
        No value
    rnsap.NRTLoadInformationValue  NRTLoadInformationValue
        No value
    rnsap.NRT_Load_Information_Value  NRT-Load-Information-Value
        Unsigned 32-bit integer
    rnsap.NRT_Load_Information_Value_IncrDecrThres  NRT-Load-Information-Value-IncrDecrThres
        Unsigned 32-bit integer
    rnsap.NULL  NULL
        No value
    rnsap.NeedforIdleInterval  NeedforIdleInterval
        Unsigned 32-bit integer
    rnsap.NeighbouringCellMeasurementInfo_item  NeighbouringCellMeasurementInfo item
        Unsigned 32-bit integer
    rnsap.NeighbouringTDDCellMeasurementInformation768  NeighbouringTDDCellMeasurementInformation768
        No value
    rnsap.NeighbouringTDDCellMeasurementInformationLCR  NeighbouringTDDCellMeasurementInformationLCR
        No value
    rnsap.Neighbouring_E_UTRA_CellInformation  Neighbouring-E-UTRA-CellInformation
        Unsigned 32-bit integer
    rnsap.Neighbouring_E_UTRA_CellInformationItem  Neighbouring-E-UTRA-CellInformationItem
        No value
    rnsap.Neighbouring_FDD_CellInformationItem  Neighbouring-FDD-CellInformationItem
        No value
    rnsap.Neighbouring_GSM_CellInformationIEs  Neighbouring-GSM-CellInformationIEs
        Unsigned 32-bit integer
    rnsap.Neighbouring_GSM_CellInformationItem  Neighbouring-GSM-CellInformationItem
        No value
    rnsap.Neighbouring_LCR_TDD_CellInformation  Neighbouring-LCR-TDD-CellInformation
        Unsigned 32-bit integer
    rnsap.Neighbouring_LCR_TDD_CellInformationItem  Neighbouring-LCR-TDD-CellInformationItem
        No value
    rnsap.Neighbouring_TDD_CellInformationItem  Neighbouring-TDD-CellInformationItem
        No value
    rnsap.Neighbouring_UMTS_CellInformationItem  Neighbouring-UMTS-CellInformationItem
        No value
    rnsap.NoOfTargetCellHS_SCCH_Order  NoOfTargetCellHS-SCCH-Order
        Unsigned 32-bit integer
    rnsap.NonCellSpecificTxDiversity  NonCellSpecificTxDiversity
        Unsigned 32-bit integer
    rnsap.Number_Of_Supported_Carriers  Number-Of-Supported-Carriers
        Unsigned 32-bit integer
    rnsap.OnModification  OnModification
        No value
    rnsap.Out_of_Sychronization_Window  Out-of-Sychronization-Window
        Unsigned 32-bit integer
    rnsap.PCH_InformationItem  PCH-InformationItem
        No value
    rnsap.PLCCHinformation  PLCCHinformation
        No value
    rnsap.PLMN_Identity  PLMN-Identity
        Byte array
    rnsap.PagingArea_PagingRqst  PagingArea-PagingRqst
        Unsigned 32-bit integer
    rnsap.PagingRequest  PagingRequest
        No value
    rnsap.PartialReportingIndicator  PartialReportingIndicator
        Unsigned 32-bit integer
    rnsap.Permanent_NAS_UE_Identity  Permanent-NAS-UE-Identity
        Unsigned 32-bit integer
    rnsap.Phase_Reference_Update_Indicator  Phase-Reference-Update-Indicator
        Unsigned 32-bit integer
    rnsap.PhysicalChannelReconfigurationCommand  PhysicalChannelReconfigurationCommand
        No value
    rnsap.PhysicalChannelReconfigurationFailure  PhysicalChannelReconfigurationFailure
        No value
    rnsap.PhysicalChannelReconfigurationRequestFDD  PhysicalChannelReconfigurationRequestFDD
        No value
    rnsap.PhysicalChannelReconfigurationRequestTDD  PhysicalChannelReconfigurationRequestTDD
        No value
    rnsap.Possible_Secondary_Serving_Cell  Possible-Secondary-Serving-Cell
        No value
    rnsap.PowerAdjustmentType  PowerAdjustmentType
        Unsigned 32-bit integer
    rnsap.PowerOffsetForSecondaryCPICHforMIMO  PowerOffsetForSecondaryCPICHforMIMO
        Signed 32-bit integer
    rnsap.PowerOffsetForSecondaryCPICHforMIMORequestIndicator  PowerOffsetForSecondaryCPICHforMIMORequestIndicator
        No value
    rnsap.PrimaryCCPCH_RSCP  PrimaryCCPCH-RSCP
        Unsigned 32-bit integer
    rnsap.PrimaryCCPCH_RSCP_Delta  PrimaryCCPCH-RSCP-Delta
        Signed 32-bit integer
    rnsap.Primary_CPICH_Usage_For_Channel_Estimation  Primary-CPICH-Usage-For-Channel-Estimation
        Unsigned 32-bit integer
    rnsap.PriorityQueue_InfoItem  PriorityQueue-InfoItem
        No value
    rnsap.PriorityQueue_InfoItem_EnhancedFACH_PCH  PriorityQueue-InfoItem-EnhancedFACH-PCH
        No value
    rnsap.PriorityQueue_InfoItem_to_Modify_Unsynchronised  PriorityQueue-InfoItem-to-Modify-Unsynchronised
        No value
    rnsap.PrivateIE_Field  PrivateIE-Field
        No value
    rnsap.PrivateMessage  PrivateMessage
        No value
    rnsap.PropagationDelay  PropagationDelay
        Unsigned 32-bit integer
    rnsap.ProtocolExtensionField  ProtocolExtensionField
        No value
    rnsap.ProtocolIE_Field  ProtocolIE-Field
        No value
    rnsap.ProtocolIE_Single_Container  ProtocolIE-Single-Container
        No value
    rnsap.ProvidedInformation  ProvidedInformation
        No value
    rnsap.RANAP_EnhancedRelocationInformationRequest  RANAP-EnhancedRelocationInformationRequest
        Byte array
    rnsap.RANAP_EnhancedRelocationInformationResponse  RANAP-EnhancedRelocationInformationResponse
        Byte array
    rnsap.RANAP_RelocationInformation  RANAP-RelocationInformation
        Byte array
    rnsap.RB_Identity  RB-Identity
        Unsigned 32-bit integer
    rnsap.RLC_Sequence_Number  RLC-Sequence-Number
        Unsigned 32-bit integer
    rnsap.RL_ID  RL-ID
        Unsigned 32-bit integer
    rnsap.RL_InformationIE_RL_ReconfPrepTDD  RL-InformationIE-RL-ReconfPrepTDD
        No value
    rnsap.RL_InformationItem_DM_Rprt  RL-InformationItem-DM-Rprt
        No value
    rnsap.RL_InformationItem_DM_Rqst  RL-InformationItem-DM-Rqst
        No value
    rnsap.RL_InformationItem_DM_Rsp  RL-InformationItem-DM-Rsp
        No value
    rnsap.RL_InformationItem_RL_CongestInd  RL-InformationItem-RL-CongestInd
        No value
    rnsap.RL_InformationItem_RL_PreemptRequiredInd  RL-InformationItem-RL-PreemptRequiredInd
        No value
    rnsap.RL_InformationItem_RL_SetupRqstFDD  RL-InformationItem-RL-SetupRqstFDD
        No value
    rnsap.RL_InformationList_RL_AdditionRqstFDD  RL-InformationList-RL-AdditionRqstFDD
        Unsigned 32-bit integer
    rnsap.RL_InformationList_RL_CongestInd  RL-InformationList-RL-CongestInd
        Unsigned 32-bit integer
    rnsap.RL_InformationList_RL_DeletionRqst  RL-InformationList-RL-DeletionRqst
        Unsigned 32-bit integer
    rnsap.RL_InformationList_RL_PreemptRequiredInd  RL-InformationList-RL-PreemptRequiredInd
        Unsigned 32-bit integer
    rnsap.RL_InformationList_RL_ReconfPrepFDD  RL-InformationList-RL-ReconfPrepFDD
        Unsigned 32-bit integer
    rnsap.RL_InformationList_RL_SetupRqstFDD  RL-InformationList-RL-SetupRqstFDD
        Unsigned 32-bit integer
    rnsap.RL_InformationResponseItem_RL_AdditionRspFDD  RL-InformationResponseItem-RL-AdditionRspFDD
        No value
    rnsap.RL_InformationResponseItem_RL_ReconfReadyFDD  RL-InformationResponseItem-RL-ReconfReadyFDD
        No value
    rnsap.RL_InformationResponseItem_RL_ReconfRspFDD  RL-InformationResponseItem-RL-ReconfRspFDD
        No value
    rnsap.RL_InformationResponseItem_RL_SetupRspFDD  RL-InformationResponseItem-RL-SetupRspFDD
        No value
    rnsap.RL_InformationResponseList_RL_AdditionRspFDD  RL-InformationResponseList-RL-AdditionRspFDD
        Unsigned 32-bit integer
    rnsap.RL_InformationResponseList_RL_ReconfReadyFDD  RL-InformationResponseList-RL-ReconfReadyFDD
        Unsigned 32-bit integer
    rnsap.RL_InformationResponseList_RL_ReconfRspFDD  RL-InformationResponseList-RL-ReconfRspFDD
        Unsigned 32-bit integer
    rnsap.RL_InformationResponseList_RL_SetupRspFDD  RL-InformationResponseList-RL-SetupRspFDD
        Unsigned 32-bit integer
    rnsap.RL_InformationResponse_RL_AdditionRspTDD  RL-InformationResponse-RL-AdditionRspTDD
        No value
    rnsap.RL_InformationResponse_RL_AdditionRspTDD768  RL-InformationResponse-RL-AdditionRspTDD768
        No value
    rnsap.RL_InformationResponse_RL_ReconfReadyTDD  RL-InformationResponse-RL-ReconfReadyTDD
        No value
    rnsap.RL_InformationResponse_RL_ReconfRspTDD  RL-InformationResponse-RL-ReconfRspTDD
        No value
    rnsap.RL_InformationResponse_RL_SetupRspTDD  RL-InformationResponse-RL-SetupRspTDD
        No value
    rnsap.RL_InformationResponse_RL_SetupRspTDD768  RL-InformationResponse-RL-SetupRspTDD768
        No value
    rnsap.RL_Information_PhyChReconfRqstFDD  RL-Information-PhyChReconfRqstFDD
        No value
    rnsap.RL_Information_PhyChReconfRqstTDD  RL-Information-PhyChReconfRqstTDD
        No value
    rnsap.RL_Information_RL_AdditionRqstFDD  RL-Information-RL-AdditionRqstFDD
        No value
    rnsap.RL_Information_RL_AdditionRqstTDD  RL-Information-RL-AdditionRqstTDD
        No value
    rnsap.RL_Information_RL_DeletionRqst  RL-Information-RL-DeletionRqst
        No value
    rnsap.RL_Information_RL_FailureInd  RL-Information-RL-FailureInd
        No value
    rnsap.RL_Information_RL_ReconfPrepFDD  RL-Information-RL-ReconfPrepFDD
        No value
    rnsap.RL_Information_RL_ReconfPrepTDD  RL-Information-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    rnsap.RL_Information_RL_RestoreInd  RL-Information-RL-RestoreInd
        No value
    rnsap.RL_Information_RL_SetupRqstTDD  RL-Information-RL-SetupRqstTDD
        No value
    rnsap.RL_LCR_InformationResponse_RL_AdditionRspTDD  RL-LCR-InformationResponse-RL-AdditionRspTDD
        No value
    rnsap.RL_LCR_InformationResponse_RL_SetupRspTDD  RL-LCR-InformationResponse-RL-SetupRspTDD
        No value
    rnsap.RL_ParameterUpdateIndicationFDD_RL_InformationList  RL-ParameterUpdateIndicationFDD-RL-InformationList
        Unsigned 32-bit integer
    rnsap.RL_ParameterUpdateIndicationFDD_RL_Information_Item  RL-ParameterUpdateIndicationFDD-RL-Information-Item
        No value
    rnsap.RL_ReconfigurationFailure_RL_ReconfFail  RL-ReconfigurationFailure-RL-ReconfFail
        No value
    rnsap.RL_ReconfigurationRequestFDD_RL_InformationList  RL-ReconfigurationRequestFDD-RL-InformationList
        Unsigned 32-bit integer
    rnsap.RL_ReconfigurationRequestFDD_RL_Information_IEs  RL-ReconfigurationRequestFDD-RL-Information-IEs
        No value
    rnsap.RL_ReconfigurationRequestTDD_RL_Information  RL-ReconfigurationRequestTDD-RL-Information
        No value
    rnsap.RL_Set_ID  RL-Set-ID
        Unsigned 32-bit integer
    rnsap.RL_Set_InformationItem_DM_Rprt  RL-Set-InformationItem-DM-Rprt
        No value
    rnsap.RL_Set_InformationItem_DM_Rqst  RL-Set-InformationItem-DM-Rqst
        No value
    rnsap.RL_Set_InformationItem_DM_Rsp  RL-Set-InformationItem-DM-Rsp
        No value
    rnsap.RL_Set_Information_RL_FailureInd  RL-Set-Information-RL-FailureInd
        No value
    rnsap.RL_Set_Information_RL_RestoreInd  RL-Set-Information-RL-RestoreInd
        No value
    rnsap.RL_Set_Successful_InformationItem_DM_Fail  RL-Set-Successful-InformationItem-DM-Fail
        No value
    rnsap.RL_Set_Unsuccessful_InformationItem_DM_Fail  RL-Set-Unsuccessful-InformationItem-DM-Fail
        No value
    rnsap.RL_Set_Unsuccessful_InformationItem_DM_Fail_Ind  RL-Set-Unsuccessful-InformationItem-DM-Fail-Ind
        No value
    rnsap.RL_Specific_DCH_Info  RL-Specific-DCH-Info
        Unsigned 32-bit integer
    rnsap.RL_Specific_DCH_Info_Item  RL-Specific-DCH-Info-Item
        No value
    rnsap.RL_Specific_EDCH_InfoItem  RL-Specific-EDCH-InfoItem
        No value
    rnsap.RL_Specific_EDCH_Information  RL-Specific-EDCH-Information
        No value
    rnsap.RL_Successful_InformationItem_DM_Fail  RL-Successful-InformationItem-DM-Fail
        No value
    rnsap.RL_Unsuccessful_InformationItem_DM_Fail  RL-Unsuccessful-InformationItem-DM-Fail
        No value
    rnsap.RL_Unsuccessful_InformationItem_DM_Fail_Ind  RL-Unsuccessful-InformationItem-DM-Fail-Ind
        No value
    rnsap.RNC_ID  RNC-ID
        Unsigned 32-bit integer
    rnsap.RNCsWithCellsInTheAccessedURA_Item  RNCsWithCellsInTheAccessedURA-Item
        No value
    rnsap.RNSAP_PDU  RNSAP-PDU
        Unsigned 32-bit integer
    rnsap.RNTI_Allocation_Indicator  RNTI-Allocation-Indicator
        Unsigned 32-bit integer
    rnsap.RTLoadValue  RTLoadValue
        No value
    rnsap.RT_Load_Value  RT-Load-Value
        Unsigned 32-bit integer
    rnsap.RT_Load_Value_IncrDecrThres  RT-Load-Value-IncrDecrThres
        Unsigned 32-bit integer
    rnsap.RadioLinkActivationCommandFDD  RadioLinkActivationCommandFDD
        No value
    rnsap.RadioLinkActivationCommandTDD  RadioLinkActivationCommandTDD
        No value
    rnsap.RadioLinkAdditionFailureFDD  RadioLinkAdditionFailureFDD
        No value
    rnsap.RadioLinkAdditionFailureTDD  RadioLinkAdditionFailureTDD
        No value
    rnsap.RadioLinkAdditionRequestFDD  RadioLinkAdditionRequestFDD
        No value
    rnsap.RadioLinkAdditionRequestTDD  RadioLinkAdditionRequestTDD
        No value
    rnsap.RadioLinkAdditionResponseFDD  RadioLinkAdditionResponseFDD
        No value
    rnsap.RadioLinkAdditionResponseTDD  RadioLinkAdditionResponseTDD
        No value
    rnsap.RadioLinkCongestionIndication  RadioLinkCongestionIndication
        No value
    rnsap.RadioLinkDeletionRequest  RadioLinkDeletionRequest
        No value
    rnsap.RadioLinkDeletionResponse  RadioLinkDeletionResponse
        No value
    rnsap.RadioLinkFailureIndication  RadioLinkFailureIndication
        No value
    rnsap.RadioLinkParameterUpdateIndicationFDD  RadioLinkParameterUpdateIndicationFDD
        No value
    rnsap.RadioLinkParameterUpdateIndicationTDD  RadioLinkParameterUpdateIndicationTDD
        No value
    rnsap.RadioLinkPreemptionRequiredIndication  RadioLinkPreemptionRequiredIndication
        No value
    rnsap.RadioLinkReconfigurationCancel  RadioLinkReconfigurationCancel
        No value
    rnsap.RadioLinkReconfigurationCommit  RadioLinkReconfigurationCommit
        No value
    rnsap.RadioLinkReconfigurationFailure  RadioLinkReconfigurationFailure
        No value
    rnsap.RadioLinkReconfigurationPrepareFDD  RadioLinkReconfigurationPrepareFDD
        No value
    rnsap.RadioLinkReconfigurationPrepareTDD  RadioLinkReconfigurationPrepareTDD
        No value
    rnsap.RadioLinkReconfigurationReadyFDD  RadioLinkReconfigurationReadyFDD
        No value
    rnsap.RadioLinkReconfigurationReadyTDD  RadioLinkReconfigurationReadyTDD
        No value
    rnsap.RadioLinkReconfigurationRequestFDD  RadioLinkReconfigurationRequestFDD
        No value
    rnsap.RadioLinkReconfigurationRequestTDD  RadioLinkReconfigurationRequestTDD
        No value
    rnsap.RadioLinkReconfigurationResponseFDD  RadioLinkReconfigurationResponseFDD
        No value
    rnsap.RadioLinkReconfigurationResponseTDD  RadioLinkReconfigurationResponseTDD
        No value
    rnsap.RadioLinkRestoreIndication  RadioLinkRestoreIndication
        No value
    rnsap.RadioLinkSetupFailureFDD  RadioLinkSetupFailureFDD
        No value
    rnsap.RadioLinkSetupFailureTDD  RadioLinkSetupFailureTDD
        No value
    rnsap.RadioLinkSetupRequestFDD  RadioLinkSetupRequestFDD
        No value
    rnsap.RadioLinkSetupRequestTDD  RadioLinkSetupRequestTDD
        No value
    rnsap.RadioLinkSetupResponseFDD  RadioLinkSetupResponseFDD
        No value
    rnsap.RadioLinkSetupResponseTDD  RadioLinkSetupResponseTDD
        No value
    rnsap.Received_Total_Wideband_Power_Value  Received-Total-Wideband-Power-Value
        Unsigned 32-bit integer
    rnsap.Received_Total_Wideband_Power_Value_IncrDecrThres  Received-Total-Wideband-Power-Value-IncrDecrThres
        Unsigned 32-bit integer
    rnsap.Reference_E_TFCI_Information_Item  Reference-E-TFCI-Information-Item
        No value
    rnsap.Released_CN_Domain  Released-CN-Domain
        Unsigned 32-bit integer
    rnsap.RelocationCommit  RelocationCommit
        No value
    rnsap.Repetition_Period_Item_LCR  Repetition-Period-Item-LCR
        No value
    rnsap.ReportCharacteristics  ReportCharacteristics
        Unsigned 32-bit integer
    rnsap.Reporting_Object_RL_FailureInd  Reporting-Object-RL-FailureInd
        Unsigned 32-bit integer
    rnsap.Reporting_Object_RL_RestoreInd  Reporting-Object-RL-RestoreInd
        Unsigned 32-bit integer
    rnsap.ResetIndicator  ResetIndicator
        Unsigned 32-bit integer
    rnsap.ResetRequest  ResetRequest
        No value
    rnsap.ResetResponse  ResetResponse
        No value
    rnsap.RestrictionStateIndicator  RestrictionStateIndicator
        Unsigned 32-bit integer
    rnsap.RxTimingDeviationForTA  RxTimingDeviationForTA
        Unsigned 32-bit integer
    rnsap.RxTimingDeviationForTA768  RxTimingDeviationForTA768
        Unsigned 32-bit integer
    rnsap.RxTimingDeviationForTAext  RxTimingDeviationForTAext
        Unsigned 32-bit integer
    rnsap.Rx_Timing_Deviation_Value_768  Rx-Timing-Deviation-Value-768
        Unsigned 32-bit integer
    rnsap.Rx_Timing_Deviation_Value_LCR  Rx-Timing-Deviation-Value-LCR
        Unsigned 32-bit integer
    rnsap.Rx_Timing_Deviation_Value_ext  Rx-Timing-Deviation-Value-ext
        Unsigned 32-bit integer
    rnsap.SAI  SAI
        No value
    rnsap.SFN  SFN
        Unsigned 32-bit integer
    rnsap.SFNSFNMeasurementThresholdInformation  SFNSFNMeasurementThresholdInformation
        No value
    rnsap.SNACode  SNACode
        Unsigned 32-bit integer
    rnsap.SNA_Information  SNA-Information
        No value
    rnsap.STTD_SupportIndicator  STTD-SupportIndicator
        Unsigned 32-bit integer
    rnsap.S_RNTI  S-RNTI
        Unsigned 32-bit integer
    rnsap.Satellite_Almanac_Information_ExtItem  Satellite-Almanac-Information-ExtItem
        Unsigned 32-bit integer
    rnsap.Satellite_Almanac_Information_ExtItem_item  Satellite-Almanac-Information-ExtItem item
        No value
    rnsap.ScaledAdjustmentRatio  ScaledAdjustmentRatio
        Unsigned 32-bit integer
    rnsap.SecondaryServingCellsItem  SecondaryServingCellsItem
        No value
    rnsap.SecondaryULFrequencyReport  SecondaryULFrequencyReport
        No value
    rnsap.SecondaryULFrequencyUpdateIndication  SecondaryULFrequencyUpdateIndication
        No value
    rnsap.Secondary_CCPCH_Info_TDD768  Secondary-CCPCH-Info-TDD768
        No value
    rnsap.Secondary_CCPCH_TDD_Code_InformationItem  Secondary-CCPCH-TDD-Code-InformationItem
        No value
    rnsap.Secondary_CCPCH_TDD_Code_InformationItem768  Secondary-CCPCH-TDD-Code-InformationItem768
        No value
    rnsap.Secondary_CCPCH_TDD_InformationItem  Secondary-CCPCH-TDD-InformationItem
        No value
    rnsap.Secondary_CCPCH_TDD_InformationItem768  Secondary-CCPCH-TDD-InformationItem768
        No value
    rnsap.Secondary_CPICH_Information  Secondary-CPICH-Information
        No value
    rnsap.Secondary_CPICH_Information_Change  Secondary-CPICH-Information-Change
        Unsigned 32-bit integer
    rnsap.Secondary_LCR_CCPCH_Info_TDD  Secondary-LCR-CCPCH-Info-TDD
        No value
    rnsap.Secondary_LCR_CCPCH_TDD_Code_InformationItem  Secondary-LCR-CCPCH-TDD-Code-InformationItem
        No value
    rnsap.Secondary_LCR_CCPCH_TDD_InformationItem  Secondary-LCR-CCPCH-TDD-InformationItem
        No value
    rnsap.Secondary_Serving_Cell_List  Secondary-Serving-Cell-List
        No value
    rnsap.SetsOfHS_SCCH_CodesItem  SetsOfHS-SCCH-CodesItem
        No value
    rnsap.Single_Stream_MIMO_ActivationIndicator  Single-Stream-MIMO-ActivationIndicator
        No value
    rnsap.Single_Stream_MIMO_Mode_Indicator  Single-Stream-MIMO-Mode-Indicator
        Unsigned 32-bit integer
    rnsap.SixteenQAM_UL_Operation_Indicator  SixteenQAM-UL-Operation-Indicator
        Unsigned 32-bit integer
    rnsap.SixtyfourQAM_DL_SupportIndicator  SixtyfourQAM-DL-SupportIndicator
        Unsigned 32-bit integer
    rnsap.SixtyfourQAM_DL_UsageIndicator  SixtyfourQAM-DL-UsageIndicator
        Unsigned 32-bit integer
    rnsap.SixtyfourQAM_UsageAllowedIndicator  SixtyfourQAM-UsageAllowedIndicator
        Unsigned 32-bit integer
    rnsap.SuccessfulRL_InformationResponse_RL_AdditionFailureFDD  SuccessfulRL-InformationResponse-RL-AdditionFailureFDD
        No value
    rnsap.SuccessfulRL_InformationResponse_RL_SetupFailureFDD  SuccessfulRL-InformationResponse-RL-SetupFailureFDD
        No value
    rnsap.Support_8PSK  Support-8PSK
        Unsigned 32-bit integer
    rnsap.Support_PLCCH  Support-PLCCH
        Unsigned 32-bit integer
    rnsap.SynchronisationIndicator  SynchronisationIndicator
        Unsigned 32-bit integer
    rnsap.TDD_DCHs_to_Modify  TDD-DCHs-to-Modify
        Unsigned 32-bit integer
    rnsap.TDD_DCHs_to_ModifyItem  TDD-DCHs-to-ModifyItem
        No value
    rnsap.TDD_DCHs_to_ModifySpecificItem  TDD-DCHs-to-ModifySpecificItem
        No value
    rnsap.TDD_DL_Code_InformationItem  TDD-DL-Code-InformationItem
        No value
    rnsap.TDD_DL_Code_InformationItem768  TDD-DL-Code-InformationItem768
        No value
    rnsap.TDD_DL_Code_InformationModifyItem_RL_ReconfReadyTDD  TDD-DL-Code-InformationModifyItem-RL-ReconfReadyTDD
        No value
    rnsap.TDD_DL_Code_InformationModifyItem_RL_ReconfReadyTDD768  TDD-DL-Code-InformationModifyItem-RL-ReconfReadyTDD768
        No value
    rnsap.TDD_DL_Code_LCR_InformationItem  TDD-DL-Code-LCR-InformationItem
        No value
    rnsap.TDD_DL_Code_LCR_InformationModifyItem_RL_ReconfReadyTDD  TDD-DL-Code-LCR-InformationModifyItem-RL-ReconfReadyTDD
        No value
    rnsap.TDD_DL_DPCH_TimeSlotFormat_LCR  TDD-DL-DPCH-TimeSlotFormat-LCR
        Unsigned 32-bit integer
    rnsap.TDD_TPC_DownlinkStepSize  TDD-TPC-DownlinkStepSize
        Unsigned 32-bit integer
    rnsap.TDD_TPC_UplinkStepSize_LCR  TDD-TPC-UplinkStepSize-LCR
        Unsigned 32-bit integer
    rnsap.TDD_UL_Code_InformationItem  TDD-UL-Code-InformationItem
        No value
    rnsap.TDD_UL_Code_InformationItem768  TDD-UL-Code-InformationItem768
        No value
    rnsap.TDD_UL_Code_InformationModifyItem_RL_ReconfReadyTDD  TDD-UL-Code-InformationModifyItem-RL-ReconfReadyTDD
        No value
    rnsap.TDD_UL_Code_InformationModifyItem_RL_ReconfReadyTDD768  TDD-UL-Code-InformationModifyItem-RL-ReconfReadyTDD768
        No value
    rnsap.TDD_UL_Code_LCR_InformationItem  TDD-UL-Code-LCR-InformationItem
        No value
    rnsap.TDD_UL_Code_LCR_InformationModifyItem_RL_ReconfReadyTDD  TDD-UL-Code-LCR-InformationModifyItem-RL-ReconfReadyTDD
        No value
    rnsap.TDD_UL_DPCH_TimeSlotFormat_LCR  TDD-UL-DPCH-TimeSlotFormat-LCR
        Unsigned 32-bit integer
    rnsap.TFCS_TFCSList_item  TFCS-TFCSList item
        No value
    rnsap.TMGI  TMGI
        No value
    rnsap.TS0_HS_PDSCH_Indication_LCR  TS0-HS-PDSCH-Indication-LCR
        No value
    rnsap.TSN_Length  TSN-Length
        Unsigned 32-bit integer
    rnsap.TSTD_Support_Indicator  TSTD-Support-Indicator
        Unsigned 32-bit integer
    rnsap.TUTRANGANSSMeasurementThresholdInformation  TUTRANGANSSMeasurementThresholdInformation
        No value
    rnsap.TUTRANGANSSMeasurementValueInformation  TUTRANGANSSMeasurementValueInformation
        No value
    rnsap.TUTRANGPSMeasurementThresholdInformation  TUTRANGPSMeasurementThresholdInformation
        No value
    rnsap.TimeSlot  TimeSlot
        Unsigned 32-bit integer
    rnsap.TnlQos  TnlQos
        Unsigned 32-bit integer
    rnsap.TrCH_SrcStatisticsDescr  TrCH-SrcStatisticsDescr
        Unsigned 32-bit integer
    rnsap.TraceDepth  TraceDepth
        Unsigned 32-bit integer
    rnsap.TraceRecordingSessionReference  TraceRecordingSessionReference
        Unsigned 32-bit integer
    rnsap.TraceReference  TraceReference
        Byte array
    rnsap.TrafficClass  TrafficClass
        Unsigned 32-bit integer
    rnsap.TransmissionTimeIntervalInformation_item  TransmissionTimeIntervalInformation item
        No value
    rnsap.Transmission_Gap_Pattern_Sequence_Information  Transmission-Gap-Pattern-Sequence-Information
        Unsigned 32-bit integer
    rnsap.Transmission_Gap_Pattern_Sequence_Information_item  Transmission-Gap-Pattern-Sequence-Information item
        No value
    rnsap.Transmission_Gap_Pattern_Sequence_Status_List_item  Transmission-Gap-Pattern-Sequence-Status-List item
        No value
    rnsap.Transmission_Mode_Information  Transmission-Mode-Information
        Unsigned 32-bit integer
    rnsap.Transmission_Mode_Information_List  Transmission-Mode-Information-List
        No value
    rnsap.TransmitDiversityIndicator  TransmitDiversityIndicator
        Unsigned 32-bit integer
    rnsap.Transmitted_Carrier_Power_Value  Transmitted-Carrier-Power-Value
        Unsigned 32-bit integer
    rnsap.Transmitted_Carrier_Power_Value_IncrDecrThres  Transmitted-Carrier-Power-Value-IncrDecrThres
        Unsigned 32-bit integer
    rnsap.TransportBearerID  TransportBearerID
        Unsigned 32-bit integer
    rnsap.TransportBearerNotRequestedIndicator  TransportBearerNotRequestedIndicator
        Unsigned 32-bit integer
    rnsap.TransportBearerNotSetupIndicator  TransportBearerNotSetupIndicator
        Unsigned 32-bit integer
    rnsap.TransportBearerRequestIndicator  TransportBearerRequestIndicator
        Unsigned 32-bit integer
    rnsap.TransportFormatSet_DynamicPartList_item  TransportFormatSet-DynamicPartList item
        No value
    rnsap.TransportLayerAddress  TransportLayerAddress
        Byte array
    rnsap.Transport_Block_Size_Item_LCR  Transport-Block-Size-Item-LCR
        No value
    rnsap.TypeOfError  TypeOfError
        Unsigned 32-bit integer
    rnsap.UARFCN  UARFCN
        Unsigned 32-bit integer
    rnsap.UC_ID  UC-ID
        No value
    rnsap.UEIdentity  UEIdentity
        Unsigned 32-bit integer
    rnsap.UEMeasurementFailureIndication  UEMeasurementFailureIndication
        No value
    rnsap.UEMeasurementInitiationFailure  UEMeasurementInitiationFailure
        No value
    rnsap.UEMeasurementInitiationRequest  UEMeasurementInitiationRequest
        No value
    rnsap.UEMeasurementInitiationResponse  UEMeasurementInitiationResponse
        No value
    rnsap.UEMeasurementParameterModAllow  UEMeasurementParameterModAllow
        Unsigned 32-bit integer
    rnsap.UEMeasurementReport  UEMeasurementReport
        No value
    rnsap.UEMeasurementReportCharacteristics  UEMeasurementReportCharacteristics
        Unsigned 32-bit integer
    rnsap.UEMeasurementTerminationRequest  UEMeasurementTerminationRequest
        No value
    rnsap.UEMeasurementTimeslotInfo768  UEMeasurementTimeslotInfo768
        Unsigned 32-bit integer
    rnsap.UEMeasurementTimeslotInfo768_IEs  UEMeasurementTimeslotInfo768-IEs
        No value
    rnsap.UEMeasurementTimeslotInfoHCR  UEMeasurementTimeslotInfoHCR
        Unsigned 32-bit integer
    rnsap.UEMeasurementTimeslotInfoHCR_IEs  UEMeasurementTimeslotInfoHCR-IEs
        No value
    rnsap.UEMeasurementTimeslotInfoLCR  UEMeasurementTimeslotInfoLCR
        Unsigned 32-bit integer
    rnsap.UEMeasurementTimeslotInfoLCR_IEs  UEMeasurementTimeslotInfoLCR-IEs
        No value
    rnsap.UEMeasurementType  UEMeasurementType
        Unsigned 32-bit integer
    rnsap.UEMeasurementValueInformation  UEMeasurementValueInformation
        Unsigned 32-bit integer
    rnsap.UEMeasurementValueTimeslotISCPList768  UEMeasurementValueTimeslotISCPList768
        Unsigned 32-bit integer
    rnsap.UEMeasurementValueTimeslotISCPList768_IEs  UEMeasurementValueTimeslotISCPList768-IEs
        No value
    rnsap.UEMeasurementValueTimeslotISCPListHCR_IEs  UEMeasurementValueTimeslotISCPListHCR-IEs
        No value
    rnsap.UEMeasurementValueTimeslotISCPListLCR_IEs  UEMeasurementValueTimeslotISCPListLCR-IEs
        No value
    rnsap.UEMeasurementValueTransmittedPowerList768  UEMeasurementValueTransmittedPowerList768
        Unsigned 32-bit integer
    rnsap.UEMeasurementValueTransmittedPowerList768_IEs  UEMeasurementValueTransmittedPowerList768-IEs
        No value
    rnsap.UEMeasurementValueTransmittedPowerListHCR_IEs  UEMeasurementValueTransmittedPowerListHCR-IEs
        No value
    rnsap.UEMeasurementValueTransmittedPowerListLCR_IEs  UEMeasurementValueTransmittedPowerListLCR-IEs
        No value
    rnsap.UE_AggregateMaximumBitRate  UE-AggregateMaximumBitRate
        No value
    rnsap.UE_AggregateMaximumBitRate_Enforcement_Indicator  UE-AggregateMaximumBitRate-Enforcement-Indicator
        No value
    rnsap.UE_Capabilities_Info  UE-Capabilities-Info
        No value
    rnsap.UE_State  UE-State
        Unsigned 32-bit integer
    rnsap.UE_SupportIndicatorExtension  UE-SupportIndicatorExtension
        Byte array
    rnsap.UE_TS0_CapabilityLCR  UE-TS0-CapabilityLCR
        Unsigned 32-bit integer
    rnsap.UL_CCTrCHInformationItem_RL_AdditionRspTDD  UL-CCTrCHInformationItem-RL-AdditionRspTDD
        No value
    rnsap.UL_CCTrCHInformationItem_RL_AdditionRspTDD768  UL-CCTrCHInformationItem-RL-AdditionRspTDD768
        No value
    rnsap.UL_CCTrCHInformationItem_RL_SetupRspTDD  UL-CCTrCHInformationItem-RL-SetupRspTDD
        No value
    rnsap.UL_CCTrCHInformationItem_RL_SetupRspTDD768  UL-CCTrCHInformationItem-RL-SetupRspTDD768
        No value
    rnsap.UL_CCTrCHInformationListIE_RL_AdditionRspTDD  UL-CCTrCHInformationListIE-RL-AdditionRspTDD
        Unsigned 32-bit integer
    rnsap.UL_CCTrCHInformationListIE_RL_AdditionRspTDD768  UL-CCTrCHInformationListIE-RL-AdditionRspTDD768
        Unsigned 32-bit integer
    rnsap.UL_CCTrCHInformationListIE_RL_ReconfReadyTDD  UL-CCTrCHInformationListIE-RL-ReconfReadyTDD
        Unsigned 32-bit integer
    rnsap.UL_CCTrCHInformationListIE_RL_SetupRspTDD  UL-CCTrCHInformationListIE-RL-SetupRspTDD
        Unsigned 32-bit integer
    rnsap.UL_CCTrCHInformationListIE_RL_SetupRspTDD768  UL-CCTrCHInformationListIE-RL-SetupRspTDD768
        Unsigned 32-bit integer
    rnsap.UL_CCTrCH_AddInformation_RL_ReconfPrepTDD  UL-CCTrCH-AddInformation-RL-ReconfPrepTDD
        No value
    rnsap.UL_CCTrCH_DeleteInformation_RL_ReconfPrepTDD  UL-CCTrCH-DeleteInformation-RL-ReconfPrepTDD
        No value
    rnsap.UL_CCTrCH_InformationAddList_RL_ReconfPrepTDD  UL-CCTrCH-InformationAddList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    rnsap.UL_CCTrCH_InformationDeleteItem_RL_ReconfRqstTDD  UL-CCTrCH-InformationDeleteItem-RL-ReconfRqstTDD
        No value
    rnsap.UL_CCTrCH_InformationDeleteList_RL_ReconfPrepTDD  UL-CCTrCH-InformationDeleteList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    rnsap.UL_CCTrCH_InformationDeleteList_RL_ReconfRqstTDD  UL-CCTrCH-InformationDeleteList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.UL_CCTrCH_InformationItem_PhyChReconfRqstTDD  UL-CCTrCH-InformationItem-PhyChReconfRqstTDD
        No value
    rnsap.UL_CCTrCH_InformationItem_RL_AdditionRqstTDD  UL-CCTrCH-InformationItem-RL-AdditionRqstTDD
        No value
    rnsap.UL_CCTrCH_InformationItem_RL_ReconfReadyTDD  UL-CCTrCH-InformationItem-RL-ReconfReadyTDD
        No value
    rnsap.UL_CCTrCH_InformationItem_RL_SetupRqstTDD  UL-CCTrCH-InformationItem-RL-SetupRqstTDD
        No value
    rnsap.UL_CCTrCH_InformationListIE_PhyChReconfRqstTDD  UL-CCTrCH-InformationListIE-PhyChReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.UL_CCTrCH_InformationList_RL_AdditionRqstTDD  UL-CCTrCH-InformationList-RL-AdditionRqstTDD
        Unsigned 32-bit integer
    rnsap.UL_CCTrCH_InformationList_RL_SetupRqstTDD  UL-CCTrCH-InformationList-RL-SetupRqstTDD
        Unsigned 32-bit integer
    rnsap.UL_CCTrCH_InformationModifyItem_RL_ReconfRqstTDD  UL-CCTrCH-InformationModifyItem-RL-ReconfRqstTDD
        No value
    rnsap.UL_CCTrCH_InformationModifyList_RL_ReconfPrepTDD  UL-CCTrCH-InformationModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    rnsap.UL_CCTrCH_InformationModifyList_RL_ReconfRqstTDD  UL-CCTrCH-InformationModifyList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.UL_CCTrCH_LCR_InformationItem_RL_AdditionRspTDD  UL-CCTrCH-LCR-InformationItem-RL-AdditionRspTDD
        No value
    rnsap.UL_CCTrCH_LCR_InformationListIE_RL_AdditionRspTDD  UL-CCTrCH-LCR-InformationListIE-RL-AdditionRspTDD
        Unsigned 32-bit integer
    rnsap.UL_CCTrCH_ModifyInformation_RL_ReconfPrepTDD  UL-CCTrCH-ModifyInformation-RL-ReconfPrepTDD
        No value
    rnsap.UL_DPCH_InformationAddListIE_RL_ReconfReadyTDD  UL-DPCH-InformationAddListIE-RL-ReconfReadyTDD
        No value
    rnsap.UL_DPCH_InformationAddList_RL_ReconfReadyTDD768  UL-DPCH-InformationAddList-RL-ReconfReadyTDD768
        No value
    rnsap.UL_DPCH_InformationDeleteItem_RL_ReconfReadyTDD  UL-DPCH-InformationDeleteItem-RL-ReconfReadyTDD
        No value
    rnsap.UL_DPCH_InformationDeleteListIE_RL_ReconfReadyTDD  UL-DPCH-InformationDeleteListIE-RL-ReconfReadyTDD
        Unsigned 32-bit integer
    rnsap.UL_DPCH_InformationItem_PhyChReconfRqstTDD  UL-DPCH-InformationItem-PhyChReconfRqstTDD
        No value
    rnsap.UL_DPCH_InformationItem_RL_AdditionRspTDD  UL-DPCH-InformationItem-RL-AdditionRspTDD
        No value
    rnsap.UL_DPCH_InformationItem_RL_AdditionRspTDD768  UL-DPCH-InformationItem-RL-AdditionRspTDD768
        No value
    rnsap.UL_DPCH_InformationItem_RL_SetupRspTDD  UL-DPCH-InformationItem-RL-SetupRspTDD
        No value
    rnsap.UL_DPCH_InformationItem_RL_SetupRspTDD768  UL-DPCH-InformationItem-RL-SetupRspTDD768
        No value
    rnsap.UL_DPCH_InformationModifyListIE_RL_ReconfReadyTDD  UL-DPCH-InformationModifyListIE-RL-ReconfReadyTDD
        No value
    rnsap.UL_DPCH_Information_RL_ReconfPrepFDD  UL-DPCH-Information-RL-ReconfPrepFDD
        No value
    rnsap.UL_DPCH_Information_RL_ReconfRqstFDD  UL-DPCH-Information-RL-ReconfRqstFDD
        No value
    rnsap.UL_DPCH_Information_RL_SetupRqstFDD  UL-DPCH-Information-RL-SetupRqstFDD
        No value
    rnsap.UL_DPCH_LCR_InformationAddList_RL_ReconfReadyTDD  UL-DPCH-LCR-InformationAddList-RL-ReconfReadyTDD
        No value
    rnsap.UL_DPCH_LCR_InformationItem_RL_AdditionRspTDD  UL-DPCH-LCR-InformationItem-RL-AdditionRspTDD
        No value
    rnsap.UL_DPCH_LCR_InformationItem_RL_SetupRspTDD  UL-DPCH-LCR-InformationItem-RL-SetupRspTDD
        No value
    rnsap.UL_DPDCHIndicatorEDCH  UL-DPDCHIndicatorEDCH
        Unsigned 32-bit integer
    rnsap.UL_LCR_CCTrCHInformationItem_RL_SetupRspTDD  UL-LCR-CCTrCHInformationItem-RL-SetupRspTDD
        No value
    rnsap.UL_LCR_CCTrCHInformationListIE_RL_SetupRspTDD  UL-LCR-CCTrCHInformationListIE-RL-SetupRspTDD
        Unsigned 32-bit integer
    rnsap.UL_Physical_Channel_Information_RL_SetupRqstTDD  UL-Physical-Channel-Information-RL-SetupRqstTDD
        No value
    rnsap.UL_SIR  UL-SIR
        Signed 32-bit integer
    rnsap.UL_Synchronisation_Parameters_LCR  UL-Synchronisation-Parameters-LCR
        No value
    rnsap.UL_TimeSlot_ISCP_InfoItem  UL-TimeSlot-ISCP-InfoItem
        No value
    rnsap.UL_TimeSlot_ISCP_LCR_InfoItem  UL-TimeSlot-ISCP-LCR-InfoItem
        No value
    rnsap.UL_TimeslotLCR_InformationItem  UL-TimeslotLCR-InformationItem
        No value
    rnsap.UL_TimeslotLCR_InformationItem_PhyChReconfRqstTDD  UL-TimeslotLCR-InformationItem-PhyChReconfRqstTDD
        No value
    rnsap.UL_TimeslotLCR_InformationList_PhyChReconfRqstTDD  UL-TimeslotLCR-InformationList-PhyChReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.UL_TimeslotLCR_InformationModifyItem_RL_ReconfReadyTDD  UL-TimeslotLCR-InformationModifyItem-RL-ReconfReadyTDD
        No value
    rnsap.UL_TimeslotLCR_InformationModifyList_RL_ReconfReadyTDD  UL-TimeslotLCR-InformationModifyList-RL-ReconfReadyTDD
        Unsigned 32-bit integer
    rnsap.UL_Timeslot_ISCP_Value  UL-Timeslot-ISCP-Value
        Unsigned 32-bit integer
    rnsap.UL_Timeslot_ISCP_Value_IncrDecrThres  UL-Timeslot-ISCP-Value-IncrDecrThres
        Unsigned 32-bit integer
    rnsap.UL_Timeslot_InformationItem  UL-Timeslot-InformationItem
        No value
    rnsap.UL_Timeslot_InformationItem768  UL-Timeslot-InformationItem768
        No value
    rnsap.UL_Timeslot_InformationItem_PhyChReconfRqstTDD  UL-Timeslot-InformationItem-PhyChReconfRqstTDD
        No value
    rnsap.UL_Timeslot_InformationItem_PhyChReconfRqstTDD768  UL-Timeslot-InformationItem-PhyChReconfRqstTDD768
        No value
    rnsap.UL_Timeslot_InformationList_PhyChReconfRqstTDD768  UL-Timeslot-InformationList-PhyChReconfRqstTDD768
        Unsigned 32-bit integer
    rnsap.UL_Timeslot_InformationModifyItem_RL_ReconfReadyTDD  UL-Timeslot-InformationModifyItem-RL-ReconfReadyTDD
        No value
    rnsap.UL_Timeslot_InformationModifyItem_RL_ReconfReadyTDD768  UL-Timeslot-InformationModifyItem-RL-ReconfReadyTDD768
        No value
    rnsap.UL_Timeslot_InformationModifyList_RL_ReconfReadyTDD768  UL-Timeslot-InformationModifyList-RL-ReconfReadyTDD768
        Unsigned 32-bit integer
    rnsap.UL_TimingAdvanceCtrl_LCR  UL-TimingAdvanceCtrl-LCR
        No value
    rnsap.UPPCHPositionLCR  UPPCHPositionLCR
        Unsigned 32-bit integer
    rnsap.URA_ID  URA-ID
        Unsigned 32-bit integer
    rnsap.URA_Information  URA-Information
        No value
    rnsap.USCHInformationItem_RL_AdditionRspTDD  USCHInformationItem-RL-AdditionRspTDD
        No value
    rnsap.USCHInformationItem_RL_SetupRspTDD  USCHInformationItem-RL-SetupRspTDD
        No value
    rnsap.USCHToBeAddedOrModifiedItem_RL_ReconfReadyTDD  USCHToBeAddedOrModifiedItem-RL-ReconfReadyTDD
        No value
    rnsap.USCHToBeAddedOrModifiedList_RL_ReconfReadyTDD  USCHToBeAddedOrModifiedList-RL-ReconfReadyTDD
        Unsigned 32-bit integer
    rnsap.USCH_DeleteItem_RL_ReconfPrepTDD  USCH-DeleteItem-RL-ReconfPrepTDD
        No value
    rnsap.USCH_DeleteList_RL_ReconfPrepTDD  USCH-DeleteList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    rnsap.USCH_Information  USCH-Information
        Unsigned 32-bit integer
    rnsap.USCH_InformationItem  USCH-InformationItem
        No value
    rnsap.USCH_InformationListIE_RL_AdditionRspTDD  USCH-InformationListIE-RL-AdditionRspTDD
        Unsigned 32-bit integer
    rnsap.USCH_InformationListIEs_RL_SetupRspTDD  USCH-InformationListIEs-RL-SetupRspTDD
        Unsigned 32-bit integer
    rnsap.USCH_LCR_InformationItem_RL_AdditionRspTDD  USCH-LCR-InformationItem-RL-AdditionRspTDD
        No value
    rnsap.USCH_LCR_InformationItem_RL_SetupRspTDD  USCH-LCR-InformationItem-RL-SetupRspTDD
        No value
    rnsap.USCH_LCR_InformationListIEs_RL_AdditionRspTDD  USCH-LCR-InformationListIEs-RL-AdditionRspTDD
        Unsigned 32-bit integer
    rnsap.USCH_LCR_InformationListIEs_RL_SetupRspTDD  USCH-LCR-InformationListIEs-RL-SetupRspTDD
        Unsigned 32-bit integer
    rnsap.USCH_ModifyItem_RL_ReconfPrepTDD  USCH-ModifyItem-RL-ReconfPrepTDD
        No value
    rnsap.USCH_ModifyList_RL_ReconfPrepTDD  USCH-ModifyList-RL-ReconfPrepTDD
        Unsigned 32-bit integer
    rnsap.Unidirectional_DCH_Indicator  Unidirectional-DCH-Indicator
        Unsigned 32-bit integer
    rnsap.UnsuccessfulRL_InformationResponse_RL_AdditionFailureFDD  UnsuccessfulRL-InformationResponse-RL-AdditionFailureFDD
        No value
    rnsap.UnsuccessfulRL_InformationResponse_RL_AdditionFailureTDD  UnsuccessfulRL-InformationResponse-RL-AdditionFailureTDD
        No value
    rnsap.UnsuccessfulRL_InformationResponse_RL_SetupFailureFDD  UnsuccessfulRL-InformationResponse-RL-SetupFailureFDD
        No value
    rnsap.UnsuccessfulRL_InformationResponse_RL_SetupFailureTDD  UnsuccessfulRL-InformationResponse-RL-SetupFailureTDD
        No value
    rnsap.UpPCH_InformationItem_LCRTDD  UpPCH-InformationItem-LCRTDD
        No value
    rnsap.UpPCH_InformationList_LCRTDD  UpPCH-InformationList-LCRTDD
        Unsigned 32-bit integer
    rnsap.UpPTSInterferenceValue  UpPTSInterferenceValue
        Unsigned 32-bit integer
    rnsap.UplinkSignallingTransferIndicationFDD  UplinkSignallingTransferIndicationFDD
        No value
    rnsap.UplinkSignallingTransferIndicationTDD  UplinkSignallingTransferIndicationTDD
        No value
    rnsap.User_Plane_Congestion_Fields_Inclusion  User-Plane-Congestion-Fields-Inclusion
        Unsigned 32-bit integer
    rnsap.aOA_LCR  aOA-LCR
        Unsigned 32-bit integer
    rnsap.aOA_LCR_Accuracy_Class  aOA-LCR-Accuracy-Class
        Unsigned 32-bit integer
    rnsap.a_f_1_nav  a-f-1-nav
        Byte array
        BIT_STRING_SIZE_16
    rnsap.a_f_2_nav  a-f-2-nav
        Byte array
        BIT_STRING_SIZE_8
    rnsap.a_f_zero_nav  a-f-zero-nav
        Byte array
        BIT_STRING_SIZE_22
    rnsap.a_i0  a-i0
        Byte array
        BIT_STRING_SIZE_28
    rnsap.a_i1  a-i1
        Byte array
        BIT_STRING_SIZE_18
    rnsap.a_i2  a-i2
        Byte array
        BIT_STRING_SIZE_12
    rnsap.a_one_utc  a-one-utc
        Byte array
        BIT_STRING_SIZE_24
    rnsap.a_sqrt_nav  a-sqrt-nav
        Byte array
        BIT_STRING_SIZE_32
    rnsap.a_zero_utc  a-zero-utc
        Byte array
        BIT_STRING_SIZE_32
    rnsap.accessPointName  accessPointName
        Byte array
    rnsap.ackNackRepetitionFactor  ackNackRepetitionFactor
        Unsigned 32-bit integer
        AckNack_RepetitionFactor
    rnsap.ackPowerOffset  ackPowerOffset
        Unsigned 32-bit integer
        Ack_Power_Offset
    rnsap.activate  activate
        No value
        Activate_Info
    rnsap.activation_type  activation-type
        Unsigned 32-bit integer
        Execution_Type
    rnsap.addPriorityQueue  addPriorityQueue
        No value
        PriorityQueue_InfoItem_to_Add
    rnsap.addition  addition
        Unsigned 32-bit integer
        Additional_EDCH_Cell_Information_To_Add_List
    rnsap.additionalPreferredFrequency  additionalPreferredFrequency
        Unsigned 32-bit integer
    rnsap.additional_EDCH_Cell_Information_Setup  additional-EDCH-Cell-Information-Setup
        Unsigned 32-bit integer
    rnsap.additional_EDCH_DL_Control_Channel_Change_Information  additional-EDCH-DL-Control-Channel-Change-Information
        Unsigned 32-bit integer
        Additional_EDCH_DL_Control_Channel_Change_Information_List
    rnsap.additional_EDCH_FDD_Information  additional-EDCH-FDD-Information
        No value
    rnsap.additional_EDCH_FDD_Information_Response  additional-EDCH-FDD-Information-Response
        No value
        Additional_EDCH_FDD_Information_Response_ItemIEs
    rnsap.additional_EDCH_FDD_Information_To_Modify  additional-EDCH-FDD-Information-To-Modify
        No value
        Additional_EDCH_FDD_Information
    rnsap.additional_EDCH_FDD_Update_Information  additional-EDCH-FDD-Update-Information
        No value
    rnsap.additional_EDCH_F_DPCH_Information_Modify  additional-EDCH-F-DPCH-Information-Modify
        No value
        Additional_EDCH_F_DPCH_Information
    rnsap.additional_EDCH_F_DPCH_Information_Setup  additional-EDCH-F-DPCH-Information-Setup
        No value
        Additional_EDCH_F_DPCH_Information
    rnsap.additional_EDCH_MAC_d_Flow_Specific_Information_Response_List  additional-EDCH-MAC-d-Flow-Specific-Information-Response-List
        Unsigned 32-bit integer
    rnsap.additional_EDCH_MAC_d_Flows_Specific_Info_List  additional-EDCH-MAC-d-Flows-Specific-Info-List
        Unsigned 32-bit integer
    rnsap.additional_EDCH_RL_Specific_Information_To_Add  additional-EDCH-RL-Specific-Information-To-Add
        Unsigned 32-bit integer
        Additional_EDCH_RL_Specific_Information_To_Add_List
    rnsap.additional_EDCH_RL_Specific_Information_To_Add_List  additional-EDCH-RL-Specific-Information-To-Add-List
        Unsigned 32-bit integer
    rnsap.additional_EDCH_RL_Specific_Information_To_Modify  additional-EDCH-RL-Specific-Information-To-Modify
        Unsigned 32-bit integer
        Additional_EDCH_RL_Specific_Information_To_Modify_List
    rnsap.additional_EDCH_RL_Specific_Information_To_Setup  additional-EDCH-RL-Specific-Information-To-Setup
        Unsigned 32-bit integer
        Additional_EDCH_RL_Specific_Information_To_Setup_List
    rnsap.additional_EDCH_Serving_Cell_Change_Information_Response_RLAdd  additional-EDCH-Serving-Cell-Change-Information-Response-RLAdd
        No value
        E_DCH_Serving_cell_change_informationResponse
    rnsap.additional_EDCH_UL_DPCH_Information_Modify  additional-EDCH-UL-DPCH-Information-Modify
        No value
    rnsap.additional_EDCH_UL_DPCH_Information_Setup  additional-EDCH-UL-DPCH-Information-Setup
        No value
    rnsap.additional_e_DCH_DL_Control_Channel_Grant  additional-e-DCH-DL-Control-Channel-Grant
        No value
    rnsap.adjustmentPeriod  adjustmentPeriod
        Unsigned 32-bit integer
    rnsap.adjustmentRatio  adjustmentRatio
        Unsigned 32-bit integer
        ScaledAdjustmentRatio
    rnsap.affectedUEInformationForMBMS  affectedUEInformationForMBMS
        Unsigned 32-bit integer
    rnsap.allRL  allRL
        No value
        All_RL_DM_Rqst
    rnsap.allRLS  allRLS
        No value
        All_RL_Set_DM_Rqst
    rnsap.all_contexts  all-contexts
        No value
    rnsap.allocationRetentionPriority  allocationRetentionPriority
        No value
    rnsap.allowed_DL_Rate  allowed-DL-Rate
        Unsigned 32-bit integer
        Allowed_Rate
    rnsap.allowed_Rate_Information  allowed-Rate-Information
        No value
    rnsap.allowed_UL_Rate  allowed-UL-Rate
        Unsigned 32-bit integer
        Allowed_Rate
    rnsap.alphaValue  alphaValue
        Unsigned 32-bit integer
    rnsap.alpha_beta_parameters  alpha-beta-parameters
        No value
        GPS_Ionospheric_Model
    rnsap.alpha_one_ionos  alpha-one-ionos
        Byte array
        BIT_STRING_SIZE_12
    rnsap.alpha_three_ionos  alpha-three-ionos
        Byte array
        BIT_STRING_SIZE_8
    rnsap.alpha_two_ionos  alpha-two-ionos
        Byte array
        BIT_STRING_SIZE_12
    rnsap.alpha_zero_ionos  alpha-zero-ionos
        Byte array
        BIT_STRING_SIZE_12
    rnsap.altitude  altitude
        Unsigned 32-bit integer
        INTEGER_0_32767
    rnsap.altitudeAndDirection  altitudeAndDirection
        No value
        GA_AltitudeAndDirection
    rnsap.amountofReporting  amountofReporting
        Unsigned 32-bit integer
        UEMeasurementReportCharacteristicsPeriodicAmountofReporting
    rnsap.aodo_nav  aodo-nav
        Byte array
        BIT_STRING_SIZE_5
    rnsap.associatedHSDSCH_MACdFlow  associatedHSDSCH-MACdFlow
        Unsigned 32-bit integer
        HSDSCH_MACdFlow_ID
    rnsap.b1  b1
        Byte array
        BIT_STRING_SIZE_11
    rnsap.b2  b2
        Byte array
        BIT_STRING_SIZE_10
    rnsap.bCC  bCC
        Byte array
    rnsap.bCCH_ARFCN  bCCH-ARFCN
        Unsigned 32-bit integer
    rnsap.bLER  bLER
        Signed 32-bit integer
    rnsap.bSIC  bSIC
        No value
    rnsap.badSAT_ID  badSAT-ID
        Unsigned 32-bit integer
        SAT_ID
    rnsap.badSatelliteInformation  badSatelliteInformation
        Unsigned 32-bit integer
    rnsap.badSatelliteInformation_item  badSatelliteInformation item
        No value
    rnsap.badSatellites  badSatellites
        No value
    rnsap.bad_ganss_satId  bad-ganss-satId
        Unsigned 32-bit integer
        INTEGER_0_63
    rnsap.bad_ganss_signalId  bad-ganss-signalId
        Byte array
        BIT_STRING_SIZE_8
    rnsap.band_Indicator  band-Indicator
        Unsigned 32-bit integer
    rnsap.betaC  betaC
        Unsigned 32-bit integer
        BetaCD
    rnsap.betaD  betaD
        Unsigned 32-bit integer
        BetaCD
    rnsap.beta_one_ionos  beta-one-ionos
        Byte array
        BIT_STRING_SIZE_8
    rnsap.beta_three_ionos  beta-three-ionos
        Byte array
        BIT_STRING_SIZE_8
    rnsap.beta_two_ionos  beta-two-ionos
        Byte array
        BIT_STRING_SIZE_8
    rnsap.beta_zero_ionos  beta-zero-ionos
        Byte array
        BIT_STRING_SIZE_8
    rnsap.bindingID  bindingID
        Byte array
    rnsap.buffer_Size_for_HS_DSCH_SPS  buffer-Size-for-HS-DSCH-SPS
        Unsigned 32-bit integer
        Process_Memory_Size
    rnsap.bundlingModeIndicator  bundlingModeIndicator
        Unsigned 32-bit integer
    rnsap.burstFreq  burstFreq
        Unsigned 32-bit integer
        INTEGER_1_16
    rnsap.burstLength  burstLength
        Unsigned 32-bit integer
        INTEGER_10_25
    rnsap.burstModeParameters  burstModeParameters
        No value
    rnsap.burstStart  burstStart
        Unsigned 32-bit integer
        INTEGER_0_15
    rnsap.burstType  burstType
        Unsigned 32-bit integer
        UEMeasurementTimeslotInfoHCRBurstType
    rnsap.cCTrCH  cCTrCH
        No value
        CCTrCH_RL_FailureInd
    rnsap.cCTrCH_ID  cCTrCH-ID
        Unsigned 32-bit integer
    rnsap.cCTrCH_InformationList_RL_FailureInd  cCTrCH-InformationList-RL-FailureInd
        Unsigned 32-bit integer
    rnsap.cCTrCH_InformationList_RL_RestoreInd  cCTrCH-InformationList-RL-RestoreInd
        Unsigned 32-bit integer
    rnsap.cCTrCH_Maximum_DL_Power  cCTrCH-Maximum-DL-Power
        Signed 32-bit integer
        DL_Power
    rnsap.cCTrCH_Minimum_DL_Power  cCTrCH-Minimum-DL-Power
        Signed 32-bit integer
        DL_Power
    rnsap.cCTrCH_TPCList  cCTrCH-TPCList
        Unsigned 32-bit integer
        CCTrCH_TPCList_RL_SetupRqstTDD
    rnsap.cFN  cFN
        Unsigned 32-bit integer
    rnsap.cGI  cGI
        No value
    rnsap.cI  cI
        Byte array
    rnsap.cMConfigurationChangeCFN  cMConfigurationChangeCFN
        Unsigned 32-bit integer
        CFN
    rnsap.cNDomainType  cNDomainType
        Unsigned 32-bit integer
    rnsap.cN_CS_DomainIdentifier  cN-CS-DomainIdentifier
        No value
    rnsap.cN_PS_DomainIdentifier  cN-PS-DomainIdentifier
        No value
    rnsap.cQI_DTX_Timer  cQI-DTX-Timer
        Unsigned 32-bit integer
    rnsap.cRC_Size  cRC-Size
        Unsigned 32-bit integer
    rnsap.cSDomain  cSDomain
        No value
    rnsap.cTFC  cTFC
        Unsigned 32-bit integer
        TFCS_CTFC
    rnsap.c_ID  c-ID
        Unsigned 32-bit integer
    rnsap.c_ic_nav  c-ic-nav
        Byte array
        BIT_STRING_SIZE_16
    rnsap.c_is_nav  c-is-nav
        Byte array
        BIT_STRING_SIZE_16
    rnsap.c_rc_nav  c-rc-nav
        Byte array
        BIT_STRING_SIZE_16
    rnsap.c_rs_nav  c-rs-nav
        Byte array
        BIT_STRING_SIZE_16
    rnsap.c_uc_nav  c-uc-nav
        Byte array
        BIT_STRING_SIZE_16
    rnsap.c_us_nav  c-us-nav
        Byte array
        BIT_STRING_SIZE_16
    rnsap.ca_or_p_on_l2_nav  ca-or-p-on-l2-nav
        Byte array
        BIT_STRING_SIZE_2
    rnsap.cause  cause
        Unsigned 32-bit integer
    rnsap.cell  cell
        No value
        Cell_PagingRqst
    rnsap.cellIndividualOffset  cellIndividualOffset
        Signed 32-bit integer
    rnsap.cellParameterID  cellParameterID
        Unsigned 32-bit integer
    rnsap.cell_GAIgeographicalCoordinate  cell-GAIgeographicalCoordinate
        No value
        GeographicalCoordinate
    rnsap.cell_fach_pch  cell-fach-pch
        No value
        Cell_Fach_Pch_State
    rnsap.cfn  cfn
        Unsigned 32-bit integer
    rnsap.channelCoding  channelCoding
        Unsigned 32-bit integer
        ChannelCodingType
    rnsap.channelNumber  channelNumber
        Signed 32-bit integer
        INTEGER_M7_13
    rnsap.chipOffset  chipOffset
        Unsigned 32-bit integer
    rnsap.closedLoopMode1_SupportIndicator  closedLoopMode1-SupportIndicator
        Unsigned 32-bit integer
    rnsap.closedlooptimingadjustmentmode  closedlooptimingadjustmentmode
        Unsigned 32-bit integer
    rnsap.cnavAdot  cnavAdot
        Byte array
        BIT_STRING_SIZE_25
    rnsap.cnavAf0  cnavAf0
        Byte array
        BIT_STRING_SIZE_26
    rnsap.cnavAf1  cnavAf1
        Byte array
        BIT_STRING_SIZE_20
    rnsap.cnavAf2  cnavAf2
        Byte array
        BIT_STRING_SIZE_10
    rnsap.cnavCic  cnavCic
        Byte array
        BIT_STRING_SIZE_16
    rnsap.cnavCis  cnavCis
        Byte array
        BIT_STRING_SIZE_16
    rnsap.cnavClockModel  cnavClockModel
        No value
        GANSS_CNAVclockModel
    rnsap.cnavCrc  cnavCrc
        Byte array
        BIT_STRING_SIZE_24
    rnsap.cnavCrs  cnavCrs
        Byte array
        BIT_STRING_SIZE_24
    rnsap.cnavCuc  cnavCuc
        Byte array
        BIT_STRING_SIZE_21
    rnsap.cnavCus  cnavCus
        Byte array
        BIT_STRING_SIZE_21
    rnsap.cnavDeltaA  cnavDeltaA
        Byte array
        BIT_STRING_SIZE_26
    rnsap.cnavDeltaNo  cnavDeltaNo
        Byte array
        BIT_STRING_SIZE_17
    rnsap.cnavDeltaNoDot  cnavDeltaNoDot
        Byte array
        BIT_STRING_SIZE_23
    rnsap.cnavDeltaOmegaDot  cnavDeltaOmegaDot
        Byte array
        BIT_STRING_SIZE_17
    rnsap.cnavE  cnavE
        Byte array
        BIT_STRING_SIZE_33
    rnsap.cnavISCl1ca  cnavISCl1ca
        Byte array
        BIT_STRING_SIZE_13
    rnsap.cnavISCl1cd  cnavISCl1cd
        Byte array
        BIT_STRING_SIZE_13
    rnsap.cnavISCl1cp  cnavISCl1cp
        Byte array
        BIT_STRING_SIZE_13
    rnsap.cnavISCl2c  cnavISCl2c
        Byte array
        BIT_STRING_SIZE_13
    rnsap.cnavISCl5i5  cnavISCl5i5
        Byte array
        BIT_STRING_SIZE_13
    rnsap.cnavISCl5q5  cnavISCl5q5
        Byte array
        BIT_STRING_SIZE_13
    rnsap.cnavIo  cnavIo
        Byte array
        BIT_STRING_SIZE_33
    rnsap.cnavIoDot  cnavIoDot
        Byte array
        BIT_STRING_SIZE_15
    rnsap.cnavKeplerianSet  cnavKeplerianSet
        No value
        GANSS_NavModel_CNAVKeplerianSet
    rnsap.cnavMo  cnavMo
        Byte array
        BIT_STRING_SIZE_33
    rnsap.cnavOMEGA0  cnavOMEGA0
        Byte array
        BIT_STRING_SIZE_33
    rnsap.cnavOmega  cnavOmega
        Byte array
        BIT_STRING_SIZE_33
    rnsap.cnavTgd  cnavTgd
        Byte array
        BIT_STRING_SIZE_13
    rnsap.cnavToc  cnavToc
        Byte array
        BIT_STRING_SIZE_11
    rnsap.cnavTop  cnavTop
        Byte array
        BIT_STRING_SIZE_11
    rnsap.cnavURA0  cnavURA0
        Byte array
        BIT_STRING_SIZE_5
    rnsap.cnavURA1  cnavURA1
        Byte array
        BIT_STRING_SIZE_3
    rnsap.cnavURA2  cnavURA2
        Byte array
        BIT_STRING_SIZE_3
    rnsap.cnavURAindex  cnavURAindex
        Byte array
        BIT_STRING_SIZE_5
    rnsap.code_Number  code-Number
        Unsigned 32-bit integer
        INTEGER_0_127
    rnsap.codingRate  codingRate
        Unsigned 32-bit integer
    rnsap.combining  combining
        No value
        Combining_RL_SetupRspFDD
    rnsap.commonMeasurementValue  commonMeasurementValue
        Unsigned 32-bit integer
    rnsap.commonMeasurementValueInformation  commonMeasurementValueInformation
        Unsigned 32-bit integer
    rnsap.commonMidamble  commonMidamble
        No value
    rnsap.common_DL_ReferencePowerInformation  common-DL-ReferencePowerInformation
        Signed 32-bit integer
        DL_Power
    rnsap.common_EDCH_MACdFlow_ID  common-EDCH-MACdFlow-ID
        Unsigned 32-bit integer
        EDCH_MACdFlow_ID
    rnsap.common_EDCH_MACdFlow_ID_LCR  common-EDCH-MACdFlow-ID-LCR
        Unsigned 32-bit integer
        EDCH_MACdFlow_ID_LCR
    rnsap.common_E_DCHLogicalChannelInformation  common-E-DCHLogicalChannelInformation
        Unsigned 32-bit integer
        Common_E_DCH_LogicalChannelInformation
    rnsap.common_HS_DSCH_RNTI_priorityQueueInfo_EnhancedFACH  common-HS-DSCH-RNTI-priorityQueueInfo-EnhancedFACH
        Unsigned 32-bit integer
        PriorityQueue_InfoList_EnhancedFACH_PCH
    rnsap.confidence  confidence
        Unsigned 32-bit integer
        INTEGER_0_127
    rnsap.configurationChange  configurationChange
        Unsigned 32-bit integer
        Additional_EDCH_Cell_Information_ConfigurationChange_List
    rnsap.context  context
        No value
        ContextList_Reset
    rnsap.contextGroup  contextGroup
        No value
        ContextGroupList_Reset
    rnsap.contextGroupInfoList_Reset  contextGroupInfoList-Reset
        Unsigned 32-bit integer
    rnsap.contextInfoList_Reset  contextInfoList-Reset
        Unsigned 32-bit integer
    rnsap.contextType_Reset  contextType-Reset
        Unsigned 32-bit integer
    rnsap.continuousPacketConnectivity_DRX_InformationLCR  continuousPacketConnectivity-DRX-InformationLCR
        No value
    rnsap.continuousPacketConnectivity_DRX_Information_to_Modify_LCR  continuousPacketConnectivity-DRX-Information-to-Modify-LCR
        No value
    rnsap.continuous_Packet_Connectivity_DTX_DRX_Information  continuous-Packet-Connectivity-DTX-DRX-Information
        No value
    rnsap.continuous_Packet_Connectivity_DTX_DRX_Information_to_Modify  continuous-Packet-Connectivity-DTX-DRX-Information-to-Modify
        No value
    rnsap.continuous_Packet_Connectivity_HS_SCCH_Less_Information  continuous-Packet-Connectivity-HS-SCCH-Less-Information
        Unsigned 32-bit integer
    rnsap.continuous_Packet_Connectivity_HS_SCCH_Less_Information_Response  continuous-Packet-Connectivity-HS-SCCH-Less-Information-Response
        No value
    rnsap.correspondingCells  correspondingCells
        Unsigned 32-bit integer
    rnsap.counting_Result  counting-Result
        Unsigned 32-bit integer
    rnsap.cqiFeedback_CycleK  cqiFeedback-CycleK
        Unsigned 32-bit integer
        CQI_Feedback_Cycle
    rnsap.cqiPowerOffset  cqiPowerOffset
        Unsigned 32-bit integer
        CQI_Power_Offset
    rnsap.cqiRepetitionFactor  cqiRepetitionFactor
        Unsigned 32-bit integer
        CQI_RepetitionFactor
    rnsap.criticality  criticality
        Unsigned 32-bit integer
    rnsap.ctfc12bit  ctfc12bit
        Unsigned 32-bit integer
        INTEGER_0_4095
    rnsap.ctfc16bit  ctfc16bit
        Unsigned 32-bit integer
        INTEGER_0_65535
    rnsap.ctfc2bit  ctfc2bit
        Unsigned 32-bit integer
        INTEGER_0_3
    rnsap.ctfc4bit  ctfc4bit
        Unsigned 32-bit integer
        INTEGER_0_15
    rnsap.ctfc6bit  ctfc6bit
        Unsigned 32-bit integer
        INTEGER_0_63
    rnsap.ctfc8bit  ctfc8bit
        Unsigned 32-bit integer
        INTEGER_0_255
    rnsap.ctfcmaxbit  ctfcmaxbit
        Unsigned 32-bit integer
        INTEGER_0_maxCTFC
    rnsap.dATA_ID  dATA-ID
        Unsigned 32-bit integer
    rnsap.dCHInformationResponse  dCHInformationResponse
        No value
        DCH_InformationResponseList_RL_ReconfReadyFDD
    rnsap.dCH_ID  dCH-ID
        Unsigned 32-bit integer
    rnsap.dCH_Information  dCH-Information
        No value
        DCH_Information_RL_AdditionRspTDD
    rnsap.dCH_InformationResponse  dCH-InformationResponse
        Unsigned 32-bit integer
    rnsap.dCH_Rate_Information  dCH-Rate-Information
        Unsigned 32-bit integer
        DCH_Rate_Information_RL_CongestInd
    rnsap.dCH_SpecificInformationList  dCH-SpecificInformationList
        Unsigned 32-bit integer
        DCH_Specific_FDD_InformationList
    rnsap.dCH_id  dCH-id
        Unsigned 32-bit integer
    rnsap.dCHsInformationResponseList  dCHsInformationResponseList
        No value
        DCH_InformationResponseList_RL_ReconfRspFDD
    rnsap.dGANSSThreshold  dGANSSThreshold
        No value
    rnsap.dGANSS_Information  dGANSS-Information
        Unsigned 32-bit integer
    rnsap.dGANSS_Information_item  dGANSS-Information item
        No value
    rnsap.dGANSS_ReferenceTime  dGANSS-ReferenceTime
        Unsigned 32-bit integer
        INTEGER_0_119
    rnsap.dGANSS_SignalInformation  dGANSS-SignalInformation
        Unsigned 32-bit integer
    rnsap.dGANSS_SignalInformation_item  dGANSS-SignalInformation item
        No value
    rnsap.dGANSS_Signal_ID  dGANSS-Signal-ID
        Byte array
        BIT_STRING_SIZE_8
    rnsap.dGPSCorrections  dGPSCorrections
        No value
    rnsap.dGPSThreshold  dGPSThreshold
        No value
    rnsap.dLReferencePower  dLReferencePower
        Signed 32-bit integer
        DL_Power
    rnsap.dLReferencePowerList  dLReferencePowerList
        Unsigned 32-bit integer
        DL_ReferencePowerInformationList
    rnsap.dL_CodeInformationList_RL_ReconfResp  dL-CodeInformationList-RL-ReconfResp
        No value
        DL_CodeInformationList_RL_ReconfRspFDD
    rnsap.dL_Code_Information  dL-Code-Information
        Unsigned 32-bit integer
        TDD_DL_Code_Information
    rnsap.dL_Code_Information768  dL-Code-Information768
        Unsigned 32-bit integer
        TDD_DL_Code_Information768
    rnsap.dL_Code_LCR_Information  dL-Code-LCR-Information
        Unsigned 32-bit integer
        TDD_DL_Code_LCR_Information
    rnsap.dL_EARFCN  dL-EARFCN
        Unsigned 32-bit integer
        EARFCN
    rnsap.dL_FrameType  dL-FrameType
        Unsigned 32-bit integer
    rnsap.dL_PowerBalancing_ActivationIndicator  dL-PowerBalancing-ActivationIndicator
        Unsigned 32-bit integer
    rnsap.dL_PowerBalancing_Information  dL-PowerBalancing-Information
        No value
    rnsap.dL_PowerBalancing_UpdatedIndicator  dL-PowerBalancing-UpdatedIndicator
        Unsigned 32-bit integer
    rnsap.dL_TimeSlot_ISCP  dL-TimeSlot-ISCP
        Unsigned 32-bit integer
        DL_TimeSlot_ISCP_Info
    rnsap.dL_TimeSlot_ISCP_Info  dL-TimeSlot-ISCP-Info
        Unsigned 32-bit integer
    rnsap.dL_TimeslotISCP  dL-TimeslotISCP
        Unsigned 32-bit integer
    rnsap.dL_TimeslotLCR_Info  dL-TimeslotLCR-Info
        Unsigned 32-bit integer
        DL_TimeslotLCR_Information
    rnsap.dL_TimeslotLCR_Information  dL-TimeslotLCR-Information
        Unsigned 32-bit integer
    rnsap.dL_Timeslot_ISCP  dL-Timeslot-ISCP
        No value
        UE_MeasurementValue_DL_Timeslot_ISCP
    rnsap.dL_Timeslot_Information  dL-Timeslot-Information
        Unsigned 32-bit integer
    rnsap.dL_Timeslot_Information768  dL-Timeslot-Information768
        Unsigned 32-bit integer
    rnsap.dL_Timeslot_InformationList_PhyChReconfRqstTDD  dL-Timeslot-InformationList-PhyChReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.dL_Timeslot_InformationModifyList_RL_ReconfReadyTDD  dL-Timeslot-InformationModifyList-RL-ReconfReadyTDD
        Unsigned 32-bit integer
    rnsap.dL_Timeslot_LCR_Information  dL-Timeslot-LCR-Information
        Unsigned 32-bit integer
        DL_TimeslotLCR_Information
    rnsap.dL_Timeslot_LCR_InformationModifyList_RL_ReconfRqstTDD  dL-Timeslot-LCR-InformationModifyList-RL-ReconfRqstTDD
        Unsigned 32-bit integer
        DL_Timeslot_LCR_InformationModifyList_RL_ReconfRspTDD
    rnsap.dL_UARFCN  dL-UARFCN
        Unsigned 32-bit integer
        UARFCN
    rnsap.dPCHConstantValue  dPCHConstantValue
        Signed 32-bit integer
    rnsap.dPCH_ID  dPCH-ID
        Unsigned 32-bit integer
    rnsap.dPCH_ID768  dPCH-ID768
        Unsigned 32-bit integer
    rnsap.dRACControl  dRACControl
        Unsigned 32-bit integer
    rnsap.dRNTI  dRNTI
        Unsigned 32-bit integer
        D_RNTI
    rnsap.dRX_Information  dRX-Information
        No value
    rnsap.dRX_Information_to_Modify  dRX-Information-to-Modify
        Unsigned 32-bit integer
    rnsap.dRX_Information_to_Modify_LCR  dRX-Information-to-Modify-LCR
        Unsigned 32-bit integer
    rnsap.dSCH_FlowControlInformation  dSCH-FlowControlInformation
        Unsigned 32-bit integer
    rnsap.dSCH_ID  dSCH-ID
        Unsigned 32-bit integer
    rnsap.dSCH_InformationResponse  dSCH-InformationResponse
        No value
        DSCH_InformationResponse_RL_AdditionRspTDD
    rnsap.dSCH_SchedulingPriority  dSCH-SchedulingPriority
        Unsigned 32-bit integer
        SchedulingPriorityIndicator
    rnsap.dSCHsToBeAddedOrModified  dSCHsToBeAddedOrModified
        No value
        DSCHToBeAddedOrModified_RL_ReconfReadyTDD
    rnsap.dTX_Information  dTX-Information
        No value
    rnsap.dTX_Information_to_Modify  dTX-Information-to-Modify
        Unsigned 32-bit integer
    rnsap.d_RNTI  d-RNTI
        Unsigned 32-bit integer
    rnsap.dataBitAssistanceSgnList  dataBitAssistanceSgnList
        Unsigned 32-bit integer
        GANSS_DataBitAssistanceSgnList
    rnsap.dataBitAssistancelist  dataBitAssistancelist
        Unsigned 32-bit integer
        GANSS_DataBitAssistanceList
    rnsap.dataID  dataID
        Byte array
        BIT_STRING_SIZE_2
    rnsap.ddMode  ddMode
        Unsigned 32-bit integer
    rnsap.deactivate  deactivate
        No value
    rnsap.deactivation_type  deactivation-type
        Unsigned 32-bit integer
        Execution_Type
    rnsap.dedicatedMeasurementValue  dedicatedMeasurementValue
        Unsigned 32-bit integer
    rnsap.dedicatedMeasurementValueInformation  dedicatedMeasurementValueInformation
        Unsigned 32-bit integer
    rnsap.dedicated_HS_DSCH_RNTI_priorityQueueInfo_EnhancedFACH  dedicated-HS-DSCH-RNTI-priorityQueueInfo-EnhancedFACH
        Unsigned 32-bit integer
        PriorityQueue_InfoList_EnhancedFACH_PCH
    rnsap.dedicatedmeasurementValue  dedicatedmeasurementValue
        Unsigned 32-bit integer
    rnsap.defaultMidamble  defaultMidamble
        No value
    rnsap.defaultPreferredFrequency  defaultPreferredFrequency
        Unsigned 32-bit integer
        UARFCN
    rnsap.degreesOfLatitude  degreesOfLatitude
        Unsigned 32-bit integer
        INTEGER_0_2147483647
    rnsap.degreesOfLongitude  degreesOfLongitude
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rnsap.delayed_activation_update  delayed-activation-update
        Unsigned 32-bit integer
        DelayedActivationUpdate
    rnsap.deletePriorityQueue  deletePriorityQueue
        Unsigned 32-bit integer
        PriorityQueue_Id
    rnsap.deltaUT1  deltaUT1
        Byte array
        BIT_STRING_SIZE_31
    rnsap.deltaUT1dot  deltaUT1dot
        Byte array
        BIT_STRING_SIZE_19
    rnsap.delta_SIR1  delta-SIR1
        Unsigned 32-bit integer
        DeltaSIR
    rnsap.delta_SIR2  delta-SIR2
        Unsigned 32-bit integer
        DeltaSIR
    rnsap.delta_SIR_after1  delta-SIR-after1
        Unsigned 32-bit integer
        DeltaSIR
    rnsap.delta_SIR_after2  delta-SIR-after2
        Unsigned 32-bit integer
        DeltaSIR
    rnsap.delta_n_nav  delta-n-nav
        Byte array
        BIT_STRING_SIZE_16
    rnsap.delta_t_ls_utc  delta-t-ls-utc
        Byte array
        BIT_STRING_SIZE_8
    rnsap.delta_t_lsf_utc  delta-t-lsf-utc
        Byte array
        BIT_STRING_SIZE_8
    rnsap.dganss_Correction  dganss-Correction
        No value
        DGANSSCorrections
    rnsap.directionOfAltitude  directionOfAltitude
        Unsigned 32-bit integer
    rnsap.discardTimer  discardTimer
        Unsigned 32-bit integer
    rnsap.diversityControlField  diversityControlField
        Unsigned 32-bit integer
    rnsap.diversityIndication  diversityIndication
        Unsigned 32-bit integer
        DiversityIndication_RL_SetupRspFDD
    rnsap.diversityMode  diversityMode
        Unsigned 32-bit integer
    rnsap.dl_BLER  dl-BLER
        Signed 32-bit integer
        BLER
    rnsap.dl_CCTrCHInformation  dl-CCTrCHInformation
        No value
        DL_CCTrCHInformationList_RL_SetupRspTDD
    rnsap.dl_CCTrCHInformation768  dl-CCTrCHInformation768
        No value
        DL_CCTrCHInformationList_RL_SetupRspTDD768
    rnsap.dl_CCTrCH_ID  dl-CCTrCH-ID
        Unsigned 32-bit integer
        CCTrCH_ID
    rnsap.dl_CCTrCH_Information  dl-CCTrCH-Information
        No value
        DL_CCTrCH_InformationList_RL_ReconfReadyTDD
    rnsap.dl_CCTrCH_LCR_Information  dl-CCTrCH-LCR-Information
        No value
        DL_CCTrCH_LCR_InformationList_RL_AdditionRspTDD
    rnsap.dl_CodeInformation  dl-CodeInformation
        Unsigned 32-bit integer
        FDD_DL_CodeInformation
    rnsap.dl_CodeInformationList  dl-CodeInformationList
        No value
        DL_CodeInformationList_RL_ReconfReadyFDD
    rnsap.dl_DPCH_AddInformation  dl-DPCH-AddInformation
        No value
        DL_DPCH_InformationAddList_RL_ReconfReadyTDD
    rnsap.dl_DPCH_DeleteInformation  dl-DPCH-DeleteInformation
        No value
        DL_DPCH_InformationDeleteList_RL_ReconfReadyTDD
    rnsap.dl_DPCH_Information  dl-DPCH-Information
        No value
        DL_DPCH_InformationList_RL_SetupRspTDD
    rnsap.dl_DPCH_Information768  dl-DPCH-Information768
        No value
        DL_DPCH_InformationList_RL_SetupRspTDD768
    rnsap.dl_DPCH_LCR_Information  dl-DPCH-LCR-Information
        No value
        DL_DPCH_LCR_InformationList_RL_SetupRspTDD
    rnsap.dl_DPCH_ModifyInformation  dl-DPCH-ModifyInformation
        No value
        DL_DPCH_InformationModifyList_RL_ReconfReadyTDD
    rnsap.dl_DPCH_ModifyInformation_LCR  dl-DPCH-ModifyInformation-LCR
        No value
        DL_DPCH_InformationModifyList_LCR_RL_ReconfRspTDD
    rnsap.dl_DPCH_SlotFormat  dl-DPCH-SlotFormat
        Unsigned 32-bit integer
    rnsap.dl_InitialTX_Power  dl-InitialTX-Power
        Signed 32-bit integer
        DL_Power
    rnsap.dl_LCR_CCTrCHInformation  dl-LCR-CCTrCHInformation
        No value
        DL_LCR_CCTrCHInformationList_RL_SetupRspTDD
    rnsap.dl_PunctureLimit  dl-PunctureLimit
        Unsigned 32-bit integer
        PunctureLimit
    rnsap.dl_Reference_Power  dl-Reference-Power
        Signed 32-bit integer
        DL_Power
    rnsap.dl_ScramblingCode  dl-ScramblingCode
        Unsigned 32-bit integer
    rnsap.dl_TFCS  dl-TFCS
        No value
        TFCS
    rnsap.dl_TransportformatSet  dl-TransportformatSet
        No value
        TransportFormatSet
    rnsap.dl_cCTrCH_ID  dl-cCTrCH-ID
        Unsigned 32-bit integer
        CCTrCH_ID
    rnsap.dl_ccTrCHID  dl-ccTrCHID
        Unsigned 32-bit integer
        CCTrCH_ID
    rnsap.dl_transportFormatSet  dl-transportFormatSet
        No value
        TransportFormatSet
    rnsap.dn_utc  dn-utc
        Byte array
        BIT_STRING_SIZE_8
    rnsap.downlinkCellCapacityClassValue  downlinkCellCapacityClassValue
        Unsigned 32-bit integer
        INTEGER_1_100_
    rnsap.downlinkLoadValue  downlinkLoadValue
        Unsigned 32-bit integer
        INTEGER_0_100
    rnsap.downlinkNRTLoadInformationValue  downlinkNRTLoadInformationValue
        Unsigned 32-bit integer
        INTEGER_0_3
    rnsap.downlinkRTLoadValue  downlinkRTLoadValue
        Unsigned 32-bit integer
        INTEGER_0_100
    rnsap.downlinkStepSize  downlinkStepSize
        Unsigned 32-bit integer
        TDD_TPC_DownlinkStepSize
    rnsap.downlink_Compressed_Mode_Method  downlink-Compressed-Mode-Method
        Unsigned 32-bit integer
    rnsap.dsField  dsField
        Byte array
    rnsap.dsch_ID  dsch-ID
        Unsigned 32-bit integer
    rnsap.dsch_InformationResponse  dsch-InformationResponse
        No value
        DSCH_InformationResponse_RL_SetupRspTDD
    rnsap.dsch_LCR_InformationResponse  dsch-LCR-InformationResponse
        No value
        DSCH_LCR_InformationResponse_RL_SetupRspTDD
    rnsap.dynamicParts  dynamicParts
        Unsigned 32-bit integer
        TransportFormatSet_DynamicPartList
    rnsap.eAGCH_ChannelisationCode  eAGCH-ChannelisationCode
        Unsigned 32-bit integer
        FDD_DL_ChannelisationCodeNumber
    rnsap.eAGCH_ERGCH_EHICH_FDD_ScramblingCode  eAGCH-ERGCH-EHICH-FDD-ScramblingCode
        Unsigned 32-bit integer
        DL_ScramblingCode
    rnsap.eARFCN_Information  eARFCN-Information
        Unsigned 32-bit integer
    rnsap.eCGI  eCGI
        No value
    rnsap.eDCHLogicalChannelInformation  eDCHLogicalChannelInformation
        Unsigned 32-bit integer
        E_DCH_LogicalChannelInformation
    rnsap.eDCH_Additional_RL_ID  eDCH-Additional-RL-ID
        Unsigned 32-bit integer
        RL_ID
    rnsap.eDCH_Additional_RL_Specific_Information_Response  eDCH-Additional-RL-Specific-Information-Response
        Unsigned 32-bit integer
        EDCH_Additional_RL_Specific_Information_Response_List
    rnsap.eDCH_Additional_RL_Specific_Modified_Information_Response  eDCH-Additional-RL-Specific-Modified-Information-Response
        Unsigned 32-bit integer
        EDCH_Additional_RL_Specific_Modified_Information_Response_List
    rnsap.eDCH_DDI_Value  eDCH-DDI-Value
        Unsigned 32-bit integer
    rnsap.eDCH_FDD_DL_ControlChannelInformation  eDCH-FDD-DL-ControlChannelInformation
        No value
    rnsap.eDCH_Grant_TypeTDD  eDCH-Grant-TypeTDD
        Unsigned 32-bit integer
        E_DCH_Grant_TypeTDD
    rnsap.eDCH_Grant_Type_Information  eDCH-Grant-Type-Information
        Unsigned 32-bit integer
        E_DCH_Grant_Type_Information
    rnsap.eDCH_HARQ_PO_FDD  eDCH-HARQ-PO-FDD
        Unsigned 32-bit integer
        E_DCH_HARQ_PO_FDD
    rnsap.eDCH_HARQ_PO_TDD  eDCH-HARQ-PO-TDD
        Unsigned 32-bit integer
        E_DCH_HARQ_PO_TDD
    rnsap.eDCH_LogicalChannelToAdd  eDCH-LogicalChannelToAdd
        Unsigned 32-bit integer
        E_DCH_LogicalChannelInformation
    rnsap.eDCH_LogicalChannelToDelete  eDCH-LogicalChannelToDelete
        Unsigned 32-bit integer
        E_DCH_LogicalChannelToDelete
    rnsap.eDCH_LogicalChannelToModify  eDCH-LogicalChannelToModify
        Unsigned 32-bit integer
        E_DCH_LogicalChannelToModify
    rnsap.eDCH_MACdFlow_ID  eDCH-MACdFlow-ID
        Unsigned 32-bit integer
    rnsap.eDCH_MACdFlow_Multiplexing_List  eDCH-MACdFlow-Multiplexing-List
        Byte array
        E_DCH_MACdFlow_Multiplexing_List
    rnsap.eDCH_MACdFlow_Specific_Information  eDCH-MACdFlow-Specific-Information
        Unsigned 32-bit integer
        EDCH_MACdFlow_Specific_InfoToModifyList
    rnsap.eDCH_MACdFlow_Specific_InformationResponse  eDCH-MACdFlow-Specific-InformationResponse
        Unsigned 32-bit integer
    rnsap.eDCH_MACdFlows_Information  eDCH-MACdFlows-Information
        No value
    rnsap.eHICH_SignatureSequence  eHICH-SignatureSequence
        Unsigned 32-bit integer
    rnsap.eRGCH_EHICH_ChannelisationCode  eRGCH-EHICH-ChannelisationCode
        Unsigned 32-bit integer
        FDD_DL_ChannelisationCodeNumber
    rnsap.eRGCH_SignatureSequence  eRGCH-SignatureSequence
        Unsigned 32-bit integer
    rnsap.e_AGCH_DRX_Information_LCR  e-AGCH-DRX-Information-LCR
        Unsigned 32-bit integer
    rnsap.e_AGCH_DRX_Information_ResponseLCR  e-AGCH-DRX-Information-ResponseLCR
        Unsigned 32-bit integer
    rnsap.e_AGCH_DRX_Parameters  e-AGCH-DRX-Parameters
        No value
    rnsap.e_AGCH_DRX_Parameters_Response  e-AGCH-DRX-Parameters-Response
        No value
    rnsap.e_AGCH_PowerOffset  e-AGCH-PowerOffset
        Unsigned 32-bit integer
    rnsap.e_AGCH_Specific_Information_Response768TDD  e-AGCH-Specific-Information-Response768TDD
        Unsigned 32-bit integer
        E_AGCH_Specific_InformationRespList768TDD
    rnsap.e_AGCH_Specific_Information_ResponseTDD  e-AGCH-Specific-Information-ResponseTDD
        Unsigned 32-bit integer
        E_AGCH_Specific_InformationRespListTDD
    rnsap.e_AGCH_Specific_Information_Response_LCR_TDD  e-AGCH-Specific-Information-Response-LCR-TDD
        Unsigned 32-bit integer
        E_AGCH_Specific_InformationRespList_LCR_TDD
    rnsap.e_AGCH_UE_DRX_Cycle_LCR  e-AGCH-UE-DRX-Cycle-LCR
        Unsigned 32-bit integer
        UE_DRX_Cycle_LCR
    rnsap.e_AGCH_UE_DRX_Offset_LCR  e-AGCH-UE-DRX-Offset-LCR
        Unsigned 32-bit integer
        UE_DRX_Offset_LCR
    rnsap.e_AGCH_UE_Inactivity_Monitor_Threshold  e-AGCH-UE-Inactivity-Monitor-Threshold
        Unsigned 32-bit integer
    rnsap.e_DCH_FDD_DL_Control_Channel_Info  e-DCH-FDD-DL-Control-Channel-Info
        No value
        EDCH_FDD_DL_ControlChannelInformation
    rnsap.e_DCH_LCR_TDD_Information  e-DCH-LCR-TDD-Information
        No value
    rnsap.e_DCH_LogicalChannelToAdd  e-DCH-LogicalChannelToAdd
        Unsigned 32-bit integer
        E_DCH_LogicalChannelInformation
    rnsap.e_DCH_LogicalChannelToDelete  e-DCH-LogicalChannelToDelete
        Unsigned 32-bit integer
    rnsap.e_DCH_LogicalChannelToModify  e-DCH-LogicalChannelToModify
        Unsigned 32-bit integer
    rnsap.e_DCH_MACdFlow_ID  e-DCH-MACdFlow-ID
        Unsigned 32-bit integer
        EDCH_MACdFlow_ID
    rnsap.e_DCH_MACdFlow_Specific_UpdateInformation  e-DCH-MACdFlow-Specific-UpdateInformation
        Unsigned 32-bit integer
    rnsap.e_DCH_MACdFlows_Information_TDD  e-DCH-MACdFlows-Information-TDD
        Unsigned 32-bit integer
    rnsap.e_DCH_MACdFlows_to_Add  e-DCH-MACdFlows-to-Add
        Unsigned 32-bit integer
        E_DCH_MACdFlows_Information_TDD
    rnsap.e_DCH_MACdFlows_to_Delete  e-DCH-MACdFlows-to-Delete
        Unsigned 32-bit integer
        EDCH_MACdFlows_To_Delete
    rnsap.e_DCH_MacdFlow_Id  e-DCH-MacdFlow-Id
        Unsigned 32-bit integer
        EDCH_MACdFlow_ID
    rnsap.e_DCH_Maximum_Bitrate  e-DCH-Maximum-Bitrate
        Unsigned 32-bit integer
    rnsap.e_DCH_Min_Set_E_TFCI  e-DCH-Min-Set-E-TFCI
        Unsigned 32-bit integer
        E_TFCI
    rnsap.e_DCH_Non_Scheduled_Grant_Info  e-DCH-Non-Scheduled-Grant-Info
        No value
    rnsap.e_DCH_Non_Scheduled_Grant_Info768  e-DCH-Non-Scheduled-Grant-Info768
        No value
    rnsap.e_DCH_Non_Scheduled_Grant_Info_LCR  e-DCH-Non-Scheduled-Grant-Info-LCR
        No value
    rnsap.e_DCH_Non_Scheduled_Transmission_Grant  e-DCH-Non-Scheduled-Transmission-Grant
        No value
        E_DCH_Non_Scheduled_Transmission_Grant_Items
    rnsap.e_DCH_Physical_Layer_Category_LCR  e-DCH-Physical-Layer-Category-LCR
        Unsigned 32-bit integer
    rnsap.e_DCH_PowerOffset_for_SchedulingInfo  e-DCH-PowerOffset-for-SchedulingInfo
        Unsigned 32-bit integer
    rnsap.e_DCH_Processing_Overload_Level  e-DCH-Processing-Overload-Level
        Unsigned 32-bit integer
    rnsap.e_DCH_QPSK_RefBetaInfo  e-DCH-QPSK-RefBetaInfo
        Unsigned 32-bit integer
    rnsap.e_DCH_RL_ID  e-DCH-RL-ID
        Unsigned 32-bit integer
        RL_ID
    rnsap.e_DCH_RL_InformationList_Rsp  e-DCH-RL-InformationList-Rsp
        Unsigned 32-bit integer
    rnsap.e_DCH_RL_Set_ID  e-DCH-RL-Set-ID
        Unsigned 32-bit integer
        RL_Set_ID
    rnsap.e_DCH_Reference_Power_Offset  e-DCH-Reference-Power-Offset
        Unsigned 32-bit integer
    rnsap.e_DCH_SPS_Deactivate_Indicator_LCR  e-DCH-SPS-Deactivate-Indicator-LCR
        No value
    rnsap.e_DCH_SPS_HICH_Information  e-DCH-SPS-HICH-Information
        No value
    rnsap.e_DCH_SPS_Indicator  e-DCH-SPS-Indicator
        Byte array
    rnsap.e_DCH_SPS_Reservation_Indicator  e-DCH-SPS-Reservation-Indicator
        Unsigned 32-bit integer
        SPS_Reservation_Indicator
    rnsap.e_DCH_Scheduled_Transmission_Grant  e-DCH-Scheduled-Transmission-Grant
        No value
    rnsap.e_DCH_Semi_PersistentScheduling_Information_LCR  e-DCH-Semi-PersistentScheduling-Information-LCR
        No value
    rnsap.e_DCH_Semi_PersistentScheduling_Information_to_Modify_LCR  e-DCH-Semi-PersistentScheduling-Information-to-Modify-LCR
        No value
    rnsap.e_DCH_Serving_RL_Id  e-DCH-Serving-RL-Id
        Unsigned 32-bit integer
        RL_ID
    rnsap.e_DCH_Serving_RL_in_this_DRNS  e-DCH-Serving-RL-in-this-DRNS
        No value
        EDCH_Serving_RL_in_this_DRNS
    rnsap.e_DCH_Serving_RL_not_in_this_DRNS  e-DCH-Serving-RL-not-in-this-DRNS
        No value
    rnsap.e_DCH_TDD_Information  e-DCH-TDD-Information
        No value
    rnsap.e_DCH_TDD_Information768  e-DCH-TDD-Information768
        No value
    rnsap.e_DCH_TDD_Information_to_Modify  e-DCH-TDD-Information-to-Modify
        No value
    rnsap.e_DCH_TDD_Information_to_Modify_List  e-DCH-TDD-Information-to-Modify-List
        Unsigned 32-bit integer
    rnsap.e_DCH_TDD_MACdFlow_Specific_InformationResp  e-DCH-TDD-MACdFlow-Specific-InformationResp
        Unsigned 32-bit integer
    rnsap.e_DCH_TDD_Maximum_Bitrate  e-DCH-TDD-Maximum-Bitrate
        Unsigned 32-bit integer
    rnsap.e_DCH_TDD_Maximum_Bitrate768  e-DCH-TDD-Maximum-Bitrate768
        Unsigned 32-bit integer
    rnsap.e_DCH_TFCI_Table_Index  e-DCH-TFCI-Table-Index
        Unsigned 32-bit integer
    rnsap.e_DCH_TTI_Length  e-DCH-TTI-Length
        Unsigned 32-bit integer
    rnsap.e_DCH_TTI_Length_to_Modify  e-DCH-TTI-Length-to-Modify
        Unsigned 32-bit integer
    rnsap.e_DCH_reconfigured_RL_Id  e-DCH-reconfigured-RL-Id
        Unsigned 32-bit integer
        RL_ID
    rnsap.e_DCH_serving_cell_change_successful  e-DCH-serving-cell-change-successful
        No value
    rnsap.e_DCH_serving_cell_change_unsuccessful  e-DCH-serving-cell-change-unsuccessful
        No value
    rnsap.e_DCH_serving_cell_outcome_choice  e-DCH-serving-cell-outcome-choice
        Unsigned 32-bit integer
        E_DCH_serving_cell_change_choice
    rnsap.e_DCH_sixteenQAM_RefBetaInfo  e-DCH-sixteenQAM-RefBetaInfo
        Unsigned 32-bit integer
    rnsap.e_DPCCH_PO  e-DPCCH-PO
        Unsigned 32-bit integer
    rnsap.e_HICH_Configuration  e-HICH-Configuration
        Unsigned 32-bit integer
    rnsap.e_HICH_EI  e-HICH-EI
        Unsigned 32-bit integer
    rnsap.e_HICH_Information_Response  e-HICH-Information-Response
        No value
        E_HICH_InformationResp
    rnsap.e_HICH_Information_Response768  e-HICH-Information-Response768
        No value
        E_HICH_InformationResp768
    rnsap.e_HICH_PowerOffset  e-HICH-PowerOffset
        Unsigned 32-bit integer
    rnsap.e_HICH_Scheduled_InformationResp_LCR  e-HICH-Scheduled-InformationResp-LCR
        Unsigned 32-bit integer
        E_HICH_Scheduled_InformationRespList_LCR_TDD
    rnsap.e_HICH_Specific_Information_Response_LCR  e-HICH-Specific-Information-Response-LCR
        No value
        E_HICH_Specific_InformationResp_LCR
    rnsap.e_HICH_TimeOffset  e-HICH-TimeOffset
        Unsigned 32-bit integer
    rnsap.e_HICH_TimeOffset_lcr  e-HICH-TimeOffset-lcr
        Unsigned 32-bit integer
    rnsap.e_HICH_non_Scheduled_InformationResp_LCR  e-HICH-non-Scheduled-InformationResp-LCR
        No value
        E_HICH_InformationResp_LCR
    rnsap.e_PUCH_Information  e-PUCH-Information
        No value
    rnsap.e_PUCH_LCR_Information  e-PUCH-LCR-Information
        No value
    rnsap.e_PUCH_TPC_Step_Size  e-PUCH-TPC-Step-Size
        Unsigned 32-bit integer
        TDD_TPC_UplinkStepSize_LCR
    rnsap.e_RGCH_2_IndexStepThreshold  e-RGCH-2-IndexStepThreshold
        Unsigned 32-bit integer
    rnsap.e_RGCH_3_IndexStepThreshold  e-RGCH-3-IndexStepThreshold
        Unsigned 32-bit integer
    rnsap.e_RGCH_PowerOffset  e-RGCH-PowerOffset
        Unsigned 32-bit integer
    rnsap.e_RGCH_Release_Indicator  e-RGCH-Release-Indicator
        Unsigned 32-bit integer
    rnsap.e_RNTI  e-RNTI
        Unsigned 32-bit integer
    rnsap.e_TFCI_BetaEC_Boost  e-TFCI-BetaEC-Boost
        Unsigned 32-bit integer
    rnsap.e_TFCS_Information  e-TFCS-Information
        No value
    rnsap.e_TFCS_Information_TDD  e-TFCS-Information-TDD
        No value
    rnsap.e_TTI  e-TTI
        Unsigned 32-bit integer
    rnsap.e_UTRAN_Cell_ID  e-UTRAN-Cell-ID
        Byte array
        BIT_STRING_SIZE_28
    rnsap.eightPSK  eightPSK
        Unsigned 32-bit integer
        EightPSK_DL_DPCH_TimeSlotFormatTDD_LCR
    rnsap.ellipsoidArc  ellipsoidArc
        No value
        GA_EllipsoidArc
    rnsap.enabling_Delay  enabling-Delay
        Unsigned 32-bit integer
    rnsap.endCode  endCode
        Unsigned 32-bit integer
        TDD_ChannelisationCode
    rnsap.enhanced_PrimaryCPICH_EcNo  enhanced-PrimaryCPICH-EcNo
        Unsigned 32-bit integer
    rnsap.event1h  event1h
        No value
        UEMeasurementReportCharacteristicsEvent1h
    rnsap.event1i  event1i
        No value
        UEMeasurementReportCharacteristicsEvent1i
    rnsap.event6a  event6a
        No value
        UEMeasurementReportCharacteristicsEvent6a
    rnsap.event6b  event6b
        No value
        UEMeasurementReportCharacteristicsEvent6b
    rnsap.event6c  event6c
        No value
        UEMeasurementReportCharacteristicsEvent6c
    rnsap.event6d  event6d
        No value
        UEMeasurementReportCharacteristicsEvent6d
    rnsap.eventA  eventA
        No value
    rnsap.eventB  eventB
        No value
    rnsap.eventC  eventC
        No value
    rnsap.eventD  eventD
        No value
    rnsap.eventE  eventE
        No value
    rnsap.eventF  eventF
        No value
    rnsap.explicit  explicit
        No value
        E_HICH_InformationResp_ExplicitConfiguration_LCR
    rnsap.extendedPropagationDelay  extendedPropagationDelay
        Unsigned 32-bit integer
    rnsap.extended_HS_SICH_ID  extended-HS-SICH-ID
        Unsigned 32-bit integer
        HS_SICH_ID_Extension
    rnsap.extensionValue  extensionValue
        No value
    rnsap.extension_CommonMeasurementValue  extension-CommonMeasurementValue
        No value
    rnsap.extension_DedicatedMeasurementValue  extension-DedicatedMeasurementValue
        No value
    rnsap.extension_GANSS_AlmanacModel  extension-GANSS-AlmanacModel
        No value
    rnsap.extension_IPDLParameters  extension-IPDLParameters
        No value
    rnsap.extension_InformationExchangeObjectType_InfEx_Rprt  extension-InformationExchangeObjectType-InfEx-Rprt
        No value
    rnsap.extension_InformationExchangeObjectType_InfEx_Rqst  extension-InformationExchangeObjectType-InfEx-Rqst
        No value
    rnsap.extension_InformationExchangeObjectType_InfEx_Rsp  extension-InformationExchangeObjectType-InfEx-Rsp
        No value
    rnsap.extension_MeasurementIncreaseDecreaseThreshold  extension-MeasurementIncreaseDecreaseThreshold
        No value
    rnsap.extension_MeasurementThreshold  extension-MeasurementThreshold
        No value
    rnsap.extension_ReportCharacteristics  extension-ReportCharacteristics
        No value
    rnsap.extension_UEMeasurementThreshold  extension-UEMeasurementThreshold
        No value
        UEMeasurementThreshold_Extension
    rnsap.extension_UEMeasurementValue  extension-UEMeasurementValue
        No value
        UEMeasurementValue_Extension
    rnsap.extension_neighbouringCellMeasurementInformation  extension-neighbouringCellMeasurementInformation
        No value
    rnsap.extension_neighbouringCellMeasurementInformation768  extension-neighbouringCellMeasurementInformation768
        No value
    rnsap.fACH_FlowControlInformation  fACH-FlowControlInformation
        No value
        FACH_FlowControlInformation_CTCH_ResourceRspFDD
    rnsap.fACH_InformationList  fACH-InformationList
        Unsigned 32-bit integer
    rnsap.fACH_InitialWindowSize  fACH-InitialWindowSize
        Unsigned 32-bit integer
    rnsap.fACH_SchedulingPriority  fACH-SchedulingPriority
        Unsigned 32-bit integer
        SchedulingPriorityIndicator
    rnsap.fDD  fDD
        No value
        EARFCN_FDD
    rnsap.fDD_DL_ChannelisationCodeNumber  fDD-DL-ChannelisationCodeNumber
        Unsigned 32-bit integer
    rnsap.fPACH_info  fPACH-info
        No value
        FPACH_Information
    rnsap.f_DPCH_SlotFormat  f-DPCH-SlotFormat
        Unsigned 32-bit integer
    rnsap.f_DPCH_SlotFormatSupportRequest  f-DPCH-SlotFormatSupportRequest
        No value
    rnsap.failed_HS_SICH  failed-HS-SICH
        Unsigned 32-bit integer
        HS_SICH_failed
    rnsap.fdd_TPC_DownlinkStepSize  fdd-TPC-DownlinkStepSize
        Unsigned 32-bit integer
    rnsap.fdd_dl_TPC_DownlinkStepSize  fdd-dl-TPC-DownlinkStepSize
        Unsigned 32-bit integer
        FDD_TPC_DownlinkStepSize
    rnsap.firstRLS_Indicator  firstRLS-Indicator
        Unsigned 32-bit integer
    rnsap.firstRLS_indicator  firstRLS-indicator
        Unsigned 32-bit integer
    rnsap.first_TDD_ChannelisationCode  first-TDD-ChannelisationCode
        Unsigned 32-bit integer
        TDD_ChannelisationCode
    rnsap.fit_interval_flag_nav  fit-interval-flag-nav
        Byte array
        BIT_STRING_SIZE_1
    rnsap.frameHandlingPriority  frameHandlingPriority
        Unsigned 32-bit integer
    rnsap.frameOffset  frameOffset
        Unsigned 32-bit integer
    rnsap.gANSS_AlmanacModel  gANSS-AlmanacModel
        Unsigned 32-bit integer
    rnsap.gANSS_CommonDataInfoReq  gANSS-CommonDataInfoReq
        No value
    rnsap.gANSS_GenericDataInfoReqList  gANSS-GenericDataInfoReqList
        Unsigned 32-bit integer
    rnsap.gANSS_IonosphereRegionalStormFlags  gANSS-IonosphereRegionalStormFlags
        No value
    rnsap.gANSS_SatelliteInformationKP  gANSS-SatelliteInformationKP
        Unsigned 32-bit integer
    rnsap.gANSS_SignalId  gANSS-SignalId
        Unsigned 32-bit integer
        GANSS_Signal_ID
    rnsap.gANSS_StatusHealth  gANSS-StatusHealth
        Unsigned 32-bit integer
    rnsap.gANSS_iod  gANSS-iod
        Byte array
        BIT_STRING_SIZE_10
    rnsap.gANSS_keplerianParameters  gANSS-keplerianParameters
        No value
    rnsap.gA_AccessPointPosition  gA-AccessPointPosition
        No value
    rnsap.gA_AccessPointPositionwithAltitude  gA-AccessPointPositionwithAltitude
        No value
        GA_AccessPointPositionwithOptionalAltitude
    rnsap.gA_Cell  gA-Cell
        Unsigned 32-bit integer
    rnsap.gA_CellAdditionalShapes  gA-CellAdditionalShapes
        Unsigned 32-bit integer
    rnsap.gERAN_SI_Type  gERAN-SI-Type
        Unsigned 32-bit integer
    rnsap.gERAN_SI_block  gERAN-SI-block
        Byte array
        OCTET_STRING_SIZE_1_23
    rnsap.gPSInformation  gPSInformation
        Unsigned 32-bit integer
    rnsap.gPSInformationItem  gPSInformationItem
        Unsigned 32-bit integer
    rnsap.gPSTOW  gPSTOW
        Unsigned 32-bit integer
    rnsap.gPS_Almanac  gPS-Almanac
        No value
    rnsap.gPS_Ionospheric_Model  gPS-Ionospheric-Model
        No value
    rnsap.gPS_NavigationModel_and_TimeRecovery  gPS-NavigationModel-and-TimeRecovery
        Unsigned 32-bit integer
    rnsap.gPS_RX_POS  gPS-RX-POS
        No value
    rnsap.gPS_RealTime_Integrity  gPS-RealTime-Integrity
        Unsigned 32-bit integer
    rnsap.gPS_Status_Health  gPS-Status-Health
        Unsigned 32-bit integer
    rnsap.gPS_UTC_Model  gPS-UTC-Model
        No value
    rnsap.ganssAddClockModels  ganssAddClockModels
        Unsigned 32-bit integer
        GANSS_AddClockModels
    rnsap.ganssAddOrbitModels  ganssAddOrbitModels
        Unsigned 32-bit integer
        GANSS_AddOrbitModels
    rnsap.ganssClockModel  ganssClockModel
        Unsigned 32-bit integer
        GANSS_Clock_Model
    rnsap.ganssDataBits  ganssDataBits
        Byte array
        BIT_STRING_SIZE_1_1024
    rnsap.ganssDay  ganssDay
        Unsigned 32-bit integer
        INTEGER_0_8191
    rnsap.ganssID1  ganssID1
        Unsigned 32-bit integer
        GANSS_AuxInfoGANSS_ID1
    rnsap.ganssID3  ganssID3
        Unsigned 32-bit integer
        GANSS_AuxInfoGANSS_ID3
    rnsap.ganssOrbitModel  ganssOrbitModel
        Unsigned 32-bit integer
        GANSS_Orbit_Model
    rnsap.ganssSatInfoNav  ganssSatInfoNav
        Unsigned 32-bit integer
        GANSS_Sat_Info_Nav
    rnsap.ganssSatInfoNavList  ganssSatInfoNavList
        Unsigned 32-bit integer
        Ganss_Sat_Info_AddNavList
    rnsap.ganssTod  ganssTod
        Unsigned 32-bit integer
        INTEGER_0_59_
    rnsap.ganss_Almanac  ganss-Almanac
        Boolean
        BOOLEAN
    rnsap.ganss_DataBitInterval  ganss-DataBitInterval
        Unsigned 32-bit integer
        INTEGER_0_15
    rnsap.ganss_Data_Bit_Assistance  ganss-Data-Bit-Assistance
        No value
    rnsap.ganss_Data_Bit_Assistance_Req  ganss-Data-Bit-Assistance-Req
        No value
        GANSS_Data_Bit_Assistance_ReqItem
    rnsap.ganss_Data_Bit_Assistance_ReqList  ganss-Data-Bit-Assistance-ReqList
        No value
    rnsap.ganss_Id  ganss-Id
        Unsigned 32-bit integer
    rnsap.ganss_Ionospheric_Model  ganss-Ionospheric-Model
        No value
    rnsap.ganss_Navigation_Model_And_Time_Recovery  ganss-Navigation-Model-And-Time-Recovery
        Boolean
        BOOLEAN
    rnsap.ganss_Real_Time_Integrity  ganss-Real-Time-Integrity
        Boolean
        BOOLEAN
    rnsap.ganss_Rx_Pos  ganss-Rx-Pos
        No value
    rnsap.ganss_SatelliteInfo  ganss-SatelliteInfo
        Unsigned 32-bit integer
    rnsap.ganss_SatelliteInfo_item  ganss-SatelliteInfo item
        Unsigned 32-bit integer
        INTEGER_0_63
    rnsap.ganss_SignalId  ganss-SignalId
        Unsigned 32-bit integer
        GANSS_Signal_ID
    rnsap.ganss_Time_Model  ganss-Time-Model
        No value
    rnsap.ganss_Time_Model_GNSS_GNSS  ganss-Time-Model-GNSS-GNSS
        Byte array
        BIT_STRING_SIZE_9
    rnsap.ganss_Transmission_Time  ganss-Transmission-Time
        No value
    rnsap.ganss_UTC_Model  ganss-UTC-Model
        Boolean
        BOOLEAN
    rnsap.ganss_UTC_TIME  ganss-UTC-TIME
        No value
        GANSS_UTC_Model
    rnsap.ganss_af_one_alm  ganss-af-one-alm
        Byte array
        BIT_STRING_SIZE_11
    rnsap.ganss_af_zero_alm  ganss-af-zero-alm
        Byte array
        BIT_STRING_SIZE_14
    rnsap.ganss_delta_I_alm  ganss-delta-I-alm
        Byte array
        BIT_STRING_SIZE_11
    rnsap.ganss_delta_a_sqrt_alm  ganss-delta-a-sqrt-alm
        Byte array
        BIT_STRING_SIZE_17
    rnsap.ganss_e_alm  ganss-e-alm
        Byte array
        BIT_STRING_SIZE_11
    rnsap.ganss_e_nav  ganss-e-nav
        Byte array
        BIT_STRING_SIZE_32
    rnsap.ganss_m_zero_alm  ganss-m-zero-alm
        Byte array
        BIT_STRING_SIZE_16
    rnsap.ganss_omega_alm  ganss-omega-alm
        Byte array
        BIT_STRING_SIZE_16
    rnsap.ganss_omega_nav  ganss-omega-nav
        Byte array
        BIT_STRING_SIZE_32
    rnsap.ganss_omegadot_alm  ganss-omegadot-alm
        Byte array
        BIT_STRING_SIZE_11
    rnsap.ganss_omegazero_alm  ganss-omegazero-alm
        Byte array
        BIT_STRING_SIZE_16
    rnsap.ganss_prc  ganss-prc
        Signed 32-bit integer
        INTEGER_M2047_2047
    rnsap.ganss_rrc  ganss-rrc
        Signed 32-bit integer
        INTEGER_M127_127
    rnsap.ganss_svhealth_alm  ganss-svhealth-alm
        Byte array
        BIT_STRING_SIZE_4
    rnsap.ganss_t_a0  ganss-t-a0
        Signed 32-bit integer
        INTEGER_M2147483648_2147483647
    rnsap.ganss_t_a1  ganss-t-a1
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rnsap.ganss_t_a2  ganss-t-a2
        Signed 32-bit integer
        INTEGER_M64_63
    rnsap.ganss_time_model_Ref_Time  ganss-time-model-Ref-Time
        Unsigned 32-bit integer
        INTEGER_0_37799
    rnsap.ganss_wk_number  ganss-wk-number
        Unsigned 32-bit integer
        INTEGER_0_255
    rnsap.generalCause  generalCause
        No value
        GeneralCauseList_RL_SetupFailureFDD
    rnsap.genericTrafficCategory  genericTrafficCategory
        Byte array
    rnsap.geographicalCoordinate  geographicalCoordinate
        No value
    rnsap.geographicalCoordinates  geographicalCoordinates
        No value
        GeographicalCoordinate
    rnsap.gloAkmDeltaTA  gloAkmDeltaTA
        Byte array
        BIT_STRING_SIZE_22
    rnsap.gloAlmCA  gloAlmCA
        Byte array
        BIT_STRING_SIZE_1
    rnsap.gloAlmDeltaIA  gloAlmDeltaIA
        Byte array
        BIT_STRING_SIZE_18
    rnsap.gloAlmDeltaTdotA  gloAlmDeltaTdotA
        Byte array
        BIT_STRING_SIZE_7
    rnsap.gloAlmEpsilonA  gloAlmEpsilonA
        Byte array
        BIT_STRING_SIZE_15
    rnsap.gloAlmHA  gloAlmHA
        Byte array
        BIT_STRING_SIZE_5
    rnsap.gloAlmLambdaA  gloAlmLambdaA
        Byte array
        BIT_STRING_SIZE_21
    rnsap.gloAlmMA  gloAlmMA
        Byte array
        BIT_STRING_SIZE_2
    rnsap.gloAlmNA  gloAlmNA
        Byte array
        BIT_STRING_SIZE_11
    rnsap.gloAlmOmegaA  gloAlmOmegaA
        Byte array
        BIT_STRING_SIZE_16
    rnsap.gloAlmTauA  gloAlmTauA
        Byte array
        BIT_STRING_SIZE_10
    rnsap.gloAlmTlambdaA  gloAlmTlambdaA
        Byte array
        BIT_STRING_SIZE_21
    rnsap.gloAlmnA  gloAlmnA
        Byte array
        BIT_STRING_SIZE_5
    rnsap.gloDeltaTau  gloDeltaTau
        Byte array
        BIT_STRING_SIZE_5
    rnsap.gloEn  gloEn
        Byte array
        BIT_STRING_SIZE_5
    rnsap.gloGamma  gloGamma
        Byte array
        BIT_STRING_SIZE_11
    rnsap.gloM  gloM
        Byte array
        BIT_STRING_SIZE_2
    rnsap.gloP1  gloP1
        Byte array
        BIT_STRING_SIZE_2
    rnsap.gloP2  gloP2
        Byte array
        BIT_STRING_SIZE_1
    rnsap.gloTau  gloTau
        Byte array
        BIT_STRING_SIZE_22
    rnsap.gloX  gloX
        Byte array
        BIT_STRING_SIZE_27
    rnsap.gloXdot  gloXdot
        Byte array
        BIT_STRING_SIZE_24
    rnsap.gloXdotdot  gloXdotdot
        Byte array
        BIT_STRING_SIZE_5
    rnsap.gloY  gloY
        Byte array
        BIT_STRING_SIZE_27
    rnsap.gloYdot  gloYdot
        Byte array
        BIT_STRING_SIZE_24
    rnsap.gloYdotdot  gloYdotdot
        Byte array
        BIT_STRING_SIZE_5
    rnsap.gloZ  gloZ
        Byte array
        BIT_STRING_SIZE_27
    rnsap.gloZdot  gloZdot
        Byte array
        BIT_STRING_SIZE_24
    rnsap.gloZdotdot  gloZdotdot
        Byte array
        BIT_STRING_SIZE_5
    rnsap.global  global
        Object Identifier
        OBJECT_IDENTIFIER
    rnsap.glonassClockModel  glonassClockModel
        No value
        GANSS_GLONASSclockModel
    rnsap.glonassECEF  glonassECEF
        No value
        GANSS_NavModel_GLONASSecef
    rnsap.gnss_to_id  gnss-to-id
        Unsigned 32-bit integer
    rnsap.gps_a_sqrt_alm  gps-a-sqrt-alm
        Byte array
        BIT_STRING_SIZE_24
    rnsap.gps_af_one_alm  gps-af-one-alm
        Byte array
        BIT_STRING_SIZE_11
    rnsap.gps_af_zero_alm  gps-af-zero-alm
        Byte array
        BIT_STRING_SIZE_11
    rnsap.gps_delta_I_alm  gps-delta-I-alm
        Byte array
        BIT_STRING_SIZE_16
    rnsap.gps_e_alm  gps-e-alm
        Byte array
        BIT_STRING_SIZE_16
    rnsap.gps_e_nav  gps-e-nav
        Byte array
        BIT_STRING_SIZE_32
    rnsap.gps_omega_alm  gps-omega-alm
        Byte array
        BIT_STRING_SIZE_24
    rnsap.gps_omega_nav  gps-omega-nav
        Byte array
        BIT_STRING_SIZE_32
    rnsap.gps_toa_alm  gps-toa-alm
        Byte array
        BIT_STRING_SIZE_8
    rnsap.guaranteed_DL_Rate  guaranteed-DL-Rate
        Unsigned 32-bit integer
        Guaranteed_Rate
    rnsap.guaranteed_UL_Rate  guaranteed-UL-Rate
        Unsigned 32-bit integer
        Guaranteed_Rate
    rnsap.hARQ_Info_for_E_DCH  hARQ-Info-for-E-DCH
        Unsigned 32-bit integer
    rnsap.hARQ_MemoryPartitioning  hARQ-MemoryPartitioning
        Unsigned 32-bit integer
    rnsap.hARQ_MemoryPartitioningList  hARQ-MemoryPartitioningList
        Unsigned 32-bit integer
    rnsap.hARQ_Preamble_Mode  hARQ-Preamble-Mode
        Unsigned 32-bit integer
    rnsap.hARQ_Preamble_Mode_Activation_Indicator  hARQ-Preamble-Mode-Activation-Indicator
        Unsigned 32-bit integer
    rnsap.hARQ_Process_Allocation_NonSched_2ms  hARQ-Process-Allocation-NonSched-2ms
        Byte array
        HARQ_Process_Allocation_2ms_EDCH
    rnsap.hARQ_Process_Allocation_NonSched_2ms_EDCH  hARQ-Process-Allocation-NonSched-2ms-EDCH
        Byte array
        HARQ_Process_Allocation_2ms_EDCH
    rnsap.hARQ_Process_Allocation_Scheduled_2ms_EDCH  hARQ-Process-Allocation-Scheduled-2ms-EDCH
        Byte array
        HARQ_Process_Allocation_2ms_EDCH
    rnsap.hCS_Prio  hCS-Prio
        Unsigned 32-bit integer
    rnsap.hSDSCH_Configured_Indicator  hSDSCH-Configured-Indicator
        Unsigned 32-bit integer
    rnsap.hSDSCH_FDD_Information  hSDSCH-FDD-Information
        No value
    rnsap.hSDSCH_FDD_Information_Response  hSDSCH-FDD-Information-Response
        No value
    rnsap.hSDSCH_InitialWindowSize  hSDSCH-InitialWindowSize
        Unsigned 32-bit integer
    rnsap.hSDSCH_Initial_Capacity_Allocation  hSDSCH-Initial-Capacity-Allocation
        Unsigned 32-bit integer
    rnsap.hSDSCH_MACdFlow_ID  hSDSCH-MACdFlow-ID
        Unsigned 32-bit integer
    rnsap.hSDSCH_MACdFlow_Specific_Info  hSDSCH-MACdFlow-Specific-Info
        Unsigned 32-bit integer
        HSDSCH_MACdFlow_Specific_InfoList
    rnsap.hSDSCH_MACdFlow_Specific_InfoList_Response  hSDSCH-MACdFlow-Specific-InfoList-Response
        Unsigned 32-bit integer
    rnsap.hSDSCH_MACdFlow_Specific_InfoList_to_Modify  hSDSCH-MACdFlow-Specific-InfoList-to-Modify
        Unsigned 32-bit integer
    rnsap.hSDSCH_MACdFlows_Information  hSDSCH-MACdFlows-Information
        No value
    rnsap.hSDSCH_MACdPDUSizeFormat  hSDSCH-MACdPDUSizeFormat
        Unsigned 32-bit integer
    rnsap.hSDSCH_Physical_Layer_Category  hSDSCH-Physical-Layer-Category
        Unsigned 32-bit integer
        INTEGER_1_64_
    rnsap.hSDSCH_RNTI  hSDSCH-RNTI
        Unsigned 32-bit integer
    rnsap.hSDSCH_TBSizeTableIndicator  hSDSCH-TBSizeTableIndicator
        Unsigned 32-bit integer
    rnsap.hSPDSCH_First_Code_Index  hSPDSCH-First-Code-Index
        Unsigned 32-bit integer
    rnsap.hSPDSCH_RL_ID  hSPDSCH-RL-ID
        Unsigned 32-bit integer
        RL_ID
    rnsap.hSPDSCH_Second_Code_Index  hSPDSCH-Second-Code-Index
        Unsigned 32-bit integer
    rnsap.hSPDSCH_Second_Code_Support  hSPDSCH-Second-Code-Support
        Boolean
    rnsap.hSPDSCH_TDD_Specific_InfoList_Response  hSPDSCH-TDD-Specific-InfoList-Response
        Unsigned 32-bit integer
    rnsap.hSPDSCH_TDD_Specific_InfoList_Response_LCR  hSPDSCH-TDD-Specific-InfoList-Response-LCR
        Unsigned 32-bit integer
    rnsap.hSPDSCH_and_HSSCCH_ScramblingCode  hSPDSCH-and-HSSCCH-ScramblingCode
        Unsigned 32-bit integer
        DL_ScramblingCode
    rnsap.hSSCCH_CodeChangeGrant  hSSCCH-CodeChangeGrant
        Unsigned 32-bit integer
        HSSCCH_Code_Change_Grant
    rnsap.hSSCCH_Specific_InfoList_Response  hSSCCH-Specific-InfoList-Response
        Unsigned 32-bit integer
        HSSCCH_FDD_Specific_InfoList_Response
    rnsap.hSSCCH_TDD_Specific_InfoList_Response  hSSCCH-TDD-Specific-InfoList-Response
        Unsigned 32-bit integer
    rnsap.hSSCCH_TDD_Specific_InfoList_Response_LCR  hSSCCH-TDD-Specific-InfoList-Response-LCR
        Unsigned 32-bit integer
    rnsap.hSSICH_Info  hSSICH-Info
        No value
    rnsap.hSSICH_Info768  hSSICH-Info768
        No value
    rnsap.hSSICH_InfoLCR  hSSICH-InfoLCR
        No value
    rnsap.hS_DSCH_FDD_Secondary_Serving_Information  hS-DSCH-FDD-Secondary-Serving-Information
        No value
    rnsap.hS_DSCH_FDD_Secondary_Serving_Information_Response  hS-DSCH-FDD-Secondary-Serving-Information-Response
        No value
    rnsap.hS_DSCH_FDD_Secondary_Serving_Information_To_Modify_Unsynchronised  hS-DSCH-FDD-Secondary-Serving-Information-To-Modify-Unsynchronised
        No value
    rnsap.hS_DSCH_FDD_Secondary_Serving_Update_Information  hS-DSCH-FDD-Secondary-Serving-Update-Information
        No value
    rnsap.hS_DSCH_SPS_Deactivate_Indicator_LCR  hS-DSCH-SPS-Deactivate-Indicator-LCR
        No value
    rnsap.hS_DSCH_SPS_Operation_Indicator  hS-DSCH-SPS-Operation-Indicator
        Unsigned 32-bit integer
    rnsap.hS_DSCH_SPS_Reservation_Indicator  hS-DSCH-SPS-Reservation-Indicator
        Unsigned 32-bit integer
        SPS_Reservation_Indicator
    rnsap.hS_DSCH_Secondary_Serving_Cell_Change_Information_Response  hS-DSCH-Secondary-Serving-Cell-Change-Information-Response
        No value
    rnsap.hS_DSCH_Secondary_Serving_Information_To_Modify  hS-DSCH-Secondary-Serving-Information-To-Modify
        No value
    rnsap.hS_DSCH_Secondary_Serving_Remove  hS-DSCH-Secondary-Serving-Remove
        No value
    rnsap.hS_DSCH_Secondary_Serving_cell_choice  hS-DSCH-Secondary-Serving-cell-choice
        Unsigned 32-bit integer
        HS_DSCH_Secondary_Serving_cell_change_choice
    rnsap.hS_DSCH_Semi_PersistentScheduling_Information_LCR  hS-DSCH-Semi-PersistentScheduling-Information-LCR
        No value
    rnsap.hS_DSCH_Semi_PersistentScheduling_Information_to_Modify_LCR  hS-DSCH-Semi-PersistentScheduling-Information-to-Modify-LCR
        No value
    rnsap.hS_DSCH_serving_cell_choice  hS-DSCH-serving-cell-choice
        Unsigned 32-bit integer
        HS_DSCH_serving_cell_change_choice
    rnsap.hS_HS_DSCH_Secondary_Serving_Remove  hS-HS-DSCH-Secondary-Serving-Remove
        No value
        HS_DSCH_Secondary_Serving_Remove
    rnsap.hS_PDSCH_Code_Change_Indicator  hS-PDSCH-Code-Change-Indicator
        Unsigned 32-bit integer
    rnsap.hS_PDSCH_Midamble_Configuation  hS-PDSCH-Midamble-Configuation
        No value
        MidambleShiftLCR
    rnsap.hS_PDSCH_Offset  hS-PDSCH-Offset
        Unsigned 32-bit integer
        TDD_PhysicalChannelOffset
    rnsap.hS_PDSCH_RLID  hS-PDSCH-RLID
        Unsigned 32-bit integer
        RL_ID
    rnsap.hS_SCCH_Associated_HS_SICH  hS-SCCH-Associated-HS-SICH
        No value
    rnsap.hS_SCCH_CodeNumber  hS-SCCH-CodeNumber
        Unsigned 32-bit integer
    rnsap.hS_SCCH_DRX_Information_LCR  hS-SCCH-DRX-Information-LCR
        No value
    rnsap.hS_SCCH_DRX_Information_ResponseLCR  hS-SCCH-DRX-Information-ResponseLCR
        No value
    rnsap.hS_SCCH_Inactivity_Threshold_for_UE_DRX_Cycle_LCR  hS-SCCH-Inactivity-Threshold-for-UE-DRX-Cycle-LCR
        Unsigned 32-bit integer
        Inactivity_Threshold_for_UE_DRX_Cycle_LCR
    rnsap.hS_SCCH_PreconfiguredCodes  hS-SCCH-PreconfiguredCodes
        Unsigned 32-bit integer
    rnsap.hS_SCCH_UE_DRX_Cycle_LCR  hS-SCCH-UE-DRX-Cycle-LCR
        Unsigned 32-bit integer
        UE_DRX_Cycle_LCR
    rnsap.hS_SCCH_UE_DRX_Offset_LCR  hS-SCCH-UE-DRX-Offset-LCR
        Unsigned 32-bit integer
        UE_DRX_Offset_LCR
    rnsap.hS_SICH_InformationList_for_HS_DSCH_SPS  hS-SICH-InformationList-for-HS-DSCH-SPS
        Unsigned 32-bit integer
    rnsap.hS_SICH_Mapping_Index  hS-SICH-Mapping-Index
        Unsigned 32-bit integer
    rnsap.hS_SICH_Type  hS-SICH-Type
        Unsigned 32-bit integer
    rnsap.hS_Secondary_Serving_cell_change_successful  hS-Secondary-Serving-cell-change-successful
        No value
    rnsap.hS_Secondary_Serving_cell_change_unsuccessful  hS-Secondary-Serving-cell-change-unsuccessful
        No value
    rnsap.hS_serving_cell_change_successful  hS-serving-cell-change-successful
        No value
    rnsap.hS_serving_cell_change_unsuccessful  hS-serving-cell-change-unsuccessful
        No value
    rnsap.harqInfo  harqInfo
        Unsigned 32-bit integer
        HARQ_Info_for_E_DCH
    rnsap.ho_word_nav  ho-word-nav
        Byte array
        BIT_STRING_SIZE_22
    rnsap.hour  hour
        Unsigned 32-bit integer
        INTEGER_1_24_
    rnsap.hsDSCH_MACdFlow_ID  hsDSCH-MACdFlow-ID
        Unsigned 32-bit integer
    rnsap.hsSCCHCodeChangeIndicator  hsSCCHCodeChangeIndicator
        Unsigned 32-bit integer
        HSSCCH_CodeChangeIndicator
    rnsap.hsSICH_ID  hsSICH-ID
        Unsigned 32-bit integer
        HS_SICH_ID
    rnsap.hsscch_PowerOffset  hsscch-PowerOffset
        Unsigned 32-bit integer
    rnsap.iECriticality  iECriticality
        Unsigned 32-bit integer
        Criticality
    rnsap.iE_Extensions  iE-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    rnsap.iE_ID  iE-ID
        Unsigned 32-bit integer
        ProtocolIE_ID
    rnsap.iEe_Extensions  iEe-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    rnsap.iEsCriticalityDiagnostics  iEsCriticalityDiagnostics
        Unsigned 32-bit integer
        CriticalityDiagnostics_IE_List
    rnsap.iPDLParameters  iPDLParameters
        Unsigned 32-bit integer
    rnsap.iPDL_FDD_Parameters  iPDL-FDD-Parameters
        No value
    rnsap.iPDL_TDD_Parameters  iPDL-TDD-Parameters
        No value
    rnsap.iPLength  iPLength
        Unsigned 32-bit integer
    rnsap.iPMulticastAddress  iPMulticastAddress
        Byte array
    rnsap.iPOffset  iPOffset
        Unsigned 32-bit integer
    rnsap.iPSlot  iPSlot
        Unsigned 32-bit integer
    rnsap.iPSpacingFDD  iPSpacingFDD
        Unsigned 32-bit integer
    rnsap.iPSpacingTDD  iPSpacingTDD
        Unsigned 32-bit integer
    rnsap.iPStart  iPStart
        Unsigned 32-bit integer
    rnsap.iPSub  iPSub
        Unsigned 32-bit integer
    rnsap.iP_P_CCPCH  iP-P-CCPCH
        Unsigned 32-bit integer
    rnsap.iSCP  iSCP
        Unsigned 32-bit integer
        UL_Timeslot_ISCP_Value
    rnsap.i_zero_nav  i-zero-nav
        Byte array
        BIT_STRING_SIZE_32
    rnsap.id  id
        Unsigned 32-bit integer
        ProtocolIE_ID
    rnsap.idleIntervalInfo_k  idleIntervalInfo-k
        Unsigned 32-bit integer
        INTEGER_2_3
    rnsap.idleIntervalInfo_offset  idleIntervalInfo-offset
        Unsigned 32-bit integer
        INTEGER_0_7
    rnsap.idot_nav  idot-nav
        Byte array
        BIT_STRING_SIZE_14
    rnsap.ie_Extensions  ie-Extensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    rnsap.imei  imei
        Byte array
    rnsap.imeisv  imeisv
        Byte array
    rnsap.implicit  implicit
        No value
        HARQ_MemoryPartitioning_Implicit
    rnsap.imsi  imsi
        Byte array
    rnsap.inactivity_Threshold_for_UE_DRX_Cycle  inactivity-Threshold-for-UE-DRX-Cycle
        Unsigned 32-bit integer
    rnsap.inactivity_Threshold_for_UE_DTX_Cycle2  inactivity-Threshold-for-UE-DTX-Cycle2
        Unsigned 32-bit integer
    rnsap.inactivity_Threshold_for_UE_Grant_Monitoring  inactivity-Threshold-for-UE-Grant-Monitoring
        Unsigned 32-bit integer
    rnsap.includedAngle  includedAngle
        Unsigned 32-bit integer
        INTEGER_0_179
    rnsap.individual_DL_ReferencePowerInformation  individual-DL-ReferencePowerInformation
        Unsigned 32-bit integer
        DL_ReferencePowerInformationList
    rnsap.individualcause  individualcause
        Unsigned 32-bit integer
        Cause
    rnsap.informationAvailable  informationAvailable
        No value
    rnsap.informationNotAvailable  informationNotAvailable
        No value
    rnsap.informationReportPeriodicity  informationReportPeriodicity
        Unsigned 32-bit integer
    rnsap.informationThreshold  informationThreshold
        Unsigned 32-bit integer
    rnsap.informationTypeItem  informationTypeItem
        Unsigned 32-bit integer
    rnsap.initialDL_transmissionPower  initialDL-transmissionPower
        Signed 32-bit integer
        DL_Power
    rnsap.initialOffset  initialOffset
        Unsigned 32-bit integer
        INTEGER_0_255
    rnsap.initial_E_DCH_SPS_resource  initial-E-DCH-SPS-resource
        No value
    rnsap.initial_HS_PDSCH_SPS_Resource  initial-HS-PDSCH-SPS-Resource
        No value
    rnsap.initial_dl_tx_power  initial-dl-tx-power
        Signed 32-bit integer
        DL_Power
    rnsap.initiatingMessage  initiatingMessage
        No value
    rnsap.innerLoopDLPCStatus  innerLoopDLPCStatus
        Unsigned 32-bit integer
    rnsap.innerRadius  innerRadius
        Unsigned 32-bit integer
        INTEGER_0_65535
    rnsap.interFrequencyCellID  interFrequencyCellID
        Unsigned 32-bit integer
    rnsap.inter_Frequency_Cell_Indication_SIB11  inter-Frequency-Cell-Indication-SIB11
        Unsigned 32-bit integer
        Inter_Frequency_Cell_Indication
    rnsap.inter_Frequency_Cell_Indication_SIB12  inter-Frequency-Cell-Indication-SIB12
        Unsigned 32-bit integer
        Inter_Frequency_Cell_Indication
    rnsap.inter_Frequency_Cell_Information_SIB11  inter-Frequency-Cell-Information-SIB11
        Unsigned 32-bit integer
    rnsap.inter_Frequency_Cell_Information_SIB12  inter-Frequency-Cell-Information-SIB12
        Unsigned 32-bit integer
    rnsap.inter_Frequency_Cell_List_SIB11  inter-Frequency-Cell-List-SIB11
        Unsigned 32-bit integer
        Inter_Frequency_Cell_SIB11_or_SIB12_List
    rnsap.inter_Frequency_Cell_List_SIB12  inter-Frequency-Cell-List-SIB12
        Unsigned 32-bit integer
        Inter_Frequency_Cell_SIB11_or_SIB12_List
    rnsap.interface  interface
        Unsigned 32-bit integer
    rnsap.iod  iod
        Byte array
        BIT_STRING_SIZE_11
    rnsap.iod_a  iod-a
        Unsigned 32-bit integer
        INTEGER_0_3
    rnsap.iodc_nav  iodc-nav
        Byte array
        BIT_STRING_SIZE_10
    rnsap.iode_dgps  iode-dgps
        Byte array
        BIT_STRING_SIZE_8
    rnsap.ionospheric_Model  ionospheric-Model
        Boolean
        BOOLEAN
    rnsap.kp  kp
        Byte array
        BIT_STRING_SIZE_2
    rnsap.l2_p_dataflag_nav  l2-p-dataflag-nav
        Byte array
        BIT_STRING_SIZE_1
    rnsap.l3_Information_1  l3-Information-1
        Byte array
        L3_Information
    rnsap.l3_Information_2  l3-Information-2
        Byte array
        L3_Information
    rnsap.lAC  lAC
        Byte array
    rnsap.lAI  lAI
        No value
    rnsap.lS  lS
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rnsap.latitude  latitude
        Unsigned 32-bit integer
        INTEGER_0_8388607
    rnsap.latitudeSign  latitudeSign
        Unsigned 32-bit integer
    rnsap.limitedPowerIncrease  limitedPowerIncrease
        Unsigned 32-bit integer
    rnsap.listOfSNAs  listOfSNAs
        Unsigned 32-bit integer
    rnsap.list_Of_PLMNs  list-Of-PLMNs
        Unsigned 32-bit integer
    rnsap.loadValue  loadValue
        No value
    rnsap.local  local
        Unsigned 32-bit integer
        INTEGER_0_maxPrivateIEs
    rnsap.logicalChannelId  logicalChannelId
        Unsigned 32-bit integer
    rnsap.logicalChannellevel  logicalChannellevel
        Byte array
    rnsap.longTransActionId  longTransActionId
        Unsigned 32-bit integer
        INTEGER_0_32767
    rnsap.longitude  longitude
        Signed 32-bit integer
        INTEGER_M8388608_8388607
    rnsap.ls_part  ls-part
        Unsigned 32-bit integer
        INTEGER_0_4294967295
    rnsap.mAC_DTX_Cycle_10ms  mAC-DTX-Cycle-10ms
        Unsigned 32-bit integer
    rnsap.mAC_DTX_Cycle_2ms  mAC-DTX-Cycle-2ms
        Unsigned 32-bit integer
    rnsap.mAC_Inactivity_Threshold  mAC-Inactivity-Threshold
        Unsigned 32-bit integer
    rnsap.mAC_c_sh_SDU_Lengths  mAC-c-sh-SDU-Lengths
        Unsigned 32-bit integer
        MAC_c_sh_SDU_LengthList
    rnsap.mAC_ehs_Reset_Timer  mAC-ehs-Reset-Timer
        Unsigned 32-bit integer
    rnsap.mAC_hsWindowSize  mAC-hsWindowSize
        Unsigned 32-bit integer
    rnsap.mACdPDU_Size  mACdPDU-Size
        Unsigned 32-bit integer
    rnsap.mACdPDU_Size_Index  mACdPDU-Size-Index
        Unsigned 32-bit integer
        MACdPDU_Size_IndexList
    rnsap.mACdPDU_Size_Index_to_Modify  mACdPDU-Size-Index-to-Modify
        Unsigned 32-bit integer
        MACdPDU_Size_IndexList_to_Modify
    rnsap.mACd_PDU_Size_List  mACd-PDU-Size-List
        Unsigned 32-bit integer
        E_DCH_MACdPDU_SizeList
    rnsap.mACeReset_Indicator  mACeReset-Indicator
        Unsigned 32-bit integer
    rnsap.mACes_GuaranteedBitRate  mACes-GuaranteedBitRate
        Unsigned 32-bit integer
        MACes_Guaranteed_Bitrate
    rnsap.mAChsGuaranteedBitRate  mAChsGuaranteedBitRate
        Unsigned 32-bit integer
    rnsap.mAChsResetScheme  mAChsResetScheme
        Unsigned 32-bit integer
    rnsap.mAChs_Reordering_Buffer_Size_for_RLC_UM  mAChs-Reordering-Buffer-Size-for-RLC-UM
        Unsigned 32-bit integer
        MAChsReorderingBufferSize_for_RLC_UM
    rnsap.mBMSChannelTypeInfo  mBMSChannelTypeInfo
        No value
    rnsap.mBMSPreferredFreqLayerInfo  mBMSPreferredFreqLayerInfo
        No value
    rnsap.mBMS_Bearer_Service_List_InfEx_Rprt  mBMS-Bearer-Service-List-InfEx-Rprt
        Unsigned 32-bit integer
    rnsap.mBMS_Bearer_Service_List_InfEx_Rqst  mBMS-Bearer-Service-List-InfEx-Rqst
        Unsigned 32-bit integer
    rnsap.mBMS_Bearer_Service_List_InfEx_Rsp  mBMS-Bearer-Service-List-InfEx-Rsp
        Unsigned 32-bit integer
    rnsap.mBMS_Bearer_Service_List_RLC  mBMS-Bearer-Service-List-RLC
        Unsigned 32-bit integer
    rnsap.mBMS_ConcatenatedServiceList  mBMS-ConcatenatedServiceList
        Unsigned 32-bit integer
    rnsap.mIMO_ActivationIndicator  mIMO-ActivationIndicator
        No value
    rnsap.mIMO_N_M_Ratio  mIMO-N-M-Ratio
        No value
        MIMO_InformationResponse
    rnsap.mIMO_PilotConfiguration  mIMO-PilotConfiguration
        Unsigned 32-bit integer
    rnsap.mMax  mMax
        Unsigned 32-bit integer
        INTEGER_1_32
    rnsap.mS  mS
        Unsigned 32-bit integer
        INTEGER_0_16383
    rnsap.m_zero_alm  m-zero-alm
        Byte array
        BIT_STRING_SIZE_24
    rnsap.m_zero_nav  m-zero-nav
        Byte array
        BIT_STRING_SIZE_32
    rnsap.maxAdjustmentStep  maxAdjustmentStep
        Unsigned 32-bit integer
    rnsap.maxBits_MACe_PDU_non_scheduled  maxBits-MACe-PDU-non-scheduled
        Unsigned 32-bit integer
        Max_Bits_MACe_PDU_non_scheduled
    rnsap.maxCR  maxCR
        Unsigned 32-bit integer
        CodeRate
    rnsap.maxNrDLPhysicalchannels  maxNrDLPhysicalchannels
        Unsigned 32-bit integer
    rnsap.maxNrOfUL_DPCHs  maxNrOfUL-DPCHs
        Unsigned 32-bit integer
    rnsap.maxNrOfUL_DPDCHs  maxNrOfUL-DPDCHs
        Unsigned 32-bit integer
        MaxNrOfUL_DPCHs
    rnsap.maxNrTimeslots_DL  maxNrTimeslots-DL
        Unsigned 32-bit integer
        MaxNrTimeslots
    rnsap.maxNrTimeslots_UL  maxNrTimeslots-UL
        Unsigned 32-bit integer
        MaxNrTimeslots
    rnsap.maxNrULPhysicalchannels  maxNrULPhysicalchannels
        Unsigned 32-bit integer
    rnsap.maxNr_Retransmissions_EDCH  maxNr-Retransmissions-EDCH
        Unsigned 32-bit integer
    rnsap.maxPhysChPerTimeslot  maxPhysChPerTimeslot
        Unsigned 32-bit integer
    rnsap.maxPowerLCR  maxPowerLCR
        Signed 32-bit integer
        DL_Power
    rnsap.maxSYNC_UL_transmissions  maxSYNC-UL-transmissions
        Unsigned 32-bit integer
    rnsap.maxSet_E_DPDCHs  maxSet-E-DPDCHs
        Unsigned 32-bit integer
        Max_Set_E_DPDCHs
    rnsap.maxTimeslotsPerSubFrame  maxTimeslotsPerSubFrame
        Unsigned 32-bit integer
        INTEGER_1_6
    rnsap.maxUL_SIR  maxUL-SIR
        Signed 32-bit integer
        UL_SIR
    rnsap.max_UL_SIR  max-UL-SIR
        Signed 32-bit integer
        UL_SIR
    rnsap.maximumAllowedULTxPower  maximumAllowedULTxPower
        Signed 32-bit integer
    rnsap.maximumDLTxPower  maximumDLTxPower
        Signed 32-bit integer
        DL_Power
    rnsap.maximumDL_power  maximumDL-power
        Signed 32-bit integer
        DL_Power
    rnsap.maximumMACdPDU_SizeExtended  maximumMACdPDU-SizeExtended
        Unsigned 32-bit integer
        MAC_PDU_SizeExtended
    rnsap.maximum_MACdPDU_Size  maximum-MACdPDU-Size
        Unsigned 32-bit integer
        MACdPDU_Size
    rnsap.maximum_Number_of_Retransmissions_For_E_DCH  maximum-Number-of-Retransmissions-For-E-DCH
        Unsigned 32-bit integer
        MaxNr_Retransmissions_EDCH
    rnsap.mbsfnSchedulingTransmissionTimeInterval  mbsfnSchedulingTransmissionTimeInterval
        Unsigned 32-bit integer
    rnsap.measurementAvailable  measurementAvailable
        No value
        CommonMeasurementAvailable
    rnsap.measurementChangeTime  measurementChangeTime
        Unsigned 32-bit integer
    rnsap.measurementHysteresisTime  measurementHysteresisTime
        Unsigned 32-bit integer
    rnsap.measurementIncreaseDecreaseThreshold  measurementIncreaseDecreaseThreshold
        Unsigned 32-bit integer
    rnsap.measurementThreshold  measurementThreshold
        Unsigned 32-bit integer
    rnsap.measurementThreshold1  measurementThreshold1
        Unsigned 32-bit integer
        MeasurementThreshold
    rnsap.measurementThreshold2  measurementThreshold2
        Unsigned 32-bit integer
        MeasurementThreshold
    rnsap.measurementTreshold  measurementTreshold
        Unsigned 32-bit integer
        MeasurementThreshold
    rnsap.measurement_Occasion_Pattern_Sequence_parameters  measurement-Occasion-Pattern-Sequence-parameters
        No value
    rnsap.measurement_Occasion_Pattern_Sequence_parameters_M_Length  measurement-Occasion-Pattern-Sequence-parameters-M-Length
        Unsigned 32-bit integer
        INTEGER_1_512
    rnsap.measurement_Occasion_Pattern_Sequence_parameters_Timeslot_Bitmap  measurement-Occasion-Pattern-Sequence-parameters-Timeslot-Bitmap
        Byte array
        BIT_STRING_SIZE_7
    rnsap.measurement_Occasion_Pattern_Sequence_parameters_k  measurement-Occasion-Pattern-Sequence-parameters-k
        Unsigned 32-bit integer
        INTEGER_1_9
    rnsap.measurement_Occasion_Pattern_Sequence_parameters_offset  measurement-Occasion-Pattern-Sequence-parameters-offset
        Unsigned 32-bit integer
        INTEGER_0_511
    rnsap.measurement_Power_Offset  measurement-Power-Offset
        Signed 32-bit integer
    rnsap.measurementnotAvailable  measurementnotAvailable
        No value
    rnsap.midambleAllocationMode  midambleAllocationMode
        Unsigned 32-bit integer
        MidambleAllocationMode1
    rnsap.midambleConfigurationBurstType1And3  midambleConfigurationBurstType1And3
        Unsigned 32-bit integer
    rnsap.midambleConfigurationBurstType2  midambleConfigurationBurstType2
        Unsigned 32-bit integer
    rnsap.midambleConfigurationBurstType2_768  midambleConfigurationBurstType2-768
        Unsigned 32-bit integer
    rnsap.midambleConfigurationLCR  midambleConfigurationLCR
        Unsigned 32-bit integer
    rnsap.midambleShift  midambleShift
        Unsigned 32-bit integer
        INTEGER_0_15
    rnsap.midambleShiftAndBurstType  midambleShiftAndBurstType
        Unsigned 32-bit integer
    rnsap.midambleShiftAndBurstType768  midambleShiftAndBurstType768
        Unsigned 32-bit integer
    rnsap.midambleShiftLCR  midambleShiftLCR
        No value
    rnsap.midiAlmDeltaI  midiAlmDeltaI
        Byte array
        BIT_STRING_SIZE_11
    rnsap.midiAlmE  midiAlmE
        Byte array
        BIT_STRING_SIZE_11
    rnsap.midiAlmL1Health  midiAlmL1Health
        Byte array
        BIT_STRING_SIZE_1
    rnsap.midiAlmL2Health  midiAlmL2Health
        Byte array
        BIT_STRING_SIZE_1
    rnsap.midiAlmL5Health  midiAlmL5Health
        Byte array
        BIT_STRING_SIZE_1
    rnsap.midiAlmMo  midiAlmMo
        Byte array
        BIT_STRING_SIZE_16
    rnsap.midiAlmOmega  midiAlmOmega
        Byte array
        BIT_STRING_SIZE_16
    rnsap.midiAlmOmega0  midiAlmOmega0
        Byte array
        BIT_STRING_SIZE_16
    rnsap.midiAlmOmegaDot  midiAlmOmegaDot
        Byte array
        BIT_STRING_SIZE_11
    rnsap.midiAlmSqrtA  midiAlmSqrtA
        Byte array
        BIT_STRING_SIZE_17
    rnsap.midiAlmaf0  midiAlmaf0
        Byte array
        BIT_STRING_SIZE_11
    rnsap.midiAlmaf1  midiAlmaf1
        Byte array
        BIT_STRING_SIZE_10
    rnsap.min  min
        Unsigned 32-bit integer
        INTEGER_1_60_
    rnsap.minCR  minCR
        Unsigned 32-bit integer
        CodeRate
    rnsap.minPowerLCR  minPowerLCR
        Signed 32-bit integer
        DL_Power
    rnsap.minUL_ChannelisationCodeLength  minUL-ChannelisationCodeLength
        Unsigned 32-bit integer
    rnsap.minUL_SIR  minUL-SIR
        Signed 32-bit integer
        UL_SIR
    rnsap.min_UL_SIR  min-UL-SIR
        Signed 32-bit integer
        UL_SIR
    rnsap.minimumDLTxPower  minimumDLTxPower
        Signed 32-bit integer
        DL_Power
    rnsap.minimumDL_power  minimumDL-power
        Signed 32-bit integer
        DL_Power
    rnsap.minimumReducedE_DPDCH_GainFactor  minimumReducedE-DPDCH-GainFactor
        Unsigned 32-bit integer
    rnsap.minimumSpreadingFactor_DL  minimumSpreadingFactor-DL
        Unsigned 32-bit integer
        MinimumSpreadingFactor
    rnsap.minimumSpreadingFactor_UL  minimumSpreadingFactor-UL
        Unsigned 32-bit integer
        MinimumSpreadingFactor
    rnsap.misc  misc
        Unsigned 32-bit integer
        CauseMisc
    rnsap.missed_HS_SICH  missed-HS-SICH
        Unsigned 32-bit integer
        HS_SICH_missed
    rnsap.mode  mode
        Unsigned 32-bit integer
        TransportFormatSet_ModeDP
    rnsap.model_id  model-id
        Unsigned 32-bit integer
        INTEGER_0_1_
    rnsap.modify  modify
        No value
        DRX_Information_to_Modify_Items_LCR
    rnsap.modifyPriorityQueue  modifyPriorityQueue
        No value
        PriorityQueue_InfoItem_to_Modify
    rnsap.modulation  modulation
        Unsigned 32-bit integer
    rnsap.modulationType  modulationType
        Unsigned 32-bit integer
        ModulationSPS_LCR
    rnsap.ms_part  ms-part
        Unsigned 32-bit integer
        INTEGER_0_16383
    rnsap.multicellEDCH_Information  multicellEDCH-Information
        No value
    rnsap.multicellEDCH_RL_SpecificInformation  multicellEDCH-RL-SpecificInformation
        No value
    rnsap.multicell_EDCH_Transport_Bearer_Mode  multicell-EDCH-Transport-Bearer-Mode
        Unsigned 32-bit integer
    rnsap.multipleURAsIndicator  multipleURAsIndicator
        Unsigned 32-bit integer
    rnsap.multiplexingPosition  multiplexingPosition
        Unsigned 32-bit integer
    rnsap.nA  nA
        Byte array
        BIT_STRING_SIZE_11
    rnsap.nCC  nCC
        Byte array
    rnsap.n_E_UCCH  n-E-UCCH
        Unsigned 32-bit integer
    rnsap.n_E_UCCHLCR  n-E-UCCHLCR
        Unsigned 32-bit integer
        N_E_UCCH_LCR
    rnsap.n_E_UCCH_LCR  n-E-UCCH-LCR
        Unsigned 32-bit integer
    rnsap.n_INSYNC_IND  n-INSYNC-IND
        Unsigned 32-bit integer
        INTEGER_1_256
    rnsap.n_OUTSYNC_IND  n-OUTSYNC-IND
        Unsigned 32-bit integer
        INTEGER_1_256
    rnsap.nackPowerOffset  nackPowerOffset
        Unsigned 32-bit integer
        Nack_Power_Offset
    rnsap.navAPowerHalf  navAPowerHalf
        Byte array
        BIT_STRING_SIZE_32
    rnsap.navAlmDeltaI  navAlmDeltaI
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navAlmE  navAlmE
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navAlmMo  navAlmMo
        Byte array
        BIT_STRING_SIZE_24
    rnsap.navAlmOMEGADOT  navAlmOMEGADOT
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navAlmOMEGAo  navAlmOMEGAo
        Byte array
        BIT_STRING_SIZE_24
    rnsap.navAlmOmega  navAlmOmega
        Byte array
        BIT_STRING_SIZE_24
    rnsap.navAlmSVHealth  navAlmSVHealth
        Byte array
        BIT_STRING_SIZE_8
    rnsap.navAlmSqrtA  navAlmSqrtA
        Byte array
        BIT_STRING_SIZE_24
    rnsap.navAlmaf0  navAlmaf0
        Byte array
        BIT_STRING_SIZE_11
    rnsap.navAlmaf1  navAlmaf1
        Byte array
        BIT_STRING_SIZE_11
    rnsap.navCic  navCic
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navCis  navCis
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navClockModel  navClockModel
        No value
        GANSS_NAVclockModel
    rnsap.navCrc  navCrc
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navCrs  navCrs
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navCuc  navCuc
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navCus  navCus
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navDeltaN  navDeltaN
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navE  navE
        Byte array
        BIT_STRING_SIZE_32
    rnsap.navFitFlag  navFitFlag
        Byte array
        BIT_STRING_SIZE_1
    rnsap.navI0  navI0
        Byte array
        BIT_STRING_SIZE_32
    rnsap.navIDot  navIDot
        Byte array
        BIT_STRING_SIZE_14
    rnsap.navKeplerianSet  navKeplerianSet
        No value
        GANSS_NavModel_NAVKeplerianSet
    rnsap.navM0  navM0
        Byte array
        BIT_STRING_SIZE_32
    rnsap.navOmega  navOmega
        Byte array
        BIT_STRING_SIZE_32
    rnsap.navOmegaA0  navOmegaA0
        Byte array
        BIT_STRING_SIZE_32
    rnsap.navOmegaADot  navOmegaADot
        Byte array
        BIT_STRING_SIZE_24
    rnsap.navTgd  navTgd
        Byte array
        BIT_STRING_SIZE_8
    rnsap.navToc  navToc
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navToe  navToe
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navURA  navURA
        Byte array
        BIT_STRING_SIZE_4
    rnsap.navaf0  navaf0
        Byte array
        BIT_STRING_SIZE_22
    rnsap.navaf1  navaf1
        Byte array
        BIT_STRING_SIZE_16
    rnsap.navaf2  navaf2
        Byte array
        BIT_STRING_SIZE_8
    rnsap.neighbouringCellMeasurementInformation  neighbouringCellMeasurementInformation
        Unsigned 32-bit integer
        NeighbouringCellMeasurementInfo
    rnsap.neighbouringFDDCellMeasurementInformation  neighbouringFDDCellMeasurementInformation
        No value
    rnsap.neighbouringTDDCellMeasurementInformation  neighbouringTDDCellMeasurementInformation
        No value
    rnsap.neighbouring_FDD_CellInformation  neighbouring-FDD-CellInformation
        Unsigned 32-bit integer
    rnsap.neighbouring_GSM_CellInformation  neighbouring-GSM-CellInformation
        No value
    rnsap.neighbouring_TDD_CellInformation  neighbouring-TDD-CellInformation
        Unsigned 32-bit integer
    rnsap.neighbouring_UMTS_CellInformation  neighbouring-UMTS-CellInformation
        Unsigned 32-bit integer
    rnsap.new_secondary_CPICH  new-secondary-CPICH
        No value
        Secondary_CPICH_Information
    rnsap.noBadSatellite  noBadSatellite
        No value
    rnsap.no_Split_in_TFCI  no-Split-in-TFCI
        Unsigned 32-bit integer
        TFCS_TFCSList
    rnsap.noinitialOffset  noinitialOffset
        Unsigned 32-bit integer
        INTEGER_0_63
    rnsap.nonCombining  nonCombining
        No value
        NonCombining_RL_AdditionRspFDD
    rnsap.nonCombiningOrFirstRL  nonCombiningOrFirstRL
        No value
        NonCombiningOrFirstRL_RL_SetupRspFDD
    rnsap.non_HS_SCCH_Aassociated_HS_SICH_ID  non-HS-SCCH-Aassociated-HS-SICH-ID
        Unsigned 32-bit integer
    rnsap.non_HS_SCCH_Associated_HS_SICH  non-HS-SCCH-Associated-HS-SICH
        No value
    rnsap.non_broadcastIndication  non-broadcastIndication
        Unsigned 32-bit integer
    rnsap.normal_and_diversity_primary_CPICH  normal-and-diversity-primary-CPICH
        No value
    rnsap.notApplicable  notApplicable
        No value
    rnsap.not_Provided_Cell_List  not-Provided-Cell-List
        Unsigned 32-bit integer
        NotProvidedCellList
    rnsap.not_Used_dRACControl  not-Used-dRACControl
        No value
    rnsap.not_Used_dSCHInformationResponse  not-Used-dSCHInformationResponse
        No value
    rnsap.not_Used_dSCH_InformationResponse_RL_SetupFailureFDD  not-Used-dSCH-InformationResponse-RL-SetupFailureFDD
        No value
    rnsap.not_Used_dSCHsToBeAddedOrModified  not-Used-dSCHsToBeAddedOrModified
        No value
    rnsap.not_Used_sSDT_CellID  not-Used-sSDT-CellID
        No value
    rnsap.not_Used_sSDT_CellIDLength  not-Used-sSDT-CellIDLength
        No value
    rnsap.not_Used_sSDT_CellIdLength  not-Used-sSDT-CellIdLength
        No value
    rnsap.not_Used_sSDT_CellIdentity  not-Used-sSDT-CellIdentity
        No value
    rnsap.not_Used_sSDT_Indication  not-Used-sSDT-Indication
        No value
    rnsap.not_Used_s_FieldLength  not-Used-s-FieldLength
        No value
    rnsap.not_Used_secondary_CCPCH_Info  not-Used-secondary-CCPCH-Info
        No value
    rnsap.not_Used_split_in_TFCI  not-Used-split-in-TFCI
        No value
    rnsap.not_to_be_used_1  not-to-be-used-1
        Unsigned 32-bit integer
        GapDuration
    rnsap.not_used_closedLoopMode2_SupportIndicator  not-used-closedLoopMode2-SupportIndicator
        No value
    rnsap.nrOfDLchannelisationcodes  nrOfDLchannelisationcodes
        Unsigned 32-bit integer
    rnsap.nrOfTransportBlocks  nrOfTransportBlocks
        Unsigned 32-bit integer
    rnsap.numPrimaryHS_SCCH_Codes  numPrimaryHS-SCCH-Codes
        Unsigned 32-bit integer
        NumHS_SCCH_Codes
    rnsap.numSecondaryHS_SCCH_Codes  numSecondaryHS-SCCH-Codes
        Unsigned 32-bit integer
        NumHS_SCCH_Codes
    rnsap.number_of_Processes  number-of-Processes
        Unsigned 32-bit integer
        INTEGER_1_8_
    rnsap.number_of_Processes_for_HS_DSCH_SPS  number-of-Processes-for-HS-DSCH-SPS
        Unsigned 32-bit integer
    rnsap.offsetAngle  offsetAngle
        Unsigned 32-bit integer
        INTEGER_0_179
    rnsap.omega_zero_nav  omega-zero-nav
        Byte array
        BIT_STRING_SIZE_32
    rnsap.omegadot_alm  omegadot-alm
        Byte array
        BIT_STRING_SIZE_16
    rnsap.omegadot_nav  omegadot-nav
        Byte array
        BIT_STRING_SIZE_24
    rnsap.omegazero_alm  omegazero-alm
        Byte array
        BIT_STRING_SIZE_24
    rnsap.onDemand  onDemand
        No value
    rnsap.onModification  onModification
        No value
        OnModificationInformation
    rnsap.orientationOfMajorAxis  orientationOfMajorAxis
        Unsigned 32-bit integer
        INTEGER_0_179
    rnsap.outcome  outcome
        No value
    rnsap.pCCPCH_Power  pCCPCH-Power
        Signed 32-bit integer
    rnsap.pCH_InformationList  pCH-InformationList
        Unsigned 32-bit integer
    rnsap.pC_Preamble  pC-Preamble
        Unsigned 32-bit integer
    rnsap.pLMN_Identity  pLMN-Identity
        Byte array
    rnsap.pO1_ForTFCI_Bits  pO1-ForTFCI-Bits
        Unsigned 32-bit integer
        PowerOffset
    rnsap.pO2_ForTPC_Bits  pO2-ForTPC-Bits
        Unsigned 32-bit integer
        PowerOffset
    rnsap.pO3_ForPilotBits  pO3-ForPilotBits
        Unsigned 32-bit integer
        PowerOffset
    rnsap.pRC  pRC
        Signed 32-bit integer
    rnsap.pRCDeviation  pRCDeviation
        Unsigned 32-bit integer
    rnsap.pRxdesBase  pRxdesBase
        Signed 32-bit integer
        E_PUCH_PRXdesBase
    rnsap.pSDomain  pSDomain
        No value
    rnsap.pSI  pSI
        Unsigned 32-bit integer
        GERAN_SystemInfo
    rnsap.pS_CSDomain  pS-CSDomain
        No value
    rnsap.pTM_Cell_List  pTM-Cell-List
        Unsigned 32-bit integer
        PTMCellList
    rnsap.pTP_Cell_List  pTP-Cell-List
        Unsigned 32-bit integer
        PTPCellList
    rnsap.pagingCause  pagingCause
        Unsigned 32-bit integer
    rnsap.pagingRecordType  pagingRecordType
        Unsigned 32-bit integer
    rnsap.pattern_Sequence_Identifier  pattern-Sequence-Identifier
        Unsigned 32-bit integer
    rnsap.payloadCRC_PresenceIndicator  payloadCRC-PresenceIndicator
        Unsigned 32-bit integer
    rnsap.periodic  periodic
        No value
        PeriodicInformation
    rnsap.phase_Reference_Update_Indicator  phase-Reference-Update-Indicator
        Unsigned 32-bit integer
    rnsap.plmn_id  plmn-id
        Byte array
        PLMN_Identity
    rnsap.pmX  pmX
        Byte array
        BIT_STRING_SIZE_21
    rnsap.pmXdot  pmXdot
        Byte array
        BIT_STRING_SIZE_15
    rnsap.pmY  pmY
        Byte array
        BIT_STRING_SIZE_21
    rnsap.pmYdot  pmYdot
        Byte array
        BIT_STRING_SIZE_15
    rnsap.po1_ForTFCI_Bits  po1-ForTFCI-Bits
        Unsigned 32-bit integer
        PowerOffset
    rnsap.po2_ForTPC_Bits  po2-ForTPC-Bits
        Unsigned 32-bit integer
        PowerOffset
    rnsap.po3_ForPilotBits  po3-ForPilotBits
        Unsigned 32-bit integer
        PowerOffset
    rnsap.pointWithAltitude  pointWithAltitude
        No value
        GA_PointWithAltitude
    rnsap.pointWithAltitudeAndUncertaintyEllipsoid  pointWithAltitudeAndUncertaintyEllipsoid
        No value
        GA_PointWithAltitudeAndUncertaintyEllipsoid
    rnsap.pointWithUncertainty  pointWithUncertainty
        No value
        GA_PointWithUnCertainty
    rnsap.pointWithUncertaintyEllipse  pointWithUncertaintyEllipse
        No value
        GA_PointWithUnCertaintyEllipse
    rnsap.possible_Secondary_Serving_Cell_List  possible-Secondary-Serving-Cell-List
        Unsigned 32-bit integer
    rnsap.powerAdjustmentType  powerAdjustmentType
        Unsigned 32-bit integer
    rnsap.powerOffsetInformation  powerOffsetInformation
        No value
        PowerOffsetInformation_RL_SetupRqstFDD
    rnsap.powerRampStep  powerRampStep
        Unsigned 32-bit integer
        INTEGER_0_3_
    rnsap.powerResource  powerResource
        Unsigned 32-bit integer
        E_DCH_PowerResource
    rnsap.pre_emptionCapability  pre-emptionCapability
        Unsigned 32-bit integer
    rnsap.pre_emptionVulnerability  pre-emptionVulnerability
        Unsigned 32-bit integer
    rnsap.predictedSFNSFNDeviationLimit  predictedSFNSFNDeviationLimit
        Unsigned 32-bit integer
    rnsap.predictedTUTRANGANSSDeviationLimit  predictedTUTRANGANSSDeviationLimit
        Unsigned 32-bit integer
        INTEGER_1_256
    rnsap.predictedTUTRANGPSDeviationLimit  predictedTUTRANGPSDeviationLimit
        Unsigned 32-bit integer
    rnsap.preferredFrequencyLayer  preferredFrequencyLayer
        Unsigned 32-bit integer
        UARFCN
    rnsap.preferredFrequencyLayerInfo  preferredFrequencyLayerInfo
        No value
    rnsap.primaryCCPCH_RSCP  primaryCCPCH-RSCP
        Unsigned 32-bit integer
    rnsap.primaryCCPCH_RSCP_Delta  primaryCCPCH-RSCP-Delta
        Signed 32-bit integer
    rnsap.primaryCPICH_EcNo  primaryCPICH-EcNo
        Signed 32-bit integer
    rnsap.primaryCPICH_Power  primaryCPICH-Power
        Signed 32-bit integer
    rnsap.primaryScramblingCode  primaryScramblingCode
        Unsigned 32-bit integer
    rnsap.primary_CCPCH_RSCP  primary-CCPCH-RSCP
        No value
        UE_MeasurementValue_Primary_CCPCH_RSCP
    rnsap.primary_CPICH_Usage_For_Channel_Estimation  primary-CPICH-Usage-For-Channel-Estimation
        Unsigned 32-bit integer
    rnsap.primary_Secondary_Grant_Selector  primary-Secondary-Grant-Selector
        Unsigned 32-bit integer
        E_Primary_Secondary_Grant_Selector
    rnsap.primary_and_secondary_CPICH  primary-and-secondary-CPICH
        Unsigned 32-bit integer
        MIMO_S_CPICH_Channelisation_Code
    rnsap.primary_e_RNTI  primary-e-RNTI
        Unsigned 32-bit integer
        E_RNTI
    rnsap.priorityLevel  priorityLevel
        Unsigned 32-bit integer
    rnsap.priorityQueueId  priorityQueueId
        Unsigned 32-bit integer
        PriorityQueue_Id
    rnsap.priorityQueueInfo_EnhancedPCH  priorityQueueInfo-EnhancedPCH
        Unsigned 32-bit integer
        PriorityQueue_InfoList_EnhancedFACH_PCH
    rnsap.priorityQueueInfotoModifyUnsynchronised  priorityQueueInfotoModifyUnsynchronised
        Unsigned 32-bit integer
        PriorityQueue_InfoList_to_Modify_Unsynchronised
    rnsap.priorityQueue_Id  priorityQueue-Id
        Unsigned 32-bit integer
    rnsap.priorityQueue_Info  priorityQueue-Info
        Unsigned 32-bit integer
        PriorityQueue_InfoList
    rnsap.priorityQueue_Info_to_Modify  priorityQueue-Info-to-Modify
        Unsigned 32-bit integer
        PriorityQueue_InfoList_to_Modify
    rnsap.priorityQueuelevel  priorityQueuelevel
        Byte array
    rnsap.privateIEs  privateIEs
        Unsigned 32-bit integer
        PrivateIE_Container
    rnsap.procedureCode  procedureCode
        Unsigned 32-bit integer
    rnsap.procedureCriticality  procedureCriticality
        Unsigned 32-bit integer
        Criticality
    rnsap.procedureID  procedureID
        No value
    rnsap.process_Memory_Size  process-Memory-Size
        Unsigned 32-bit integer
    rnsap.propagationDelay  propagationDelay
        Unsigned 32-bit integer
    rnsap.propagation_delay  propagation-delay
        Unsigned 32-bit integer
        PropagationDelay
    rnsap.protocol  protocol
        Unsigned 32-bit integer
        CauseProtocol
    rnsap.protocolExtensions  protocolExtensions
        Unsigned 32-bit integer
        ProtocolExtensionContainer
    rnsap.protocolIEs  protocolIEs
        Unsigned 32-bit integer
        ProtocolIE_Container
    rnsap.prxUpPCHdes  prxUpPCHdes
        Signed 32-bit integer
        INTEGER_M120_M58_
    rnsap.punctureLimit  punctureLimit
        Unsigned 32-bit integer
    rnsap.qE_Selector  qE-Selector
        Unsigned 32-bit integer
    rnsap.qPSK  qPSK
        Unsigned 32-bit integer
        QPSK_DL_DPCH_TimeSlotFormatTDD_LCR
    rnsap.rAC  rAC
        Byte array
    rnsap.rL  rL
        No value
        RL_RL_FailureInd
    rnsap.rLC_Mode  rLC-Mode
        Unsigned 32-bit integer
    rnsap.rLS  rLS
        No value
        RL_Set_DM_Rqst
    rnsap.rLSpecificCause  rLSpecificCause
        No value
        RLSpecificCauseList_RL_SetupFailureFDD
    rnsap.rL_ID  rL-ID
        Unsigned 32-bit integer
    rnsap.rL_InformationList_DM_Rprt  rL-InformationList-DM-Rprt
        Unsigned 32-bit integer
    rnsap.rL_InformationList_DM_Rqst  rL-InformationList-DM-Rqst
        Unsigned 32-bit integer
    rnsap.rL_InformationList_DM_Rsp  rL-InformationList-DM-Rsp
        Unsigned 32-bit integer
    rnsap.rL_InformationList_RL_FailureInd  rL-InformationList-RL-FailureInd
        Unsigned 32-bit integer
    rnsap.rL_InformationList_RL_RestoreInd  rL-InformationList-RL-RestoreInd
        Unsigned 32-bit integer
    rnsap.rL_ReconfigurationFailureList_RL_ReconfFailure  rL-ReconfigurationFailureList-RL-ReconfFailure
        Unsigned 32-bit integer
    rnsap.rL_Set  rL-Set
        No value
        RL_Set_RL_FailureInd
    rnsap.rL_Set_ID  rL-Set-ID
        Unsigned 32-bit integer
    rnsap.rL_Set_InformationList_DM_Rprt  rL-Set-InformationList-DM-Rprt
        Unsigned 32-bit integer
    rnsap.rL_Set_InformationList_DM_Rqst  rL-Set-InformationList-DM-Rqst
        Unsigned 32-bit integer
    rnsap.rL_Set_InformationList_DM_Rsp  rL-Set-InformationList-DM-Rsp
        Unsigned 32-bit integer
    rnsap.rL_Set_InformationList_RL_FailureInd  rL-Set-InformationList-RL-FailureInd
        Unsigned 32-bit integer
    rnsap.rL_Set_InformationList_RL_RestoreInd  rL-Set-InformationList-RL-RestoreInd
        Unsigned 32-bit integer
    rnsap.rL_Set_successful_InformationRespList_DM_Fail  rL-Set-successful-InformationRespList-DM-Fail
        Unsigned 32-bit integer
    rnsap.rL_Set_unsuccessful_InformationRespList_DM_Fail  rL-Set-unsuccessful-InformationRespList-DM-Fail
        Unsigned 32-bit integer
    rnsap.rL_Set_unsuccessful_InformationRespList_DM_Fail_Ind  rL-Set-unsuccessful-InformationRespList-DM-Fail-Ind
        Unsigned 32-bit integer
    rnsap.rL_Specific_DCH_Info  rL-Specific-DCH-Info
        Unsigned 32-bit integer
    rnsap.rL_Specific_EDCH_Info  rL-Specific-EDCH-Info
        Unsigned 32-bit integer
    rnsap.rL_on_Secondary_UL_Frequency  rL-on-Secondary-UL-Frequency
        Unsigned 32-bit integer
    rnsap.rL_successful_InformationRespList_DM_Fail  rL-successful-InformationRespList-DM-Fail
        Unsigned 32-bit integer
    rnsap.rL_unsuccessful_InformationRespList_DM_Fail  rL-unsuccessful-InformationRespList-DM-Fail
        Unsigned 32-bit integer
    rnsap.rL_unsuccessful_InformationRespList_DM_Fail_Ind  rL-unsuccessful-InformationRespList-DM-Fail-Ind
        Unsigned 32-bit integer
    rnsap.rLs  rLs
        No value
        RL_DM_Rsp
    rnsap.rNC_ID  rNC-ID
        Unsigned 32-bit integer
    rnsap.rNCsWithCellsInTheAccessedURA_List  rNCsWithCellsInTheAccessedURA-List
        Unsigned 32-bit integer
    rnsap.rSCP  rSCP
        Unsigned 32-bit integer
        RSCP_Value
    rnsap.radioNetwork  radioNetwork
        Unsigned 32-bit integer
        CauseRadioNetwork
    rnsap.range_Correction_Rate  range-Correction-Rate
        Signed 32-bit integer
    rnsap.rateMatcingAttribute  rateMatcingAttribute
        Unsigned 32-bit integer
        RateMatchingAttribute
    rnsap.rb_Info  rb-Info
        Unsigned 32-bit integer
    rnsap.receivedTotalWideBandPowerValue  receivedTotalWideBandPowerValue
        Unsigned 32-bit integer
        INTEGER_0_621
    rnsap.received_total_wide_band_power  received-total-wide-band-power
        Unsigned 32-bit integer
    rnsap.redAlmDeltaA  redAlmDeltaA
        Byte array
        BIT_STRING_SIZE_8
    rnsap.redAlmL1Health  redAlmL1Health
        Byte array
        BIT_STRING_SIZE_1
    rnsap.redAlmL2Health  redAlmL2Health
        Byte array
        BIT_STRING_SIZE_1
    rnsap.redAlmL5Health  redAlmL5Health
        Byte array
        BIT_STRING_SIZE_1
    rnsap.redAlmOmega0  redAlmOmega0
        Byte array
        BIT_STRING_SIZE_7
    rnsap.redAlmPhi0  redAlmPhi0
        Byte array
        BIT_STRING_SIZE_7
    rnsap.refBeta  refBeta
        Signed 32-bit integer
    rnsap.refCodeRate  refCodeRate
        Unsigned 32-bit integer
        CodeRate_short
    rnsap.refTFCNumber  refTFCNumber
        Unsigned 32-bit integer
    rnsap.reference_E_TFCI  reference-E-TFCI
        Unsigned 32-bit integer
        E_TFCI
    rnsap.reference_E_TFCI_Information  reference-E-TFCI-Information
        Unsigned 32-bit integer
    rnsap.reference_E_TFCI_PO  reference-E-TFCI-PO
        Unsigned 32-bit integer
    rnsap.removal  removal
        Unsigned 32-bit integer
        Additional_EDCH_Cell_Information_Removal_List
    rnsap.repetitionLength  repetitionLength
        Unsigned 32-bit integer
    rnsap.repetitionNumber  repetitionNumber
        Unsigned 32-bit integer
        RepetitionNumber0
    rnsap.repetitionPeriod  repetitionPeriod
        Unsigned 32-bit integer
    rnsap.repetitionPeriodIndex  repetitionPeriodIndex
        Unsigned 32-bit integer
    rnsap.repetition_Period_List_LCR  repetition-Period-List-LCR
        Unsigned 32-bit integer
    rnsap.reportPeriodicity  reportPeriodicity
        Unsigned 32-bit integer
    rnsap.reportingInterval  reportingInterval
        Unsigned 32-bit integer
        UEMeasurementReportCharacteristicsPeriodicReportingInterval
    rnsap.requestedDataValue  requestedDataValue
        No value
    rnsap.requestedDataValueInformation  requestedDataValueInformation
        Unsigned 32-bit integer
    rnsap.restrictionStateIndicator  restrictionStateIndicator
        Unsigned 32-bit integer
    rnsap.roundTripTime  roundTripTime
        Unsigned 32-bit integer
        Round_Trip_Time_Value
    rnsap.round_trip_time  round-trip-time
        Unsigned 32-bit integer
        Round_Trip_Time_IncrDecrThres
    rnsap.rscp  rscp
        Unsigned 32-bit integer
        RSCP_Value_IncrDecrThres
    rnsap.rxTimingDeviationForTA  rxTimingDeviationForTA
        Unsigned 32-bit integer
    rnsap.rxTimingDeviationForTA768  rxTimingDeviationForTA768
        Unsigned 32-bit integer
    rnsap.rxTimingDeviationValue  rxTimingDeviationValue
        Unsigned 32-bit integer
        Rx_Timing_Deviation_Value
    rnsap.rx_timing_deviation  rx-timing-deviation
        Unsigned 32-bit integer
        Rx_Timing_Deviation_Value
    rnsap.sAC  sAC
        Byte array
    rnsap.sAI  sAI
        No value
    rnsap.sAT_ID  sAT-ID
        Unsigned 32-bit integer
    rnsap.sCH_TimeSlot  sCH-TimeSlot
        Unsigned 32-bit integer
    rnsap.sCTD_Indicator  sCTD-Indicator
        Unsigned 32-bit integer
    rnsap.sFN  sFN
        Unsigned 32-bit integer
    rnsap.sFNSFNChangeLimit  sFNSFNChangeLimit
        Unsigned 32-bit integer
    rnsap.sFNSFNDriftRate  sFNSFNDriftRate
        Signed 32-bit integer
    rnsap.sFNSFNDriftRateQuality  sFNSFNDriftRateQuality
        Unsigned 32-bit integer
    rnsap.sFNSFNMeasurementValueInformation  sFNSFNMeasurementValueInformation
        No value
    rnsap.sFNSFNQuality  sFNSFNQuality
        Unsigned 32-bit integer
    rnsap.sFNSFNTimeStampInformation  sFNSFNTimeStampInformation
        Unsigned 32-bit integer
    rnsap.sFNSFNTimeStamp_FDD  sFNSFNTimeStamp-FDD
        Unsigned 32-bit integer
        SFN
    rnsap.sFNSFNTimeStamp_TDD  sFNSFNTimeStamp-TDD
        No value
    rnsap.sFNSFNValue  sFNSFNValue
        Unsigned 32-bit integer
    rnsap.sFNSFN_FDD  sFNSFN-FDD
        Unsigned 32-bit integer
    rnsap.sFNSFN_GA_AccessPointPosition  sFNSFN-GA-AccessPointPosition
        No value
        GA_AccessPointPositionwithOptionalAltitude
    rnsap.sFNSFN_TDD  sFNSFN-TDD
        Unsigned 32-bit integer
    rnsap.sFNSFN_TDD768  sFNSFN-TDD768
        Unsigned 32-bit integer
    rnsap.sI  sI
        Unsigned 32-bit integer
        GERAN_SystemInfo
    rnsap.sID  sID
        Unsigned 32-bit integer
    rnsap.sIR_ErrorValue  sIR-ErrorValue
        Unsigned 32-bit integer
        SIR_Error_Value
    rnsap.sIR_Value  sIR-Value
        Unsigned 32-bit integer
    rnsap.sRB_Delay  sRB-Delay
        Unsigned 32-bit integer
    rnsap.sRNTI  sRNTI
        Unsigned 32-bit integer
        S_RNTI
    rnsap.sRNTI_BitMaskIndex  sRNTI-BitMaskIndex
        Unsigned 32-bit integer
    rnsap.sSDT_SupportIndicator  sSDT-SupportIndicator
        Unsigned 32-bit integer
    rnsap.sTTD_SupportIndicator  sTTD-SupportIndicator
        Unsigned 32-bit integer
    rnsap.sVGlobalHealth_alm  sVGlobalHealth-alm
        Byte array
        BIT_STRING_SIZE_364
    rnsap.s_CCPCH_TimeSlotFormat_LCR  s-CCPCH-TimeSlotFormat-LCR
        Unsigned 32-bit integer
        TDD_DL_DPCH_TimeSlotFormat_LCR
    rnsap.s_RNTI_Group  s-RNTI-Group
        No value
    rnsap.sameAsHS_SCCH  sameAsHS-SCCH
        No value
    rnsap.same_As_Scheduled_E_HICH  same-As-Scheduled-E-HICH
        No value
    rnsap.satId  satId
        Unsigned 32-bit integer
        INTEGER_0_63
    rnsap.sat_info_GLOkpList  sat-info-GLOkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_GLOkpList
    rnsap.sat_info_MIDIkpList  sat-info-MIDIkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_MIDIkpList
    rnsap.sat_info_NAVkpList  sat-info-NAVkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_NAVkpList
    rnsap.sat_info_REDkpList  sat-info-REDkpList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_REDkpList
    rnsap.sat_info_SBASecefList  sat-info-SBASecefList
        Unsigned 32-bit integer
        GANSS_SAT_Info_Almanac_SBASecefList
    rnsap.satellite_Almanac_Information  satellite-Almanac-Information
        Unsigned 32-bit integer
    rnsap.satellite_Almanac_Information_item  satellite-Almanac-Information item
        No value
    rnsap.satellite_DGPSCorrections_Information  satellite-DGPSCorrections-Information
        Unsigned 32-bit integer
    rnsap.satellite_DGPSCorrections_Information_item  satellite-DGPSCorrections-Information item
        No value
    rnsap.sbagYgDotDot  sbagYgDotDot
        Byte array
        BIT_STRING_SIZE_10
    rnsap.sbasAccuracy  sbasAccuracy
        Byte array
        BIT_STRING_SIZE_4
    rnsap.sbasAgf1  sbasAgf1
        Byte array
        BIT_STRING_SIZE_8
    rnsap.sbasAgfo  sbasAgfo
        Byte array
        BIT_STRING_SIZE_12
    rnsap.sbasAlmDataID  sbasAlmDataID
        Byte array
        BIT_STRING_SIZE_2
    rnsap.sbasAlmHealth  sbasAlmHealth
        Byte array
        BIT_STRING_SIZE_8
    rnsap.sbasAlmTo  sbasAlmTo
        Byte array
        BIT_STRING_SIZE_11
    rnsap.sbasAlmXg  sbasAlmXg
        Byte array
        BIT_STRING_SIZE_15
    rnsap.sbasAlmXgdot  sbasAlmXgdot
        Byte array
        BIT_STRING_SIZE_3
    rnsap.sbasAlmYg  sbasAlmYg
        Byte array
        BIT_STRING_SIZE_15
    rnsap.sbasAlmYgDot  sbasAlmYgDot
        Byte array
        BIT_STRING_SIZE_3
    rnsap.sbasAlmZg  sbasAlmZg
        Byte array
        BIT_STRING_SIZE_9
    rnsap.sbasAlmZgDot  sbasAlmZgDot
        Byte array
        BIT_STRING_SIZE_4
    rnsap.sbasClockModel  sbasClockModel
        No value
        GANSS_SBASclockModel
    rnsap.sbasECEF  sbasECEF
        No value
        GANSS_NavModel_SBASecef
    rnsap.sbasTo  sbasTo
        Byte array
        BIT_STRING_SIZE_13
    rnsap.sbasXg  sbasXg
        Byte array
        BIT_STRING_SIZE_30
    rnsap.sbasXgDot  sbasXgDot
        Byte array
        BIT_STRING_SIZE_17
    rnsap.sbasXgDotDot  sbasXgDotDot
        Byte array
        BIT_STRING_SIZE_10
    rnsap.sbasYg  sbasYg
        Byte array
        BIT_STRING_SIZE_30
    rnsap.sbasYgDot  sbasYgDot
        Byte array
        BIT_STRING_SIZE_17
    rnsap.sbasZg  sbasZg
        Byte array
        BIT_STRING_SIZE_25
    rnsap.sbasZgDot  sbasZgDot
        Byte array
        BIT_STRING_SIZE_18
    rnsap.sbasZgDotDot  sbasZgDotDot
        Byte array
        BIT_STRING_SIZE_10
    rnsap.schedulingInformation  schedulingInformation
        Unsigned 32-bit integer
    rnsap.schedulingPriorityIndicator  schedulingPriorityIndicator
        Unsigned 32-bit integer
    rnsap.second_TDD_ChannelisationCode  second-TDD-ChannelisationCode
        Unsigned 32-bit integer
        TDD_ChannelisationCode
    rnsap.secondaryCCPCHSystemInformationMBMS  secondaryCCPCHSystemInformationMBMS
        Byte array
        Secondary_CCPCH_System_Information_MBMS
    rnsap.secondaryC_ID  secondaryC-ID
        Unsigned 32-bit integer
        C_ID
    rnsap.secondaryServingCells  secondaryServingCells
        Unsigned 32-bit integer
    rnsap.secondary_CCPCH_Info_TDD  secondary-CCPCH-Info-TDD
        No value
    rnsap.secondary_CCPCH_Info_TDD768  secondary-CCPCH-Info-TDD768
        No value
    rnsap.secondary_CCPCH_TDD_Code_Information  secondary-CCPCH-TDD-Code-Information
        Unsigned 32-bit integer
    rnsap.secondary_CCPCH_TDD_Code_Information768  secondary-CCPCH-TDD-Code-Information768
        Unsigned 32-bit integer
    rnsap.secondary_CCPCH_TDD_InformationList  secondary-CCPCH-TDD-InformationList
        Unsigned 32-bit integer
    rnsap.secondary_CCPCH_TDD_InformationList768  secondary-CCPCH-TDD-InformationList768
        Unsigned 32-bit integer
    rnsap.secondary_CPICH_Information  secondary-CPICH-Information
        No value
    rnsap.secondary_CPICH_Information_Change  secondary-CPICH-Information-Change
        Unsigned 32-bit integer
    rnsap.secondary_CPICH_shall_not_be_used  secondary-CPICH-shall-not-be-used
        No value
    rnsap.secondary_LCR_CCPCH_Info_TDD  secondary-LCR-CCPCH-Info-TDD
        No value
    rnsap.secondary_LCR_CCPCH_TDD_Code_Information  secondary-LCR-CCPCH-TDD-Code-Information
        Unsigned 32-bit integer
    rnsap.secondary_LCR_CCPCH_TDD_InformationList  secondary-LCR-CCPCH-TDD-InformationList
        Unsigned 32-bit integer
    rnsap.secondary_UL_Frequency_Activation_State  secondary-UL-Frequency-Activation-State
        Unsigned 32-bit integer
    rnsap.secondary_e_RNTI  secondary-e-RNTI
        Unsigned 32-bit integer
        E_RNTI
    rnsap.seed  seed
        Unsigned 32-bit integer
    rnsap.semi_staticPart  semi-staticPart
        No value
        TransportFormatSet_Semi_staticPart
    rnsap.separate_indication  separate-indication
        No value
    rnsap.sequenceNumber  sequenceNumber
        Unsigned 32-bit integer
        PLCCHsequenceNumber
    rnsap.service_id  service-id
        Byte array
    rnsap.serving_Grant_Value  serving-Grant-Value
        Unsigned 32-bit integer
        E_Serving_Grant_Value
    rnsap.setsOfHS_SCCH_Codes  setsOfHS-SCCH-Codes
        Unsigned 32-bit integer
    rnsap.setup  setup
        No value
        Additional_EDCH_Setup_Info
    rnsap.setup_Or_Addition_Of_EDCH_On_secondary_UL_Frequency  setup-Or-Addition-Of-EDCH-On-secondary-UL-Frequency
        Unsigned 32-bit integer
    rnsap.setup_Or_ConfigurationChange_Or_Removal_Of_EDCH_On_secondary_UL_Frequency  setup-Or-ConfigurationChange-Or-Removal-Of-EDCH-On-secondary-UL-Frequency
        Unsigned 32-bit integer
    rnsap.sf1_reserved_nav  sf1-reserved-nav
        Byte array
        BIT_STRING_SIZE_87
    rnsap.shortTransActionId  shortTransActionId
        Unsigned 32-bit integer
        INTEGER_0_127
    rnsap.signalledGainFactors  signalledGainFactors
        No value
    rnsap.signalsAvailable  signalsAvailable
        Byte array
        BIT_STRING_SIZE_8
    rnsap.signatureSequenceGroupIndex  signatureSequenceGroupIndex
        Unsigned 32-bit integer
    rnsap.sir  sir
        Unsigned 32-bit integer
        SIR_Value_IncrDecrThres
    rnsap.sir_error  sir-error
        Unsigned 32-bit integer
        SIR_Error_Value_IncrDecrThres
    rnsap.sixtyfourQAM_DL_SupportIndicator  sixtyfourQAM-DL-SupportIndicator
        Unsigned 32-bit integer
    rnsap.sixtyfourQAM_DL_UsageIndicator  sixtyfourQAM-DL-UsageIndicator
        Unsigned 32-bit integer
    rnsap.sixtyfourQAM_UsageAllowedIndicator  sixtyfourQAM-UsageAllowedIndicator
        Unsigned 32-bit integer
    rnsap.spare_zero_fill  spare-zero-fill
        Byte array
        BIT_STRING_SIZE_20
    rnsap.specialBurstScheduling  specialBurstScheduling
        Unsigned 32-bit integer
    rnsap.srnc_id  srnc-id
        Unsigned 32-bit integer
        RNC_ID
    rnsap.startCode  startCode
        Unsigned 32-bit integer
        TDD_ChannelisationCode
    rnsap.status_Flag  status-Flag
        Unsigned 32-bit integer
    rnsap.storm_flag_five  storm-flag-five
        Boolean
        BOOLEAN
    rnsap.storm_flag_four  storm-flag-four
        Boolean
        BOOLEAN
    rnsap.storm_flag_one  storm-flag-one
        Boolean
        BOOLEAN
    rnsap.storm_flag_three  storm-flag-three
        Boolean
        BOOLEAN
    rnsap.storm_flag_two  storm-flag-two
        Boolean
        BOOLEAN
    rnsap.subframeNumber  subframeNumber
        Unsigned 32-bit integer
    rnsap.subframenumber  subframenumber
        Unsigned 32-bit integer
        E_DCH_SubframeNumber_LCR
    rnsap.successfulOutcome  successfulOutcome
        No value
    rnsap.successful_RL_InformationRespList_RL_AdditionFailureFDD  successful-RL-InformationRespList-RL-AdditionFailureFDD
        Unsigned 32-bit integer
        SuccessfulRL_InformationResponseList_RL_AdditionFailureFDD
    rnsap.successful_RL_InformationRespList_RL_SetupFailureFDD  successful-RL-InformationRespList-RL-SetupFailureFDD
        Unsigned 32-bit integer
        SuccessfulRL_InformationResponseList_RL_SetupFailureFDD
    rnsap.successfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation  successfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation
        Unsigned 32-bit integer
    rnsap.successfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation_item  successfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation item
        No value
    rnsap.svHealth  svHealth
        Byte array
        BIT_STRING_SIZE_6
    rnsap.svID  svID
        Unsigned 32-bit integer
        INTEGER_0_63
    rnsap.sv_health_nav  sv-health-nav
        Byte array
        BIT_STRING_SIZE_6
    rnsap.svhealth_alm  svhealth-alm
        Byte array
        BIT_STRING_SIZE_8
    rnsap.syncCase  syncCase
        Unsigned 32-bit integer
    rnsap.syncUL_procParameter  syncUL-procParameter
        No value
        SYNC_UL_ProcParameters
    rnsap.sync_UL_codes_bitmap  sync-UL-codes-bitmap
        Byte array
        BIT_STRING_SIZE_8
    rnsap.synchronisationConfiguration  synchronisationConfiguration
        No value
    rnsap.synchronised  synchronised
        Unsigned 32-bit integer
        CFN
    rnsap.t1  t1
        Unsigned 32-bit integer
    rnsap.tDD  tDD
        Unsigned 32-bit integer
        EARFCN
    rnsap.tDDAckNackPowerOffset  tDDAckNackPowerOffset
        Signed 32-bit integer
        TDD_AckNack_Power_Offset
    rnsap.tDD_AckNack_Power_Offset  tDD-AckNack-Power-Offset
        Signed 32-bit integer
    rnsap.tDD_ChannelisationCode  tDD-ChannelisationCode
        Unsigned 32-bit integer
    rnsap.tDD_ChannelisationCode768  tDD-ChannelisationCode768
        Unsigned 32-bit integer
    rnsap.tDD_ChannelisationCodeLCR  tDD-ChannelisationCodeLCR
        No value
    rnsap.tDD_DPCHOffset  tDD-DPCHOffset
        Unsigned 32-bit integer
    rnsap.tDD_PhysicalChannelOffset  tDD-PhysicalChannelOffset
        Unsigned 32-bit integer
    rnsap.tDD_dL_Code_LCR_Information  tDD-dL-Code-LCR-Information
        Unsigned 32-bit integer
        TDD_DL_Code_LCR_InformationModifyList_RL_ReconfReadyTDD
    rnsap.tDD_uL_Code_LCR_Information  tDD-uL-Code-LCR-Information
        Unsigned 32-bit integer
        TDD_UL_Code_LCR_InformationModifyList_RL_ReconfReadyTDD
    rnsap.tFCI_Coding  tFCI-Coding
        Unsigned 32-bit integer
    rnsap.tFCI_Presence  tFCI-Presence
        Unsigned 32-bit integer
    rnsap.tFCI_SignallingMode  tFCI-SignallingMode
        Unsigned 32-bit integer
    rnsap.tFCS  tFCS
        No value
    rnsap.tFCSvalues  tFCSvalues
        Unsigned 32-bit integer
    rnsap.tFC_Beta  tFC-Beta
        Unsigned 32-bit integer
        TransportFormatCombination_Beta
    rnsap.tGCFN  tGCFN
        Unsigned 32-bit integer
        CFN
    rnsap.tGD  tGD
        Unsigned 32-bit integer
    rnsap.tGL1  tGL1
        Unsigned 32-bit integer
        GapLength
    rnsap.tGL2  tGL2
        Unsigned 32-bit integer
        GapLength
    rnsap.tGPL1  tGPL1
        Unsigned 32-bit integer
        GapDuration
    rnsap.tGPRC  tGPRC
        Unsigned 32-bit integer
    rnsap.tGPSID  tGPSID
        Unsigned 32-bit integer
    rnsap.tGSN  tGSN
        Unsigned 32-bit integer
    rnsap.tMGI  tMGI
        No value
    rnsap.tSTD_Indicator  tSTD-Indicator
        Unsigned 32-bit integer
    rnsap.tUTRANGANSS  tUTRANGANSS
        No value
    rnsap.tUTRANGANSSChangeLimit  tUTRANGANSSChangeLimit
        Unsigned 32-bit integer
        INTEGER_1_256
    rnsap.tUTRANGANSSDriftRate  tUTRANGANSSDriftRate
        Signed 32-bit integer
        INTEGER_M50_50
    rnsap.tUTRANGANSSDriftRateQuality  tUTRANGANSSDriftRateQuality
        Unsigned 32-bit integer
        INTEGER_0_50
    rnsap.tUTRANGANSSMeasurementAccuracyClass  tUTRANGANSSMeasurementAccuracyClass
        Unsigned 32-bit integer
        TUTRANGANSSAccuracyClass
    rnsap.tUTRANGANSSQuality  tUTRANGANSSQuality
        Unsigned 32-bit integer
        INTEGER_0_255
    rnsap.tUTRANGPS  tUTRANGPS
        No value
    rnsap.tUTRANGPSChangeLimit  tUTRANGPSChangeLimit
        Unsigned 32-bit integer
    rnsap.tUTRANGPSDriftRate  tUTRANGPSDriftRate
        Signed 32-bit integer
    rnsap.tUTRANGPSDriftRateQuality  tUTRANGPSDriftRateQuality
        Unsigned 32-bit integer
    rnsap.tUTRANGPSMeasurementAccuracyClass  tUTRANGPSMeasurementAccuracyClass
        Unsigned 32-bit integer
        TUTRANGPSAccuracyClass
    rnsap.tUTRANGPSMeasurementValueInformation  tUTRANGPSMeasurementValueInformation
        No value
    rnsap.tUTRANGPSQuality  tUTRANGPSQuality
        Unsigned 32-bit integer
    rnsap.t_RLFAILURE  t-RLFAILURE
        Unsigned 32-bit integer
        INTEGER_0_255
    rnsap.t_gd  t-gd
        Byte array
        BIT_STRING_SIZE_10
    rnsap.t_gd_nav  t-gd-nav
        Byte array
        BIT_STRING_SIZE_8
    rnsap.t_oa  t-oa
        Unsigned 32-bit integer
        INTEGER_0_255
    rnsap.t_oc  t-oc
        Byte array
        BIT_STRING_SIZE_14
    rnsap.t_oc_nav  t-oc-nav
        Byte array
        BIT_STRING_SIZE_16
    rnsap.t_oe_nav  t-oe-nav
        Byte array
        BIT_STRING_SIZE_16
    rnsap.t_ot_utc  t-ot-utc
        Byte array
        BIT_STRING_SIZE_8
    rnsap.tauC  tauC
        Byte array
        BIT_STRING_SIZE_32
    rnsap.tdd  tdd
        No value
        TDD_TransportFormatSet_ModeDP
    rnsap.tddE_PUCH_Offset  tddE-PUCH-Offset
        Unsigned 32-bit integer
    rnsap.tdd_ChannelisationCode  tdd-ChannelisationCode
        Unsigned 32-bit integer
    rnsap.tdd_ChannelisationCode768  tdd-ChannelisationCode768
        Unsigned 32-bit integer
    rnsap.tdd_ChannelisationCodeLCR  tdd-ChannelisationCodeLCR
        No value
    rnsap.tdd_DL_DPCH_TimeSlotFormat_LCR  tdd-DL-DPCH-TimeSlotFormat-LCR
        Unsigned 32-bit integer
    rnsap.tdd_TPC_DownlinkStepSize  tdd-TPC-DownlinkStepSize
        Unsigned 32-bit integer
    rnsap.tdd_UL_DPCH_TimeSlotFormat_LCR  tdd-UL-DPCH-TimeSlotFormat-LCR
        Unsigned 32-bit integer
    rnsap.ten_ms  ten-ms
        No value
        DTX_Cycle_10ms_Items
    rnsap.ten_msec  ten-msec
        Unsigned 32-bit integer
        INTEGER_1_6000_
    rnsap.teop  teop
        Byte array
        BIT_STRING_SIZE_16
    rnsap.timeSlot  timeSlot
        Unsigned 32-bit integer
    rnsap.timeSlotLCR  timeSlotLCR
        Unsigned 32-bit integer
    rnsap.timeSlot_RL_SetupRspTDD  timeSlot-RL-SetupRspTDD
        Unsigned 32-bit integer
        TimeSlot
    rnsap.time_Stamp  time-Stamp
        Unsigned 32-bit integer
    rnsap.timeslot  timeslot
        Unsigned 32-bit integer
    rnsap.timeslotISCP  timeslotISCP
        Signed 32-bit integer
        UEMeasurementThresholdDLTimeslotISCP
    rnsap.timeslotLCR  timeslotLCR
        Unsigned 32-bit integer
    rnsap.timeslotResource  timeslotResource
        Byte array
        E_DCH_TimeslotResource
    rnsap.timeslotResource_LCR  timeslotResource-LCR
        Byte array
        E_DCH_TimeslotResource_LCR
    rnsap.timeslot_Resource_Related_Information  timeslot-Resource-Related-Information
        Byte array
        E_DCH_TimeslotResource_LCR
    rnsap.timingAdvanceApplied  timingAdvanceApplied
        Unsigned 32-bit integer
    rnsap.tlm_message_nav  tlm-message-nav
        Byte array
        BIT_STRING_SIZE_14
    rnsap.tlm_revd_c_nav  tlm-revd-c-nav
        Byte array
        BIT_STRING_SIZE_2
    rnsap.tmgi  tmgi
        No value
    rnsap.tnlQoS  tnlQoS
        Unsigned 32-bit integer
    rnsap.tnlQos  tnlQos
        Unsigned 32-bit integer
    rnsap.toAWE  toAWE
        Unsigned 32-bit integer
    rnsap.toAWS  toAWS
        Unsigned 32-bit integer
    rnsap.toe_nav  toe-nav
        Byte array
        BIT_STRING_SIZE_14
    rnsap.total_HS_SICH  total-HS-SICH
        Unsigned 32-bit integer
        HS_SICH_total
    rnsap.trCH_SrcStatisticsDescr  trCH-SrcStatisticsDescr
        Unsigned 32-bit integer
    rnsap.trChSourceStatisticsDescriptor  trChSourceStatisticsDescriptor
        Unsigned 32-bit integer
        TrCH_SrcStatisticsDescr
    rnsap.trafficClass  trafficClass
        Unsigned 32-bit integer
    rnsap.transactionID  transactionID
        Unsigned 32-bit integer
    rnsap.transmissionMode  transmissionMode
        Unsigned 32-bit integer
    rnsap.transmissionTime  transmissionTime
        Unsigned 32-bit integer
        TransmissionTimeIntervalSemiStatic
    rnsap.transmissionTimeInterval  transmissionTimeInterval
        Unsigned 32-bit integer
        TransmissionTimeIntervalDynamic
    rnsap.transmissionTimeIntervalInformation  transmissionTimeIntervalInformation
        Unsigned 32-bit integer
    rnsap.transmission_Gap_Pattern_Sequence_ScramblingCode_Information  transmission-Gap-Pattern-Sequence-ScramblingCode-Information
        Unsigned 32-bit integer
    rnsap.transmission_Gap_Pattern_Sequence_Status  transmission-Gap-Pattern-Sequence-Status
        Unsigned 32-bit integer
        Transmission_Gap_Pattern_Sequence_Status_List
    rnsap.transmitDiversityIndicator  transmitDiversityIndicator
        Unsigned 32-bit integer
    rnsap.transmittedCarrierPowerValue  transmittedCarrierPowerValue
        Unsigned 32-bit integer
        INTEGER_0_100
    rnsap.transmittedCodePowerValue  transmittedCodePowerValue
        Unsigned 32-bit integer
        Transmitted_Code_Power_Value
    rnsap.transmitted_code_power  transmitted-code-power
        Unsigned 32-bit integer
        Transmitted_Code_Power_Value_IncrDecrThres
    rnsap.transport  transport
        Unsigned 32-bit integer
        CauseTransport
    rnsap.transportBearerRequestIndicator  transportBearerRequestIndicator
        Unsigned 32-bit integer
    rnsap.transportBlockSize  transportBlockSize
        Unsigned 32-bit integer
    rnsap.transportFormatManagement  transportFormatManagement
        Unsigned 32-bit integer
    rnsap.transportFormatSet  transportFormatSet
        No value
    rnsap.transportLayerAddress  transportLayerAddress
        Byte array
    rnsap.transport_Block_Size_Index  transport-Block-Size-Index
        Unsigned 32-bit integer
    rnsap.transport_Block_Size_Index_LCR  transport-Block-Size-Index-LCR
        Unsigned 32-bit integer
    rnsap.transport_Block_Size_List  transport-Block-Size-List
        Unsigned 32-bit integer
        Transport_Block_Size_List_LCR
    rnsap.transport_Block_Size_maping_Index_LCR  transport-Block-Size-maping-Index-LCR
        Unsigned 32-bit integer
    rnsap.triggeringMessage  triggeringMessage
        Unsigned 32-bit integer
    rnsap.two_ms  two-ms
        No value
        DTX_Cycle_2ms_Items
    rnsap.txDiversityIndicator  txDiversityIndicator
        Unsigned 32-bit integer
    rnsap.tx_tow_nav  tx-tow-nav
        Unsigned 32-bit integer
        INTEGER_0_1048575
    rnsap.type1  type1
        No value
    rnsap.type2  type2
        No value
    rnsap.type3  type3
        No value
    rnsap.uARFCN  uARFCN
        Unsigned 32-bit integer
    rnsap.uARFCNforNd  uARFCNforNd
        Unsigned 32-bit integer
        UARFCN
    rnsap.uARFCNforNt  uARFCNforNt
        Unsigned 32-bit integer
        UARFCN
    rnsap.uARFCNforNu  uARFCNforNu
        Unsigned 32-bit integer
        UARFCN
    rnsap.uC_ID  uC-ID
        No value
    rnsap.uDRE  uDRE
        Unsigned 32-bit integer
    rnsap.uEMeasurementHysteresisTime  uEMeasurementHysteresisTime
        Unsigned 32-bit integer
    rnsap.uEMeasurementTimeToTrigger  uEMeasurementTimeToTrigger
        Unsigned 32-bit integer
    rnsap.uEMeasurementTimeslotISCPListHCR  uEMeasurementTimeslotISCPListHCR
        Unsigned 32-bit integer
        UEMeasurementValueTimeslotISCPListHCR
    rnsap.uEMeasurementTimeslotISCPListLCR  uEMeasurementTimeslotISCPListLCR
        Unsigned 32-bit integer
        UEMeasurementValueTimeslotISCPListLCR
    rnsap.uEMeasurementTransmittedPowerListHCR  uEMeasurementTransmittedPowerListHCR
        Unsigned 32-bit integer
        UEMeasurementValueTransmittedPowerListHCR
    rnsap.uEMeasurementTransmittedPowerListLCR  uEMeasurementTransmittedPowerListLCR
        Unsigned 32-bit integer
        UEMeasurementValueTransmittedPowerListLCR
    rnsap.uEMeasurementTreshold  uEMeasurementTreshold
        Unsigned 32-bit integer
        UEMeasurementThreshold
    rnsap.uETransmitPower  uETransmitPower
        Signed 32-bit integer
        UEMeasurementThresholdUETransmitPower
    rnsap.uE_AggregateMaximumBitRateDownlink  uE-AggregateMaximumBitRateDownlink
        Unsigned 32-bit integer
    rnsap.uE_AggregateMaximumBitRateUplink  uE-AggregateMaximumBitRateUplink
        Unsigned 32-bit integer
    rnsap.uE_Capabilities_Info  uE-Capabilities-Info
        No value
    rnsap.uE_DPCCH_burst1  uE-DPCCH-burst1
        Unsigned 32-bit integer
    rnsap.uE_DPCCH_burst2  uE-DPCCH-burst2
        Unsigned 32-bit integer
    rnsap.uE_DRX_Cycle  uE-DRX-Cycle
        Unsigned 32-bit integer
    rnsap.uE_DRX_Grant_Monitoring  uE-DRX-Grant-Monitoring
        Boolean
    rnsap.uE_DTX_Cycle1_10ms  uE-DTX-Cycle1-10ms
        Unsigned 32-bit integer
    rnsap.uE_DTX_Cycle1_2ms  uE-DTX-Cycle1-2ms
        Unsigned 32-bit integer
    rnsap.uE_DTX_Cycle2_10ms  uE-DTX-Cycle2-10ms
        Unsigned 32-bit integer
    rnsap.uE_DTX_Cycle2_2ms  uE-DTX-Cycle2-2ms
        Unsigned 32-bit integer
    rnsap.uE_DTX_DRX_Offset  uE-DTX-DRX-Offset
        Unsigned 32-bit integer
    rnsap.uE_DTX_Long_Preamble  uE-DTX-Long-Preamble
        Unsigned 32-bit integer
    rnsap.uE_Transmitted_Power  uE-Transmitted-Power
        No value
        UE_MeasurementValue_UE_Transmitted_Power
    rnsap.uE_with_enhanced_HS_SCCH_support_indicator  uE-with-enhanced-HS-SCCH-support-indicator
        No value
    rnsap.uEmeasurementValue  uEmeasurementValue
        Unsigned 32-bit integer
    rnsap.uL_Code_Information  uL-Code-Information
        Unsigned 32-bit integer
        TDD_UL_Code_Information
    rnsap.uL_Code_Information768  uL-Code-Information768
        Unsigned 32-bit integer
        TDD_UL_Code_Information768
    rnsap.uL_Code_LCR_Information  uL-Code-LCR-Information
        Unsigned 32-bit integer
        TDD_UL_Code_LCR_Information
    rnsap.uL_Code_LCR_InformationList  uL-Code-LCR-InformationList
        Unsigned 32-bit integer
        TDD_UL_Code_LCR_Information
    rnsap.uL_DL_mode  uL-DL-mode
        Unsigned 32-bit integer
    rnsap.uL_Delta_T2TP  uL-Delta-T2TP
        Unsigned 32-bit integer
    rnsap.uL_EARFCN  uL-EARFCN
        Unsigned 32-bit integer
        EARFCN
    rnsap.uL_SIR_Target_CCTrCH_InformationItem_RL_SetupRspTDD768  uL-SIR-Target-CCTrCH-InformationItem-RL-SetupRspTDD768
        Signed 32-bit integer
        UL_SIR
    rnsap.uL_Synchronisation_Frequency  uL-Synchronisation-Frequency
        Unsigned 32-bit integer
    rnsap.uL_Synchronisation_StepSize  uL-Synchronisation-StepSize
        Unsigned 32-bit integer
    rnsap.uL_TimeslotISCP  uL-TimeslotISCP
        Unsigned 32-bit integer
    rnsap.uL_TimeslotLCR_Info  uL-TimeslotLCR-Info
        Unsigned 32-bit integer
        UL_TimeslotLCR_Information
    rnsap.uL_TimeslotLCR_Information  uL-TimeslotLCR-Information
        Unsigned 32-bit integer
    rnsap.uL_Timeslot_Information  uL-Timeslot-Information
        Unsigned 32-bit integer
    rnsap.uL_Timeslot_Information768  uL-Timeslot-Information768
        Unsigned 32-bit integer
    rnsap.uL_Timeslot_InformationList_PhyChReconfRqstTDD  uL-Timeslot-InformationList-PhyChReconfRqstTDD
        Unsigned 32-bit integer
    rnsap.uL_Timeslot_InformationModifyList_RL_ReconfReadyTDD  uL-Timeslot-InformationModifyList-RL-ReconfReadyTDD
        Unsigned 32-bit integer
    rnsap.uL_UARFCN  uL-UARFCN
        Unsigned 32-bit integer
        UARFCN
    rnsap.uPPCHPositionLCR  uPPCHPositionLCR
        Unsigned 32-bit integer
    rnsap.uRA  uRA
        No value
        URA_PagingRqst
    rnsap.uRA_ID  uRA-ID
        Unsigned 32-bit integer
    rnsap.uRA_Information  uRA-Information
        No value
    rnsap.uSCH_ID  uSCH-ID
        Unsigned 32-bit integer
    rnsap.uSCH_InformationResponse  uSCH-InformationResponse
        No value
        USCH_InformationResponse_RL_AdditionRspTDD
    rnsap.uSCHsToBeAddedOrModified  uSCHsToBeAddedOrModified
        No value
        USCHToBeAddedOrModified_RL_ReconfReadyTDD
    rnsap.uU_ActivationState  uU-ActivationState
        Unsigned 32-bit integer
    rnsap.udre  udre
        Unsigned 32-bit integer
    rnsap.udreGrowthRate  udreGrowthRate
        Unsigned 32-bit integer
    rnsap.udreValidityTime  udreValidityTime
        Unsigned 32-bit integer
    rnsap.ueSpecificMidamble  ueSpecificMidamble
        Unsigned 32-bit integer
        MidambleShiftLong
    rnsap.ul_BLER  ul-BLER
        Signed 32-bit integer
        BLER
    rnsap.ul_CCTrCHInformation  ul-CCTrCHInformation
        No value
        UL_CCTrCHInformationList_RL_SetupRspTDD
    rnsap.ul_CCTrCHInformation768  ul-CCTrCHInformation768
        No value
        UL_CCTrCHInformationList_RL_SetupRspTDD768
    rnsap.ul_CCTrCH_ID  ul-CCTrCH-ID
        Unsigned 32-bit integer
        CCTrCH_ID
    rnsap.ul_CCTrCH_Information  ul-CCTrCH-Information
        No value
        UL_CCTrCH_InformationList_RL_ReconfReadyTDD
    rnsap.ul_CCTrCH_LCR_Information  ul-CCTrCH-LCR-Information
        No value
        UL_CCTrCH_LCR_InformationList_RL_AdditionRspTDD
    rnsap.ul_DPCCH_SlotFormat  ul-DPCCH-SlotFormat
        Unsigned 32-bit integer
    rnsap.ul_DPCH_AddInformation  ul-DPCH-AddInformation
        No value
        UL_DPCH_InformationAddList_RL_ReconfReadyTDD
    rnsap.ul_DPCH_DeleteInformation  ul-DPCH-DeleteInformation
        No value
        UL_DPCH_InformationDeleteList_RL_ReconfReadyTDD
    rnsap.ul_DPCH_Information  ul-DPCH-Information
        No value
        UL_DPCH_InformationList_RL_SetupRspTDD
    rnsap.ul_DPCH_Information768  ul-DPCH-Information768
        No value
        UL_DPCH_InformationList_RL_SetupRspTDD768
    rnsap.ul_DPCH_LCR_Information  ul-DPCH-LCR-Information
        No value
        UL_DPCH_LCR_InformationList_RL_SetupRspTDD
    rnsap.ul_DPCH_ModifyInformation  ul-DPCH-ModifyInformation
        No value
        UL_DPCH_InformationModifyList_RL_ReconfReadyTDD
    rnsap.ul_FP_Mode  ul-FP-Mode
        Unsigned 32-bit integer
    rnsap.ul_LCR_CCTrCHInformation  ul-LCR-CCTrCHInformation
        No value
        UL_LCR_CCTrCHInformationList_RL_SetupRspTDD
    rnsap.ul_PhysCH_SF_Variation  ul-PhysCH-SF-Variation
        Unsigned 32-bit integer
    rnsap.ul_PunctureLimit  ul-PunctureLimit
        Unsigned 32-bit integer
        PunctureLimit
    rnsap.ul_SIRTarget  ul-SIRTarget
        Signed 32-bit integer
        UL_SIR
    rnsap.ul_SIR_Target  ul-SIR-Target
        Signed 32-bit integer
        UL_SIR
    rnsap.ul_ScramblingCode  ul-ScramblingCode
        No value
    rnsap.ul_ScramblingCodeLength  ul-ScramblingCodeLength
        Unsigned 32-bit integer
    rnsap.ul_ScramblingCodeNumber  ul-ScramblingCodeNumber
        Unsigned 32-bit integer
    rnsap.ul_TFCS  ul-TFCS
        No value
        TFCS
    rnsap.ul_TimeSlot_ISCP_Info  ul-TimeSlot-ISCP-Info
        Unsigned 32-bit integer
    rnsap.ul_TimeSlot_ISCP_LCR_Info  ul-TimeSlot-ISCP-LCR-Info
        Unsigned 32-bit integer
    rnsap.ul_TransportformatSet  ul-TransportformatSet
        No value
        TransportFormatSet
    rnsap.ul_cCTrCH_ID  ul-cCTrCH-ID
        Unsigned 32-bit integer
        CCTrCH_ID
    rnsap.ul_ccTrCHID  ul-ccTrCHID
        Unsigned 32-bit integer
        CCTrCH_ID
    rnsap.ul_transportFormatSet  ul-transportFormatSet
        No value
        TransportFormatSet
    rnsap.uncertaintyAltitude  uncertaintyAltitude
        Unsigned 32-bit integer
        INTEGER_0_127
    rnsap.uncertaintyCode  uncertaintyCode
        Unsigned 32-bit integer
        INTEGER_0_127
    rnsap.uncertaintyEllipse  uncertaintyEllipse
        No value
        GA_UncertaintyEllipse
    rnsap.uncertaintyRadius  uncertaintyRadius
        Unsigned 32-bit integer
        INTEGER_0_127
    rnsap.uncertaintySemi_major  uncertaintySemi-major
        Unsigned 32-bit integer
        INTEGER_0_127
    rnsap.uncertaintySemi_minor  uncertaintySemi-minor
        Unsigned 32-bit integer
        INTEGER_0_127
    rnsap.unsuccessfulOutcome  unsuccessfulOutcome
        No value
    rnsap.unsuccessful_RL_InformationRespItem_RL_AdditionFailureTDD  unsuccessful-RL-InformationRespItem-RL-AdditionFailureTDD
        No value
    rnsap.unsuccessful_RL_InformationRespItem_RL_SetupFailureTDD  unsuccessful-RL-InformationRespItem-RL-SetupFailureTDD
        No value
    rnsap.unsuccessful_RL_InformationRespList_RL_AdditionFailureFDD  unsuccessful-RL-InformationRespList-RL-AdditionFailureFDD
        Unsigned 32-bit integer
        UnsuccessfulRL_InformationResponseList_RL_AdditionFailureFDD
    rnsap.unsuccessful_RL_InformationRespList_RL_SetupFailureFDD  unsuccessful-RL-InformationRespList-RL-SetupFailureFDD
        Unsigned 32-bit integer
        UnsuccessfulRL_InformationResponseList_RL_SetupFailureFDD
    rnsap.unsuccessfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation  unsuccessfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation
        Unsigned 32-bit integer
    rnsap.unsuccessfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation_item  unsuccessfullNeighbouringCellSFNSFNObservedTimeDifferenceMeasurementInformation item
        No value
    rnsap.unsynchronised  unsynchronised
        No value
    rnsap.uplinkCellCapacityClassValue  uplinkCellCapacityClassValue
        Unsigned 32-bit integer
        INTEGER_1_100_
    rnsap.uplinkLoadValue  uplinkLoadValue
        Unsigned 32-bit integer
        INTEGER_0_100
    rnsap.uplinkNRTLoadInformationValue  uplinkNRTLoadInformationValue
        Unsigned 32-bit integer
        INTEGER_0_3
    rnsap.uplinkRTLoadValue  uplinkRTLoadValue
        Unsigned 32-bit integer
        INTEGER_0_100
    rnsap.uplinkStepSizeLCR  uplinkStepSizeLCR
        Unsigned 32-bit integer
        TDD_TPC_UplinkStepSize_LCR
    rnsap.uplinkTimeslotISCPValue  uplinkTimeslotISCPValue
        Unsigned 32-bit integer
        UL_TimeslotISCP
    rnsap.uplink_Compressed_Mode_Method  uplink-Compressed-Mode-Method
        Unsigned 32-bit integer
    rnsap.ura_id  ura-id
        Unsigned 32-bit integer
    rnsap.ura_pch  ura-pch
        No value
        Ura_Pch_State
    rnsap.usch_ID  usch-ID
        Unsigned 32-bit integer
    rnsap.usch_InformationResponse  usch-InformationResponse
        No value
        USCH_InformationResponse_RL_SetupRspTDD
    rnsap.usch_LCR_InformationResponse  usch-LCR-InformationResponse
        No value
        USCH_LCR_InformationResponse_RL_SetupRspTDD
    rnsap.user_range_accuracy_index_nav  user-range-accuracy-index-nav
        Byte array
        BIT_STRING_SIZE_4
    rnsap.utcA0  utcA0
        Byte array
        BIT_STRING_SIZE_16
    rnsap.utcA0wnt  utcA0wnt
        Byte array
        BIT_STRING_SIZE_32
    rnsap.utcA1  utcA1
        Byte array
        BIT_STRING_SIZE_13
    rnsap.utcA1wnt  utcA1wnt
        Byte array
        BIT_STRING_SIZE_24
    rnsap.utcA2  utcA2
        Byte array
        BIT_STRING_SIZE_7
    rnsap.utcDN  utcDN
        Byte array
        BIT_STRING_SIZE_4
    rnsap.utcDeltaTls  utcDeltaTls
        Byte array
        BIT_STRING_SIZE_8
    rnsap.utcDeltaTlsf  utcDeltaTlsf
        Byte array
        BIT_STRING_SIZE_8
    rnsap.utcModel1  utcModel1
        No value
        GANSS_UTCmodelSet1
    rnsap.utcModel2  utcModel2
        No value
        GANSS_UTCmodelSet2
    rnsap.utcModel3  utcModel3
        No value
        GANSS_UTCmodelSet3
    rnsap.utcStandardID  utcStandardID
        Byte array
        BIT_STRING_SIZE_3
    rnsap.utcTot  utcTot
        Byte array
        BIT_STRING_SIZE_16
    rnsap.utcWNlsf  utcWNlsf
        Byte array
        BIT_STRING_SIZE_8
    rnsap.utcWNot  utcWNot
        Byte array
        BIT_STRING_SIZE_13
    rnsap.utcWNt  utcWNt
        Byte array
        BIT_STRING_SIZE_8
    rnsap.value  value
        No value
        ProtocolIE_Field_value
    rnsap.wT  wT
        Unsigned 32-bit integer
        INTEGER_1_4
    rnsap.w_n_lsf_utc  w-n-lsf-utc
        Byte array
        BIT_STRING_SIZE_8
    rnsap.w_n_nav  w-n-nav
        Byte array
        BIT_STRING_SIZE_10
    rnsap.w_n_t_utc  w-n-t-utc
        Byte array
        BIT_STRING_SIZE_8
    rnsap.wna_alm  wna-alm
        Byte array
        BIT_STRING_SIZE_8

Unidirectional Link Detection (udld)

    udld.checksum  Checksum
        Unsigned 16-bit integer
    udld.flags  Flags
        Unsigned 8-bit integer
    udld.flags.rsy  ReSynch
        Unsigned 8-bit integer
    udld.flags.rt  Recommended timeout
        Unsigned 8-bit integer
    udld.opcode  Opcode
        Unsigned 8-bit integer
    udld.tlv.len  Length
        Unsigned 16-bit integer
    udld.tlv.type  Type
        Unsigned 16-bit integer
    udld.version  Version
        Unsigned 8-bit integer

Unisys Transmittal System (uts)

    uts.ack  Ack
        Boolean
        TRUE if Ack
    uts.busy  Busy
        Boolean
        TRUE if Busy
    uts.data  Data
        String
        User Data Message
    uts.did  DID
        Unsigned 8-bit integer
        Device Identifier address
    uts.function  Function
        Unsigned 8-bit integer
        Function Code value
    uts.msgwaiting  MsgWaiting
        Boolean
        TRUE if Message Waiting
    uts.notbusy  NotBusy
        Boolean
        TRUE if Not Busy
    uts.replyrequest  ReplyRequst
        Boolean
        TRUE if Reply Request
    uts.retxrequst  ReTxRequst
        Boolean
        TRUE if Re-transmit Request
    uts.rid  RID
        Unsigned 8-bit integer
        Remote Identifier address
    uts.sid  SID
        Unsigned 8-bit integer
        Site Identifier address

Universal Computer Protocol (ucp)

    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 repetition.
    ucp.parm.LRR  LRR
        Unsigned 8-bit integer
        Leg. code for repetition 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
        Modified 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
        Repetition 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.data  Data
        String
    ucp.xser.length  Length
        Unsigned 16-bit integer
    ucp.xser.service  Type of service
        Unsigned 8-bit integer
        The type of service specified.

Unlicensed Mobile Access (uma)

    uma.ciphering_command_mac  Ciphering Command MAC (Message Authentication Code)
        Byte array
    uma.ciphering_key_seq_num  Values for the ciphering key
        Unsigned 8-bit integer
    uma.li  Length Indicator
        Unsigned 16-bit integer
    uma.pd  Protocol Discriminator
        Unsigned 8-bit integer
    uma.rand_val  Ciphering Command RAND value
        Byte array
    uma.sapi_id  SAPI ID
        Unsigned 8-bit integer
    uma.skip.ind  Skip Indicator
        Unsigned 8-bit integer
    uma.urlc.msg.type  URLC Message Type
        Unsigned 8-bit integer
    uma.urlc.seq.nr  Sequence Number
        Byte array
    uma.urlc.tlli  Temporary Logical Link Identifier
        Byte array
    uma.urr.3GECS  3GECS, 3G Early Classmark Sending Restriction
        Unsigned 8-bit integer
    uma.urr.CR  Cipher Response(CR)
        Unsigned 8-bit integer
    uma.urr.ECMP  ECMP, Emergency Call Mode Preference
        Unsigned 8-bit integer
    uma.urr.GPRS_resumption  GPRS resumption ACK
        Unsigned 8-bit integer
    uma.urr.L3_protocol_discriminator  Protocol discriminator
        Unsigned 8-bit integer
    uma.urr.LBLI  LBLI, Location Black List indicator
        Unsigned 8-bit integer
    uma.urr.LS  Location Status(LS)
        Unsigned 8-bit integer
    uma.urr.NMO  NMO, Network Mode of Operation
        Unsigned 8-bit integer
    uma.urr.PDU_in_error  PDU in Error,
        Byte array
    uma.urr.PFCFM  PFCFM, PFC_FEATURE_MODE
        Unsigned 8-bit integer
    uma.urr.RE  RE, Call reestablishment allowed
        Unsigned 8-bit integer
    uma.urr.RI  Reset Indicator(RI)
        Unsigned 8-bit integer
    uma.urr.SC  SC
        Unsigned 8-bit integer
    uma.urr.SGSNR  SGSN Release
        Unsigned 8-bit integer
    uma.urr.ULQI  ULQI, UL Quality Indication
        Unsigned 8-bit integer
    uma.urr.URLCcause  User Data Rate value (bits/s)
        Unsigned 32-bit integer
    uma.urr.algorithm_identifier  Algorithm identifier
        Unsigned 8-bit integer
        Algorithm_identifier
    uma.urr.ap_location  AP Location
        Byte array
    uma.urr.ap_service_name_type  AP Service Name type
        Unsigned 8-bit integer
    uma.urr.ap_service_name_value  AP Service Name Value
        String
    uma.urr.att  ATT, Attach-detach allowed
        Unsigned 8-bit integer
    uma.urr.bcc  BCC
        Unsigned 8-bit integer
    uma.urr.cbs  CBS Cell Broadcast Service
        Unsigned 8-bit integer
    uma.urr.cell_id  Cell Identity
        Unsigned 16-bit integer
    uma.urr.communication_port  Communication Port
        Unsigned 16-bit integer
    uma.urr.dtm  DTM, Dual Transfer Mode of Operation by network
        Unsigned 8-bit integer
    uma.urr.establishment_cause  Establishment Cause
        Unsigned 8-bit integer
    uma.urr.fqdn  Fully Qualified Domain/Host Name (FQDN)
        String
    uma.urr.ga_psr_cause  GA-PSR Cause
        Unsigned 8-bit integer
    uma.urr.gc  GC, GERAN Capable
        Unsigned 8-bit integer
    uma.urr.gci  GCI, GSM Coverage Indicator
        Unsigned 8-bit integer
    uma.urr.gmsi  GMSI, GAN Mode Support Indicator)
        Unsigned 8-bit integer
        GMSI, GAN Mode Support Indicator
    uma.urr.gprs_port  UDP Port for GPRS user data transport
        Unsigned 16-bit integer
    uma.urr.gprs_usr_data_ipv4  IP address for GPRS user data transport
        IPv4 address
    uma.urr.gsmrrstate  GSM RR State value
        Unsigned 8-bit integer
    uma.urr.ie.len  URR Information Element length
        Unsigned 16-bit integer
    uma.urr.ie.mobileid.type  Mobile Identity Type
        Unsigned 8-bit integer
    uma.urr.ie.type  URR Information Element
        Unsigned 8-bit integer
    uma.urr.ip_type  IP address type number value
        Unsigned 8-bit integer
    uma.urr.is_rej_cau  Discovery Reject Cause
        Unsigned 8-bit integer
    uma.urr.l3  L3 message contents
        Byte array
    uma.urr.lac  Location area code
        Unsigned 16-bit integer
    uma.urr.llc_pdu  LLC-PDU
        Byte array
    uma.urr.mcc  Mobile Country Code
        Unsigned 16-bit integer
    uma.urr.mnc  Mobile network code
        Unsigned 16-bit integer
    uma.urr.mps  UMPS, Manual PLMN Selection indicator
        Unsigned 8-bit integer
        MPS, Manual PLMN Selection indicator
    uma.urr.ms_radio_id  MS Radio Identity
        6-byte Hardware (MAC) Address
    uma.urr.mscr  MSCR, MSC Release
        Unsigned 8-bit integer
    uma.urr.msg.type  URR Message Type
        Unsigned 16-bit integer
    uma.urr.ncc  NCC
        Unsigned 8-bit integer
    uma.urr.num_of_cbs_frms  Number of CBS Frames
        Unsigned 8-bit integer
    uma.urr.num_of_plms  Number of PLMN:s
        Unsigned 8-bit integer
    uma.urr.oddevenind  Odd/even indication
        Unsigned 8-bit integer
        Mobile Identity
    uma.urr.peak_tpt_cls  PEAK_THROUGHPUT_CLASS
        Unsigned 8-bit integer
    uma.urr.psho  PS HO, PS Handover Capable
        Unsigned 8-bit integer
    uma.urr.rac  Routing Area Code
        Unsigned 8-bit integer
    uma.urr.radio_id  Radio Identity
        6-byte Hardware (MAC) Address
    uma.urr.radio_pri  Radio Priority
        Unsigned 8-bit integer
        RADIO_PRIORITY
    uma.urr.radio_type_of_id  Type of identity
        Unsigned 8-bit integer
    uma.urr.redirection_counter  Redirection Counter
        Unsigned 8-bit integer
    uma.urr.rrlc_mode  RLC mode
        Unsigned 8-bit integer
    uma.urr.rrs  RTP Redundancy Support(RRS)
        Unsigned 8-bit integer
    uma.urr.rtcp_port  RTCP UDP port
        Unsigned 16-bit integer
    uma.urr.rtp_port  RTP UDP port
        Unsigned 16-bit integer
    uma.urr.rxlevel  RX Level
        Unsigned 8-bit integer
    uma.urr.sample_size  Sample Size
        Unsigned 8-bit integer
    uma.urr.service_zone_str_len  Length of UMA Service Zone string
        Unsigned 8-bit integer
    uma.urr.sgwipv4  SGW IPv4 address
        IPv4 address
    uma.urr.state  URR State
        Unsigned 8-bit integer
    uma.urr.t3212  T3212 Timer value(seconds)
        Unsigned 8-bit integer
    uma.urr.tu3902  TU3902 Timer value(seconds)
        Unsigned 16-bit integer
    uma.urr.tu3906  TU3907 Timer value(seconds)
        Unsigned 16-bit integer
        TU3906 Timer value(seconds)
    uma.urr.tu3907  TU3907 Timer value(seconds)
        Unsigned 16-bit integer
    uma.urr.tu3910  TU3907 Timer value(seconds)
        Unsigned 16-bit integer
        TU3910 Timer value(seconds)
    uma.urr.tu3920  TU3920 Timer value(seconds)
        Unsigned 16-bit integer
        TU3920 Timer value(hundreds of of ms)
    uma.urr.tu4001  TU4001 Timer value(seconds)
        Unsigned 16-bit integer
    uma.urr.tu4003  TU4003 Timer value(seconds)
        Unsigned 16-bit integer
    uma.urr.tura  TURA, Type of Unlicensed Radio
        Unsigned 8-bit integer
    uma.urr.uc  UC, UTRAN Capable
        Unsigned 8-bit integer
        GC, GERAN Capable
    uma.urr.uma_UTRAN_cell_id_disc  UTRAN Cell Identification Discriminator
        Unsigned 8-bit integer
    uma.urr.uma_codec_mode  GAN A/Gb Mode Codec Mode
        Unsigned 8-bit integer
    uma.urr.uma_service_zone_icon_ind  UMA Service Zone Icon Indicator
        Unsigned 8-bit integer
    uma.urr.uma_service_zone_str  UMA Service Zone string,
        String
    uma.urr.uma_suti  SUTI, Serving GANC table indicator
        Unsigned 8-bit integer
    uma.urr.uma_window_size  Window Size
        Unsigned 8-bit integer
    uma.urr.umaband  UMA Band
        Unsigned 8-bit integer
    uma.urr.unc_fqdn  UNC Fully Qualified Domain/Host Name (FQDN)
        String
    uma.urr.uncipv4  UNC IPv4 address
        IPv4 address
    uma.urr.uri  GAN Release Indicator
        Unsigned 8-bit integer
        URI
    uma_urr.imei  IMEI
        String
    uma_urr.imeisv  IMEISV
        String
    uma_urr.imsi  IMSI
        String
    uma_urr.tmsi_p_tmsi  TMSI/P-TMSI
        String

Unreassembled Fragmented Packet (unreassembled)

Unreliable Multicast Inter-ORB Protocol (miop)

    miop.flags  Flags
        Unsigned 8-bit integer
        PacketHeader flags
    miop.hdr_version  Version
        Unsigned 8-bit integer
        PacketHeader hdr_version
    miop.magic  Magic
        String
        PacketHeader magic
    miop.number_of_packets  NumberOfPackets
        Unsigned 32-bit integer
        PacketHeader number_of_packets
    miop.packet_length  Length
        Unsigned 16-bit integer
        PacketHeader packet_length
    miop.packet_number  PacketNumber
        Unsigned 32-bit integer
        PacketHeader packet_number
    miop.unique_id  UniqueId
        Byte array
        UniqueId id
    miop.unique_id_len  UniqueIdLength
        Unsigned 32-bit integer
        UniqueId length

User Datagram Protocol (udp)

    udp.checksum  Checksum
        Unsigned 16-bit integer
        Details at: http://www.wireshark.org/docs/wsug_html_chunked/ChAdvChecksums.html
    udp.checksum_bad  Bad Checksum
        Boolean
        True: checksum doesn't match packet content; False: matches content or not checked
    udp.checksum_good  Good Checksum
        Boolean
        True: checksum matches packet content; False: doesn't match content or not checked
    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.proc.dstcmd  Destination process name
        String
        Destination process command name
    udp.proc.dstpid  Destination process ID
        Unsigned 32-bit integer
    udp.proc.dstuid  Destination process user ID
        Unsigned 32-bit integer
    udp.proc.dstuname  Destination process user name
        String
    udp.proc.srccmd  Source process name
        String
        Source process command name
    udp.proc.srcpid  Source process ID
        Unsigned 32-bit integer
    udp.proc.srcuid  Source process user ID
        Unsigned 32-bit integer
    udp.proc.srcuname  Source process user name
        String
    udp.srcport  Source Port
        Unsigned 16-bit integer

V5.2 (v52)

    v2.digit_ack  Digit ack request indication
        Unsigned 8-bit integer
    v52.V5_ln_id  V5 2048 kbit/s Link Identifier
        Unsigned 8-bit integer
    v52.ack_request_indicator  Ack request indicator
        Unsigned 8-bit integer
    v52.add_ms_id  Additional MS ID
        Unsigned 8-bit integer
    v52.address  Address
        Unsigned 8-bit integer
    v52.auto_signalling_sequence  Autonomous signalling sequence
        Unsigned 8-bit integer
    v52.bcc_address  Address bcc
        Unsigned 8-bit integer
    v52.bcc_low_address  Address bcc Low
        Unsigned 8-bit integer
    v52.bcc_protocol_cause  Protocol error cause type
        Unsigned 8-bit integer
    v52.cadenced_ring  Cadenced ring
        Unsigned 8-bit integer
    v52.cause_type  Cause type
        Unsigned 8-bit integer
    v52.connection_incomplete_reason  Reason
        Unsigned 8-bit integer
    v52.control_function  Control function ID
        Unsigned 8-bit integer
    v52.control_function_element  Control function element
        Unsigned 8-bit integer
    v52.cp_rejection_cause  Rejection cp cause
        Unsigned 8-bit integer
    v52.ctrl_address  Address ctrl
        Unsigned 8-bit integer
    v52.ctrl_low_address  Address ctrl Low
        Unsigned 8-bit integer
    v52.diagnoatic_message  Diagnostic message
        Unsigned 8-bit integer
    v52.diagnostic_element  Diagnostic element
        Unsigned 8-bit integer
    v52.diagnostic_inforation  Diagnostic information
        Unsigned 8-bit integer
    v52.diagnostic_message  Diagnostic message
        Unsigned 8-bit integer
    v52.digit_info  Digit information
        Unsigned 8-bit integer
    v52.digit_spare  Digit spare
        Unsigned 8-bit integer
    v52.disc  Protocol discriminator
        Unsigned 8-bit integer
    v52.duration_type  Duration Type
        Unsigned 8-bit integer
    v52.error_cause  Protocol Error Cause type
        Unsigned 8-bit integer
    v52.info_element  Information element
        Unsigned 8-bit integer
    v52.info_length  Information length
        Unsigned 8-bit integer
    v52.interface_all_id  Interface all ID
        Unsigned 24-bit integer
    v52.interface_id  Interface ID
        Unsigned 8-bit integer
    v52.interface_low_id  Interface down ID
        Unsigned 8-bit integer
    v52.interface_up_id  Interface up ID
        Unsigned 8-bit integer
    v52.isdn_address  Address isdn
        Unsigned 8-bit integer
    v52.isdn_low_address  Address isdn Low
        Unsigned 8-bit integer
    v52.isdn_user_port_id  ISDN User Port Identification Value
        Unsigned 8-bit integer
    v52.isdn_user_port_ts_num  ISDN user port time slot number
        Unsigned 8-bit integer
    v52.line_info  Line_Information
        Unsigned 8-bit integer
    v52.link_address  Address link
        Unsigned 8-bit integer
    v52.link_control_function  Link control function
        Unsigned 8-bit integer
    v52.link_low_address  Address link Low
        Unsigned 8-bit integer
    v52.low_address  Address Low
        Unsigned 8-bit integer
    v52.msg_type  Message type
        Unsigned 8-bit integer
    v52.number_of_pulses  Number of pulses
        Unsigned 8-bit integer
    v52.override  Override
        Boolean
    v52.performance_grading  Performance grading
        Unsigned 8-bit integer
    v52.prot_address  Address prot
        Unsigned 8-bit integer
    v52.prot_low_address  Address prot Low
        Unsigned 8-bit integer
    v52.pstn_address  Address pstn
        Unsigned 8-bit integer
    v52.pstn_low_address  Address pstn Low
        Unsigned 8-bit integer
    v52.pstn_sequence_number  Sequence number
        Unsigned 8-bit integer
    v52.pstn_user_port_id  PSTN User Port identification Value
        Unsigned 8-bit integer
    v52.pstn_user_port_id_lower  PSTN User Port Identification Value (lower)
        Unsigned 8-bit integer
    v52.pulse_duration  Pulse duration type
        Unsigned 8-bit integer
    v52.pulse_notification  Pulse notification
        Unsigned 8-bit integer
    v52.pulse_type  Pulse Type
        Unsigned 8-bit integer
    v52.reject_cause_type  Reject cause type
        Unsigned 8-bit integer
    v52.rejection_cause  Rejection cause
        Unsigned 8-bit integer
    v52.res_unavailable  Resource unavailable
        String
    v52.sequence_number  Sequence number
        Unsigned 8-bit integer
    v52.sequence_response  Sequence response
        Unsigned 8-bit integer
    v52.state  PSTN FSM state
        Unsigned 8-bit integer
    v52.steady_signal  Steady Signal
        Unsigned 8-bit integer
    v52.suppression_indicator  Suppression indicator
        Unsigned 8-bit integer
    v52.user_port_id_lower  ISDN User Port Identification Value (lower)
        Unsigned 8-bit integer
    v52.v5_time_slot  V5 Time Slot Number
        Unsigned 8-bit integer
    v52.variant  Variant
        Unsigned 8-bit integer

V5.2-User Adaptation Layer (v5ua)

    v5ua.adaptation_layer_id  Adaptation Layer ID
        String
    v5ua.asp_identifier  ASP Identifier
        Unsigned 32-bit integer
    v5ua.asp_reason  Reason
        Unsigned 32-bit integer
    v5ua.channel_id  Channel Identifier
        Unsigned 8-bit integer
    v5ua.diagnostic_info  Diagnostic Information
        Byte array
    v5ua.dlci_one_bit  One bit
        Boolean
    v5ua.dlci_sapi  SAPI
        Unsigned 8-bit integer
    v5ua.dlci_spare_bit  Spare bit
        Boolean
    v5ua.dlci_tei  TEI
        Unsigned 8-bit integer
    v5ua.dlci_zero_bit  Zero bit
        Boolean
    v5ua.draft_error_code  Error code (draft)
        Unsigned 32-bit integer
    v5ua.efa  Envelope Function Address
        Unsigned 16-bit integer
    v5ua.error_code  Error code
        Unsigned 32-bit integer
    v5ua.error_reason  Error Reason
        Unsigned 32-bit integer
    v5ua.heartbeat_data  Heartbeat data
        Byte array
    v5ua.info_string  Info String
        String
    v5ua.interface_range_end  Interface range End
        Unsigned 32-bit integer
    v5ua.interface_range_start  Interface range Start
        Unsigned 32-bit integer
    v5ua.link_id  Link Identifier
        Unsigned 32-bit integer
    v5ua.link_status  Link Status
        Unsigned 32-bit integer
    v5ua.msg_class  Message class
        Unsigned 8-bit integer
    v5ua.msg_length  Message length
        Unsigned 32-bit integer
    v5ua.msg_type  Message Type
        Unsigned 8-bit integer
    v5ua.msg_type_id  Message Type ID
        Unsigned 8-bit integer
    v5ua.parameter_length  Parameter length
        Unsigned 16-bit integer
    v5ua.parameter_padding  Parameter padding
        Byte array
    v5ua.parameter_tag  Parameter Tag
        Unsigned 16-bit integer
    v5ua.parameter_value  Parameter value
        Byte array
    v5ua.release_reason  Release Reason
        Unsigned 32-bit integer
    v5ua.reserved  Reserved
        Unsigned 8-bit integer
    v5ua.sa_bit_id  BIT ID
        Unsigned 16-bit integer
    v5ua.sa_bit_value  Bit Value
        Unsigned 16-bit integer
    v5ua.scn_protocol_id  SCN Protocol Identifier
        String
    v5ua.status_id  Status identification
        Unsigned 16-bit integer
    v5ua.status_type  Status type
        Unsigned 16-bit integer
    v5ua.tei_draft_status  TEI status
        Unsigned 32-bit integer
    v5ua.tei_status  TEI status
        Unsigned 32-bit integer
    v5ua.text_interface_id  Text interface identifier
        String
    v5ua.traffic_mode_type  Traffic mode type
        Unsigned 32-bit integer
    v5ua.version  Version
        Unsigned 8-bit integer

VCDU (vcdu)

    smex.crc_enable  CRC Enable
        Boolean
        SMEX CRC Enable
    smex.crc_error  CRC Error
        Boolean
        SMEX CRC Error
    smex.data_class  Data Class
        Unsigned 16-bit integer
        SMEX Data Class
    smex.data_dir  Data Direction
        Unsigned 16-bit integer
        SMEX Data Direction flag
    smex.data_inv  Data Inversion
        Unsigned 16-bit integer
        SMEX Data Inversion
    smex.frame_len  Frame Length
        Unsigned 16-bit integer
        SMEX Frame Length
    smex.frame_sync  Frame Sync
        Unsigned 16-bit integer
        SMEX Frame Sync Flag
    smex.gsc  Ground Sequence Counter
        Unsigned 64-bit integer
        SMEX Ground Sequence Counter
    smex.jday  Julian Day
        Unsigned 16-bit integer
        SMEX Julian Day
    smex.mcs_enable  MCS Enable
        Boolean
        SMEX MCS Enable
    smex.mcs_numerr  MCS Number Error
        Boolean
        SMEX MCS Number Error
    smex.msec  Milliseconds
        Unsigned 16-bit integer
        SMEX Milliseconds
    smex.pb5  PB5 Flag
        Unsigned 16-bit integer
        SMEX PB5 Flag
    smex.rs_enable  RS Enable
        Boolean
        SMEX RS Enable
    smex.rs_error  RS Error
        Boolean
        SMEX RS Error
    smex.seconds  Seconds
        Unsigned 24-bit integer
        SMEX Seconds
    smex.spare  Spare
        Unsigned 16-bit integer
        SMEX Spare
    smex.unused  Unused
        Unsigned 16-bit integer
        SMEX Unused
    smex.version  Version
        Unsigned 16-bit integer
        SMEX Version
    vcdu.fhp  First Header Pointer
        Unsigned 16-bit integer
        VCDU/MPDU First Header Pointer
    vcdu.lbp  Last Bit Pointer
        Unsigned 16-bit integer
        VCDU/BPDU Last Bit Pointer
    vcdu.replay  Replay Flag
        Boolean
        VCDU Replay Flag
    vcdu.seq  Sequence Count
        Unsigned 16-bit integer
        VCDU Sequence Count
    vcdu.spid  Space Craft ID
        Unsigned 16-bit integer
        VCDU Space Craft ID
    vcdu.vcid  Virtual Channel ID
        Unsigned 16-bit integer
        VCDU Virtual Channel ID
    vcdu.version  Version
        Unsigned 16-bit integer
        VCDU Version

VMware Lab Manager (vmlab)

    vmlab.addr  Address          
        6-byte Hardware (MAC) Address
    vmlab.dst  Destination      
        6-byte Hardware (MAC) Address
    vmlab.fragment  More Fragments
        Unsigned 8-bit integer
    vmlab.pgrp  Portgroup        
        Unsigned 8-bit integer
    vmlab.src  Source           
        6-byte Hardware (MAC) Address
    vmlab.subtype  Encapsulated Type
        Unsigned 16-bit integer
    vmlab.trailer  Trailer
        Byte array
    vmlab.unknown1  Unknown       
        Unsigned 8-bit integer
    vmlab.unknown2  Unknown       
        Unsigned 8-bit integer

VXI-11 Asynchronous Abort (vxi11async)

    vxi11_async.procedure_v1  V1 Procedure
        Unsigned 32-bit integer

VXI-11 Core Protocol (vxi11core)

    vxi11_core.abort_port  Abort Port
        Unsigned 16-bit integer
    vxi11_core.client_id  Client ID
        Unsigned 32-bit integer
    vxi11_core.cmd  Command
        Unsigned 32-bit integer
    vxi11_core.data  Data
        Byte array
    vxi11_core.device  Device Name
        String
    vxi11_core.enable  Enable
        Boolean
    vxi11_core.error  Error Code
        Unsigned 32-bit integer
    vxi11_core.flags  Flags
        Unsigned 32-bit integer
    vxi11_core.flags.end  Set EOI
        Boolean
    vxi11_core.flags.term_chr_set  Termination Character Set
        Boolean
    vxi11_core.flags.wait_lock  Wait Until Locked
        Boolean
    vxi11_core.handle  Handle
        Byte array
    vxi11_core.host_addr  Host Address
        Unsigned 32-bit integer
    vxi11_core.host_port  Host Port
        Unsigned 32-bit integer
    vxi11_core.io_timeout  I/O Timeout
        Unsigned 32-bit integer
    vxi11_core.lid  Link ID
        Unsigned 32-bit integer
    vxi11_core.lock_device  Lock Device
        Boolean
    vxi11_core.lock_timeout  Lock Timeout
        Unsigned 32-bit integer
    vxi11_core.max_recv_size  Maximum Receive Size
        Unsigned 32-bit integer
    vxi11_core.network_order  Network Byte Order
        Boolean
    vxi11_core.procedure_v1  V1 Procedure
        Unsigned 32-bit integer
    vxi11_core.prog_family  Address Family
        Unsigned 32-bit integer
    vxi11_core.prog_num  Program
        Unsigned 32-bit integer
    vxi11_core.prog_vers  Version
        Unsigned 32-bit integer
    vxi11_core.reason  Reason
        Unsigned 32-bit integer
    vxi11_core.reason.chr  Termination Character Seen
        Boolean
    vxi11_core.reason.end  EOI Set
        Boolean
    vxi11_core.reason.req_cnt  Requested Count Reached
        Boolean
    vxi11_core.size  Size
        Unsigned 32-bit integer
    vxi11_core.stb  Status Byte
        Unsigned 8-bit integer
    vxi11_core.term_char  Termination Character
        Unsigned 8-bit integer

VXI-11 Interrupt (vxi11intr)

    vxi11_intr.handle  Handle
        Byte array
    vxi11_intr.procedure_v1  V1 Procedure
        Unsigned 32-bit integer

Vendor Specific Control Protocol (vsncp)

Vendor Specific Network Protocol (vsnp)

    vsnp.data  Data
        No value
        VSNP PDU
    vsnp.header  Header
        No value
        VSNP Header
    vsnp.pdnid  PDN ID
        Unsigned 8-bit integer

Veritas Low Latency Transport (LLT) (llt)

    llt.cluster_num  Cluster number
        Unsigned 8-bit integer
        Cluster number that this node belongs to
    llt.message_time  Message time
        Unsigned 32-bit integer
        Number of ticks since this node was last rebooted
    llt.message_type  Message type
        Unsigned 8-bit integer
        Type of LLT message contained in this frame
    llt.node_id  Node ID
        Unsigned 8-bit integer
        Number identifying this node within the cluster
    llt.sequence_num  Sequence number
        Unsigned 32-bit integer
        Sequence number of this frame

Virtual Network Computing (vnc)

    vnc.auth_challenge  Authentication challenge
        Byte array
        Random authentication challenge from server to client
    vnc.auth_error  Authentication error
        String
        Authentication error (present only if the authentication result is fail
    vnc.auth_response  Authentication response
        Byte array
        Client's encrypted response to the server's authentication challenge
    vnc.auth_result  Authentication result
        Boolean
    vnc.auth_type  Authentication type
        Unsigned 8-bit integer
        Authentication type specific to TightVNC
    vnc.button_1_pos  Mouse button #1 position
        Boolean
        Whether mouse button #1 is being pressed or not
    vnc.button_2_pos  Mouse button #2 position
        Boolean
        Whether mouse button #2 is being pressed or not
    vnc.button_3_pos  Mouse button #3 position
        Boolean
        Whether mouse button #3 is being pressed or not
    vnc.button_4_pos  Mouse button #4 position
        Boolean
        Whether mouse button #4 is being pressed or not
    vnc.button_5_pos  Mouse button #5 position
        Boolean
        Whether mouse button #5 is being pressed or not
    vnc.button_6_pos  Mouse button #6 position
        Boolean
        Whether mouse button #6 is being pressed or not
    vnc.button_7_pos  Mouse button #7 position
        Boolean
        Whether mouse button #7 is being pressed or not
    vnc.button_8_pos  Mouse button #8 position
        Boolean
        Whether mouse button #8 is being pressed or not
    vnc.client_big_endian_flag  Big endian flag
        Boolean
        True if multi-byte pixels are interpreted as big endian by client
    vnc.client_bits_per_pixel  Bits per pixel
        Unsigned 8-bit integer
        Number of bits used by server for each pixel value on the wire from the client
    vnc.client_blue_max  Blue maximum
        Unsigned 16-bit integer
        Maximum blue value on client as n: 2^n - 1
    vnc.client_blue_shift  Blue shift
        Unsigned 8-bit integer
        Number of shifts needed to get the blue value in a pixel to the least significant bit on the client
    vnc.client_cut_text  Text
        String
        Text string in the client's copy/cut text (clipboard)
    vnc.client_cut_text_len  Length
        Unsigned 32-bit integer
        Length of client's copy/cut text (clipboard) string in bytes
    vnc.client_depth  Depth
        Unsigned 8-bit integer
        Number of useful bits in the pixel value on client
    vnc.client_green_max  Green maximum
        Unsigned 16-bit integer
        Maximum green value on client as n: 2^n - 1
    vnc.client_green_shift  Green shift
        Unsigned 8-bit integer
        Number of shifts needed to get the green value in a pixel to the least significant bit on the client
    vnc.client_message_type  Client Message Type
        Unsigned 8-bit integer
        Message type from client
    vnc.client_name  Client name
        String
        Client name specific to TightVNC
    vnc.client_proto_ver  Client protocol version
        String
        VNC protocol version on client
    vnc.client_red_max  Red maximum
        Unsigned 16-bit integer
        Maximum red value on client as n: 2^n - 1
    vnc.client_red_shift  Red shift
        Unsigned 8-bit integer
        Number of shifts needed to get the red value in a pixel to the least significant bit on the client
    vnc.client_security_type  Security type selected
        Unsigned 8-bit integer
        Security type selected by the client
    vnc.client_set_encodings_encoding_type  Encoding type
        Signed 32-bit integer
        Type of encoding used to send pixel data from server to client
    vnc.client_true_color_flag  True color flag
        Boolean
        If true, then the next six items specify how to extract the red, green and blue intensities from the pixel value on the client.
    vnc.client_vendor  Client vendor code
        String
        Client vendor code specific to TightVNC
    vnc.color_groups  Color groups
        No value
        Color groups
    vnc.colormap_blue  Blue
        Unsigned 16-bit integer
        Blue intensity
    vnc.colormap_first_color  First color
        Unsigned 16-bit integer
        First color that should be mapped to given RGB intensities
    vnc.colormap_green  Green
        Unsigned 16-bit integer
        Green intensity
    vnc.colormap_groups  Number of color groups
        Unsigned 16-bit integer
        Number of red/green/blue color groups
    vnc.colormap_red  Red
        Unsigned 16-bit integer
        Red intensity
    vnc.copyrect_src_x_pos  Source x position
        Unsigned 16-bit integer
        X position of the rectangle to copy from
    vnc.copyrect_src_y_pos  Source y position
        Unsigned 16-bit integer
        Y position of the rectangle to copy from
    vnc.cursor_encoding_bitmask  Cursor encoding bitmask
        Byte array
        Cursor encoding pixel bitmask
    vnc.cursor_encoding_pixels  Cursor encoding pixels
        Byte array
        Cursor encoding pixel data
    vnc.cursor_x_fore_back  X Cursor foreground RGB / background RGB
        Byte array
        RGB values for the X cursor's foreground and background
    vnc.desktop_name  Desktop name
        String
        Name of the VNC desktop on the server
    vnc.desktop_name_len  Desktop name length
        Unsigned 32-bit integer
        Length of desktop name in bytes
    vnc.encoding_name  Encoding name
        String
        Encoding name specific to TightVNC
    vnc.encoding_type  Encoding type
        Signed 32-bit integer
        Encoding type specific to TightVNC
    vnc.encoding_vendor  Encoding vendor code
        String
        Encoding vendor code specific to TightVNC
    vnc.fb_update_encoding_type  Encoding type
        Signed 32-bit integer
        Encoding type of this server framebuffer update
    vnc.fb_update_height  Height
        Unsigned 16-bit integer
        Height of this server framebuffer update
    vnc.fb_update_width  Width
        Unsigned 16-bit integer
        Width of this server framebuffer update
    vnc.fb_update_x_pos  X position
        Unsigned 16-bit integer
        X position of this server framebuffer update
    vnc.fb_update_y_pos  Y position
        Unsigned 16-bit integer
        Y position of this server framebuffer update
    vnc.height  Framebuffer height
        Unsigned 16-bit integer
        Height of the framebuffer (screen) in pixels
    vnc.hextile_anysubrects  Any Subrects
        Boolean
        Any subrects subencoding is used in this tile
    vnc.hextile_bg  Background Specified
        Boolean
        Background Specified subencoding is used in this tile
    vnc.hextile_bg_value  Background pixel value
        Byte array
        Background color for this tile
    vnc.hextile_fg  Foreground Specified
        Boolean
        Foreground Specified subencoding is used in this tile
    vnc.hextile_fg_value  Foreground pixel value
        Byte array
        Foreground color for this tile
    vnc.hextile_num_subrects  Number of subrectangles
        Unsigned 8-bit integer
        Number of subrectangles that follow
    vnc.hextile_raw  Raw
        Boolean
        Raw subencoding is used in this tile
    vnc.hextile_raw_value  Raw pixel values
        Byte array
        Raw subencoding pixel values
    vnc.hextile_subencoding  Subencoding type
        Unsigned 8-bit integer
        Hextile subencoding type.
    vnc.hextile_subrect_height  Height
        Unsigned 8-bit integer
        Subrectangle height minus one
    vnc.hextile_subrect_pixel_value  Pixel value
        Byte array
        Pixel value of this subrectangle
    vnc.hextile_subrect_width  Width
        Unsigned 8-bit integer
        Subrectangle width minus one
    vnc.hextile_subrect_x_pos  X position
        Unsigned 8-bit integer
        X position of this subrectangle
    vnc.hextile_subrect_y_pos  Y position
        Unsigned 8-bit integer
        Y position of this subrectangle
    vnc.hextile_subrectscolored  Subrects Colored
        Boolean
        Subrects colored subencoding is used in this tile
    vnc.key  Key
        Unsigned 32-bit integer
        Key being pressed/depressed
    vnc.key_down  Key down
        Boolean
        Specifies whether the key is being pressed or not
    vnc.num_auth_types  Number of supported authentication types
        Unsigned 32-bit integer
        Authentication types specific to TightVNC
    vnc.num_client_message_types  Client message types
        Unsigned 16-bit integer
        Unknown
    vnc.num_encoding_types  Encoding types
        Unsigned 16-bit integer
        Unknown
    vnc.num_security_types  Number of security types
        Unsigned 8-bit integer
        Number of security (authentication) types supported by the server
    vnc.num_server_message_types  Server message types
        Unsigned 16-bit integer
        Unknown
    vnc.num_tunnel_types  Number of supported tunnel types
        Unsigned 32-bit integer
        Number of tunnel types for TightVNC
    vnc.padding  Padding
        No value
        Unused space
    vnc.pointer_x_pos  X position
        Unsigned 16-bit integer
        Position of mouse cursor on the x-axis
    vnc.pointer_y_pos  Y position
        Unsigned 16-bit integer
        Position of mouse cursor on the y-axis
    vnc.raw_pixel_data  Pixel data
        Byte array
        Raw pixel data.
    vnc.rre_bg_pixel  Background pixel value
        Byte array
    vnc.rre_num_subrects  Number of subrectangles
        Unsigned 32-bit integer
        Number of subrectangles contained in this encoding type
    vnc.rre_subrect_height  Height
        Unsigned 16-bit integer
        Height of this subrectangle
    vnc.rre_subrect_pixel  Pixel value
        Byte array
        Subrectangle pixel value
    vnc.rre_subrect_width  Width
        Unsigned 16-bit integer
        Width of this subrectangle
    vnc.rre_subrect_x_pos  X position
        Unsigned 16-bit integer
        Position of this subrectangle on the x axis
    vnc.rre_subrect_y_pos  Y position
        Unsigned 16-bit integer
        Position of this subrectangle on the y axis
    vnc.security_type  Security type
        Unsigned 8-bit integer
        Security types offered by the server (VNC versions => 3.007
    vnc.security_type_string  Security type string
        String
        Security type being used
    vnc.server_big_endian_flag  Big endian flag
        Boolean
        True if multi-byte pixels are interpreted as big endian by server
    vnc.server_bits_per_pixel  Bits per pixel
        Unsigned 8-bit integer
        Number of bits used by server for each pixel value on the wire from the server
    vnc.server_blue_max  Blue maximum
        Unsigned 16-bit integer
        Maximum blue value on server as n: 2^n - 1
    vnc.server_blue_shift  Blue shift
        Unsigned 8-bit integer
        Number of shifts needed to get the blue value in a pixel to the least significant bit on the server
    vnc.server_cut_text  Text
        String
        Text string in the server's copy/cut text (clipboard)
    vnc.server_cut_text_len  Length
        Unsigned 32-bit integer
        Length of server's copy/cut text (clipboard) string in bytes
    vnc.server_depth  Depth
        Unsigned 8-bit integer
        Number of useful bits in the pixel value on server
    vnc.server_green_max  Green maximum
        Unsigned 16-bit integer
        Maximum green value on server as n: 2^n - 1
    vnc.server_green_shift  Green shift
        Unsigned 8-bit integer
        Number of shifts needed to get the green value in a pixel to the least significant bit on the server
    vnc.server_message_type  Server Message Type
        Unsigned 8-bit integer
        Message type from server
    vnc.server_name  Server name
        String
        Server name specific to TightVNC
    vnc.server_proto_ver  Server protocol version
        String
        VNC protocol version on server
    vnc.server_red_max  Red maximum
        Unsigned 16-bit integer
        Maximum red value on server as n: 2^n - 1
    vnc.server_red_shift  Red shift
        Unsigned 8-bit integer
        Number of shifts needed to get the red value in a pixel to the least significant bit on the server
    vnc.server_security_type  Security type
        Unsigned 32-bit integer
        Security type mandated by the server
    vnc.server_true_color_flag  True color flag
        Boolean
        If true, then the next six items specify how to extract the red, green and blue intensities from the pixel value on the server.
    vnc.server_vendor  Server vendor code
        String
        Server vendor code specific to TightVNC
    vnc.share_desktop_flag  Share desktop flag
        Boolean
        Client's desire to share the server's desktop with other clients
    vnc.tight_client_message_type  Client message type (TightVNC)
        Signed 32-bit integer
        Client message type specific to TightVNC
    vnc.tight_fill_color  Fill color (RGB)
        Byte array
        Tight compression, fill color for solid rectangle
    vnc.tight_filter_flag  Explicit filter flag
        Boolean
        Tight compression, explicit filter flag
    vnc.tight_filter_id  Filter ID
        Unsigned 8-bit integer
        Tight compression, filter ID
    vnc.tight_image_data  Image data
        Byte array
        Tight compression, image data
    vnc.tight_image_len  Image data length
        Unsigned 32-bit integer
        Tight compression, length of image data
    vnc.tight_palette_data  Palette data
        Byte array
        Tight compression, palette data for a rectangle
    vnc.tight_palette_num_colors  Number of colors in palette
        Unsigned 8-bit integer
        Tight compression, number of colors in rectangle's palette
    vnc.tight_rect_type  Rectangle type
        Unsigned 8-bit integer
        Tight compression, rectangle type
    vnc.tight_reset_stream0  Reset compression stream 0
        Boolean
        Tight compression, reset compression stream 0
    vnc.tight_reset_stream1  Reset compression stream 1
        Boolean
        Tight compression, reset compression stream 1
    vnc.tight_reset_stream2  Reset compression stream 2
        Boolean
        Tight compression, reset compression stream 2
    vnc.tight_reset_stream3  Reset compression stream 3
        Boolean
        Tight compression, reset compression stream 3
    vnc.tight_server_message_type  Server message type (TightVNC)
        Signed 32-bit integer
        Server message type specific to TightVNC
    vnc.tunnel_type  Tunnel type
        Unsigned 8-bit integer
        Tunnel type specific to TightVNC
    vnc.update_req_height  Height
        Unsigned 16-bit integer
        Height of framebuffer (screen) update request
    vnc.update_req_incremental  Incremental update
        Boolean
        Specifies if the client wants an incremental update instead of a full one
    vnc.update_req_width  Width
        Unsigned 16-bit integer
        Width of framebuffer (screen) update request
    vnc.update_req_x_pos  X position
        Unsigned 16-bit integer
        X position of framebuffer (screen) update requested
    vnc.update_req_y_pos  Y position
        Unsigned 16-bit integer
        Y position of framebuffer (screen) update request
    vnc.vendor_code  Vendor code
        String
        Identifies the VNC server software's vendor
    vnc.width  Framebuffer width
        Unsigned 16-bit integer
        Width of the framebuffer (screen) in pixels
    vnc.zrle_data  ZRLE compressed data
        Byte array
        Compressed ZRLE data.  Compiling with zlib support will uncompress and dissect this data
    vnc.zrle_len  ZRLE compressed length
        Unsigned 32-bit integer
        Length of compressed ZRLE data that follows
    vnc.zrle_palette  Palette
        Byte array
        Palette pixel values
    vnc.zrle_palette_size  Palette size
        Unsigned 8-bit integer
    vnc.zrle_raw  Pixel values
        Byte array
        Raw pixel values for this tile
    vnc.zrle_rle  RLE
        Unsigned 8-bit integer
        Specifies that data is run-length encoded
    vnc.zrle_subencoding  Subencoding type
        Unsigned 8-bit integer
        Subencoding type byte

Virtual Router Redundancy Protocol (vrrp)

    vrrp.addr_count  Addr Count
        Unsigned 8-bit integer
        The number of addresses contained in this VRRP advertisement
    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.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.reserved_mbz  Reserved
        Unsigned 8-bit integer
        Must be zero
    vrrp.short_adver_int  Adver Int
        Unsigned 16-bit integer
        Time interval (in centiseconds) between ADVERTISEMENTS
    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

Virtual Trunking Protocol (vtp)

    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
    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

WAP Binary XML (wbxml)

    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 Session Initiation Request (wap-sir)

    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)

WINS (Windows Internet Name Service) Replication (winsrepl)

    winsrepl.assoc_ctx  Assoc_Ctx
        Unsigned 32-bit integer
        WINS Replication Assoc_Ctx
    winsrepl.initiator  Initiator
        IPv4 address
        WINS Replication Initiator
    winsrepl.ip_address  IP Address
        IPv4 address
        WINS Replication IP Address
    winsrepl.ip_owner  IP Owner
        IPv4 address
        WINS Replication IP Owner
    winsrepl.major_version  Major Version
        Unsigned 16-bit integer
        WINS Replication Major Version
    winsrepl.max_version  Max Version
        Unsigned 64-bit integer
        WINS Replication Max Version
    winsrepl.message_type  Message_Type
        Unsigned 32-bit integer
        WINS Replication Message_Type
    winsrepl.min_version  Min Version
        Unsigned 64-bit integer
        WINS Replication Min Version
    winsrepl.minor_version  Minor Version
        Unsigned 16-bit integer
        WINS Replication Minor Version
    winsrepl.name_flags  Name Flags
        Unsigned 32-bit integer
        WINS Replication Name Flags
    winsrepl.name_flags.hosttype  Host Type
        Unsigned 32-bit integer
        WINS Replication Name Flags Host Type
    winsrepl.name_flags.local  Local
        Boolean
        WINS Replication Name Flags Local Flag
    winsrepl.name_flags.recstate  Record State
        Unsigned 32-bit integer
        WINS Replication Name Flags Record State
    winsrepl.name_flags.rectype  Record Type
        Unsigned 32-bit integer
        WINS Replication Name Flags Record Type
    winsrepl.name_flags.static  Static
        Boolean
        WINS Replication Name Flags Static Flag
    winsrepl.name_group_flag  Name Group Flag
        Unsigned 32-bit integer
        WINS Replication Name Group Flag
    winsrepl.name_len  Name Len
        Unsigned 32-bit integer
        WINS Replication Name Len
    winsrepl.name_version_id  Name Version Id
        Unsigned 64-bit integer
        WINS Replication Name Version Id
    winsrepl.num_ips  Num IPs
        Unsigned 32-bit integer
        WINS Replication Num IPs
    winsrepl.num_names  Num Names
        Unsigned 32-bit integer
        WINS Replication Num Names
    winsrepl.opcode  Opcode
        Unsigned 32-bit integer
        WINS Replication Opcode
    winsrepl.owner_address  Owner Address
        IPv4 address
        WINS Replication Owner Address
    winsrepl.owner_type  Owner Type
        Unsigned 32-bit integer
        WINS Replication Owner Type
    winsrepl.partner_count  Partner Count
        Unsigned 32-bit integer
        WINS Replication Partner Count
    winsrepl.reason  Reason
        Unsigned 32-bit integer
        WINS Replication Reason
    winsrepl.repl_cmd  Replication Command
        Unsigned 32-bit integer
        WINS Replication Command
    winsrepl.size  Packet Size
        Unsigned 32-bit integer
        WINS Replication Packet Size
    winsrepl.unknown  Unknown IP
        IPv4 address
        WINS Replication Unknown IP

Wake On LAN (wol)

    wol.mac  MAC
        6-byte Hardware (MAC) Address
    wol.passwd  Password
        Byte array
    wol.sync  Sync stream
        Byte array

Wave Short Message Protocol(IEEE P1609.3) (wsmp)

    wsmp.acm  Application Context Data
        String
        Acm
    wsmp.acmlength  Acm Length
        Unsigned 8-bit integer
    wsmp.appclass  App class
        Unsigned 8-bit integer
    wsmp.channel  Channel
        Unsigned 8-bit integer
    wsmp.rate  Rate
        Unsigned 8-bit integer
    wsmp.security  Security
        Unsigned 8-bit integer
    wsmp.txpower  Transmit power
        Unsigned 8-bit integer
    wsmp.version  Version
        Unsigned 8-bit integer
    wsmp.wsmlength  WSM Length
        Unsigned 16-bit integer

Web Cache Communication Protocol (wccp)

    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

WebSphere MQ (mq)

    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
        NULL terminated 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
        NULL terminated 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
        NULL terminated string
        DLH destination queue
    mq.dlh.destqmgr  Destination queue manager
        NULL terminated string
        DLH destination queue manager
    mq.dlh.encoding  Encoding
        Unsigned 32-bit integer
        DLH encoding
    mq.dlh.format  Format
        NULL terminated string
        DLH format
    mq.dlh.putapplname  Put application name
        NULL terminated string
        DLH put application name
    mq.dlh.putappltype  Put application type
        Signed 32-bit integer
        DLH put application type
    mq.dlh.putdate  Put date
        NULL terminated string
        DLH put date
    mq.dlh.puttime  Put time
        NULL terminated string
        DLH put time
    mq.dlh.reason  Reason
        Unsigned 32-bit integer
        DLH reason
    mq.dlh.structid  DLH structid
        NULL terminated string
    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
        NULL terminated 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
        NULL terminated string
    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
        NULL terminated 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
        NULL terminated 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
        NULL terminated 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
        NULL terminated string
        ID Queue manager
    mq.id.seqwrap  Sequence wrap value
        Unsigned 32-bit integer
        ID seq wrap value
    mq.id.structid  ID structid
        NULL terminated string
    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
        NULL terminated 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
        NULL terminated string
        MD Put applicationId data
    mq.md.applname  Put Application Name
        NULL terminated 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
        NULL terminated 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
        NULL terminated string
        MD format
    mq.md.groupid  GroupId
        Byte array
        MD GroupId
    mq.md.lastformat  Last format
        NULL terminated 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
        NULL terminated 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.replytoq  ReplyToQ
        NULL terminated string
        MD ReplyTo queue
    mq.md.replytoqmgr  ReplyToQMgr
        NULL terminated string
        MD ReplyTo queue manager
    mq.md.report  Report
        Unsigned 32-bit integer
        MD report
    mq.md.structid  MD structid
        NULL terminated string
    mq.md.time  Put time
        NULL terminated string
        MD Put time
    mq.md.userid  UserId
        NULL terminated 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
        NULL terminated string
    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
        NULL terminated string
        OD alternate security id
    mq.od.altuserid  Alternate user id
        NULL terminated string
        OD alternate userid
    mq.od.dynqname  Dynamic queue name
        NULL terminated 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
        NULL terminated string
        OD object name
    mq.od.objqmgrname  Object queue manager name
        NULL terminated 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
        NULL terminated string
        OD resolved queue name
    mq.od.resolvqmgr  Resolved queue manager name
        NULL terminated string
        OD resolved queue manager name
    mq.od.structid  OD structid
        NULL terminated string
    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
        NULL terminated string
        PMO resolved queue name
    mq.pmo.resolvqmgr  Resolved queue name manager
        NULL terminated string
        PMO resolved queue manager name
    mq.pmo.structid  PMO structid
        NULL terminated string
    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
        NULL terminated string
        SPI Activate Input message id
    mq.spai.unknown1  Unknown1
        NULL terminated string
        SPI Activate Input unknown1
    mq.spai.unknown2  Unknown2
        NULL terminated 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
    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
        NULL terminated 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
        NULL terminated string
    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
        NULL terminated string
        UID long user id
    mq.uid.password  Password
        NULL terminated string
        UID password
    mq.uid.securityid  Security ID
        Byte array
        UID security id
    mq.uid.structid  UID structid
        NULL terminated string
    mq.uid.userid  User ID
        NULL terminated 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
        NULL terminated 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
        NULL terminated string
        XQH remote queue
    mq.xqh.remoteqmgr  Remote queue manager
        NULL terminated string
        XQH remote queue manager
    mq.xqh.structid  XQH structid
        NULL terminated string
    mq.xqh.version  Version
        Unsigned 32-bit integer
        XQH version

WebSphere MQ Programmable Command Formats (mqpcf)

    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

Wellfleet Breath of Life (bofl)

    bofl.pdu  PDU
        Unsigned 32-bit integer
        PDU; normally equals 0x01010000 or 0x01011111
    bofl.sequence  Sequence
        Unsigned 32-bit integer
        incremental counter

Wellfleet Compression (wcp)

    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
    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
    wcp.ppc  PerPackComp
        Unsigned 8-bit integer
        Per Packet Compression
    wcp.rev  Revision
        Unsigned 8-bit integer
    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

Wellfleet HDLC (whdlc)

    wfleet_hdlc.address  Address
        Unsigned 8-bit integer
    wfleet_hdlc.command  Command
        Unsigned 8-bit integer

Who (who)

    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

WiMAX ASN Control Plane Protocol (wimaxasncp)

    wimaxasncp.authentication_msg  Message Type
        Unsigned 8-bit integer
    wimaxasncp.context_delivery_msg  Message Type
        Unsigned 8-bit integer
    wimaxasncp.data_path_control_msg  Message Type
        Unsigned 8-bit integer
    wimaxasncp.flags  Flags
        Unsigned 8-bit integer
    wimaxasncp.function_type  Function Type
        Unsigned 8-bit integer
    wimaxasncp.ho_control_msg  Message Type
        Unsigned 8-bit integer
    wimaxasncp.length  Length
        Unsigned 16-bit integer
    wimaxasncp.message_type  Message Type
        Unsigned 8-bit integer
    wimaxasncp.ms_state_msg  Message Type
        Unsigned 8-bit integer
    wimaxasncp.msid  MSID
        6-byte Hardware (MAC) Address
    wimaxasncp.opid  OP ID
        Unsigned 8-bit integer
    wimaxasncp.paging_msg  Message Type
        Unsigned 8-bit integer
    wimaxasncp.qos_msg  Message Type
        Unsigned 8-bit integer
    wimaxasncp.r3_mobility_msg  Message Type
        Unsigned 8-bit integer
    wimaxasncp.reauthentication_msg  Message Type
        Unsigned 8-bit integer
    wimaxasncp.reserved1  Reserved
        Unsigned 32-bit integer
    wimaxasncp.reserved2  Reserved
        Unsigned 16-bit integer
    wimaxasncp.rrm_msg  Message Type
        Unsigned 8-bit integer
    wimaxasncp.session_msg  Message Type
        Unsigned 8-bit integer
    wimaxasncp.tlv  TLV
        Byte array
    wimaxasncp.tlv.AK  AK
        Byte array
        type=5
    wimaxasncp.tlv.AK.value  Value
        Byte array
        value for type=5
    wimaxasncp.tlv.AK_Context  AK Context
        Byte array
        type=6, Compound
    wimaxasncp.tlv.AK_ID  AK ID
        Byte array
        type=7
    wimaxasncp.tlv.AK_ID.value  Value
        Byte array
        value for type=7
    wimaxasncp.tlv.AK_Lifetime  AK Lifetime
        Byte array
        type=8
    wimaxasncp.tlv.AK_Lifetime.value  Value
        Unsigned 32-bit integer
        value for type=8
    wimaxasncp.tlv.AK_SN  AK SN
        Byte array
        type=9
    wimaxasncp.tlv.AK_SN.value  Value
        Unsigned 8-bit integer
        value for type=9
    wimaxasncp.tlv.ARQ_Ack_Type  ARQ Ack Type
        Byte array
        type=307
    wimaxasncp.tlv.ARQ_Ack_Type.value  Value
        Unsigned 8-bit integer
        value for type=307
    wimaxasncp.tlv.ARQ_BLOCK_LIFETIME  ARQ_BLOCK_LIFETIME
        Byte array
        type=349
    wimaxasncp.tlv.ARQ_BLOCK_LIFETIME.value  Value
        Unsigned 16-bit integer
        value for type=349
    wimaxasncp.tlv.ARQ_BLOCK_SIZE  ARQ_BLOCK_SIZE
        Byte array
        type=353
    wimaxasncp.tlv.ARQ_BLOCK_SIZE.value  Value
        Unsigned 16-bit integer
        value for type=353
    wimaxasncp.tlv.ARQ_Context  ARQ Context
        Byte array
        type=344, Compound
    wimaxasncp.tlv.ARQ_DELIVER_IN_ORDER  ARQ_DELIVER_IN_ORDER
        Byte array
        type=351
    wimaxasncp.tlv.ARQ_DELIVER_IN_ORDER.value  Value
        Unsigned 8-bit integer
        value for type=351
    wimaxasncp.tlv.ARQ_Enable  ARQ Enable
        Byte array
        type=345
    wimaxasncp.tlv.ARQ_Enable.value  Value
        Unsigned 8-bit integer
        value for type=345
    wimaxasncp.tlv.ARQ_RETRY_TIMEOUT_Receiver_Delay  ARQ_RETRY_TIMEOUT-Receiver Delay
        Byte array
        type=348
    wimaxasncp.tlv.ARQ_RETRY_TIMEOUT_Receiver_Delay.value  Value
        Unsigned 16-bit integer
        value for type=348
    wimaxasncp.tlv.ARQ_RETRY_TIMEOUT_Transmitter_Delay  ARQ_RETRY_TIMEOUT-Transmitter Delay
        Byte array
        type=347
    wimaxasncp.tlv.ARQ_RETRY_TIMEOUT_Transmitter_Delay.value  Value
        Unsigned 16-bit integer
        value for type=347
    wimaxasncp.tlv.ARQ_RX_PURGE_TIMEOUT  ARQ_RX_PURGE_TIMEOUT
        Byte array
        type=352
    wimaxasncp.tlv.ARQ_RX_PURGE_TIMEOUT.value  Value
        Unsigned 16-bit integer
        value for type=352
    wimaxasncp.tlv.ARQ_SYNC_LOSS_TIMEOUT  ARQ_SYNC_LOSS_TIMEOUT
        Byte array
        type=350
    wimaxasncp.tlv.ARQ_SYNC_LOSS_TIMEOUT.value  Value
        Unsigned 16-bit integer
        value for type=350
    wimaxasncp.tlv.ARQ_Support  ARQ Support
        Byte array
        type=293
    wimaxasncp.tlv.ARQ_Support.value  Value
        Unsigned 8-bit integer
        value for type=293
    wimaxasncp.tlv.ARQ_WINDOW_SIZE  ARQ WINDOW SIZE
        Byte array
        type=346
    wimaxasncp.tlv.ARQ_WINDOW_SIZE.value  Value
        Unsigned 16-bit integer
        value for type=346
    wimaxasncp.tlv.Accept_Reject_Indicator  Accept/Reject Indicator
        Byte array
        type=1
    wimaxasncp.tlv.Accept_Reject_Indicator.value  Value
        Unsigned 8-bit integer
        value for type=1
    wimaxasncp.tlv.Accounting_Bulk_Session_Flow  Accounting Bulk Session/Flow
        Byte array
        type=246, Compound
    wimaxasncp.tlv.Accounting_Bulk_Session_Flow_Volume_Counts  Accounting Bulk Session Flow Volume Counts
        Byte array
        type=359, Compound
    wimaxasncp.tlv.Accounting_Context  Accounting Context
        Byte array
        type=204, Compound
    wimaxasncp.tlv.Accounting_Extension  Accounting Extension
        Byte array
        type=2
    wimaxasncp.tlv.Accounting_Extension.value  Value
        Byte array
        value for type=2
    wimaxasncp.tlv.Accounting_IP_Address  Accounting IP Address
        Byte array
        type=264
    wimaxasncp.tlv.Accounting_IP_Address.ipv4_value  IPv4 Address
        IPv4 address
        value for type=264
    wimaxasncp.tlv.Accounting_IP_Address.ipv6_value  IPv6 Address
        IPv6 address
        value for type=264
    wimaxasncp.tlv.Accounting_Number_of_Bulk_Sessions_Flows  Accounting Number of Bulk Sessions/Flows
        Byte array
        type=245
    wimaxasncp.tlv.Accounting_Number_of_Bulk_Sessions_Flows.value  Value
        Unsigned 8-bit integer
        value for type=245
    wimaxasncp.tlv.Accounting_Session_Flow_Volume_Counts  Accounting Session/Flow Volume Counts
        Byte array
        type=244, Compound
    wimaxasncp.tlv.Action_Code  Action Code
        Byte array
        type=3
    wimaxasncp.tlv.Action_Code.value  Value
        Unsigned 16-bit integer
        value for type=3
    wimaxasncp.tlv.Action_Time  Action Time
        Byte array
        type=4
    wimaxasncp.tlv.Action_Time.value  Value
        Unsigned 32-bit integer
        value for type=4
    wimaxasncp.tlv.Anchor_ASN_GW_ID_Anchor_DPF_Identifier  Anchor ASN GW ID / Anchor DPF Identifier
        Byte array
        type=10
    wimaxasncp.tlv.Anchor_ASN_GW_ID_Anchor_DPF_Identifier.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=10
    wimaxasncp.tlv.Anchor_ASN_GW_ID_Anchor_DPF_Identifier.ipv4_value  IPv4 Address
        IPv4 address
        value for type=10
    wimaxasncp.tlv.Anchor_ASN_GW_ID_Anchor_DPF_Identifier.ipv6_value  IPv6 Address
        IPv6 address
        value for type=10
    wimaxasncp.tlv.Anchor_MM_Context  Anchor MM Context
        Byte array
        type=11, Compound
    wimaxasncp.tlv.Anchor_PCID_Anchor_Paging_Controller_ID  Anchor PCID - Anchor Paging Controller ID
        Byte array
        type=12
    wimaxasncp.tlv.Anchor_PCID_Anchor_Paging_Controller_ID.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=12
    wimaxasncp.tlv.Anchor_PCID_Anchor_Paging_Controller_ID.ipv4_value  IPv4 Address
        IPv4 address
        value for type=12
    wimaxasncp.tlv.Anchor_PCID_Anchor_Paging_Controller_ID.ipv6_value  IPv6 Address
        IPv6 address
        value for type=12
    wimaxasncp.tlv.Anchor_PC_Relocation_Destination  Anchor PC Relocation Destination
        Byte array
        type=13
    wimaxasncp.tlv.Anchor_PC_Relocation_Destination.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=13
    wimaxasncp.tlv.Anchor_PC_Relocation_Destination.ipv4_value  IPv4 Address
        IPv4 address
        value for type=13
    wimaxasncp.tlv.Anchor_PC_Relocation_Destination.ipv6_value  IPv6 Address
        IPv6 address
        value for type=13
    wimaxasncp.tlv.Anchor_PC_Relocation_Request_Response  Anchor PC Relocation Request Response
        Byte array
        type=14
    wimaxasncp.tlv.Anchor_PC_Relocation_Request_Response.value  Value
        Unsigned 8-bit integer
        value for type=14
    wimaxasncp.tlv.Associated_PHSI  Associated PHSI
        Byte array
        type=15
    wimaxasncp.tlv.Associated_PHSI.value  Value
        Unsigned 8-bit integer
        value for type=15
    wimaxasncp.tlv.Authentication_Complete  Authentication Complete
        Byte array
        type=17, Compound
    wimaxasncp.tlv.Authentication_Result  Authentication Result
        Byte array
        type=18
    wimaxasncp.tlv.Authentication_Result.value  Value
        Unsigned 8-bit integer
        value for type=18
    wimaxasncp.tlv.Authenticator_Identifier  Authenticator Identifier
        Byte array
        type=19
    wimaxasncp.tlv.Authenticator_Identifier.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=19
    wimaxasncp.tlv.Authenticator_Identifier.ipv4_value  IPv4 Address
        IPv4 address
        value for type=19
    wimaxasncp.tlv.Authenticator_Identifier.ipv6_value  IPv6 Address
        IPv6 address
        value for type=19
    wimaxasncp.tlv.Authorization_Policy  Authorization Policy
        Byte array
        type=21
    wimaxasncp.tlv.Authorization_Policy.value  Value
        Unsigned 8-bit integer
        value for type=21
    wimaxasncp.tlv.Available_Client  Available Client
        Byte array
        type=89
    wimaxasncp.tlv.Available_Client.value  Value
        Unsigned 32-bit integer
        value for type=89
    wimaxasncp.tlv.Available_Radio_Resource_DL  Available Radio Resource DL
        Byte array
        type=22
    wimaxasncp.tlv.Available_Radio_Resource_DL.value  Value
        Unsigned 8-bit integer
        value for type=22
    wimaxasncp.tlv.Available_Radio_Resource_UL  Available Radio Resource UL
        Byte array
        type=23
    wimaxasncp.tlv.Available_Radio_Resource_UL.value  Value
        Unsigned 8-bit integer
        value for type=23
    wimaxasncp.tlv.BE_Data_Delivery_Service  BE Data Delivery Service
        Byte array
        type=24, Compound
    wimaxasncp.tlv.BS_HO_RSP_Code  BS HO RSP Code
        Byte array
        type=203
    wimaxasncp.tlv.BS_HO_RSP_Code.value  Value
        Unsigned 8-bit integer
        value for type=203
    wimaxasncp.tlv.BS_ID  BS ID
        Byte array
        type=25
    wimaxasncp.tlv.BS_ID.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=25
    wimaxasncp.tlv.BS_ID.ipv4_value  IPv4 Address
        IPv4 address
        value for type=25
    wimaxasncp.tlv.BS_ID.ipv6_value  IPv6 Address
        IPv6 address
        value for type=25
    wimaxasncp.tlv.BS_Info  BS Info
        Byte array
        type=26, Compound
    wimaxasncp.tlv.BS_Switching_Timer  BS Switching Timer
        Byte array
        type=314
    wimaxasncp.tlv.BS_Switching_Timer.value  Value
        Unsigned 8-bit integer
        value for type=314
    wimaxasncp.tlv.BS_originated_EAP_Start_Flag  BS-originated EAP-Start Flag
        Byte array
        type=27, Value = Null
    wimaxasncp.tlv.CID  CID
        Byte array
        type=29
    wimaxasncp.tlv.CID.value  Value
        Unsigned 16-bit integer
        value for type=29
    wimaxasncp.tlv.CMAC_KEY_COUNT  CMAC_KEY_COUNT
        Byte array
        type=34
    wimaxasncp.tlv.CMAC_KEY_COUNT.value  Value
        Unsigned 16-bit integer
        value for type=34
    wimaxasncp.tlv.CS_Type  CS Type
        Byte array
        type=39
    wimaxasncp.tlv.CS_Type.value  Value
        Unsigned 8-bit integer
        value for type=39
    wimaxasncp.tlv.Capabilities_for_Construction_and_Transmission_of_MAC_PDUs  Capabilities for Construction and Transmission of MAC PDUs
        Byte array
        type=318
    wimaxasncp.tlv.Capabilities_for_Construction_and_Transmission_of_MAC_PDUs.value  Value
        Unsigned 8-bit integer
        value for type=318
    wimaxasncp.tlv.Care_Of_Address_CoA  Care-Of Address (CoA)
        Byte array
        type=28
    wimaxasncp.tlv.Care_Of_Address_CoA.value  Value
        IPv4 address
        value for type=28
    wimaxasncp.tlv.Classification_PHS_Options_and_SDU_Encapsulation_Support_Type  Classification/PHS Options and SDU Encapsulation Support Type
        Byte array
        type=290
    wimaxasncp.tlv.Classification_PHS_Options_and_SDU_Encapsulation_Support_Type.value  Value
        Byte array
        value for type=290
    wimaxasncp.tlv.Classification_Result  Classification Result
        Byte array
        type=269
    wimaxasncp.tlv.Classification_Result.value  Value
        Unsigned 8-bit integer
        value for type=269
    wimaxasncp.tlv.Classification_Rule_Index  Classification Rule Index
        Byte array
        type=30
    wimaxasncp.tlv.Classification_Rule_Index.value  Value
        Unsigned 16-bit integer
        value for type=30
    wimaxasncp.tlv.Classifier_Action  Classifier Action
        Byte array
        type=31
    wimaxasncp.tlv.Classifier_Action.value  Value
        Unsigned 8-bit integer
        value for type=31
    wimaxasncp.tlv.Classifier_Rule_Priority  Classifier Rule Priority
        Byte array
        type=32
    wimaxasncp.tlv.Classifier_Rule_Priority.value  Value
        Unsigned 8-bit integer
        value for type=32
    wimaxasncp.tlv.Combined_Resource_Indicator  Combined Resource Indicator
        Byte array
        type=206, Compound
    wimaxasncp.tlv.Combined_Resources_Required  Combined Resources Required
        Byte array
        type=35
    wimaxasncp.tlv.Combined_Resources_Required.value  Value
        Unsigned 16-bit integer
        value for type=35
    wimaxasncp.tlv.Context_Purpose_Indicator  Context Purpose Indicator
        Byte array
        type=36
    wimaxasncp.tlv.Context_Purpose_Indicator.value  Value
        Unsigned 32-bit integer
        value for type=36
    wimaxasncp.tlv.Control_Plane_Indicator  Control Plane Indicator
        Byte array
        type=1136
    wimaxasncp.tlv.Control_Plane_Indicator.value  Value
        Unsigned 8-bit integer
        value for type=1136
    wimaxasncp.tlv.Correlation_ID  Correlation ID
        Byte array
        type=37
    wimaxasncp.tlv.Correlation_ID.value  Value
        Unsigned 32-bit integer
        value for type=37
    wimaxasncp.tlv.Cryptographic_Suite  Cryptographic Suite
        Byte array
        type=38
    wimaxasncp.tlv.Cryptographic_Suite.value  Value
        Unsigned 32-bit integer
        value for type=38
    wimaxasncp.tlv.Cumulative_Downlink_Octets  Cumulative Downlink Octets
        Byte array
        type=250
    wimaxasncp.tlv.Cumulative_Downlink_Octets.value  Value
        Byte array
        value for type=250
    wimaxasncp.tlv.Cumulative_Downlink_Packets  Cumulative Downlink Packets
        Byte array
        type=252
    wimaxasncp.tlv.Cumulative_Downlink_Packets.value  Value
        Byte array
        value for type=252
    wimaxasncp.tlv.Cumulative_Uplink_Octets  Cumulative Uplink Octets
        Byte array
        type=249
    wimaxasncp.tlv.Cumulative_Uplink_Octets.value  Value
        Byte array
        value for type=249
    wimaxasncp.tlv.Cumulative_Uplink_Packets  Cumulative Uplink Packets
        Byte array
        type=251
    wimaxasncp.tlv.Cumulative_Uplink_Packets.value  Value
        Byte array
        value for type=251
    wimaxasncp.tlv.Current_Transmit_Power  Current Transmit Power
        Byte array
        type=327
    wimaxasncp.tlv.Current_Transmit_Power.value  Value
        Unsigned 8-bit integer
        value for type=327
    wimaxasncp.tlv.DCD_Setting  DCD Setting
        Byte array
        type=49, TBD
    wimaxasncp.tlv.DCD_Setting.value  Value
        Byte array
        value for type=49
    wimaxasncp.tlv.DCD_UCD_Configuration_Change_Count  DCD/UCD Configuration Change Count
        Byte array
        type=48, TBD
    wimaxasncp.tlv.DCD_UCD_Configuration_Change_Count.value  Value
        Byte array
        value for type=48
    wimaxasncp.tlv.DHCP_Key  DHCP Key
        Byte array
        type=51
    wimaxasncp.tlv.DHCP_Key.value  Value
        Byte array
        value for type=51
    wimaxasncp.tlv.DHCP_Key_ID  DHCP Key ID
        Byte array
        type=52
    wimaxasncp.tlv.DHCP_Key_ID.value  Value
        Unsigned 32-bit integer
        value for type=52
    wimaxasncp.tlv.DHCP_Key_Lifetime  DHCP Key Lifetime
        Byte array
        type=53
    wimaxasncp.tlv.DHCP_Key_Lifetime.value  Value
        Unsigned 32-bit integer
        value for type=53
    wimaxasncp.tlv.DHCP_Proxy_Info  DHCP Proxy Info
        Byte array
        type=54, Compound
    wimaxasncp.tlv.DHCP_Relay_Address  DHCP Relay Address
        Byte array
        type=55
    wimaxasncp.tlv.DHCP_Relay_Address.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=55
    wimaxasncp.tlv.DHCP_Relay_Address.ipv4_value  IPv4 Address
        IPv4 address
        value for type=55
    wimaxasncp.tlv.DHCP_Relay_Address.ipv6_value  IPv6 Address
        IPv6 address
        value for type=55
    wimaxasncp.tlv.DHCP_Relay_Info  DHCP Relay Info
        Byte array
        type=56, Compound
    wimaxasncp.tlv.DHCP_Server_Address  DHCP Server Address
        Byte array
        type=57
    wimaxasncp.tlv.DHCP_Server_Address.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=57
    wimaxasncp.tlv.DHCP_Server_Address.ipv4_value  IPv4 Address
        IPv4 address
        value for type=57
    wimaxasncp.tlv.DHCP_Server_Address.ipv6_value  IPv6 Address
        IPv6 address
        value for type=57
    wimaxasncp.tlv.DHCP_Server_List  DHCP Server List
        Byte array
        type=58, Compound
    wimaxasncp.tlv.DL_PHY_Quality_Info  DL PHY Quality Info
        Byte array
        type=60
    wimaxasncp.tlv.DL_PHY_Quality_Info.value  Value
        Unsigned 32-bit integer
        value for type=60
    wimaxasncp.tlv.DL_PHY_Service_Level  DL PHY Service Level
        Byte array
        type=61
    wimaxasncp.tlv.DL_PHY_Service_Level.value  Value
        Unsigned 32-bit integer
        value for type=61
    wimaxasncp.tlv.DSx_Flow_Control  DSx Flow Control
        Byte array
        type=294
    wimaxasncp.tlv.DSx_Flow_Control.value  Value
        Unsigned 8-bit integer
        value for type=294
    wimaxasncp.tlv.Data_Delivery_Trigger  Data Delivery Trigger
        Byte array
        type=265
    wimaxasncp.tlv.Data_Delivery_Trigger.value  Value
        Unsigned 8-bit integer
        value for type=265
    wimaxasncp.tlv.Data_Integrity  Data Integrity
        Byte array
        type=40
    wimaxasncp.tlv.Data_Integrity.value  Value
        Unsigned 8-bit integer
        value for type=40
    wimaxasncp.tlv.Data_Path_Encapsulation_Type  Data Path Encapsulation Type
        Byte array
        type=42
    wimaxasncp.tlv.Data_Path_Encapsulation_Type.value  Value
        Unsigned 8-bit integer
        value for type=42
    wimaxasncp.tlv.Data_Path_Establishment_Option  Data Path Establishment Option
        Byte array
        type=43
    wimaxasncp.tlv.Data_Path_Establishment_Option.value  Value
        Unsigned 8-bit integer
        value for type=43
    wimaxasncp.tlv.Data_Path_ID  Data Path ID
        Byte array
        type=44
    wimaxasncp.tlv.Data_Path_ID.value  Value
        Unsigned 32-bit integer
        value for type=44
    wimaxasncp.tlv.Data_Path_Info  Data Path Info
        Byte array
        type=45, Compound
    wimaxasncp.tlv.Data_Path_Integrity_Mechanism  Data Path Integrity Mechanism
        Byte array
        type=46
    wimaxasncp.tlv.Data_Path_Integrity_Mechanism.value  Value
        Unsigned 8-bit integer
        value for type=46
    wimaxasncp.tlv.Data_Path_Type  Data Path Type
        Byte array
        type=47
    wimaxasncp.tlv.Data_Path_Type.value  Value
        Unsigned 8-bit integer
        value for type=47
    wimaxasncp.tlv.Destination_Identifier  Destination Identifier
        Byte array
        type=65282
    wimaxasncp.tlv.Destination_Identifier.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=65282
    wimaxasncp.tlv.Destination_Identifier.ipv4_value  IPv4 Address
        IPv4 address
        value for type=65282
    wimaxasncp.tlv.Destination_Identifier.ipv6_value  IPv6 Address
        IPv6 address
        value for type=65282
    wimaxasncp.tlv.Direction  Direction
        Byte array
        type=59
    wimaxasncp.tlv.Direction.value  Value
        Unsigned 16-bit integer
        value for type=59
    wimaxasncp.tlv.Downlink_Octets_at_Tariff_Switch  Downlink Octets at Tariff Switch
        Byte array
        type=258
    wimaxasncp.tlv.Downlink_Octets_at_Tariff_Switch.value  Value
        Byte array
        value for type=258
    wimaxasncp.tlv.Downlink_Packets_at_Tariff_Switch  Downlink Packets at Tariff Switch
        Byte array
        type=260
    wimaxasncp.tlv.Downlink_Packets_at_Tariff_Switch.value  Value
        Byte array
        value for type=260
    wimaxasncp.tlv.Duration_Quota  Duration Quota
        Byte array
        type=275
    wimaxasncp.tlv.Duration_Quota.value  Value
        Unsigned 32-bit integer
        value for type=275
    wimaxasncp.tlv.Duration_Threshold  Duration Threshold
        Byte array
        type=276
    wimaxasncp.tlv.Duration_Threshold.value  Value
        Unsigned 32-bit integer
        value for type=276
    wimaxasncp.tlv.EAP_Payload  EAP Payload
        Byte array
        type=62
    wimaxasncp.tlv.EAP_Payload.value  Value
        Byte array
        EAP payload embedded in Value
    wimaxasncp.tlv.ERT_VR_Data_Delivery_Service  ERT-VR Data Delivery Service
        Byte array
        type=64, Compound
    wimaxasncp.tlv.Extended_Subheader_Capability  Extended Subheader Capability
        Byte array
        type=325
    wimaxasncp.tlv.Extended_Subheader_Capability.value  Value
        Unsigned 8-bit integer
        value for type=325
    wimaxasncp.tlv.FA_HA_Key  FA-HA Key
        Byte array
        type=66
    wimaxasncp.tlv.FA_HA_Key.value  Value
        Byte array
        value for type=66
    wimaxasncp.tlv.FA_HA_Key_Lifetime  FA-HA Key Lifetime
        Byte array
        type=67
    wimaxasncp.tlv.FA_HA_Key_Lifetime.value  Value
        Unsigned 32-bit integer
        value for type=67
    wimaxasncp.tlv.FA_HA_Key_SPI  FA-HA Key SPI
        Byte array
        type=68
    wimaxasncp.tlv.FA_HA_Key_SPI.value  Value
        Unsigned 32-bit integer
        value for type=68
    wimaxasncp.tlv.FA_Relocation_Indication  FA Relocation Indication
        Byte array
        type=71
    wimaxasncp.tlv.FA_Relocation_Indication.value  Value
        Unsigned 8-bit integer
        value for type=71
    wimaxasncp.tlv.FA_Revoke_Reason  FA Revoke Reason
        Byte array
        type=16
    wimaxasncp.tlv.FA_Revoke_Reason.value  Value
        Unsigned 8-bit integer
        value for type=16
    wimaxasncp.tlv.FA_Security_Infop  FA Security Infop
        Byte array
        type=372, Compound
    wimaxasncp.tlv.Failure_Indication  Failure Indication
        Byte array
        type=69
    wimaxasncp.tlv.Failure_Indication.value  Value
        Unsigned 8-bit integer
        value for type=69
    wimaxasncp.tlv.Full_DCD_Setting  Full DCD Setting
        Byte array
        type=72, TBD
    wimaxasncp.tlv.Full_DCD_Setting.value  Value
        Byte array
        value for type=72
    wimaxasncp.tlv.Full_UCD_Setting  Full UCD Setting
        Byte array
        type=73, TBD
    wimaxasncp.tlv.Full_UCD_Setting.value  Value
        Byte array
        value for type=73
    wimaxasncp.tlv.Global_Service_Class_Name  Global Service Class Name
        Byte array
        type=74
    wimaxasncp.tlv.Global_Service_Class_Name.value  Value
        Byte array
        value for type=74
    wimaxasncp.tlv.HARQ_Chase_Combining_and_CC_IR_Buffer_Capability  HARQ Chase Combining and CC-IR Buffer Capability
        Byte array
        type=335
    wimaxasncp.tlv.HARQ_Chase_Combining_and_CC_IR_Buffer_Capability.value  Value
        Unsigned 16-bit integer
        value for type=335
    wimaxasncp.tlv.HA_IP_Address  HA IP Address
        Byte array
        type=75
    wimaxasncp.tlv.HA_IP_Address.ipv4_value  IPv4 Address
        IPv4 address
        value for type=75
    wimaxasncp.tlv.HA_IP_Address.ipv6_value  IPv6 Address
        IPv6 address
        value for type=75
    wimaxasncp.tlv.HO_Authorization_policy_support  HO Authorization policy support
        Byte array
        type=367
    wimaxasncp.tlv.HO_Authorization_policy_support.value  Value
        Unsigned 8-bit integer
        value for type=367
    wimaxasncp.tlv.HO_Confirm_Type  HO Confirm Type
        Byte array
        type=76
    wimaxasncp.tlv.HO_Confirm_Type.value  Value
        Unsigned 8-bit integer
        value for type=76
    wimaxasncp.tlv.HO_ID  HO ID
        Byte array
        type=205
    wimaxasncp.tlv.HO_ID.value  Value
        Unsigned 8-bit integer
        value for type=205
    wimaxasncp.tlv.HO_Process_Optimization  HO Process Optimization
        Byte array
        type=78
    wimaxasncp.tlv.HO_Process_Optimization.value  Value
        Unsigned 8-bit integer
        value for type=78
    wimaxasncp.tlv.HO_Process_Optimization_MS_Timer  HO Process Optimization MS Timer
        Byte array
        type=303
    wimaxasncp.tlv.HO_Process_Optimization_MS_Timer.value  Value
        Unsigned 8-bit integer
        value for type=303
    wimaxasncp.tlv.HO_Supported  HO Supported
        Byte array
        type=302
    wimaxasncp.tlv.HO_Supported.value  Value
        Unsigned 8-bit integer
        value for type=302
    wimaxasncp.tlv.HO_Trigger_Metric_Support  HO Trigger Metric Support
        Byte array
        type=326
    wimaxasncp.tlv.HO_Trigger_Metric_Support.value  Value
        Unsigned 8-bit integer
        value for type=326
    wimaxasncp.tlv.HO_Type  HO Type
        Byte array
        type=79
    wimaxasncp.tlv.HO_Type.value  Value
        Unsigned 32-bit integer
        value for type=79
    wimaxasncp.tlv.Handover_Indication_Readiness_Timer  Handover Indication Readiness Timer
        Byte array
        type=313
    wimaxasncp.tlv.Handover_Indication_Readiness_Timer.value  Value
        Unsigned 8-bit integer
        value for type=313
    wimaxasncp.tlv.Home_Address_HoA  Home Address (HoA)
        Byte array
        type=77
    wimaxasncp.tlv.Home_Address_HoA.value  Value
        IPv4 address
        value for type=77
    wimaxasncp.tlv.IDLE_Mode_Info  IDLE Mode Info
        Byte array
        type=80, Compound
    wimaxasncp.tlv.IDLE_Mode_Retain_Info  IDLE Mode Retain Info
        Byte array
        type=81
    wimaxasncp.tlv.IDLE_Mode_Retain_Info.value  Value
        Unsigned 8-bit integer
        value for type=81
    wimaxasncp.tlv.IM_Auth_Indication  IM Auth Indication
        Byte array
        type=1228
    wimaxasncp.tlv.IM_Auth_Indication.value  Value
        Unsigned 8-bit integer
        value for type=1228
    wimaxasncp.tlv.IP_Destination_Address_and_Mask  IP Destination Address and Mask
        Byte array
        type=82
    wimaxasncp.tlv.IP_Destination_Address_and_Mask.value  Value
        Byte array
        value for type=82
    wimaxasncp.tlv.IP_Destination_Address_and_Mask.value.ipv4  IPv4 Address
        IPv4 address
        value component for type=82
    wimaxasncp.tlv.IP_Destination_Address_and_Mask.value.ipv4_mask  IPv4 Mask
        IPv4 address
        value component for type=82
    wimaxasncp.tlv.IP_Destination_Address_and_Mask.value.ipv6  IPv6 Address
        IPv6 address
        value component for type=82
    wimaxasncp.tlv.IP_Destination_Address_and_Mask.value.ipv6_mask  IPv6 Mask
        IPv6 address
        value component for type=82
    wimaxasncp.tlv.IP_Remained_Time  IP Remained Time
        Byte array
        type=83
    wimaxasncp.tlv.IP_Remained_Time.value  Value
        Unsigned 32-bit integer
        value for type=83
    wimaxasncp.tlv.IP_Source_Address_and_Mask  IP Source Address and Mask
        Byte array
        type=84
    wimaxasncp.tlv.IP_Source_Address_and_Mask.value  Value
        Byte array
        value for type=84
    wimaxasncp.tlv.IP_Source_Address_and_Mask.value.ipv4  IPv4 Address
        IPv4 address
        value component for type=84
    wimaxasncp.tlv.IP_Source_Address_and_Mask.value.ipv4_mask  IPv4 Mask
        IPv4 address
        value component for type=84
    wimaxasncp.tlv.IP_Source_Address_and_Mask.value.ipv6  IPv6 Address
        IPv6 address
        value component for type=84
    wimaxasncp.tlv.IP_Source_Address_and_Mask.value.ipv6_mask  IPv6 Mask
        IPv6 address
        value component for type=84
    wimaxasncp.tlv.IP_TOS_DSCP_Range_and_Mask  IP TOS/DSCP Range and Mask
        Byte array
        type=85, TBD
    wimaxasncp.tlv.IP_TOS_DSCP_Range_and_Mask.value  Value
        Byte array
        value for type=85
    wimaxasncp.tlv.Idle_Mode_Exit_Indicator  Idle Mode Exit Indicator
        Byte array
        type=369
    wimaxasncp.tlv.Idle_Mode_Exit_Indicator.value  Value
        Unsigned 8-bit integer
        value for type=369
    wimaxasncp.tlv.Idle_Mode_Timeout  Idle Mode Timeout
        Byte array
        type=268
    wimaxasncp.tlv.Idle_Mode_Timeout.value  Value
        Unsigned 16-bit integer
        value for type=268
    wimaxasncp.tlv.Key_Change_Indicator  Key Change Indicator
        Byte array
        type=86
    wimaxasncp.tlv.Key_Change_Indicator.value  Value
        Unsigned 8-bit integer
        value for type=86
    wimaxasncp.tlv.LU_Result_Indicator  LU Result Indicator
        Byte array
        type=90
    wimaxasncp.tlv.LU_Result_Indicator.value  Value
        Unsigned 8-bit integer
        value for type=90
    wimaxasncp.tlv.L_BSID  L-BSID
        Byte array
        type=87
    wimaxasncp.tlv.L_BSID.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=87
    wimaxasncp.tlv.L_BSID.ipv4_value  IPv4 Address
        IPv4 address
        value for type=87
    wimaxasncp.tlv.L_BSID.ipv6_value  IPv6 Address
        IPv6 address
        value for type=87
    wimaxasncp.tlv.Location_Update_Status  Location Update Status
        Byte array
        type=88
    wimaxasncp.tlv.Location_Update_Status.value  Value
        Unsigned 8-bit integer
        value for type=88
    wimaxasncp.tlv.MAC_Header_and_Extended_Sub_Header_Support  MAC Header and Extended Sub-Header Support
        Byte array
        type=310
    wimaxasncp.tlv.MAC_Header_and_Extended_Sub_Header_Support.value  Value
        Byte array
        value for type=310
    wimaxasncp.tlv.MAC_Mode  MAC Mode
        Byte array
        type=323
    wimaxasncp.tlv.MAC_Mode.value  Value
        Unsigned 8-bit integer
        value for type=323
    wimaxasncp.tlv.MAC_ertPS_Support  MAC ertPS Support
        Byte array
        type=300
    wimaxasncp.tlv.MAC_ertPS_Support.value  Value
        Unsigned 8-bit integer
        value for type=300
    wimaxasncp.tlv.MIP4_Info  MIP4 Info
        Byte array
        type=96, Compound
    wimaxasncp.tlv.MIP4_Security_Info  MIP4 Security Info
        Byte array
        type=266, Compound
    wimaxasncp.tlv.MN_FA_Key  MN-FA Key
        Byte array
        type=98
    wimaxasncp.tlv.MN_FA_Key.value  Value
        Byte array
        value for type=98
    wimaxasncp.tlv.MN_FA_Key_Lifetime  MN-FA Key Lifetime
        Byte array
        type=267
    wimaxasncp.tlv.MN_FA_Key_Lifetime.value  Value
        Unsigned 32-bit integer
        value for type=267
    wimaxasncp.tlv.MN_FA_SPI  MN-FA SPI
        Byte array
        type=99
    wimaxasncp.tlv.MN_FA_SPI.value  Value
        Unsigned 32-bit integer
        value for type=99
    wimaxasncp.tlv.MS_Authorization_Context  MS Authorization Context
        Byte array
        type=100, Compound
    wimaxasncp.tlv.MS_HO_Connections_Parameters_Proc_Time  MS HO Connections Parameters Proc Time
        Byte array
        type=308
    wimaxasncp.tlv.MS_HO_Connections_Parameters_Proc_Time.value  Value
        Unsigned 8-bit integer
        value for type=308
    wimaxasncp.tlv.MS_HO_TEK_Proc_Time  MS HO TEK Proc Time
        Byte array
        type=309
    wimaxasncp.tlv.MS_HO_TEK_Proc_Time.value  Value
        Unsigned 8-bit integer
        value for type=309
    wimaxasncp.tlv.MS_Handover_Retransmission_Timer  MS Handover Retransmission Timer
        Byte array
        type=312
    wimaxasncp.tlv.MS_Handover_Retransmission_Timer.value  Value
        Unsigned 8-bit integer
        value for type=312
    wimaxasncp.tlv.MS_ID  MS ID
        Byte array
        type=102
    wimaxasncp.tlv.MS_ID.value  Value
        6-byte Hardware (MAC) Address
        value for type=102
    wimaxasncp.tlv.MS_Info  MS Info
        Byte array
        type=103, Compound
    wimaxasncp.tlv.MS_Mobility_Mode  MS Mobility Mode
        Byte array
        type=104
    wimaxasncp.tlv.MS_Mobility_Mode.value  Value
        Unsigned 16-bit integer
        value for type=104
    wimaxasncp.tlv.MS_NAI  MS NAI
        Byte array
        type=105
    wimaxasncp.tlv.MS_NAI.value  Value
        String
        value for type=105
    wimaxasncp.tlv.MS_Security_History  MS Security History
        Byte array
        type=108, Compound
    wimaxasncp.tlv.Maximum_Latency  Maximum Latency
        Byte array
        type=91
    wimaxasncp.tlv.Maximum_Latency.value  Value
        Unsigned 32-bit integer
        value for type=91
    wimaxasncp.tlv.Maximum_MAC_Data_per_Frame_Support  Maximum MAC Data per Frame Support
        Byte array
        type=296, Compound
    wimaxasncp.tlv.Maximum_Number_of_Burst_per_Frame_Capability_in_HARQ  Maximum Number of Burst per Frame Capability in HARQ
        Byte array
        type=341
    wimaxasncp.tlv.Maximum_Number_of_Burst_per_Frame_Capability_in_HARQ.value  Value
        Unsigned 8-bit integer
        value for type=341
    wimaxasncp.tlv.Maximum_Number_of_Bursts_Transmitted_Concurrently_to_the_MS  Maximum Number of Bursts Transmitted Concurrently to the MS
        Byte array
        type=301
    wimaxasncp.tlv.Maximum_Number_of_Bursts_Transmitted_Concurrently_to_the_MS.value  Value
        Unsigned 8-bit integer
        value for type=301
    wimaxasncp.tlv.Maximum_Number_of_Classifier  Maximum Number of Classifier
        Byte array
        type=291
    wimaxasncp.tlv.Maximum_Number_of_Classifier.value  Value
        Unsigned 16-bit integer
        value for type=291
    wimaxasncp.tlv.Maximum_Number_of_Supported_Security_Associations  Maximum Number of Supported Security Associations
        Byte array
        type=320
    wimaxasncp.tlv.Maximum_Number_of_Supported_Security_Associations.value  Value
        Unsigned 8-bit integer
        value for type=320
    wimaxasncp.tlv.Maximum_Sustained_Traffic_Rate  Maximum Sustained Traffic Rate
        Byte array
        type=92
    wimaxasncp.tlv.Maximum_Sustained_Traffic_Rate.value  Value
        Unsigned 32-bit integer
        value for type=92
    wimaxasncp.tlv.Maximum_Traffic_Burst  Maximum Traffic Burst
        Byte array
        type=93
    wimaxasncp.tlv.Maximum_Traffic_Burst.value  Value
        Unsigned 32-bit integer
        value for type=93
    wimaxasncp.tlv.Maximum_Transmit_Power  Maximum Transmit Power
        Byte array
        type=317
    wimaxasncp.tlv.Maximum_Transmit_Power.value  Value
        Unsigned 32-bit integer
        value for type=317
    wimaxasncp.tlv.Maximum_amount_of_MAC_Level_Data_per_DL_Frame  Maximum amount of MAC Level Data per DL Frame
        Byte array
        type=297
    wimaxasncp.tlv.Maximum_amount_of_MAC_Level_Data_per_DL_Frame.value  Value
        Unsigned 16-bit integer
        value for type=297
    wimaxasncp.tlv.Maximum_amount_of_MAC_Level_Data_per_UL_Frame  Maximum amount of MAC Level Data per UL Frame
        Byte array
        type=298
    wimaxasncp.tlv.Maximum_amount_of_MAC_Level_Data_per_UL_Frame.value  Value
        Unsigned 16-bit integer
        value for type=298
    wimaxasncp.tlv.Media_Flow_Description_in_SDP_Format  Media Flow Description in SDP Format
        Byte array
        type=228
    wimaxasncp.tlv.Media_Flow_Description_in_SDP_Format.value  Value
        Byte array
        value for type=228
    wimaxasncp.tlv.Media_Flow_Type  Media Flow Type
        Byte array
        type=94
    wimaxasncp.tlv.Media_Flow_Type.value  Value
        Unsigned 8-bit integer
        value for type=94
    wimaxasncp.tlv.Minimum_Reserved_Traffic_Rate  Minimum Reserved Traffic Rate
        Byte array
        type=95
    wimaxasncp.tlv.Minimum_Reserved_Traffic_Rate.value  Value
        Unsigned 32-bit integer
        value for type=95
    wimaxasncp.tlv.Mobility_Features_Supported  Mobility Features Supported
        Byte array
        type=304
    wimaxasncp.tlv.Mobility_Features_Supported.value  Value
        Unsigned 8-bit integer
        value for type=304
    wimaxasncp.tlv.NRT_VR_Data_Delivery_Service  NRT-VR Data Delivery Service
        Byte array
        type=111, Compound
    wimaxasncp.tlv.NSP_ID  NSP ID
        Byte array
        type=368
    wimaxasncp.tlv.NSP_ID.value  Value
        Byte array
        value for type=368
    wimaxasncp.tlv.Network_Exit_Indicator  Network Exit Indicator
        Byte array
        type=109
    wimaxasncp.tlv.Network_Exit_Indicator.value  Value
        Unsigned 8-bit integer
        value for type=109
    wimaxasncp.tlv.Network_assisted_HO_Supported  Network assisted HO Supported
        Byte array
        type=270
    wimaxasncp.tlv.Network_assisted_HO_Supported.value  Value
        Unsigned 8-bit integer
        value for type=270
    wimaxasncp.tlv.Newer_TEK_Parameters  Newer TEK Parameters
        Byte array
        type=110, Compound
    wimaxasncp.tlv.Number_of_DL_Transport_CIDs_Support  Number of DL Transport CIDs Support
        Byte array
        type=289
    wimaxasncp.tlv.Number_of_DL_Transport_CIDs_Support.value  Value
        Unsigned 16-bit integer
        value for type=289
    wimaxasncp.tlv.Number_of_UL_Transport_CIDs_Support  Number of UL Transport CIDs Support
        Byte array
        type=288
    wimaxasncp.tlv.Number_of_UL_Transport_CIDs_Support.value  Value
        Unsigned 16-bit integer
        value for type=288
    wimaxasncp.tlv.OFDMA_MAP_Capability  OFDMA MAP Capability
        Byte array
        type=338
    wimaxasncp.tlv.OFDMA_MAP_Capability.value  Value
        Unsigned 8-bit integer
        value for type=338
    wimaxasncp.tlv.OFDMA_MS_CSIT_Capability  OFDMA MS CSIT Capability
        Byte array
        type=340
    wimaxasncp.tlv.OFDMA_MS_CSIT_Capability.value  Value
        Unsigned 16-bit integer
        value for type=340
    wimaxasncp.tlv.OFDMA_Parameter_Set  OFDMA Parameter Set
        Byte array
        type=50
    wimaxasncp.tlv.OFDMA_Parameter_Set.value  Value
        Unsigned 8-bit integer
        value for type=50
    wimaxasncp.tlv.OFDMA_SS_CINR_Measurement_Capability  OFDMA SS CINR Measurement Capability
        Byte array
        type=333
    wimaxasncp.tlv.OFDMA_SS_CINR_Measurement_Capability.value  Value
        Unsigned 8-bit integer
        value for type=333
    wimaxasncp.tlv.OFDMA_SS_FFT_Sizes  OFDMA SS FFT Sizes
        Byte array
        type=328
    wimaxasncp.tlv.OFDMA_SS_FFT_Sizes.value  Value
        Unsigned 8-bit integer
        value for type=328
    wimaxasncp.tlv.OFDMA_SS_Permutation_support  OFDMA SS Permutation support
        Byte array
        type=332
    wimaxasncp.tlv.OFDMA_SS_Permutation_support.value  Value
        Unsigned 8-bit integer
        value for type=332
    wimaxasncp.tlv.OFDMA_SS_Uplink_Power_Control_Scheme_Switching_Delay  OFDMA SS Uplink Power Control Scheme Switching Delay
        Byte array
        type=337
    wimaxasncp.tlv.OFDMA_SS_Uplink_Power_Control_Scheme_Switching_Delay.value  Value
        Unsigned 8-bit integer
        value for type=337
    wimaxasncp.tlv.OFDMA_SS_Uplink_Power_Control_Support  OFDMA SS Uplink Power Control Support
        Byte array
        type=336
    wimaxasncp.tlv.OFDMA_SS_Uplink_Power_Control_Support.value  Value
        Unsigned 8-bit integer
        value for type=336
    wimaxasncp.tlv.OFDMA_SS_demodulator  OFDMA SS demodulator
        Byte array
        type=329
    wimaxasncp.tlv.OFDMA_SS_demodulator.value  Value
        Byte array
        value for type=329
    wimaxasncp.tlv.OFDMA_SS_demodulator_for_MIMO_Support  OFDMA SS demodulator for MIMO Support
        Byte array
        type=342
    wimaxasncp.tlv.OFDMA_SS_demodulator_for_MIMO_Support.value  Value
        Byte array
        value for type=342
    wimaxasncp.tlv.OFDMA_SS_modulator  OFDMA SS modulator
        Byte array
        type=330
    wimaxasncp.tlv.OFDMA_SS_modulator.value  Value
        Unsigned 8-bit integer
        value for type=330
    wimaxasncp.tlv.OFDMA_SS_modulator_for_MIMO_Support  OFDMA SS modulator for MIMO Support
        Byte array
        type=343
    wimaxasncp.tlv.OFDMA_SS_modulator_for_MIMO_Support.value  Value
        Unsigned 16-bit integer
        value for type=343
    wimaxasncp.tlv.Offline_Accounting_Context  Offline Accounting Context
        Byte array
        type=360, Compound
    wimaxasncp.tlv.Old_Anchor_PCID  Old Anchor PCID
        Byte array
        type=113
    wimaxasncp.tlv.Old_Anchor_PCID.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=113
    wimaxasncp.tlv.Old_Anchor_PCID.ipv4_value  IPv4 Address
        IPv4 address
        value for type=113
    wimaxasncp.tlv.Old_Anchor_PCID.ipv6_value  IPv6 Address
        IPv6 address
        value for type=113
    wimaxasncp.tlv.Older_TEK_Parameters  Older TEK Parameters
        Byte array
        type=112, Compound
    wimaxasncp.tlv.PC_Relocation_Indication  PC Relocation Indication
        Byte array
        type=122
    wimaxasncp.tlv.PC_Relocation_Indication.value  Value
        Unsigned 8-bit integer
        value for type=122
    wimaxasncp.tlv.PHSF  PHSF
        Byte array
        type=124
    wimaxasncp.tlv.PHSF.value  Value
        Byte array
        value for type=124
    wimaxasncp.tlv.PHSI  PHSI
        Byte array
        type=125
    wimaxasncp.tlv.PHSI.value  Value
        Unsigned 8-bit integer
        value for type=125
    wimaxasncp.tlv.PHSM  PHSM
        Byte array
        type=126
    wimaxasncp.tlv.PHSM.value  Value
        Byte array
        value for type=126
    wimaxasncp.tlv.PHSS  PHSS
        Byte array
        type=129
    wimaxasncp.tlv.PHSS.value  Value
        Unsigned 8-bit integer
        value for type=129
    wimaxasncp.tlv.PHSV  PHSV
        Byte array
        type=130
    wimaxasncp.tlv.PHSV.value  Value
        Unsigned 8-bit integer
        value for type=130
    wimaxasncp.tlv.PHS_Rule  PHS Rule
        Byte array
        type=127, Compound
    wimaxasncp.tlv.PHS_Rule_Action  PHS Rule Action
        Byte array
        type=128
    wimaxasncp.tlv.PHS_Rule_Action.value  Value
        Unsigned 8-bit integer
        value for type=128
    wimaxasncp.tlv.PHS_Support  PHS Support
        Byte array
        type=292
    wimaxasncp.tlv.PHS_Support.value  Value
        Unsigned 8-bit integer
        value for type=292
    wimaxasncp.tlv.PKM2_Message_Code  PKM2 Message Code
        Byte array
        type=134
    wimaxasncp.tlv.PKM2_Message_Code.value  Value
        Unsigned 8-bit integer
        value for type=134
    wimaxasncp.tlv.PKM_Flow_Control  PKM Flow Control
        Byte array
        type=319
    wimaxasncp.tlv.PKM_Flow_Control.value  Value
        Unsigned 8-bit integer
        value for type=319
    wimaxasncp.tlv.PMK_SN  PMK SN
        Byte array
        type=133
    wimaxasncp.tlv.PMK_SN.value  Value
        Unsigned 8-bit integer
        value for type=133
    wimaxasncp.tlv.PN_Counter  PN Counter
        Byte array
        type=136
    wimaxasncp.tlv.PN_Counter.value  Value
        Unsigned 32-bit integer
        value for type=136
    wimaxasncp.tlv.PN_Window_Size  PN Window Size
        Byte array
        type=324
    wimaxasncp.tlv.PN_Window_Size.value  Value
        Unsigned 16-bit integer
        value for type=324
    wimaxasncp.tlv.PPAC  PPAC
        Byte array
        type=65, Compound
    wimaxasncp.tlv.PPAQ  PPAQ
        Byte array
        type=131, Compound
    wimaxasncp.tlv.Packet_Classification_Rule_Media_Flow_Description  Packet Classification Rule / Media Flow Description
        Byte array
        type=114, Compound
    wimaxasncp.tlv.Packing_Support  Packing Support
        Byte array
        type=299
    wimaxasncp.tlv.Packing_Support.value  Value
        Unsigned 8-bit integer
        value for type=299
    wimaxasncp.tlv.Paging_Announce_Timer  Paging Announce Timer
        Byte array
        type=115
    wimaxasncp.tlv.Paging_Announce_Timer.value  Value
        Unsigned 16-bit integer
        value for type=115
    wimaxasncp.tlv.Paging_Cause  Paging Cause
        Byte array
        type=116
    wimaxasncp.tlv.Paging_Cause.value  Value
        Unsigned 8-bit integer
        value for type=116
    wimaxasncp.tlv.Paging_Controller_Identifier  Paging Controller Identifier
        Byte array
        type=117
    wimaxasncp.tlv.Paging_Controller_Identifier.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=117
    wimaxasncp.tlv.Paging_Controller_Identifier.ipv4_value  IPv4 Address
        IPv4 address
        value for type=117
    wimaxasncp.tlv.Paging_Controller_Identifier.ipv6_value  IPv6 Address
        IPv6 address
        value for type=117
    wimaxasncp.tlv.Paging_Cycle  Paging Cycle
        Byte array
        type=118, TBD
    wimaxasncp.tlv.Paging_Cycle.value  Value
        Byte array
        value for type=118
    wimaxasncp.tlv.Paging_Group_ID  Paging Group ID
        Byte array
        type=123
    wimaxasncp.tlv.Paging_Group_ID.value  Value
        Unsigned 16-bit integer
        value for type=123
    wimaxasncp.tlv.Paging_Information  Paging Information
        Byte array
        type=119, Compound
    wimaxasncp.tlv.Paging_Interval_Length  Paging Interval Length
        Byte array
        type=135, TBD
    wimaxasncp.tlv.Paging_Interval_Length.value  Value
        Byte array
        value for type=135
    wimaxasncp.tlv.Paging_Offset  Paging Offset
        Byte array
        type=120
    wimaxasncp.tlv.Paging_Offset.value  Value
        Unsigned 16-bit integer
        value for type=120
    wimaxasncp.tlv.Paging_Preference  Paging Preference
        Byte array
        type=262
    wimaxasncp.tlv.Paging_Preference.value  Value
        Unsigned 8-bit integer
        value for type=262
    wimaxasncp.tlv.Paging_Start_Stop  Paging Start/Stop
        Byte array
        type=121
    wimaxasncp.tlv.Paging_Start_Stop.value  Value
        Unsigned 8-bit integer
        value for type=121
    wimaxasncp.tlv.Pool_ID  Pool-ID
        Byte array
        type=283
    wimaxasncp.tlv.Pool_ID.value  Value
        Unsigned 32-bit integer
        value for type=283
    wimaxasncp.tlv.Pool_Multiplier  Pool-Multiplier
        Byte array
        type=284
    wimaxasncp.tlv.Pool_Multiplier.value  Value
        Unsigned 32-bit integer
        value for type=284
    wimaxasncp.tlv.Power_Saving_Class_Capability  Power Saving Class Capability
        Byte array
        type=315
    wimaxasncp.tlv.Power_Saving_Class_Capability.value  Value
        Unsigned 16-bit integer
        value for type=315
    wimaxasncp.tlv.Preamble_Index_Sub_channel_Index  Preamble Index/Sub-channel Index
        Byte array
        type=137
    wimaxasncp.tlv.Preamble_Index_Sub_channel_Index.value  Value
        Unsigned 8-bit integer
        value for type=137
    wimaxasncp.tlv.Prepaid_Server  Prepaid Server
        Byte array
        type=285
    wimaxasncp.tlv.Prepaid_Server.ipv4_value  IPv4 Address
        IPv4 address
        value for type=285
    wimaxasncp.tlv.Prepaid_Server.ipv6_value  IPv6 Address
        IPv6 address
        value for type=285
    wimaxasncp.tlv.Protocol  Protocol
        Byte array
        type=138
    wimaxasncp.tlv.Protocol.value  Value
        Byte array
        value for type=138
    wimaxasncp.tlv.Protocol.value.protocol  Protocol
        Unsigned 16-bit integer
        value component for type=138
    wimaxasncp.tlv.Protocol_Destination_Port_Range  Protocol Destination Port Range
        Byte array
        type=139
    wimaxasncp.tlv.Protocol_Destination_Port_Range.value  Value
        Byte array
        value for type=139
    wimaxasncp.tlv.Protocol_Destination_Port_Range.value.port_high  Port High
        Unsigned 16-bit integer
        value component for type=139
    wimaxasncp.tlv.Protocol_Destination_Port_Range.value.port_low  Port Low
        Unsigned 16-bit integer
        value component for type=139
    wimaxasncp.tlv.Protocol_Source_Port_Range  Protocol Source Port Range
        Byte array
        type=140
    wimaxasncp.tlv.Protocol_Source_Port_Range.value  Value
        Byte array
        value for type=140
    wimaxasncp.tlv.Protocol_Source_Port_Range.value.port_high  Port High
        Unsigned 16-bit integer
        value component for type=140
    wimaxasncp.tlv.Protocol_Source_Port_Range.value.port_low  Port Low
        Unsigned 16-bit integer
        value component for type=140
    wimaxasncp.tlv.QoS_Parameters  QoS Parameters
        Byte array
        type=141, Compound
    wimaxasncp.tlv.Quota_Identifier  Quota Identifier
        Byte array
        type=148
    wimaxasncp.tlv.Quota_Identifier.value  Value
        Unsigned 32-bit integer
        value for type=148
    wimaxasncp.tlv.R3_Media_Flow_Description_in_SDP_format  R3 Media Flow Description in SDP format
        Byte array
        type=356
    wimaxasncp.tlv.R3_Media_Flow_Description_in_SDP_format.value  Value
        Byte array
        value for type=356
    wimaxasncp.tlv.RECEIVER_ARQ_ACK_PROCESSING_TIME  RECEIVER_ARQ_ACK_PROCESSING TIME
        Byte array
        type=354
    wimaxasncp.tlv.RECEIVER_ARQ_ACK_PROCESSING_TIME.value  Value
        Unsigned 8-bit integer
        value for type=354
    wimaxasncp.tlv.REG_Context  REG Context
        Byte array
        type=144, Compound
    wimaxasncp.tlv.ROHC_ECRTP_Context_ID  ROHC/ECRTP Context ID
        Byte array
        type=155, TBD
    wimaxasncp.tlv.ROHC_ECRTP_Context_ID.value  Value
        Byte array
        value for type=155
    wimaxasncp.tlv.RRM_Absolute_Threshold_Value_J  RRM Absolute Threshold Value J
        Byte array
        type=157
    wimaxasncp.tlv.RRM_Absolute_Threshold_Value_J.value  Value
        Unsigned 8-bit integer
        value for type=157
    wimaxasncp.tlv.RRM_Averaging_Time_T  RRM Averaging Time T
        Byte array
        type=158
    wimaxasncp.tlv.RRM_Averaging_Time_T.value  Value
        Unsigned 16-bit integer
        value for type=158
    wimaxasncp.tlv.RRM_BS_Info  RRM BS Info
        Byte array
        type=159, Compound
    wimaxasncp.tlv.RRM_BS_MS_PHY_Quality_Info  RRM BS-MS PHY Quality Info
        Byte array
        type=160, Compound
    wimaxasncp.tlv.RRM_Relative_Threshold_RT  RRM Relative Threshold RT
        Byte array
        type=161
    wimaxasncp.tlv.RRM_Relative_Threshold_RT.value  Value
        Unsigned 8-bit integer
        value for type=161
    wimaxasncp.tlv.RRM_Reporting_Characteristics  RRM Reporting Characteristics
        Byte array
        type=162
    wimaxasncp.tlv.RRM_Reporting_Characteristics.value  Value
        Unsigned 32-bit integer
        value for type=162
    wimaxasncp.tlv.RRM_Reporting_Period_P  RRM Reporting Period P
        Byte array
        type=163
    wimaxasncp.tlv.RRM_Reporting_Period_P.value  Value
        Unsigned 16-bit integer
        value for type=163
    wimaxasncp.tlv.RRM_Spare_Capacity_Report_Type  RRM Spare Capacity Report Type
        Byte array
        type=164
    wimaxasncp.tlv.RRM_Spare_Capacity_Report_Type.value  Value
        Unsigned 8-bit integer
        value for type=164
    wimaxasncp.tlv.RRP  RRP
        Byte array
        type=97
    wimaxasncp.tlv.RRP.value  Value
        Byte array
        value for type=97
    wimaxasncp.tlv.RRQ  RRQ
        Byte array
        type=20
    wimaxasncp.tlv.RRQ.value  Value
        Byte array
        value for type=20
    wimaxasncp.tlv.RT_VR_Data_Delivery_Service  RT-VR Data Delivery Service
        Byte array
        type=165, Compound
    wimaxasncp.tlv.Radio_Resource_Fluctuation  Radio Resource Fluctuation
        Byte array
        type=142
    wimaxasncp.tlv.Radio_Resource_Fluctuation.value  Value
        Unsigned 8-bit integer
        value for type=142
    wimaxasncp.tlv.Rating_Group_ID  Rating-Group-ID
        Byte array
        type=281
    wimaxasncp.tlv.Rating_Group_ID.value  Value
        Unsigned 32-bit integer
        value for type=281
    wimaxasncp.tlv.Reduced_Resources_Code  Reduced Resources Code
        Byte array
        type=237, Value = Null
    wimaxasncp.tlv.Registeration_Lifetime  Registeration Lifetime
        Byte array
        type=147
    wimaxasncp.tlv.Registeration_Lifetime.value  Value
        Unsigned 16-bit integer
        value for type=147
    wimaxasncp.tlv.Registration_Type  Registration Type
        Byte array
        type=145
    wimaxasncp.tlv.Registration_Type.value  Value
        Unsigned 32-bit integer
        value for type=145
    wimaxasncp.tlv.Relative_Delay  Relative Delay
        Byte array
        type=146
    wimaxasncp.tlv.Relative_Delay.value  Value
        Unsigned 8-bit integer
        value for type=146
    wimaxasncp.tlv.Relocation_Success_Indication  Relocation Success Indication
        Byte array
        type=149, TBD
    wimaxasncp.tlv.Relocation_Success_Indication.value  Value
        Byte array
        value for type=149
    wimaxasncp.tlv.Request_Transmission_Policy  Request/Transmission Policy
        Byte array
        type=150
    wimaxasncp.tlv.Request_Transmission_Policy.value  Value
        Unsigned 32-bit integer
        value for type=150
    wimaxasncp.tlv.Reservation_Action  Reservation Action
        Byte array
        type=151
    wimaxasncp.tlv.Reservation_Action.value  Value
        Unsigned 16-bit integer
        value for type=151
    wimaxasncp.tlv.Reservation_Result  Reservation Result
        Byte array
        type=152
    wimaxasncp.tlv.Reservation_Result.value  Value
        Unsigned 16-bit integer
        value for type=152
    wimaxasncp.tlv.Resource_Quota  Resource Quota
        Byte array
        type=277
    wimaxasncp.tlv.Resource_Quota.value  Value
        Unsigned 32-bit integer
        value for type=277
    wimaxasncp.tlv.Resource_Threshold  Resource Threshold
        Byte array
        type=278
    wimaxasncp.tlv.Resource_Threshold.value  Value
        Unsigned 32-bit integer
        value for type=278
    wimaxasncp.tlv.Response_Code  Response Code
        Byte array
        type=153
    wimaxasncp.tlv.Response_Code.value  Value
        Unsigned 8-bit integer
        value for type=153
    wimaxasncp.tlv.Result_Code  Result Code
        Byte array
        type=154
    wimaxasncp.tlv.Result_Code.value  Value
        Unsigned 8-bit integer
        value for type=154
    wimaxasncp.tlv.Round_Trip_Delay  Round Trip Delay
        Byte array
        type=156
    wimaxasncp.tlv.Round_Trip_Delay.value  Value
        Unsigned 8-bit integer
        value for type=156
    wimaxasncp.tlv.RxPN_Counter  RxPN Counter
        Byte array
        type=166
    wimaxasncp.tlv.RxPN_Counter.value  Value
        Unsigned 32-bit integer
        value for type=166
    wimaxasncp.tlv.SAID  SAID
        Byte array
        type=169
    wimaxasncp.tlv.SAID.value  Value
        Unsigned 16-bit integer
        value for type=169
    wimaxasncp.tlv.SA_Descriptor  SA Descriptor
        Byte array
        type=170, Compound
    wimaxasncp.tlv.SA_Service_Type  SA Service Type
        Byte array
        type=172
    wimaxasncp.tlv.SA_Service_Type.value  Value
        Unsigned 8-bit integer
        value for type=172
    wimaxasncp.tlv.SA_Type  SA Type
        Byte array
        type=173
    wimaxasncp.tlv.SA_Type.value  Value
        Unsigned 8-bit integer
        value for type=173
    wimaxasncp.tlv.SBC_Context  SBC Context
        Byte array
        type=174, Compound
    wimaxasncp.tlv.SDU_BSN_Map  SDU BSN Map
        Byte array
        type=175
    wimaxasncp.tlv.SDU_BSN_Map.value  Value
        Byte array
        value for type=175
    wimaxasncp.tlv.SDU_Info  SDU Info
        Byte array
        type=176, Compound
    wimaxasncp.tlv.SDU_SN  SDU SN
        Byte array
        type=178
    wimaxasncp.tlv.SDU_SN.value  Value
        Unsigned 32-bit integer
        value for type=178
    wimaxasncp.tlv.SDU_Size  SDU Size
        Byte array
        type=177
    wimaxasncp.tlv.SDU_Size.value  Value
        Unsigned 16-bit integer
        value for type=177
    wimaxasncp.tlv.SFID  SFID
        Byte array
        type=184
    wimaxasncp.tlv.SFID.value  Value
        Unsigned 32-bit integer
        value for type=184
    wimaxasncp.tlv.SF_Info  SF Info
        Byte array
        type=185, Compound
    wimaxasncp.tlv.Security_Negotiation_Parameters  Security Negotiation Parameters
        Byte array
        type=321, Compound
    wimaxasncp.tlv.Service_Authorization_Code  Service Authorization Code
        Byte array
        type=181
    wimaxasncp.tlv.Service_Authorization_Code.value  Value
        Unsigned 8-bit integer
        value for type=181
    wimaxasncp.tlv.Service_Class_Name  Service Class Name
        Byte array
        type=179
    wimaxasncp.tlv.Service_Class_Name.value  Value
        String
        value for type=179
    wimaxasncp.tlv.Service_ID  Service-ID
        Byte array
        type=280
    wimaxasncp.tlv.Service_ID.value  Value
        Byte array
        value for type=280
    wimaxasncp.tlv.Service_Level_Prediction  Service Level Prediction
        Byte array
        type=180
    wimaxasncp.tlv.Service_Level_Prediction.value  Value
        Unsigned 8-bit integer
        value for type=180
    wimaxasncp.tlv.Serving_Target_Indicator  Serving/Target Indicator
        Byte array
        type=182
    wimaxasncp.tlv.Serving_Target_Indicator.value  Value
        Unsigned 8-bit integer
        value for type=182
    wimaxasncp.tlv.Sleep_Mode_Recovery_Time  Sleep Mode Recovery Time
        Byte array
        type=305
    wimaxasncp.tlv.Sleep_Mode_Recovery_Time.value  Value
        Unsigned 8-bit integer
        value for type=305
    wimaxasncp.tlv.Source_Identifier  Source Identifier
        Byte array
        type=65281
    wimaxasncp.tlv.Source_Identifier.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=65281
    wimaxasncp.tlv.Source_Identifier.ipv4_value  IPv4 Address
        IPv4 address
        value for type=65281
    wimaxasncp.tlv.Source_Identifier.ipv6_value  IPv6 Address
        IPv6 address
        value for type=65281
    wimaxasncp.tlv.Spare_Capacity_Indicator  Spare Capacity Indicator
        Byte array
        type=186
    wimaxasncp.tlv.Spare_Capacity_Indicator.value  Value
        Unsigned 16-bit integer
        value for type=186
    wimaxasncp.tlv.State  State
        Byte array
        type=355
    wimaxasncp.tlv.State.value  Value
        Byte array
        value for type=355
    wimaxasncp.tlv.Subscriber_Transition_Gaps  Subscriber Transition Gaps
        Byte array
        type=316
    wimaxasncp.tlv.Subscriber_Transition_Gaps.value  Value
        Unsigned 16-bit integer
        value for type=316
    wimaxasncp.tlv.System_Resource_Retain_Timer  System Resource Retain Timer
        Byte array
        type=311
    wimaxasncp.tlv.System_Resource_Retain_Timer.value  Value
        Unsigned 16-bit integer
        value for type=311
    wimaxasncp.tlv.TEK  TEK
        Byte array
        type=187
    wimaxasncp.tlv.TEK.value  Value
        Byte array
        value for type=187
    wimaxasncp.tlv.TEK_Lifetime  TEK Lifetime
        Byte array
        type=188
    wimaxasncp.tlv.TEK_Lifetime.value  Value
        Unsigned 32-bit integer
        value for type=188
    wimaxasncp.tlv.TEK_SN  TEK SN
        Byte array
        type=189
    wimaxasncp.tlv.TEK_SN.value  Value
        Unsigned 8-bit integer
        value for type=189
    wimaxasncp.tlv.Target_Care_of_Address  Target Care-of Address
        Byte array
        type=101
    wimaxasncp.tlv.Target_Care_of_Address.ipv4_value  IPv4 Address
        IPv4 address
        value for type=101
    wimaxasncp.tlv.Target_Care_of_Address.ipv6_value  IPv6 Address
        IPv6 address
        value for type=101
    wimaxasncp.tlv.Target_FA_IP_Address  Target FA IP Address
        Byte array
        type=70
    wimaxasncp.tlv.Target_FA_IP_Address.bsid_value  BS ID
        6-byte Hardware (MAC) Address
        value for type=70
    wimaxasncp.tlv.Target_FA_IP_Address.ipv4_value  IPv4 Address
        IPv4 address
        value for type=70
    wimaxasncp.tlv.Target_FA_IP_Address.ipv6_value  IPv6 Address
        IPv6 address
        value for type=70
    wimaxasncp.tlv.Termination_Action  Termination Action
        Byte array
        type=282
    wimaxasncp.tlv.Termination_Action.value  Value
        Unsigned 8-bit integer
        value for type=282
    wimaxasncp.tlv.The_number_of_DL_HARQ_Channels  The number of DL HARQ Channels
        Byte array
        type=334
    wimaxasncp.tlv.The_number_of_DL_HARQ_Channels.value  Value
        Unsigned 8-bit integer
        value for type=334
    wimaxasncp.tlv.The_number_of_UL_HARQ_Channel  The number of UL HARQ Channel
        Byte array
        type=331
    wimaxasncp.tlv.The_number_of_UL_HARQ_Channel.value  Value
        Unsigned 8-bit integer
        value for type=331
    wimaxasncp.tlv.Time_Stamp  Time Stamp
        Byte array
        type=358
    wimaxasncp.tlv.Time_Stamp.value  Value
        Unsigned 32-bit integer
        value for type=358
    wimaxasncp.tlv.Tolerated_Jitter  Tolerated Jitter
        Byte array
        type=190
    wimaxasncp.tlv.Tolerated_Jitter.value  Value
        Unsigned 32-bit integer
        value for type=190
    wimaxasncp.tlv.Total_Number_of_Provisioned_Service_Flows  Total Number of Provisioned Service Flows
        Byte array
        type=295
    wimaxasncp.tlv.Total_Number_of_Provisioned_Service_Flows.value  Value
        Unsigned 8-bit integer
        value for type=295
    wimaxasncp.tlv.Total_Slots_DL  Total Slots DL
        Byte array
        type=191
    wimaxasncp.tlv.Total_Slots_DL.value  Value
        Unsigned 16-bit integer
        value for type=191
    wimaxasncp.tlv.Total_Slots_UL  Total Slots UL
        Byte array
        type=192
    wimaxasncp.tlv.Total_Slots_UL.value  Value
        Unsigned 16-bit integer
        value for type=192
    wimaxasncp.tlv.Traffic_Priority_QoS_Priority  Traffic Priority/QoS Priority
        Byte array
        type=193
    wimaxasncp.tlv.Traffic_Priority_QoS_Priority.value  Value
        Unsigned 8-bit integer
        value for type=193
    wimaxasncp.tlv.Tunnel_Endpoint  Tunnel Endpoint
        Byte array
        type=194
    wimaxasncp.tlv.Tunnel_Endpoint.ipv4_value  IPv4 Address
        IPv4 address
        value for type=194
    wimaxasncp.tlv.Tunnel_Endpoint.ipv6_value  IPv6 Address
        IPv6 address
        value for type=194
    wimaxasncp.tlv.UCD_Setting  UCD Setting
        Byte array
        type=195, TBD
    wimaxasncp.tlv.UCD_Setting.value  Value
        Byte array
        value for type=195
    wimaxasncp.tlv.UGS_Data_Delivery_Service  UGS Data Delivery Service
        Byte array
        type=196, Compound
    wimaxasncp.tlv.UL_PHY_Quality_Info  UL PHY Quality Info
        Byte array
        type=197
    wimaxasncp.tlv.UL_PHY_Quality_Info.value  Value
        Unsigned 32-bit integer
        value for type=197
    wimaxasncp.tlv.UL_PHY_Service_Level  UL PHY Service Level
        Byte array
        type=198
    wimaxasncp.tlv.UL_PHY_Service_Level.value  Value
        Unsigned 32-bit integer
        value for type=198
    wimaxasncp.tlv.Unknown  Unknown
        Byte array
        type=Unknown
    wimaxasncp.tlv.Unknown.value  Value
        Byte array
        value for unknown type
    wimaxasncp.tlv.Unsolicited_Grant_Interval  Unsolicited Grant Interval
        Byte array
        type=199
    wimaxasncp.tlv.Unsolicited_Grant_Interval.value  Value
        Unsigned 16-bit integer
        value for type=199
    wimaxasncp.tlv.Unsolicited_Polling_Interval  Unsolicited Polling Interval
        Byte array
        type=200
    wimaxasncp.tlv.Unsolicited_Polling_Interval.value  Value
        Unsigned 16-bit integer
        value for type=200
    wimaxasncp.tlv.Update_Reason  Update Reason
        Byte array
        type=279
    wimaxasncp.tlv.Update_Reason.value  Value
        Unsigned 8-bit integer
        value for type=279
    wimaxasncp.tlv.Uplink_Control_Channel_Support  Uplink Control Channel Support
        Byte array
        type=339
    wimaxasncp.tlv.Uplink_Control_Channel_Support.value  Value
        Unsigned 8-bit integer
        value for type=339
    wimaxasncp.tlv.Uplink_Octets_at_Tariff_Switch  Uplink Octets at Tariff Switch
        Byte array
        type=257
    wimaxasncp.tlv.Uplink_Octets_at_Tariff_Switch.value  Value
        Byte array
        value for type=257
    wimaxasncp.tlv.Uplink_Packets_at_Tariff_Switch  Uplink Packets at Tariff Switch
        Byte array
        type=259
    wimaxasncp.tlv.Uplink_Packets_at_Tariff_Switch.value  Value
        Byte array
        value for type=259
    wimaxasncp.tlv.VAAA_IP_Address  VAAA IP Address
        Byte array
        type=201
    wimaxasncp.tlv.VAAA_IP_Address.ipv4_value  IPv4 Address
        IPv4 address
        value for type=201
    wimaxasncp.tlv.VAAA_IP_Address.ipv6_value  IPv6 Address
        IPv6 address
        value for type=201
    wimaxasncp.tlv.VAAA_Realm  VAAA Realm
        Byte array
        type=202
    wimaxasncp.tlv.VAAA_Realm.value  Value
        String
        value for type=202
    wimaxasncp.tlv.Vendor_Specific  Vendor Specific
        Byte array
        type=65535
    wimaxasncp.tlv.Vendor_Specific.value  Value
        Byte array
        value for type=65535
    wimaxasncp.tlv.Vendor_Specific.value.vendor_id  Vendor ID
        Unsigned 24-bit integer
        value component for type=65535
    wimaxasncp.tlv.Vendor_Specific.value.vendor_rest_of_info  Rest of Info
        Byte array
        value component for type=65535
    wimaxasncp.tlv.VolumeUsed  VolumeUsed
        Byte array
        type=357
    wimaxasncp.tlv.VolumeUsed.value  Value
        Unsigned 32-bit integer
        value for type=357
    wimaxasncp.tlv.Volume_Quota  Volume Quota
        Byte array
        type=167
    wimaxasncp.tlv.Volume_Quota.value  Value
        Unsigned 32-bit integer
        value for type=167
    wimaxasncp.tlv.Volume_Threshold  Volume Threshold
        Byte array
        type=168
    wimaxasncp.tlv.Volume_Threshold.value  Value
        Unsigned 32-bit integer
        value for type=168
    wimaxasncp.tlv.length  Length
        Unsigned 16-bit integer
    wimaxasncp.tlv.type  Type
        Unsigned 16-bit integer
    wimaxasncp.tlv_value_bitflags16  Value
        Unsigned 16-bit integer
    wimaxasncp.tlv_value_bitflags32  Value
        Unsigned 32-bit integer
    wimaxasncp.tlv_value_bitflags8  Value
        Unsigned 8-bit integer
    wimaxasncp.tlv_value_bytes  Value
        Byte array
    wimaxasncp.tlv_value_protocol  Value
        Unsigned 16-bit integer
    wimaxasncp.tlv_value_vendor_id  Vendor ID
        Unsigned 24-bit integer
    wimaxasncp.transaction_id  Transaction ID
        Unsigned 16-bit integer
    wimaxasncp.version  Version
        Unsigned 8-bit integer

WiMax AAS-FEEDBACK/BEAM Messages (wmx.aas)

    wmx.aas_beam.aas_beam_index  AAS Beam Index
        Unsigned 8-bit integer
    wmx.aas_beam.beam_bit_mask  Beam Bit Mask
        Unsigned 8-bit integer
    wmx.aas_beam.cinr_mean_value  CINR Mean Value
        Unsigned 8-bit integer
    wmx.aas_beam.feedback_request_number  Feedback Request Number
        Unsigned 8-bit integer
    wmx.aas_beam.frame_number  Frame Number
        Unsigned 8-bit integer
    wmx.aas_beam.freq_value_im  Frequency Value (imaginary part)
        Unsigned 8-bit integer
    wmx.aas_beam.freq_value_re  Frequency Value (real part)
        Unsigned 8-bit integer
    wmx.aas_beam.measurement_report_type  Measurement Report Type
        Unsigned 8-bit integer
    wmx.aas_beam.reserved  Reserved
        Unsigned 8-bit integer
    wmx.aas_beam.resolution_parameter  Resolution Parameter
        Unsigned 8-bit integer
    wmx.aas_beam.rssi_mean_value  RSSI Mean Value
        Unsigned 8-bit integer
    wmx.aas_beam.unknown_type  Unknown TLV type
        Byte array
    wmx.aas_fbck.cinr_mean_value  CINR Mean Value
        Unsigned 8-bit integer
    wmx.aas_fbck.counter  Feedback Request Counter
        Unsigned 8-bit integer
    wmx.aas_fbck.frame_number  Frame Number
        Unsigned 8-bit integer
    wmx.aas_fbck.freq_value_im  Frequency Value (imaginary part)
        Unsigned 8-bit integer
    wmx.aas_fbck.freq_value_re  Frequency Value (real part)
        Unsigned 8-bit integer
    wmx.aas_fbck.number_of_frames  Number Of Frames
        Unsigned 8-bit integer
    wmx.aas_fbck.resolution  Frequency Measurement Resolution
        Unsigned 8-bit integer
    wmx.aas_fbck.rssi_mean_value  RSSI Mean Value
        Unsigned 8-bit integer
    wmx.aas_fbck.unknown_type  Unknown TLV type
        Byte array
    wmx.aas_fbck_req.data_type  Measurement Data Type
        Unsigned 8-bit integer
    wmx.aas_fbck_req.reserved  Reserved
        Unsigned 8-bit integer
    wmx.aas_fbck_rsp.counter  Feedback Request Counter
        Unsigned 8-bit integer
    wmx.aas_fbck_rsp.data_type  Measurement Data Type
        Unsigned 8-bit integer
    wmx.aas_fbck_rsp.reserved  Reserved
        Unsigned 8-bit integer
    wmx.aas_fbck_rsp.resolution  Frequency Measurement Resolution
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.aas_beam  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.aas_fbck  MAC Management Message Type
        Unsigned 8-bit integer

WiMax ARQ Feedback/Discard/Reset Messages (wmx.arq)

    wmx.ack_type.reserved  Reserved
        Unsigned 8-bit integer
    wmx.arq.ack_type  ACK Type
        Unsigned 8-bit integer
    wmx.arq.bsn  BSN
        Unsigned 16-bit integer
    wmx.arq.cid  Connection ID
        Unsigned 16-bit integer
        The ID of the connection being referenced
    wmx.arq.discard_bsn  BSN
        Unsigned 16-bit integer
    wmx.arq.discard_cid  Connection ID
        Unsigned 16-bit integer
    wmx.arq.discard_reserved  Reserved
        Unsigned 8-bit integer
    wmx.arq.last  LAST
        Boolean
    wmx.arq.num_maps  Number of ACK Maps
        Unsigned 8-bit integer
    wmx.arq.reserved  Reserved
        Unsigned 8-bit integer
    wmx.arq.reset_cid  Connection ID
        Unsigned 16-bit integer
    wmx.arq.reset_direction  Direction
        Unsigned 8-bit integer
    wmx.arq.reset_reserved  Reserved
        Unsigned 8-bit integer
    wmx.arq.reset_type  Type
        Unsigned 8-bit integer
    wmx.arq.selective_map  Selective ACK Map
        Unsigned 16-bit integer
    wmx.arq.seq1_len  Sequence 1 Length
        Unsigned 16-bit integer
    wmx.arq.seq2_len  Sequence 2 Length
        Unsigned 16-bit integer
    wmx.arq.seq3_len  Sequence 3 Length
        Unsigned 8-bit integer
    wmx.arq.seq_ack_map  Sequence ACK Map
        Unsigned 8-bit integer
    wmx.arq.seq_format  Sequence Format
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.arq  MAC Management Message Type
        Unsigned 8-bit integer

WiMax CLK-CMP Message (wmx.clk)

    wmx.clk_cmp.clock_count  Clock Count
        Unsigned 8-bit integer
    wmx.clk_cmp.clock_id  Clock ID
        Unsigned 8-bit integer
    wmx.clk_cmp.comparison_value  Comparison Value
        Signed 8-bit integer
    wmx.clk_cmp.invalid_tlv  Invalid TLV
        Byte array
    wmx.clk_cmp.seq_number  Sequence Number
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.clk_cmp  MAC Management Message Type
        Unsigned 8-bit integer

WiMax DCD/UCD Messages (wmx.cd)

    wimax.dcd.dl_burst_profile_multiple_fec_types  Downlink Burst Profile for Multiple FEC Types
        Unsigned 8-bit integer
    wmx.dcd.asr  ASR (Anchor Switch Report) Slot Length (M) and Switching Period (L)
        Unsigned 8-bit integer
    wmx.dcd.asr.l  ASR Switching Period (L)
        Unsigned 8-bit integer
    wmx.dcd.asr.m  ASR Slot Length (M)
        Unsigned 8-bit integer
    wmx.dcd.bs_eirp  BS EIRP
        Signed 16-bit integer
    wmx.dcd.bs_id  Base Station ID
        6-byte Hardware (MAC) Address
    wmx.dcd.bs_restart_count  BS Restart Count
        Unsigned 8-bit integer
    wmx.dcd.burst.diuc  DIUC
        Unsigned 8-bit integer
    wmx.dcd.burst.diuc_entry_threshold  DIUC Minimum Entry Threshold (in 0.25 dB units)
        Single-precision floating point
    wmx.dcd.burst.diuc_exit_threshold  DIUC Mandatory Exit Threshold (in 0.25 dB units)
        Single-precision floating point
    wmx.dcd.burst.fec  FEC Code Type
        Unsigned 8-bit integer
    wmx.dcd.burst.freq  Frequency
        Unsigned 8-bit integer
    wmx.dcd.burst.reserved  Reserved
        Unsigned 8-bit integer
    wmx.dcd.burst.tcs  TCS
        Unsigned 8-bit integer
    wmx.dcd.channel_nr  Channel Nr
        Unsigned 8-bit integer
    wmx.dcd.config_change_count  Configuration Change Count
        Unsigned 8-bit integer
    wmx.dcd.default_physical_cinr_meas_averaging_parameter  Default Averaging Parameter for Physical CINR Measurements (in multiples of 1/16)
        Unsigned 8-bit integer
    wmx.dcd.default_rssi_and_cinr_averaging_parameter  Default RSSI and CINR Averaging Parameter
        Unsigned 8-bit integer
    wmx.dcd.default_rssi_meas_averaging_parameter  Default Averaging Parameter for RSSI Measurements (in multiples of 1/16)
        Unsigned 8-bit integer
    wmx.dcd.dl_amc_allocated_phy_bands_bitmap  DL AMC Allocated Physical Bands Bitmap
        Byte array
    wmx.dcd.dl_burst_profile_diuc  DIUC
        Unsigned 8-bit integer
    wmx.dcd.dl_burst_profile_rsv  Reserved
        Unsigned 8-bit integer
    wmx.dcd.dl_channel_id  Reserved
        Unsigned 8-bit integer
    wmx.dcd.dl_region_definition  DL Region Definition
        Byte array
    wmx.dcd.dl_region_definition.num_region  Number of Regions
        Unsigned 8-bit integer
    wmx.dcd.dl_region_definition.num_subchannels  Number of Subchannels
        Unsigned 8-bit integer
    wmx.dcd.dl_region_definition.num_symbols  Number of OFDMA Symbols
        Unsigned 8-bit integer
    wmx.dcd.dl_region_definition.reserved  Reserved
        Unsigned 8-bit integer
    wmx.dcd.dl_region_definition.subchannel_offset  Subchannel Offset
        Unsigned 8-bit integer
    wmx.dcd.dl_region_definition.symbol_offset  OFDMA Symbol Offset
        Unsigned 8-bit integer
    wmx.dcd.eirxp  EIRXP (IR, max)
        Signed 16-bit integer
    wmx.dcd.frame_duration  Frame Duration
        Unsigned 32-bit integer
    wmx.dcd.frame_duration_code  Frame Duration Code
        Unsigned 8-bit integer
    wmx.dcd.frame_nr  Frame Number
        Unsigned 24-bit integer
    wmx.dcd.frequency  Downlink Center Frequency
        Unsigned 32-bit integer
    wmx.dcd.h_add_threshold  H_add Threshold
        Unsigned 8-bit integer
    wmx.dcd.h_arq_ack_delay_ul_burst  H-ARQ ACK Delay for UL Burst
        Unsigned 8-bit integer
    wmx.dcd.h_delete_threshold  H_delete Threshold
        Unsigned 8-bit integer
    wmx.dcd.ho_type_support  HO Type Support
        Unsigned 8-bit integer
    wmx.dcd.ho_type_support.fbss_ho  FBSS HO
        Unsigned 8-bit integer
    wmx.dcd.ho_type_support.ho  HO
        Unsigned 8-bit integer
    wmx.dcd.ho_type_support.mdho  MDHO
        Unsigned 8-bit integer
    wmx.dcd.ho_type_support.reserved  Reserved
        Unsigned 8-bit integer
    wmx.dcd.hysteresis_margin  Hysteresis Margin
        Unsigned 8-bit integer
    wmx.dcd.invalid_tlv  Invalid TLV
        Byte array
    wmx.dcd.mac_version  MAC Version
        Unsigned 8-bit integer
    wmx.dcd.maximum_retransmission  Maximum Retransmission
        Unsigned 8-bit integer
    wmx.dcd.noise_interference  Noise and Interference
        Unsigned 8-bit integer
    wmx.dcd.paging_group_id  Paging Group ID
        Unsigned 16-bit integer
    wmx.dcd.paging_interval_length  Paging Interval Length
        Unsigned 8-bit integer
    wmx.dcd.permutation_type_broadcast_region_in_harq_zone  Permutation Type for Broadcast Region in HARQ Zone
        Unsigned 8-bit integer
    wmx.dcd.phy_type  PHY Type
        Unsigned 8-bit integer
    wmx.dcd.power_adjustment  Power Adjustment Rule
        Unsigned 8-bit integer
    wmx.dcd.rtg  RTG
        Unsigned 8-bit integer
    wmx.dcd.switch_frame  Channel Switch Frame Number
        Unsigned 24-bit integer
    wmx.dcd.time_trigger_duration  Time to Trigger Duration
        Unsigned 8-bit integer
    wmx.dcd.trigger_averaging_duration  Trigger Averaging Duration
        Unsigned 8-bit integer
    wmx.dcd.trigger_value  Trigger Value
        Unsigned 8-bit integer
    wmx.dcd.ttg  TTG
        Unsigned 16-bit integer
    wmx.dcd.tusc1  TUSC1 permutation active subchannels bitmap
        Unsigned 16-bit integer
    wmx.dcd.tusc2  TUSC2 permutation active subchannels bitmap
        Unsigned 16-bit integer
    wmx.dcd.type_function_action  Type/Function/Action
        Unsigned 8-bit integer
    wmx.dcd.type_function_action.action  Action
        Unsigned 8-bit integer
    wmx.dcd.type_function_action.function  Function
        Unsigned 8-bit integer
    wmx.dcd.type_function_action.type  Type
        Unsigned 8-bit integer
    wmx.dcd.unknown_tlv_value  Unknown DCD Type
        Byte array
    wmx.macmgtmsgtype.dcd  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.ucd  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.ucd.allow_aas_beam_select_message  Allow AAS Beam Select Message
        Signed 8-bit integer
    wmx.ucd.band_amc.allocation_threshold  Band AMC Allocation Threshold
        Unsigned 8-bit integer
    wmx.ucd.band_amc.allocation_timer  Band AMC Allocation Timer
        Unsigned 8-bit integer
    wmx.ucd.band_amc.release_threshold  Band AMC Release Threshold
        Unsigned 8-bit integer
    wmx.ucd.band_amc.release_timer  Band AMC Release Timer
        Unsigned 8-bit integer
    wmx.ucd.band_amc.retry_timer  Band AMC Retry Timer
        Unsigned 8-bit integer
    wmx.ucd.band_status.report_max_period  Band Status Report MAC Period
        Unsigned 8-bit integer
    wmx.ucd.bandwidth_request  Bandwidth Request Codes
        Unsigned 8-bit integer
    wmx.ucd.burst.fec  FEC Code Type
        Unsigned 8-bit integer
    wmx.ucd.burst.ranging_data_ratio  Ranging Data Ratio
        Unsigned 8-bit integer
    wmx.ucd.burst.reserved  Reserved
        Unsigned 8-bit integer
    wmx.ucd.burst.uiuc  UIUC
        Unsigned 8-bit integer
    wmx.ucd.bw_req_size  Bandwidth Request Opportunity Size
        Unsigned 16-bit integer
    wmx.ucd.cqich_band_amc_transition_delay  CQICH Band AMC-Transition Delay
        Unsigned 8-bit integer
    wmx.ucd.frequency  Frequency
        Unsigned 32-bit integer
    wmx.ucd.handover_ranging_codes  Handover Ranging Codes
        Signed 8-bit integer
    wmx.ucd.harq_ack_delay_dl_burst  HARQ ACK Delay for DL Burst
        Unsigned 8-bit integer
    wmx.ucd.initial_ranging_codes  Initial Ranging Codes
        Unsigned 8-bit integer
    wmx.ucd.initial_ranging_interval  Number of Frames Between Initial Ranging Interval Allocation
        Signed 8-bit integer
    wmx.ucd.invalid_tlv  Invalid TLV
        Byte array
    wmx.ucd.lower_bound_aas_preamble  Lower Bound AAS Preamble (in units of 0.25 dB)
        Signed 8-bit integer
    wmx.ucd.max_level_power_offset_adjustment  Maximum Level of Power Offset Adjustment (in units of 0.1 dB)
        Signed 8-bit integer
    wmx.ucd.max_number_of_retransmission_in_ul_harq  Maximum Number of Retransmission in UL-HARQ
        Unsigned 8-bit integer
    wmx.ucd.min_level_power_offset_adjustment  Minimum Level of Power Offset Adjustment (in units of 0.1 dB)
        Signed 8-bit integer
    wmx.ucd.ms_specific_down_power_offset_adjustment_step  MS-specific Down Power Offset Adjustment Step (in units of 0.01 dB)
        Unsigned 8-bit integer
    wmx.ucd.ms_specific_up_power_offset_adjustment_step  MS-specific Up Power Offset Adjustment Step (in units of 0.01 dB)
        Unsigned 8-bit integer
    wmx.ucd.normalized_cn.channel_sounding  Normalized C/N for Channel Sounding
        Unsigned 8-bit integer
    wmx.ucd.normalized_cn.override_2  Normalized C/N Override 2
        String
    wmx.ucd.normalized_cn.override_first_line  Normalized C/N Value
        Unsigned 8-bit integer
    wmx.ucd.normalized_cn.override_list  Normalized C/N Value List
        String
    wmx.ucd.optional_permutation_ul_allocated_subchannels_bitmap  Optional permutation UL allocated subchannels bitmap
        Byte array
    wmx.ucd.periodic_ranging_codes  Periodic Ranging Codes
        Unsigned 8-bit integer
    wmx.ucd.permutation_base  Permutation Base
        Unsigned 8-bit integer
    wmx.ucd.ranging_req_size  Ranging Request Opportunity Size
        Unsigned 16-bit integer
    wmx.ucd.res_timeout  Contention-based Reservation Timeout
        Unsigned 8-bit integer
    wmx.ucd.safety_channel_release_timer  Safety Channel Release Timer
        Unsigned 8-bit integer
    wmx.ucd.size_of_cqich_id_field  Size of CQICH_ID Field
        Unsigned 8-bit integer
    wmx.ucd.start_of_ranging_codes_group  Start of Ranging Codes Group
        Unsigned 8-bit integer
    wmx.ucd.subchan.bitmap  UL Allocated Subchannels Bitmap
        Byte array
    wmx.ucd.subchan.codes  Periodic Ranging Codes
        Unsigned 8-bit integer
    wmx.ucd.subchan.num_chan  Number of Subchannels
        Unsigned 8-bit integer
    wmx.ucd.subchan.num_sym  Number of OFDMA Symbols
        Unsigned 8-bit integer
    wmx.ucd.tx_power_report  Tx Power Report
        Unsigned 24-bit integer
    wmx.ucd.tx_power_report.a_p_avg  A p_avg (in multiples of 1/16)
        Unsigned 8-bit integer
    wmx.ucd.tx_power_report.a_p_avg_icqch  A p_avg (in multiples of 1/16) when ICQCH is allocated
        Unsigned 8-bit integer
    wmx.ucd.tx_power_report.interval  Interval (expressed as power of 2)
        Unsigned 8-bit integer
    wmx.ucd.tx_power_report.interval_icqch  Interval When ICQCH is Allocated (expressed as power of 2)
        Unsigned 8-bit integer
    wmx.ucd.tx_power_report.threshold  Threshold
        Unsigned 8-bit integer
    wmx.ucd.tx_power_report.threshold_icqch  Threshold When ICQCH is Allocated to SS (in dB)
        Unsigned 8-bit integer
    wmx.ucd.unknown_tlv_type  Unknown UCD Type
        Byte array
    wmx.ucd.uplink_burst_profile.fast_feedback_region  Fast Feedback Region
        Byte array
    wmx.ucd.uplink_burst_profile.harq_ack_region  HARQ ACK Region
        Byte array
    wmx.ucd.uplink_burst_profile.multiple_fec_types  Uplink Burst Profile for Multiple FEC Types
        Unsigned 8-bit integer
    wmx.ucd.uplink_burst_profile.ranging_region  Ranging Region
        Byte array
    wmx.ucd.uplink_burst_profile.relative_power_offset_ul_burst_mac_mgmt_msg  Relative Power Offset UL Burst Containing MAC Mgmt Msg
        Unsigned 8-bit integer
    wmx.ucd.uplink_burst_profile.relative_power_offset_ul_harq_burst  Relative Power Offset UL HARQ Burst
        Unsigned 8-bit integer
    wmx.ucd.uplink_burst_profile.sounding_region  Sounding Region
        Byte array
    wmx.ucd.uplink_burst_profile.ul_initial_transmit_timing  UL Initial Transmit Timing
        Unsigned 8-bit integer
    wmx.ucd.uplink_burst_profile.ul_pusc_subchannel_rotation  Uplink PUSC Subchannel Rotation
        Unsigned 8-bit integer
    wmx.ucd.upper_bound_aas_preamble  Upper Bound AAS Preamble (in units of 0.25 dB)
        Signed 8-bit integer
    wmx.ucd.use_cqich_indication_flag  Use CQICH Indication Flag
        Unsigned 8-bit integer

WiMax DLMAP/ULMAP Messages (wmx.map)

    wmx.compress_dlmap_crc  CRC
        Unsigned 32-bit integer
    wmx.dlmap.bsid  Base Station ID
        Byte array
    wmx.dlmap.dcd  DCD Count
        Unsigned 8-bit integer
    wmx.dlmap.fch_expected  FCH Expected
        Unsigned 16-bit integer
    wmx.dlmap.ie  DL-MAP IE
        Unsigned 8-bit integer
    wmx.dlmap.ie.boosting  Boosting
        Unsigned 32-bit integer
    wmx.dlmap.ie.cid  CID
        Unsigned 16-bit integer
    wmx.dlmap.ie.diuc  DIUC
        Unsigned 8-bit integer
    wmx.dlmap.ie.ncid  N_CID
        Unsigned 8-bit integer
    wmx.dlmap.ie.numsub  Number of Subchannels
        Unsigned 32-bit integer
    wmx.dlmap.ie.numsym  Number of OFDMA Symbols
        Unsigned 32-bit integer
    wmx.dlmap.ie.offsub  Subchannel Offset
        Unsigned 32-bit integer
    wmx.dlmap.ie.offsym  OFDMA Symbol Offset
        Unsigned 32-bit integer
    wmx.dlmap.ie.rep  Repetition Coding Indication
        Unsigned 32-bit integer
    wmx.dlmap.ofdma_sym  Num OFDMA Symbols
        Unsigned 8-bit integer
    wmx.dlmap.phy_fdur  Frame Duration Code
        Unsigned 8-bit integer
    wmx.dlmap.phy_fnum  Frame Number
        Unsigned 24-bit integer
    wmx.dlmap.reduced_aas_private.cmi  Compressed map indicator
        Unsigned 8-bit integer
    wmx.dlmap.reduced_aas_private.mult  Multiple IE
        Unsigned 8-bit integer
    wmx.dlmap.reduced_aas_private.rsv  Reserved
        Unsigned 8-bit integer
    wmx.dlmap.reduced_aas_private.type  Compressed Map Type
        Unsigned 8-bit integer
    wmx.dlmap.reduced_aas_private.ulmap  UL-MAP appended
        Unsigned 8-bit integer
    wmx.dlmapc.compr  Compressed map indicator
        Unsigned 16-bit integer
    wmx.dlmapc.count  DL IE Count
        Unsigned 8-bit integer
    wmx.dlmapc.len  Map message length
        Unsigned 16-bit integer
    wmx.dlmapc.opid  Operator ID
        Unsigned 8-bit integer
    wmx.dlmapc.rsv  Reserved
        Unsigned 16-bit integer
    wmx.dlmapc.secid  Sector ID
        Unsigned 8-bit integer
    wmx.dlmapc.sync  PHY Synchronization Field
        Unsigned 32-bit integer
    wmx.dlmapc.ulmap  UL-MAP appended
        Unsigned 16-bit integer
    wmx.dlmapc.xie_diuc  Extended DIUC
        Unsigned 8-bit integer
    wmx.dlmapc.xie_len  Length
        Unsigned 8-bit integer
    wmx.dlul.cmi  SUB-DL-UL-MAP map indicator
        Unsigned 16-bit integer
    wmx.dlul.dl  DL HARQ ACK offset
        Unsigned 8-bit integer
    wmx.dlul.dlie  DL IE Count
        Unsigned 8-bit integer
    wmx.dlul.haoi  HARQ ACK offset indicator
        Unsigned 16-bit integer
    wmx.dlul.len  Map message length - The length is limited to 735 bytes at most
        Unsigned 16-bit integer
    wmx.dlul.rcid  RCID_Type
        Unsigned 16-bit integer
    wmx.dlul.rsv  Reserved
        Unsigned 8-bit integer
    wmx.dlul.subofs  Subchannel offset
        Unsigned 8-bit integer
    wmx.dlul.symofs  OFDMA Symbol offset of subsequent sub-bursts in this Sub-DL-UL-MAP message with reference to the start of UL sub-frame.
        Unsigned 8-bit integer
    wmx.dlul.ul  UL HARQ ACK offset
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.dlmap  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.ulmap  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.ulmap.fch.expected  FCH Expected
        Unsigned 16-bit integer
    wmx.ulmap.ie  UL-MAP IE
        Unsigned 8-bit integer
    wmx.ulmap.ie.cid  CID
        Unsigned 32-bit integer
    wmx.ulmap.ie.uiuc  UIUC
        Unsigned 8-bit integer
    wmx.ulmap.ofdma.sym  Num OFDMA Symbols
        Unsigned 8-bit integer
    wmx.ulmap.rsv  Reserved
        Unsigned 8-bit integer
    wmx.ulmap.start  Uplink Channel ID
        Unsigned 32-bit integer
    wmx.ulmap.ucd  UCD Count
        Unsigned 8-bit integer
    wmx.ulmap.uiuc0.numsub  No. subchannels
        Unsigned 32-bit integer
    wmx.ulmap.uiuc0.numsym  No. OFDMA symbols
        Unsigned 32-bit integer
    wmx.ulmap.uiuc0.rsv  Reserved
        Unsigned 32-bit integer
    wmx.ulmap.uiuc0.subofs  Subchannel offset
        Unsigned 32-bit integer
    wmx.ulmap.uiuc0.symofs  OFDMA symbol offset
        Unsigned 32-bit integer
    wmx.ulmap.uiuc11.data  Data
        Byte array
    wmx.ulmap.uiuc11.ext  Extended 2 UIUC
        Unsigned 8-bit integer
    wmx.ulmap.uiuc11.len  Length
        Unsigned 8-bit integer
    wmx.ulmap.uiuc12.dri  Dedicated ranging indicator
        Unsigned 32-bit integer
    wmx.ulmap.uiuc12.dur  Duration
        Unsigned 16-bit integer
    wmx.ulmap.uiuc12.method  Ranging Method
        Unsigned 32-bit integer
    wmx.ulmap.uiuc12.numsub  No. Subchannels
        Unsigned 32-bit integer
    wmx.ulmap.uiuc12.numsym  No. OFDMA Symbols
        Unsigned 32-bit integer
    wmx.ulmap.uiuc12.rep  Repetition Coding indication
        Unsigned 16-bit integer
    wmx.ulmap.uiuc12.subofs  Subchannel Offset
        Unsigned 32-bit integer
    wmx.ulmap.uiuc12.symofs  OFDMA Symbol Offset
        Unsigned 32-bit integer
    wmx.ulmap.uiuc13.numsub  No. Subchannels/SZ Shift Value
        Unsigned 32-bit integer
    wmx.ulmap.uiuc13.numsym  No. OFDMA symbols
        Unsigned 32-bit integer
    wmx.ulmap.uiuc13.papr  PAPR Reduction/Safety Zone
        Unsigned 32-bit integer
    wmx.ulmap.uiuc13.rsv  Reserved
        Unsigned 32-bit integer
    wmx.ulmap.uiuc13.subofs  Subchannel offset
        Unsigned 32-bit integer
    wmx.ulmap.uiuc13.symofs  OFDMA symbol offset
        Unsigned 32-bit integer
    wmx.ulmap.uiuc13.zone  Sounding Zone
        Unsigned 32-bit integer
    wmx.ulmap.uiuc14.bwr  BW request mandatory
        Unsigned 8-bit integer
    wmx.ulmap.uiuc14.code  Ranging code
        Unsigned 8-bit integer
    wmx.ulmap.uiuc14.dur  Duration
        Unsigned 16-bit integer
    wmx.ulmap.uiuc14.idx  Frame Number Index
        Unsigned 16-bit integer
    wmx.ulmap.uiuc14.rep  Repetition Coding Indication
        Unsigned 16-bit integer
    wmx.ulmap.uiuc14.sub  Ranging subchannel
        Unsigned 8-bit integer
    wmx.ulmap.uiuc14.sym  Ranging symbol
        Unsigned 8-bit integer
    wmx.ulmap.uiuc14.uiuc  UIUC
        Unsigned 16-bit integer
    wmx.ulmap.uiuc15.data  Data
        Byte array
    wmx.ulmap.uiuc15.ext  Extended UIUC
        Unsigned 8-bit integer
    wmx.ulmap.uiuc15.len  Length
        Unsigned 8-bit integer

WiMax DREG-REQ/CMD Messages (wmx.dreg)

    wmx.ack_type_reserved  Reserved
        Unsigned 8-bit integer
    wmx.dreg.consider_paging_preference  Consider Paging Preference of each Service Flow in resource retention
        Unsigned 8-bit integer
    wmx.dreg.invalid_tlv  Invalid TLV
        Byte array
    wmx.dreg.mac_hash_skip_threshold  MAC Hash Skip Threshold
        Unsigned 16-bit integer
    wmx.dreg.paging_controller_id  Paging Controller ID
        6-byte Hardware (MAC) Address
    wmx.dreg.paging_cycle  PAGING CYCLE
        Unsigned 16-bit integer
    wmx.dreg.paging_cycle_request  Paging Cycle Request
        Unsigned 16-bit integer
    wmx.dreg.paging_group_id  Paging-group-ID
        Unsigned 16-bit integer
    wmx.dreg.paging_offset  PAGING OFFSET
        Unsigned 8-bit integer
    wmx.dreg.req_duration  REQ-duration (Waiting value for the DREG-REQ message re-transmission in frames)
        Unsigned 8-bit integer
    wmx.dreg.retain_ms_full_service  Retain MS service and operation information associated with Full service
        Unsigned 8-bit integer
    wmx.dreg.retain_ms_service_network_address  Retain MS service and operational information associated with Network Address
        Unsigned 8-bit integer
    wmx.dreg.retain_ms_service_pkm  Retain MS service and operational information associated with PKM-REQ/RSP
        Unsigned 8-bit integer
    wmx.dreg.retain_ms_service_reg  Retain MS service and operational information associated with REG-REQ/RSP
        Unsigned 8-bit integer
    wmx.dreg.retain_ms_service_sbc  Retain MS service and operational information associated with SBC-REQ/RSP
        Unsigned 8-bit integer
    wmx.dreg.retain_ms_service_tftp  Retain MS service and operational information associated with TFTP messages
        Unsigned 8-bit integer
    wmx.dreg.retain_ms_service_tod  Retain MS service and operational information associated with Time of Day
        Unsigned 8-bit integer
    wmx.dreg.unknown_tlv_value  Value
        Byte array
    wmx.dreg_cmd.action  DREG-CMD Action code
        Unsigned 8-bit integer
    wmx.dreg_cmd.action_reserved  Reserved
        Unsigned 8-bit integer
    wmx.dreg_req.action  DREG-REQ Action code
        Unsigned 8-bit integer
    wmx.dreg_req.action_reserved  Reserved
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.dreg_cmd  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.dreg_req  MAC Management Message Type
        Unsigned 8-bit integer

WiMax DSA/C/D Messages (wmx.ds)

    wmx.dsa.confirmation_code  Confirmation code
        Unsigned 8-bit integer
    wmx.dsa.transaction_id  Transaction ID
        Unsigned 16-bit integer
    wmx.dsc.confirmation_code  Confirmation code
        Unsigned 8-bit integer
    wmx.dsc.transaction_id  Transaction ID
        Unsigned 16-bit integer
    wmx.dsd.confirmation_code  Confirmation code
        Unsigned 8-bit integer
    wmx.dsd.service_flow_id  Service Flow ID
        Unsigned 32-bit integer
    wmx.dsd.transaction_id  Transaction ID
        Unsigned 16-bit integer
    wmx.macmgtmsgtype.dsa_ack  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.dsa_req  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.dsa_rsp  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.dsc_ack  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.dsc_req  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.dsc_rsp  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.dsd_req  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.dsd_rsp  MAC Management Message Type
        Byte array

WiMax DSX-RVD Message (wmx.dsx)

    wmx.dsx_rvd.confirmation_code  Confirmation code
        Unsigned 8-bit integer
    wmx.dsx_rvd.transaction_id  Transaction ID
        Unsigned 16-bit integer
    wmx.macmgtmsgtype.dsx_rvd  MAC Management Message Type
        Unsigned 8-bit integer

WiMax FPC Message (wmx.fpc)

    wmx.fpc.basic_cid  Basic CID
        Unsigned 16-bit integer
    wmx.fpc.invalid_tlv  Invalid TLV
        Byte array
    wmx.fpc.number_stations  Number of stations
        Unsigned 8-bit integer
    wmx.fpc.power_adjust  Power Adjust
        Single-precision floating point
        Signed change in power level (incr of 0.25dB) that the SS shall apply to its current power setting
    wmx.fpc.power_measurement_frame  Power measurement frame
        Signed 8-bit integer
        The 8 LSB of the frame number in which the BS measured the power corrections referred to in the message
    wmx.macmgtmsgtype.fpc  MAC Management Message Type
        Unsigned 8-bit integer

WiMax Generic/Type1/Type2 MAC Header Messages (wmx.hdr)

    wimax.genericGrantSubhd.Default  Scheduling Service Type (Default)
        Unsigned 16-bit integer
    wimax.genericGrantSubhd.ExtendedRTPS  Scheduling Service Type (Extended rtPS)
        Unsigned 16-bit integer
    wmx.genericArq.FbIeAckType  ACK Type
        Unsigned 16-bit integer
    wmx.genericArq.FbIeBsn  BSN
        Unsigned 16-bit integer
    wmx.genericArq.FbIeCid  CID
        Unsigned 16-bit integer
    wmx.genericArq.FbIeLast  Last IE
        Unsigned 16-bit integer
    wmx.genericArq.FbIeMaps  Number of ACK Maps
        Unsigned 16-bit integer
    wmx.genericArq.FbIeRsv  Reserved
        Unsigned 16-bit integer
    wmx.genericArq.FbIeRsvd  Reserved
        Unsigned 16-bit integer
    wmx.genericArq.FbIeSelAckMap  Selective ACK Map
        Unsigned 16-bit integer
    wmx.genericArq.FbIeSeq1Len  Sequence 1 Length
        Unsigned 16-bit integer
    wmx.genericArq.FbIeSeq2Len  Sequence 2 Length
        Unsigned 16-bit integer
    wmx.genericArq.FbIeSeq3Len  Sequence 3 Length
        Unsigned 16-bit integer
    wmx.genericArq.FbIeSeqAckMap  Sequence ACK Map
        Unsigned 16-bit integer
    wmx.genericArq.FbIeSeqAckMap2  Sequence ACK Map
        Unsigned 16-bit integer
    wmx.genericArq.FbIeSeqFmt  Sequence Format
        Unsigned 16-bit integer
    wmx.genericCi  CRC Indicator
        Unsigned 24-bit integer
    wmx.genericCid  Connection ID
        Unsigned 16-bit integer
    wmx.genericCrc  CRC
        Unsigned 32-bit integer
    wmx.genericEc  MAC Encryption Control
        Unsigned 24-bit integer
    wmx.genericEks  Encryption Key Sequence
        Unsigned 24-bit integer
    wmx.genericEsf  Extended Sub-header Field
        Unsigned 24-bit integer
    wmx.genericExtSubhd.Dl  DL Extended Subheader Type
        Unsigned 8-bit integer
    wmx.genericExtSubhd.DlSleepCtrlFSWB  Final Sleep Window Base
        Unsigned 24-bit integer
    wmx.genericExtSubhd.DlSleepCtrlFSWE  Final Sleep Window Exponent
        Unsigned 24-bit integer
    wmx.genericExtSubhd.DlSleepCtrlOP  Operation
        Unsigned 24-bit integer
    wmx.genericExtSubhd.DlSleepCtrlPSCID  Power Saving Class ID
        Unsigned 24-bit integer
    wmx.genericExtSubhd.DlSleepCtrlRsv  Reserved
        Unsigned 24-bit integer
    wmx.genericExtSubhd.FbReqFbType  Feedback Type
        Unsigned 24-bit integer
    wmx.genericExtSubhd.FbReqFrameOffset  Frame Offset
        Unsigned 24-bit integer
    wmx.genericExtSubhd.FbReqOfdmaSymbolOffset  OFDMA Symbol Offset
        Unsigned 24-bit integer
    wmx.genericExtSubhd.FbReqSlots  Number of Slots
        Unsigned 24-bit integer
    wmx.genericExtSubhd.FbReqSubchannelOffset  Subchannel Offset
        Unsigned 24-bit integer
    wmx.genericExtSubhd.FbReqUIUC  UIUC
        Unsigned 24-bit integer
    wmx.genericExtSubhd.MimoFbContent  Feedback Content
        Unsigned 8-bit integer
    wmx.genericExtSubhd.MimoFbType  Feedback Type
        Unsigned 8-bit integer
    wmx.genericExtSubhd.MiniFbContent  Feedback Content
        Unsigned 16-bit integer
    wmx.genericExtSubhd.MiniFbType  Feedback Type
        Unsigned 16-bit integer
    wmx.genericExtSubhd.PduSnLong  PDU Sequence Number
        Unsigned 16-bit integer
    wmx.genericExtSubhd.PduSnShort  PDU Sequence Number
        Unsigned 8-bit integer
    wmx.genericExtSubhd.Rsv  Reserved
        Unsigned 8-bit integer
    wmx.genericExtSubhd.SduSn  SDU Sequence Number
        Unsigned 8-bit integer
    wmx.genericExtSubhd.SnReqRepInd1  First SN Report Indication
        Unsigned 8-bit integer
    wmx.genericExtSubhd.SnReqRepInd2  Second SN Report Indication
        Unsigned 8-bit integer
    wmx.genericExtSubhd.SnReqRsv  Reserved
        Unsigned 8-bit integer
    wmx.genericExtSubhd.Ul  UL Extended Subheader Type
        Unsigned 8-bit integer
    wmx.genericExtSubhd.UlTxPwr  UL TX Power
        Unsigned 8-bit integer
    wmx.genericFastFbSubhd.AllocOffset  Allocation Offset
        Unsigned 8-bit integer
    wmx.genericFastFbSubhd.FbType  Feedback Type
        Unsigned 8-bit integer
    wmx.genericFragSubhd.Bsn  Block Sequence Number (BSN)
        Unsigned 16-bit integer
    wmx.genericFragSubhd.Fc  Fragment Type
        Unsigned 8-bit integer
    wmx.genericFragSubhd.FcExt  Fragment Type
        Unsigned 16-bit integer
    wmx.genericFragSubhd.Fsn  Fragment Sequence Number (FSN)
        Unsigned 8-bit integer
    wmx.genericFragSubhd.FsnExt  Fragment Sequence Number (FSN)
        Unsigned 16-bit integer
    wmx.genericFragSubhd.Rsv  Reserved
        Unsigned 8-bit integer
    wmx.genericFragSubhd.RsvExt  Reserved
        Unsigned 16-bit integer
    wmx.genericGrantSubhd.ExtFl  Frame Latency
        Unsigned 16-bit integer
    wmx.genericGrantSubhd.ExtFli  Frame Latency Indication
        Unsigned 16-bit integer
    wmx.genericGrantSubhd.ExtPbr  Extended PiggyBack Request
        Unsigned 16-bit integer
    wmx.genericGrantSubhd.Fl  Frame Latency
        Unsigned 16-bit integer
    wmx.genericGrantSubhd.Fli  Frame Latency Indication
        Unsigned 16-bit integer
    wmx.genericGrantSubhd.Pbr  PiggyBack Request
        Unsigned 16-bit integer
    wmx.genericGrantSubhd.Pm  Poll-Me
        Unsigned 16-bit integer
    wmx.genericGrantSubhd.Rsv  Reserved
        Unsigned 16-bit integer
    wmx.genericGrantSubhd.Si  Slip Indicator
        Unsigned 16-bit integer
    wmx.genericGrantSubhd.UGS  Scheduling Service Type (UGS)
        Unsigned 16-bit integer
    wmx.genericHcs  Header Check Sequence
        Unsigned 8-bit integer
    wmx.genericHt  MAC Header Type
        Unsigned 24-bit integer
    wmx.genericLen  Length
        Unsigned 24-bit integer
    wmx.genericMeshSubhd  Xmt Node Id
        Unsigned 16-bit integer
    wmx.genericPackSubhd.Bsn  First Block Sequence Number
        Unsigned 24-bit integer
    wmx.genericPackSubhd.Fc  Fragment Type
        Unsigned 16-bit integer
    wmx.genericPackSubhd.FcExt  Fragment Type
        Unsigned 24-bit integer
    wmx.genericPackSubhd.Fsn  Fragment Number
        Unsigned 16-bit integer
    wmx.genericPackSubhd.FsnExt  Fragment Number
        Unsigned 24-bit integer
    wmx.genericPackSubhd.Len  Length
        Unsigned 16-bit integer
    wmx.genericPackSubhd.LenExt  Length
        Unsigned 24-bit integer
    wmx.genericRsv  Reserved
        Unsigned 24-bit integer
    wmx.genericType0  MAC Sub-type Bit 0
        Unsigned 24-bit integer
    wmx.genericType1  MAC Sub-type Bit 1
        Unsigned 24-bit integer
    wmx.genericType2  MAC Sub-type Bit 2
        Unsigned 24-bit integer
    wmx.genericType3  MAC Sub-type Bit 3
        Unsigned 24-bit integer
    wmx.genericType4  MAC Sub-type Bit 4
        Unsigned 24-bit integer
    wmx.genericType5  MAC Sub-type Bit 5
        Unsigned 24-bit integer
    wmx.genericValueBytes  Values
        Byte array
    wmx.type1Br  Bandwidth Request
        Unsigned 24-bit integer
    wmx.type1Br3  Bandwidth Request
        Unsigned 24-bit integer
    wmx.type1Cid  Connection ID
        Unsigned 16-bit integer
    wmx.type1Cinr  CINR Value
        Unsigned 24-bit integer
    wmx.type1Dci  DCD Change Indication
        Unsigned 24-bit integer
    wmx.type1Diuc  Preferred DIUC Index
        Unsigned 24-bit integer
    wmx.type1Ec  MAC Encryption Control
        Unsigned 24-bit integer
    wmx.type1FbType  Feedback Type
        Unsigned 24-bit integer
    wmx.type1Fbssi  FBSS Indicator
        Unsigned 24-bit integer
    wmx.type1Hcs  Header Check Sequence
        Unsigned 8-bit integer
    wmx.type1HdRm  Headroom to UL Max Power Level
        Unsigned 24-bit integer
    wmx.type1Ht  MAC Header Type
        Unsigned 24-bit integer
    wmx.type1Last  Last ARQ BSN or SDU SN
        Unsigned 24-bit integer
    wmx.type1Op  Operation
        Unsigned 24-bit integer
    wmx.type1Period  Preferred CQICH Allocation Period
        Unsigned 24-bit integer
    wmx.type1PsCid  Power Saving Class ID
        Unsigned 24-bit integer
    wmx.type1Rsv2  Reserved
        Unsigned 24-bit integer
    wmx.type1Rsv5  Reserved
        Unsigned 24-bit integer
    wmx.type1Rsv7  Reserved
        Unsigned 24-bit integer
    wmx.type1SduSn1  ARQ BSN or MAC SDU SN (1)
        Unsigned 24-bit integer
    wmx.type1SduSn2  ARQ BSN or MAC SDU SN (2)
        Unsigned 24-bit integer
    wmx.type1SduSn3  ARQ BSN or MAC SDU SN (3)
        Unsigned 24-bit integer
    wmx.type1Type  MAC Sub-Type
        Unsigned 24-bit integer
    wmx.type1UlTxPwr  UL TX Power
        Unsigned 24-bit integer
    wmx.type1UlTxPwr3  UL TX Power
        Unsigned 24-bit integer
    wmx.type1ValueBytes  Values
        Byte array
    wmx.type2AmcBitmap  AMC Band Indication Bitmap
        Unsigned 32-bit integer
    wmx.type2AmcCqi1  CQI 1
        Unsigned 32-bit integer
    wmx.type2AmcCqi2  CQI 2
        Unsigned 32-bit integer
    wmx.type2AmcCqi3  CQI 3
        Unsigned 32-bit integer
    wmx.type2AmcCqi4  CQI 4
        Unsigned 32-bit integer
    wmx.type2Cid  Connection ID
        Unsigned 16-bit integer
    wmx.type2Cii  CID Inclusion Indication
        Unsigned 8-bit integer
    wmx.type2CinrDevi  CINR Standard Deviation
        Unsigned 8-bit integer
    wmx.type2CinrMean  CINR Mean
        Unsigned 8-bit integer
    wmx.type2ClMimoAntId  Antenna Grouping Index
        Unsigned 16-bit integer
    wmx.type2ClMimoAntSel  Antenna Selection Option Index
        Unsigned 16-bit integer
    wmx.type2ClMimoCodeBkId  Codebook Index
        Unsigned 16-bit integer
    wmx.type2ClMimoCqi  Average CQI
        Unsigned 16-bit integer
    wmx.type2ClMimoRsv  Reserved
        Unsigned 16-bit integer
    wmx.type2ClMimoStreams  Number of Streams
        Unsigned 16-bit integer
    wmx.type2ClMimoType  Closed-Loop MIMO Type
        Unsigned 16-bit integer
    wmx.type2CombDlAve  Combined DL Average CINR of Active BSs
        Unsigned 16-bit integer
    wmx.type2CombDlRsv  Reserved
        Unsigned 16-bit integer
    wmx.type2DlAveCinr  DL Average CINR
        Unsigned 16-bit integer
    wmx.type2DlAveRsv  Reserved
        Unsigned 16-bit integer
    wmx.type2DlChanDcd  DCD Change Count
        Unsigned 16-bit integer
    wmx.type2DlChanDiuc  Preferred DIUC
        Unsigned 16-bit integer
    wmx.type2DlChanRsv  Reserved
        Unsigned 16-bit integer
    wmx.type2Ec  MAC Encryption Control
        Unsigned 8-bit integer
    wmx.type2FbType  Feedback Type
        Unsigned 8-bit integer
    wmx.type2Hcs  Header Check Sequence
        Unsigned 8-bit integer
    wmx.type2Ht  MAC Header Type
        Unsigned 8-bit integer
    wmx.type2LifeSpan  Life Span of Short-term
        Unsigned 16-bit integer
    wmx.type2LifeSpanRsv  Reserved
        Unsigned 16-bit integer
    wmx.type2LtFbId  Long-term Feedback Index
        Unsigned 16-bit integer
    wmx.type2LtFecQam  FEC and QAM
        Unsigned 16-bit integer
    wmx.type2LtRank  Rank of Precoding Codebook
        Unsigned 16-bit integer
    wmx.type2MimoAi  Antenna 0 Indication
        Unsigned 24-bit integer
    wmx.type2MimoBpri  Burst Profile Ranking Indicator without CID
        Unsigned 24-bit integer
    wmx.type2MimoBpriCid  Burst Profile Ranking Indicator with CID
        Unsigned 24-bit integer
    wmx.type2MimoCid  Connection ID
        Unsigned 24-bit integer
    wmx.type2MimoCoef  MIMO Coefficients
        Unsigned 16-bit integer
    wmx.type2MimoCoefAi  Occurrences of Antenna Index
        Unsigned 16-bit integer
    wmx.type2MimoCoefNi  Number of Index
        Unsigned 16-bit integer
    wmx.type2MimoCoefRsv  Reserved
        Unsigned 16-bit integer
    wmx.type2MimoCqi  CQI Feedback
        Unsigned 24-bit integer
    wmx.type2MimoCt  CQI Type
        Unsigned 24-bit integer
    wmx.type2MimoCti  Coherent Time Index
        Unsigned 24-bit integer
    wmx.type2MimoDiuc  Preferred DIUC Index
        Unsigned 8-bit integer
    wmx.type2MimoFbPayload  CQI and Mimo Feedback Payload
        Unsigned 16-bit integer
    wmx.type2MimoFbRsv  Reserved
        Unsigned 16-bit integer
    wmx.type2MimoFbType  Mimo Feedback Type
        Unsigned 16-bit integer
    wmx.type2MimoMi  MS Matrix Indicator
        Unsigned 24-bit integer
    wmx.type2MimoPbwi  Preferred Bandwidth Index
        Unsigned 8-bit integer
    wmx.type2MimoSlpb  Starting Location of Preferred Bandwidth
        Unsigned 24-bit integer
    wmx.type2MtNumFbTypes  Number of Feedback Types
        Unsigned 32-bit integer
    wmx.type2MtOccuFbType  Occurrences of Feedback Type
        Unsigned 32-bit integer
    wmx.type2NoCid  Reserved
        Unsigned 16-bit integer
    wmx.type2PhyDiuc  Preferred DIUC Index
        Unsigned 24-bit integer
    wmx.type2PhyHdRm  UL Headroom
        Unsigned 24-bit integer
    wmx.type2PhyRsv  Reserved
        Unsigned 24-bit integer
    wmx.type2PhyUlTxPwr  UL TX Power
        Unsigned 24-bit integer
    wmx.type2Type  MAC Sub-Type
        Unsigned 8-bit integer
    wmx.type2UlTxPwr  UL TX Power
        Unsigned 16-bit integer
    wmx.type2UlTxPwrRsv  Reserved
        Unsigned 16-bit integer
    wmx.type2ValueBytes  Values
        Byte array

WiMax Mac to Mac Packet (m2m)

    m2m.burst_cinr_tlv_value  Value
        Unsigned 16-bit integer
    m2m.burst_num_tlv_value  Value
        Unsigned 8-bit integer
    m2m.burst_power_tlv_value  Value
        Unsigned 16-bit integer
    m2m.cdma_code_tlv_value  Value
        Unsigned 24-bit integer
    m2m.crc16_status_tlv_value  Value
        Unsigned 8-bit integer
    m2m.fast_fb_tlv_value  Value (hex)
        Byte array
    m2m.fch_burst_tlv_value  Value
        Byte array
    m2m.frag_num_tlv_value  Value
        Unsigned 8-bit integer
    m2m.frag_type_tlv_value  Value
        Unsigned 8-bit integer
    m2m.frame_number  Value
        Unsigned 24-bit integer
    m2m.harq_ack_burst_tlv_value  Value (hex)
        Byte array
    m2m.invalid_tlv  Invalid TLV (hex)
        Byte array
    m2m.multibyte_tlv_value  Value (hex)
        Byte array
    m2m.pdu_burst_tlv_value  Value (hex)
        Byte array
    m2m.phy_attributes  Value (hex)
        Byte array
    m2m.preamble_tlv_value  Value
        Unsigned 16-bit integer
    m2m.protocol_vers_tlv_value  Value
        Unsigned 8-bit integer
    m2m.seq_number  Packet Sequence Number
        Unsigned 16-bit integer
    m2m.tlv_count  Number of TLVs in the packet
        Unsigned 16-bit integer
    m2m.tlv_len  Length
        Unsigned 8-bit integer
    m2m.tlv_len_size  Length Size
        Unsigned 8-bit integer
    m2m.tlv_type  Type
        Unsigned 8-bit integer

WiMax PKM-REQ/RSP Messages (wmx.pkm)

    wmx.macmgtmsgtype.pkm_req  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.pkm_rsp  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.pkm.msg_code  Code
        Unsigned 8-bit integer
    wmx.pkm.msg_pkm_identifier  PKM Identifier
        Unsigned 8-bit integer

WiMax PMC-REQ/RSP Messages (wmx.pmc)

    wmx.macmgtmsgtype.pmc_req  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.pmc_rsp  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.pmc_req.confirmation  Confirmation
        Unsigned 16-bit integer
    wmx.pmc_req.power_control_mode  Power control mode change
        Unsigned 16-bit integer
    wmx.pmc_req.reserved  Reserved
        Unsigned 16-bit integer
    wmx.pmc_req.ul_tx_power_level  UL Tx power level for the burst that carries this header
        Unsigned 16-bit integer
        When the Tx power is different from slot to slot, the maximum value is reported
    wmx.pmc_rsp.offset_BS_per_MS  Offset_BS per MS
        Single-precision floating point
        Signed change in power level (incr of 0.25 dB) that the MS shall apply to the open loop power control formula in 8.4.10.3.2
    wmx.pmc_rsp.power_adjust  Power adjust
        Single-precision floating point
        Signed change in power level (incr of 0.25 dB) that the MS shall apply to its current transmission power. When subchannelization is employed, the SS shall interpret as a required change to the Tx power density
    wmx.pmc_rsp.start_frame  Start frame
        Unsigned 16-bit integer
        Apply mode change from current frame when 6 LSBs of frame match this

WiMax PRC-LT-CTRL Message (wmx.prc)

    wimax.prc_lt_ctrl.precoding  Setup/Tear-down long-term precoding with feedback
        Unsigned 8-bit integer
    wimax.prc_lt_ctrl.precoding_delay  BS precoding application delay
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.prc_lt_ctrl  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.prc_lt_ctrl.invalid_tlv  Invalid TLV
        Byte array

WiMax Protocol (wmx)

    wmx.cdma.ranging_code  Ranging Code
        Unsigned 8-bit integer
    wmx.cdma.ranging_subchannel_offset  Ranging Sub-Channel Offset
        Unsigned 8-bit integer
    wmx.cdma.ranging_symbol_offset  Ranging Symbol Offset
        Unsigned 8-bit integer
    wmx.cdma_allocation.allocation_repetition  Repetition Coding Indication
        Unsigned 16-bit integer
    wmx.cdma_allocation.bw_req  BW Request Mandatory
        Boolean
    wmx.cdma_allocation.duration  Duration
        Unsigned 16-bit integer
    wmx.cdma_allocation.frame_number_index  Frame Number Index (LSBs of relevant frame number)
        Unsigned 16-bit integer
    wmx.cdma_allocation.ranging_code  Ranging Code
        Unsigned 8-bit integer
    wmx.cdma_allocation.ranging_subchannel  Ranging Subchannel
        Unsigned 8-bit integer
    wmx.cdma_allocation.ranging_symbol  Ranging Symbol
        Unsigned 8-bit integer
    wmx.cdma_allocation.uiuc  UIUC For Transmission
        Unsigned 16-bit integer
    wmx.compact_dlmap.allocation_mode  Allocation Mode
        Unsigned 8-bit integer
    wmx.compact_dlmap.allocation_mode_rsvd  Reserved
        Unsigned 8-bit integer
    wmx.compact_dlmap.band_index  Band Index
        Byte array
    wmx.compact_dlmap.bin_offset  BIN Offset
        Unsigned 8-bit integer
    wmx.compact_dlmap.bit_map  BIT MAP
        Byte array
    wmx.compact_dlmap.bit_map_length  BIT MAP Length
        Unsigned 8-bit integer
    wmx.compact_dlmap.companded_sc  Companded SC
        Unsigned 8-bit integer
    wmx.compact_dlmap.diuc  DIUC
        Unsigned 8-bit integer
    wmx.compact_dlmap.diuc_num_of_subchannels  Number Of Subchannels
        Unsigned 8-bit integer
    wmx.compact_dlmap.diuc_repetition_coding_indication  Repetition Coding Indication
        Unsigned 8-bit integer
    wmx.compact_dlmap.diuc_reserved  Reserved
        Unsigned 8-bit integer
    wmx.compact_dlmap.dl_map_type  DL-MAP Type
        Unsigned 8-bit integer
    wmx.compact_dlmap.nb_bitmap  Number Of Bits For Band BITMAP
        Unsigned 8-bit integer
    wmx.compact_dlmap.nep_code  Nep Code
        Unsigned 8-bit integer
    wmx.compact_dlmap.nsch_code  Nsch Code
        Unsigned 8-bit integer
    wmx.compact_dlmap.num_bands  Number Of Bands
        Unsigned 8-bit integer
    wmx.compact_dlmap.num_subchannels  Number Of Subchannels
        Unsigned 8-bit integer
    wmx.compact_dlmap.reserved  Reserved
        Unsigned 8-bit integer
    wmx.compact_dlmap.reserved_type  DL-MAP Reserved Type
        Unsigned 8-bit integer
    wmx.compact_dlmap.shortened_diuc  Shortened DIUC
        Unsigned 8-bit integer
    wmx.compact_dlmap.shortened_uiuc  Shortened UIUC
        Unsigned 8-bit integer
    wmx.compact_dlmap.ul_map_append  UL-MAP Append
        Unsigned 8-bit integer
    wmx.compact_ulmap.allocation_mode  Allocation Mode
        Unsigned 8-bit integer
    wmx.compact_ulmap.allocation_mode_rsvd  Reserved
        Unsigned 8-bit integer
    wmx.compact_ulmap.band_index  Band Index
        Byte array
    wmx.compact_ulmap.bin_offset  BIN Offset
        Unsigned 8-bit integer
    wmx.compact_ulmap.companded_sc  Companded SC
        Unsigned 8-bit integer
    wmx.compact_ulmap.cqi_region_change_indication  CQI Region Change Indication
        Boolean
    wmx.compact_ulmap.harq_region_change_indication  HARQ Region Change Indication
        Boolean
    wmx.compact_ulmap.nb_bitmap  Number Of Bits For Band BITMAP
        Unsigned 8-bit integer
    wmx.compact_ulmap.nep_code  Nep Code
        Unsigned 8-bit integer
    wmx.compact_ulmap.nsch_code  Nsch Code
        Unsigned 8-bit integer
    wmx.compact_ulmap.num_bands  Number Of Bands
        Unsigned 8-bit integer
    wmx.compact_ulmap.num_subchannels  Number Of Subchannels
        Unsigned 8-bit integer
    wmx.compact_ulmap.reserved  Reserved
        Unsigned 8-bit integer
    wmx.compact_ulmap.reserved_type  UL-MAP Reserved Type
        Unsigned 8-bit integer
    wmx.compact_ulmap.shortened_uiuc  Shortened UIUC
        Unsigned 8-bit integer
    wmx.compact_ulmap.uiuc  UIUC
        Unsigned 8-bit integer
    wmx.compact_ulmap.uiuc_num_of_ofdma_symbols  Number Of OFDMA Symbols
        Unsigned 24-bit integer
    wmx.compact_ulmap.uiuc_num_of_subchannels  Number Of Subchannels
        Unsigned 24-bit integer
    wmx.compact_ulmap.uiuc_ofdma_symbol_offset  OFDMA Symbol Offset
        Unsigned 8-bit integer
    wmx.compact_ulmap.uiuc_ranging_method  Ranging Method
        Unsigned 24-bit integer
    wmx.compact_ulmap.uiuc_repetition_coding_indication  Repetition Coding Indication
        Unsigned 8-bit integer
    wmx.compact_ulmap.uiuc_reserved  Reserved
        Unsigned 24-bit integer
    wmx.compact_ulmap.uiuc_reserved1  Reserved
        Unsigned 8-bit integer
    wmx.compact_ulmap.uiuc_subchannel_offset  Subchannel Offset
        Unsigned 24-bit integer
    wmx.compact_ulmap.ul_map_type  UL-MAP Type
        Unsigned 8-bit integer
    wmx.extended_diuc_dependent_ie.aas_dl  AAS_DL_IE (not implemented)
        Byte array
    wmx.extended_diuc_dependent_ie.channel_measurement  Channel_Measurement_IE (not implemented)
        Byte array
    wmx.extended_diuc_dependent_ie.cid_switch  CID_Switch_IE (not implemented)
        Byte array
    wmx.extended_diuc_dependent_ie.data_location  Data_location_in_another_BS_IE (not implemented)
        Byte array
    wmx.extended_diuc_dependent_ie.diuc  Extended DIUC
        Unsigned 8-bit integer
    wmx.extended_diuc_dependent_ie.dl_pusc_burst_allocation  DL_PUSC_Burst_Allocation_in_Other_Segment_IE (not implemented)
        Byte array
    wmx.extended_diuc_dependent_ie.harq_map_pointer  HARQ_Map_Pointer_IE (not implemented)
        Byte array
    wmx.extended_diuc_dependent_ie.length  Length
        Unsigned 8-bit integer
    wmx.extended_diuc_dependent_ie.mimo_dl_basic  MIMO_DL_Basic_IE (not implemented)
        Byte array
    wmx.extended_diuc_dependent_ie.mimo_dl_enhanced  MIMO_DL_Enhanced_IE (not implemented)
        Byte array
    wmx.extended_diuc_dependent_ie.phymod_dl  PHYMOD_DL_IE (not implemented)
        Byte array
    wmx.extended_diuc_dependent_ie.stc_zone  STC_Zone_IE (not implemented)
        Byte array
    wmx.extended_diuc_dependent_ie.ul_interference_and_noise_level  UL_interference_and_noise_level_IE (not implemented)
        Byte array
    wmx.extended_diuc_dependent_ie.unknown_diuc  Unknown Extended DIUC
        Byte array
    wmx.extended_uiuc.unknown_uiuc  Unknown Extended UIUC
        Byte array
    wmx.extended_uiuc_ie.aas_ul  AAS_UL_IE (not implemented)
        Byte array
    wmx.extended_uiuc_ie.cqich_alloc  CQICH Allocation IE (not implemented)
        Byte array
    wmx.extended_uiuc_ie.fast_ranging  Fast Ranging IE (not implemented)
        Byte array
    wmx.extended_uiuc_ie.fast_tracking  UL-MAP Fast Tracking IE (not implemented)
        Byte array
    wmx.extended_uiuc_ie.length  Length
        Unsigned 8-bit integer
    wmx.extended_uiuc_ie.mimo_ul_basic  MIMO UL Basic IE (not implemented)
        Byte array
    wmx.extended_uiuc_ie.mini_subchannel_alloc.cid  CID
        Unsigned 24-bit integer
    wmx.extended_uiuc_ie.mini_subchannel_alloc.ctype  C Type
        Unsigned 8-bit integer
    wmx.extended_uiuc_ie.mini_subchannel_alloc.duration  Duration
        Unsigned 8-bit integer
    wmx.extended_uiuc_ie.mini_subchannel_alloc.padding  Padding
        Unsigned 8-bit integer
    wmx.extended_uiuc_ie.mini_subchannel_alloc.repetition  Repetition
        Unsigned 24-bit integer
    wmx.extended_uiuc_ie.mini_subchannel_alloc.uiuc  UIUC
        Unsigned 24-bit integer
    wmx.extended_uiuc_ie.phymod_ul  UL-MAP Physical Modifier IE (not implemented)
        Byte array
    wmx.extended_uiuc_ie.power_control  Power Control
        Unsigned 8-bit integer
    wmx.extended_uiuc_ie.power_measurement_frame  Power Measurement Frame
        Unsigned 8-bit integer
    wmx.extended_uiuc_ie.uiuc  Extended UIUC
        Unsigned 8-bit integer
    wmx.extended_uiuc_ie.ul_allocation_start  UL Allocation Start IE (not implemented)
        Byte array
    wmx.extended_uiuc_ie.ul_pusc_burst_allocation  UL_PUSC_Burst_Allocation_in_Other_Segment_IE (not implemented)
        Byte array
    wmx.extended_uiuc_ie.ul_zone  UL Zone IE (not implemented)
        Byte array
    wmx.extension_type.dl_map_type  DL-MAP Type
        Unsigned 16-bit integer
    wmx.extension_type.harq_mode  HARQ Mode Switch
        Unsigned 16-bit integer
    wmx.extension_type.length  Extension Length
        Unsigned 16-bit integer
    wmx.extension_type.subtype  Extension Subtype
        Unsigned 16-bit integer
    wmx.extension_type.time_diversity_mbs  Time Diversity MBS
        Byte array
    wmx.extension_type.ul_map_type  UL-MAP Type
        Unsigned 16-bit integer
    wmx.extension_type.unknown_sub_type  Unknown Extension Subtype
        Byte array
    wmx.fch.coding_indication  Coding Indication
        Unsigned 24-bit integer
    wmx.fch.dl_map_length  DL Map Length
        Unsigned 24-bit integer
    wmx.fch.repetition_coding_indication  Repetition Coding Indication
        Unsigned 24-bit integer
    wmx.fch.reserved1  Reserved
        Unsigned 24-bit integer
    wmx.fch.reserved2  Reserved
        Unsigned 24-bit integer
    wmx.fch.subchannel_group0  Sub-Channel Group 0
        Unsigned 24-bit integer
    wmx.fch.subchannel_group1  Sub-Channel Group 1
        Unsigned 24-bit integer
    wmx.fch.subchannel_group2  Sub-Channel Group 2
        Unsigned 24-bit integer
    wmx.fch.subchannel_group3  Sub-Channel Group 3
        Unsigned 24-bit integer
    wmx.fch.subchannel_group4  Sub-Channel Group 4
        Unsigned 24-bit integer
    wmx.fch.subchannel_group5  Sub-Channel Group 5
        Unsigned 24-bit integer
    wmx.ffb.burst  Fast Feedback Burst
        Byte array
    wmx.ffb.ffb_type  Fast Feedback Type
        Unsigned 8-bit integer
    wmx.ffb.ffb_value  Fast Feedback Value
        Unsigned 8-bit integer
    wmx.ffb.num_of_ffbs  Number Of Fast Feedback
        Unsigned 8-bit integer
    wmx.ffb.subchannel  Physical Subchannel
        Unsigned 8-bit integer
    wmx.ffb.symbol_offset  Symbol Offset
        Unsigned 8-bit integer
    wmx.format_config_ie.dl_map_type  DL-MAP Type
        Unsigned 8-bit integer
    wmx.format_config_ie.new_format_indication  New Format Indication
        Boolean
    wmx.hack.burst  HARQ ACK Burst
        Byte array
    wmx.hack.hack_value  ACK Value
        Unsigned 8-bit integer
    wmx.hack.half_slot_flag  Half-Slot Flag
        Unsigned 8-bit integer
    wmx.hack.num_of_hacks  Number Of HARQ ACKs/NACKs
        Unsigned 8-bit integer
    wmx.hack.subchannel  Physical Subchannel
        Unsigned 8-bit integer
    wmx.hack.symbol_offset  Symbol Offset
        Unsigned 8-bit integer
    wmx.harq_map.cqich_control_ie.alloc_id  Allocation Index
        Unsigned 16-bit integer
    wmx.harq_map.cqich_control_ie.cqi_rep_threshold  CQI Reporting Threshold
        Unsigned 16-bit integer
    wmx.harq_map.cqich_control_ie.cqich_indicator  CQICH Indicator
        Boolean
    wmx.harq_map.cqich_control_ie.duration  Duration
        Unsigned 16-bit integer
    wmx.harq_map.cqich_control_ie.frame_offset  Frame Offset
        Unsigned 16-bit integer
    wmx.harq_map.cqich_control_ie.period  PERIOD
        Unsigned 16-bit integer
    wmx.harq_map.dl_ie_count  DL IE Count
        Unsigned 24-bit integer
    wmx.harq_map.format_config_ie.cid_type  CID Type
        Unsigned 32-bit integer
    wmx.harq_map.format_config_ie.indicator  HARQ MAP Indicator
        Unsigned 32-bit integer
    wmx.harq_map.format_config_ie.max_logical_bands  Max Logical Bands
        Unsigned 32-bit integer
    wmx.harq_map.format_config_ie.num_of_broadcast_symbol  Number Of Symbols for Broadcast
        Unsigned 32-bit integer
    wmx.harq_map.format_config_ie.num_of_dl_band_amc_symbol  Number Of Symbols for Broadcast
        Unsigned 32-bit integer
    wmx.harq_map.format_config_ie.num_of_ul_band_amc_symbol  Number Of Symbols for Broadcast
        Unsigned 32-bit integer
    wmx.harq_map.format_config_ie.safety_pattern  Safety Pattern
        Unsigned 32-bit integer
    wmx.harq_map.format_config_ie.subchannel_type  Subchannel Type For Band AMC
        Unsigned 32-bit integer
    wmx.harq_map.harq_control_ie.acid  HARQ CH ID (ACID)
        Unsigned 8-bit integer
    wmx.harq_map.harq_control_ie.ai_sn  HARQ ID Sequence Number(AI_SN)
        Unsigned 8-bit integer
    wmx.harq_map.harq_control_ie.prefix  Prefix
        Boolean
    wmx.harq_map.harq_control_ie.reserved  Reserved
        Unsigned 8-bit integer
    wmx.harq_map.harq_control_ie.spid  Subpacket ID (SPID)
        Unsigned 8-bit integer
    wmx.harq_map.indicator  HARQ MAP Indicator
        Unsigned 24-bit integer
    wmx.harq_map.msg_crc  HARQ MAP Message CRC
        Unsigned 32-bit integer
    wmx.harq_map.msg_length  Map Message Length
        Unsigned 24-bit integer
    wmx.harq_map.num_of_broadcast_symbol  Number Of Symbols for Broadcast
        Unsigned 32-bit integer
    wmx.harq_map.num_of_dl_band_amc_symbol  Number Of Symbols for Broadcast
        Unsigned 32-bit integer
    wmx.harq_map.num_of_ul_band_amc_symbol  Number Of Symbols for Broadcast
        Unsigned 32-bit integer
    wmx.harq_map.rcid_ie.cid11  11 LSB Of Basic CID
        Unsigned 16-bit integer
    wmx.harq_map.rcid_ie.cid3  3 LSB Of Basic CID
        Unsigned 16-bit integer
    wmx.harq_map.rcid_ie.cid7  7 LSB Of Basic CID
        Unsigned 16-bit integer
    wmx.harq_map.rcid_ie.normal_cid  Normal CID
        Unsigned 16-bit integer
    wmx.harq_map.rcid_ie.prefix  Prefix
        Unsigned 16-bit integer
    wmx.harq_map.reserved  Reserved
        Unsigned 24-bit integer
    wmx.harq_map.ul_map_appended  HARQ UL-MAP Appended
        Unsigned 24-bit integer
    wmx.pdu.value  Values
        Byte array
    wmx.phy_attributes.encoding_type  Encoding Type
        Unsigned 8-bit integer
    wmx.phy_attributes.modulation_rate  Modulation Rate
        Unsigned 8-bit integer
    wmx.phy_attributes.num_of_slots  Number Of Slots
        Unsigned 16-bit integer
    wmx.phy_attributes.num_repeat  numRepeat
        Unsigned 8-bit integer
    wmx.phy_attributes.permbase  Permbase
        Unsigned 8-bit integer
    wmx.phy_attributes.subchannel  Subchannel
        Unsigned 8-bit integer
    wmx.phy_attributes.subchannelization_type  Subchannelization Type
        Unsigned 8-bit integer
    wmx.phy_attributes.symbol_offset  Symbol Offset
        Unsigned 8-bit integer
    wmx.unknown_type  Unknown MAC Message Type
        Byte array
    wmx.values  Values
        Byte array

WiMax REG-REQ/RSP Messages (wmx.reg)

    wimax.reg.bandwidth_request_ul_tx_pwr_report_header_support  Bandwidth request and UL Tx Power Report header support
        Unsigned 24-bit integer
    wmx.arq.block_lifetime  ARQ Block Lifetime (10us granularity)
        Unsigned 16-bit integer
    wmx.arq.block_size  ARQ Block Size
        Unsigned 16-bit integer
    wmx.arq.deliver_in_order  ARQ Deliver In Order
        Unsigned 8-bit integer
    wmx.arq.enable  ARQ Enable
        Unsigned 8-bit integer
    wmx.arq.max_block_size  ARQ Maximum Block Size
        Unsigned 8-bit integer
    wmx.arq.min_block_size  ARQ Minimum Block Size
        Unsigned 8-bit integer
    wmx.arq.receiver_delay  ARQ Receiver Delay (10us granularity)
        Unsigned 16-bit integer
    wmx.arq.rx_purge_timeout  ARQ RX Purge Timeout (100us granularity)
        Unsigned 16-bit integer
    wmx.arq.sync_loss_timeout  ARQ Sync Loss Timeout (10us granularity)
        Unsigned 16-bit integer
    wmx.arq.transmitter_delay  ARQ Transmitter Delay (10us granularity)
        Unsigned 16-bit integer
    wmx.arq.window_size  ARQ Window Size
        Unsigned 16-bit integer
    wmx.macmgtmsgtype.reg_req  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.reg_rsp  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.reg.alloc_sec_mgmt_dhcp  DHCP
        Boolean
    wmx.reg.alloc_sec_mgmt_dhcpv6  DHCPv6
        Boolean
    wmx.reg.alloc_sec_mgmt_ipv6  IPv6 Stateless Address Autoconfiguration
        Boolean
    wmx.reg.alloc_sec_mgmt_mobile_ipv4  Mobile IPv4
        Boolean
    wmx.reg.alloc_sec_mgmt_rsvd  Reserved
        Unsigned 8-bit integer
    wmx.reg.arq  ARQ support
        Boolean
    wmx.reg.arq_ack_type_cumulative_ack_entry  Cumulative ACK entry
        Unsigned 8-bit integer
    wmx.reg.arq_ack_type_cumulative_ack_with_block_sequence_ack  Cumulative ACK with Block Sequence ACK
        Unsigned 8-bit integer
    wmx.reg.arq_ack_type_cumulative_with_selective_ack_entry  Cumulative with Selective ACK entry
        Unsigned 8-bit integer
    wmx.reg.arq_ack_type_reserved  Reserved
        Unsigned 8-bit integer
    wmx.reg.arq_ack_type_selective_ack_entry  Selective ACK entry
        Unsigned 8-bit integer
    wmx.reg.bandwidth_request_cinr_report_header_support  Bandwidth request and CINR report header support
        Unsigned 24-bit integer
    wmx.reg.bandwidth_request_ul_sleep_control_header_support  Bandwidth request and uplink sleep control header support
        Unsigned 24-bit integer
    wmx.reg.cqich_allocation_request_header_support  CQICH Allocation Request header support
        Unsigned 24-bit integer
    wmx.reg.dl_cids_supported  Number of Downlink transport CIDs the SS can support
        Unsigned 16-bit integer
    wmx.reg.dl_sleep_control_extended_subheader  Downlink sleep control extended subheader
        Unsigned 24-bit integer
    wmx.reg.dsx_flow_control  DSx flow control
        Unsigned 8-bit integer
    wmx.reg.encap_802_1q  Packet, 802.1Q VLAN
        Unsigned 16-bit integer
    wmx.reg.encap_802_3  Packet, 802.3/Ethernet
        Unsigned 16-bit integer
    wmx.reg.encap_atm  ATM
        Unsigned 16-bit integer
    wmx.reg.encap_ipv4  Packet, IPv4
        Unsigned 16-bit integer
    wmx.reg.encap_ipv4_802_1q  Packet, IPv4 over 802.1Q VLAN
        Unsigned 16-bit integer
    wmx.reg.encap_ipv4_802_3  Packet, IPv4 over 802.3/Ethernet
        Unsigned 16-bit integer
    wmx.reg.encap_ipv6  Packet, IPv6
        Unsigned 16-bit integer
    wmx.reg.encap_ipv6_802_1q  Packet, IPv6 over 802.1Q VLAN
        Unsigned 16-bit integer
    wmx.reg.encap_ipv6_802_3  Packet, IPv6 over 802.3/Ethernet
        Unsigned 16-bit integer
    wmx.reg.encap_packet_802_3_ethernet_and_ecrtp_header_compression  Packet, 802.3/Ethernet (with optional 802.1Q VLAN tags) and ECRTP header compression
        Unsigned 16-bit integer
    wmx.reg.encap_packet_802_3_ethernet_and_rohc_header_compression  Packet, 802.3/Ethernet (with optional 802.1Q VLAN tags) and ROHC header compression
        Unsigned 16-bit integer
    wmx.reg.encap_packet_ip_ecrtp_header_compression  Packet, IP (v4 or v6) with ECRTP header compression
        Unsigned 16-bit integer
    wmx.reg.encap_packet_ip_rohc_header_compression  Packet, IP (v4 or v6) with ROHC header compression
        Unsigned 16-bit integer
    wmx.reg.encap_rsvd  Reserved
        Unsigned 16-bit integer
    wmx.reg.ext_rtps_support  MAC extended rtPS support
        Boolean
    wmx.reg.fbss_mdho_dl_rf_combining  FBSS/MDHO DL RF Combining with monitoring MAPs from active BSs
        Boolean
    wmx.reg.fbss_mdho_ho_disable  MDHO/FBSS HO. BS ignore all other bits when set to 1
        Boolean
    wmx.reg.feedback_header_support  Feedback header support
        Unsigned 24-bit integer
    wmx.reg.feedback_request_extended_subheader  Feedback request extended subheader
        Unsigned 24-bit integer
    wmx.reg.handover_indication_readiness_timer  Handover indication readiness timer
        Unsigned 8-bit integer
    wmx.reg.handover_reserved  Reserved
        Unsigned 8-bit integer
    wmx.reg.ho_connections_param_processing_time  MS HO connections parameters processing time
        Unsigned 8-bit integer
    wmx.reg.ho_process_opt_ms_timer  HO Process Optimization MS Timer
        Unsigned 8-bit integer
    wmx.reg.ho_tek_processing_time  MS HO TEK processing time
        Unsigned 8-bit integer
    wmx.reg.idle_mode_timeout  Idle Mode Timeout
        Unsigned 16-bit integer
    wmx.reg.ip_mgmt_mode  IP management mode
        Boolean
    wmx.reg.ip_version  IP version
        Unsigned 8-bit integer
    wmx.reg.mac_address  MAC Address of the SS
        6-byte Hardware (MAC) Address
    wmx.reg.mac_crc_support  MAC CRC
        Boolean
    wmx.reg.max_classifiers  Maximum number of classification rules
        Unsigned 16-bit integer
    wmx.reg.max_num_bursts_to_ms  Maximum number of bursts transmitted concurrently to the MS
        Unsigned 8-bit integer
    wmx.reg.mca_flow_control  MCA flow control
        Unsigned 8-bit integer
    wmx.reg.mcast_polling_cids  Multicast polling group CID support
        Unsigned 8-bit integer
    wmx.reg.mdh_ul_multiple  MDHO UL Multiple transmission
        Boolean
    wmx.reg.mdho_dl_monitor_maps  MDHO DL soft combining with monitoring MAPs from active BSs
        Boolean
    wmx.reg.mdho_dl_monitor_single_map  MDHO DL soft Combining with monitoring single MAP from anchor BS
        Boolean
    wmx.reg.mimo_mode_feedback_request_extended_subheader  MIMO mode feedback request extended subheader
        Unsigned 24-bit integer
    wmx.reg.mini_feedback_extended_subheader  Mini-feedback extended subheader
        Unsigned 24-bit integer
    wmx.reg.mobility_handover  Mobility (handover)
        Boolean
    wmx.reg.mobility_idle_mode  Idle mode
        Boolean
    wmx.reg.mobility_sleep_mode  Sleep mode
        Boolean
    wmx.reg.multi_active_power_saving_classes  Multiple active power saving classes supported
        Boolean
    wmx.reg.packing.support  Packing support
        Boolean
    wmx.reg.pdu_sn_long_extended_subheader  PDU SN (long) extended subheader
        Unsigned 24-bit integer
    wmx.reg.pdu_sn_short_extended_subheader  PDU SN (short) extended subheader
        Unsigned 24-bit integer
    wmx.reg.phs  PHS support
        Unsigned 8-bit integer
    wmx.reg.phy_channel_report_header_support  PHY channel report header support
        Unsigned 24-bit integer
    wmx.reg.power_saving_class_type_i  Power saving class type I supported
        Boolean
    wmx.reg.power_saving_class_type_ii  Power saving class type II supported
        Boolean
    wmx.reg.power_saving_class_type_iii  Power saving class type III supported
        Boolean
    wmx.reg.reserved  Reserved
        Unsigned 24-bit integer
    wmx.reg.sdu_sn_extended_subheader_support  SDU_SN extended subheader support
        Unsigned 24-bit integer
    wmx.reg.sdu_sn_parameter  SDU_SN parameter
        Unsigned 24-bit integer
    wmx.reg.sn_report_header_support  SN report header support
        Unsigned 24-bit integer
    wmx.reg.sn_request_extended_subheader  SN request extended subheader
        Unsigned 24-bit integer
    wmx.reg.ss_mgmt_support  SS management support
        Boolean
    wmx.reg.ul_cids_supported  Number of Uplink transport CIDs the SS can support
        Unsigned 16-bit integer
    wmx.reg.ul_tx_power_report_extended_subheader  UL Tx power report extended subheader
        Unsigned 24-bit integer
    wmx.reg.unknown_tlv_type  Unknown TLV Type
        Byte array
    wmx.reg_req.invalid_tlv  Invalid TLV
        Byte array
    wmx.reg_req.max_mac_dl_data  Maximum MAC level DL data per frame
        Unsigned 16-bit integer
    wmx.reg_req.max_mac_ul_data  Maximum MAC level UL data per frame
        Unsigned 16-bit integer
    wmx.reg_req.min_time_for_inter_fa  Minimum time for inter-FA HO, default=3
        Unsigned 8-bit integer
    wmx.reg_req.min_time_for_intra_fa  Minimum time for intra-FA HO, default=2
        Unsigned 8-bit integer
    wmx.reg_req.ms_periodic_ranging_timer_info  MS periodic ranging timer information
        Unsigned 8-bit integer
    wmx.reg_req.ms_prev_ip_addr_v4  MS Previous IP address
        IPv4 address
    wmx.reg_req.ms_prev_ip_addr_v6  MS Previous IP address
        IPv6 address
    wmx.reg_req.secondary_mgmt_cid  Secondary Management CID
        Unsigned 16-bit integer
    wmx.reg_req.sleep_recovery  Frames required for the MS to switch from sleep to awake-mode
        Unsigned 8-bit integer
    wmx.reg_req.total_power_saving_class_instances  Total number of power saving class instances of all
        Unsigned 16-bit integer
    wmx.reg_rsp.invalid_tlv  Invalid TLV
        Byte array
    wmx.reg_rsp.new_cid_after_ho  New CID after handover to new BS
        Unsigned 16-bit integer
    wmx.reg_rsp.response  Response
        Unsigned 8-bit integer
    wmx.reg_rsp.secondary_mgmt_cid  Secondary Management CID
        Unsigned 16-bit integer
    wmx.reg_rsp.service_flow_id  Service flow ID
        Unsigned 32-bit integer
    wmx.reg_rsp.system_resource_retain_time  System Resource Retain Time
        Unsigned 16-bit integer
    wmx.reg_rsp.tlv_value  Value
        Byte array
    wmx.reg_rsp.total_provisional_sf  Total Number of Provisional Service Flow
        Unsigned 8-bit integer
    wmx.reg_rsp.unknown_tlv_type  Unknown TLV Type
        Byte array
    wmx.sfe.authorization_token  Authorization Token
        Byte array
    wmx.sfe.cid  CID
        Unsigned 16-bit integer
    wmx.sfe.cid_alloc_for_active_bs  CID Allocation For Active BSs
        Byte array
    wmx.sfe.cid_alloc_for_active_bs_cid  CID
        Unsigned 16-bit integer
    wmx.sfe.cs_specification  CS Specification
        Unsigned 8-bit integer
    wmx.sfe.fixed_len_sdu  Fixed/Variable Length SDU
        Unsigned 8-bit integer
    wmx.sfe.fsn_size  FSN Size
        Unsigned 8-bit integer
    wmx.sfe.global_service_class_name  Global Service Class Name
        String
    wmx.sfe.harq_channel_mapping  HARQ Channel Mapping
        Byte array
    wmx.sfe.harq_channel_mapping.index  HARQ Channel Index
        Unsigned 8-bit integer
    wmx.sfe.harq_service_flows  HARQ Service Flows
        Unsigned 8-bit integer
    wmx.sfe.jitter  Tolerated Jitter
        Unsigned 32-bit integer
    wmx.sfe.max_latency  Maximum Latency
        Unsigned 32-bit integer
    wmx.sfe.max_traffic_burst  Maximum Traffic Burst
        Unsigned 32-bit integer
    wmx.sfe.mbs_contents_ids  MBS contents IDs
        Byte array
    wmx.sfe.mbs_contents_ids_id  MBS Contents ID
        Unsigned 16-bit integer
    wmx.sfe.mbs_service  MBS Service
        Unsigned 8-bit integer
    wmx.sfe.mbs_zone_identifier  MBS Zone Identifier
        Byte array
    wmx.sfe.mrr  Minimum Reserved Traffic Rate
        Unsigned 32-bit integer
    wmx.sfe.msr  Maximum Sustained Traffic Rate
        Unsigned 32-bit integer
    wmx.sfe.paging_preference  Paging Preference
        Unsigned 8-bit integer
    wmx.sfe.pdu_sn_ext_subheader_reorder  PDU SN Extended Subheader For HARQ Reordering
        Unsigned 8-bit integer
    wmx.sfe.policy.bit1  The Service Flow Shall Not Use Multicast Bandwidth Request Opportunities
        Boolean
    wmx.sfe.policy.broadcast_bwr  The Service Flow Shall Not Use Broadcast Bandwidth Request Opportunities
        Boolean
    wmx.sfe.policy.crc  The Service Flow Shall Not Include CRC In The MAC PDU
        Boolean
    wmx.sfe.policy.fragment  The Service Flow Shall Not Fragment Data
        Boolean
    wmx.sfe.policy.headers  The Service Flow Shall Not Suppress Payload Headers
        Boolean
    wmx.sfe.policy.packing  The Service Flow Shall Not Pack Multiple SDUs (Or Fragments) Into Single MAC PDUs
        Boolean
    wmx.sfe.policy.piggyback  The Service Flow Shall Not Piggyback Requests With Data
        Boolean
    wmx.sfe.policy.rsvd1  Reserved
        Unsigned 8-bit integer
    wmx.sfe.qos_params_set  QoS Parameter Set Type
        Unsigned 8-bit integer
    wmx.sfe.qos_params_set.active  Active Set
        Boolean
    wmx.sfe.qos_params_set.admitted  Admitted Set
        Boolean
    wmx.sfe.qos_params_set.provisioned  Provisioned Set
        Boolean
    wmx.sfe.qos_params_set.rsvd  Reserved
        Unsigned 8-bit integer
    wmx.sfe.req_tx_policy  Request/Transmission Policy
        Unsigned 32-bit integer
    wmx.sfe.reserved_10  Reserved
        Unsigned 32-bit integer
    wmx.sfe.reserved_34  Reserved
        Unsigned 8-bit integer
    wmx.sfe.reserved_36  Reserved
        Unsigned 8-bit integer
    wmx.sfe.sdu_inter_arrival_interval  SDU Inter-Arrival Interval (in the resolution of 0.5 ms)
        Unsigned 16-bit integer
    wmx.sfe.sdu_size  SDU Size
        Unsigned 8-bit integer
    wmx.sfe.service_class_name  Service Class Name
        String
    wmx.sfe.sf_id  Service Flow ID
        Unsigned 32-bit integer
    wmx.sfe.sn_feedback_enabled  SN Feedback
        Unsigned 8-bit integer
    wmx.sfe.target_said  SAID Onto Which SF Is Mapped
        Unsigned 16-bit integer
    wmx.sfe.time_base  Time Base
        Unsigned 16-bit integer
    wmx.sfe.traffic_priority  Traffic Priority
        Unsigned 8-bit integer
    wmx.sfe.type_of_data_delivery_services  Type of Data Delivery Services
        Unsigned 8-bit integer
    wmx.sfe.unknown_type  Unknown SFE TLV type
        Byte array
    wmx.sfe.unsolicited_grant_interval  Unsolicited Grant Interval
        Unsigned 16-bit integer
    wmx.sfe.unsolicited_polling_interval  Unsolicited Polling Interval
        Unsigned 16-bit integer
    wmx.sfe.uplink_grant_scheduling  Uplink Grant Scheduling Type
        Unsigned 8-bit integer

WiMax REP-REQ/RSP Messages (wmx.rep)

    wmx.macmgtmsgtype.rep_req  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.rep_rsp  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.rep.invalid_tlv  Invalid TLV
        Byte array
    wmx.rep.unknown_tlv_type  Unknown TLV type
        Byte array
    wmx.rep_req.channel_number  Channel Number
        Unsigned 8-bit integer
    wmx.rep_req.channel_selectivity_report  Channel Selectivity Report
        Byte array
    wmx.rep_req.channel_selectivity_report.bit0  Include Frequency Selectivity Report
        Boolean
    wmx.rep_req.channel_selectivity_report.bit1_7  Reserved
        Unsigned 8-bit integer
    wmx.rep_req.channel_type.request  Channel Type Request
        Unsigned 8-bit integer
    wmx.rep_req.channel_type.reserved  Reserved
        Unsigned 8-bit integer
    wmx.rep_req.preamble_effective_cinr_request  Preamble Effective CINR Request
        Byte array
    wmx.rep_req.preamble_effective_cinr_request.bit0_1  Type Of Preamble Physical CINR Measurement
        Unsigned 8-bit integer
    wmx.rep_req.preamble_effective_cinr_request.bit2_7  Reserved
        Unsigned 8-bit integer
    wmx.rep_req.preamble_phy_cinr_request  Preamble Physical CINR Request
        Byte array
    wmx.rep_req.preamble_phy_cinr_request.bit0_1  Type Of Preamble Physical CINR Measurement
        Unsigned 8-bit integer
    wmx.rep_req.preamble_phy_cinr_request.bit2_5  Alpha (ave) in multiples of 1/16
        Unsigned 8-bit integer
    wmx.rep_req.preamble_phy_cinr_request.bit6  CINR Report Type
        Unsigned 8-bit integer
    wmx.rep_req.preamble_phy_cinr_request.bit7  Reserved
        Unsigned 8-bit integer
    wmx.rep_req.report_request  Report Request
        Byte array
    wmx.rep_req.report_type  Report Type
        Unsigned 8-bit integer
    wmx.rep_req.report_type.bit0  Include DFS Basic Report
        Boolean
    wmx.rep_req.report_type.bit1  Include CINR Report
        Boolean
    wmx.rep_req.report_type.bit2  Include RSSI Report
        Boolean
    wmx.rep_req.report_type.bit3_6  Alpha (ave) in multiples of 1/32
        Unsigned 8-bit integer
    wmx.rep_req.report_type.bit7  Include Current Transmit Power Report
        Boolean
    wmx.rep_req.zone_spec_effective_cinr_report.cqich_id  The 3 least significant bits of CQICH_ID
        Unsigned 8-bit integer
    wmx.rep_req.zone_spec_effective_cinr_report.cqich_id_4  The 4 least significant bits of CQICH_ID
        Unsigned 8-bit integer
    wmx.rep_req.zone_spec_effective_cinr_report.effective_cinr  Effective CINR
        Unsigned 8-bit integer
    wmx.rep_req.zone_spec_effective_cinr_report.report_type  Effective CINR Report
        Unsigned 8-bit integer
    wmx.rep_req.zone_spec_effective_cinr_request  Zone-specific Effective CINR Request
        Byte array
    wmx.rep_req.zone_spec_effective_cinr_request.bit0_2  Type Of Zone On Which CINR Is To Be Reported
        Unsigned 16-bit integer
    wmx.rep_req.zone_spec_effective_cinr_request.bit14_15  Reserved
        Unsigned 16-bit integer
    wmx.rep_req.zone_spec_effective_cinr_request.bit3  STC Zone
        Boolean
    wmx.rep_req.zone_spec_effective_cinr_request.bit4  AAS Zone
        Boolean
    wmx.rep_req.zone_spec_effective_cinr_request.bit5_6  PRBS ID
        Unsigned 16-bit integer
    wmx.rep_req.zone_spec_effective_cinr_request.bit7  CINR Measurement Report
        Unsigned 16-bit integer
    wmx.rep_req.zone_spec_effective_cinr_request.bit8_13  PUSC Major Group Map
        Unsigned 16-bit integer
    wmx.rep_req.zone_spec_phy_cinr_report.deviation  Standard Deviation of CINR
        Unsigned 8-bit integer
    wmx.rep_req.zone_spec_phy_cinr_report.mean  Mean of Physical CINR
        Unsigned 8-bit integer
    wmx.rep_req.zone_spec_phy_cinr_report.report_type  CINR Report Type
        Unsigned 8-bit integer
    wmx.rep_req.zone_spec_phy_cinr_report.reserved1  Reserved
        Unsigned 8-bit integer
    wmx.rep_req.zone_spec_phy_cinr_report.reserved2  Reserved
        Unsigned 8-bit integer
    wmx.rep_req.zone_spec_phy_cinr_request  Zone-specific Physical CINR Request
        Byte array
    wmx.rep_req.zone_spec_phy_cinr_request.bit0_2  Type Of Zone On Which CINR Is To Be Reported
        Unsigned 24-bit integer
    wmx.rep_req.zone_spec_phy_cinr_request.bit14_17  Alpha (ave) in multiples of 1/16
        Unsigned 24-bit integer
    wmx.rep_req.zone_spec_phy_cinr_request.bit18  CINR Report Type
        Unsigned 24-bit integer
    wmx.rep_req.zone_spec_phy_cinr_request.bit19_23  Reserved
        Unsigned 24-bit integer
    wmx.rep_req.zone_spec_phy_cinr_request.bit3  STC Zone
        Boolean
    wmx.rep_req.zone_spec_phy_cinr_request.bit4  AAS Zone
        Boolean
    wmx.rep_req.zone_spec_phy_cinr_request.bit5_6  PRBS ID
        Unsigned 24-bit integer
    wmx.rep_req.zone_spec_phy_cinr_request.bit7  CINR Measurement Report
        Unsigned 24-bit integer
    wmx.rep_req.zone_spec_phy_cinr_request.bit8_13  PUSC Major Group Map
        Unsigned 24-bit integer
    wmx.rep_rsp.channel_selectivity_report  Channel Selectivity Report
        Byte array
    wmx.rep_rsp.channel_selectivity_report.frequency_a  Frequency Selectivity Report a
        Unsigned 8-bit integer
    wmx.rep_rsp.channel_selectivity_report.frequency_b  Frequency Selectivity Report b
        Unsigned 8-bit integer
    wmx.rep_rsp.channel_selectivity_report.frequency_c  Frequency Selectivity Report c
        Unsigned 8-bit integer
    wmx.rep_rsp.channel_type_report  Channel Type Report
        Byte array
    wmx.rep_rsp.channel_type_report.band_amc  Band AMC
        Unsigned 32-bit integer
    wmx.rep_rsp.channel_type_report.enhanced_band_amc  Enhanced Band AMC
        Byte array
    wmx.rep_rsp.channel_type_report.safety_channel  Safety Channel
        Byte array
    wmx.rep_rsp.channel_type_report.sounding  Sounding
        Unsigned 8-bit integer
    wmx.rep_rsp.channel_type_report.subchannel  Normal Subchannel
        Unsigned 8-bit integer
    wmx.rep_rsp.current_transmitted_power  Current Transmitted Power
        Unsigned 8-bit integer
    wmx.rep_rsp.preamble_effective_cinr_report  Preamble Effective CINR Report
        Byte array
    wmx.rep_rsp.preamble_effective_cinr_report.configuration_1  The Estimation Of Effective CINR Measured From Preamble For Frequency Reuse Configuration=1
        Byte array
    wmx.rep_rsp.preamble_effective_cinr_report.configuration_3  The Estimation Of Effective CINR Measured From Preamble For Frequency Reuse Configuration=3
        Byte array
    wmx.rep_rsp.preamble_phy_cinr_report  Preamble Physical CINR Report
        Byte array
    wmx.rep_rsp.preamble_phy_cinr_report.band_amc_zone  The Estimation Of Physical CINR Measured From Preamble For Band AMC Zone
        Byte array
    wmx.rep_rsp.preamble_phy_cinr_report.configuration_1  The Estimation Of Physical CINR Measured From Preamble For Frequency Reuse Configuration=1
        Byte array
    wmx.rep_rsp.preamble_phy_cinr_report.configuration_3  The Estimation Of Physical CINR Measured From Preamble For Frequency Reuse Configuration=3
        Byte array
    wmx.rep_rsp.report_type  Report Type
        Byte array
    wmx.rep_rsp.report_type.basic_report  Basic Report
        Byte array
    wmx.rep_rsp.report_type.basic_report.bit0  Wireless HUMAN Detected
        Boolean
    wmx.rep_rsp.report_type.basic_report.bit1  Unknown Transmission Detected
        Boolean
    wmx.rep_rsp.report_type.basic_report.bit2  Specific Spectrum User Detected
        Boolean
    wmx.rep_rsp.report_type.basic_report.bit3  Channel Not Measured
        Boolean
    wmx.rep_rsp.report_type.basic_report.reserved  Reserved
        Unsigned 8-bit integer
    wmx.rep_rsp.report_type.channel_number  Channel Number
        Unsigned 8-bit integer
    wmx.rep_rsp.report_type.cinr_report  CINR Report
        Byte array
    wmx.rep_rsp.report_type.cinr_report_deviation  CINR Standard Deviation
        Unsigned 8-bit integer
    wmx.rep_rsp.report_type.cinr_report_mean  CINR Mean
        Unsigned 8-bit integer
    wmx.rep_rsp.report_type.duration  Duration
        Unsigned 24-bit integer
    wmx.rep_rsp.report_type.frame_number  Start Frame
        Unsigned 16-bit integer
    wmx.rep_rsp.report_type.rssi_report  RSSI Report
        Byte array
    wmx.rep_rsp.report_type.rssi_report_deviation  RSSI Standard Deviation
        Unsigned 8-bit integer
    wmx.rep_rsp.report_type.rssi_report_mean  RSSI Mean
        Unsigned 8-bit integer
    wmx.rep_rsp.zone_spec_effective_cinr_report  Zone-specific Effective CINR Report
        Byte array
    wmx.rep_rsp.zone_spec_effective_cinr_report.amc_aas  AMC AAS Zone
        Byte array
    wmx.rep_rsp.zone_spec_effective_cinr_report.fusc  FUSC Zone
        Byte array
    wmx.rep_rsp.zone_spec_effective_cinr_report.optional_fusc  Optional FUSC Zone
        Byte array
    wmx.rep_rsp.zone_spec_effective_cinr_report.pusc_sc0  PUSC Zone (use all SC=0)
        Byte array
    wmx.rep_rsp.zone_spec_effective_cinr_report.pusc_sc1  PUSC Zone (use all SC=1)
        Byte array
    wmx.rep_rsp.zone_spec_phy_cinr_report  Zone-specific Physical CINR Report
        Byte array
    wmx.rep_rsp.zone_spec_phy_cinr_report.amc  AMC Zone
        Byte array
    wmx.rep_rsp.zone_spec_phy_cinr_report.fusc  FUSC Zone
        Byte array
    wmx.rep_rsp.zone_spec_phy_cinr_report.optional_fusc  Optional FUSC Zone
        Byte array
    wmx.rep_rsp.zone_spec_phy_cinr_report.pusc_sc0  PUSC Zone (use all SC=0)
        Byte array
    wmx.rep_rsp.zone_spec_phy_cinr_report.pusc_sc1  PUSC Zone (use all SC=1)
        Byte array
    wmx.rep_rsp.zone_spec_phy_cinr_report.safety_channel  Safety Channel
        Byte array

WiMax RES-CMD Message (wmx.res)

    wmx.macmgtmsgtype.res_cmd  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.res_cmd.invalid_tlv  Invalid TLV
        Byte array
    wmx.res_cmd.unknown_tlv_type  Unknown TLV type
        Byte array

WiMax RNG-REQ/RSP Messages (wmx.rng)

    wmx.macmgtmsgtype.rng_req  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.rng_rsp  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.rng.power_save.activate  Activation of Power Saving Class (Types 1 and 2 only)
        Boolean
    wmx.rng.power_save.class_id  Power Saving Class ID
        Unsigned 8-bit integer
    wmx.rng.power_save.class_type  Power Saving Class Type
        Unsigned 8-bit integer
    wmx.rng.power_save.definition_present  Definition of Power Saving Class present
        Unsigned 8-bit integer
    wmx.rng.power_save.final_sleep_window_base  Final-sleep window base (measured in frames)
        Unsigned 8-bit integer
    wmx.rng.power_save.final_sleep_window_exp  Final-sleep window exponent (measured in frames)
        Unsigned 8-bit integer
    wmx.rng.power_save.first_sleep_window_frame  Start frame number for first sleep window
        Unsigned 8-bit integer
    wmx.rng.power_save.included_cid  CID of connection to be included into the Power Saving Class.
        Unsigned 16-bit integer
    wmx.rng.power_save.initial_sleep_window  Initial-sleep window
        Unsigned 8-bit integer
    wmx.rng.power_save.listening_window  Listening window duration (measured in frames)
        Unsigned 8-bit integer
    wmx.rng.power_save.mgmt_connection_direction  Direction for management connection added to Power Saving Class
        Unsigned 8-bit integer
    wmx.rng.power_save.reserved  Reserved
        Unsigned 8-bit integer
    wmx.rng.power_save.slpid  SLPID assigned by the BS whenever an MS is instructed to enter sleep mode
        Unsigned 8-bit integer
    wmx.rng.power_save.trf_ind_required  BS shall transmit at least one TRF-IND message during each listening window of the Power Saving Class
        Boolean
    wmx.rng_req.aas_broadcast  AAS broadcast capability
        Boolean
    wmx.rng_req.anomalies.max_power  Meaning
        Boolean
    wmx.rng_req.anomalies.min_power  Meaning
        Boolean
    wmx.rng_req.anomalies.timing_adj  Meaning
        Boolean
    wmx.rng_req.cmac_key_count  CMAC Key Count
        Unsigned 16-bit integer
    wmx.rng_req.dl_burst_profile.ccc  LSB of CCC of DCD associated with DIUC
        Unsigned 8-bit integer
    wmx.rng_req.dl_burst_profile.diuc  DIUC
        Unsigned 8-bit integer
    wmx.rng_req.ho_id  ID from the target BS for use in initial ranging during MS handover to it
        Unsigned 8-bit integer
    wmx.rng_req.invalid_tlv  Invalid TLV
        Byte array
    wmx.rng_req.power_down_indicator  Power down Indicator
        Unsigned 8-bit integer
    wmx.rng_req.ranging_purpose.ho_indication  MS HO indication
        Unsigned 8-bit integer
    wmx.rng_req.ranging_purpose.loc_update_req  Location Update Request
        Unsigned 8-bit integer
    wmx.rng_req.ranging_purpose.reserved  Reserved
        Unsigned 8-bit integer
    wmx.rng_req.repetition_coding_level  Repetition coding level
        Unsigned 8-bit integer
    wmx.rng_req.reserved  Reserved
        Unsigned 8-bit integer
    wmx.rng_req.serving_bs_id  Former serving BS ID
        6-byte Hardware (MAC) Address
    wmx.rng_req.ss_mac_address  SS MAC Address
        6-byte Hardware (MAC) Address
    wmx.rng_req.unknown_tlv_type  Unknown TLV Type
        Byte array
    wmx.rng_rsp.aas_broadcast  AAS broadcast permission
        Boolean
    wmx.rng_rsp.akid  AKId
        Byte array
    wmx.rng_rsp.basic_cid  Basic CID
        Unsigned 16-bit integer
    wmx.rng_rsp.bs_random  BS_Random
        Byte array
    wmx.rng_rsp.config_change_count_of_dcd  Configuration Change Count value of DCD defining DIUC associated burst profile
        Unsigned 16-bit integer
    wmx.rng_rsp.dl_freq_override  Downlink Frequency Override
        Unsigned 32-bit integer
    wmx.rng_rsp.dl_op_burst_prof.ccc  CCC value of DCD defining the burst profile associated with DIUC
        Unsigned 16-bit integer
    wmx.rng_rsp.dl_op_burst_prof.diuc  The least robust DIUC that may be used by the BS for transmissions to the SS
        Unsigned 16-bit integer
    wmx.rng_rsp.dl_op_burst_profile  Downlink Operational Burst Profile
        Unsigned 16-bit integer
    wmx.rng_rsp.dl_op_burst_profile_ofdma  Downlink Operational Burst Profile for OFDMA
        Unsigned 16-bit integer
    wmx.rng_rsp.eight_bit_frame_num  The 8 least significant bits of the frame number of the OFDMA frame where the SS sent the ranging code
        Unsigned 32-bit integer
    wmx.rng_rsp.frame_number  Frame number
        Unsigned 24-bit integer
    wmx.rng_rsp.ho_id  HO ID
        Unsigned 8-bit integer
    wmx.rng_rsp.ho_process_optimization  HO Process Optimization
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.omit_network_address  Bit #3
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.omit_reg_req  Bit #7
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.omit_sbc_req  Bit #0
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.omit_tftp  Bit #5
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.omit_time_of_day  Bit #4
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.perform_reauthentication  Bits #1-2
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.post_ho_reentry  Bit #9
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.reserved  Bit #14: Reserved
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.send_notification  Bit #12
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.transfer_or_sharing  Bit #6
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.trigger_higher_layer_protocol  Bit #13
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.unsolicited_reg_rsp  Bit #10
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.unsolicited_sbc_rsp  Bit #8
        Unsigned 16-bit integer
    wmx.rng_rsp.ho_process_optimization.virtual_sdu_sn  Bit #11
        Unsigned 16-bit integer
    wmx.rng_rsp.invalid_tlv  Invalid TLV
        Byte array
    wmx.rng_rsp.least_robust_diuc  Least Robust DIUC that may be used by the BS for transmissions to the MS
        Unsigned 16-bit integer
    wmx.rng_rsp.location_update_response  Location Update Response
        Unsigned 8-bit integer
    wmx.rng_rsp.offset_freq_adjust  Offset Frequency Adjust
        Signed 32-bit integer
    wmx.rng_rsp.opportunity_number  Initial ranging opportunity number
        Unsigned 8-bit integer
    wmx.rng_rsp.paging_cycle  Paging Cycle
        Unsigned 16-bit integer
    wmx.rng_rsp.paging_group_id  Paging Group ID
        Unsigned 16-bit integer
    wmx.rng_rsp.paging_information  Paging Information
        Byte array
    wmx.rng_rsp.paging_offset  Paging Offset
        Unsigned 8-bit integer
    wmx.rng_rsp.power_level_adjust  Power Level Adjust
        Single-precision floating point
    wmx.rng_rsp.primary_mgmt_cid  Primary Management CID
        Unsigned 16-bit integer
    wmx.rng_rsp.ranging_code_index  The ranging code index that was sent by the SS
        Unsigned 32-bit integer
    wmx.rng_rsp.ranging_status  Ranging status
        Unsigned 8-bit integer
    wmx.rng_rsp.ranging_subchannel  Ranging code attributes
        Unsigned 32-bit integer
    wmx.rng_rsp.repetition_coding_indication  Repetition Coding Indication
        Unsigned 16-bit integer
    wmx.rng_rsp.reserved  Reserved
        Unsigned 8-bit integer
    wmx.rng_rsp.resource_retain_flag  The connection information for the MS is
        Boolean
    wmx.rng_rsp.service_level_prediction  Service Level Prediction
        Unsigned 8-bit integer
    wmx.rng_rsp.ss_mac_address  SS MAC Address
        6-byte Hardware (MAC) Address
    wmx.rng_rsp.subchannel_reference  OFDMA subchannel reference used to transmit the ranging code
        Unsigned 32-bit integer
    wmx.rng_rsp.time_symbol_reference  OFDM time symbol reference used to transmit the ranging code
        Unsigned 32-bit integer
    wmx.rng_rsp.timing_adjust  Timing Adjust
        Single-precision floating point
    wmx.rng_rsp.tlv_value  Value
        Byte array
    wmx.rng_rsp.ul_chan_id  Uplink Channel ID
        Unsigned 8-bit integer
    wmx.rng_rsp.ul_chan_id_override  Uplink channel ID Override
        Unsigned 8-bit integer
    wmx.rng_rsp.unknown_tlv_type  Unknown TLV Type
        Byte array

WiMax SBC-REQ/RSP Messages (wmx.sbc)

    wmx.macmgtmsgtype.sbc_req  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.macmgtmsgtype.sbc_rsp  MAC Management Message Type
        Unsigned 8-bit integer
    wmx.sbc.association_type_support  Association Type Support
        Unsigned 8-bit integer
    wmx.sbc.association_type_support.bit0  Scanning Without Association: association not supported
        Boolean
    wmx.sbc.association_type_support.bit1  Association Level 0: scanning or association without coordination
        Boolean
    wmx.sbc.association_type_support.bit2  Association Level 1: association with coordination
        Boolean
    wmx.sbc.association_type_support.bit3  Association Level 2: network assisted association
        Boolean
    wmx.sbc.association_type_support.bit4  Desired Association Support
        Boolean
    wmx.sbc.association_type_support.reserved  Reserved
        Unsigned 8-bit integer
    wmx.sbc.auth_policy  Authorization Policy Support
        Unsigned 8-bit integer
    wmx.sbc.auth_policy.802_16  IEEE 802.16 Privacy
        Boolean
    wmx.sbc.auth_policy.rsvd  Reserved
        Unsigned 8-bit integer
    wmx.sbc.bw_alloc_support  Bandwidth Allocation Support
        Unsigned 8-bit integer
    wmx.sbc.bw_alloc_support.duplex  Duplex
        Boolean
    wmx.sbc.bw_alloc_support.rsvd0  Reserved
        Unsigned 8-bit integer
    wmx.sbc.bw_alloc_support.rsvd1  Reserved
        Unsigned 8-bit integer
    wmx.sbc.curr_transmit_power  Current transmitted power
        Unsigned 8-bit integer
    wmx.sbc.effective_cinr_measure_permutation_zone.data_subcarriers  Effective CINR Measurement For A Permutation Zone From Data Subcarriers
        Boolean
    wmx.sbc.effective_cinr_measure_permutation_zone.pilot_subcarriers  Effective CINR Measurement For A Permutation Zone From Pilot Subcarriers
        Boolean
    wmx.sbc.effective_cinr_measure_permutation_zone_preamble  Effective CINR Measurement For A Permutation Zone From Preamble
        Boolean
    wmx.sbc.extension_capability  Extension Capability
        Unsigned 8-bit integer
    wmx.sbc.extension_capability.bit0  Supported Extended Subheader Format
        Boolean
    wmx.sbc.extension_capability.reserved  Reserved
        Unsigned 8-bit integer
    wmx.sbc.frequency_selectivity_characterization_report  Frequency Selectivity Characterization Report
        Boolean
    wmx.sbc.harq_chase_combining_and_cc_ir_buffer_capability  HARQ Chase Combining And CC-IR Buffer Capability
        Unsigned 16-bit integer
    wmx.sbc.harq_chase_combining_and_cc_ir_buffer_capability.aggregation_flag_dl  Aggregation Flag For DL
        Unsigned 16-bit integer
    wmx.sbc.harq_chase_combining_and_cc_ir_buffer_capability.aggregation_flag_ul  Aggregation Flag for UL
        Unsigned 16-bit integer
    wmx.sbc.harq_chase_combining_and_cc_ir_buffer_capability.dl_harq_buffering_capability_for_chase_combining  Downlink HARQ Buffering Capability For Chase Combining (K)
        Unsigned 16-bit integer
    wmx.sbc.harq_chase_combining_and_cc_ir_buffer_capability.reserved1  Reserved
        Unsigned 16-bit integer
    wmx.sbc.harq_chase_combining_and_cc_ir_buffer_capability.reserved2  Reserved
        Unsigned 16-bit integer
    wmx.sbc.harq_chase_combining_and_cc_ir_buffer_capability.ul_harq_buffering_capability_for_chase_combining  Uplink HARQ buffering capability for chase combining (K)
        Unsigned 16-bit integer
    wmx.sbc.harq_incremental_redundancy_buffer_capability  HARQ Incremental Buffer Capability
        Unsigned 16-bit integer
    wmx.sbc.harq_incremental_redundancy_buffer_capability.aggregation_flag_for_dl  Aggregation Flag for DL
        Unsigned 16-bit integer
    wmx.sbc.harq_incremental_redundancy_buffer_capability.aggregation_flag_for_ul  Aggregation Flag For UL
        Unsigned 16-bit integer
    wmx.sbc.harq_incremental_redundancy_buffer_capability.dl_incremental_redundancy_ctc  NEP Value Indicating Downlink HARQ Buffering Capability For Incremental Redundancy CTC
        Unsigned 16-bit integer
    wmx.sbc.harq_incremental_redundancy_buffer_capability.reserved  Reserved
        Unsigned 16-bit integer
    wmx.sbc.harq_incremental_redundancy_buffer_capability.reserved2  Reserved
        Unsigned 16-bit integer
    wmx.sbc.harq_incremental_redundancy_buffer_capability.ul_incremental_redundancy_ctc  NEP Value Indicating Uplink HARQ Buffering Capability For Incremental Redundancy CTC
        Unsigned 16-bit integer
    wmx.sbc.harq_map_capability  H-ARQ MAP Capability
        Boolean
    wmx.sbc.ho_trigger_metric_support  HO Trigger Metric Support
        Unsigned 8-bit integer
    wmx.sbc.ho_trigger_metric_support.bit0  BS CINR Mean
        Boolean
    wmx.sbc.ho_trigger_metric_support.bit1  BS RSSI Mean
        Boolean
    wmx.sbc.ho_trigger_metric_support.bit2  BS Relative Delay
        Boolean
    wmx.sbc.ho_trigger_metric_support.bit3  BS RTD
        Boolean
    wmx.sbc.ho_trigger_metric_support.reserved  Reserved
        Unsigned 8-bit integer
    wmx.sbc.invalid_tlv  Invalid TLV
        Byte array
    wmx.sbc.mac_pdu  Capabilities For Construction And Transmission Of MAC PDUs
        Unsigned 8-bit integer
    wmx.sbc.mac_pdu.bit0  Ability To Receive Requests Piggybacked With Data
        Boolean
    wmx.sbc.mac_pdu.bit1  Ability To Use 3-bit FSN Values Used When Forming MAC PDUs On Non-ARQ Connections
        Boolean
    wmx.sbc.mac_pdu.rsvd  Reserved
        Unsigned 8-bit integer
    wmx.sbc.max_num_bst_per_frm_capability_harq  Maximum Number Of Burst Per Frame Capability In HARQ
        Unsigned 8-bit integer
    wmx.sbc.max_num_bst_per_frm_capability_harq.max_num_dl_harq_bst_per_harq_per_frm  Maximum Numbers Of DL HARQ Bursts Per HARQ Enabled Of MS Per Frame (default(0)=1)
        Unsigned 8-bit integer
    wmx.sbc.max_num_bst_per_frm_capability_harq.max_num_ul_harq_bst  Maximum Number Of UL HARQ Burst Per HARQ Enabled MS Per Frame (default(0)=1)
        Unsigned 8-bit integer
    wmx.sbc.max_num_bst_per_frm_capability_harq.max_num_ul_harq_per_frm_include_one_non_harq_bst  Whether The Maximum Number Of UL HARQ Bursts Per Frame (i.e. Bits# 2-0) Includes The One Non-HARQ Burst
        Boolean
    wmx.sbc.max_security_associations  Maximum Number Of Security Association Supported By The SS
        Unsigned 8-bit integer
    wmx.sbc.max_transmit_power  Maximum Transmit Power
        Unsigned 32-bit integer
    wmx.sbc.number_dl_arq_ack_channel  The Number Of DL HARQ ACK Channel
        Unsigned 8-bit integer
    wmx.sbc.number_ul_arq_ack_channel  The Number Of UL HARQ ACK Channel
        Unsigned 8-bit integer
    wmx.sbc.ofdma_aas_capabilities.rsvd  Reserved
        Unsigned 16-bit integer
    wmx.sbc.ofdma_aas_capability  OFDMA AAS Capability
        Unsigned 16-bit integer
    wmx.sbc.ofdma_aas_diversity_map_scan  AAS Diversity Map Scan (AAS DLFP)
        Boolean
    wmx.sbc.ofdma_aas_fbck_rsp_support  AAS-FBCK-RSP Support
        Boolean
    wmx.sbc.ofdma_aas_zone  AAS Zone
        Boolean
    wmx.sbc.ofdma_downlink_aas_preamble  Downlink AAS Preamble
        Boolean
    wmx.sbc.ofdma_map_capability.dl_region_definition_support  DL Region Definition Support
        Boolean
    wmx.sbc.ofdma_map_capability.extended_harq  Support For Extended HARQ
        Unsigned 8-bit integer
    wmx.sbc.ofdma_map_capability.extended_harq_ie_capability  Extended HARQ IE Capability
        Boolean
    wmx.sbc.ofdma_map_capability.harq_map_capability  HARQ MAP Capability
        Boolean
    wmx.sbc.ofdma_map_capability.reserved  Reserved
        Unsigned 8-bit integer
    wmx.sbc.ofdma_map_capability.sub_map_capability_first_zone  Sub MAP Capability For First Zone
        Boolean
    wmx.sbc.ofdma_map_capability.sub_map_capability_other_zones  Sub MAP Capability For Other Zones
        Boolean
    wmx.sbc.ofdma_ms_csit_capability  OFDMA MS CSIT Capability
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ms_csit_capability.csit_compatibility_type_a  CSIT Compatibility Type A
        Boolean
    wmx.sbc.ofdma_ms_csit_capability.csit_compatibility_type_b  CSIT Compatibility Type B
        Boolean
    wmx.sbc.ofdma_ms_csit_capability.max_num_simultaneous_sounding_instructions  Max Number Of Simultaneous Sounding Instructions
        Unsigned 16-bit integer
    wmx.sbc.ofdma_ms_csit_capability.power_assignment_capability  Power Assignment Capability
        Boolean
    wmx.sbc.ofdma_ms_csit_capability.reserved  Reserved
        Unsigned 16-bit integer
    wmx.sbc.ofdma_ms_csit_capability.sounding_response_time_capability  Sounding Response Time Capability
        Unsigned 16-bit integer
    wmx.sbc.ofdma_ms_csit_capability.type_a_support  SS Does Not Support P Values Of 9 And 18 When Supporting CSIT Type A
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl  OFDMA MS Demodulator For MIMO Support In DL
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit0  2-antenna STC Matrix A
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit1  2-antenna STC Matrix B, vertical coding
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit10  3-antenna STC Matrix C, vertical coding
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit11  3-antenna STC Matrix C, horizontal coding
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit12  Capable Of Calculating Precoding Weight
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit13  Capable Of Adaptive Rate Control
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit14  Capable Of Calculating Channel Matrix
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit15  Capable Of Antenna Grouping
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit16  Capable Of Antenna Selection
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit17  Capable Of Codebook Based Precoding
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit18  Capable Of Long-term Precoding
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit19  Capable Of MIMO Midamble
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit2  Four Receive Antennas
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit3  4-antenna STC Matrix A
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit4  4-antenna STC Matrix B, vertical coding
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit5  4-antenna STC Matrix B, horizontal coding
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit6  4-antenna STC Matrix C, vertical coding
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit7  4-antenna STC Matrix C, horizontal coding
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit8  3-antenna STC Matrix A
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.bit9  3-antenna STC Matrix B
        Boolean
    wmx.sbc.ofdma_ms_demodulator_for_mimo_support_in_dl.reserved  Reserved
        Unsigned 24-bit integer
    wmx.sbc.ofdma_multiple_dl_burst_profile_support  OFDMA Multiple Downlink Burst Profile Capability
        Unsigned 8-bit integer
    wmx.sbc.ofdma_multiple_dl_burst_profile_support.dl_bst_profile_for_multiple_fec  Downlink burst profile for multiple FEC types
        Boolean
    wmx.sbc.ofdma_multiple_dl_burst_profile_support.reserved  Reserved
        Unsigned 8-bit integer
    wmx.sbc.ofdma_multiple_dl_burst_profile_support.ul_burst_profile_for_multiple_fec_types  Uplink burst profile for multiple FEC types
        Boolean
    wmx.sbc.ofdma_parameters_sets  OFDMA parameters sets
        Unsigned 8-bit integer
    wmx.sbc.ofdma_parameters_sets.harq_parameters_set  HARQ parameters set
        Unsigned 8-bit integer
    wmx.sbc.ofdma_parameters_sets.mac_set_a  Support OFDMA MAC parameters set A
        Unsigned 8-bit integer
    wmx.sbc.ofdma_parameters_sets.mac_set_b  Support OFDMA MAC parameters set B
        Unsigned 8-bit integer
    wmx.sbc.ofdma_parameters_sets.phy_set_a  Support OFDMA PHY parameter set A
        Unsigned 8-bit integer
    wmx.sbc.ofdma_parameters_sets.phy_set_b  Support OFDMA PHY parameter set B
        Unsigned 8-bit integer
    wmx.sbc.ofdma_parameters_sets.reserved  Reserved
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_cinr_measure_capability  OFDMA SS CINR Measurement Capability
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_mimo_uplink_support  OFDMA SS MIMO uplink support
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_mimo_uplink_support.2_antenna_sm_with_vertical_coding  2-antenna SM with vertical coding
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_mimo_uplink_support.2_antenna_sttd  2-antenna STTD
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_mimo_uplink_support.single_antenna_coop_sm  Single-antenna cooperative SM
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_modulator_for_mimo_support  OFDMA SS Modulator For MIMO Support
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.capable_adaptive_rate_control  Capable Of Adaptive Rate Control
        Boolean
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.capable_beamforming  Capable Of Beamforming
        Boolean
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.capable_of_spatial_multiplexing  Capable of spatial multiplexing
        Boolean
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.capable_of_transmit_diversity  Capable of transmit diversity
        Boolean
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.capable_of_two_antenna  Capable of two antenna
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.capable_single_antenna  Capable of single antenna transmission
        Boolean
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.collaborative_sm_with_one_antenna  Capable of collaborative SM with one antenna
        Boolean
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.collaborative_sm_with_two_antennas  Collaborative SM with two antennas
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.rsvd  Reserved
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.stc_matrix_a  Capable of 2-antenna STC Matrix A
        Boolean
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.stc_matrix_b_horizontal  Capable of 2-antenna STC Matrix B, Horizontal coding
        Boolean
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.stc_matrix_b_vertical  Capable of 2-antenna STC Matrix B, Vertical coding
        Boolean
    wmx.sbc.ofdma_ss_modulator_for_mimo_support.two_transmit_antennas  Two transmit antennas
        Boolean
    wmx.sbc.ofdma_ss_uplink_power_control_support  OFDMA SS uplink power control support
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_uplink_power_control_support.aas_preamble  AAS preamble
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_uplink_power_control_support.minimum_num_of_frames  The Minimum Number Of Frames That SS Takes To Switch From The Open Loop Power Control Scheme To The Closed Loop Power Control Scheme Or Vice Versa
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_uplink_power_control_support.open_loop  Open loop
        Unsigned 8-bit integer
    wmx.sbc.ofdma_ss_uplink_power_control_support.rsvd  Reserved
        Unsigned 8-bit integer
    wmx.sbc.ofdma_uplink_aas_preamble  Uplink AAS Preamble
        Boolean
    wmx.sbc.phy_cinr_measure_permutation_zone.data_subcarriers  Physical CINR Measurement For A Permutation Zone From Data Subcarriers
        Boolean
    wmx.sbc.phy_cinr_measure_permutation_zone.pilot_subcarriers  Physical CINR Measurement For A Permutation Zone From Pilot Subcarriers
        Boolean
    wmx.sbc.phy_cinr_measure_preamble  Physical CINR Measurement From The Preamble
        Boolean
    wmx.sbc.pkm_flow_control  PKM Flow Control
        Unsigned 8-bit integer
    wmx.sbc.power_save_class_types_capability  Power Save Class Types Capability
        Unsigned 8-bit integer
    wmx.sbc.power_save_class_types_capability.bit0  Power Save Class Type I
        Boolean
    wmx.sbc.power_save_class_types_capability.bit1  Power Save Class Type II
        Boolean
    wmx.sbc.power_save_class_types_capability.bit2  Power Save Class Type III
        Boolean
    wmx.sbc.power_save_class_types_capability.bits34  Number Of Power Save Class Type Instances Supported From Class Type I and II
        Unsigned 8-bit integer
    wmx.sbc.power_save_class_types_capability.bits567  Number Of Power Save Class Type Instances Supported From Class Type III
        Unsigned 8-bit integer
    wmx.sbc.private_chain_enable  Private Map Chain Enable
        Boolean
    wmx.sbc.private_map_concurrency  Private Map Chain Concurrency
        Unsigned 8-bit integer
    wmx.sbc.private_map_dl_frame_offset  Private Map DL Frame Offset
        Boolean
    wmx.sbc.private_map_support  Private Map Support
        Boolean
    wmx.sbc.private_map_support.ofdma_aas  OFDMA AAS Private Map Support
        Unsigned 8-bit integer
    wmx.sbc.private_map_support.reduced  Reduced Private Map Support
        Boolean
    wmx.sbc.private_ul_frame_offset  Private Map UL Frame Offset
        Boolean
    wmx.sbc.sdma_pilot_capability  SDMA Pilot Capability
        Unsigned 8-bit integer
    wmx.sbc.sdma_pilot_capability.reserved  Reserved
        Unsigned 8-bit integer
    wmx.sbc.sdma_pilot_capability.sdma_pilot_pattern_support_for_amc_zone  SDMA Pilot Patterns Support For AMC Zone
        Unsigned 8-bit integer
    wmx.sbc.ss_demodulator  OFDMA SS Demodulator
        Byte array
    wmx.sbc.ss_demodulator.64qam  64-QAM
        Boolean
    wmx.sbc.ss_demodulator.btc  BTC
        Boolean
    wmx.sbc.ss_demodulator.cc_with_optional_interleaver  CC with Optional Interleaver
        Boolean
    wmx.sbc.ss_demodulator.ctc  CTC
        Boolean
    wmx.sbc.ss_demodulator.dedicated_pilots  Dedicated Pilots
        Boolean
    wmx.sbc.ss_demodulator.harq.cc.ir  HARQ CC_IR
        Boolean
    wmx.sbc.ss_demodulator.harq.chase  HARQ Chase
        Boolean
    wmx.sbc.ss_demodulator.harq.ctc.ir  HARQ CTC_IR
        Boolean
    wmx.sbc.ss_demodulator.ldpc  LDPC
        Boolean
    wmx.sbc.ss_demodulator.mimo.2.antenna.stc.matrix.a  2-antenna STC Matrix A
        Boolean
    wmx.sbc.ss_demodulator.mimo.2.antenna.stc.matrix.b.horizontal  2-antenna STC Matrix B, horizontal coding
        Boolean
    wmx.sbc.ss_demodulator.mimo.2.antenna.stc.matrix.b.vertical  2-antenna STC Matrix B, vertical coding
        Boolean
    wmx.sbc.ss_demodulator.mimo.4.antenna.stc.matrix.a  4-antenna STC Matrix A
        Boolean
    wmx.sbc.ss_demodulator.mimo.4.antenna.stc.matrix.b.horizontal  4-antenna STC Matrix B, horizontal coding
        Boolean
    wmx.sbc.ss_demodulator.mimo.4.antenna.stc.matrix.b.vertical  4-antenna STC Matrix B, vertical coding
        Boolean
    wmx.sbc.ss_demodulator.mimo.4.antenna.stc.matrix.c.horizontal  4-antenna STC Matrix C, horizontal coding
        Boolean
    wmx.sbc.ss_demodulator.mimo.4.antenna.stc.matrix.c.vertical  4-antenna STC Matrix C, vertical coding
        Boolean
    wmx.sbc.ss_demodulator.mimo.reserved  Reserved
        Unsigned 16-bit integer
    wmx.sbc.ss_demodulator.mimo.support  OFDMA SS Demodulator For MIMO Support
        Unsigned 16-bit integer
    wmx.sbc.ss_demodulator.reserved1  Reserved
        Unsigned 8-bit integer
    wmx.sbc.ss_demodulator.reserved2  Reserved
        Unsigned 16-bit integer
    wmx.sbc.ss_demodulator.stc  STC
        Boolean
    wmx.sbc.ss_fft_sizes  OFDMA SS FFT Sizes
        Unsigned 8-bit integer
    wmx.sbc.ss_fft_sizes.1024  FFT-1024
        Boolean
    wmx.sbc.ss_fft_sizes.128  FFT-128
        Boolean
    wmx.sbc.ss_fft_sizes.2048  FFT-2048
        Boolean
    wmx.sbc.ss_fft_sizes.256  FFT-256
        Boolean
    wmx.sbc.ss_fft_sizes.512  FFT-512
        Boolean
    wmx.sbc.ss_fft_sizes.rsvd2  Reserved
        Unsigned 8-bit integer
    wmx.sbc.ss_mimo_ul_support.rsvd  Reserved
        Unsigned 8-bit integer
    wmx.sbc.ss_minimum_num_of_frames  SS minimum number of frames
        Unsigned 8-bit integer
    wmx.sbc.ss_modulator  OFDMA SS Modulator
        Unsigned 8-bit integer
    wmx.sbc.ss_modulator.64qam  64-QAM
        Boolean
    wmx.sbc.ss_modulator.btc  BTC
        Boolean
    wmx.sbc.ss_modulator.cc_ir  CC_IR
        Boolean
    wmx.sbc.ss_modulator.ctc  CTC
        Boolean
    wmx.sbc.ss_modulator.ctc_ir  CTC_IR
        Boolean
    wmx.sbc.ss_modulator.harq_chase  HARQ Chase
        Boolean
    wmx.sbc.ss_modulator.ldpc  LDPC
        Boolean
    wmx.sbc.ss_modulator.stc  STC
        Boolean
    wmx.sbc.ss_permutation_support  OFMDA SS Permutation Support
        Unsigned 8-bit integer
    wmx.sbc.ss_permutation_support.amc_1x6  AMC 1x6
        Boolean
    wmx.sbc.ss_permutation_support.amc_2x3  AMC 2x3
        Boolean
    wmx.sbc.ss_permutation_support.amc_3x2  AMC 3x2
        Boolean
    wmx.sbc.ss_permutation_support.amc_support_harq_map  AMC Support With H-ARQ Map
        Boolean
    wmx.sbc.ss_permutation_support.optimal_fusc  Optional FUSC
        Boolean
    wmx.sbc.ss_permutation_support.optimal_pusc  Optional PUSC
        Boolean
    wmx.sbc.ss_permutation_support.tusc1_support  TUSC1
        Boolean
    wmx.sbc.ss_permutation_support.tusc2_support  TUSC2
        Boolean
    wmx.sbc.ssrtg  SSRTG
        Unsigned 8-bit integer
    wmx.sbc.ssttg  SSTTG
        Unsigned 8-bit integer
    wmx.sbc.support_2_concurrent_cqi_channels  Support for 2 Concurrent CQI Channels
        Boolean
    wmx.sbc.transition_gaps  Subscriber Transition Gaps
        Unsigned 16-bit integer
    wmx.sbc.ul_ctl_channel_support  Uplink Control Channel Support
        Unsigned 8-bit integer
    wmx.sbc.ul_ctl_channel_support.3bit_mimo_fast_feedback  3-bit MIMO Fast-feedback
        Boolean
    wmx.sbc.ul_ctl_channel_support.diuc_cqi_fast_feedback  DIUC-CQI Fast-feedback
        Boolean
    wmx.sbc.ul_ctl_channel_support.enhanced_fast_feedback  Enhanced Fast_feedback
        Boolean
    wmx.sbc.ul_ctl_channel_support.measurement_report  A Measurement Report Shall Be Performed On The Last DL Burst
        Boolean
    wmx.sbc.ul_ctl_channel_support.primary_secondary_fast_feedback  Primary/Secondary FAST_FEEDBACK
        Boolean
    wmx.sbc.ul_ctl_channel_support.reserved  Reserved
        Unsigned 8-bit integer
    wmx.sbc.ul_ctl_channel_support.uep_fast_feedback  UEP Fast-feedback
        Boolean
    wmx.sbc.ul_ctl_channel_support.ul_ack  UL ACK
        Boolean
    wmx.sbc.unknown_tlv_type  Unknown SBC type
        Byte array
    wmx.sbc_ss_fft_sizes_rsvd1  Reserved
        Unsigned 8-bit integer

WiMax Sub-TLV Messages (wmx.sub)

    wmx.cmac_tuple.bsid  BSID
        6-byte Hardware (MAC) Address
    wmx.cmac_tuple.cmac.value  CMAC Value
        Byte array
    wmx.common_tlv.mac_version  MAC Version
        Unsigned 8-bit integer
    wmx.common_tlv.unknown_type  Unknown Common TLV Type
        Byte array
    wmx.common_tlv.vendor_id_encoding  Vendor ID Encoding
        Byte array
    wmx.common_tlv.vendor_specific_length  Vendor Specific Length
        Unsigned 16-bit integer
    wmx.common_tlv.vendor_specific_length_size  Vendor Specific Length Size
        Unsigned 8-bit integer
    wmx.common_tlv.vendor_specific_type  Vendor Specific Type
        Unsigned 8-bit integer
    wmx.common_tlv.vendor_specific_value  Vendor Specific Value
        Byte array
    wmx.csper.atm_classifier  ATM Classifier TLV
        Byte array
    wmx.csper.atm_classifier_tlv  Classifier ID
        Unsigned 16-bit integer
    wmx.csper.atm_classifier_vci  VCI Classifier
        Unsigned 16-bit integer
    wmx.csper.atm_classifier_vpi  VPI Classifier
        Unsigned 16-bit integer
    wmx.csper.atm_switching_encoding  ATM Switching Encoding
        Unsigned 8-bit integer
    wmx.csper.unknown_type  Unknown CSPER TLV type
        Byte array
    wmx.cst.classifier_action  Classifier DSC Action
        Unsigned 8-bit integer
    wmx.cst.error_set.error_code  Error Code
        Unsigned 8-bit integer
    wmx.cst.error_set.error_msg  Error Message
        NULL terminated string
    wmx.cst.error_set.errored_param  Errored Parameter
        Byte array
    wmx.cst.invalid_tlv  Invalid TLV
        Byte array
    wmx.cst.large_context_id  Large Context ID
        Unsigned 16-bit integer
    wmx.cst.phs.vendor_spec  Vendor-Specific PHS Parameters
        Byte array
    wmx.cst.phs_dsc_action  PHS DSC action
        Unsigned 8-bit integer
    wmx.cst.phs_rule  PHS Rule
        Byte array
    wmx.cst.phs_rule.phsf  PHSF
        Byte array
    wmx.cst.phs_rule.phsi  PHSI
        Unsigned 8-bit integer
    wmx.cst.phs_rule.phsm  PHSM (bit x: 0-don't suppress the (x+1) byte; 1-suppress the (x+1) byte)
        Byte array
    wmx.cst.phs_rule.phss  PHSS
        Unsigned 8-bit integer
    wmx.cst.phs_rule.phsv  PHSV
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule  Packet Classification Rule
        Byte array
    wmx.cst.pkt_class_rule.classifier.action.rule  Classifier Action Rule
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.classifier.action.rule.bit0  Bit #0
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.classifier.action.rule.reserved  Reserved
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.dest_mac_address  802.3/Ethernet Destination MAC Address
        Byte array
    wmx.cst.pkt_class_rule.dst_ipv4  IPv4 Destination Address
        IPv4 address
    wmx.cst.pkt_class_rule.dst_ipv6  IPv6 Destination Address
        IPv6 address
    wmx.cst.pkt_class_rule.dst_mac  Destination MAC Address
        6-byte Hardware (MAC) Address
    wmx.cst.pkt_class_rule.dst_port_high  Dst-Port High
        Unsigned 16-bit integer
    wmx.cst.pkt_class_rule.dst_port_low  Dst-Port Low
        Unsigned 16-bit integer
    wmx.cst.pkt_class_rule.eprot1  Eprot1
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.eprot2  Eprot2
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.ethertype  Ethertype/IEEE Std 802.2-1998 SAP
        Byte array
    wmx.cst.pkt_class_rule.index  Packet Classifier Rule Index (PCRI)
        Unsigned 16-bit integer
    wmx.cst.pkt_class_rule.ip_masked_dest_address  IP Masked Destination Address
        Byte array
    wmx.cst.pkt_class_rule.ip_masked_src_address  IP Masked Source Address
        Byte array
    wmx.cst.pkt_class_rule.ipv6_flow_label  IPv6 Flow Label
        Unsigned 24-bit integer
    wmx.cst.pkt_class_rule.mask_ipv4  IPv4 Mask
        IPv4 address
    wmx.cst.pkt_class_rule.mask_ipv6  IPv6 Mask
        IPv6 address
    wmx.cst.pkt_class_rule.mask_mac  MAC Address Mask
        6-byte Hardware (MAC) Address
    wmx.cst.pkt_class_rule.phsi  Associated PHSI
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.pri-high  Pri-High
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.pri-low  Pri-Low
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.priority  Classification Rule Priority
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.prot_dest_port_range  Protocol Destination Port Range
        Byte array
    wmx.cst.pkt_class_rule.prot_src_port_range  Protocol Source Port Range
        Byte array
    wmx.cst.pkt_class_rule.protocol  Protocol
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.range_mask  ToS/Differentiated Services Codepoint (DSCP) Range And Mask
        Byte array
    wmx.cst.pkt_class_rule.src_ipv4  IPv4 Source Address
        IPv4 address
    wmx.cst.pkt_class_rule.src_ipv6  IPv6 Source Address
        IPv6 address
    wmx.cst.pkt_class_rule.src_mac  Source MAC Address
        6-byte Hardware (MAC) Address
    wmx.cst.pkt_class_rule.src_mac_address  802.3/Ethernet Source MAC Address
        Byte array
    wmx.cst.pkt_class_rule.src_port_high  Src-Port High
        Unsigned 16-bit integer
    wmx.cst.pkt_class_rule.src_port_low  Src-Port Low
        Unsigned 16-bit integer
    wmx.cst.pkt_class_rule.tos-high  ToS-High
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.tos-low  ToS-Low
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.tos-mask  ToS-Mask
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.user_priority  IEEE Std 802.1D-1998 User_Priority
        Byte array
    wmx.cst.pkt_class_rule.vendor_spec  Vendor-Specific Classifier Parameters
        Byte array
    wmx.cst.pkt_class_rule.vlan_id  IEEE Std 802.1Q-1998 VLAN_ID
        Byte array
    wmx.cst.pkt_class_rule.vlan_id1  Vlan_Id1
        Unsigned 8-bit integer
    wmx.cst.pkt_class_rule.vlan_id2  Vlan_Id2
        Unsigned 8-bit integer
    wmx.cst.short_format_context_id  Short-Format Context ID
        Unsigned 16-bit integer
    wmx.pkm.unknown.type  Unknown Type
        Byte array
    wmx.pkm_msg.pkm_attr.akid  AKID
        Byte array
    wmx.pkm_msg.pkm_attr.associated_gkek_seq_number  Associated GKEK Sequence Number
        Byte array
    wmx.pkm_msg.pkm_attr.auth_key  Auth Key
        Byte array
    wmx.pkm_msg.pkm_attr.auth_result_code  Auth Result Code
        Unsigned 8-bit integer
    wmx.pkm_msg.pkm_attr.bs_certificate  BS Certificate
        Byte array
    wmx.pkm_msg.pkm_attr.bs_random  BS_RANDOM
        Byte array
    wmx.pkm_msg.pkm_attr.ca_certificate  CA Certificate
        Byte array
    wmx.pkm_msg.pkm_attr.cbc_iv  CBC IV
        Byte array
    wmx.pkm_msg.pkm_attr.cmac_digest  CMAC Digest
        Byte array
    wmx.pkm_msg.pkm_attr.cmac_digest.pn  CMAC Packet Number counter, CMAC_PN_*
        Unsigned 32-bit integer
    wmx.pkm_msg.pkm_attr.cmac_digest.value  CMAC Value
        Byte array
    wmx.pkm_msg.pkm_attr.config_settings.authorize_reject_wait_timeout  Authorize Reject Wait Timeout(in seconds)
        Unsigned 32-bit integer
    wmx.pkm_msg.pkm_attr.config_settings.authorize_waitout  Authorize Wait Timeout (in seconds)
        Unsigned 32-bit integer
    wmx.pkm_msg.pkm_attr.config_settings.grace_time  Authorization Grace Time (in seconds)
        Unsigned 32-bit integer
    wmx.pkm_msg.pkm_attr.config_settings.operational_wait_timeout  Operational Wait Timeout (in seconds)
        Unsigned 32-bit integer
    wmx.pkm_msg.pkm_attr.config_settings.reauthorize_waitout  Reauthorize Wait Timeout (in seconds)
        Unsigned 32-bit integer
    wmx.pkm_msg.pkm_attr.config_settings.rekey_wait_timeout  Rekey Wait Timeout (in seconds)
        Unsigned 32-bit integer
    wmx.pkm_msg.pkm_attr.config_settings.tek_grace_time  TEK Grace Time (in seconds)
        Unsigned 32-bit integer
    wmx.pkm_msg.pkm_attr.crypto_suite  Cryptography
        Byte array
    wmx.pkm_msg.pkm_attr.crypto_suite.lsb  TEK Encryption Algorithm Identifiers
        Unsigned 8-bit integer
    wmx.pkm_msg.pkm_attr.crypto_suite.middle  Data Authentication Algorithm Identifiers
        Unsigned 8-bit integer
    wmx.pkm_msg.pkm_attr.crypto_suite.msb  Data Encryption Algorithm Identifiers
        Unsigned 8-bit integer
    wmx.pkm_msg.pkm_attr.display_string  Display String
        String
    wmx.pkm_msg.pkm_attr.eap_payload  EAP Payload
        Byte array
    wmx.pkm_msg.pkm_attr.error_code  Error Code
        Unsigned 8-bit integer
    wmx.pkm_msg.pkm_attr.frame_number  Frame Number
        Unsigned 24-bit integer
    wmx.pkm_msg.pkm_attr.gkek  GKEK
        Byte array
    wmx.pkm_msg.pkm_attr.gkek_params  GKEK Parameters
        Byte array
    wmx.pkm_msg.pkm_attr.hmac_digest  HMAC-Digest
        Byte array
    wmx.pkm_msg.pkm_attr.key_life_time  Key Lifetime
        Unsigned 32-bit integer
    wmx.pkm_msg.pkm_attr.key_push_counter  Key Push Counter
        Unsigned 16-bit integer
    wmx.pkm_msg.pkm_attr.key_push_modes  Key Push Modes
        Unsigned 8-bit integer
    wmx.pkm_msg.pkm_attr.key_seq_num  Key Sequence Number
        Unsigned 8-bit integer
    wmx.pkm_msg.pkm_attr.ms_mac_address  MS-MAC Address
        6-byte Hardware (MAC) Address
    wmx.pkm_msg.pkm_attr.nonce  Nonce
        Byte array
    wmx.pkm_msg.pkm_attr.pak_ak_seq_number  PAK/AK Sequence Number
        Byte array
    wmx.pkm_msg.pkm_attr.pre_pak  Pre-PAK
        Byte array
    wmx.pkm_msg.pkm_attr.sa_service_type  SA Service Type
        Unsigned 8-bit integer
    wmx.pkm_msg.pkm_attr.sa_type  SA Type
        Unsigned 8-bit integer
    wmx.pkm_msg.pkm_attr.said  SAID
        Unsigned 16-bit integer
    wmx.pkm_msg.pkm_attr.sig_bs  SigBS
        Byte array
    wmx.pkm_msg.pkm_attr.sig_ss  SigSS
        Byte array
    wmx.pkm_msg.pkm_attr.ss_certificate  SS Certificate
        Byte array
    wmx.pkm_msg.pkm_attr.ss_random  SS_RANDOM
        Byte array
    wmx.pkm_msg.pkm_attr.tek  TEK
        Byte array
    wmx.security_negotiation_parameters.auth_policy_support  Authorization Policy Support
        Unsigned 8-bit integer
    wmx.security_negotiation_parameters.auth_policy_support.bit0  RSA-based Authorization At The Initial Network Entry
        Boolean
    wmx.security_negotiation_parameters.auth_policy_support.bit1  EAP-based Authorization At The Initial Network Entry
        Boolean
    wmx.security_negotiation_parameters.auth_policy_support.bit2  Authenticated EAP-based Authorization At The Initial Network Entry
        Boolean
    wmx.security_negotiation_parameters.auth_policy_support.bit3  Reserved
        Unsigned 8-bit integer
    wmx.security_negotiation_parameters.auth_policy_support.bit4  RSA-based Authorization At Re-entry
        Boolean
    wmx.security_negotiation_parameters.auth_policy_support.bit5  EAP-based Authorization At Re-entry
        Boolean
    wmx.security_negotiation_parameters.auth_policy_support.bit6  Authenticated EAP-based Authorization At Re-entry
        Boolean
    wmx.security_negotiation_parameters.auth_policy_support.bit7  Reserved
        Unsigned 8-bit integer
    wmx.security_negotiation_parameters.mac_mode  MAC (Message Authentication Code) Mode
        Unsigned 8-bit integer
    wmx.security_negotiation_parameters.mac_mode.bit0  HMAC
        Boolean
    wmx.security_negotiation_parameters.mac_mode.bit1  CMAC
        Boolean
    wmx.security_negotiation_parameters.mac_mode.bit1_rsvd  Reserved
        Boolean
    wmx.security_negotiation_parameters.mac_mode.bit2  64-bit Short-HMAC
        Boolean
    wmx.security_negotiation_parameters.mac_mode.bit3  80-bit Short-HMAC
        Boolean
    wmx.security_negotiation_parameters.mac_mode.bit4  96-bit Short-HMAC
        Boolean
    wmx.security_negotiation_parameters.mac_mode.bit5  CMAC
        Boolean
    wmx.security_negotiation_parameters.mac_mode.reserved  Reserved
        Unsigned 8-bit integer
    wmx.security_negotiation_parameters.max_conc_transactions  Maximum concurrent transactions (0 indicates no limit)
        Unsigned 8-bit integer
    wmx.security_negotiation_parameters.max_suppt_sec_assns  Maximum number of security associations supported by the SS
        Unsigned 8-bit integer
    wmx.security_negotiation_parameters.pkm_version_support  PKM Version Support
        Unsigned 8-bit integer
    wmx.security_negotiation_parameters.pkm_version_support.bit0  PKM version 1
        Boolean
    wmx.security_negotiation_parameters.pkm_version_support.bit1  PKM version 2
        Boolean
    wmx.security_negotiation_parameters.pkm_version_support.reserved  Reserved
        Unsigned 8-bit integer
    wmx.security_negotiation_parameters.pn_window_size  PN Window Size
        Unsigned 16-bit integer
    wmx.security_negotiation_parameters.unknown.type  Unknown Security Negotiation Parameter type
        Byte array
    wmx.xmac_tuple.hmac_digest  HMAC Digest
        Byte array
    wmx.xmac_tuple.key_sn  Key Sequence Number
        Unsigned 8-bit integer
    wmx.xmac_tuple.packet_number_count  Packet Number Counter
        Unsigned 32-bit integer
    wmx.xmac_tuple.reserved  Reserved
        Unsigned 8-bit integer

Wifi Protected Setup (wps)

    eap.wps.code  Opcode
        Unsigned 8-bit integer
        WSC Message Type
    eap.wps.flags  Flags
        Unsigned 8-bit integer
    eap.wps.flags.length  Length field present
        Boolean
    eap.wps.flags.more  More flag
        Boolean
    eap.wps.msglen  Length field
        Unsigned 16-bit integer
    wps.8021x_enabled  8021x Enabled
        Unsigned 8-bit integer
    wps.ap_channel  AP Channel
        Unsigned 16-bit integer
    wps.ap_setup_locked  AP Setup Locked
        Unsigned 8-bit integer
    wps.application_extension  Application Extension
        Byte array
    wps.appsessionkey  AppSessionKey
        Byte array
    wps.association_state  Association State
        Unsigned 16-bit integer
    wps.authentication_type  Authentication Type
        Unsigned 16-bit integer
    wps.authentication_type.open  Open
        Unsigned 16-bit integer
    wps.authentication_type.shared  Shared
        Unsigned 16-bit integer
    wps.authentication_type.wpa  WPA
        Unsigned 16-bit integer
    wps.authentication_type.wpa2  WPA2
        Unsigned 16-bit integer
    wps.authentication_type.wpa2psk  WPA2PSK
        Unsigned 16-bit integer
    wps.authentication_type.wpapsk  WPA PSK
        Unsigned 16-bit integer
    wps.authentication_type_flags  Authentication Type Flags
        Unsigned 16-bit integer
    wps.authenticator  Authenticator
        Byte array
    wps.config_methods  Configuration Methods
        Unsigned 16-bit integer
    wps.config_methods.display  Display
        Unsigned 16-bit integer
    wps.config_methods.ethernet  Ethernet
        Unsigned 16-bit integer
    wps.config_methods.keypad  Keypad
        Unsigned 16-bit integer
    wps.config_methods.label  Label
        Unsigned 16-bit integer
    wps.config_methods.nfcext  External NFC
        Unsigned 16-bit integer
    wps.config_methods.nfcinf  NFC Interface
        Unsigned 16-bit integer
    wps.config_methods.nfcint  Internal NFC
        Unsigned 16-bit integer
    wps.config_methods.pushbutton  Push Button
        Unsigned 16-bit integer
    wps.config_methods.usba  USB
        Unsigned 16-bit integer
    wps.configuration_error  Configuration Error
        Unsigned 16-bit integer
    wps.confirmation_url4  Confirmation URL4
        String
    wps.confirmation_url6  Confirmation URL6
        String
    wps.connection_type  Connection Type
        Unsigned 8-bit integer
    wps.connection_type_flags  Connection Types
        Unsigned 8-bit integer
    wps.connection_type_flags.ess  ESS
        Unsigned 8-bit integer
    wps.connection_type_flags.ibss  IBSS
        Unsigned 8-bit integer
    wps.credential  Credential
        Byte array
    wps.device_name  Device Name
        String
    wps.device_password_id  Device Password ID
        Unsigned 16-bit integer
    wps.e_hash1  Enrollee Hash 1
        Byte array
    wps.e_hash2  Enrollee Hash 2
        Byte array
    wps.e_snonce1  Enrollee SNounce 1
        Byte array
    wps.e_snonce2  Enrollee SNounce 2
        Byte array
    wps.eap_identity  EAP Identity
        Byte array
    wps.eap_type  EAP Type
        Byte array
    wps.encrypted_settings  Encrypted Settings
        Byte array
    wps.encryption_type  Encryption Type
        Unsigned 16-bit integer
    wps.encryption_type_flags  Encryption Type Flags
        Unsigned 16-bit integer
    wps.encryption_type_flags.aes  AES
        Unsigned 16-bit integer
    wps.encryption_type_flags.none  None
        Unsigned 16-bit integer
    wps.encryption_type_flags.tkip  TKIP
        Unsigned 16-bit integer
    wps.encryption_type_flags.wep  WEP
        Unsigned 16-bit integer
    wps.enrollee_nonce  Enrollee Nonce
        Byte array
    wps.feature_id  Feature ID
        Unsigned 32-bit integer
    wps.identity  Identity
        String
    wps.identity_proof  Identity Proof
        Byte array
    wps.initialization_vector  Initialization Vector
        Byte array
    wps.key_identifier  Key Identifier
        Byte array
    wps.key_lifetime  Key Lifetime
        Unsigned 32-bit integer
    wps.key_provided_automatically  Key Provided Automatically
        Unsigned 8-bit integer
    wps.key_wrap_authenticator  Key Wrap Authenticator
        Byte array
    wps.length  Data Element Length
        Unsigned 16-bit integer
    wps.mac_address  MAC
        6-byte Hardware (MAC) Address
    wps.manufacturer  Manufacturer
        String
    wps.message_counter  Message Counter
        Unsigned 64-bit integer
    wps.message_type  Message Type
        Unsigned 8-bit integer
    wps.model_name  Model Name
        String
    wps.model_number  Model Number
        String
    wps.network_index  Network Index
        Unsigned 8-bit integer
    wps.network_key  Network Key
        Byte array
    wps.network_key_index  Network Key Index
        Unsigned 8-bit integer
    wps.new_device_name  New Device Name
        Byte array
    wps.new_password  New Password
        Byte array
    wps.oob_device_password  OOB Device Password
        Byte array
    wps.os_version  OS Version
        Unsigned 32-bit integer
    wps.permitted_config_methods  Permitted COnfig Methods
        Unsigned 16-bit integer
    wps.portable_device  Portable Device
        Unsigned 8-bit integer
    wps.power_level  Power Level
        Unsigned 8-bit integer
    wps.primary_device_type  Primary Device Type
        Byte array
    wps.primary_device_type.category  Category
        Unsigned 16-bit integer
    wps.primary_device_type.oui  OUI
        Byte array
    wps.primary_device_type.subcategory  Subcategory
        Unsigned 16-bit integer
    wps.psk_current  PSK Current
        Unsigned 8-bit integer
    wps.psk_max  PSK Max
        Unsigned 8-bit integer
    wps.public_key  Public Key
        Byte array
    wps.public_key_hash  Public Key Hash
        Byte array
    wps.r_hash1  Registrar Hash 1
        Byte array
    wps.r_hash2  Registrar Hash 2
        Byte array
    wps.r_snonce1  Registrar Snonce1
        Byte array
    wps.r_snonce2  Registrar Snonce 2
        Byte array
    wps.radio_enabled  Radio Enabled
        Unsigned 8-bit integer
    wps.reboot  Reboot
        Unsigned 8-bit integer
    wps.registrar_current  Registrar current
        Unsigned 8-bit integer
    wps.registrar_established  Registrar established
        Unsigned 8-bit integer
    wps.registrar_list  Registrar list
        Byte array
    wps.registrar_max  Registrar max
        Unsigned 8-bit integer
    wps.registrar_nonce  Registrar Nonce
        Byte array
    wps.rekey_key  Rekey Key
        Byte array
    wps.request_type  Request Type
        Unsigned 8-bit integer
    wps.response_type  Response Type
        Unsigned 8-bit integer
    wps.rf_bands  RF Bands
        Unsigned 8-bit integer
    wps.secondary_device_type_list  Secondary Device Type List
        Byte array
    wps.selected_registrar  Selected Registrar
        Unsigned 8-bit integer
    wps.selected_registrar_config_methods  Selected Registrar Config Methods
        Unsigned 16-bit integer
    wps.serial_number  Serial Number
        String
    wps.ssid  SSID
        String
    wps.total_networks  Total Networks
        Unsigned 8-bit integer
    wps.type  Data Element Type
        Unsigned 16-bit integer
    wps.uuid_e  UUID Enrollee
        Byte array
    wps.uuid_r  UUID Registrar
        Byte array
    wps.vendor_extension  Vendor Extension
        Byte array
    wps.version  Version
        Unsigned 8-bit integer
    wps.weptransmitkey  WEP Transmit Key
        Unsigned 8-bit integer
    wps.wifi_protected_setup_state  Wifi Protected Setup State
        Unsigned 8-bit integer
    wps.x509_certificate  X509 Certificate
        Byte array
    wps.x509_certificate_request  X509 Certificate Request
        Byte array

Wireless Access Station Session Protocol (wassp)

    wassp.ac.ipaddr  AC-IPADDR
        IPv4 address
    wassp.ac.reg.challenge  AC_REG_CHALLENGE
        Signed 32-bit integer
    wassp.ac.reg.response  AC_REG_RESPONSE
        Signed 32-bit integer
    wassp.ap.dhcp.mode  AP-DHCP-MODE
        Unsigned 32-bit integer
    wassp.ap.gateway  AP-GATEWAY
        IPv4 address
    wassp.ap.img.role  AP-IMG-ROLE
        Unsigned 32-bit integer
    wassp.ap.img.to.ram  AP-IMG-TO-RAM
        Unsigned 32-bit integer
    wassp.ap.ipaddr  AP-IPADDR
        IPv4 address
    wassp.ap.netmask  AP-NETMASK
        IPv4 address
    wassp.ap_stats_block  AP Stats Block
        No value
    wassp.ap_stats_block.dot1x  DOT1x_STATS_BLOCK
        No value
    wassp.ap_stats_block.ether  Ether Stats
        No value
    wassp.ap_stats_block.radioa  Radio-A Stats
        No value
    wassp.ap_stats_block.radiobg  Radio-B/G Stats
        No value
    wassp.bp.pmk  BP_PMK
        Signed 32-bit integer
    wassp.bp.request.id  BP-REQUEST-ID
        Unsigned 32-bit integer
    wassp.certificate  CERTIFICATE
        Signed 32-bit integer
    wassp.config.availability.mode  AVAILABILITY_MODE
        Signed 32-bit integer
    wassp.config.bandwidth.adm.ctrl.reserve  BANDWIDTH_ADM_CTRL_RESERVE
        Signed 32-bit integer
    wassp.config.bandwidth.video.assc  BANDWIDTH_VIDEO_ASSC
        Signed 32-bit integer
    wassp.config.bandwidth.video.reassc  BANDWIDTH_VIDEO_REASSC
        Signed 32-bit integer
    wassp.config.bandwidth.video.reserve  BANDWIDTH_VIDEO_RESERVE
        Signed 32-bit integer
    wassp.config.bandwidth.voice.assc  BANDWIDTH_VOICE_ASSC
        Signed 32-bit integer
    wassp.config.bandwidth.voice.reassc  BANDWIDTH_VOICE_REASSC
        Signed 32-bit integer
    wassp.config.blacklist.blacklist.add  BLACKLIST_BLACKLIST_ADD
        Signed 32-bit integer
    wassp.config.blacklist.del  BLACKLIST_DEL
        Signed 32-bit integer
    wassp.config.country.code  COUNTRY_CODE
        Signed 32-bit integer
    wassp.config.dhcp.assignment  DHCP_ASSIGNMENT
        Signed 32-bit integer
    wassp.config.disc.retry.count  DISC_RETRY_COUNT
        Signed 32-bit integer
    wassp.config.disc.retry.delay  DISC_RETRY_DELAY
        Byte array
    wassp.config.dns.retry.count  DNS_RETRY_COUNT
        Signed 32-bit integer
    wassp.config.dns.retry.delay  DNS_RETRY_DELAY
        Signed 32-bit integer
    wassp.config.failover.ac.ip.addr  FAILOVER_AC_IP_ADDR
        Signed 32-bit integer
    wassp.config.logging.alarm.sev  LOGGING_ALARM_SEV
        Signed 32-bit integer
    wassp.config.macaddr.req  MACADDR_REQ
        Signed 32-bit integer
    wassp.config.mcast.slp.retry.count  MCAST_SLP_RETRY_COUNT
        Signed 32-bit integer
    wassp.config.mcast.slp.retry.delay  MCAST_SLP_RETRY_DELAY
        Signed 32-bit integer
    wassp.config.outdoor.enable.environment  OUTDOOR_ENABLE_ENVIRONMENT
        Signed 32-bit integer
    wassp.config.poll.duration  POLL_DURATION
        Signed 32-bit integer
    wassp.config.poll.interval  POLL_INTERVAL
        Signed 32-bit integer
    wassp.config.poll.maintain.client.session  POLL_MAINTAIN_CLIENT_SESSION
        Signed 32-bit integer
    wassp.config.radio.a.support.802.11.j  R_A_SUPPORT_802_11_J
        Signed 32-bit integer
    wassp.config.radio.acs.ch.list  R_ACS_CH_LIST
        Byte array
    wassp.config.radio.atpc.en.interval  R_ATPC_EN_INTERVAL
        Signed 32-bit integer
    wassp.config.radio.b.basic.rates  R_B_BASIC_RATES
        Signed 32-bit integer
    wassp.config.radio.b.enable  R_B_ENABLE
        Signed 32-bit integer
    wassp.config.radio.basic.rate.max  R_BASIC_RATE_MAX
        Signed 32-bit integer
    wassp.config.radio.basic.rate.min  R_BASIC_RATE_MIN
        Signed 32-bit integer
    wassp.config.radio.beacon.period  R_BEACON_PERIOD
        Signed 32-bit integer
    wassp.config.radio.channel  R_CHANNEL
        Signed 32-bit integer
    wassp.config.radio.diversity.rx  R_DIVERSITY_RX
        Signed 32-bit integer
    wassp.config.radio.diversity.tx  R_DIVERSITY_TX
        Signed 32-bit integer
    wassp.config.radio.domain.id  R_DOMAIN_ID
        String
    wassp.config.radio.dtim.period  R_DTIM_PERIOD
        Signed 32-bit integer
    wassp.config.radio.enable.radio  R_ENABLE_RADIO
        Signed 32-bit integer
    wassp.config.radio.fragment.threshold  R_FRAGMENT_THRESHOLD
        Signed 32-bit integer
    wassp.config.radio.g.basic.rate  R_G_BASIC_RATE
        Signed 32-bit integer
    wassp.config.radio.g.enable  R_G_ENABLE
        Signed 32-bit integer
    wassp.config.radio.g.protect.mode  R_G_PROTECT_MODE
        Signed 32-bit integer
    wassp.config.radio.g.protect.rate  R_G_PROTECT_RATE
        Signed 32-bit integer
    wassp.config.radio.g.protect.type  R_G_PROTECT_TYPE
        Signed 32-bit integer
    wassp.config.radio.hw.retries  R_HW_RETRIES
        String
    wassp.config.radio.op.rate.max  R_OP_RATE_MAX
        Signed 32-bit integer
    wassp.config.radio.op.rate.set  R_OP_RATE_SET
        Signed 32-bit integer
    wassp.config.radio.power.level  R_POWER_LEVEL
        Signed 32-bit integer
    wassp.config.radio.radio.id  R_RADIO_ID
        Signed 32-bit integer
    wassp.config.radio.rts.threshold  R_RTS_THRESHOLD
        Signed 32-bit integer
    wassp.config.radio.short.preamble  R_SHORT_PREAMBLE
        Signed 32-bit integer
    wassp.config.radio.tx.power.adj  R_TX_POWER_ADJ
        Signed 32-bit integer
    wassp.config.radio.tx.power.max  R_TX_POWER_MAX
        Signed 32-bit integer
    wassp.config.radio.tx.power.min  R_TX_POWER_MIN
        Signed 32-bit integer
    wassp.config.slp.retry.count  SLP_RETRY_COUNT
        Signed 32-bit integer
    wassp.config.slp.retry.delay  SLP_RETRY_DELAY
        Signed 32-bit integer
    wassp.config.static.ac.ip.addr  STATIC_AC_IP_ADDR
        Signed 32-bit integer
    wassp.config.static.ap.default.gw  STATIC_AP_DEFAULT_GW
        Signed 32-bit integer
    wassp.config.static.ap.ip.addr  STATIC_AP_IP_ADDR
        Signed 32-bit integer
    wassp.config.static.ap.ip.netmask  STATIC_AP_IP_NETMASK
        Signed 32-bit integer
    wassp.config.telnet.enable  TELNET_ENABLE
        Signed 32-bit integer
    wassp.config.telnet.password  TELNET_PASSWORD
        String
    wassp.config.telnet.password.entry.mode  TELNET_PASSWORD_ENTRY_MODE
        Signed 32-bit integer
    wassp.config.trace.status.config  TRACE_STATUS_CONFIG
        Signed 32-bit integer
    wassp.config.trace.status.debug  TRACE_STATUS_DEBUG
        Signed 32-bit integer
    wassp.config.use.bcast.for.disassc  USE_BCAST_FOR_DISASSC
        Signed 32-bit integer
    wassp.config.vlan.tag  VLAN_TAG
        Signed 32-bit integer
    wassp.config.vns.802.1.x.dyn.rekey  V_802_1_X_DYN_REKEY
        Signed 32-bit integer
    wassp.config.vns.802.1.x.enable  V_802_1_X_ENABLE
        Signed 32-bit integer
    wassp.config.vns.adm.ctrl.video  V_ADM_CTRL_VIDEO
        Signed 32-bit integer
    wassp.config.vns.adm.ctrl.voice  V_ADM_CTRL_VOICE
        Signed 32-bit integer
    wassp.config.vns.bridge.mode  V_BRIDGE_MODE
        Signed 32-bit integer
    wassp.config.vns.channel.report  V_CHANNEL_REPORT
        Signed 32-bit integer
    wassp.config.vns.dscp.override.value  V_DSCP_OVERRIDE_VALUE
        Signed 32-bit integer
    wassp.config.vns.enable.802.11.e  V_ENABLE_802_11_E
        Signed 32-bit integer
    wassp.config.vns.enable.802.11.h  V_ENABLE_802_11_H
        Signed 32-bit integer
    wassp.config.vns.enable.u.apsd  V_ENABLE_U_APSD
        Signed 32-bit integer
    wassp.config.vns.enable.wmm  V_ENABLE_WMM
        Signed 32-bit integer
    wassp.config.vns.legacy.client.priority  V_LEGACY_CLIENT_PRIORITY
        Signed 32-bit integer
    wassp.config.vns.mu.assoc.retries  V_MU_ASSOC_RETRIES
        Signed 32-bit integer
    wassp.config.vns.mu.assoc.timeout  V_MU_ASSOC_TIMEOUT
        Signed 32-bit integer
    wassp.config.vns.okc.enabled  V_OKC_ENABLED
        Signed 32-bit integer
    wassp.config.vns.power.backoff  V_POWER_BACKOFF
        Signed 32-bit integer
    wassp.config.vns.priority.override  V_PRIORITY_OVERRIDE
        Signed 32-bit integer
    wassp.config.vns.process.ie.req  V_PROCESS_IE_REQ
        Signed 32-bit integer
    wassp.config.vns.prop.ie  V_PROP_IE
        Signed 32-bit integer
    wassp.config.vns.qos.up.value  V_QOS_UP_VALUE
        Byte array
    wassp.config.vns.radio.id  V_RADIO_ID
        Signed 32-bit integer
    wassp.config.vns.ssid.bcast.string  V_SSID_BCAST_STRING
        String
    wassp.config.vns.ssid.id  V_SSID_ID
        Signed 32-bit integer
    wassp.config.vns.ssid.suppress  V_SSID_SUPPRESS
        Signed 32-bit integer
    wassp.config.vns.turbo.voice  V_TURBO_VOICE
        Signed 32-bit integer
    wassp.config.vns.vlan.tag  V_VLAN_TAG
        Signed 32-bit integer
    wassp.config.vns.vns.id  V_VNS_ID
        Signed 32-bit integer
    wassp.config.vns.wds.back.parent  V_WDS_BACK_PARENT
        Signed 32-bit integer
    wassp.config.vns.wds.bridge  V_WDS_BRIDGE
        Signed 32-bit integer
    wassp.config.vns.wds.name  V_WDS_NAME
        String
    wassp.config.vns.wds.parent  V_WDS_PARENT
        Signed 32-bit integer
    wassp.config.vns.wds.pref.parent  V_WDS_PREF_PARENT
        Signed 32-bit integer
    wassp.config.vns.wds.service  V_WDS_SERVICE
        Signed 32-bit integer
    wassp.config.vns.wep.default.key.value  V_WEP_DEFAULT_KEY_VALUE
        Signed 32-bit integer
    wassp.config.vns.wep.key.index  V_WEP_KEY_INDEX
        Signed 32-bit integer
    wassp.config.vns.wpa.cipher.type  V_WPA_CIPHER_TYPE
        Signed 32-bit integer
    wassp.config.vns.wpa.enable  V_WPA_ENABLE
        Signed 32-bit integer
    wassp.config.vns.wpa.passphrase  V_WPA_PASSPHRASE
        String
    wassp.config.vns.wpa.v2.cipher.type  V_WPA_V2_CIPHER_TYPE
        Signed 32-bit integer
    wassp.config.vns.wpa.v2.enable  V_WPA_V2_ENABLE
        Signed 32-bit integer
    wassp.countdown.time  COUNTDOWN_TIME
        Signed 32-bit integer
    wassp.discover1  Discover Header1
        Unsigned 8-bit integer
    wassp.discover2  Discover Header2
        Unsigned 8-bit integer
    wassp.discover3  Discover Header3
        Unsigned 8-bit integer
    wassp.ether  Discover Ether
        6-byte Hardware (MAC) Address
    wassp.flags  Flags
        Unsigned 8-bit integer
    wassp.image.path  IMAGE-PATH
        String
    wassp.length  PDU Length
        Unsigned 8-bit integer
    wassp.local.bridging  LOCAL-BRIDGING
        Unsigned 32-bit integer
    wassp.message.type  MESSAGE-TYPE
        Unsigned 32-bit integer
    wassp.mu.mac  MU_MAC
        Signed 32-bit integer
    wassp.mu.pmk.bp  MU_PMK_BP
        Signed 32-bit integer
    wassp.mu.pmkid.bp  MU_PMKID_BP
        Signed 32-bit integer
    wassp.mu.pmkid.list  MU_PMKID_LIST
        Signed 32-bit integer
    wassp.mu.rf.stats.block  MU_RF_STATS_BLOCK
        Signed 32-bit integer
    wassp.network.id  NETWORK_ID
        Signed 32-bit integer
    wassp.network.info  NETWORK_INFO
        Signed 32-bit integer
    wassp.num.radios  NUM_RADIOS
        Signed 32-bit integer
    wassp.preauth.resp  PREAUTH_RESP
        Signed 32-bit integer
    wassp.product.id  PRODUCT_ID
        Signed 32-bit integer
    wassp.radio.id  RADIO_ID
        Signed 32-bit integer
    wassp.radio.info  RADIO_INFO
        Signed 32-bit integer
    wassp.radio.info.ack  RADIO_INFO_ACK
        Signed 32-bit integer
    wassp.random.number  RANDOM-NUMBER
        Byte array
    wassp.ru.alarm  RU-ALARM
        No value
    wassp.ru.challenge  RU-CHALLENGE
        Byte array
    wassp.ru.challenge.id  RU-CHALLENGE-ID
        Unsigned 32-bit integer
    wassp.ru.channel.dwell.time  RU-CHANNEL-DWELL-TIME
        Unsigned 32-bit integer
    wassp.ru.channel.list  RU-CHANNEL-LIST
        Unsigned 32-bit integer
    wassp.ru.config  RU-CONFIG
        No value
    wassp.ru.model  RU-MODEL
        String
    wassp.ru.radio.type  RU-RADIO-TYPE
        Unsigned 32-bit integer
    wassp.ru.response  RU-RESPONSE
        Byte array
    wassp.ru.scan.delay  RU-SCAN-DELAY
        Unsigned 32-bit integer
    wassp.ru.scan.interval  RU-SCAN-INTERVAL
        Unsigned 32-bit integer
    wassp.ru.scan.mode  RU-SCAN-MODE
        Unsigned 32-bit integer
    wassp.ru.scan.req.id  RU-SCAN-REQ-ID
        Unsigned 32-bit integer
    wassp.ru.scan.times  RU-SCAN-TIMES
        Unsigned 32-bit integer
    wassp.ru.scan.type  RU-SCAN-TYPE
        Unsigned 32-bit integer
    wassp.ru.serial.number  RU-SERIAL-NUMBER
        String
    wassp.ru.session.key  RU-SESSION-KEY
        String
    wassp.ru.soft.version  RU-SOFT-VERSION
        String
    wassp.ru.state  RU-STATE
        Unsigned 32-bit integer
    wassp.ru.trap  RU-TRAP
        String
    wassp.ru.vns.id  RU-VNS-ID
        Unsigned 32-bit integer
    wassp.seqno  Sequence No
        Unsigned 8-bit integer
    wassp.sessionid  Session ID
        Unsigned 8-bit integer
    wassp.snmp.error.index  SNMP-ERROR-INDEX
        Unsigned 32-bit integer
    wassp.snmp.error.status  SNMP-ERROR-STATUS
        Unsigned 32-bit integer
    wassp.standby.timeout  STANDBY-TIMEOUT
        Unsigned 32-bit integer
    wassp.static.bm.ipaddr  STATIC-BM-IPADDR
        IPv4 address
    wassp.static.bp.gateway  STATIC-BP-GATEWAY
        IPv4 address
    wassp.static.bp.ipaddr  STATIC-BP-IPADDR
        IPv4 address
    wassp.static.bp.netmask  STATIC-BP-NETMASK
        IPv4 address
    wassp.static.config  STATIC-CONFIG
        Unsigned 32-bit integer
    wassp.stats  STATS
        Signed 32-bit integer
    wassp.stats.dot11.ackfailurecount  DOT11_ACKFailureCount
        Signed 32-bit integer
    wassp.stats.dot11.failedcount  DOT11_FailedCount
        Signed 32-bit integer
    wassp.stats.dot11.fcserrorcount  DOT11_FCSErrorCount
        Signed 32-bit integer
    wassp.stats.dot11.frameduplicatecount  DOT11_FrameDuplicateCount
        Signed 32-bit integer
    wassp.stats.dot11.multicastreceivedframecount  DOT11_MulticastReceivedFrameCount
        Signed 32-bit integer
    wassp.stats.dot11.multicasttransmittedframecount  DOT11_MulticastTransmittedFrameCount
        Signed 32-bit integer
    wassp.stats.dot11.multipleretrycount  DOT11_MultipleRetryCount
        Signed 32-bit integer
    wassp.stats.dot11.receivedfragementcount  DOT11_ReceivedFragementCount
        Signed 32-bit integer
    wassp.stats.dot11.retrycount  DOT11_RetryCount
        Signed 32-bit integer
    wassp.stats.dot11.rtsfailurecount  DOT11_RTSFailureCount
        Signed 32-bit integer
    wassp.stats.dot11.rtssuccesscount  DOT11_RTSSuccessCount
        Signed 32-bit integer
    wassp.stats.dot11.transmittedfragmentcount  DOT11_TransmittedFragmentCount
        Signed 32-bit integer
    wassp.stats.dot11.transmittedframecount  DOT11_TransmittedFrameCount
        Signed 32-bit integer
    wassp.stats.dot11.webundecryptablecount  DOT11_WEBUndecryptableCount
        Signed 32-bit integer
    wassp.stats.dot11.wepexcludedcount  DOT11_WEPExcludedCount
        Signed 32-bit integer
    wassp.stats.dot11.wepicverrorcount  DOT11_WEPICVErrorCount
        Signed 32-bit integer
    wassp.stats.dot1x.credent  DOT1x_CREDENT
        Signed 32-bit integer
    wassp.stats.dot1x.enddate  DOT1x_END_DATE
        Signed 32-bit integer
    wassp.stats.drm.allocfailures  DRM_AllocFailures
        Signed 32-bit integer
    wassp.stats.drm.currentchannel  DRM_CurrentChannel
        Signed 32-bit integer
    wassp.stats.drm.currentpower  DRM_CurrentPower
        Signed 32-bit integer
    wassp.stats.drm.datatxfailures  DRM_DataTxFailures
        Signed 32-bit integer
    wassp.stats.drm.devicetype  DRM_DeviceType
        Signed 32-bit integer
    wassp.stats.drm.indatapackets  DRM_InDataPackets
        Signed 32-bit integer
    wassp.stats.drm.inmgmtpackets  DRM_InMgmtPackets
        Signed 32-bit integer
    wassp.stats.drm.loadfactor  DRM_LoadFactor
        Signed 32-bit integer
    wassp.stats.drm.mgmttxfailures  DRM_MgmtTxFailures
        Signed 32-bit integer
    wassp.stats.drm.msgqfailures  DRM_MsgQFailures
        Signed 32-bit integer
    wassp.stats.drm.nodrmcurrentchannel  DRM_NoDRMCurrentChannel
        Signed 32-bit integer
    wassp.stats.drm.outdatapackets  DRM_OutDataPackets
        Signed 32-bit integer
    wassp.stats.drm.outmgmtpackets  DRM_OutMgmtPackets
        Signed 32-bit integer
    wassp.stats.if.inbcastpackets  IF_InBcastPackets
        Signed 32-bit integer
    wassp.stats.if.indiscards  IF_InDiscards
        Signed 32-bit integer
    wassp.stats.if.inerrors  IF_InErrors
        Signed 32-bit integer
    wassp.stats.if.inmcastpackets  IF_InMcastPackets
        Signed 32-bit integer
    wassp.stats.if.inoctets  IF_InOctets
        Signed 32-bit integer
    wassp.stats.if.inucastpackets  IF_InUcastPackets
        Signed 32-bit integer
    wassp.stats.if.mtu  IF_MTU
        Signed 32-bit integer
    wassp.stats.if.outbcastpackets  IF_OutBcastPackets
        Signed 32-bit integer
    wassp.stats.if.outdiscards  IF_OutDiscards
        Signed 32-bit integer
    wassp.stats.if.outerrors  IF_OutErrors
        Signed 32-bit integer
    wassp.stats.if.outmcastpackets  IF_OutMCastPackets
        Signed 32-bit integer
    wassp.stats.if.outoctets  IF_OutOctets
        Signed 32-bit integer
    wassp.stats.if.outucastpackets  IF_OutUcastPackets
        Signed 32-bit integer
    wassp.stats.last  STATS_LAST
        Signed 32-bit integer
    wassp.stats.mu.address  MU_Address
        Signed 32-bit integer
    wassp.stats.mu.associationcount  MU_AssociationCount
        Signed 32-bit integer
    wassp.stats.mu.authenticationcount  MU_AuthenticationCount
        Signed 32-bit integer
    wassp.stats.mu.deassociationcount  MU_DeAssociationCount
        Signed 32-bit integer
    wassp.stats.mu.deauthenticationcount  MU_DeAuthenticationCount
        Signed 32-bit integer
    wassp.stats.mu.ifindex  MU_IfIndex
        Signed 32-bit integer
    wassp.stats.mu.reassociationcount  MU_ReAssociationCount
        Signed 32-bit integer
    wassp.stats.mu.receivedbytes  MU_ReceivedBytes
        Signed 32-bit integer
    wassp.stats.mu.receivederrors  MU_ReceivedErrors
        Signed 32-bit integer
    wassp.stats.mu.receivedframecount  MU_ReceivedFrameCount
        Signed 32-bit integer
    wassp.stats.mu.receivedrate  MU_ReceivedRate
        Signed 32-bit integer
    wassp.stats.mu.receivedrssi  MU_ReceivedRSSI
        Signed 32-bit integer
    wassp.stats.mu.rf.stats.end  MU_RF_STATS_END
        Signed 32-bit integer
    wassp.stats.mu.transmittedbytes  MU_TransmittedBytes
        Signed 32-bit integer
    wassp.stats.mu.transmittederrors  MU_TransmittedErrors
        Signed 32-bit integer
    wassp.stats.mu.transmittedframecount  MU_TransmittedFrameCount
        Signed 32-bit integer
    wassp.stats.mu.transmittedrate  MU_TransmittedRate
        Signed 32-bit integer
    wassp.stats.mu.transmittedrssi  MU_TransmittedRSSI
        Signed 32-bit integer
    wassp.stats.request.type  STATS_REQUEST_TYPE
        Signed 32-bit integer
    wassp.stats.rfc.1213.sysuptime  RFC_1213_SYSUPTIME
        Signed 32-bit integer
    wassp.stats.tlvmax  TLV_MAX
        Signed 32-bit integer
    wassp.status  STATUS
        Unsigned 32-bit integer
    wassp.subtype  Discover Subtype
        Unsigned 8-bit integer
    wassp.tftp.server  TFTP-SERVER
        IPv4 address
    wassp.time  TIME
        Signed 32-bit integer
    wassp.tlv.data  TlvData
        Byte array
    wassp.tlv.length  TlvLength
        Unsigned 8-bit integer
    wassp.tlv.type  TlvType
        Unsigned 8-bit integer
    wassp.tlv_config  Config
        No value
    wassp.tlv_config.radio  Config Radio
        No value
    wassp.tlv_config.vns  Config VNS
        No value
    wassp.type  PDU Type
        Unsigned 8-bit integer
    wassp.vendor.id  VENDOR_ID
        Signed 32-bit integer
    wassp.version  Protocol Version
        Unsigned 8-bit integer
    wassp.wassp.tunnel.type  WASSP-TUNNEL-TYPE
        Unsigned 32-bit integer
    wassp.wassp.vlan.tag  WASSP-VLAN-TAG
        Signed 32-bit integer

Wireless Configuration Service (wzcsvc)

    wzcsvc.opnum  Operation
        Unsigned 16-bit integer

Wireless Session Protocol (wsp)

    wsp.TID  Transaction ID
        Unsigned 8-bit integer
        WSP Transaction ID (for connectionless WSP)
    wsp.address  Address Record
        Unsigned 32-bit integer
    wsp.address.bearer_type  Bearer Type
        Unsigned 8-bit integer
    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
    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
    wsp.address.unknown  Address
        Byte array
        Address (unknown)
    wsp.capabilities  Capabilities
        No value
    wsp.capabilities.length  Capabilities Length
        Unsigned 32-bit integer
        Length of Capabilities field (bytes)
    wsp.capability.aliases  Aliases
        Byte array
    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
    wsp.capability.extended_methods  Extended Methods
        String
    wsp.capability.method_mor  Method MOR
        Unsigned 8-bit integer
    wsp.capability.protocol_opt  Protocol Options
        String
    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
    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
    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
    wsp.post.data  Data (Post)
        No value
        Post Data
    wsp.push.data  Push Data
        No value
    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
    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
    wsp.reply.status  Status
        Unsigned 8-bit integer
        Reply Status
    wsp.server.session_id  Server Session ID
        Unsigned 32-bit integer
    wsp.uri  URI
        String
    wsp.uri_length  URI Length
        Unsigned 32-bit integer
        Length of URI field
    wsp.version.major  Version (Major)
        Unsigned 8-bit integer
    wsp.version.minor  Version (Minor)
        Unsigned 8-bit integer

Wireless Transaction Protocol (wtp)

    wtp.RID  Re-transmission Indicator
        Boolean
    wtp.TID  Transaction ID
        Unsigned 16-bit integer
    wtp.TID.response  TID Response
        Boolean
    wtp.abort.reason.provider  Abort Reason
        Unsigned 8-bit integer
    wtp.abort.reason.user  Abort Reason
        Unsigned 8-bit integer
    wtp.abort.type  Abort Type
        Unsigned 8-bit integer
    wtp.ack.tvetok  Tve/Tok flag
        Boolean
    wtp.continue_flag  Continue Flag
        Boolean
    wtp.fragment  WTP Fragment
        Frame number
    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.header.TIDNew  TIDNew
        Boolean
    wtp.header.UP  U/P flag
        Boolean
        U/P Flag
    wtp.header.missing_packets  Missing Packets
        Unsigned 8-bit integer
    wtp.header.sequence  Packet Sequence Number
        Unsigned 8-bit integer
    wtp.header.version  Version
        Unsigned 8-bit integer
    wtp.header_data  Data
        Byte array
    wtp.header_variable_part  Header: Variable part
        Byte array
        Variable part of the header
    wtp.inv.reserved  Reserved
        Unsigned 8-bit integer
    wtp.inv.transaction_class  Transaction Class
        Unsigned 8-bit integer
    wtp.pdu_type  PDU Type
        Unsigned 8-bit integer
    wtp.reassembled.in  Reassembled in
        Frame number
        WTP fragments are reassembled in the given packet
    wtp.reassembled.length  Reassembled WTP length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    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

Wireless Transport Layer Security (wtls)

    wtls.alert  Alert
        No value
    wtls.alert.description  Description
        Unsigned 8-bit integer
    wtls.alert.level  Level
        Unsigned 8-bit integer
    wtls.handshake  Handshake
        Unsigned 8-bit integer
    wtls.handshake.certificate  Certificate
        No value
    wtls.handshake.certificate.after  Valid not after
        Date/Time stamp
    wtls.handshake.certificate.before  Valid not before
        Date/Time stamp
    wtls.handshake.certificate.issuer.charset  Charset
        Unsigned 16-bit integer
    wtls.handshake.certificate.issuer.name  Name
        String
    wtls.handshake.certificate.issuer.size  Size
        Unsigned 8-bit integer
    wtls.handshake.certificate.issuer.type  Issuer
        Unsigned 8-bit integer
    wtls.handshake.certificate.parameter  Parameter Set
        String
    wtls.handshake.certificate.parameter_index  Parameter Index
        Unsigned 8-bit integer
    wtls.handshake.certificate.public.type  Public Key Type
        Unsigned 8-bit integer
    wtls.handshake.certificate.rsa.exponent  RSA Exponent Size
        Unsigned 32-bit integer
    wtls.handshake.certificate.rsa.modules  RSA Modulus Size
        Unsigned 32-bit integer
    wtls.handshake.certificate.signature.signature  Signature Size
        Unsigned 32-bit integer
    wtls.handshake.certificate.signature.type  Signature Type
        Unsigned 8-bit integer
    wtls.handshake.certificate.subject.charset  Charset
        Unsigned 16-bit integer
    wtls.handshake.certificate.subject.name  Name
        String
    wtls.handshake.certificate.subject.size  Size
        Unsigned 8-bit integer
    wtls.handshake.certificate.subject.type  Subject
        Unsigned 8-bit integer
    wtls.handshake.certificate.type  Type
        Unsigned 8-bit integer
    wtls.handshake.certificate.version  Version
        Unsigned 8-bit integer
    wtls.handshake.certificates  Certificates
        No value
    wtls.handshake.client_hello  Client Hello
        No value
    wtls.handshake.client_hello.cipher  Cipher
        String
    wtls.handshake.client_hello.ciphers  Cipher Suites
        No value
        Cipher Suite
    wtls.handshake.client_hello.client_keys_id  Client Keys
        No value
    wtls.handshake.client_hello.client_keys_len  Length
        Unsigned 16-bit integer
    wtls.handshake.client_hello.comp_methods  Compression Methods
        No value
    wtls.handshake.client_hello.compression  Compression
        Unsigned 8-bit integer
    wtls.handshake.client_hello.gmt  Time GMT
        Date/Time stamp
    wtls.handshake.client_hello.ident_charset  Identifier CharSet
        Unsigned 16-bit integer
    wtls.handshake.client_hello.ident_name  Identifier Name
        String
    wtls.handshake.client_hello.ident_size  Identifier Size
        Unsigned 8-bit integer
    wtls.handshake.client_hello.ident_type  Identifier Type
        Unsigned 8-bit integer
    wtls.handshake.client_hello.identifier  Identifier
        No value
    wtls.handshake.client_hello.key.key_exchange  Key Exchange
        Unsigned 8-bit integer
    wtls.handshake.client_hello.key.key_exchange.suite  Suite
        Unsigned 8-bit integer
    wtls.handshake.client_hello.parameter  Parameter Set
        String
    wtls.handshake.client_hello.parameter_index  Parameter Index
        Unsigned 8-bit integer
    wtls.handshake.client_hello.random  Random
        No value
    wtls.handshake.client_hello.refresh  Refresh
        Unsigned 8-bit integer
    wtls.handshake.client_hello.sequence_mode  Sequence Mode
        Unsigned 8-bit integer
    wtls.handshake.client_hello.session.str  Session ID
        String
    wtls.handshake.client_hello.sessionid  Session ID
        Unsigned 64-bit integer
    wtls.handshake.client_hello.trusted_keys_id  Trusted Keys
        No value
    wtls.handshake.client_hello.version  Version
        Unsigned 8-bit integer
    wtls.handshake.length  Length
        Unsigned 16-bit integer
    wtls.handshake.server_hello  Server Hello
        No value
    wtls.handshake.server_hello.cipher  Cipher
        No value
    wtls.handshake.server_hello.cipher.bulk  Cipher Bulk
        Unsigned 8-bit integer
    wtls.handshake.server_hello.cipher.mac  Cipher MAC
        Unsigned 8-bit integer
    wtls.handshake.server_hello.compression  Compression
        Unsigned 8-bit integer
    wtls.handshake.server_hello.gmt  Time GMT
        Date/Time stamp
    wtls.handshake.server_hello.key  Client Key ID
        Unsigned 8-bit integer
    wtls.handshake.server_hello.random  Random
        No value
    wtls.handshake.server_hello.refresh  Refresh
        Unsigned 8-bit integer
    wtls.handshake.server_hello.sequence_mode  Sequence Mode
        Unsigned 8-bit integer
    wtls.handshake.server_hello.session.str  Session ID
        String
    wtls.handshake.server_hello.sessionid  Session ID
        Unsigned 64-bit integer
    wtls.handshake.server_hello.version  Version
        Unsigned 8-bit integer
    wtls.handshake.type  Type
        Unsigned 8-bit integer
    wtls.rec_cipher  Record Ciphered
        No value
    wtls.rec_length  Record Length
        Unsigned 16-bit integer
    wtls.rec_seq  Record Sequence
        Unsigned 16-bit integer
    wtls.rec_type  Record Type
        Unsigned 8-bit integer
    wtls.record  Record
        Unsigned 8-bit integer

Wlan Certificate Extension (wlancertextn)

    wlancertextn.SSID  SSID
        Byte array
    wlancertextn.SSIDList  SSIDList
        Unsigned 32-bit integer

Workstation Service (wkssvc)

    wkssvc.lsa_String.name  Name
        String
    wkssvc.lsa_String.name_len  Name Len
        Unsigned 16-bit integer
    wkssvc.lsa_String.name_size  Name Size
        Unsigned 16-bit integer
    wkssvc.opnum  Operation
        Unsigned 16-bit integer
    wkssvc.platform_id  Platform Id
        Unsigned 32-bit integer
    wkssvc.werror  Windows Error
        Unsigned 32-bit integer
    wkssvc.wkssvc_ComputerNamesCtr.computer_name  Computer Name
        String
    wkssvc.wkssvc_ComputerNamesCtr.count  Count
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaEnumUsers.entries_read  Entries Read
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaEnumUsers.info  Info
        No value
    wkssvc.wkssvc_NetWkstaEnumUsers.prefmaxlen  Prefmaxlen
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaEnumUsers.resume_handle  Resume Handle
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaEnumUsers.server_name  Server Name
        String
    wkssvc.wkssvc_NetWkstaEnumUsersCtr.user0  User0
        No value
    wkssvc.wkssvc_NetWkstaEnumUsersCtr.user1  User1
        No value
    wkssvc.wkssvc_NetWkstaEnumUsersCtr0.entries_read  Entries Read
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaEnumUsersCtr0.user0  User0
        No value
    wkssvc.wkssvc_NetWkstaEnumUsersCtr1.entries_read  Entries Read
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaEnumUsersCtr1.user1  User1
        No value
    wkssvc.wkssvc_NetWkstaEnumUsersInfo.ctr  Ctr
        No value
    wkssvc.wkssvc_NetWkstaEnumUsersInfo.level  Level
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaGetInfo.info  Info
        No value
    wkssvc.wkssvc_NetWkstaGetInfo.level  Level
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaGetInfo.server_name  Server Name
        String
    wkssvc.wkssvc_NetWkstaInfo.info100  Info100
        No value
    wkssvc.wkssvc_NetWkstaInfo.info101  Info101
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1010  Info1010
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1011  Info1011
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1012  Info1012
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1013  Info1013
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1018  Info1018
        No value
    wkssvc.wkssvc_NetWkstaInfo.info102  Info102
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1023  Info1023
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1027  Info1027
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1028  Info1028
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1032  Info1032
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1033  Info1033
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1041  Info1041
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1042  Info1042
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1043  Info1043
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1044  Info1044
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1045  Info1045
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1046  Info1046
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1047  Info1047
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1048  Info1048
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1049  Info1049
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1050  Info1050
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1051  Info1051
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1052  Info1052
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1053  Info1053
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1054  Info1054
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1055  Info1055
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1056  Info1056
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1057  Info1057
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1058  Info1058
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1059  Info1059
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1060  Info1060
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1061  Info1061
        No value
    wkssvc.wkssvc_NetWkstaInfo.info1062  Info1062
        No value
    wkssvc.wkssvc_NetWkstaInfo.info502  Info502
        No value
    wkssvc.wkssvc_NetWkstaInfo100.domain_name  Domain Name
        String
    wkssvc.wkssvc_NetWkstaInfo100.platform_id  Platform Id
        No value
    wkssvc.wkssvc_NetWkstaInfo100.server_name  Server Name
        String
    wkssvc.wkssvc_NetWkstaInfo100.version_major  Version Major
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo100.version_minor  Version Minor
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo101.domain_name  Domain Name
        String
    wkssvc.wkssvc_NetWkstaInfo101.lan_root  Lan Root
        String
    wkssvc.wkssvc_NetWkstaInfo101.platform_id  Platform Id
        No value
    wkssvc.wkssvc_NetWkstaInfo101.server_name  Server Name
        String
    wkssvc.wkssvc_NetWkstaInfo101.version_major  Version Major
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo101.version_minor  Version Minor
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1010.char_wait  Char Wait
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1011.collection_time  Collection Time
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1012.maximum_collection_count  Maximum Collection Count
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1013.keep_connection  Keep Connection
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1018.session_timeout  Session Timeout
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo102.domain_name  Domain Name
        String
    wkssvc.wkssvc_NetWkstaInfo102.lan_root  Lan Root
        String
    wkssvc.wkssvc_NetWkstaInfo102.logged_on_users  Logged On Users
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo102.platform_id  Platform Id
        No value
    wkssvc.wkssvc_NetWkstaInfo102.server_name  Server Name
        String
    wkssvc.wkssvc_NetWkstaInfo102.version_major  Version Major
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo102.version_minor  Version Minor
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1023.size_char_buf  Size Char Buf
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1027.errorlog_sz  Errorlog Sz
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1028.print_buf_time  Print Buf Time
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1032.wrk_heuristics  Wrk Heuristics
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1033.max_threads  Max Threads
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1041.lock_quota  Lock Quota
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1042.lock_increment  Lock Increment
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1043.lock_maximum  Lock Maximum
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1044.pipe_increment  Pipe Increment
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1045.pipe_maximum  Pipe Maximum
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1046.dormant_file_limit  Dormant File Limit
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1047.cache_file_timeout  Cache File Timeout
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1048.use_opportunistic_locking  Use Opportunistic Locking
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1049.use_unlock_behind  Use Unlock Behind
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1050.use_close_behind  Use Close Behind
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1051.buf_named_pipes  Buf Named Pipes
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1052.use_lock_read_unlock  Use Lock Read Unlock
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1053.utilize_nt_caching  Utilize Nt Caching
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1054.use_raw_read  Use Raw Read
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1055.use_raw_write  Use Raw Write
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1056.use_write_raw_data  Use Write Raw Data
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1057.use_encryption  Use Encryption
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1058.buf_files_deny_write  Buf Files Deny Write
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1059.buf_read_only_files  Buf Read Only Files
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1060.force_core_create_mode  Force Core Create Mode
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1061.use_512_byte_max_transfer  Use 512 Byte Max Transfer
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo1062.read_ahead_throughput  Read Ahead Throughput
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.buf_files_deny_write  Buf Files Deny Write
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.buf_named_pipes  Buf Named Pipes
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.buf_read_only_files  Buf Read Only Files
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.cache_file_timeout  Cache File Timeout
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.char_wait  Char Wait
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.collection_time  Collection Time
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.dgram_event_reset_freq  Dgram Event Reset Freq
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.dormant_file_limit  Dormant File Limit
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.force_core_create_mode  Force Core Create Mode
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.keep_connection  Keep Connection
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.lock_increment  Lock Increment
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.lock_maximum  Lock Maximum
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.lock_quota  Lock Quota
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.log_election_packets  Log Election Packets
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.max_commands  Max Commands
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.max_illegal_dgram_events  Max Illegal Dgram Events
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.max_threads  Max Threads
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.maximum_collection_count  Maximum Collection Count
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.num_mailslot_buffers  Num Mailslot Buffers
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.num_srv_announce_buffers  Num Srv Announce Buffers
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.pipe_increment  Pipe Increment
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.pipe_maximum  Pipe Maximum
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.read_ahead_throughput  Read Ahead Throughput
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.session_timeout  Session Timeout
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.size_char_buf  Size Char Buf
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.use_512_byte_max_transfer  Use 512 Byte Max Transfer
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.use_close_behind  Use Close Behind
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.use_encryption  Use Encryption
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.use_lock_read_unlock  Use Lock Read Unlock
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.use_opportunistic_locking  Use Opportunistic Locking
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.use_raw_read  Use Raw Read
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.use_raw_write  Use Raw Write
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.use_unlock_behind  Use Unlock Behind
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.use_write_raw_data  Use Write Raw Data
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaInfo502.utilize_nt_caching  Utilize Nt Caching
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaSetInfo.info  Info
        No value
    wkssvc.wkssvc_NetWkstaSetInfo.level  Level
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaSetInfo.parm_error  Parm Error
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaSetInfo.server_name  Server Name
        String
    wkssvc.wkssvc_NetWkstaTransportCtr.ctr0  Ctr0
        No value
    wkssvc.wkssvc_NetWkstaTransportCtr0.array  Array
        No value
    wkssvc.wkssvc_NetWkstaTransportCtr0.count  Count
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaTransportEnum.info  Info
        No value
    wkssvc.wkssvc_NetWkstaTransportEnum.max_buffer  Max Buffer
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaTransportEnum.resume_handle  Resume Handle
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaTransportEnum.server_name  Server Name
        String
    wkssvc.wkssvc_NetWkstaTransportEnum.total_entries  Total Entries
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaTransportInfo.ctr  Ctr
        No value
    wkssvc.wkssvc_NetWkstaTransportInfo.level  Level
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaTransportInfo0.address  Address
        String
    wkssvc.wkssvc_NetWkstaTransportInfo0.name  Name
        String
    wkssvc.wkssvc_NetWkstaTransportInfo0.quality_of_service  Quality Of Service
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaTransportInfo0.vc_count  Vc Count
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetWkstaTransportInfo0.wan_link  Wan Link
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrAddAlternateComputerName.Account  Account
        String
    wkssvc.wkssvc_NetrAddAlternateComputerName.EncryptedPassword  Encryptedpassword
        No value
    wkssvc.wkssvc_NetrAddAlternateComputerName.NewAlternateMachineName  Newalternatemachinename
        String
    wkssvc.wkssvc_NetrAddAlternateComputerName.Reserved  Reserved
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrAddAlternateComputerName.server_name  Server Name
        String
    wkssvc.wkssvc_NetrEnumerateComputerNames.Reserved  Reserved
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrEnumerateComputerNames.ctr  Ctr
        No value
    wkssvc.wkssvc_NetrEnumerateComputerNames.name_type  Name Type
        Unsigned 16-bit integer
    wkssvc.wkssvc_NetrEnumerateComputerNames.server_name  Server Name
        String
    wkssvc.wkssvc_NetrGetJoinInformation.name_buffer  Name Buffer
        String
    wkssvc.wkssvc_NetrGetJoinInformation.name_type  Name Type
        Unsigned 16-bit integer
    wkssvc.wkssvc_NetrGetJoinInformation.server_name  Server Name
        String
    wkssvc.wkssvc_NetrGetJoinableOus.Account  Account
        String
    wkssvc.wkssvc_NetrGetJoinableOus.domain_name  Domain Name
        String
    wkssvc.wkssvc_NetrGetJoinableOus.num_ous  Num Ous
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrGetJoinableOus.ous  Ous
        String
    wkssvc.wkssvc_NetrGetJoinableOus.server_name  Server Name
        String
    wkssvc.wkssvc_NetrGetJoinableOus.unknown  Unknown
        String
    wkssvc.wkssvc_NetrGetJoinableOus2.Account  Account
        String
    wkssvc.wkssvc_NetrGetJoinableOus2.EncryptedPassword  Encryptedpassword
        No value
    wkssvc.wkssvc_NetrGetJoinableOus2.domain_name  Domain Name
        String
    wkssvc.wkssvc_NetrGetJoinableOus2.num_ous  Num Ous
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrGetJoinableOus2.ous  Ous
        String
    wkssvc.wkssvc_NetrGetJoinableOus2.server_name  Server Name
        String
    wkssvc.wkssvc_NetrJoinDomain.Account  Account
        String
    wkssvc.wkssvc_NetrJoinDomain.account_ou  Account Ou
        String
    wkssvc.wkssvc_NetrJoinDomain.domain_name  Domain Name
        String
    wkssvc.wkssvc_NetrJoinDomain.join_flags  Join Flags
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrJoinDomain.server_name  Server Name
        String
    wkssvc.wkssvc_NetrJoinDomain.unknown  Unknown
        String
    wkssvc.wkssvc_NetrJoinDomain2.account_name  Account Name
        String
    wkssvc.wkssvc_NetrJoinDomain2.admin_account  Admin Account
        String
    wkssvc.wkssvc_NetrJoinDomain2.domain_name  Domain Name
        String
    wkssvc.wkssvc_NetrJoinDomain2.encrypted_password  Encrypted Password
        No value
    wkssvc.wkssvc_NetrJoinDomain2.join_flags  Join Flags
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrJoinDomain2.server_name  Server Name
        String
    wkssvc.wkssvc_NetrLogonDomainNameAdd.domain_name  Domain Name
        String
    wkssvc.wkssvc_NetrLogonDomainNameDel.domain_name  Domain Name
        String
    wkssvc.wkssvc_NetrMessageBufferSend.message_buffer  Message Buffer
        Unsigned 8-bit integer
    wkssvc.wkssvc_NetrMessageBufferSend.message_name  Message Name
        String
    wkssvc.wkssvc_NetrMessageBufferSend.message_sender_name  Message Sender Name
        String
    wkssvc.wkssvc_NetrMessageBufferSend.message_size  Message Size
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrMessageBufferSend.server_name  Server Name
        String
    wkssvc.wkssvc_NetrRemoveAlternateComputerName.Account  Account
        String
    wkssvc.wkssvc_NetrRemoveAlternateComputerName.AlternateMachineNameToRemove  Alternatemachinenametoremove
        String
    wkssvc.wkssvc_NetrRemoveAlternateComputerName.EncryptedPassword  Encryptedpassword
        No value
    wkssvc.wkssvc_NetrRemoveAlternateComputerName.Reserved  Reserved
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrRemoveAlternateComputerName.server_name  Server Name
        String
    wkssvc.wkssvc_NetrRenameMachineInDomain.Account  Account
        String
    wkssvc.wkssvc_NetrRenameMachineInDomain.NewMachineName  Newmachinename
        String
    wkssvc.wkssvc_NetrRenameMachineInDomain.RenameOptions  Renameoptions
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrRenameMachineInDomain.password  Password
        String
    wkssvc.wkssvc_NetrRenameMachineInDomain.server_name  Server Name
        String
    wkssvc.wkssvc_NetrRenameMachineInDomain2.Account  Account
        String
    wkssvc.wkssvc_NetrRenameMachineInDomain2.EncryptedPassword  Encryptedpassword
        No value
    wkssvc.wkssvc_NetrRenameMachineInDomain2.NewMachineName  Newmachinename
        String
    wkssvc.wkssvc_NetrRenameMachineInDomain2.RenameOptions  Renameoptions
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrRenameMachineInDomain2.server_name  Server Name
        String
    wkssvc.wkssvc_NetrSetPrimaryComputername.Account  Account
        String
    wkssvc.wkssvc_NetrSetPrimaryComputername.EncryptedPassword  Encryptedpassword
        No value
    wkssvc.wkssvc_NetrSetPrimaryComputername.Reserved  Reserved
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrSetPrimaryComputername.primary_name  Primary Name
        String
    wkssvc.wkssvc_NetrSetPrimaryComputername.server_name  Server Name
        String
    wkssvc.wkssvc_NetrUnjoinDomain.Account  Account
        String
    wkssvc.wkssvc_NetrUnjoinDomain.password  Password
        String
    wkssvc.wkssvc_NetrUnjoinDomain.server_name  Server Name
        String
    wkssvc.wkssvc_NetrUnjoinDomain.unjoin_flags  Unjoin Flags
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUnjoinDomain2.account  Account
        String
    wkssvc.wkssvc_NetrUnjoinDomain2.encrypted_password  Encrypted Password
        No value
    wkssvc.wkssvc_NetrUnjoinDomain2.server_name  Server Name
        String
    wkssvc.wkssvc_NetrUnjoinDomain2.unjoin_flags  Unjoin Flags
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseAdd.ctr  Ctr
        No value
    wkssvc.wkssvc_NetrUseAdd.level  Level
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseAdd.parm_err  Parm Err
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseAdd.server_name  Server Name
        String
    wkssvc.wkssvc_NetrUseDel.force_cond  Force Cond
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseDel.server_name  Server Name
        String
    wkssvc.wkssvc_NetrUseDel.use_name  Use Name
        String
    wkssvc.wkssvc_NetrUseEnum.entries_read  Entries Read
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseEnum.info  Info
        No value
    wkssvc.wkssvc_NetrUseEnum.prefmaxlen  Prefmaxlen
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseEnum.resume_handle  Resume Handle
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseEnum.server_name  Server Name
        String
    wkssvc.wkssvc_NetrUseEnumCtr.ctr0  Ctr0
        No value
    wkssvc.wkssvc_NetrUseEnumCtr.ctr1  Ctr1
        No value
    wkssvc.wkssvc_NetrUseEnumCtr.ctr2  Ctr2
        No value
    wkssvc.wkssvc_NetrUseEnumCtr0.array  Array
        No value
    wkssvc.wkssvc_NetrUseEnumCtr0.count  Count
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseEnumCtr1.array  Array
        No value
    wkssvc.wkssvc_NetrUseEnumCtr1.count  Count
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseEnumCtr2.array  Array
        No value
    wkssvc.wkssvc_NetrUseEnumCtr2.count  Count
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseEnumInfo.ctr  Ctr
        No value
    wkssvc.wkssvc_NetrUseEnumInfo.level  Level
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseGetInfo.ctr  Ctr
        No value
    wkssvc.wkssvc_NetrUseGetInfo.level  Level
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseGetInfo.server_name  Server Name
        String
    wkssvc.wkssvc_NetrUseGetInfo.use_name  Use Name
        String
    wkssvc.wkssvc_NetrUseGetInfoCtr.info0  Info0
        No value
    wkssvc.wkssvc_NetrUseGetInfoCtr.info1  Info1
        No value
    wkssvc.wkssvc_NetrUseGetInfoCtr.info2  Info2
        No value
    wkssvc.wkssvc_NetrUseGetInfoCtr.info3  Info3
        No value
    wkssvc.wkssvc_NetrUseInfo0.local  Local
        String
    wkssvc.wkssvc_NetrUseInfo0.remote  Remote
        String
    wkssvc.wkssvc_NetrUseInfo1.asg_type  Asg Type
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseInfo1.local  Local
        String
    wkssvc.wkssvc_NetrUseInfo1.password  Password
        String
    wkssvc.wkssvc_NetrUseInfo1.ref_count  Ref Count
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseInfo1.remote  Remote
        String
    wkssvc.wkssvc_NetrUseInfo1.status  Status
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseInfo1.use_count  Use Count
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseInfo2.asg_type  Asg Type
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseInfo2.domain_name  Domain Name
        String
    wkssvc.wkssvc_NetrUseInfo2.local  Local
        String
    wkssvc.wkssvc_NetrUseInfo2.password  Password
        String
    wkssvc.wkssvc_NetrUseInfo2.ref_count  Ref Count
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseInfo2.remote  Remote
        String
    wkssvc.wkssvc_NetrUseInfo2.status  Status
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseInfo2.use_count  Use Count
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrUseInfo2.user_name  User Name
        String
    wkssvc.wkssvc_NetrUseInfo3.unknown1  Unknown1
        String
    wkssvc.wkssvc_NetrUseInfo3.unknown2  Unknown2
        String
    wkssvc.wkssvc_NetrValidateName.Account  Account
        String
    wkssvc.wkssvc_NetrValidateName.Password  Password
        String
    wkssvc.wkssvc_NetrValidateName.name  Name
        String
    wkssvc.wkssvc_NetrValidateName.name_type  Name Type
        Unsigned 16-bit integer
    wkssvc.wkssvc_NetrValidateName.server_name  Server Name
        String
    wkssvc.wkssvc_NetrValidateName2.Account  Account
        String
    wkssvc.wkssvc_NetrValidateName2.EncryptedPassword  Encryptedpassword
        No value
    wkssvc.wkssvc_NetrValidateName2.name  Name
        String
    wkssvc.wkssvc_NetrValidateName2.name_type  Name Type
        Unsigned 16-bit integer
    wkssvc.wkssvc_NetrValidateName2.server_name  Server Name
        String
    wkssvc.wkssvc_NetrWkstaTransportAdd.info0  Info0
        No value
    wkssvc.wkssvc_NetrWkstaTransportAdd.level  Level
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWkstaTransportAdd.parm_err  Parm Err
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWkstaTransportAdd.server_name  Server Name
        String
    wkssvc.wkssvc_NetrWkstaTransportDel.server_name  Server Name
        String
    wkssvc.wkssvc_NetrWkstaTransportDel.transport_name  Transport Name
        String
    wkssvc.wkssvc_NetrWkstaTransportDel.unknown3  Unknown3
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWkstaUserGetInfo.info  Info
        No value
    wkssvc.wkssvc_NetrWkstaUserGetInfo.level  Level
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWkstaUserGetInfo.unknown  Unknown
        String
    wkssvc.wkssvc_NetrWkstaUserInfo.info0  Info0
        No value
    wkssvc.wkssvc_NetrWkstaUserInfo.info1  Info1
        No value
    wkssvc.wkssvc_NetrWkstaUserInfo.info1101  Info1101
        No value
    wkssvc.wkssvc_NetrWkstaUserInfo0.user_name  User Name
        String
    wkssvc.wkssvc_NetrWkstaUserInfo1.logon_domain  Logon Domain
        String
    wkssvc.wkssvc_NetrWkstaUserInfo1.logon_server  Logon Server
        String
    wkssvc.wkssvc_NetrWkstaUserInfo1.other_domains  Other Domains
        String
    wkssvc.wkssvc_NetrWkstaUserInfo1.user_name  User Name
        String
    wkssvc.wkssvc_NetrWkstaUserInfo1101.other_domains  Other Domains
        String
    wkssvc.wkssvc_NetrWkstaUserSetInfo.info  Info
        No value
    wkssvc.wkssvc_NetrWkstaUserSetInfo.level  Level
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWkstaUserSetInfo.parm_err  Parm Err
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWkstaUserSetInfo.unknown  Unknown
        String
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown1  Unknown1
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown10  Unknown10
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown11  Unknown11
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown12  Unknown12
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown13  Unknown13
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown14  Unknown14
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown15  Unknown15
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown16  Unknown16
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown17  Unknown17
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown18  Unknown18
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown19  Unknown19
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown2  Unknown2
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown20  Unknown20
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown21  Unknown21
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown22  Unknown22
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown23  Unknown23
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown24  Unknown24
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown25  Unknown25
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown26  Unknown26
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown27  Unknown27
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown28  Unknown28
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown29  Unknown29
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown3  Unknown3
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown30  Unknown30
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown31  Unknown31
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown32  Unknown32
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown33  Unknown33
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown34  Unknown34
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown35  Unknown35
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown36  Unknown36
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown37  Unknown37
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown38  Unknown38
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown39  Unknown39
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown4  Unknown4
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown40  Unknown40
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown5  Unknown5
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown6  Unknown6
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown7  Unknown7
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown8  Unknown8
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatistics.unknown9  Unknown9
        Unsigned 64-bit integer
    wkssvc.wkssvc_NetrWorkstationStatisticsGet.info  Info
        No value
    wkssvc.wkssvc_NetrWorkstationStatisticsGet.server_name  Server Name
        String
    wkssvc.wkssvc_NetrWorkstationStatisticsGet.unknown2  Unknown2
        String
    wkssvc.wkssvc_NetrWorkstationStatisticsGet.unknown3  Unknown3
        Unsigned 32-bit integer
    wkssvc.wkssvc_NetrWorkstationStatisticsGet.unknown4  Unknown4
        Unsigned 32-bit integer
    wkssvc.wkssvc_PasswordBuffer.data  Data
        Unsigned 8-bit integer
    wkssvc.wkssvc_joinflags.WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE  Wkssvc Join Flags Account Create
        Boolean
    wkssvc.wkssvc_joinflags.WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE  Wkssvc Join Flags Account Delete
        Boolean
    wkssvc.wkssvc_joinflags.WKSSVC_JOIN_FLAGS_DEFER_SPN  Wkssvc Join Flags Defer Spn
        Boolean
    wkssvc.wkssvc_joinflags.WKSSVC_JOIN_FLAGS_DOMAIN_JOIN_IF_JOINED  Wkssvc Join Flags Domain Join If Joined
        Boolean
    wkssvc.wkssvc_joinflags.WKSSVC_JOIN_FLAGS_JOIN_DC_ACCOUNT  Wkssvc Join Flags Join Dc Account
        Boolean
    wkssvc.wkssvc_joinflags.WKSSVC_JOIN_FLAGS_JOIN_TYPE  Wkssvc Join Flags Join Type
        Boolean
    wkssvc.wkssvc_joinflags.WKSSVC_JOIN_FLAGS_JOIN_UNSECURE  Wkssvc Join Flags Join Unsecure
        Boolean
    wkssvc.wkssvc_joinflags.WKSSVC_JOIN_FLAGS_JOIN_WITH_NEW_NAME  Wkssvc Join Flags Join With New Name
        Boolean
    wkssvc.wkssvc_joinflags.WKSSVC_JOIN_FLAGS_MACHINE_PWD_PASSED  Wkssvc Join Flags Machine Pwd Passed
        Boolean
    wkssvc.wkssvc_joinflags.WKSSVC_JOIN_FLAGS_WIN9X_UPGRADE  Wkssvc Join Flags Win9x Upgrade
        Boolean
    wkssvc.wkssvc_renameflags.WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE  Wkssvc Join Flags Account Create
        Boolean

World of Warcraft (wow)

    wow.build  Build
        Unsigned 16-bit integer
    wow.cmd  Command
        Unsigned 8-bit integer
        Type of packet
    wow.country  Country
        String
        Language and country of client system
    wow.crc_hash  CRC hash
        Byte array
    wow.error  Error
        Unsigned 8-bit integer
    wow.gamename  Game name
        String
    wow.ip  IP address
        IPv4 address
        Client's actual IP address
    wow.num_keys  Number of keys
        Unsigned 8-bit integer
    wow.num_realms  Number of realms
        Unsigned 16-bit integer
    wow.os  Operating system
        String
        Operating system of client system
    wow.pkt_size  Packet size
        Unsigned 16-bit integer
    wow.platform  Platform
        String
        CPU architecture of client system
    wow.realm_color  Color
        Unsigned 8-bit integer
    wow.realm_name  Name
        NULL terminated string
    wow.realm_num_characters  Number of characters
        Unsigned 8-bit integer
        Number of characters the user has in this realm
    wow.realm_population_level  Population level
        Single-precision floating point
    wow.realm_socket  Server socket
        NULL terminated string
        IP address and port to connect to on the server to reach this realm
    wow.realm_status  Status
        Unsigned 8-bit integer
    wow.realm_timezone  Timezone
        Unsigned 8-bit integer
    wow.realm_type  Type
        Unsigned 8-bit integer
        Also known as realm icon
    wow.srp.a  SRP A
        Byte array
        Secure Remote Password protocol 'A' value (one of the public ephemeral values)
    wow.srp.b  SRP B
        Byte array
        Secure Remote Password protocol 'B' value (one of the public ephemeral values)
    wow.srp.g  SRP g
        Byte array
        Secure Remote Password protocol 'g' value
    wow.srp.g_len  SRP g length
        Unsigned 8-bit integer
        Secure Remote Password protocol 'g' value length
    wow.srp.i  SRP I
        String
        Secure Remote Password protocol 'I' value (username)
    wow.srp.i_len  SRP I length
        Unsigned 8-bit integer
        Secure Remote Password protocol 'I' value length
    wow.srp.m1  SRP M1
        Byte array
        Secure Remote Password protocol 'M1' value
    wow.srp.m2  SRP M2
        Byte array
        Secure Remote Password protocol 'M2' value
    wow.srp.n  SRP N
        Byte array
        Secure Remote Password protocol 'N' value (a large safe prime)
    wow.srp.n_len  SRP N length
        Unsigned 8-bit integer
        Secure Remote Password protocol 'N' value length
    wow.srp.s  SRP s
        Byte array
        Secure Remote Password protocol 's' (user's salt) value
    wow.timezone_bias  Timezone bias
        Unsigned 32-bit integer
    wow.version1  Version 1
        Unsigned 8-bit integer
    wow.version2  Version 2
        Unsigned 8-bit integer
    wow.version3  Version 3
        Unsigned 8-bit integer

X Display Manager Control Protocol (xdmcp)

    xdmcp.authentication_name  Authentication name
        String
    xdmcp.authorization_name  Authorization name
        String
    xdmcp.display_number  Display number
        Unsigned 16-bit integer
    xdmcp.hostname  Hostname
        String
    xdmcp.length  Message length
        Unsigned 16-bit integer
        Length of the remaining message
    xdmcp.opcode  Opcode
        Unsigned 16-bit integer
    xdmcp.session_id  Session ID
        Unsigned 32-bit integer
        Session identifier
    xdmcp.status  Status
        String
    xdmcp.version  Version
        Unsigned 16-bit integer
        Protocol version

X.228 OSI Reliable Transfer Service (rtse)

    rtse.abortReason  abortReason
        Signed 32-bit integer
    rtse.additionalReferenceInformation  additionalReferenceInformation
        String
    rtse.applicationProtocol  applicationProtocol
        Signed 32-bit integer
    rtse.callingSSuserReference  callingSSuserReference
        Unsigned 32-bit integer
    rtse.checkpointSize  checkpointSize
        Signed 32-bit integer
        INTEGER
    rtse.commonReference  commonReference
        String
    rtse.connectionDataAC  connectionDataAC
        Unsigned 32-bit integer
        ConnectionData
    rtse.connectionDataRQ  connectionDataRQ
        Unsigned 32-bit integer
        ConnectionData
    rtse.dialogueMode  dialogueMode
        Signed 32-bit integer
    rtse.fragment  RTSE fragment
        Frame number
        Message fragment
    rtse.fragment.error  RTSE defragmentation error
        Frame number
        Message defragmentation error
    rtse.fragment.multiple_tails  RTSE has multiple tail fragments
        Boolean
        Message has multiple tail fragments
    rtse.fragment.overlap  RTSE fragment overlap
        Boolean
        Message fragment overlap
    rtse.fragment.overlap.conflicts  RTSE fragment overlapping with conflicting data
        Boolean
        Message fragment overlapping with conflicting data
    rtse.fragment.too_long_fragment  RTSE fragment too long
        Boolean
        Message fragment too long
    rtse.fragments  RTSE fragments
        No value
        Message fragments
    rtse.octetString  octetString
        Byte array
    rtse.open  open
        No value
    rtse.reassembled.in  Reassembled RTSE in frame
        Frame number
        This RTSE packet is reassembled in this frame
    rtse.reassembled.length  Reassembled RTSE length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    rtse.recover  recover
        No value
        SessionConnectionIdentifier
    rtse.reflectedParameter  reflectedParameter
        Byte array
        BIT_STRING
    rtse.refuseReason  refuseReason
        Signed 32-bit integer
    rtse.rtab_apdu  rtab-apdu
        No value
        RTABapdu
    rtse.rtoac_apdu  rtoac-apdu
        No value
        RTOACapdu
    rtse.rtorj_apdu  rtorj-apdu
        No value
        RTORJapdu
    rtse.rtorq_apdu  rtorq-apdu
        No value
        RTORQapdu
    rtse.rttp_apdu  rttp-apdu
        Signed 32-bit integer
        RTTPapdu
    rtse.rttr_apdu  rttr-apdu
        Byte array
        RTTRapdu
    rtse.t61String  t61String
        String
    rtse.userDataRJ  userDataRJ
        No value
    rtse.userdataAB  userdataAB
        No value
    rtse.windowSize  windowSize
        Signed 32-bit integer
        INTEGER

X.25 (x25)

    x25.a  A Bit
        Boolean
        Address Bit
    x25.d  D Bit
        Boolean
        Delivery Confirmation Bit
    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
    x25.gfi  GFI
        Unsigned 16-bit integer
        General format identifier
    x25.lcn  Logical Channel
        Unsigned 16-bit integer
        Logical Channel Number
    x25.m  M Bit
        Boolean
        More Bit
    x25.mod  Modulo
        Unsigned 16-bit integer
        Specifies whether the frame is modulo 8 or 128
    x25.p_r  P(R)
        Unsigned 8-bit integer
        Packet Receive Sequence Number
    x25.p_s  P(S)
        Unsigned 8-bit integer
        Packet Send Sequence Number
    x25.q  Q Bit
        Boolean
        Qualifier Bit
    x25.reassembled.length  Reassembled X.25 length
        Unsigned 32-bit integer
        The total length of the reassembled payload
    x25.type  Packet Type
        Unsigned 8-bit integer

X.25 over TCP (xot)

    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.type  Packet Type
        Unsigned 8-bit integer
    xot.length  Length
        Unsigned 16-bit integer
        Length of X.25 over TCP packet
    xot.pvc.init_itf_name  Initiator interface name
        String
    xot.pvc.init_itf_name_len  Initiator interface name length
        Unsigned 8-bit integer
    xot.pvc.init_lcn  Initiator LCN
        Unsigned 8-bit integer
        Initiator Logical Channel Number
    xot.pvc.resp_itf_name  Responder interface name
        String
    xot.pvc.resp_itf_name_len  Responder interface name length
        Unsigned 8-bit integer
    xot.pvc.resp_lcn  Responder LCN
        Unsigned 16-bit integer
        Responder Logical Channel Number
    xot.pvc.send_inc_pkt_size  Sender incoming packet size
        Unsigned 8-bit integer
    xot.pvc.send_inc_window  Sender incoming window
        Unsigned 8-bit integer
    xot.pvc.send_out_pkt_size  Sender outgoing packet size
        Unsigned 8-bit integer
    xot.pvc.send_out_window  Sender outgoing window
        Unsigned 8-bit integer
    xot.pvc.status  Status
        Unsigned 8-bit integer
    xot.pvc.version  Version
        Unsigned 8-bit integer
    xot.version  Version
        Unsigned 16-bit integer
        Version of X.25 over TCP protocol

X.29 (x29)

    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

X.411 Message Access Service (p3)

X.411 Message Transfer Service (x411)

    x411.AsymmetricToken  AsymmetricToken
        No value
    x411.BindTokenEncryptedData  BindTokenEncryptedData
        No value
    x411.BindTokenSignedData  BindTokenSignedData
        Byte array
    x411.BuiltInDomainDefinedAttribute  BuiltInDomainDefinedAttribute
        No value
    x411.CancelDeferredDeliveryArgument  CancelDeferredDeliveryArgument
        No value
    x411.CancelDeferredDeliveryResult  CancelDeferredDeliveryResult
        No value
    x411.CertificateSelectors  CertificateSelectors
        No value
    x411.ChangeCredentialsArgument  ChangeCredentialsArgument
        No value
    x411.CommonName  CommonName
        String
    x411.Content  Content
        Byte array
    x411.ContentConfidentialityAlgorithmIdentifier  ContentConfidentialityAlgorithmIdentifier
        No value
    x411.ContentCorrelator  ContentCorrelator
        Unsigned 32-bit integer
    x411.ContentIdentifier  ContentIdentifier
        String
    x411.ContentIntegrityCheck  ContentIntegrityCheck
        No value
    x411.ContentLength  ContentLength
        Unsigned 32-bit integer
    x411.ContentType  ContentType
        Unsigned 32-bit integer
    x411.ConversionWithLossProhibited  ConversionWithLossProhibited
        Unsigned 32-bit integer
    x411.DLExemptedRecipients  DLExemptedRecipients
        Unsigned 32-bit integer
    x411.DLExpansion  DLExpansion
        No value
    x411.DLExpansionHistory  DLExpansionHistory
        Unsigned 32-bit integer
    x411.DLExpansionProhibited  DLExpansionProhibited
        Unsigned 32-bit integer
    x411.DeferredDeliveryTime  DeferredDeliveryTime
        String
    x411.DeliverableClass  DeliverableClass
        No value
    x411.DeliveryControlArgument  DeliveryControlArgument
        No value
    x411.DeliveryControlResult  DeliveryControlResult
        No value
    x411.DeliveryFlags  DeliveryFlags
        Byte array
    x411.ExtendedCertificate  ExtendedCertificate
        Unsigned 32-bit integer
    x411.ExtendedCertificates  ExtendedCertificates
        Unsigned 32-bit integer
    x411.ExtendedContentType  ExtendedContentType
        Object Identifier
    x411.ExtendedEncodedInformationType  ExtendedEncodedInformationType
        Object Identifier
    x411.ExtendedNetworkAddress  ExtendedNetworkAddress
        Unsigned 32-bit integer
    x411.ExtensionAttribute  ExtensionAttribute
        No value
    x411.ExtensionField  ExtensionField
        No value
    x411.ExtensionORAddressComponents  ExtensionORAddressComponents
        No value
    x411.ExtensionPhysicalDeliveryAddressComponents  ExtensionPhysicalDeliveryAddressComponents
        No value
    x411.ImproperlySpecifiedRecipients  ImproperlySpecifiedRecipients
        Unsigned 32-bit integer
    x411.InternalTraceInformation  InternalTraceInformation
        Unsigned 32-bit integer
    x411.InternalTraceInformationElement  InternalTraceInformationElement
        No value
    x411.LatestDeliveryTime  LatestDeliveryTime
        String
    x411.LocalPostalAttributes  LocalPostalAttributes
        No value
    x411.MTABindArgument  MTABindArgument
        Unsigned 32-bit integer
        x411.MTABindArgument
    x411.MTABindError  MTABindError
        Unsigned 32-bit integer
        x411.MTABindError
    x411.MTABindResult  MTABindResult
        Unsigned 32-bit integer
        x411.MTABindResult
    x411.MTANameAndOptionalGDI  MTANameAndOptionalGDI
        No value
    x411.MTSBindArgument  MTSBindArgument
        No value
    x411.MTSBindResult  MTSBindResult
        No value
    x411.MTSIdentifier  MTSIdentifier
        No value
    x411.MTS_APDU  MTS-APDU
        Unsigned 32-bit integer
        x411.MTS_APDU
    x411.MessageDeliveryArgument  MessageDeliveryArgument
        No value
    x411.MessageDeliveryEnvelope  MessageDeliveryEnvelope
        No value
    x411.MessageDeliveryResult  MessageDeliveryResult
        No value
    x411.MessageDeliveryTime  MessageDeliveryTime
        String
    x411.MessageOriginAuthenticationCheck  MessageOriginAuthenticationCheck
        No value
    x411.MessageSecurityLabel  MessageSecurityLabel
        No value
    x411.MessageSubmissionArgument  MessageSubmissionArgument
        No value
    x411.MessageSubmissionEnvelope  MessageSubmissionEnvelope
        No value
    x411.MessageSubmissionResult  MessageSubmissionResult
        No value
    x411.MessageSubmissionTime  MessageSubmissionTime
        String
    x411.MessageToken  MessageToken
        No value
    x411.MessageTokenEncryptedData  MessageTokenEncryptedData
        No value
    x411.MessageTokenSignedData  MessageTokenSignedData
        No value
    x411.ORAddress  ORAddress
        No value
    x411.ORAddressAndOrDirectoryName  ORAddressAndOrDirectoryName
        No value
    x411.ORName  ORName
        No value
    x411.OrganizationalUnitName  OrganizationalUnitName
        String
    x411.OriginatingMTACertificate  OriginatingMTACertificate
        No value
    x411.OriginatorAndDLExpansion  OriginatorAndDLExpansion
        No value
    x411.OriginatorAndDLExpansionHistory  OriginatorAndDLExpansionHistory
        Unsigned 32-bit integer
    x411.OriginatorCertificate  OriginatorCertificate
        No value
    x411.OriginatorReportRequest  OriginatorReportRequest
        Byte array
    x411.OriginatorRequestedAlternateRecipient  OriginatorRequestedAlternateRecipient
        No value
    x411.OriginatorReturnAddress  OriginatorReturnAddress
        No value
    x411.OtherRecipientName  OtherRecipientName
        No value
    x411.PAR_control_violates_registration  PAR-control-violates-registration
        No value
    x411.PAR_deferred_delivery_cancellation_rejected  PAR-deferred-delivery-cancellation-rejected
        No value
    x411.PAR_delivery_control_violated  PAR-delivery-control-violated
        No value
    x411.PAR_element_of_service_not_subscribed  PAR-element-of-service-not-subscribed
        No value
    x411.PAR_inconsistent_request  PAR-inconsistent-request
        No value
    x411.PAR_message_submission_identifier_invalid  PAR-message-submission-identifier-invalid
        No value
    x411.PAR_mts_bind_error  PAR-mts-bind-error
        Unsigned 32-bit integer
    x411.PAR_new_credentials_unacceptable  PAR-new-credentials-unacceptable
        No value
    x411.PAR_old_credentials_incorrectly_specified  PAR-old-credentials-incorrectly-specified
        No value
    x411.PAR_originator_invalid  PAR-originator-invalid
        No value
    x411.PAR_register_rejected  PAR-register-rejected
        No value
    x411.PAR_remote_bind_error  PAR-remote-bind-error
        No value
    x411.PAR_submission_control_violated  PAR-submission-control-violated
        No value
    x411.PAR_unsupported_critical_function  PAR-unsupported-critical-function
        No value
    x411.PDSName  PDSName
        String
    x411.PerDomainBilateralInformation  PerDomainBilateralInformation
        No value
    x411.PerMessageIndicators  PerMessageIndicators
        Byte array
    x411.PerRecipientMessageSubmissionFields  PerRecipientMessageSubmissionFields
        No value
    x411.PerRecipientMessageTransferFields  PerRecipientMessageTransferFields
        No value
    x411.PerRecipientProbeSubmissionFields  PerRecipientProbeSubmissionFields
        No value
    x411.PerRecipientProbeTransferFields  PerRecipientProbeTransferFields
        No value
    x411.PerRecipientReportDeliveryFields  PerRecipientReportDeliveryFields
        No value
    x411.PerRecipientReportTransferFields  PerRecipientReportTransferFields
        No value
    x411.PhysicalDeliveryCountryName  PhysicalDeliveryCountryName
        Unsigned 32-bit integer
    x411.PhysicalDeliveryModes  PhysicalDeliveryModes
        Byte array
    x411.PhysicalDeliveryOfficeName  PhysicalDeliveryOfficeName
        No value
    x411.PhysicalDeliveryOfficeNumber  PhysicalDeliveryOfficeNumber
        No value
    x411.PhysicalDeliveryOrganizationName  PhysicalDeliveryOrganizationName
        No value
    x411.PhysicalDeliveryPersonalName  PhysicalDeliveryPersonalName
        No value
    x411.PhysicalDeliveryReportRequest  PhysicalDeliveryReportRequest
        Unsigned 32-bit integer
    x411.PhysicalForwardingAddress  PhysicalForwardingAddress
        No value
    x411.PhysicalForwardingAddressRequest  PhysicalForwardingAddressRequest
        Unsigned 32-bit integer
    x411.PhysicalForwardingProhibited  PhysicalForwardingProhibited
        Unsigned 32-bit integer
    x411.PhysicalRenditionAttributes  PhysicalRenditionAttributes
        Object Identifier
    x411.PostOfficeBoxAddress  PostOfficeBoxAddress
        No value
    x411.PostalCode  PostalCode
        Unsigned 32-bit integer
    x411.PosteRestanteAddress  PosteRestanteAddress
        No value
    x411.Priority  Priority
        Unsigned 32-bit integer
    x411.ProbeOriginAuthenticationCheck  ProbeOriginAuthenticationCheck
        No value
    x411.ProbeSubmissionArgument  ProbeSubmissionArgument
        No value
    x411.ProbeSubmissionEnvelope  ProbeSubmissionEnvelope
        No value
    x411.ProbeSubmissionResult  ProbeSubmissionResult
        No value
    x411.ProofOfDelivery  ProofOfDelivery
        No value
    x411.ProofOfDeliveryRequest  ProofOfDeliveryRequest
        Unsigned 32-bit integer
    x411.ProofOfSubmission  ProofOfSubmission
        No value
    x411.ProofOfSubmissionRequest  ProofOfSubmissionRequest
        Unsigned 32-bit integer
    x411.RES_change_credentials  RES-change-credentials
        No value
    x411.RecipientCertificate  RecipientCertificate
        No value
    x411.RecipientName  RecipientName
        No value
    x411.RecipientNumberForAdvice  RecipientNumberForAdvice
        String
    x411.RecipientReassignmentProhibited  RecipientReassignmentProhibited
        Unsigned 32-bit integer
    x411.RecipientRedirection  RecipientRedirection
        No value
    x411.Redirection  Redirection
        No value
    x411.RedirectionClass  RedirectionClass
        No value
    x411.RedirectionHistory  RedirectionHistory
        Unsigned 32-bit integer
    x411.RefusedOperation  RefusedOperation
        No value
    x411.RegisterArgument  RegisterArgument
        No value
    x411.RegisterResult  RegisterResult
        Unsigned 32-bit integer
    x411.RegisteredMailType  RegisteredMailType
        Unsigned 32-bit integer
    x411.ReportDeliveryArgument  ReportDeliveryArgument
        No value
    x411.ReportDeliveryEnvelope  ReportDeliveryEnvelope
        No value
    x411.ReportDeliveryResult  ReportDeliveryResult
        Unsigned 32-bit integer
    x411.ReportOriginAuthenticationCheck  ReportOriginAuthenticationCheck
        No value
    x411.ReportingDLName  ReportingDLName
        No value
    x411.ReportingMTACertificate  ReportingMTACertificate
        No value
    x411.ReportingMTAName  ReportingMTAName
        No value
    x411.RequestedDeliveryMethod  RequestedDeliveryMethod
        Unsigned 32-bit integer
    x411.RequestedDeliveryMethod_item  RequestedDeliveryMethod item
        Unsigned 32-bit integer
    x411.Restriction  Restriction
        No value
    x411.SecurityCategory  SecurityCategory
        No value
    x411.SecurityClassification  SecurityClassification
        Unsigned 32-bit integer
    x411.SecurityLabel  SecurityLabel
        No value
    x411.SecurityProblem  SecurityProblem
        Unsigned 32-bit integer
    x411.StreetAddress  StreetAddress
        No value
    x411.SubjectSubmissionIdentifier  SubjectSubmissionIdentifier
        No value
    x411.SubmissionControlArgument  SubmissionControlArgument
        No value
    x411.SubmissionControlResult  SubmissionControlResult
        No value
    x411.TeletexCommonName  TeletexCommonName
        String
    x411.TeletexDomainDefinedAttribute  TeletexDomainDefinedAttribute
        No value
    x411.TeletexDomainDefinedAttributes  TeletexDomainDefinedAttributes
        Unsigned 32-bit integer
    x411.TeletexOrganizationName  TeletexOrganizationName
        String
    x411.TeletexOrganizationalUnitName  TeletexOrganizationalUnitName
        String
    x411.TeletexOrganizationalUnitNames  TeletexOrganizationalUnitNames
        Unsigned 32-bit integer
    x411.TeletexPersonalName  TeletexPersonalName
        No value
    x411.TerminalType  TerminalType
        Unsigned 32-bit integer
    x411.TraceInformation  TraceInformation
        Unsigned 32-bit integer
    x411.TraceInformationElement  TraceInformationElement
        No value
    x411.UnformattedPostalAddress  UnformattedPostalAddress
        No value
    x411.UniquePostalName  UniquePostalName
        No value
    x411.UniversalCommonName  UniversalCommonName
        No value
    x411.UniversalDomainDefinedAttribute  UniversalDomainDefinedAttribute
        No value
    x411.UniversalDomainDefinedAttributes  UniversalDomainDefinedAttributes
        Unsigned 32-bit integer
    x411.UniversalExtensionORAddressComponents  UniversalExtensionORAddressComponents
        No value
    x411.UniversalExtensionPhysicalDeliveryAddressComponents  UniversalExtensionPhysicalDeliveryAddressComponents
        No value
    x411.UniversalLocalPostalAttributes  UniversalLocalPostalAttributes
        No value
    x411.UniversalOrganizationName  UniversalOrganizationName
        No value
    x411.UniversalOrganizationalUnitName  UniversalOrganizationalUnitName
        No value
    x411.UniversalOrganizationalUnitNames  UniversalOrganizationalUnitNames
        Unsigned 32-bit integer
    x411.UniversalPersonalName  UniversalPersonalName
        No value
    x411.UniversalPhysicalDeliveryOfficeName  UniversalPhysicalDeliveryOfficeName
        No value
    x411.UniversalPhysicalDeliveryOfficeNumber  UniversalPhysicalDeliveryOfficeNumber
        No value
    x411.UniversalPhysicalDeliveryOrganizationName  UniversalPhysicalDeliveryOrganizationName
        No value
    x411.UniversalPhysicalDeliveryPersonalName  UniversalPhysicalDeliveryPersonalName
        No value
    x411.UniversalPostOfficeBoxAddress  UniversalPostOfficeBoxAddress
        No value
    x411.UniversalPosteRestanteAddress  UniversalPosteRestanteAddress
        No value
    x411.UniversalStreetAddress  UniversalStreetAddress
        No value
    x411.UniversalUnformattedPostalAddress  UniversalUnformattedPostalAddress
        No value
    x411.UniversalUniquePostalName  UniversalUniquePostalName
        No value
    x411.a3-width  a3-width
        Boolean
    x411.abortReason  abortReason
        Signed 32-bit integer
    x411.acceptable_eits  acceptable-eits
        Unsigned 32-bit integer
        ExtendedEncodedInformationTypes
    x411.actual_recipient_name  actual-recipient-name
        No value
        MTAActualRecipientName
    x411.additional_information  additional-information
        No value
        AdditionalInformation
    x411.administration_domain_name  administration-domain-name
        Unsigned 32-bit integer
        AdministrationDomainName
    x411.algorithmIdentifier  algorithmIdentifier
        No value
    x411.algorithm_identifier  algorithm-identifier
        No value
        AlgorithmIdentifier
    x411.alternate-recipient-allowed  alternate-recipient-allowed
        Boolean
    x411.applies_only_to  applies-only-to
        Unsigned 32-bit integer
        SEQUENCE_OF_Restriction
    x411.arrival_time  arrival-time
        String
        ArrivalTime
    x411.asymmetric_token_data  asymmetric-token-data
        No value
        AsymmetricTokenData
    x411.attempted  attempted
        Unsigned 32-bit integer
    x411.attempted_domain  attempted-domain
        No value
        GlobalDomainIdentifier
    x411.authenticated  authenticated
        No value
        AuthenticatedArgument
    x411.b4-length  b4-length
        Boolean
    x411.b4-width  b4-width
        Boolean
    x411.bft  bft
        Boolean
    x411.bilateral_information  bilateral-information
        No value
    x411.bind_token  bind-token
        No value
        Token
    x411.bit-5  bit-5
        Boolean
    x411.bit-6  bit-6
        Boolean
    x411.built_in  built-in
        Unsigned 32-bit integer
        BuiltInContentType
    x411.built_in_argument  built-in-argument
        Unsigned 32-bit integer
        RefusedArgument
    x411.built_in_domain_defined_attributes  built-in-domain-defined-attributes
        Unsigned 32-bit integer
        BuiltInDomainDefinedAttributes
    x411.built_in_encoded_information_types  built-in-encoded-information-types
        Byte array
        BuiltInEncodedInformationTypes
    x411.built_in_standard_attributes  built-in-standard-attributes
        No value
        BuiltInStandardAttributes
    x411.bureau-fax-delivery  bureau-fax-delivery
        Boolean
    x411.certificate  certificate
        No value
        Certificates
    x411.certificate_selector  certificate-selector
        No value
        CertificateAssertion
    x411.character-mode  character-mode
        Boolean
    x411.character_encoding  character-encoding
        Unsigned 32-bit integer
    x411.content  content
        Byte array
    x411.content-return-request  content-return-request
        Boolean
    x411.content_confidentiality_algorithm_identifier  content-confidentiality-algorithm-identifier
        No value
        ContentConfidentialityAlgorithmIdentifier
    x411.content_confidentiality_key  content-confidentiality-key
        Byte array
        EncryptionKey
    x411.content_identifier  content-identifier
        String
        ContentIdentifier
    x411.content_integrity_check  content-integrity-check
        No value
        CertificateAssertion
    x411.content_integrity_key  content-integrity-key
        Byte array
        EncryptionKey
    x411.content_length  content-length
        Unsigned 32-bit integer
        ContentLength
    x411.content_type  content-type
        Unsigned 32-bit integer
        ContentType
    x411.content_types  content-types
        Unsigned 32-bit integer
        ContentTypes
    x411.control_character_sets  control-character-sets
        String
        TeletexString
    x411.converted_encoded_information_types  converted-encoded-information-types
        No value
        ConvertedEncodedInformationTypes
    x411.counter-collection  counter-collection
        Boolean
    x411.counter-collection-with-telephone-advice  counter-collection-with-telephone-advice
        Boolean
    x411.counter-collection-with-teletex-advice  counter-collection-with-teletex-advice
        Boolean
    x411.counter-collection-with-telex-advice  counter-collection-with-telex-advice
        Boolean
    x411.country_name  country-name
        Unsigned 32-bit integer
        CountryName
    x411.criticality  criticality
        Byte array
    x411.default-delivery-controls  default-delivery-controls
        Boolean
    x411.default_delivery_controls  default-delivery-controls
        No value
        DefaultDeliveryControls
    x411.deferred_delivery_time  deferred-delivery-time
        String
        DeferredDeliveryTime
    x411.deferred_time  deferred-time
        String
        DeferredTime
    x411.deliverable-class  deliverable-class
        Boolean
    x411.deliverable_class  deliverable-class
        Unsigned 32-bit integer
        SET_SIZE_1_ub_deliverable_class_OF_DeliverableClass
    x411.delivery  delivery
        No value
        DeliveryReport
    x411.delivery_flags  delivery-flags
        Byte array
        DeliveryFlags
    x411.directory_entry  directory-entry
        Unsigned 32-bit integer
        Name
    x411.directory_name  directory-name
        Unsigned 32-bit integer
        Name
    x411.disclosure-of-other-recipients  disclosure-of-other-recipients
        Boolean
    x411.dl  dl
        No value
        ORAddressAndOptionalDirectoryName
    x411.dl-expanded-by  dl-expanded-by
        Boolean
    x411.dl-operation  dl-operation
        Boolean
    x411.dl_expansion_time  dl-expansion-time
        String
        Time
    x411.domain  domain
        Unsigned 32-bit integer
        T_bilateral_domain
    x411.domain_supplied_information  domain-supplied-information
        No value
        DomainSuppliedInformation
    x411.dtm  dtm
        Boolean
    x411.e163_4_address  e163-4-address
        No value
    x411.edi  edi
        Boolean
    x411.empty_result  empty-result
        No value
    x411.encoded_information_types_constraints  encoded-information-types-constraints
        No value
        EncodedInformationTypesConstraints
    x411.encrypted  encrypted
        Byte array
        BIT_STRING
    x411.encrypted_data  encrypted-data
        Byte array
        BIT_STRING
    x411.encryption_algorithm_identifier  encryption-algorithm-identifier
        No value
        AlgorithmIdentifier
    x411.encryption_originator  encryption-originator
        No value
        CertificateAssertion
    x411.encryption_recipient  encryption-recipient
        No value
        CertificateAssertion
    x411.envelope  envelope
        No value
        MessageTransferEnvelope
    x411.exact_match  exact-match
        No value
        ORName
    x411.exclusively_acceptable_eits  exclusively-acceptable-eits
        Unsigned 32-bit integer
        ExtendedEncodedInformationTypes
    x411.explicit_conversion  explicit-conversion
        Unsigned 32-bit integer
        ExplicitConversion
    x411.express-mail  express-mail
        Boolean
    x411.extended  extended
        Object Identifier
        ExtendedContentType
    x411.extended_encoded_information_types  extended-encoded-information-types
        Unsigned 32-bit integer
        ExtendedEncodedInformationTypes
    x411.extension_attribute_type  extension-attribute-type
        Signed 32-bit integer
        ExtensionAttributeType
    x411.extension_attribute_value  extension-attribute-value
        No value
    x411.extension_attributes  extension-attributes
        Unsigned 32-bit integer
        ExtensionAttributes
    x411.extensions  extensions
        Unsigned 32-bit integer
        SET_OF_ExtensionField
    x411.extensions_item  extensions item
        Unsigned 32-bit integer
        T_type_extensions_item
    x411.fine-resolution  fine-resolution
        Boolean
    x411.for-delivery  for-delivery
        Boolean
    x411.for-submission  for-submission
        Boolean
    x411.for-transfer  for-transfer
        Boolean
    x411.four_octets  four-octets
        String
        UniversalString_SIZE_1_ub_string_length
    x411.full-colour  full-colour
        Boolean
    x411.g3-facsimile  g3-facsimile
        Boolean
    x411.g3_facsimile  g3-facsimile
        Byte array
        G3FacsimileNonBasicParameters
    x411.g4-class-1  g4-class-1
        Boolean
    x411.generation_qualifier  generation-qualifier
        String
        T_printable_generation_qualifier
    x411.given_name  given-name
        String
        T_printable_given_name
    x411.global_domain_identifier  global-domain-identifier
        No value
        GlobalDomainIdentifier
    x411.graphic_character_sets  graphic-character-sets
        String
        TeletexString
    x411.ia5-text  ia5-text
        Boolean
    x411.ia5_string  ia5-string
        String
        IA5String_SIZE_0_ub_password_length
    x411.ia5text  ia5text
        String
        IA5String
    x411.implicit-conversion-prohibited  implicit-conversion-prohibited
        Boolean
    x411.initials  initials
        String
        T_printable_initials
    x411.initiator_credentials  initiator-credentials
        Unsigned 32-bit integer
        InitiatorCredentials
    x411.initiator_name  initiator-name
        String
        MTAName
    x411.intended_recipient  intended-recipient
        No value
        ORAddressAndOptionalDirectoryName
    x411.intended_recipient_name  intended-recipient-name
        No value
        IntendedRecipientName
    x411.iso_3166_alpha2_code  iso-3166-alpha2-code
        String
    x411.iso_639_language_code  iso-639-language-code
        String
        PrintableString_SIZE_CONSTR42072472
    x411.jpeg  jpeg
        Boolean
    x411.last_trace_information  last-trace-information
        No value
        LastTraceInformation
    x411.local_identifier  local-identifier
        String
        LocalIdentifier
    x411.long-content  long-content
        Boolean
    x411.low-priority  low-priority
        Boolean
    x411.mTA  mTA
        String
        MTAName
    x411.maximum_content_length  maximum-content-length
        Unsigned 32-bit integer
        ContentLength
    x411.message  message
        No value
    x411.message-submission-or-message-delivery  message-submission-or-message-delivery
        Boolean
    x411.message_delivery_identifier  message-delivery-identifier
        No value
        MessageDeliveryIdentifier
    x411.message_delivery_time  message-delivery-time
        String
        MessageDeliveryTime
    x411.message_identifier  message-identifier
        No value
        MessageIdentifier
    x411.message_origin_authentication  message-origin-authentication
        No value
        CertificateAssertion
    x411.message_security_label  message-security-label
        No value
        MessageSecurityLabel
    x411.message_sequence_number  message-sequence-number
        Signed 32-bit integer
        INTEGER
    x411.message_store  message-store
        No value
        ORAddressAndOptionalDirectoryName
    x411.message_submission_identifier  message-submission-identifier
        No value
        MessageSubmissionIdentifier
    x411.message_submission_time  message-submission-time
        String
        MessageSubmissionTime
    x411.messages  messages
        Unsigned 32-bit integer
        INTEGER_0_ub_queue_size
    x411.messages_waiting  messages-waiting
        No value
        MessagesWaiting
    x411.miscellaneous_terminal_capabilities  miscellaneous-terminal-capabilities
        String
        TeletexString
    x411.mixed-mode  mixed-mode
        Boolean
    x411.mta  mta
        No value
        MTANameAndOptionalGDI
    x411.mta_directory_name  mta-directory-name
        Unsigned 32-bit integer
        Name
    x411.mta_name  mta-name
        String
        MTAName
    x411.mta_supplied_information  mta-supplied-information
        No value
        MTASuppliedInformation
    x411.name  name
        Unsigned 32-bit integer
    x411.network_address  network-address
        String
        NetworkAddress
    x411.new_credentials  new-credentials
        Unsigned 32-bit integer
        Credentials
    x411.non-delivery-report  non-delivery-report
        Boolean
    x411.non_delivery  non-delivery
        No value
        NonDeliveryReport
    x411.non_delivery_diagnostic_code  non-delivery-diagnostic-code
        Unsigned 32-bit integer
        NonDeliveryDiagnosticCode
    x411.non_delivery_reason_code  non-delivery-reason-code
        Unsigned 32-bit integer
        NonDeliveryReasonCode
    x411.non_empty_result  non-empty-result
        No value
    x411.non_urgent  non-urgent
        No value
        DeliveryQueue
    x411.normal  normal
        No value
        DeliveryQueue
    x411.number  number
        String
        NumericString_SIZE_1_ub_e163_4_number_length
    x411.numeric  numeric
        String
        T_numeric_private_domain_identifier
    x411.numeric_code  numeric-code
        String
    x411.numeric_user_identifier  numeric-user-identifier
        String
        NumericUserIdentifier
    x411.objects  objects
        Unsigned 32-bit integer
    x411.octet_string  octet-string
        Byte array
        OCTET_STRING_SIZE_0_ub_password_length
    x411.octets  octets
        Unsigned 32-bit integer
        INTEGER_0_ub_content_length
    x411.old_credentials  old-credentials
        Unsigned 32-bit integer
        Credentials
    x411.ordinary-mail  ordinary-mail
        Boolean
    x411.organization_name  organization-name
        String
        OrganizationName
    x411.organizational_unit_names  organizational-unit-names
        Unsigned 32-bit integer
        OrganizationalUnitNames
    x411.original_encoded_information_types  original-encoded-information-types
        No value
        OriginalEncodedInformationTypes
    x411.originally_intended_recipient_name  originally-intended-recipient-name
        No value
        OriginallyIntendedRecipientName
    x411.originally_specified_recipient_number  originally-specified-recipient-number
        Unsigned 32-bit integer
        OriginallySpecifiedRecipientNumber
    x411.originated-by  originated-by
        Boolean
    x411.originating-MTA-non-delivery-report  originating-MTA-non-delivery-report
        Boolean
    x411.originating-MTA-report  originating-MTA-report
        Boolean
    x411.origination_or_expansion_time  origination-or-expansion-time
        String
        Time
    x411.originator-non-delivery-report  originator-non-delivery-report
        Boolean
    x411.originator-report  originator-report
        Boolean
    x411.originator_name  originator-name
        No value
        MTAOriginatorName
    x411.originator_or_dl_name  originator-or-dl-name
        No value
        ORAddressAndOptionalDirectoryName
    x411.originator_report_request  originator-report-request
        Byte array
        OriginatorReportRequest
    x411.other-security-labels  other-security-labels
        Boolean
    x411.other_actions  other-actions
        Byte array
        OtherActions
    x411.other_fields  other-fields
        No value
        OtherMessageDeliveryFields
    x411.other_recipient_names  other-recipient-names
        Unsigned 32-bit integer
        OtherRecipientNames
    x411.page_formats  page-formats
        Byte array
        OCTET_STRING
    x411.pattern_match  pattern-match
        No value
        ORName
    x411.per_domain_bilateral_information  per-domain-bilateral-information
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_ub_transfers_OF_PerDomainBilateralInformation
    x411.per_message_indicators  per-message-indicators
        Byte array
        PerMessageIndicators
    x411.per_recipient_fields  per-recipient-fields
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_ub_recipients_OF_PerRecipientMessageTransferFields
    x411.per_recipient_indicators  per-recipient-indicators
        Byte array
        PerRecipientIndicators
    x411.permissible_content_types  permissible-content-types
        Unsigned 32-bit integer
        ContentTypes
    x411.permissible_encoded_information_types  permissible-encoded-information-types
        No value
        PermissibleEncodedInformationTypes
    x411.permissible_lowest_priority  permissible-lowest-priority
        Unsigned 32-bit integer
        Priority
    x411.permissible_maximum_content_length  permissible-maximum-content-length
        Unsigned 32-bit integer
        ContentLength
    x411.permissible_operations  permissible-operations
        Byte array
        Operations
    x411.permissible_security_context  permissible-security-context
        Unsigned 32-bit integer
        SecurityContext
    x411.permitted  permitted
        Boolean
        BOOLEAN
    x411.personal_name  personal-name
        No value
        PersonalName
    x411.preferred-huffmann  preferred-huffmann
        Boolean
    x411.presentation  presentation
        No value
        PSAPAddress
    x411.printable  printable
        String
        T_printable_private_domain_identifier
    x411.printable_address  printable-address
        Unsigned 32-bit integer
    x411.printable_address_item  printable-address item
        String
        PrintableString_SIZE_1_ub_pds_parameter_length
    x411.printable_code  printable-code
        String
        PrintableString_SIZE_1_ub_postal_code_length
    x411.printable_string  printable-string
        String
        PrintableString_SIZE_1_ub_pds_parameter_length
    x411.priority  priority
        Unsigned 32-bit integer
    x411.privacy_mark  privacy-mark
        String
        PrivacyMark
    x411.private_domain  private-domain
        No value
    x411.private_domain_identifier  private-domain-identifier
        Unsigned 32-bit integer
        PrivateDomainIdentifier
    x411.private_domain_name  private-domain-name
        Unsigned 32-bit integer
        PrivateDomainName
    x411.private_extension  private-extension
        Object Identifier
    x411.private_use  private-use
        Byte array
        OCTET_STRING
    x411.probe  probe
        No value
    x411.probe-submission-or-report-delivery  probe-submission-or-report-delivery
        Boolean
    x411.probe_identifier  probe-identifier
        No value
        ProbeIdentifier
    x411.probe_submission_identifier  probe-submission-identifier
        No value
        ProbeSubmissionIdentifier
    x411.probe_submission_time  probe-submission-time
        String
        ProbeSubmissionTime
    x411.processable-mode-26  processable-mode-26
        Boolean
    x411.proof_of_delivery  proof-of-delivery
        No value
        ProofOfDelivery
    x411.proof_of_delivery_request  proof-of-delivery-request
        Unsigned 32-bit integer
        ProofOfDeliveryRequest
    x411.protected  protected
        No value
        ProtectedPassword
    x411.psap_address  psap-address
        No value
        PresentationAddress
    x411.random1  random1
        Byte array
        BIT_STRING
    x411.random2  random2
        Byte array
        BIT_STRING
    x411.recipient_assigned_alternate_recipient  recipient-assigned-alternate-recipient
        No value
        RecipientAssignedAlternateRecipient
    x411.recipient_certificate  recipient-certificate
        No value
        RecipientCertificate
    x411.recipient_name  recipient-name
        No value
        MTARecipientName
    x411.redirected  redirected
        Boolean
    x411.redirected-by  redirected-by
        Boolean
    x411.redirection_classes  redirection-classes
        Unsigned 32-bit integer
        SET_SIZE_1_ub_redirection_classes_OF_RedirectionClass
    x411.redirection_reason  redirection-reason
        Unsigned 32-bit integer
        RedirectionReason
    x411.redirection_time  redirection-time
        String
        Time
    x411.redirections  redirections
        Unsigned 32-bit integer
    x411.reflectedParameter  reflectedParameter
        Byte array
        BIT_STRING
    x411.refusal_reason  refusal-reason
        Unsigned 32-bit integer
        RefusalReason
    x411.refused_argument  refused-argument
        Unsigned 32-bit integer
    x411.refused_extension  refused-extension
        Unsigned 32-bit integer
    x411.registered_information  registered-information
        No value
        RegisterArgument
    x411.report  report
        No value
    x411.report_destination_name  report-destination-name
        No value
        ReportDestinationName
    x411.report_identifier  report-identifier
        No value
        ReportIdentifier
    x411.report_type  report-type
        Unsigned 32-bit integer
        ReportType
    x411.reserved  reserved
        Boolean
    x411.reserved-5  reserved-5
        Boolean
    x411.reserved-6  reserved-6
        Boolean
    x411.reserved-7  reserved-7
        Boolean
    x411.resolution-300x300  resolution-300x300
        Boolean
    x411.resolution-400x400  resolution-400x400
        Boolean
    x411.resolution-8x15  resolution-8x15
        Boolean
    x411.resolution-type  resolution-type
        Boolean
    x411.responder_credentials  responder-credentials
        Unsigned 32-bit integer
        ResponderCredentials
    x411.responder_name  responder-name
        String
        MTAName
    x411.responsibility  responsibility
        Boolean
    x411.restrict  restrict
        Boolean
        BOOLEAN
    x411.restricted-delivery  restricted-delivery
        Boolean
    x411.restricted_delivery  restricted-delivery
        Unsigned 32-bit integer
        RestrictedDelivery
    x411.retrieve_registrations  retrieve-registrations
        No value
        RegistrationTypes
    x411.returned_content  returned-content
        Byte array
        Content
    x411.routing_action  routing-action
        Unsigned 32-bit integer
        RoutingAction
    x411.rtab_apdu  rtab-apdu
        No value
        RTABapdu
    x411.rtoac_apdu  rtoac-apdu
        No value
        RTOACapdu
    x411.rtorj_apdu  rtorj-apdu
        No value
        RTORJapdu
    x411.rtorq_apdu  rtorq-apdu
        No value
        RTORQapdu
    x411.rttp_apdu  rttp-apdu
        Signed 32-bit integer
        RTTPapdu
    x411.rttr_apdu  rttr-apdu
        Byte array
        RTTRapdu
    x411.security_categories  security-categories
        Unsigned 32-bit integer
        SecurityCategories
    x411.security_classification  security-classification
        Unsigned 32-bit integer
        SecurityClassification
    x411.security_context  security-context
        Unsigned 32-bit integer
        SecurityContext
    x411.security_labels  security-labels
        Unsigned 32-bit integer
        SecurityContext
    x411.security_policy_identifier  security-policy-identifier
        Object Identifier
        SecurityPolicyIdentifier
    x411.service-message  service-message
        Boolean
    x411.sfd  sfd
        Boolean
    x411.signature  signature
        No value
    x411.signature_algorithm_identifier  signature-algorithm-identifier
        No value
        AlgorithmIdentifier
    x411.signed_data  signed-data
        No value
        TokenData
    x411.simple  simple
        Unsigned 32-bit integer
        Password
    x411.source_name  source-name
        Unsigned 32-bit integer
        ExactOrPattern
    x411.source_type  source-type
        Byte array
    x411.special-delivery  special-delivery
        Boolean
    x411.standard_extension  standard-extension
        Signed 32-bit integer
        StandardExtension
    x411.standard_parameters  standard-parameters
        Byte array
    x411.strong  strong
        No value
        StrongCredentials
    x411.sub_address  sub-address
        String
        NumericString_SIZE_1_ub_e163_4_sub_address_length
    x411.subject_identifier  subject-identifier
        No value
        SubjectIdentifier
    x411.subject_intermediate_trace_information  subject-intermediate-trace-information
        Unsigned 32-bit integer
        SubjectIntermediateTraceInformation
    x411.subject_submission_identifier  subject-submission-identifier
        No value
        SubjectSubmissionIdentifier
    x411.supplementary_information  supplementary-information
        String
        SupplementaryInformation
    x411.surname  surname
        String
        T_printable_surname
    x411.t6-coding  t6-coding
        Boolean
    x411.teletex  teletex
        No value
        TeletexNonBasicParameters
    x411.teletex_string  teletex-string
        String
        TeletexString_SIZE_1_ub_unformatted_address_length
    x411.terminal_identifier  terminal-identifier
        String
        TerminalIdentifier
    x411.this_recipient_name  this-recipient-name
        No value
        ThisRecipientName
    x411.time  time
        String
    x411.time1  time1
        String
        UTCTime
    x411.time2  time2
        String
        UTCTime
    x411.token  token
        No value
        TokenTypeData
    x411.token_signature  token-signature
        No value
        CertificateAssertion
    x411.token_type_identifier  token-type-identifier
        Object Identifier
        TokenTypeIdentifier
    x411.trace_information  trace-information
        Unsigned 32-bit integer
        TraceInformation
    x411.tsap_id  tsap-id
        String
        PrintableString_SIZE_1_ub_tsap_id_length
    x411.twelve-bits  twelve-bits
        Boolean
    x411.two-dimensional  two-dimensional
        Boolean
    x411.two_octets  two-octets
        String
        BMPString_SIZE_1_ub_string_length
    x411.type  type
        Unsigned 32-bit integer
        ExtensionType
    x411.type_of_MTS_user  type-of-MTS-user
        Unsigned 32-bit integer
        TypeOfMTSUser
    x411.unacceptable_eits  unacceptable-eits
        Unsigned 32-bit integer
        ExtendedEncodedInformationTypes
    x411.unauthenticated  unauthenticated
        No value
    x411.uncompressed  uncompressed
        Boolean
    x411.unknown  unknown
        Boolean
    x411.unlimited-length  unlimited-length
        Boolean
    x411.urgent  urgent
        No value
        DeliveryQueue
    x411.user-address  user-address
        Boolean
    x411.user-name  user-name
        Boolean
    x411.user_address  user-address
        Unsigned 32-bit integer
        UserAddress
    x411.user_agent  user-agent
        No value
        ORAddressAndOptionalDirectoryName
    x411.user_name  user-name
        No value
        UserName
    x411.userdataAB  userdataAB
        Object Identifier
        OBJECT_IDENTIFIER
    x411.value  value
        No value
        ExtensionValue
    x411.videotex  videotex
        Boolean
    x411.voice  voice
        Boolean
    x411.waiting_content_types  waiting-content-types
        Unsigned 32-bit integer
        SET_SIZE_0_ub_content_types_OF_ContentType
    x411.waiting_encoded_information_types  waiting-encoded-information-types
        No value
        EncodedInformationTypes
    x411.waiting_messages  waiting-messages
        Byte array
        WaitingMessages
    x411.waiting_operations  waiting-operations
        Byte array
        Operations
    x411.width-middle-1216-of-1728  width-middle-1216-of-1728
        Boolean
    x411.width-middle-864-of-1728  width-middle-864-of-1728
        Boolean
    x411.x121  x121
        No value
    x411.x121_address  x121-address
        String
    x411.x121_dcc_code  x121-dcc-code
        String

X.413 Message Store Service (p7)

    p7.AlertArgument  AlertArgument
        No value
    p7.AlertResult  AlertResult
        No value
    p7.Attribute  Attribute
        No value
    p7.AttributeSelection  AttributeSelection
        No value
    p7.AttributeType  AttributeType
        Object Identifier
    p7.AttributeValueCount  AttributeValueCount
        No value
    p7.AutoActionDeregistration  AutoActionDeregistration
        No value
    p7.AutoActionError  AutoActionError
        No value
    p7.AutoActionRegistration  AutoActionRegistration
        No value
    p7.AutoActionType  AutoActionType
        Object Identifier
    p7.ChangeCredentialsAlgorithms  ChangeCredentialsAlgorithms
        Unsigned 32-bit integer
    p7.ChangeCredentialsAlgorithms_item  ChangeCredentialsAlgorithms item
        Object Identifier
        OBJECT_IDENTIFIER
    p7.CreationTime  CreationTime
        String
    p7.DeferredDeliveryCancellationTime  DeferredDeliveryCancellationTime
        String
    p7.DeleteArgument  DeleteArgument
        No value
    p7.DeleteResult  DeleteResult
        Unsigned 32-bit integer
    p7.DeletionTime  DeletionTime
        String
    p7.EntryClass  EntryClass
        Unsigned 32-bit integer
    p7.EntryClassErrorParameter  EntryClassErrorParameter
        No value
    p7.EntryInformation  EntryInformation
        No value
    p7.EntryModification  EntryModification
        No value
    p7.EntryType  EntryType
        Signed 32-bit integer
    p7.ExtensionField  ExtensionField
        No value
    p7.FetchArgument  FetchArgument
        No value
    p7.FetchResult  FetchResult
        No value
    p7.Filter  Filter
        Unsigned 32-bit integer
    p7.GroupNamePart  GroupNamePart
        String
    p7.ListArgument  ListArgument
        No value
    p7.ListResult  ListResult
        No value
    p7.MSBindArgument  MSBindArgument
        No value
    p7.MSBindResult  MSBindResult
        No value
    p7.MSExtensionErrorParameter  MSExtensionErrorParameter
        Unsigned 32-bit integer
    p7.MSExtensionItem  MSExtensionItem
        No value
    p7.MSMessageSubmissionArgument  MSMessageSubmissionArgument
        No value
    p7.MSMessageSubmissionResult  MSMessageSubmissionResult
        Unsigned 32-bit integer
    p7.MSProbeSubmissionArgument  MSProbeSubmissionArgument
        No value
    p7.MSProbeSubmissionResult  MSProbeSubmissionResult
        No value
    p7.MS_EIT  MS-EIT
        Object Identifier
    p7.MessageGroupErrorParameter  MessageGroupErrorParameter
        No value
    p7.MessageGroupName  MessageGroupName
        Unsigned 32-bit integer
    p7.MessageGroupNameAndDescriptor  MessageGroupNameAndDescriptor
        No value
    p7.MessageGroupRegistrations_item  MessageGroupRegistrations item
        Unsigned 32-bit integer
    p7.ModifyArgument  ModifyArgument
        No value
    p7.ModifyErrorParameter  ModifyErrorParameter
        No value
    p7.ModifyResult  ModifyResult
        No value
    p7.OriginatorToken  OriginatorToken
        No value
    p7.PAR_attribute_error  PAR-attribute-error
        No value
    p7.PAR_auto_action_request_error  PAR-auto-action-request-error
        No value
    p7.PAR_delete_error  PAR-delete-error
        No value
    p7.PAR_fetch_restriction_error  PAR-fetch-restriction-error
        No value
    p7.PAR_invalid_parameters_error  PAR-invalid-parameters-error
        No value
    p7.PAR_ms_bind_error  PAR-ms-bind-error
        Unsigned 32-bit integer
    p7.PAR_range_error  PAR-range-error
        No value
    p7.PAR_register_ms_error  PAR-register-ms-error
        No value
    p7.PAR_sequence_number_error  PAR-sequence-number-error
        No value
    p7.PerRecipientProbeSubmissionFields  PerRecipientProbeSubmissionFields
        No value
    p7.PerRecipientReport  PerRecipientReport
        No value
    p7.ProtectedChangeCredentials  ProtectedChangeCredentials
        No value
    p7.RTSE_apdus  RTSE-apdus
        Unsigned 32-bit integer
    p7.Register_MSArgument  Register-MSArgument
        No value
    p7.Register_MSResult  Register-MSResult
        Unsigned 32-bit integer
    p7.ReportLocation  ReportLocation
        Unsigned 32-bit integer
    p7.ReportSummary  ReportSummary
        Unsigned 32-bit integer
    p7.RetrievalStatus  RetrievalStatus
        Signed 32-bit integer
    p7.SecurityLabel  SecurityLabel
        No value
    p7.SequenceNumber  SequenceNumber
        Unsigned 32-bit integer
    p7.ServiceErrorParameter  ServiceErrorParameter
        No value
    p7.SignatureVerificationStatus  SignatureVerificationStatus
        No value
    p7.StoragePeriod  StoragePeriod
        Signed 32-bit integer
    p7.StorageTime  StorageTime
        String
    p7.SubmissionError  SubmissionError
        Unsigned 32-bit integer
    p7.SummarizeArgument  SummarizeArgument
        No value
    p7.SummarizeResult  SummarizeResult
        No value
    p7.Summary  Summary
        No value
    p7.UARegistration  UARegistration
        No value
    p7.abortReason  abortReason
        Signed 32-bit integer
    p7.absent  absent
        Unsigned 32-bit integer
        INTEGER_1_ub_messages
    p7.add_attribute  add-attribute
        No value
        Attribute
    p7.add_message_group_names  add-message-group-names
        Unsigned 32-bit integer
        SET_SIZE_1_ub_message_groups_OF_MessageGroupName
    p7.add_values  add-values
        No value
        OrderedAttribute
    p7.alert_indication  alert-indication
        Boolean
        BOOLEAN
    p7.alert_registration_identifier  alert-registration-identifier
        Unsigned 32-bit integer
        INTEGER_1_ub_auto_actions
    p7.algorithm_identifier  algorithm-identifier
        Object Identifier
        OBJECT_IDENTIFIER
    p7.allowed_EITs  allowed-EITs
        Unsigned 32-bit integer
        MS_EITs
    p7.allowed_content_types  allowed-content-types
        Unsigned 32-bit integer
        T_allowed_content_types
    p7.allowed_content_types_item  allowed-content-types item
        Object Identifier
        OBJECT_IDENTIFIER
    p7.and  and
        Unsigned 32-bit integer
        SET_OF_Filter
    p7.any  any
        No value
    p7.approximate_match  approximate-match
        No value
        AttributeValueAssertion
    p7.attribute_length  attribute-length
        Signed 32-bit integer
        INTEGER
    p7.attribute_type  attribute-type
        Object Identifier
        AttributeType
    p7.attribute_value  attribute-value
        No value
    p7.attribute_values  attribute-values
        Unsigned 32-bit integer
        AttributeValues
    p7.attribute_values_item  attribute-values item
        No value
        AttributeItem
    p7.attributes  attributes
        Unsigned 32-bit integer
        SET_SIZE_1_ub_per_entry_OF_Attribute
    p7.auto-action-registrations  auto-action-registrations
        Boolean
    p7.auto_action_deregistrations  auto-action-deregistrations
        Unsigned 32-bit integer
        SET_SIZE_1_ub_auto_registrations_OF_AutoActionDeregistration
    p7.auto_action_error_indication  auto-action-error-indication
        Unsigned 32-bit integer
        AutoActionErrorIndication
    p7.auto_action_log_entry  auto-action-log-entry
        Unsigned 32-bit integer
        SequenceNumber
    p7.auto_action_registrations  auto-action-registrations
        Unsigned 32-bit integer
        SET_SIZE_1_ub_auto_registrations_OF_AutoActionRegistration
    p7.auto_action_type  auto-action-type
        Object Identifier
        AutoActionType
    p7.available_attribute_types  available-attribute-types
        Unsigned 32-bit integer
        SET_SIZE_1_ub_attributes_supported_OF_AttributeType
    p7.available_auto_actions  available-auto-actions
        Unsigned 32-bit integer
        SET_SIZE_1_ub_auto_actions_OF_AutoActionType
    p7.bind_extension_errors  bind-extension-errors
        Unsigned 32-bit integer
    p7.bind_extension_errors_item  bind-extension-errors item
        Object Identifier
        OBJECT_IDENTIFIER
    p7.bind_extensions  bind-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.bind_problem  bind-problem
        Unsigned 32-bit integer
        BindProblem
    p7.bind_result_extensions  bind-result-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.change_credentials  change-credentials
        No value
    p7.change_descriptors  change-descriptors
        No value
        MessageGroupNameAndDescriptor
    p7.child_entries  child-entries
        Boolean
        BOOLEAN
    p7.content  content
        Byte array
    p7.content_identifier  content-identifier
        String
        ContentIdentifier
    p7.content_integrity_check  content-integrity-check
        Signed 32-bit integer
        SignatureStatus
    p7.content_length  content-length
        Unsigned 32-bit integer
        ContentLength
    p7.content_specific_defaults  content-specific-defaults
        Unsigned 32-bit integer
        MSExtensions
    p7.content_type  content-type
        Unsigned 32-bit integer
        ContentType
    p7.content_types_supported  content-types-supported
        Unsigned 32-bit integer
        T_content_types_supported
    p7.content_types_supported_item  content-types-supported item
        Object Identifier
        OBJECT_IDENTIFIER
    p7.count  count
        Unsigned 32-bit integer
        INTEGER_0_ub_attribute_values
    p7.created_entry  created-entry
        Unsigned 32-bit integer
        SequenceNumber
    p7.creation_time_range  creation-time-range
        No value
        TimeRange
    p7.delete_extensions  delete-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.delete_result_88  delete-result-88
        No value
    p7.delete_result_94  delete-result-94
        No value
        T_delete_result_94
    p7.delete_result_extensions  delete-result-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.deregister_group  deregister-group
        Unsigned 32-bit integer
        MessageGroupName
    p7.disable_auto_modify  disable-auto-modify
        Boolean
        BOOLEAN
    p7.eit  eit
        Unsigned 32-bit integer
        MS_EITs
    p7.element_of_service_not_subscribed  element-of-service-not-subscribed
        No value
    p7.entries  entries
        Unsigned 32-bit integer
    p7.entries_deleted  entries-deleted
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_ub_messages_OF_SequenceNumber
    p7.entries_modified  entries-modified
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_ub_messages_OF_SequenceNumber
    p7.entry-class-not-subscribed  entry-class-not-subscribed
        Boolean
    p7.entry_class  entry-class
        Unsigned 32-bit integer
        EntryClass
    p7.entry_class_error  entry-class-error
        No value
        EntryClassErrorParameter
    p7.entry_classes_supported  entry-classes-supported
        Unsigned 32-bit integer
        SET_SIZE_1_ub_entry_classes_OF_EntryClass
    p7.entry_information  entry-information
        No value
        EntryInformation
    p7.envelope  envelope
        No value
        MessageSubmissionEnvelope
    p7.equality  equality
        No value
        AttributeValueAssertion
    p7.error_code  error-code
        No value
    p7.error_parameter  error-parameter
        No value
    p7.extended_registrations  extended-registrations
        Unsigned 32-bit integer
    p7.extended_registrations_item  extended-registrations item
        No value
    p7.extensions  extensions
        Unsigned 32-bit integer
        SET_OF_ExtensionField
    p7.failing_entry  failing-entry
        Unsigned 32-bit integer
        SequenceNumber
    p7.fetch-attribute-defaults  fetch-attribute-defaults
        Boolean
    p7.fetch_attribute_defaults  fetch-attribute-defaults
        Unsigned 32-bit integer
        SET_SIZE_0_ub_default_registrations_OF_AttributeType
    p7.fetch_extensions  fetch-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.fetch_restrictions  fetch-restrictions
        No value
        Restrictions
    p7.fetch_result_extensions  fetch-result-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.filter  filter
        Unsigned 32-bit integer
    p7.final  final
        No value
    p7.from  from
        Unsigned 32-bit integer
        T_from_number
    p7.greater_or_equal  greater-or-equal
        No value
        AttributeValueAssertion
    p7.highest  highest
        Unsigned 32-bit integer
        SequenceNumber
    p7.immediate_descendants_only  immediate-descendants-only
        Boolean
        BOOLEAN
    p7.inappropriate-entry-class  inappropriate-entry-class
        Boolean
    p7.inconsistent_request  inconsistent-request
        No value
    p7.indication_only  indication-only
        No value
    p7.initial  initial
        No value
    p7.initiator_credentials  initiator-credentials
        Unsigned 32-bit integer
        InitiatorCredentials
    p7.initiator_name  initiator-name
        No value
    p7.item  item
        Unsigned 32-bit integer
        FilterItem
    p7.items  items
        Unsigned 32-bit integer
    p7.less_or_equal  less-or-equal
        No value
        AttributeValueAssertion
    p7.limit  limit
        Unsigned 32-bit integer
        INTEGER_1_ub_messages
    p7.list  list
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_ub_messages_OF_SequenceNumber
    p7.list-attribute-defaults  list-attribute-defaults
        Boolean
    p7.list_attribute_defaults  list-attribute-defaults
        Unsigned 32-bit integer
        SET_SIZE_0_ub_default_registrations_OF_AttributeType
    p7.list_extensions  list-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.list_result_extensions  list-result-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.location  location
        Unsigned 32-bit integer
        SEQUENCE_OF_PerRecipientReport
    p7.lowest  lowest
        Unsigned 32-bit integer
        SequenceNumber
    p7.match_value  match-value
        No value
    p7.matching_rule  matching-rule
        Object Identifier
        OBJECT_IDENTIFIER
    p7.matching_rules_supported  matching-rules-supported
        Unsigned 32-bit integer
    p7.matching_rules_supported_item  matching-rules-supported item
        Object Identifier
        OBJECT_IDENTIFIER
    p7.maximum_attribute_length  maximum-attribute-length
        Signed 32-bit integer
        INTEGER
    p7.message-group-registrations  message-group-registrations
        Boolean
    p7.message_group_depth  message-group-depth
        Unsigned 32-bit integer
        INTEGER_1_ub_group_depth
    p7.message_group_descriptor  message-group-descriptor
        String
        GeneralString_SIZE_1_ub_group_descriptor_length
    p7.message_group_error  message-group-error
        No value
        MessageGroupErrorParameter
    p7.message_group_name  message-group-name
        Unsigned 32-bit integer
        MessageGroupName
    p7.message_group_registrations  message-group-registrations
        Unsigned 32-bit integer
        MessageGroupRegistrations
    p7.message_origin_authentication_check  message-origin-authentication-check
        Signed 32-bit integer
        SignatureStatus
    p7.message_submission_identifier  message-submission-identifier
        No value
        MessageSubmissionIdentifier
    p7.message_submission_time  message-submission-time
        String
        MessageSubmissionTime
    p7.message_token  message-token
        Signed 32-bit integer
        SignatureStatus
    p7.modification  modification
        Unsigned 32-bit integer
    p7.modification_number  modification-number
        Signed 32-bit integer
        INTEGER
    p7.modifications  modifications
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_ub_modifications_OF_EntryModification
    p7.modify_extensions  modify-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.modify_result_extensions  modify-result-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.ms_configuration_request  ms-configuration-request
        Boolean
        BOOLEAN
    p7.ms_extension_error  ms-extension-error
        Unsigned 32-bit integer
        MSExtensionErrorParameter
    p7.ms_extension_problem  ms-extension-problem
        No value
        MSExtensionItem
    p7.ms_message_result  ms-message-result
        No value
        CommonSubmissionResults
    p7.ms_probe_result  ms-probe-result
        No value
        CommonSubmissionResults
    p7.ms_submission_extensions  ms-submission-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.ms_submission_result_extensions  ms-submission-result-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.mts_result  mts-result
        No value
    p7.name  name
        Unsigned 32-bit integer
        MessageGroupName
    p7.new_credentials  new-credentials
        Unsigned 32-bit integer
        Credentials
    p7.new_entry  new-entry
        No value
        EntryInformation
    p7.next  next
        Unsigned 32-bit integer
        SequenceNumber
    p7.no_correlated_reports  no-correlated-reports
        No value
    p7.no_status_information  no-status-information
        No value
    p7.not  not
        Unsigned 32-bit integer
        Filter
    p7.object_entry_class  object-entry-class
        Unsigned 32-bit integer
        EntryClass
    p7.old_credentials  old-credentials
        Unsigned 32-bit integer
        Credentials
    p7.omit_descriptors  omit-descriptors
        Boolean
        BOOLEAN
    p7.or  or
        Unsigned 32-bit integer
        SET_OF_Filter
    p7.original_encoded_information_types  original-encoded-information-types
        No value
        OriginalEncodedInformationTypes
    p7.originator_invalid  originator-invalid
        No value
    p7.originator_name  originator-name
        No value
        OriginatorName
    p7.other_match  other-match
        No value
        MatchingRuleAssertion
    p7.override  override
        Byte array
        OverrideRestrictions
    p7.override-EITs-restriction  override-EITs-restriction
        Boolean
    p7.override-attribute-length-restriction  override-attribute-length-restriction
        Boolean
    p7.override-content-types-restriction  override-content-types-restriction
        Boolean
    p7.parent_group  parent-group
        Unsigned 32-bit integer
        MessageGroupName
    p7.password_delta  password-delta
        Byte array
        BIT_STRING
    p7.per_message_indicators  per-message-indicators
        Byte array
        PerMessageIndicators
    p7.per_recipient_fields  per-recipient-fields
        Unsigned 32-bit integer
        SEQUENCE_OF_PerRecipientProbeSubmissionFields
    p7.position  position
        Unsigned 32-bit integer
        INTEGER_1_ub_attribute_values
    p7.precise  precise
        Unsigned 32-bit integer
        SequenceNumber
    p7.present  present
        Object Identifier
        AttributeType
    p7.present_item  present item
        No value
        T_summary_present_item
    p7.probe_submission_identifier  probe-submission-identifier
        No value
        ProbeSubmissionIdentifier
    p7.probe_submission_time  probe-submission-time
        String
        ProbeSubmissionTime
    p7.problem  problem
        Unsigned 32-bit integer
        AttributeProblem
    p7.problems  problems
        Unsigned 32-bit integer
        AttributeProblems
    p7.problems_item  problems item
        No value
        AttributeProblemItem
    p7.proof_of_delivery  proof-of-delivery
        Signed 32-bit integer
        SignatureStatus
    p7.proof_of_submission  proof-of-submission
        Signed 32-bit integer
        SignatureStatus
    p7.qualified_error  qualified-error
        No value
    p7.range  range
        Unsigned 32-bit integer
    p7.recipient_improperly_specified  recipient-improperly-specified
        Unsigned 32-bit integer
        ImproperlySpecifiedRecipients
    p7.reflectedParameter  reflectedParameter
        Byte array
        BIT_STRING
    p7.register_group  register-group
        No value
        MessageGroupNameAndDescriptor
    p7.register_ms_extensions  register-ms-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.register_ms_result_extensions  register-ms-result-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.registered_information  registered-information
        No value
    p7.registration_identifier  registration-identifier
        Unsigned 32-bit integer
        INTEGER_1_ub_per_auto_action
    p7.registration_parameter  registration-parameter
        No value
    p7.registration_status_request  registration-status-request
        No value
        RegistrationTypes
    p7.registration_type  registration-type
        No value
        RegistrationTypes
    p7.registrations  registrations
        Byte array
    p7.remote_bind_error  remote-bind-error
        No value
    p7.remove_attribute  remove-attribute
        Object Identifier
        AttributeType
    p7.remove_values  remove-values
        No value
        OrderedAttribute
    p7.report_entry  report-entry
        Unsigned 32-bit integer
        SequenceNumber
    p7.report_origin_authentication_check  report-origin-authentication-check
        Signed 32-bit integer
        SignatureStatus
    p7.requested  requested
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_ub_messages_OF_EntryInformation
    p7.requested_attributes  requested-attributes
        Unsigned 32-bit integer
        EntryInformationSelection
    p7.responder_credentials  responder-credentials
        Unsigned 32-bit integer
        ResponderCredentials
    p7.restrict_message_groups  restrict-message-groups
        No value
        MessageGroupsRestriction
    p7.restriction  restriction
        Unsigned 32-bit integer
    p7.rtab_apdu  rtab-apdu
        No value
        RTABapdu
    p7.rtoac_apdu  rtoac-apdu
        No value
        RTOACapdu
    p7.rtorj_apdu  rtorj-apdu
        No value
        RTORJapdu
    p7.rtorq_apdu  rtorq-apdu
        No value
        RTORQapdu
    p7.rttp_apdu  rttp-apdu
        Signed 32-bit integer
        RTTPapdu
    p7.rttr_apdu  rttr-apdu
        Byte array
        RTTRapdu
    p7.search  search
        No value
        Selector
    p7.security_context  security-context
        Unsigned 32-bit integer
        SecurityContext
    p7.security_error  security-error
        Unsigned 32-bit integer
        SecurityProblem
    p7.selector  selector
        No value
    p7.sequence_number  sequence-number
        Unsigned 32-bit integer
        SequenceNumber
    p7.sequence_number_range  sequence-number-range
        No value
        NumberRange
    p7.sequence_numbers  sequence-numbers
        Unsigned 32-bit integer
        SET_SIZE_1_ub_messages_OF_SequenceNumber
    p7.service_error  service-error
        No value
        ServiceErrorParameter
    p7.service_information  service-information
        String
        GeneralString_SIZE_1_ub_service_information_length
    p7.span  span
        No value
    p7.specific_entries  specific-entries
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_ub_messages_OF_SequenceNumber
    p7.store_draft_result  store-draft-result
        No value
        CommonSubmissionResults
    p7.strict  strict
        Boolean
        BOOLEAN
    p7.strings  strings
        Unsigned 32-bit integer
    p7.strings_item  strings item
        Unsigned 32-bit integer
    p7.submission-defaults  submission-defaults
        Boolean
    p7.submission_control_violated  submission-control-violated
        No value
    p7.submission_defaults  submission-defaults
        No value
        MSSubmissionOptions
    p7.submission_options  submission-options
        No value
        MSSubmissionOptions
    p7.substrings  substrings
        No value
    p7.summaries  summaries
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_ub_summaries_OF_Summary
    p7.summarize_extensions  summarize-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.summarize_result_extensions  summarize-result-extensions
        Unsigned 32-bit integer
        MSExtensions
    p7.summary_requests  summary-requests
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_ub_summaries_OF_AttributeType
    p7.supplementary_information  supplementary-information
        String
        GeneralString_SIZE_1_ub_supplementary_info_length
    p7.to  to
        Unsigned 32-bit integer
        T_to_number
    p7.total  total
        Signed 32-bit integer
        INTEGER
    p7.type  type
        Object Identifier
        AttributeType
    p7.ua-registrations  ua-registrations
        Boolean
    p7.ua_fetch_attribute_defaults  ua-fetch-attribute-defaults
        Unsigned 32-bit integer
        SET_SIZE_0_ub_default_registrations_OF_AttributeType
    p7.ua_list_attribute_defaults  ua-list-attribute-defaults
        Unsigned 32-bit integer
        SET_SIZE_0_ub_default_registrations_OF_AttributeType
    p7.ua_registration_id_unknown  ua-registration-id-unknown
        Boolean
        BOOLEAN
    p7.ua_registration_identifier  ua-registration-identifier
        String
        RegistrationIdentifier
    p7.ua_registrations  ua-registrations
        Unsigned 32-bit integer
        SET_SIZE_1_ub_ua_registrations_OF_UARegistration
    p7.ua_submission_defaults  ua-submission-defaults
        No value
        MSSubmissionOptions
    p7.unknown_ms_extension  unknown-ms-extension
        Object Identifier
        OBJECT_IDENTIFIER
    p7.unqualified_error  unqualified-error
        Unsigned 32-bit integer
        BindProblem
    p7.unsupported-entry-class  unsupported-entry-class
        Boolean
    p7.unsupported_critical_function  unsupported-critical-function
        No value
    p7.unsupported_extensions  unsupported-extensions
        Unsigned 32-bit integer
    p7.unsupported_extensions_item  unsupported-extensions item
        Object Identifier
        OBJECT_IDENTIFIER
    p7.user_security_labels  user-security-labels
        Unsigned 32-bit integer
        SET_SIZE_1_ub_labels_and_redirections_OF_SecurityLabel
    p7.userdataAB  userdataAB
        No value
    p7.value  value
        No value
        SummaryPresentItemValue
    p7.value_count_exceeded  value-count-exceeded
        Unsigned 32-bit integer
        SET_SIZE_1_ub_per_entry_OF_AttributeValueCount

X.420 Information Object (x420)

    x420.AbsenceAdvice  AbsenceAdvice
        No value
    x420.Access_Control_Element  Access-Control-Element
        No value
    x420.AuthorizationTime  AuthorizationTime
        String
    x420.AuthorizingUsersSubfield  AuthorizingUsersSubfield
        No value
    x420.AutoForwardedField  AutoForwardedField
        Boolean
    x420.AutoSubmitted  AutoSubmitted
        Unsigned 32-bit integer
    x420.BilaterallyDefinedBodyPart  BilaterallyDefinedBodyPart
        Byte array
    x420.BlindCopyRecipientsSubfield  BlindCopyRecipientsSubfield
        No value
    x420.Body  Body
        Unsigned 32-bit integer
    x420.BodyPart  BodyPart
        Unsigned 32-bit integer
    x420.BodyPartDescriptor  BodyPartDescriptor
        No value
    x420.BodyPartReference  BodyPartReference
        Unsigned 32-bit integer
    x420.BodyPartSecurityLabel  BodyPartSecurityLabel
        Unsigned 32-bit integer
    x420.BodyPartSignatureVerification  BodyPartSignatureVerification
        Unsigned 32-bit integer
    x420.BodyPartSignatureVerification_item  BodyPartSignatureVerification item
        No value
    x420.BodyPartSignatures  BodyPartSignatures
        Unsigned 32-bit integer
    x420.BodyPartSignatures_item  BodyPartSignatures item
        No value
    x420.BodyPartSynopsis  BodyPartSynopsis
        Unsigned 32-bit integer
    x420.BodyPartTokens  BodyPartTokens
        Unsigned 32-bit integer
    x420.BodyPartTokens_item  BodyPartTokens item
        No value
    x420.ChangeOfAddressAdvice  ChangeOfAddressAdvice
        No value
    x420.CharacterSetRegistration  CharacterSetRegistration
        Unsigned 32-bit integer
    x420.CirculationList  CirculationList
        Unsigned 32-bit integer
    x420.CirculationListIndicator  CirculationListIndicator
        No value
    x420.CirculationMember  CirculationMember
        No value
    x420.CopyRecipientsSubfield  CopyRecipientsSubfield
        No value
    x420.CorrelatedDeliveredIPNs  CorrelatedDeliveredIPNs
        Unsigned 32-bit integer
    x420.CorrelatedDeliveredReplies  CorrelatedDeliveredReplies
        Unsigned 32-bit integer
    x420.DeliveredIPNStatus  DeliveredIPNStatus
        Signed 32-bit integer
    x420.DeliveredReplyStatus  DeliveredReplyStatus
        Signed 32-bit integer
    x420.DistributionCode  DistributionCode
        No value
    x420.DistributionCodes  DistributionCodes
        Unsigned 32-bit integer
    x420.EncryptedData  EncryptedData
        Byte array
    x420.EncryptedParameters  EncryptedParameters
        No value
    x420.ExpiryTimeField  ExpiryTimeField
        String
    x420.ExtendedSubject  ExtendedSubject
        No value
    x420.FileTransferData  FileTransferData
        Unsigned 32-bit integer
    x420.FileTransferData_item  FileTransferData item
        No value
        EXTERNAL
    x420.FileTransferParameters  FileTransferParameters
        No value
    x420.ForwardedContentParameters  ForwardedContentParameters
        No value
    x420.ForwardedContentToken  ForwardedContentToken
        Unsigned 32-bit integer
    x420.ForwardedContentToken_item  ForwardedContentToken item
        No value
    x420.G3FacsimileData  G3FacsimileData
        Unsigned 32-bit integer
    x420.G3FacsimileData_item  G3FacsimileData item
        Byte array
        BIT_STRING
    x420.G3FacsimileParameters  G3FacsimileParameters
        No value
    x420.G4Class1BodyPart  G4Class1BodyPart
        Unsigned 32-bit integer
    x420.GeneralTextData  GeneralTextData
        String
    x420.GeneralTextParameters  GeneralTextParameters
        Unsigned 32-bit integer
    x420.Heading  Heading
        No value
    x420.IA5TextData  IA5TextData
        String
    x420.IA5TextParameters  IA5TextParameters
        No value
    x420.IPMAssemblyInstructions  IPMAssemblyInstructions
        No value
    x420.IPMEntryType  IPMEntryType
        Unsigned 32-bit integer
    x420.IPMLocation  IPMLocation
        Unsigned 32-bit integer
    x420.IPMSExtension  IPMSExtension
        No value
    x420.IPMSecurityLabel  IPMSecurityLabel
        No value
    x420.IPMSynopsis  IPMSynopsis
        Unsigned 32-bit integer
    x420.IPN  IPN
        No value
    x420.ImportanceField  ImportanceField
        Unsigned 32-bit integer
    x420.IncompleteCopy  IncompleteCopy
        No value
    x420.InformationCategories  InformationCategories
        Unsigned 32-bit integer
    x420.InformationCategory  InformationCategory
        No value
    x420.InformationObject  InformationObject
        Unsigned 32-bit integer
    x420.Interchange_Data_Element  Interchange-Data-Element
        No value
    x420.IpnSecurityResponse  IpnSecurityResponse
        No value
    x420.Language  Language
        String
    x420.Languages  Languages
        Unsigned 32-bit integer
    x420.ManualHandlingInstruction  ManualHandlingInstruction
        No value
    x420.ManualHandlingInstructions  ManualHandlingInstructions
        Unsigned 32-bit integer
    x420.MessageData  MessageData
        No value
    x420.MessageParameters  MessageParameters
        No value
    x420.MixedModeBodyPart  MixedModeBodyPart
        Unsigned 32-bit integer
    x420.ORDescriptor  ORDescriptor
        No value
    x420.ObsoletedIPMsSubfield  ObsoletedIPMsSubfield
        No value
    x420.OriginatorField  OriginatorField
        No value
    x420.OriginatorsReference  OriginatorsReference
        No value
    x420.Password  Password
        Unsigned 32-bit integer
    x420.Precedence  Precedence
        Unsigned 32-bit integer
    x420.PrecedencePolicyIdentifier  PrecedencePolicyIdentifier
        Object Identifier
    x420.PrimaryRecipientsSubfield  PrimaryRecipientsSubfield
        No value
    x420.RecipientCategory  RecipientCategory
        Signed 32-bit integer
    x420.RecipientSecurityRequest  RecipientSecurityRequest
        Byte array
    x420.RelatedIPMsSubfield  RelatedIPMsSubfield
        No value
    x420.RelatedStoredFile_item  RelatedStoredFile item
        No value
    x420.RepliedToIPMField  RepliedToIPMField
        No value
    x420.ReplyRecipientsSubfield  ReplyRecipientsSubfield
        No value
    x420.ReplyTimeField  ReplyTimeField
        String
    x420.SensitivityField  SensitivityField
        Unsigned 32-bit integer
    x420.SequenceNumber  SequenceNumber
        Unsigned 32-bit integer
    x420.SubjectField  SubjectField
        String
    x420.SubmittedIPNStatus  SubmittedIPNStatus
        Signed 32-bit integer
    x420.SubmittedReplyStatus  SubmittedReplyStatus
        Signed 32-bit integer
    x420.TeletexData  TeletexData
        Unsigned 32-bit integer
    x420.TeletexData_item  TeletexData item
        String
        TeletexString
    x420.TeletexParameters  TeletexParameters
        No value
    x420.ThisIPMField  ThisIPMField
        No value
    x420.VideotexData  VideotexData
        String
    x420.VideotexParameters  VideotexParameters
        No value
    x420.VoiceData  VoiceData
        Byte array
    x420.VoiceParameters  VoiceParameters
        No value
    x420.absent  absent
        No value
    x420.abstract_syntax_name  abstract-syntax-name
        Object Identifier
    x420.access_control  access-control
        Unsigned 32-bit integer
        Access_Control_Attribute
    x420.acknowledgment_mode  acknowledgment-mode
        Unsigned 32-bit integer
        AcknowledgmentModeField
    x420.action_list  action-list
        Byte array
        Access_Request
    x420.actual_values  actual-values
        String
        Account
    x420.advice  advice
        Unsigned 32-bit integer
        BodyPart
    x420.ae_qualifier  ae-qualifier
        Unsigned 32-bit integer
    x420.algorithmIdentifier  algorithmIdentifier
        No value
    x420.algorithm_identifier  algorithm-identifier
        No value
        AlgorithmIdentifier
    x420.alphanumeric_code  alphanumeric-code
        No value
        AlphaCode
    x420.an-supported  an-supported
        Boolean
    x420.ap_title  ap-title
        Unsigned 32-bit integer
    x420.application_cross_reference  application-cross-reference
        Byte array
        OCTET_STRING
    x420.application_reference  application-reference
        Unsigned 32-bit integer
        GeneralIdentifier
    x420.assembly_instructions  assembly-instructions
        Unsigned 32-bit integer
        BodyPartReferences
    x420.attribute_extensions  attribute-extensions
        Unsigned 32-bit integer
    x420.authorizing_users  authorizing-users
        Unsigned 32-bit integer
        AuthorizingUsersField
    x420.auto_forward_comment  auto-forward-comment
        String
        AutoForwardCommentField
    x420.auto_forwarded  auto-forwarded
        Boolean
        AutoForwardedField
    x420.basic  basic
        Unsigned 32-bit integer
    x420.bilaterally_defined  bilaterally-defined
        Byte array
        BilaterallyDefinedBodyPart
    x420.blind_copy_recipients  blind-copy-recipients
        Unsigned 32-bit integer
        BlindCopyRecipientsField
    x420.body  body
        Unsigned 32-bit integer
    x420.body_part_choice  body-part-choice
        Unsigned 32-bit integer
        T_body_part_choice
    x420.body_part_number  body-part-number
        Unsigned 32-bit integer
        BodyPartNumber
    x420.body_part_reference  body-part-reference
        Signed 32-bit integer
        INTEGER
    x420.body_part_security_label  body-part-security-label
        No value
        SecurityLabel
    x420.body_part_security_labels  body-part-security-labels
        Unsigned 32-bit integer
        SEQUENCE_OF_BodyPartSecurityLabel
    x420.body_part_sequence_number  body-part-sequence-number
        Unsigned 32-bit integer
        BodyPartNumber
    x420.body_part_signature  body-part-signature
        No value
        BodyPartSignature
    x420.body_part_unlabelled  body-part-unlabelled
        No value
    x420.change-attribute  change-attribute
        Boolean
    x420.change_attribute_password  change-attribute-password
        Unsigned 32-bit integer
        Password
    x420.checked  checked
        Unsigned 32-bit integer
        Checkmark
    x420.choice  choice
        Unsigned 32-bit integer
    x420.circulation_recipient  circulation-recipient
        No value
        RecipientSpecifier
    x420.circulation_signature_data  circulation-signature-data
        No value
        CirculationSignatureData
    x420.complete_pathname  complete-pathname
        Unsigned 32-bit integer
        Pathname
    x420.compression  compression
        No value
        CompressionParameter
    x420.compression_algorithm_id  compression-algorithm-id
        No value
    x420.compression_algorithm_param  compression-algorithm-param
        No value
    x420.concurrency_access  concurrency-access
        No value
    x420.constraint_set_and_abstract_syntax  constraint-set-and-abstract-syntax
        No value
        T_constraint_set_and_abstract_syntax
    x420.constraint_set_name  constraint-set-name
        Object Identifier
    x420.content-non-repudiation  content-non-repudiation
        Boolean
    x420.content-proof  content-proof
        Boolean
    x420.content_or_arguments  content-or-arguments
        Unsigned 32-bit integer
        T_content_or_arguments
    x420.content_security_label  content-security-label
        No value
        SecurityLabel
    x420.contents_type  contents-type
        Unsigned 32-bit integer
        ContentsTypeParameter
    x420.conversion_eits  conversion-eits
        No value
        ConversionEITsField
    x420.copy_recipients  copy-recipients
        Unsigned 32-bit integer
        CopyRecipientsField
    x420.cross_reference  cross-reference
        No value
        CrossReference
    x420.data  data
        No value
        INSTANCE_OF
    x420.date_and_time_of_creation  date-and-time-of-creation
        Unsigned 32-bit integer
        Date_and_Time_Attribute
    x420.date_and_time_of_last_attribute_modification  date-and-time-of-last-attribute-modification
        Unsigned 32-bit integer
        Date_and_Time_Attribute
    x420.date_and_time_of_last_modification  date-and-time-of-last-modification
        Unsigned 32-bit integer
        Date_and_Time_Attribute
    x420.date_and_time_of_last_read_access  date-and-time-of-last-read-access
        Unsigned 32-bit integer
        Date_and_Time_Attribute
    x420.delete-object  delete-object
        Boolean
    x420.delete_password  delete-password
        Unsigned 32-bit integer
        Password
    x420.delivery_envelope  delivery-envelope
        No value
        OtherMessageDeliveryFields
    x420.delivery_time  delivery-time
        String
        MessageDeliveryTime
    x420.description  description
        No value
        DescriptionString
    x420.descriptive_identifier  descriptive-identifier
        Unsigned 32-bit integer
    x420.descriptive_identifier_item  descriptive-identifier item
        String
        GraphicString
    x420.descriptive_relationship  descriptive-relationship
        String
        GraphicString
    x420.discard_reason  discard-reason
        Unsigned 32-bit integer
        DiscardReasonField
    x420.document_type  document-type
        No value
        T_document_type
    x420.document_type_name  document-type-name
        Object Identifier
    x420.effective_from  effective-from
        String
        Time
    x420.encrypted  encrypted
        No value
        EncryptedBodyPart
    x420.encrypted_key  encrypted-key
        Byte array
        BIT_STRING
    x420.encryption_algorithm_identifier  encryption-algorithm-identifier
        No value
        AlgorithmIdentifier
    x420.encryption_token  encryption-token
        No value
        EncryptionToken
    x420.environment  environment
        No value
        EnvironmentParameter
    x420.erase  erase
        Boolean
    x420.erase_password  erase-password
        Unsigned 32-bit integer
        Password
    x420.expiry_time  expiry-time
        String
        ExpiryTimeField
    x420.explicit_relationship  explicit-relationship
        Signed 32-bit integer
        ExplicitRelationship
    x420.extend  extend
        Boolean
    x420.extend_password  extend-password
        Unsigned 32-bit integer
        Password
    x420.extended  extended
        No value
        ExtendedBodyPart
    x420.extensions  extensions
        Unsigned 32-bit integer
        ExtensionsField
    x420.file_attributes  file-attributes
        No value
        FileAttributes
    x420.file_identifier  file-identifier
        Unsigned 32-bit integer
        FileIdentifier
    x420.file_version  file-version
        String
        GraphicString
    x420.formal_name  formal-name
        No value
        ORName
    x420.forwarding_token  forwarding-token
        No value
        MessageToken
    x420.free_form_name  free-form-name
        String
        FreeFormName
    x420.future_object_size  future-object-size
        Unsigned 32-bit integer
        Object_Size_Attribute
    x420.g3_facsimile  g3-facsimile
        No value
        G3FacsimileBodyPart
    x420.g4_class1  g4-class1
        Unsigned 32-bit integer
        G4Class1BodyPart
    x420.graphic_string  graphic-string
        String
        GraphicString
    x420.heading  heading
        No value
    x420.heading_security_label  heading-security-label
        No value
        SecurityLabel
    x420.ia5_text  ia5-text
        No value
        IA5TextBodyPart
    x420.identity  identity
        String
        User_Identity
    x420.identity_of_creator  identity-of-creator
        Unsigned 32-bit integer
        User_Identity_Attribute
    x420.identity_of_last_attribute_modifier  identity-of-last-attribute-modifier
        Unsigned 32-bit integer
        User_Identity_Attribute
    x420.identity_of_last_modifier  identity-of-last-modifier
        Unsigned 32-bit integer
        User_Identity_Attribute
    x420.identity_of_last_reader  identity-of-last-reader
        Unsigned 32-bit integer
        User_Identity_Attribute
    x420.importance  importance
        Unsigned 32-bit integer
        ImportanceField
    x420.incomplete_pathname  incomplete-pathname
        Unsigned 32-bit integer
        Pathname
    x420.insert  insert
        Boolean
    x420.insert_password  insert-password
        Unsigned 32-bit integer
        Password
    x420.ipm  ipm
        No value
    x420.ipm-return  ipm-return
        Boolean
    x420.ipm_intended_recipient  ipm-intended-recipient
        No value
        IPMIntendedRecipientField
    x420.ipn  ipn
        No value
    x420.ipn-non-repudiation  ipn-non-repudiation
        Boolean
    x420.ipn-proof  ipn-proof
        Boolean
    x420.ipn_originator  ipn-originator
        No value
        IPNOriginatorField
    x420.ipns_received  ipns-received
        Unsigned 32-bit integer
        SEQUENCE_OF_SequenceNumber
    x420.legal_qualifications  legal-qualifications
        Unsigned 32-bit integer
        Legal_Qualification_Attribute
    x420.link_password  link-password
        Unsigned 32-bit integer
        Password
    x420.location  location
        No value
        Application_Entity_Title
    x420.machine  machine
        Unsigned 32-bit integer
        GeneralIdentifier
    x420.message  message
        No value
        MessageBodyPart
    x420.message_entry  message-entry
        Unsigned 32-bit integer
        SequenceNumber
    x420.message_or_content_body_part  message-or-content-body-part
        Unsigned 32-bit integer
        BodyPartTokens
    x420.message_reference  message-reference
        No value
        MessageReference
    x420.message_submission_envelope  message-submission-envelope
        No value
        MessageSubmissionEnvelope
    x420.mixed_mode  mixed-mode
        Unsigned 32-bit integer
        MixedModeBodyPart
    x420.mts_identifier  mts-identifier
        No value
        MessageDeliveryIdentifier
    x420.nationally_defined  nationally-defined
        No value
        NationallyDefinedBodyPart
    x420.new_address  new-address
        No value
        ORDescriptor
    x420.next_available  next-available
        String
        Time
    x420.no_ipn_received  no-ipn-received
        No value
    x420.no_reply_received  no-reply-received
        No value
    x420.no_value_available  no-value-available
        No value
    x420.non_basic_parameters  non-basic-parameters
        Byte array
        G3FacsimileNonBasicParameters
    x420.non_message  non-message
        No value
        NonMessageBodyPartSynopsis
    x420.non_receipt_fields  non-receipt-fields
        No value
        NonReceiptFields
    x420.non_receipt_reason  non-receipt-reason
        Unsigned 32-bit integer
        NonReceiptReasonField
    x420.notification_extensions  notification-extensions
        Unsigned 32-bit integer
        NotificationExtensionsField
    x420.notification_requests  notification-requests
        Byte array
        NotificationRequests
    x420.nrn  nrn
        Boolean
    x420.nrn_extensions  nrn-extensions
        Unsigned 32-bit integer
        NRNExtensionsField
    x420.number  number
        Unsigned 32-bit integer
        SequenceNumber
    x420.number_of_pages  number-of-pages
        Signed 32-bit integer
        INTEGER
    x420.object_availability  object-availability
        Unsigned 32-bit integer
        Object_Availability_Attribute
    x420.object_size  object-size
        Unsigned 32-bit integer
        Object_Size_Attribute
    x420.obsoleted_IPMs  obsoleted-IPMs
        Unsigned 32-bit integer
        ObsoletedIPMsField
    x420.octet_string  octet-string
        Byte array
    x420.oid_code  oid-code
        Object Identifier
        OBJECT_IDENTIFIER
    x420.operating_system  operating-system
        Object Identifier
        OBJECT_IDENTIFIER
    x420.or_descriptor  or-descriptor
        No value
        ORDescriptor
    x420.original_content  original-content
        Byte array
        OriginalContent
    x420.original_content_integrity_check  original-content-integrity-check
        No value
        OriginalContentIntegrityCheck
    x420.original_message_origin_authentication_check  original-message-origin-authentication-check
        No value
        OriginalMessageOriginAuthenticationCheck
    x420.original_message_token  original-message-token
        No value
        OriginalMessageToken
    x420.original_security_arguments  original-security-arguments
        No value
    x420.originating_MTA_certificate  originating-MTA-certificate
        No value
        OriginatingMTACertificate
    x420.originator  originator
        No value
        OriginatorField
    x420.originator_certificate_selector  originator-certificate-selector
        No value
        CertificateAssertion
    x420.originator_certificates  originator-certificates
        Unsigned 32-bit integer
        ExtendedCertificates
    x420.other_notification_type_fields  other-notification-type-fields
        Unsigned 32-bit integer
        OtherNotificationTypeFields
    x420.parameter  parameter
        No value
    x420.parameters  parameters
        No value
        INSTANCE_OF
    x420.pass_passwords  pass-passwords
        Unsigned 32-bit integer
    x420.passwords  passwords
        No value
        Access_Passwords
    x420.pathname  pathname
        Unsigned 32-bit integer
        Pathname_Attribute
    x420.pathname_and_version  pathname-and-version
        No value
        PathnameandVersion
    x420.permitted_actions  permitted-actions
        Byte array
        Permitted_Actions_Attribute
    x420.position  position
        Signed 32-bit integer
        INTEGER
    x420.primary_recipients  primary-recipients
        Unsigned 32-bit integer
        PrimaryRecipientsField
    x420.private_use  private-use
        Unsigned 32-bit integer
        Private_Use_Attribute
    x420.processed  processed
        Boolean
        BOOLEAN
    x420.proof_of_submission  proof-of-submission
        No value
        ProofOfSubmission
    x420.read  read
        Boolean
    x420.read-attribute  read-attribute
        Boolean
    x420.read_attribute_password  read-attribute-password
        Unsigned 32-bit integer
        Password
    x420.read_password  read-password
        Unsigned 32-bit integer
        Password
    x420.receipt_fields  receipt-fields
        No value
        ReceiptFields
    x420.receipt_time  receipt-time
        String
        ReceiptTimeField
    x420.received_replies  received-replies
        Unsigned 32-bit integer
        SEQUENCE_OF_SequenceNumber
    x420.recipient  recipient
        No value
        ORDescriptor
    x420.recipient_certificate  recipient-certificate
        No value
        Certificates
    x420.recipient_certificate_selector  recipient-certificate-selector
        No value
        CertificateAssertion
    x420.recipient_extensions  recipient-extensions
        Unsigned 32-bit integer
        RecipientExtensionsField
    x420.reference  reference
        Object Identifier
        OBJECT_IDENTIFIER
    x420.registered_identifier  registered-identifier
        Object Identifier
        OBJECT_IDENTIFIER
    x420.related_IPMs  related-IPMs
        Unsigned 32-bit integer
        RelatedIPMsField
    x420.related_stored_file  related-stored-file
        Unsigned 32-bit integer
        RelatedStoredFile
    x420.relationship  relationship
        Unsigned 32-bit integer
    x420.repertoire  repertoire
        Unsigned 32-bit integer
    x420.replace  replace
        Boolean
    x420.replace_password  replace-password
        Unsigned 32-bit integer
        Password
    x420.replied_to_IPM  replied-to-IPM
        No value
        RepliedToIPMField
    x420.reply_recipients  reply-recipients
        Unsigned 32-bit integer
        ReplyRecipientsField
    x420.reply_requested  reply-requested
        Boolean
        BOOLEAN
    x420.reply_time  reply-time
        String
        ReplyTimeField
    x420.returned_ipm  returned-ipm
        No value
        ReturnedIPMField
    x420.rn  rn
        Boolean
    x420.rn_extensions  rn-extensions
        Unsigned 32-bit integer
        RNExtensionsField
    x420.security_diagnostic_code  security-diagnostic-code
        Signed 32-bit integer
        SecurityDiagnosticCode
    x420.sensitivity  sensitivity
        Unsigned 32-bit integer
        SensitivityField
    x420.signed  signed
        No value
        CirculationSignature
    x420.simple  simple
        No value
    x420.size  size
        Signed 32-bit integer
        INTEGER
    x420.storage_account  storage-account
        Unsigned 32-bit integer
        Account_Attribute
    x420.stored  stored
        Unsigned 32-bit integer
        SET_OF_SequenceNumber
    x420.stored_body_part  stored-body-part
        No value
    x420.stored_content  stored-content
        Unsigned 32-bit integer
        SequenceNumber
    x420.stored_entry  stored-entry
        Unsigned 32-bit integer
        SequenceNumber
    x420.subject  subject
        String
        SubjectField
    x420.subject_ipm  subject-ipm
        No value
        SubjectIPMField
    x420.submission_proof  submission-proof
        No value
        SubmissionProof
    x420.submitted_body_part  submitted-body-part
        Unsigned 32-bit integer
        INTEGER_1_MAX
    x420.suppl_receipt_info  suppl-receipt-info
        String
        SupplReceiptInfoField
    x420.supplementary_information  supplementary-information
        String
        IA5String
    x420.suppress-an  suppress-an
        Boolean
    x420.synopsis  synopsis
        Unsigned 32-bit integer
        IPMSynopsis
    x420.syntax  syntax
        Signed 32-bit integer
        VideotexSyntax
    x420.telephone_number  telephone-number
        String
        TelephoneNumber
    x420.teletex  teletex
        No value
        TeletexBodyPart
    x420.telex_compatible  telex-compatible
        Boolean
        BOOLEAN
    x420.this_IPM  this-IPM
        No value
        ThisIPMField
    x420.this_child_entry  this-child-entry
        Unsigned 32-bit integer
        SequenceNumber
    x420.timestamp  timestamp
        String
        CirculationTime
    x420.timestamped  timestamped
        String
        CirculationTime
    x420.type  type
        Object Identifier
    x420.user  user
        No value
        ORName
    x420.user_relative_identifier  user-relative-identifier
        String
        LocalIPMIdentifier
    x420.user_visible_string  user-visible-string
        Unsigned 32-bit integer
    x420.user_visible_string_item  user-visible-string item
        String
        GraphicString
    x420.value  value
        No value
    x420.videotex  videotex
        No value
        VideotexBodyPart
    x420.voice_encoding_type  voice-encoding-type
        Object Identifier
        OBJECT_IDENTIFIER
    x420.voice_message_duration  voice-message-duration
        Signed 32-bit integer
        INTEGER

X.501 Directory Operational Binding Management Protocol (dop)

    dop.ACIItem  ACIItem
        No value
    dop.AccessPoint  AccessPoint
        No value
    dop.Attribute  Attribute
        No value
    dop.AttributeType  AttributeType
        Object Identifier
    dop.AttributeTypeAndValue  AttributeTypeAndValue
        No value
    dop.ConsumerInformation  ConsumerInformation
        No value
    dop.ContextAssertion  ContextAssertion
        No value
    dop.DSEType  DSEType
        Byte array
    dop.HierarchicalAgreement  HierarchicalAgreement
        No value
    dop.ItemPermission  ItemPermission
        No value
    dop.MaxValueCount  MaxValueCount
        No value
    dop.NHOBSubordinateToSuperior  NHOBSubordinateToSuperior
        No value
    dop.NHOBSuperiorToSubordinate  NHOBSuperiorToSubordinate
        No value
    dop.NameAndOptionalUID  NameAndOptionalUID
        No value
    dop.NonSpecificHierarchicalAgreement  NonSpecificHierarchicalAgreement
        No value
    dop.ProtocolInformation  ProtocolInformation
        No value
    dop.RestrictedValue  RestrictedValue
        No value
    dop.SubentryInfo  SubentryInfo
        No value
    dop.SubordinateToSuperior  SubordinateToSuperior
        No value
    dop.SubtreeSpecification  SubtreeSpecification
        No value
    dop.SuperiorToSubordinate  SuperiorToSubordinate
        No value
    dop.SuperiorToSubordinateModification  SuperiorToSubordinateModification
        No value
    dop.SupplierAndConsumers  SupplierAndConsumers
        No value
    dop.SupplierInformation  SupplierInformation
        No value
    dop.UserPermission  UserPermission
        No value
    dop.Vertex  Vertex
        No value
    dop.accessPoint  accessPoint
        No value
    dop.accessPoints  accessPoints
        Unsigned 32-bit integer
        MasterAndShadowAccessPoints
    dop.address  address
        No value
        PresentationAddress
    dop.admPoint  admPoint
        Boolean
    dop.admPointInfo  admPointInfo
        Unsigned 32-bit integer
        SET_OF_Attribute
    dop.ae_title  ae-title
        Unsigned 32-bit integer
        Name
    dop.agreement  agreement
        No value
    dop.agreementID  agreementID
        No value
        OperationalBindingID
    dop.agreementProposal  agreementProposal
        No value
    dop.algorithmIdentifier  algorithmIdentifier
        No value
    dop.alias  alias
        Boolean
        BOOLEAN
    dop.aliasDereferenced  aliasDereferenced
        Boolean
        BOOLEAN
    dop.allAttributeValues  allAttributeValues
        Unsigned 32-bit integer
        SET_OF_AttributeType
    dop.allUserAttributeTypes  allUserAttributeTypes
        No value
    dop.allUserAttributeTypesAndValues  allUserAttributeTypesAndValues
        No value
    dop.allUsers  allUsers
        No value
    dop.attributeType  attributeType
        Unsigned 32-bit integer
        SET_OF_AttributeType
    dop.attributeValue  attributeValue
        Unsigned 32-bit integer
        SET_OF_AttributeTypeAndValue
    dop.authenticationLevel  authenticationLevel
        Unsigned 32-bit integer
    dop.basicLevels  basicLevels
        No value
    dop.bindingID  bindingID
        No value
        OperationalBindingID
    dop.bindingType  bindingType
        Object Identifier
    dop.classes  classes
        Unsigned 32-bit integer
        Refinement
    dop.consumers  consumers
        Unsigned 32-bit integer
        SET_OF_AccessPoint
    dop.contextPrefixInfo  contextPrefixInfo
        Unsigned 32-bit integer
        DITcontext
    dop.contexts  contexts
        Unsigned 32-bit integer
        SET_OF_ContextAssertion
    dop.cp  cp
        Boolean
    dop.denyAdd  denyAdd
        Boolean
    dop.denyBrowse  denyBrowse
        Boolean
    dop.denyCompare  denyCompare
        Boolean
    dop.denyDiscloseOnError  denyDiscloseOnError
        Boolean
    dop.denyExport  denyExport
        Boolean
    dop.denyFilterMatch  denyFilterMatch
        Boolean
    dop.denyImport  denyImport
        Boolean
    dop.denyInvoke  denyInvoke
        Boolean
    dop.denyModify  denyModify
        Boolean
    dop.denyRead  denyRead
        Boolean
    dop.denyRemove  denyRemove
        Boolean
    dop.denyRename  denyRename
        Boolean
    dop.denyReturnDN  denyReturnDN
        Boolean
    dop.ditBridge  ditBridge
        Boolean
    dop.dsSubentry  dsSubentry
        Boolean
    dop.encrypted  encrypted
        Byte array
        BIT_STRING
    dop.entry  entry
        No value
    dop.entryInfo  entryInfo
        Unsigned 32-bit integer
        SET_OF_Attribute
    dop.establishOperationalBindingArgument  establishOperationalBindingArgument
        No value
        EstablishOperationalBindingArgumentData
    dop.explicitTermination  explicitTermination
        No value
    dop.familyMember  familyMember
        Boolean
    dop.generalizedTime  generalizedTime
        String
    dop.glue  glue
        Boolean
    dop.grantAdd  grantAdd
        Boolean
    dop.grantBrowse  grantBrowse
        Boolean
    dop.grantCompare  grantCompare
        Boolean
    dop.grantDiscloseOnError  grantDiscloseOnError
        Boolean
    dop.grantExport  grantExport
        Boolean
    dop.grantFilterMatch  grantFilterMatch
        Boolean
    dop.grantImport  grantImport
        Boolean
    dop.grantInvoke  grantInvoke
        Boolean
    dop.grantModify  grantModify
        Boolean
    dop.grantRead  grantRead
        Boolean
    dop.grantRemove  grantRemove
        Boolean
    dop.grantRename  grantRename
        Boolean
    dop.grantReturnDN  grantReturnDN
        Boolean
    dop.grantsAndDenials  grantsAndDenials
        Byte array
    dop.identificationTag  identificationTag
        Unsigned 32-bit integer
        DirectoryString
    dop.identifier  identifier
        Signed 32-bit integer
    dop.immSupr  immSupr
        Boolean
    dop.immediateSuperior  immediateSuperior
        Unsigned 32-bit integer
        DistinguishedName
    dop.immediateSuperiorInfo  immediateSuperiorInfo
        Unsigned 32-bit integer
        SET_OF_Attribute
    dop.info  info
        Unsigned 32-bit integer
        SET_OF_Attribute
    dop.initiator  initiator
        Unsigned 32-bit integer
        EstablishArgumentInitiator
    dop.itemFirst  itemFirst
        No value
    dop.itemOrUserFirst  itemOrUserFirst
        Unsigned 32-bit integer
    dop.itemPermissions  itemPermissions
        Unsigned 32-bit integer
        SET_OF_ItemPermission
    dop.level  level
        Unsigned 32-bit integer
    dop.localQualifier  localQualifier
        Signed 32-bit integer
        INTEGER
    dop.maxCount  maxCount
        Signed 32-bit integer
        INTEGER
    dop.maxImmSub  maxImmSub
        Signed 32-bit integer
        INTEGER
    dop.maxValueCount  maxValueCount
        Unsigned 32-bit integer
        SET_OF_MaxValueCount
    dop.modifyOperationalBindingArgument  modifyOperationalBindingArgument
        No value
        ModifyOperationalBindingArgumentData
    dop.modifyOperationalBindingResultData  modifyOperationalBindingResultData
        No value
    dop.name  name
        Unsigned 32-bit integer
        SET_OF_NameAndOptionalUID
    dop.newAgreement  newAgreement
        No value
        ArgumentNewAgreement
    dop.newBindingID  newBindingID
        No value
        OperationalBindingID
    dop.non_supplying_master  non-supplying-master
        No value
        AccessPoint
    dop.notification  notification
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_Attribute
    dop.now  now
        No value
    dop.nssr  nssr
        Boolean
    dop.null  null
        No value
    dop.other  other
        No value
        EXTERNAL
    dop.performer  performer
        Unsigned 32-bit integer
        DistinguishedName
    dop.precedence  precedence
        Signed 32-bit integer
    dop.problem  problem
        Unsigned 32-bit integer
    dop.protected  protected
        No value
        ProtectedModifyResult
    dop.protectedItems  protectedItems
        No value
    dop.protocolInformation  protocolInformation
        Unsigned 32-bit integer
        SET_OF_ProtocolInformation
    dop.rangeOfValues  rangeOfValues
        Unsigned 32-bit integer
        Filter
    dop.rdn  rdn
        Unsigned 32-bit integer
        RelativeDistinguishedName
    dop.restrictedBy  restrictedBy
        Unsigned 32-bit integer
        SET_OF_RestrictedValue
    dop.retryAt  retryAt
        Unsigned 32-bit integer
        Time
    dop.rhob  rhob
        Boolean
    dop.roleA_initiates  roleA-initiates
        No value
        EstablishRoleAInitiates
    dop.roleA_replies  roleA-replies
        No value
    dop.roleB_initiates  roleB-initiates
        No value
        EstablishRoleBInitiates
    dop.roleB_replies  roleB-replies
        No value
    dop.root  root
        Boolean
    dop.sa  sa
        Boolean
    dop.securityParameters  securityParameters
        No value
    dop.selfValue  selfValue
        Unsigned 32-bit integer
        SET_OF_AttributeType
    dop.shadow  shadow
        Boolean
    dop.signed  signed
        Boolean
        BOOLEAN
    dop.signedEstablishOperationalBindingArgument  signedEstablishOperationalBindingArgument
        No value
    dop.signedModifyOperationalBindingArgument  signedModifyOperationalBindingArgument
        No value
    dop.signedTerminateOperationalBindingArgument  signedTerminateOperationalBindingArgument
        No value
    dop.subentries  subentries
        Unsigned 32-bit integer
        SET_OF_SubentryInfo
    dop.subentry  subentry
        Boolean
    dop.subr  subr
        Boolean
    dop.subtree  subtree
        Unsigned 32-bit integer
        SET_OF_SubtreeSpecification
    dop.supplier_is_master  supplier-is-master
        Boolean
        BOOLEAN
    dop.supr  supr
        Boolean
    dop.symmetric  symmetric
        No value
        EstablishSymmetric
    dop.terminateAt  terminateAt
        Unsigned 32-bit integer
        Time
    dop.terminateOperationalBindingArgument  terminateOperationalBindingArgument
        No value
        TerminateOperationalBindingArgumentData
    dop.terminateOperationalBindingResultData  terminateOperationalBindingResultData
        No value
    dop.thisEntry  thisEntry
        No value
    dop.time  time
        Unsigned 32-bit integer
    dop.type  type
        Object Identifier
        AttributeType
    dop.unsignedEstablishOperationalBindingArgument  unsignedEstablishOperationalBindingArgument
        No value
        EstablishOperationalBindingArgumentData
    dop.unsignedModifyOperationalBindingArgument  unsignedModifyOperationalBindingArgument
        No value
        ModifyOperationalBindingArgumentData
    dop.unsignedTerminateOperationalBindingArgument  unsignedTerminateOperationalBindingArgument
        No value
        TerminateOperationalBindingArgumentData
    dop.userClasses  userClasses
        No value
    dop.userFirst  userFirst
        No value
    dop.userGroup  userGroup
        Unsigned 32-bit integer
        SET_OF_NameAndOptionalUID
    dop.userPermissions  userPermissions
        Unsigned 32-bit integer
        SET_OF_UserPermission
    dop.utcTime  utcTime
        String
    dop.valid  valid
        No value
        Validity
    dop.validFrom  validFrom
        Unsigned 32-bit integer
    dop.validUntil  validUntil
        Unsigned 32-bit integer
    dop.valuesIn  valuesIn
        Object Identifier
        AttributeType
    dop.version  version
        Signed 32-bit integer
    dop.writeableCopy  writeableCopy
        Boolean
    dop.xr  xr
        Boolean

X.509 Authentication Framework (x509af)

    x509af.ACPathData  ACPathData
        No value
    x509af.Attribute  Attribute
        No value
    x509af.AttributeCertificate  AttributeCertificate
        No value
    x509af.AttributeType  AttributeType
        Object Identifier
    x509af.Certificate  Certificate
        No value
    x509af.CertificateList  CertificateList
        No value
    x509af.CertificatePair  CertificatePair
        No value
    x509af.CrossCertificates  CrossCertificates
        Unsigned 32-bit integer
    x509af.DSS_Params  DSS-Params
        No value
    x509af.Extension  Extension
        No value
    x509af.acPath  acPath
        Unsigned 32-bit integer
        SEQUENCE_OF_ACPathData
    x509af.algorithm  algorithm
        No value
        AlgorithmIdentifier
    x509af.algorithm.id  Algorithm Id
        Object Identifier
    x509af.algorithmId  algorithmId
        Object Identifier
    x509af.algorithmIdentifier  algorithmIdentifier
        No value
    x509af.attCertValidity  attCertValidity
        String
        GeneralizedTime
    x509af.attCertValidityPeriod  attCertValidityPeriod
        No value
    x509af.attType  attType
        Unsigned 32-bit integer
        SET_OF_AttributeType
    x509af.attributeCertificate  attributeCertificate
        No value
    x509af.attributes  attributes
        Unsigned 32-bit integer
        SEQUENCE_OF_Attribute
    x509af.baseCertificateID  baseCertificateID
        No value
        IssuerSerial
    x509af.certificate  certificate
        No value
    x509af.certificationPath  certificationPath
        Unsigned 32-bit integer
        ForwardCertificationPath
    x509af.critical  critical
        Boolean
        BOOLEAN
    x509af.crlEntryExtensions  crlEntryExtensions
        Unsigned 32-bit integer
        Extensions
    x509af.crlExtensions  crlExtensions
        Unsigned 32-bit integer
        Extensions
    x509af.encrypted  encrypted
        Byte array
        BIT_STRING
    x509af.extension.id  Extension Id
        Object Identifier
    x509af.extensions  extensions
        Unsigned 32-bit integer
    x509af.extnId  extnId
        Object Identifier
    x509af.extnValue  extnValue
        Byte array
    x509af.g  g
        Signed 32-bit integer
        INTEGER
    x509af.generalizedTime  generalizedTime
        String
    x509af.issuedByThisCA  issuedByThisCA
        No value
        Certificate
    x509af.issuedToThisCA  issuedToThisCA
        No value
        Certificate
    x509af.issuer  issuer
        Unsigned 32-bit integer
        Name
    x509af.issuerUID  issuerUID
        Byte array
        UniqueIdentifier
    x509af.issuerUniqueID  issuerUniqueID
        Byte array
        UniqueIdentifier
    x509af.issuerUniqueIdentifier  issuerUniqueIdentifier
        Byte array
        UniqueIdentifier
    x509af.nextUpdate  nextUpdate
        Unsigned 32-bit integer
        Time
    x509af.notAfter  notAfter
        Unsigned 32-bit integer
        Time
    x509af.notAfterTime  notAfterTime
        String
        GeneralizedTime
    x509af.notBefore  notBefore
        Unsigned 32-bit integer
        Time
    x509af.notBeforeTime  notBeforeTime
        String
        GeneralizedTime
    x509af.p  p
        Signed 32-bit integer
        INTEGER
    x509af.parameters  parameters
        No value
    x509af.q  q
        Signed 32-bit integer
        INTEGER
    x509af.rdnSequence  rdnSequence
        Unsigned 32-bit integer
    x509af.revocationDate  revocationDate
        Unsigned 32-bit integer
        Time
    x509af.revokedCertificates  revokedCertificates
        Unsigned 32-bit integer
    x509af.revokedCertificates_item  revokedCertificates item
        No value
    x509af.serial  serial
        Signed 32-bit integer
        CertificateSerialNumber
    x509af.serialNumber  serialNumber
        Signed 32-bit integer
        CertificateSerialNumber
    x509af.signature  signature
        No value
        AlgorithmIdentifier
    x509af.signedAttributeCertificateInfo  signedAttributeCertificateInfo
        No value
        AttributeCertificateInfo
    x509af.signedCertificate  signedCertificate
        No value
    x509af.signedCertificateList  signedCertificateList
        No value
    x509af.subject  subject
        Unsigned 32-bit integer
        SubjectName
    x509af.subjectName  subjectName
        Unsigned 32-bit integer
        GeneralNames
    x509af.subjectPublicKey  subjectPublicKey
        Byte array
        BIT_STRING
    x509af.subjectPublicKeyInfo  subjectPublicKeyInfo
        No value
    x509af.subjectUniqueIdentifier  subjectUniqueIdentifier
        Byte array
        UniqueIdentifier
    x509af.theCACertificates  theCACertificates
        Unsigned 32-bit integer
        SEQUENCE_OF_CertificatePair
    x509af.thisUpdate  thisUpdate
        Unsigned 32-bit integer
        Time
    x509af.userCertificate  userCertificate
        No value
        Certificate
    x509af.utcTime  utcTime
        String
    x509af.validity  validity
        No value
    x509af.version  version
        Signed 32-bit integer

X.509 Certificate Extensions (x509ce)

    x509ce.AAIssuingDistPointSyntax  AAIssuingDistPointSyntax
        No value
    x509ce.Attribute  Attribute
        No value
    x509ce.AttributesSyntax  AttributesSyntax
        Unsigned 32-bit integer
    x509ce.AuthorityKeyIdentifier  AuthorityKeyIdentifier
        No value
    x509ce.BaseCRLNumber  BaseCRLNumber
        Unsigned 32-bit integer
    x509ce.BasicConstraintsSyntax  BasicConstraintsSyntax
        No value
    x509ce.CRLDistPointsSyntax  CRLDistPointsSyntax
        Unsigned 32-bit integer
    x509ce.CRLNumber  CRLNumber
        Unsigned 32-bit integer
    x509ce.CRLReason  CRLReason
        Unsigned 32-bit integer
    x509ce.CRLScopeSyntax  CRLScopeSyntax
        Unsigned 32-bit integer
    x509ce.CRLStreamIdentifier  CRLStreamIdentifier
        Unsigned 32-bit integer
    x509ce.CertPolicyId  CertPolicyId
        Object Identifier
    x509ce.CertificateAssertion  CertificateAssertion
        No value
    x509ce.CertificateListAssertion  CertificateListAssertion
        No value
    x509ce.CertificateListExactAssertion  CertificateListExactAssertion
        No value
    x509ce.CertificatePairAssertion  CertificatePairAssertion
        No value
    x509ce.CertificatePairExactAssertion  CertificatePairExactAssertion
        No value
    x509ce.CertificatePoliciesSyntax  CertificatePoliciesSyntax
        Unsigned 32-bit integer
    x509ce.CertificateSerialNumber  CertificateSerialNumber
        Signed 32-bit integer
    x509ce.CertificateTemplate  CertificateTemplate
        No value
    x509ce.DeltaInformation  DeltaInformation
        No value
    x509ce.DistributionPoint  DistributionPoint
        No value
    x509ce.EnhancedCertificateAssertion  EnhancedCertificateAssertion
        No value
    x509ce.EntrustVersionInfo  EntrustVersionInfo
        No value
    x509ce.ExpiredCertsOnCRL  ExpiredCertsOnCRL
        String
    x509ce.GeneralName  GeneralName
        Unsigned 32-bit integer
    x509ce.GeneralNames  GeneralNames
        Unsigned 32-bit integer
    x509ce.GeneralSubtree  GeneralSubtree
        No value
    x509ce.HoldInstruction  HoldInstruction
        Object Identifier
    x509ce.IPAddress  iPAddress
        IPv4 address
        IP Address
    x509ce.IssuingDistPointSyntax  IssuingDistPointSyntax
        No value
    x509ce.KeyPurposeIDs  KeyPurposeIDs
        Unsigned 32-bit integer
    x509ce.KeyPurposeId  KeyPurposeId
        Object Identifier
    x509ce.KeyUsage  KeyUsage
        Byte array
    x509ce.NameConstraintsSyntax  NameConstraintsSyntax
        No value
    x509ce.OrderedListSyntax  OrderedListSyntax
        Unsigned 32-bit integer
    x509ce.PerAuthorityScope  PerAuthorityScope
        No value
    x509ce.PkiPathMatchSyntax  PkiPathMatchSyntax
        No value
    x509ce.PolicyConstraintsSyntax  PolicyConstraintsSyntax
        No value
    x509ce.PolicyInformation  PolicyInformation
        No value
    x509ce.PolicyMappingsSyntax  PolicyMappingsSyntax
        Unsigned 32-bit integer
    x509ce.PolicyMappingsSyntax_item  PolicyMappingsSyntax item
        No value
    x509ce.PolicyQualifierInfo  PolicyQualifierInfo
        No value
    x509ce.PrivateKeyUsagePeriod  PrivateKeyUsagePeriod
        No value
    x509ce.RevokedGroup  RevokedGroup
        No value
    x509ce.RevokedGroupsSyntax  RevokedGroupsSyntax
        Unsigned 32-bit integer
    x509ce.SkipCerts  SkipCerts
        Unsigned 32-bit integer
    x509ce.StatusReferral  StatusReferral
        Unsigned 32-bit integer
    x509ce.StatusReferrals  StatusReferrals
        Unsigned 32-bit integer
    x509ce.SubjectKeyIdentifier  SubjectKeyIdentifier
        Byte array
    x509ce.ToBeRevokedGroup  ToBeRevokedGroup
        No value
    x509ce.ToBeRevokedSyntax  ToBeRevokedSyntax
        Unsigned 32-bit integer
    x509ce.aACompromise  aACompromise
        Boolean
    x509ce.affiliationChanged  affiliationChanged
        Boolean
    x509ce.altNameValue  altNameValue
        Unsigned 32-bit integer
        GeneralName
    x509ce.altnameType  altnameType
        Unsigned 32-bit integer
    x509ce.attribute  attribute
        Boolean
    x509ce.authority  authority
        Boolean
    x509ce.authorityCertIssuer  authorityCertIssuer
        Unsigned 32-bit integer
        GeneralNames
    x509ce.authorityCertSerialNumber  authorityCertSerialNumber
        Signed 32-bit integer
        CertificateSerialNumber
    x509ce.authorityKeyIdentifier  authorityKeyIdentifier
        No value
    x509ce.authorityName  authorityName
        Unsigned 32-bit integer
        GeneralName
    x509ce.base  base
        Unsigned 32-bit integer
        GeneralName
    x509ce.baseRevocationInfo  baseRevocationInfo
        No value
    x509ce.baseThisUpdate  baseThisUpdate
        String
        GeneralizedTime
    x509ce.builtinNameForm  builtinNameForm
        Unsigned 32-bit integer
    x509ce.cA  cA
        Boolean
        BOOLEAN
    x509ce.cACompromise  cACompromise
        Boolean
    x509ce.cRLIssuer  cRLIssuer
        Unsigned 32-bit integer
        GeneralNames
    x509ce.cRLNumber  cRLNumber
        Unsigned 32-bit integer
    x509ce.cRLReferral  cRLReferral
        No value
    x509ce.cRLScope  cRLScope
        Unsigned 32-bit integer
        CRLScopeSyntax
    x509ce.cRLSign  cRLSign
        Boolean
    x509ce.cRLStreamIdentifier  cRLStreamIdentifier
        Unsigned 32-bit integer
    x509ce.certificateGroup  certificateGroup
        Unsigned 32-bit integer
    x509ce.certificateHold  certificateHold
        Boolean
    x509ce.certificateIssuer  certificateIssuer
        Unsigned 32-bit integer
        GeneralName
    x509ce.certificateValid  certificateValid
        Unsigned 32-bit integer
        Time
    x509ce.cessationOfOperation  cessationOfOperation
        Boolean
    x509ce.containsAACerts  containsAACerts
        Boolean
        BOOLEAN
    x509ce.containsSOAPublicKeyCerts  containsSOAPublicKeyCerts
        Boolean
        BOOLEAN
    x509ce.containsUserAttributeCerts  containsUserAttributeCerts
        Boolean
        BOOLEAN
    x509ce.contentCommitment  contentCommitment
        Boolean
    x509ce.dNSName  dNSName
        String
        IA5String
    x509ce.dataEncipherment  dataEncipherment
        Boolean
    x509ce.dateAndTime  dateAndTime
        Unsigned 32-bit integer
        Time
    x509ce.decipherOnly  decipherOnly
        Boolean
    x509ce.deltaLocation  deltaLocation
        Unsigned 32-bit integer
        GeneralName
    x509ce.deltaRefInfo  deltaRefInfo
        No value
    x509ce.digitalSignature  digitalSignature
        Boolean
    x509ce.directoryName  directoryName
        Unsigned 32-bit integer
        Name
    x509ce.distributionPoint  distributionPoint
        Unsigned 32-bit integer
        DistributionPointName
    x509ce.ediPartyName  ediPartyName
        No value
    x509ce.encipherOnly  encipherOnly
        Boolean
    x509ce.endingNumber  endingNumber
        Signed 32-bit integer
        INTEGER
    x509ce.enterpriseCategory  enterpriseCategory
        Boolean
    x509ce.entrustVers  entrustVers
        String
        GeneralString
    x509ce.entrustVersInfoFlags  entrustVersInfoFlags
        Byte array
        EntrustInfoFlags
    x509ce.excludedSubtrees  excludedSubtrees
        Unsigned 32-bit integer
        GeneralSubtrees
    x509ce.firstIssuer  firstIssuer
        Unsigned 32-bit integer
        Name
    x509ce.fullName  fullName
        Unsigned 32-bit integer
        GeneralNames
    x509ce.holdInstructionCode  holdInstructionCode
        Object Identifier
        HoldInstruction
    x509ce.iPAddress  iPAddress
        Byte array
    x509ce.id  Id
        Object Identifier
        Object identifier Id
    x509ce.id_ce_baseUpdateTime  baseUpdateTime
        String
    x509ce.id_ce_invalidityDate  invalidityDate
        String
    x509ce.indirectCRL  indirectCRL
        Boolean
        BOOLEAN
    x509ce.inhibitPolicyMapping  inhibitPolicyMapping
        Unsigned 32-bit integer
        SkipCerts
    x509ce.invalidityDate  invalidityDate
        String
        GeneralizedTime
    x509ce.issuedByThisCAAssertion  issuedByThisCAAssertion
        No value
        CertificateExactAssertion
    x509ce.issuedToThisCAAssertion  issuedToThisCAAssertion
        No value
        CertificateExactAssertion
    x509ce.issuer  issuer
        Unsigned 32-bit integer
        GeneralName
    x509ce.issuerDomainPolicy  issuerDomainPolicy
        Object Identifier
        CertPolicyId
    x509ce.keyAgreement  keyAgreement
        Boolean
    x509ce.keyCertSign  keyCertSign
        Boolean
    x509ce.keyCompromise  keyCompromise
        Boolean
    x509ce.keyEncipherment  keyEncipherment
        Boolean
    x509ce.keyIdentifier  keyIdentifier
        Byte array
    x509ce.keyUpdateAllowed  keyUpdateAllowed
        Boolean
    x509ce.keyUsage  keyUsage
        Byte array
    x509ce.lastChangedCRL  lastChangedCRL
        String
        GeneralizedTime
    x509ce.lastDelta  lastDelta
        String
        GeneralizedTime
    x509ce.lastSubject  lastSubject
        Unsigned 32-bit integer
        Name
    x509ce.lastUpdate  lastUpdate
        String
        GeneralizedTime
    x509ce.location  location
        Unsigned 32-bit integer
        GeneralName
    x509ce.maxCRLNumber  maxCRLNumber
        Unsigned 32-bit integer
        CRLNumber
    x509ce.maximum  maximum
        Unsigned 32-bit integer
        BaseDistance
    x509ce.minCRLNumber  minCRLNumber
        Unsigned 32-bit integer
        CRLNumber
    x509ce.minimum  minimum
        Unsigned 32-bit integer
        BaseDistance
    x509ce.modulus  modulus
        Signed 32-bit integer
        INTEGER
    x509ce.nameAssigner  nameAssigner
        Unsigned 32-bit integer
        DirectoryString
    x509ce.nameConstraints  nameConstraints
        No value
        NameConstraintsSyntax
    x509ce.nameRelativeToCRLIssuer  nameRelativeToCRLIssuer
        Unsigned 32-bit integer
        RelativeDistinguishedName
    x509ce.nameSubtree  nameSubtree
        Unsigned 32-bit integer
        GeneralName
    x509ce.nameSubtrees  nameSubtrees
        Unsigned 32-bit integer
        GeneralNames
    x509ce.newExtensions  newExtensions
        Boolean
    x509ce.nextDelta  nextDelta
        String
        GeneralizedTime
    x509ce.notAfter  notAfter
        String
        GeneralizedTime
    x509ce.notBefore  notBefore
        String
        GeneralizedTime
    x509ce.onlyContains  onlyContains
        Byte array
        OnlyCertificateTypes
    x509ce.onlyContainsCACerts  onlyContainsCACerts
        Boolean
        BOOLEAN
    x509ce.onlyContainsUserPublicKeyCerts  onlyContainsUserPublicKeyCerts
        Boolean
        BOOLEAN
    x509ce.onlySomeReasons  onlySomeReasons
        Byte array
        ReasonFlags
    x509ce.otherName  otherName
        No value
    x509ce.otherNameForm  otherNameForm
        Object Identifier
        OBJECT_IDENTIFIER
    x509ce.pKIXCertificate  pKIXCertificate
        Boolean
    x509ce.partyName  partyName
        Unsigned 32-bit integer
        DirectoryString
    x509ce.pathLenConstraint  pathLenConstraint
        Unsigned 32-bit integer
        INTEGER_0_MAX
    x509ce.pathToName  pathToName
        Unsigned 32-bit integer
        Name
    x509ce.permittedSubtrees  permittedSubtrees
        Unsigned 32-bit integer
        GeneralSubtrees
    x509ce.policy  policy
        Unsigned 32-bit integer
        CertPolicySet
    x509ce.policyIdentifier  policyIdentifier
        Object Identifier
        CertPolicyId
    x509ce.policyQualifierId  policyQualifierId
        Object Identifier
    x509ce.policyQualifiers  policyQualifiers
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_PolicyQualifierInfo
    x509ce.privateKeyValid  privateKeyValid
        String
        GeneralizedTime
    x509ce.privilegeWithdrawn  privilegeWithdrawn
        Boolean
    x509ce.qualifier  qualifier
        No value
    x509ce.reasonCode  reasonCode
        Unsigned 32-bit integer
        CRLReason
    x509ce.reasonFlags  reasonFlags
        Byte array
    x509ce.reasonInfo  reasonInfo
        No value
    x509ce.reasons  reasons
        Byte array
        ReasonFlags
    x509ce.registeredID  registeredID
        Object Identifier
        OBJECT_IDENTIFIER
    x509ce.requireExplicitPolicy  requireExplicitPolicy
        Unsigned 32-bit integer
        SkipCerts
    x509ce.revocationTime  revocationTime
        String
        GeneralizedTime
    x509ce.revokedcertificateGroup  revokedcertificateGroup
        Unsigned 32-bit integer
    x509ce.rfc822Name  rfc822Name
        String
        IA5String
    x509ce.sETCategory  sETCategory
        Boolean
    x509ce.serialNumber  serialNumber
        Signed 32-bit integer
        CertificateSerialNumber
    x509ce.serialNumberRange  serialNumberRange
        No value
        NumberRange
    x509ce.serialNumbers  serialNumbers
        Unsigned 32-bit integer
        CertificateSerialNumbers
    x509ce.startingNumber  startingNumber
        Signed 32-bit integer
        INTEGER
    x509ce.subject  subject
        Unsigned 32-bit integer
        Name
    x509ce.subjectAltName  subjectAltName
        Unsigned 32-bit integer
        AltNameType
    x509ce.subjectDomainPolicy  subjectDomainPolicy
        Object Identifier
        CertPolicyId
    x509ce.subjectKeyIdRange  subjectKeyIdRange
        No value
        NumberRange
    x509ce.subjectKeyIdentifier  subjectKeyIdentifier
        Byte array
    x509ce.subjectPublicKeyAlgID  subjectPublicKeyAlgID
        Object Identifier
        OBJECT_IDENTIFIER
    x509ce.superseded  superseded
        Boolean
    x509ce.templateID  templateID
        Object Identifier
        OBJECT_IDENTIFIER
    x509ce.templateMajorVersion  templateMajorVersion
        Signed 32-bit integer
        INTEGER
    x509ce.templateMinorVersion  templateMinorVersion
        Signed 32-bit integer
        INTEGER
    x509ce.thisUpdate  thisUpdate
        Unsigned 32-bit integer
        Time
    x509ce.type_id  type-id
        Object Identifier
        OtherNameType
    x509ce.uniformResourceIdentifier  uniformResourceIdentifier
        String
    x509ce.unused  unused
        Boolean
    x509ce.user  user
        Boolean
    x509ce.value  value
        No value
        OtherNameValue
    x509ce.webCategory  webCategory
        Boolean
    x509ce.x400Address  x400Address
        No value
        ORAddress

X.509 Information Framework (x509if)

    x509if.AttributeCombination  AttributeCombination
        Unsigned 32-bit integer
    x509if.AttributeType  AttributeType
        Object Identifier
    x509if.Context  Context
        No value
    x509if.ContextAssertion  ContextAssertion
        No value
    x509if.ContextCombination  ContextCombination
        Unsigned 32-bit integer
    x509if.ContextProfile  ContextProfile
        No value
    x509if.DirectoryString  DirectoryString
        Unsigned 32-bit integer
    x509if.DistinguishedName  DistinguishedName
        Unsigned 32-bit integer
    x509if.HierarchyBelow  HierarchyBelow
        Boolean
    x509if.HierarchyLevel  HierarchyLevel
        Signed 32-bit integer
    x509if.MRMapping  MRMapping
        No value
    x509if.MRSubstitution  MRSubstitution
        No value
    x509if.Mapping  Mapping
        No value
    x509if.MatchingUse  MatchingUse
        No value
    x509if.RDNSequence_item  RDNSequence item
        Unsigned 32-bit integer
    x509if.Refinement  Refinement
        Unsigned 32-bit integer
    x509if.RelativeDistinguishedName_item  RelativeDistinguishedName item
        No value
    x509if.RequestAttribute  RequestAttribute
        No value
    x509if.ResultAttribute  ResultAttribute
        No value
    x509if.RuleIdentifier  RuleIdentifier
        Signed 32-bit integer
    x509if.SubtreeSpecification  SubtreeSpecification
        No value
    x509if.additionalControl  additionalControl
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_AttributeType
    x509if.allContexts  allContexts
        No value
    x509if.allowedSubset  allowedSubset
        Byte array
    x509if.and  and
        Unsigned 32-bit integer
        SET_OF_Refinement
    x509if.any.String  AnyString
        Byte array
        This is any String
    x509if.assertedContexts  assertedContexts
        Unsigned 32-bit integer
    x509if.assertion  assertion
        No value
    x509if.attribute  attribute
        Object Identifier
        AttributeType
    x509if.attributeCombination  attributeCombination
        Unsigned 32-bit integer
    x509if.attributeType  attributeType
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.auxiliaries  auxiliaries
        Unsigned 32-bit integer
    x509if.auxiliaries_item  auxiliaries item
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.base  base
        Unsigned 32-bit integer
        LocalName
    x509if.baseObject  baseObject
        Boolean
    x509if.basic  basic
        No value
        MRMapping
    x509if.chopAfter  chopAfter
        Unsigned 32-bit integer
        LocalName
    x509if.chopBefore  chopBefore
        Unsigned 32-bit integer
        LocalName
    x509if.context  context
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.contextCombination  contextCombination
        Unsigned 32-bit integer
    x509if.contextList  contextList
        Unsigned 32-bit integer
        SET_SIZE_1_MAX_OF_Context
    x509if.contextType  contextType
        Object Identifier
    x509if.contextValue  contextValue
        Unsigned 32-bit integer
    x509if.contextValue_item  contextValue item
        No value
    x509if.contextValues  contextValues
        Unsigned 32-bit integer
    x509if.contextValues_item  contextValues item
        No value
    x509if.contexts  contexts
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_MAX_OF_ContextProfile
    x509if.default  default
        Signed 32-bit integer
        INTEGER
    x509if.defaultControls  defaultControls
        No value
        ControlOptions
    x509if.defaultValues  defaultValues
        Unsigned 32-bit integer
    x509if.defaultValues_item  defaultValues item
        No value
    x509if.description  description
        Unsigned 32-bit integer
        DirectoryString
    x509if.distingAttrValue  distingAttrValue
        No value
    x509if.dmdId  dmdId
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.entryLimit  entryLimit
        No value
    x509if.entryType  entryType
        Object Identifier
    x509if.fallback  fallback
        Boolean
        BOOLEAN
    x509if.familyGrouping  familyGrouping
        No value
    x509if.familyReturn  familyReturn
        No value
    x509if.hierarchyOptions  hierarchyOptions
        No value
        HierarchySelections
    x509if.id  Id
        Object Identifier
        Object identifier Id
    x509if.imposedSubset  imposedSubset
        Unsigned 32-bit integer
    x509if.includeSubtypes  includeSubtypes
        Boolean
        BOOLEAN
    x509if.inputAttributeTypes  inputAttributeTypes
        Unsigned 32-bit integer
        SEQUENCE_SIZE_0_MAX_OF_RequestAttribute
    x509if.item  item
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.level  level
        Signed 32-bit integer
        INTEGER
    x509if.mandatory  mandatory
        Unsigned 32-bit integer
    x509if.mandatoryContexts  mandatoryContexts
        Unsigned 32-bit integer
    x509if.mandatoryContexts_item  mandatoryContexts item
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.mandatoryControls  mandatoryControls
        No value
        ControlOptions
    x509if.mandatory_item  mandatory item
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.mapping  mapping
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_Mapping
    x509if.mappingFunction  mappingFunction
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.matchedValuesOnly  matchedValuesOnly
        No value
    x509if.matchingUse  matchingUse
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_MatchingUse
    x509if.max  max
        Signed 32-bit integer
        INTEGER
    x509if.maximum  maximum
        Unsigned 32-bit integer
        BaseDistance
    x509if.minimum  minimum
        Unsigned 32-bit integer
        BaseDistance
    x509if.name  name
        Unsigned 32-bit integer
        SET_SIZE_1_MAX_OF_DirectoryString
    x509if.nameForm  nameForm
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.newMatchingRule  newMatchingRule
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.not  not
        Unsigned 32-bit integer
        Refinement
    x509if.oldMatchingRule  oldMatchingRule
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.oneLevel  oneLevel
        Boolean
    x509if.optional  optional
        Unsigned 32-bit integer
    x509if.optionalContexts  optionalContexts
        Unsigned 32-bit integer
    x509if.optionalContexts_item  optionalContexts item
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.optional_item  optional item
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.or  or
        Unsigned 32-bit integer
        SET_OF_Refinement
    x509if.outputAttributeTypes  outputAttributeTypes
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_ResultAttribute
    x509if.outputValues  outputValues
        Unsigned 32-bit integer
    x509if.precluded  precluded
        Unsigned 32-bit integer
    x509if.precluded_item  precluded item
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.primaryDistinguished  primaryDistinguished
        Boolean
        BOOLEAN
    x509if.rdnSequence  rdnSequence
        Unsigned 32-bit integer
    x509if.relaxation  relaxation
        No value
        RelaxationPolicy
    x509if.relaxations  relaxations
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_MRMapping
    x509if.restrictionType  restrictionType
        Object Identifier
    x509if.restrictionValue  restrictionValue
        No value
    x509if.ruleIdentifier  ruleIdentifier
        Signed 32-bit integer
    x509if.searchOptions  searchOptions
        No value
        SearchControlOptions
    x509if.searchRuleControls  searchRuleControls
        No value
        ControlOptions
    x509if.selectedContexts  selectedContexts
        Unsigned 32-bit integer
        SET_SIZE_1_MAX_OF_ContextAssertion
    x509if.selectedValues  selectedValues
        Unsigned 32-bit integer
        T_ra_selectedValues
    x509if.selectedValues_item  selectedValues item
        No value
        T_ra_selectedValues_item
    x509if.serviceControls  serviceControls
        No value
        ServiceControlOptions
    x509if.serviceType  serviceType
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.specificExclusions  specificExclusions
        Unsigned 32-bit integer
        T_chopSpecificExclusions
    x509if.specificExclusions_item  specificExclusions item
        Unsigned 32-bit integer
        T_chopSpecificExclusions_item
    x509if.specificationFilter  specificationFilter
        Unsigned 32-bit integer
        Refinement
    x509if.structuralObjectClass  structuralObjectClass
        Object Identifier
        OBJECT_IDENTIFIER
    x509if.substitution  substitution
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_MRSubstitution
    x509if.superiorStructureRules  superiorStructureRules
        Unsigned 32-bit integer
        SET_SIZE_1_MAX_OF_RuleIdentifier
    x509if.tightenings  tightenings
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_MRMapping
    x509if.type  type
        Object Identifier
    x509if.userClass  userClass
        Signed 32-bit integer
        INTEGER
    x509if.value  value
        No value
    x509if.values  values
        Unsigned 32-bit integer
    x509if.valuesWithContext  valuesWithContext
        Unsigned 32-bit integer
    x509if.valuesWithContext_item  valuesWithContext item
        No value
        T_valuesWithContext_item
    x509if.values_item  values item
        No value
    x509if.wholeSubtree  wholeSubtree
        Boolean

X.509 Selected Attribute Types (x509sat)

    x509sat.AttributeType  AttributeType
        Object Identifier
    x509sat.AttributeValueAssertion  AttributeValueAssertion
        No value
    x509sat.BitString  BitString
        Byte array
    x509sat.Boolean  Boolean
        Boolean
    x509sat.CaseIgnoreListMatch  CaseIgnoreListMatch
        Unsigned 32-bit integer
    x509sat.CountryName  CountryName
        String
    x509sat.Criteria  Criteria
        Unsigned 32-bit integer
    x509sat.DayTimeBand  DayTimeBand
        No value
    x509sat.DestinationIndicator  DestinationIndicator
        String
    x509sat.DirectoryString  DirectoryString
        Unsigned 32-bit integer
    x509sat.EnhancedGuide  EnhancedGuide
        No value
    x509sat.FacsimileTelephoneNumber  FacsimileTelephoneNumber
        No value
    x509sat.GUID  GUID
        Globally Unique Identifier
    x509sat.Guide  Guide
        No value
    x509sat.Integer  Integer
        Signed 32-bit integer
    x509sat.InternationalISDNNumber  InternationalISDNNumber
        String
    x509sat.NameAndOptionalUID  NameAndOptionalUID
        No value
    x509sat.ObjectIdentifier  ObjectIdentifier
        Object Identifier
    x509sat.OctetString  OctetString
        Byte array
    x509sat.OctetSubstringAssertion_item  OctetSubstringAssertion item
        Unsigned 32-bit integer
    x509sat.Period  Period
        No value
    x509sat.PostalAddress  PostalAddress
        Unsigned 32-bit integer
    x509sat.PreferredDeliveryMethod  PreferredDeliveryMethod
        Unsigned 32-bit integer
    x509sat.PreferredDeliveryMethod_item  PreferredDeliveryMethod item
        Signed 32-bit integer
    x509sat.PresentationAddress  PresentationAddress
        No value
    x509sat.ProtocolInformation  ProtocolInformation
        No value
    x509sat.SubstringAssertion_item  SubstringAssertion item
        Unsigned 32-bit integer
    x509sat.SyntaxBMPString  SyntaxBMPString
        String
    x509sat.SyntaxGeneralizedTime  SyntaxGeneralizedTime
        String
    x509sat.SyntaxGraphicString  SyntaxGraphicString
        String
    x509sat.SyntaxIA5String  SyntaxIA5String
        String
    x509sat.SyntaxNumericString  SyntaxNumericString
        String
    x509sat.SyntaxPrintableString  SyntaxPrintableString
        String
    x509sat.SyntaxUTCTime  SyntaxUTCTime
        String
    x509sat.SyntaxUTF8String  SyntaxUTF8String
        String
    x509sat.TelephoneNumber  TelephoneNumber
        String
    x509sat.TelexNumber  TelexNumber
        No value
    x509sat.UniqueIdentifier  UniqueIdentifier
        Byte array
    x509sat.X121Address  X121Address
        String
    x509sat.absolute  absolute
        No value
    x509sat.allMonths  allMonths
        No value
    x509sat.allWeeks  allWeeks
        No value
    x509sat.and  and
        Unsigned 32-bit integer
        SET_OF_Criteria
    x509sat.answerback  answerback
        String
        PrintableString
    x509sat.any  any
        Unsigned 32-bit integer
        DirectoryString
    x509sat.approximateMatch  approximateMatch
        Object Identifier
        AttributeType
    x509sat.april  april
        Boolean
    x509sat.at  at
        String
        GeneralizedTime
    x509sat.attributeList  attributeList
        Unsigned 32-bit integer
        SEQUENCE_OF_AttributeValueAssertion
    x509sat.august  august
        Boolean
    x509sat.between  between
        No value
    x509sat.bitDay  bitDay
        Byte array
    x509sat.bitMonth  bitMonth
        Byte array
    x509sat.bitNamedDays  bitNamedDays
        Byte array
    x509sat.bitWeek  bitWeek
        Byte array
    x509sat.bmpString  bmpString
        String
    x509sat.control  control
        No value
        Attribute
    x509sat.countryCode  countryCode
        String
        PrintableString
    x509sat.criteria  criteria
        Unsigned 32-bit integer
    x509sat.dayOf  dayOf
        Unsigned 32-bit integer
        XDayOf
    x509sat.days  days
        Unsigned 32-bit integer
    x509sat.december  december
        Boolean
    x509sat.dn  dn
        Unsigned 32-bit integer
        DistinguishedName
    x509sat.endDayTime  endDayTime
        No value
        DayTime
    x509sat.endTime  endTime
        String
        GeneralizedTime
    x509sat.entirely  entirely
        Boolean
        BOOLEAN
    x509sat.equality  equality
        Object Identifier
        AttributeType
    x509sat.february  february
        Boolean
    x509sat.fifth  fifth
        Unsigned 32-bit integer
        NamedDay
    x509sat.final  final
        Unsigned 32-bit integer
        DirectoryString
    x509sat.first  first
        Unsigned 32-bit integer
        NamedDay
    x509sat.fourth  fourth
        Unsigned 32-bit integer
        NamedDay
    x509sat.friday  friday
        Boolean
    x509sat.greaterOrEqual  greaterOrEqual
        Object Identifier
        AttributeType
    x509sat.hour  hour
        Signed 32-bit integer
        INTEGER
    x509sat.initial  initial
        Unsigned 32-bit integer
        DirectoryString
    x509sat.intDay  intDay
        Unsigned 32-bit integer
    x509sat.intDay_item  intDay item
        Signed 32-bit integer
        INTEGER
    x509sat.intMonth  intMonth
        Unsigned 32-bit integer
    x509sat.intMonth_item  intMonth item
        Signed 32-bit integer
        INTEGER
    x509sat.intNamedDays  intNamedDays
        Unsigned 32-bit integer
    x509sat.intWeek  intWeek
        Unsigned 32-bit integer
    x509sat.intWeek_item  intWeek item
        Signed 32-bit integer
        INTEGER
    x509sat.january  january
        Boolean
    x509sat.july  july
        Boolean
    x509sat.june  june
        Boolean
    x509sat.lessOrEqual  lessOrEqual
        Object Identifier
        AttributeType
    x509sat.localeID1  localeID1
        Object Identifier
        OBJECT_IDENTIFIER
    x509sat.localeID2  localeID2
        Unsigned 32-bit integer
        DirectoryString
    x509sat.march  march
        Boolean
    x509sat.matchingRuleUsed  matchingRuleUsed
        Object Identifier
        OBJECT_IDENTIFIER
    x509sat.may  may
        Boolean
    x509sat.minute  minute
        Signed 32-bit integer
        INTEGER
    x509sat.monday  monday
        Boolean
    x509sat.months  months
        Unsigned 32-bit integer
    x509sat.nAddress  nAddress
        Byte array
        OCTET_STRING
    x509sat.nAddresses  nAddresses
        Unsigned 32-bit integer
    x509sat.nAddresses_item  nAddresses item
        Byte array
        OCTET_STRING
    x509sat.not  not
        Unsigned 32-bit integer
        Criteria
    x509sat.notThisTime  notThisTime
        Boolean
        BOOLEAN
    x509sat.november  november
        Boolean
    x509sat.now  now
        No value
    x509sat.objectClass  objectClass
        Object Identifier
        OBJECT_IDENTIFIER
    x509sat.october  october
        Boolean
    x509sat.or  or
        Unsigned 32-bit integer
        SET_OF_Criteria
    x509sat.pSelector  pSelector
        Byte array
        OCTET_STRING
    x509sat.parameters  parameters
        Byte array
        G3FacsimileNonBasicParameters
    x509sat.periodic  periodic
        Unsigned 32-bit integer
        SET_OF_Period
    x509sat.printableString  printableString
        String
    x509sat.profiles  profiles
        Unsigned 32-bit integer
    x509sat.profiles_item  profiles item
        Object Identifier
        OBJECT_IDENTIFIER
    x509sat.sSelector  sSelector
        Byte array
        OCTET_STRING
    x509sat.saturday  saturday
        Boolean
    x509sat.second  second
        Unsigned 32-bit integer
        NamedDay
    x509sat.september  september
        Boolean
    x509sat.startDayTime  startDayTime
        No value
        DayTime
    x509sat.startTime  startTime
        String
        GeneralizedTime
    x509sat.subset  subset
        Signed 32-bit integer
    x509sat.substrings  substrings
        Object Identifier
        AttributeType
    x509sat.sunday  sunday
        Boolean
    x509sat.tSelector  tSelector
        Byte array
        OCTET_STRING
    x509sat.telephoneNumber  telephoneNumber
        String
    x509sat.teletexString  teletexString
        String
    x509sat.telexNumber  telexNumber
        String
        PrintableString
    x509sat.third  third
        Unsigned 32-bit integer
        NamedDay
    x509sat.thursday  thursday
        Boolean
    x509sat.time  time
        Unsigned 32-bit integer
    x509sat.timeZone  timeZone
        Signed 32-bit integer
    x509sat.timesOfDay  timesOfDay
        Unsigned 32-bit integer
        SET_OF_DayTimeBand
    x509sat.tuesday  tuesday
        Boolean
    x509sat.type  type
        Unsigned 32-bit integer
        CriteriaItem
    x509sat.uTF8String  uTF8String
        String
    x509sat.uid  uid
        Byte array
        UniqueIdentifier
    x509sat.universalString  universalString
        String
    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
    x509sat.years  years
        Unsigned 32-bit integer
    x509sat.years_item  years item
        Signed 32-bit integer
        INTEGER

X.519 Directory Access Protocol (dap)

    dap.AbandonArgument  AbandonArgument
        Unsigned 32-bit integer
    dap.AbandonFailedError  AbandonFailedError
        Unsigned 32-bit integer
    dap.AbandonResult  AbandonResult
        Unsigned 32-bit integer
    dap.Abandoned  Abandoned
        Unsigned 32-bit integer
    dap.AddEntryArgument  AddEntryArgument
        Unsigned 32-bit integer
    dap.AddEntryResult  AddEntryResult
        Unsigned 32-bit integer
    dap.AlgorithmIdentifier  AlgorithmIdentifier
        No value
    dap.Attribute  Attribute
        No value
    dap.AttributeError  AttributeError
        Unsigned 32-bit integer
    dap.AttributeType  AttributeType
        Object Identifier
    dap.CompareArgument  CompareArgument
        Unsigned 32-bit integer
    dap.CompareResult  CompareResult
        Unsigned 32-bit integer
    dap.ContextAssertion  ContextAssertion
        No value
    dap.ContinuationReference  ContinuationReference
        No value
    dap.DirectoryBindArgument  DirectoryBindArgument
        No value
    dap.DirectoryBindError  DirectoryBindError
        Unsigned 32-bit integer
    dap.DirectoryBindResult  DirectoryBindResult
        No value
    dap.EntryInformation  EntryInformation
        No value
    dap.EntryModification  EntryModification
        Unsigned 32-bit integer
    dap.FamilyEntries  FamilyEntries
        No value
    dap.FamilyEntry  FamilyEntry
        No value
    dap.Filter  Filter
        Unsigned 32-bit integer
    dap.JoinArgument  JoinArgument
        No value
    dap.JoinAttPair  JoinAttPair
        No value
    dap.JoinContextType  JoinContextType
        Object Identifier
    dap.ListArgument  ListArgument
        Unsigned 32-bit integer
    dap.ListResult  ListResult
        Unsigned 32-bit integer
    dap.ModifyDNArgument  ModifyDNArgument
        No value
    dap.ModifyDNResult  ModifyDNResult
        Unsigned 32-bit integer
    dap.ModifyEntryArgument  ModifyEntryArgument
        Unsigned 32-bit integer
    dap.ModifyEntryResult  ModifyEntryResult
        Unsigned 32-bit integer
    dap.ModifyRights_item  ModifyRights item
        No value
    dap.NameError  NameError
        Unsigned 32-bit integer
    dap.ReadArgument  ReadArgument
        Unsigned 32-bit integer
    dap.ReadResult  ReadResult
        Unsigned 32-bit integer
    dap.Referral  Referral
        Unsigned 32-bit integer
    dap.RemoveEntryArgument  RemoveEntryArgument
        Unsigned 32-bit integer
    dap.RemoveEntryResult  RemoveEntryResult
        Unsigned 32-bit integer
    dap.SearchArgument  SearchArgument
        Unsigned 32-bit integer
    dap.SearchResult  SearchResult
        Unsigned 32-bit integer
    dap.SecurityError  SecurityError
        Unsigned 32-bit integer
    dap.ServiceError  ServiceError
        Unsigned 32-bit integer
    dap.SortKey  SortKey
        No value
    dap.TypeAndContextAssertion  TypeAndContextAssertion
        No value
    dap.UpdateError  UpdateError
        Unsigned 32-bit integer
    dap.abandonArgument  abandonArgument
        No value
        AbandonArgumentData
    dap.abandonFailedError  abandonFailedError
        No value
        AbandonFailedErrorData
    dap.abandonResult  abandonResult
        No value
        AbandonResultData
    dap.abandoned  abandoned
        No value
        AbandonedData
    dap.add  add
        Boolean
    dap.addAttribute  addAttribute
        No value
        Attribute
    dap.addEntryArgument  addEntryArgument
        No value
        AddEntryArgumentData
    dap.addEntryResult  addEntryResult
        No value
        AddEntryResultData
    dap.addValues  addValues
        No value
        Attribute
    dap.agreementID  agreementID
        No value
    dap.algorithm  algorithm
        No value
        AlgorithmIdentifier
    dap.algorithmIdentifier  algorithmIdentifier
        No value
    dap.algorithm_identifier  algorithm-identifier
        No value
        AlgorithmIdentifier
    dap.aliasDereferenced  aliasDereferenced
        Boolean
        BOOLEAN
    dap.aliasEntry  aliasEntry
        Boolean
        BOOLEAN
    dap.aliasedRDNs  aliasedRDNs
        Signed 32-bit integer
        INTEGER
    dap.all  all
        Unsigned 32-bit integer
        SET_OF_ContextAssertion
    dap.allContexts  allContexts
        No value
    dap.allOperationalAttributes  allOperationalAttributes
        No value
    dap.allUserAttributes  allUserAttributes
        No value
    dap.altMatching  altMatching
        Boolean
        BOOLEAN
    dap.alterValues  alterValues
        No value
        AttributeTypeAndValue
    dap.and  and
        Unsigned 32-bit integer
        SetOfFilter
    dap.any  any
        No value
    dap.approximateMatch  approximateMatch
        No value
        AttributeValueAssertion
    dap.attribute  attribute
        No value
    dap.attributeCertificationPath  attributeCertificationPath
        No value
    dap.attributeError  attributeError
        No value
        AttributeErrorData
    dap.attributeInfo  attributeInfo
        Unsigned 32-bit integer
    dap.attributeInfo_item  attributeInfo item
        Unsigned 32-bit integer
    dap.attributeSizeLimit  attributeSizeLimit
        Signed 32-bit integer
        INTEGER
    dap.attributeType  attributeType
        Object Identifier
    dap.attributes  attributes
        Unsigned 32-bit integer
    dap.baseAtt  baseAtt
        Object Identifier
        AttributeType
    dap.baseObject  baseObject
        Unsigned 32-bit integer
        Name
    dap.bestEstimate  bestEstimate
        Signed 32-bit integer
        INTEGER
    dap.bindConfAlgorithm  bindConfAlgorithm
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_AlgorithmIdentifier
    dap.bindConfKeyInfo  bindConfKeyInfo
        Byte array
        BindKeyInfo
    dap.bindIntAlgorithm  bindIntAlgorithm
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_AlgorithmIdentifier
    dap.bindIntKeyInfo  bindIntKeyInfo
        Byte array
        BindKeyInfo
    dap.bind_token  bind-token
        No value
        Token
    dap.candidate  candidate
        No value
        ContinuationReference
    dap.certification_path  certification-path
        No value
        CertificationPath
    dap.chainingProhibited  chainingProhibited
        Boolean
    dap.changes  changes
        Unsigned 32-bit integer
        SEQUENCE_OF_EntryModification
    dap.checkOverspecified  checkOverspecified
        Boolean
        BOOLEAN
    dap.children  children
        Boolean
    dap.compareArgument  compareArgument
        No value
        CompareArgumentData
    dap.compareResult  compareResult
        No value
        CompareResultData
    dap.contextAssertions  contextAssertions
        Unsigned 32-bit integer
    dap.contextPresent  contextPresent
        No value
        AttributeTypeAssertion
    dap.contextSelection  contextSelection
        Unsigned 32-bit integer
    dap.control  control
        No value
        Attribute
    dap.copyShallDo  copyShallDo
        Boolean
    dap.countFamily  countFamily
        Boolean
    dap.credentials  credentials
        Unsigned 32-bit integer
    dap.criticalExtensions  criticalExtensions
        Byte array
        BIT_STRING
    dap.deleteOldRDN  deleteOldRDN
        Boolean
        BOOLEAN
    dap.derivedEntry  derivedEntry
        Boolean
        BOOLEAN
    dap.directoryBindError  directoryBindError
        No value
        DirectoryBindErrorData
    dap.dnAttribute  dnAttribute
        Boolean
    dap.dnAttributes  dnAttributes
        Boolean
        BOOLEAN
    dap.domainLocalID  domainLocalID
        Unsigned 32-bit integer
    dap.dontDereferenceAliases  dontDereferenceAliases
        Boolean
    dap.dontMatchFriends  dontMatchFriends
        Boolean
    dap.dontSelectFriends  dontSelectFriends
        Boolean
    dap.dontUseCopy  dontUseCopy
        Boolean
    dap.dsaName  dsaName
        Unsigned 32-bit integer
        Name
    dap.encrypted  encrypted
        Byte array
        BIT_STRING
    dap.entries  entries
        Unsigned 32-bit integer
        SET_OF_EntryInformation
    dap.entry  entry
        No value
        EntryInformation
    dap.entryCount  entryCount
        Unsigned 32-bit integer
    dap.entryOnly  entryOnly
        Boolean
        BOOLEAN
    dap.equality  equality
        No value
        AttributeValueAssertion
    dap.error  error
        Unsigned 32-bit integer
    dap.errorCode  errorCode
        Unsigned 32-bit integer
        Code
    dap.errorProtection  errorProtection
        Signed 32-bit integer
        ErrorProtectionRequest
    dap.exact  exact
        Signed 32-bit integer
        INTEGER
    dap.exclusions  exclusions
        Unsigned 32-bit integer
    dap.extendedArea  extendedArea
        Signed 32-bit integer
        INTEGER
    dap.extendedFilter  extendedFilter
        Unsigned 32-bit integer
        Filter
    dap.extensibleMatch  extensibleMatch
        No value
        MatchingRuleAssertion
    dap.externalProcedure  externalProcedure
        No value
        EXTERNAL
    dap.extraAttributes  extraAttributes
        Unsigned 32-bit integer
    dap.familyEntries  familyEntries
        Unsigned 32-bit integer
        SEQUENCE_OF_FamilyEntry
    dap.familyGrouping  familyGrouping
        Unsigned 32-bit integer
    dap.familyReturn  familyReturn
        No value
    dap.familySelect  familySelect
        Unsigned 32-bit integer
    dap.familySelect_item  familySelect item
        Object Identifier
        OBJECT_IDENTIFIER
    dap.family_class  family-class
        Object Identifier
        OBJECT_IDENTIFIER
    dap.family_info  family-info
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_FamilyEntries
    dap.filter  filter
        Unsigned 32-bit integer
    dap.final  final
        No value
    dap.fromEntry  fromEntry
        Boolean
        BOOLEAN
    dap.generalizedTime  generalizedTime
        String
    dap.greaterOrEqual  greaterOrEqual
        No value
        AttributeValueAssertion
    dap.gt  gt
        String
        GeneralizedTime
    dap.hierarchy  hierarchy
        Boolean
    dap.hierarchySelections  hierarchySelections
        Byte array
    dap.includeAllAreas  includeAllAreas
        Boolean
    dap.incompleteEntry  incompleteEntry
        Boolean
        BOOLEAN
    dap.infoTypes  infoTypes
        Signed 32-bit integer
    dap.information  information
        Unsigned 32-bit integer
        T_entry_information
    dap.information_item  information item
        Unsigned 32-bit integer
        EntryInformationItem
    dap.initial  initial
        No value
    dap.invokeID  invokeID
        Unsigned 32-bit integer
    dap.item  item
        Unsigned 32-bit integer
        FilterItem
    dap.joinArguments  joinArguments
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_JoinArgument
    dap.joinAtt  joinAtt
        Object Identifier
        AttributeType
    dap.joinAttributes  joinAttributes
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_JoinAttPair
    dap.joinBaseObject  joinBaseObject
        Unsigned 32-bit integer
        Name
    dap.joinContext  joinContext
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_JoinContextType
    dap.joinFilter  joinFilter
        Unsigned 32-bit integer
        Filter
    dap.joinSelection  joinSelection
        No value
        EntryInformationSelection
    dap.joinSubset  joinSubset
        Unsigned 32-bit integer
    dap.joinType  joinType
        Unsigned 32-bit integer
    dap.lessOrEqual  lessOrEqual
        No value
        AttributeValueAssertion
    dap.limitProblem  limitProblem
        Signed 32-bit integer
    dap.listArgument  listArgument
        No value
        ListArgumentData
    dap.listFamily  listFamily
        Boolean
        BOOLEAN
    dap.listInfo  listInfo
        No value
    dap.listResult  listResult
        Unsigned 32-bit integer
        ListResultData
    dap.localScope  localScope
        Boolean
    dap.lowEstimate  lowEstimate
        Signed 32-bit integer
        INTEGER
    dap.manageDSAIT  manageDSAIT
        Boolean
    dap.manageDSAITPlaneRef  manageDSAITPlaneRef
        No value
    dap.matchOnResidualName  matchOnResidualName
        Boolean
    dap.matchValue  matchValue
        No value
    dap.matched  matched
        Boolean
        BOOLEAN
    dap.matchedSubtype  matchedSubtype
        Object Identifier
        AttributeType
    dap.matchedValuesOnly  matchedValuesOnly
        Boolean
        BOOLEAN
    dap.matchingRule  matchingRule
        Unsigned 32-bit integer
    dap.matchingRule_item  matchingRule item
        Object Identifier
        OBJECT_IDENTIFIER
    dap.mechanism  mechanism
        Unsigned 32-bit integer
        DirectoryString
    dap.memberSelect  memberSelect
        Unsigned 32-bit integer
    dap.modifyDNResult  modifyDNResult
        No value
        ModifyDNResultData
    dap.modifyEntryArgument  modifyEntryArgument
        No value
        ModifyEntryArgumentData
    dap.modifyEntryResult  modifyEntryResult
        No value
        ModifyEntryResultData
    dap.modifyRights  modifyRights
        Unsigned 32-bit integer
    dap.modifyRightsRequest  modifyRightsRequest
        Boolean
        BOOLEAN
    dap.move  move
        Boolean
    dap.name  name
        Unsigned 32-bit integer
    dap.nameError  nameError
        No value
        NameErrorData
    dap.nameResolveOnMaster  nameResolveOnMaster
        Boolean
        BOOLEAN
    dap.newRDN  newRDN
        Unsigned 32-bit integer
        RelativeDistinguishedName
    dap.newRequest  newRequest
        No value
    dap.newSuperior  newSuperior
        Unsigned 32-bit integer
        DistinguishedName
    dap.noSubtypeMatch  noSubtypeMatch
        Boolean
    dap.noSubtypeSelection  noSubtypeSelection
        Boolean
    dap.noSystemRelaxation  noSystemRelaxation
        Boolean
    dap.not  not
        Unsigned 32-bit integer
        Filter
    dap.notification  notification
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_Attribute
    dap.null  null
        No value
    dap.object  object
        Unsigned 32-bit integer
        Name
    dap.operation  operation
        Unsigned 32-bit integer
        InvokeId
    dap.operationCode  operationCode
        Unsigned 32-bit integer
        Code
    dap.operationContexts  operationContexts
        Unsigned 32-bit integer
        ContextSelection
    dap.operationProgress  operationProgress
        No value
    dap.options  options
        Byte array
        ServiceControlOptions
    dap.or  or
        Unsigned 32-bit integer
        SetOfFilter
    dap.orderingRule  orderingRule
        Object Identifier
        OBJECT_IDENTIFIER
    dap.overspecFilter  overspecFilter
        Unsigned 32-bit integer
        Filter
    dap.pageSize  pageSize
        Signed 32-bit integer
        INTEGER
    dap.pagedResults  pagedResults
        Unsigned 32-bit integer
        PagedResultsRequest
    dap.parent  parent
        Boolean
    dap.partialName  partialName
        Boolean
        BOOLEAN
    dap.partialNameResolution  partialNameResolution
        Boolean
    dap.partialOutcomeQualifier  partialOutcomeQualifier
        No value
    dap.password  password
        Unsigned 32-bit integer
    dap.performExactly  performExactly
        Boolean
    dap.performer  performer
        Unsigned 32-bit integer
        DistinguishedName
    dap.permission  permission
        Byte array
    dap.preferChaining  preferChaining
        Boolean
    dap.preference  preference
        Unsigned 32-bit integer
        SEQUENCE_OF_ContextAssertion
    dap.present  present
        Object Identifier
        AttributeType
    dap.priority  priority
        Signed 32-bit integer
    dap.problem  problem
        Signed 32-bit integer
        AbandonProblem
    dap.problems  problems
        Unsigned 32-bit integer
    dap.problems_item  problems item
        No value
    dap.protected  protected
        No value
    dap.protectedPassword  protectedPassword
        Byte array
        OCTET_STRING
    dap.purported  purported
        No value
        AttributeValueAssertion
    dap.queryReference  queryReference
        Byte array
        T_pagedResultsQueryReference
    dap.random  random
        Byte array
        BIT_STRING
    dap.random1  random1
        Byte array
        BIT_STRING
    dap.random2  random2
        Byte array
        BIT_STRING
    dap.rdn  rdn
        Unsigned 32-bit integer
        RelativeDistinguishedName
    dap.rdnSequence  rdnSequence
        Unsigned 32-bit integer
    dap.readArgument  readArgument
        No value
        ReadArgumentData
    dap.readResult  readResult
        No value
        ReadResultData
    dap.referenceType  referenceType
        Unsigned 32-bit integer
    dap.referral  referral
        No value
        ReferralData
    dap.relaxation  relaxation
        No value
        RelaxationPolicy
    dap.remove  remove
        Boolean
    dap.removeAttribute  removeAttribute
        Object Identifier
        AttributeType
    dap.removeEntryArgument  removeEntryArgument
        No value
        RemoveEntryArgumentData
    dap.removeEntryResult  removeEntryResult
        No value
        RemoveEntryResultData
    dap.removeValues  removeValues
        No value
        Attribute
    dap.rename  rename
        Boolean
    dap.rep  rep
        No value
    dap.req  req
        No value
    dap.requestor  requestor
        Unsigned 32-bit integer
        DistinguishedName
    dap.resetValue  resetValue
        Object Identifier
        AttributeType
    dap.response  response
        Byte array
        BIT_STRING
    dap.returnContexts  returnContexts
        Boolean
        BOOLEAN
    dap.reverse  reverse
        Boolean
        BOOLEAN
    dap.sasl  sasl
        No value
        SaslCredentials
    dap.saslAbort  saslAbort
        Boolean
        BOOLEAN
    dap.scopeOfReferral  scopeOfReferral
        Signed 32-bit integer
    dap.searchAliases  searchAliases
        Boolean
        BOOLEAN
    dap.searchArgument  searchArgument
        No value
        SearchArgumentData
    dap.searchControlOptions  searchControlOptions
        Byte array
    dap.searchFamily  searchFamily
        Boolean
    dap.searchInfo  searchInfo
        No value
    dap.searchResult  searchResult
        Unsigned 32-bit integer
        SearchResultData
    dap.securityError  securityError
        Signed 32-bit integer
        SecurityProblem
    dap.securityParameters  securityParameters
        No value
    dap.select  select
        Unsigned 32-bit integer
        SET_OF_AttributeType
    dap.selectedContexts  selectedContexts
        Unsigned 32-bit integer
        SET_SIZE_1_MAX_OF_TypeAndContextAssertion
    dap.selection  selection
        No value
        EntryInformationSelection
    dap.self  self
        Boolean
    dap.separateFamilyMembers  separateFamilyMembers
        Boolean
    dap.serviceControls  serviceControls
        No value
    dap.serviceError  serviceError
        Signed 32-bit integer
        ServiceProblem
    dap.serviceType  serviceType
        Object Identifier
        OBJECT_IDENTIFIER
    dap.siblingChildren  siblingChildren
        Boolean
    dap.siblingSubtree  siblingSubtree
        Boolean
    dap.siblings  siblings
        Boolean
    dap.signedAbandonArgument  signedAbandonArgument
        No value
    dap.signedAbandonFailedError  signedAbandonFailedError
        No value
    dap.signedAbandonResult  signedAbandonResult
        No value
    dap.signedAbandoned  signedAbandoned
        No value
    dap.signedAddEntryArgument  signedAddEntryArgument
        No value
    dap.signedAddEntryResult  signedAddEntryResult
        No value
    dap.signedAttributeError  signedAttributeError
        No value
    dap.signedCompareArgument  signedCompareArgument
        No value
    dap.signedCompareResult  signedCompareResult
        No value
    dap.signedDirectoryBindError  signedDirectoryBindError
        No value
    dap.signedListArgument  signedListArgument
        No value
    dap.signedListResult  signedListResult
        No value
    dap.signedModifyDNResult  signedModifyDNResult
        No value
    dap.signedModifyEntryArgument  signedModifyEntryArgument
        No value
    dap.signedModifyEntryResult  signedModifyEntryResult
        No value
    dap.signedNameError  signedNameError
        No value
    dap.signedReadArgument  signedReadArgument
        No value
    dap.signedReadResult  signedReadResult
        No value
    dap.signedReferral  signedReferral
        No value
    dap.signedRemoveEntryArgument  signedRemoveEntryArgument
        No value
    dap.signedRemoveEntryResult  signedRemoveEntryResult
        No value
    dap.signedSearchArgument  signedSearchArgument
        No value
    dap.signedSearchResult  signedSearchResult
        No value
    dap.signedSecurityError  signedSecurityError
        No value
    dap.signedServiceError  signedServiceError
        No value
    dap.signedUpdateError  signedUpdateError
        No value
    dap.simple  simple
        No value
        SimpleCredentials
    dap.sizeLimit  sizeLimit
        Signed 32-bit integer
        INTEGER
    dap.sortKeys  sortKeys
        Unsigned 32-bit integer
        SEQUENCE_SIZE_1_MAX_OF_SortKey
    dap.spkm  spkm
        Unsigned 32-bit integer
        SpkmCredentials
    dap.spkmInfo  spkmInfo
        No value
    dap.streamedResult  streamedResult
        Boolean
        BOOLEAN
    dap.strings  strings
        Unsigned 32-bit integer
    dap.strings_item  strings item
        Unsigned 32-bit integer
    dap.strong  strong
        No value
        StrongCredentials
    dap.subentries  subentries
        Boolean
    dap.subordinates  subordinates
        Unsigned 32-bit integer
    dap.subordinates_item  subordinates item
        No value
    dap.subset  subset
        Signed 32-bit integer
    dap.substrings  substrings
        No value
    dap.subtree  subtree
        Boolean
    dap.target  target
        Signed 32-bit integer
        ProtectionRequest
    dap.targetSystem  targetSystem
        No value
        AccessPoint
    dap.time  time
        Unsigned 32-bit integer
    dap.time1  time1
        Unsigned 32-bit integer
    dap.time2  time2
        Unsigned 32-bit integer
    dap.timeLimit  timeLimit
        Signed 32-bit integer
        INTEGER
    dap.token_data  token-data
        No value
        TokenData
    dap.top  top
        Boolean
    dap.type  type
        Object Identifier
        AttributeType
    dap.unavailableCriticalExtensions  unavailableCriticalExtensions
        Boolean
        BOOLEAN
    dap.uncorrelatedListInfo  uncorrelatedListInfo
        Unsigned 32-bit integer
        SET_OF_ListResult
    dap.uncorrelatedSearchInfo  uncorrelatedSearchInfo
        Unsigned 32-bit integer
        SET_OF_SearchResult
    dap.unexplored  unexplored
        Unsigned 32-bit integer
        SET_SIZE_1_MAX_OF_ContinuationReference
    dap.unknownErrors  unknownErrors
        Unsigned 32-bit integer
    dap.unknownErrors_item  unknownErrors item
        Object Identifier
        OBJECT_IDENTIFIER
    dap.unmerged  unmerged
        Boolean
        BOOLEAN
    dap.unprotected  unprotected
        Byte array
        OCTET_STRING
    dap.unsignedAbandonArgument  unsignedAbandonArgument
        No value
        AbandonArgumentData
    dap.unsignedAbandonFailedError  unsignedAbandonFailedError
        No value
        AbandonFailedErrorData
    dap.unsignedAbandonResult  unsignedAbandonResult
        No value
        AbandonResultData
    dap.unsignedAbandoned  unsignedAbandoned
        No value
        AbandonedData
    dap.unsignedAddEntryArgument  unsignedAddEntryArgument
        No value
        AddEntryArgumentData
    dap.unsignedAddEntryResult  unsignedAddEntryResult
        No value
        AddEntryResultData
    dap.unsignedAttributeError  unsignedAttributeError
        No value
        AttributeErrorData
    dap.unsignedCompareArgument  unsignedCompareArgument
        No value
        CompareArgumentData
    dap.unsignedCompareResult  unsignedCompareResult
        No value
        CompareResultData
    dap.unsignedDirectoryBindError  unsignedDirectoryBindError
        No value
        DirectoryBindErrorData
    dap.unsignedListArgument  unsignedListArgument
        No value
        ListArgumentData
    dap.unsignedListResult  unsignedListResult
        Unsigned 32-bit integer
        ListResultData
    dap.unsignedModifyDNResult  unsignedModifyDNResult
        No value
        ModifyDNResultData
    dap.unsignedModifyEntryArgument  unsignedModifyEntryArgument
        No value
        ModifyEntryArgumentData
    dap.unsignedModifyEntryResult  unsignedModifyEntryResult
        No value
        ModifyEntryResultData
    dap.unsignedNameError  unsignedNameError
        No value
        NameErrorData
    dap.unsignedReadArgument  unsignedReadArgument
        No value
        ReadArgumentData
    dap.unsignedReadResult  unsignedReadResult
        No value
        ReadResultData
    dap.unsignedReferral  unsignedReferral
        No value
        ReferralData
    dap.unsignedRemoveEntryArgument  unsignedRemoveEntryArgument
        No value
        RemoveEntryArgumentData
    dap.unsignedRemoveEntryResult  unsignedRemoveEntryResult
        No value
        RemoveEntryResultData
    dap.unsignedSearchArgument  unsignedSearchArgument
        No value
        SearchArgumentData
    dap.unsignedSearchResult  unsignedSearchResult
        Unsigned 32-bit integer
        SearchResultData
    dap.unsignedSecurityError  unsignedSecurityError
        No value
        SecurityErrorData
    dap.unsignedServiceError  unsignedServiceError
        No value
        ServiceErrorData
    dap.unsignedUpdateError  unsignedUpdateError
        No value
        UpdateErrorData
    dap.updateError  updateError
        No value
        UpdateErrorData
    dap.useSubset  useSubset
        Boolean
    dap.userClass  userClass
        Signed 32-bit integer
        INTEGER
    dap.utc  utc
        String
        UTCTime
    dap.utcTime  utcTime
        String
    dap.v1  v1
        Boolean
    dap.v2  v2
        Boolean
    dap.validity  validity
        No value
    dap.value  value
        No value
        AttributeValueAssertion
    dap.versions  versions
        Byte array

X.519 Directory Information Shadowing Protocol (disp)

    disp.Attribute  Attribute
        No value
    disp.AttributeType  AttributeType
        Object Identifier
    disp.ClassAttributeSelection  ClassAttributeSelection
        No value
    disp.EntryModification  EntryModification
        Unsigned 32-bit integer
    disp.EstablishParameter  EstablishParameter
        No value
    disp.IncrementalStepRefresh  IncrementalStepRefresh
        No value
    disp.ModificationParameter  ModificationParameter
        No value
    disp.ShadowingAgreementInfo  ShadowingAgreementInfo
        No value
    disp.SubordinateChanges  SubordinateChanges
        No value
    disp.Subtree  Subtree
        No value
    disp.SupplierAndConsumers  SupplierAndConsumers
        No value
    disp.add  add
        No value
        SDSEContent
    disp.agreementID  agreementID
        No value
    disp.algorithmIdentifier  algorithmIdentifier
        No value
    disp.aliasDereferenced  aliasDereferenced
        Boolean
        BOOLEAN
    disp.allAttributes  allAttributes
        No value
    disp.allContexts  allContexts
        No value
    disp.area  area
        No value
        AreaSpecification
    disp.attComplete  attComplete
        Boolean
        BOOLEAN
    disp.attValIncomplete  attValIncomplete
        Unsigned 32-bit integer
        SET_OF_AttributeType
    disp.attributeChanges  attributeChanges
        Unsigned 32-bit integer
    disp.attributes  attributes
        Unsigned 32-bit integer
        AttributeSelection
    disp.beginTime  beginTime
        String
        Time
    disp.changes  changes
        Unsigned 32-bit integer
        SEQUENCE_OF_EntryModification
    disp.class  class
        Object Identifier
        OBJECT_IDENTIFIER
    disp.classAttributes  classAttributes
        Unsigned 32-bit integer
    disp.consumerInitiated  consumerInitiated
        No value
        ConsumerUpdateMode
    disp.contextPrefix  contextPrefix
        Unsigned 32-bit integer
        DistinguishedName
    disp.contextSelection  contextSelection
        Unsigned 32-bit integer
    disp.coordinateShadowUpdateArgument  coordinateShadowUpdateArgument
        No value
        CoordinateShadowUpdateArgumentData
    disp.encrypted  encrypted
        Byte array
        BIT_STRING
    disp.exclude  exclude
        Unsigned 32-bit integer
        AttributeTypes
    disp.extendedKnowledge  extendedKnowledge
        Boolean
        BOOLEAN
    disp.include  include
        Unsigned 32-bit integer
        AttributeTypes
    disp.incremental  incremental
        Unsigned 32-bit integer
        IncrementalRefresh
    disp.information  information
        Unsigned 32-bit integer
    disp.knowledge  knowledge
        No value
    disp.knowledgeType  knowledgeType
        Unsigned 32-bit integer
    disp.lastUpdate  lastUpdate
        String
        Time
    disp.master  master
        No value
        AccessPoint
    disp.modify  modify
        No value
        ContentChange
    disp.newDN  newDN
        Unsigned 32-bit integer
        DistinguishedName
    disp.newRDN  newRDN
        Unsigned 32-bit integer
        RelativeDistinguishedName
    disp.noRefresh  noRefresh
        No value
    disp.notification  notification
        Unsigned 32-bit integer
        SEQUENCE_OF_Attribute
    disp.null  null
        No value
    disp.onChange  onChange
        Boolean
        BOOLEAN
    disp.other  other
        No value
        EXTERNAL
    disp.otherStrategy  otherStrategy
        No value
        EXTERNAL
    disp.othertimes  othertimes
        Boolean
        BOOLEAN
    disp.performer  performer
        Unsigned 32-bit integer
        DistinguishedName
    disp.periodic  periodic
        No value
        PeriodicStrategy
    disp.problem  problem
        Signed 32-bit integer
        ShadowProblem
    disp.rdn  rdn
        Unsigned 32-bit integer
        RelativeDistinguishedName
    disp.remove  remove
        No value
    disp.rename  rename
        Unsigned 32-bit integer
    disp.replace  replace
        Unsigned 32-bit integer
        SET_OF_Attribute
    disp.replicationArea  replicationArea
        No value
        SubtreeSpecification
    disp.requestShadowUpdateArgument  requestShadowUpdateArgument
        No value
        RequestShadowUpdateArgumentData
    disp.requestedStrategy  requestedStrategy
        Unsigned 32-bit integer
    disp.sDSE  sDSE
        No value
        SDSEContent
    disp.sDSEChanges  sDSEChanges
        Unsigned 32-bit integer
    disp.sDSEType  sDSEType
        Byte array
    disp.scheduled  scheduled
        No value
        SchedulingParameters
    disp.secondaryShadows  secondaryShadows
        Unsigned 32-bit integer
        SET_OF_SupplierAndConsumers
    disp.securityParameters  securityParameters
        No value
    disp.selectedContexts  selectedContexts
        Unsigned 32-bit integer
    disp.selectedContexts_item  selectedContexts item
        Object Identifier
        OBJECT_IDENTIFIER
    disp.shadowError  shadowError
        No value
        ShadowErrorData
    disp.shadowSubject  shadowSubject
        No value
        UnitOfReplication
    disp.signedCoordinateShadowUpdateArgument  signedCoordinateShadowUpdateArgument
        No value
    disp.signedInformation  signedInformation
        No value
    disp.signedRequestShadowUpdateArgument  signedRequestShadowUpdateArgument
        No value
    disp.signedShadowError  signedShadowError
        No value
    disp.signedUpdateShadowArgument  signedUpdateShadowArgument
        No value
    disp.standard  standard
        Unsigned 32-bit integer
        StandardUpdate
    disp.start  start
        String
        Time
    disp.stop  stop
        String
        Time
    disp.subComplete  subComplete
        Boolean
        BOOLEAN
    disp.subordinate  subordinate
        Unsigned 32-bit integer
        RelativeDistinguishedName
    disp.subordinateUpdates  subordinateUpdates
        Unsigned 32-bit integer
        SEQUENCE_OF_SubordinateChanges
    disp.subordinates  subordinates
        Boolean
        BOOLEAN
    disp.subtree  subtree
        Unsigned 32-bit integer
        SET_OF_Subtree
    disp.supplierInitiated  supplierInitiated
        Unsigned 32-bit integer
        SupplierUpdateMode
    disp.supplyContexts  supplyContexts
        Unsigned 32-bit integer
    disp.total  total
        No value
        TotalRefresh
    disp.unsignedCoordinateShadowUpdateArgument  unsignedCoordinateShadowUpdateArgument
        No value
        CoordinateShadowUpdateArgumentData
    disp.unsignedInformation  unsignedInformation
        No value
        InformationData
    disp.unsignedRequestShadowUpdateArgument  unsignedRequestShadowUpdateArgument
        No value
        RequestShadowUpdateArgumentData
    disp.unsignedShadowError  unsignedShadowError
        No value
        ShadowErrorData
    disp.unsignedUpdateShadowArgument  unsignedUpdateShadowArgument
        No value
        UpdateShadowArgumentData
    disp.updateInterval  updateInterval
        Signed 32-bit integer
        INTEGER
    disp.updateMode  updateMode
        Unsigned 32-bit integer
    disp.updateShadowArgument  updateShadowArgument
        No value
        UpdateShadowArgumentData
    disp.updateStrategy  updateStrategy
        Unsigned 32-bit integer
    disp.updateTime  updateTime
        String
        Time
    disp.updateWindow  updateWindow
        No value
    disp.updatedInfo  updatedInfo
        Unsigned 32-bit integer
        RefreshInformation
    disp.windowSize  windowSize
        Signed 32-bit integer
        INTEGER

X.519 Directory System Protocol (dsp)

    dsp.AccessPoint  AccessPoint
        No value
    dsp.AccessPointInformation  AccessPointInformation
        No value
    dsp.Attribute  Attribute
        No value
    dsp.CrossReference  CrossReference
        No value
    dsp.DitBridgeKnowledge  DitBridgeKnowledge
        No value
    dsp.MasterAndShadowAccessPoints  MasterAndShadowAccessPoints
        Unsigned 32-bit integer
    dsp.MasterOrShadowAccessPoint  MasterOrShadowAccessPoint
        No value
    dsp.ProtocolInformation  ProtocolInformation
        No value
    dsp.RDNSequence  RDNSequence
        Unsigned 32-bit integer
    dsp.TraceItem  TraceItem
        No value
    dsp.accessPoint  accessPoint
        No value
        AccessPointInformation
    dsp.accessPoints  accessPoints
        Unsigned 32-bit integer
        MasterAndShadowAccessPoints
    dsp.addEntryArgument  addEntryArgument
        Unsigned 32-bit integer
    dsp.addEntryResult  addEntryResult
        Unsigned 32-bit integer
    dsp.additionalPoints  additionalPoints
        Unsigned 32-bit integer
        MasterAndShadowAccessPoints
    dsp.address  address
        No value
        PresentationAddress
    dsp.ae_title  ae-title
        Unsigned 32-bit integer
        Name
    dsp.algorithmIdentifier  algorithmIdentifier
        No value
    dsp.aliasDereferenced  aliasDereferenced
        Boolean
        BOOLEAN
    dsp.aliasedRDNs  aliasedRDNs
        Signed 32-bit integer
        INTEGER
    dsp.alreadySearched  alreadySearched
        Unsigned 32-bit integer
        Exclusions
    dsp.authenticationLevel  authenticationLevel
        Unsigned 32-bit integer
    dsp.basicLevels  basicLevels
        No value
    dsp.category  category
        Unsigned 32-bit integer
        APCategory
    dsp.chainedAddEntryArgument  chainedAddEntryArgument
        No value
        ChainedAddEntryArgumentData
    dsp.chainedAddEntryResult  chainedAddEntryResult
        No value
        ChainedAddEntryResultData
    dsp.chainedArgument  chainedArgument
        No value
        ChainingArguments
    dsp.chainedCompareArgument  chainedCompareArgument
        No value
        ChainedCompareArgumentData
    dsp.chainedCompareResult  chainedCompareResult
        No value
        ChainedCompareResultData
    dsp.chainedListArgument  chainedListArgument
        No value
        ChainedListArgumentData
    dsp.chainedListResult  chainedListResult
        No value
        ChainedListResultData
    dsp.chainedModifyDNArgument  chainedModifyDNArgument
        No value
        ChainedModifyDNArgumentData
    dsp.chainedModifyDNResult  chainedModifyDNResult
        No value
        ChainedModifyDNResultData
    dsp.chainedModifyEntryArgument  chainedModifyEntryArgument
        No value
        ChainedModifyEntryArgumentData
    dsp.chainedModifyEntryResult  chainedModifyEntryResult
        No value
        ChainedModifyEntryResultData
    dsp.chainedReadArgument  chainedReadArgument
        No value
        ChainedReadArgumentData
    dsp.chainedReadResult  chainedReadResult
        No value
        ChainedReadResultData
    dsp.chainedRelaxation  chainedRelaxation
        No value
        MRMapping
    dsp.chainedRemoveEntryArgument  chainedRemoveEntryArgument
        No value
        ChainedRemoveEntryArgumentData
    dsp.chainedRemoveEntryResult  chainedRemoveEntryResult
        No value
        ChainedRemoveEntryResultData
    dsp.chainedResults  chainedResults
        No value
        ChainingResults
    dsp.chainedSearchArgument  chainedSearchArgument
        No value
        ChainedSearchArgumentData
    dsp.chainedSearchResult  chainedSearchResult
        No value
        ChainedSearchResultData
    dsp.chainingRequired  chainingRequired
        Boolean
        BOOLEAN
    dsp.compareArgument  compareArgument
        Unsigned 32-bit integer
    dsp.compareResult  compareResult
        Unsigned 32-bit integer
    dsp.contextPrefix  contextPrefix
        Unsigned 32-bit integer
        DistinguishedName
    dsp.crossReferences  crossReferences
        Unsigned 32-bit integer
        SEQUENCE_OF_CrossReference
    dsp.domainLocalID  domainLocalID
        Unsigned 32-bit integer
        DirectoryString
    dsp.dsa  dsa
        Unsigned 32-bit integer
        Name
    dsp.dsaReferral  dsaReferral
        No value
        DSAReferralData
    dsp.dspPaging  dspPaging
        Boolean
        BOOLEAN
    dsp.encrypted  encrypted
        Byte array
        BIT_STRING
    dsp.entryOnly  entryOnly
        Boolean
        BOOLEAN
    dsp.excludeShadows  excludeShadows
        Boolean
        BOOLEAN
    dsp.excludeWriteableCopies  excludeWriteableCopies
        Boolean
        BOOLEAN
    dsp.exclusions  exclusions
        Unsigned 32-bit integer
    dsp.generalizedTime  generalizedTime
        String
    dsp.info  info
        Object Identifier
        DomainInfo
    dsp.labeledURI  labeledURI
        Unsigned 32-bit integer
    dsp.level  level
        Unsigned 32-bit integer
    dsp.listArgument  listArgument
        Unsigned 32-bit integer
    dsp.listResult  listResult
        Unsigned 32-bit integer
    dsp.localQualifier  localQualifier
        Signed 32-bit integer
        INTEGER
    dsp.modifyDNArgument  modifyDNArgument
        No value
    dsp.modifyDNResult  modifyDNResult
        Unsigned 32-bit integer
    dsp.modifyEntryArgument  modifyEntryArgument
        Unsigned 32-bit integer
    dsp.modifyEntryResult  modifyEntryResult
        Unsigned 32-bit integer
    dsp.nameResolutionPhase  nameResolutionPhase
        Unsigned 32-bit integer
    dsp.nameResolveOnMaster  nameResolveOnMaster
        Boolean
        BOOLEAN
    dsp.nextRDNToBeResolved  nextRDNToBeResolved
        Signed 32-bit integer
        INTEGER
    dsp.nonDapPdu  nonDapPdu
        Unsigned 32-bit integer
    dsp.notification  notification
        Unsigned 32-bit integer
        SEQUENCE_OF_Attribute
    dsp.operationIdentifier  operationIdentifier
        Signed 32-bit integer
        INTEGER
    dsp.operationProgress  operationProgress
        No value
    dsp.originator  originator
        Unsigned 32-bit integer
        DistinguishedName
    dsp.other  other
        No value
        EXTERNAL
    dsp.performer  performer
        Unsigned 32-bit integer
        DistinguishedName
    dsp.protocolInformation  protocolInformation
        Unsigned 32-bit integer
        SET_OF_ProtocolInformation
    dsp.rdnsResolved  rdnsResolved
        Signed 32-bit integer
        INTEGER
    dsp.readArgument  readArgument
        Unsigned 32-bit integer
    dsp.readResult  readResult
        Unsigned 32-bit integer
    dsp.reference  reference
        No value
        ContinuationReference
    dsp.referenceType  referenceType
        Unsigned 32-bit integer
    dsp.relatedEntry  relatedEntry
        Signed 32-bit integer
        INTEGER
    dsp.removeEntryArgument  removeEntryArgument
        Unsigned 32-bit integer
    dsp.removeEntryResult  removeEntryResult
        Unsigned 32-bit integer
    dsp.returnCrossRefs  returnCrossRefs
        Boolean
        BOOLEAN
    dsp.returnToDUA  returnToDUA
        Boolean
        BOOLEAN
    dsp.searchArgument  searchArgument
        Unsigned 32-bit integer
    dsp.searchResult  searchResult
        Unsigned 32-bit integer
    dsp.searchRuleId  searchRuleId
        No value
    dsp.securityParameters  securityParameters
        No value
    dsp.signed  signed
        Boolean
        BOOLEAN
    dsp.signedChainedAddEntryArgument  signedChainedAddEntryArgument
        No value
    dsp.signedChainedAddEntryResult  signedChainedAddEntryResult
        No value
    dsp.signedChainedCompareArgument  signedChainedCompareArgument
        No value
    dsp.signedChainedCompareResult  signedChainedCompareResult
        No value
    dsp.signedChainedListArgument  signedChainedListArgument
        No value
    dsp.signedChainedListResult  signedChainedListResult
        No value
    dsp.signedChainedModifyDNArgument  signedChainedModifyDNArgument
        No value
    dsp.signedChainedModifyDNResult  signedChainedModifyDNResult
        No value
    dsp.signedChainedModifyEntryArgument  signedChainedModifyEntryArgument
        No value
    dsp.signedChainedModifyEntryResult  signedChainedModifyEntryResult
        No value
    dsp.signedChainedReadArgument  signedChainedReadArgument
        No value
    dsp.signedChainedReadResult  signedChainedReadResult
        No value
    dsp.signedChainedRemoveEntryArgument  signedChainedRemoveEntryArgument
        No value
    dsp.signedChainedRemoveEntryResult  signedChainedRemoveEntryResult
        No value
    dsp.signedChainedSearchArgument  signedChainedSearchArgument
        No value
    dsp.signedChainedSearchResult  signedChainedSearchResult
        No value
    dsp.signedDSAReferral  signedDSAReferral
        No value
    dsp.streamedResults  streamedResults
        Signed 32-bit integer
        INTEGER
    dsp.targetObject  targetObject
        Unsigned 32-bit integer
        DistinguishedName
    dsp.timeLimit  timeLimit
        Unsigned 32-bit integer
        Time
    dsp.traceInformation  traceInformation
        Unsigned 32-bit integer
    dsp.uniqueIdentifier  uniqueIdentifier
        Byte array
    dsp.unsignedChainedAddEntryArgument  unsignedChainedAddEntryArgument
        No value
        ChainedAddEntryArgumentData
    dsp.unsignedChainedAddEntryResult  unsignedChainedAddEntryResult
        No value
        ChainedAddEntryResultData
    dsp.unsignedChainedCompareArgument  unsignedChainedCompareArgument
        No value
        ChainedCompareArgumentData
    dsp.unsignedChainedCompareResult  unsignedChainedCompareResult
        No value
        ChainedCompareResultData
    dsp.unsignedChainedListArgument  unsignedChainedListArgument
        No value
        ChainedListArgumentData
    dsp.unsignedChainedListResult  unsignedChainedListResult
        No value
        ChainedListResultData
    dsp.unsignedChainedModifyDNArgument  unsignedChainedModifyDNArgument
        No value
        ChainedModifyDNArgumentData
    dsp.unsignedChainedModifyDNResult  unsignedChainedModifyDNResult
        No value
        ChainedModifyDNResultData
    dsp.unsignedChainedModifyEntryArgument  unsignedChainedModifyEntryArgument
        No value
        ChainedModifyEntryArgumentData
    dsp.unsignedChainedModifyEntryResult  unsignedChainedModifyEntryResult
        No value
        ChainedModifyEntryResultData
    dsp.unsignedChainedReadArgument  unsignedChainedReadArgument
        No value
        ChainedReadArgumentData
    dsp.unsignedChainedReadResult  unsignedChainedReadResult
        No value
        ChainedReadResultData
    dsp.unsignedChainedRemoveEntryArgument  unsignedChainedRemoveEntryArgument
        No value
        ChainedRemoveEntryArgumentData
    dsp.unsignedChainedRemoveEntryResult  unsignedChainedRemoveEntryResult
        No value
        ChainedRemoveEntryResultData
    dsp.unsignedChainedSearchArgument  unsignedChainedSearchArgument
        No value
        ChainedSearchArgumentData
    dsp.unsignedChainedSearchResult  unsignedChainedSearchResult
        No value
        ChainedSearchResultData
    dsp.unsignedDSAReferral  unsignedDSAReferral
        No value
        DSAReferralData
    dsp.utcTime  utcTime
        String

X.880 OSI Remote Operations Service (ros)

    ros.absent  absent
        No value
    ros.argument  argument
        No value
    ros.bind_error  bind-error
        No value
    ros.bind_invoke  bind-invoke
        No value
    ros.bind_result  bind-result
        No value
    ros.errcode  errcode
        Signed 32-bit integer
        ErrorCode
    ros.general  general
        Signed 32-bit integer
        GeneralProblem
    ros.global  global
        Object Identifier
        OBJECT_IDENTIFIER
    ros.invoke  invoke
        No value
    ros.invokeId  invokeId
        Unsigned 32-bit integer
    ros.linkedId  linkedId
        Signed 32-bit integer
        INTEGER
    ros.local  local
        Signed 32-bit integer
        INTEGER
    ros.opcode  opcode
        Signed 32-bit integer
        OperationCode
    ros.parameter  parameter
        No value
    ros.present  present
        Signed 32-bit integer
    ros.problem  problem
        Unsigned 32-bit integer
    ros.reject  reject
        No value
    ros.response_in  Response In
        Frame number
        The response to this remote operation invocation is in this frame
    ros.response_to  Response To
        Frame number
        This is a response to the remote operation invocation in this frame
    ros.result  result
        No value
    ros.returnError  returnError
        No value
    ros.returnResult  returnResult
        No value
    ros.time  Time
        Time duration
        The time between the Invoke and the Response
    ros.unbind_error  unbind-error
        No value
    ros.unbind_invoke  unbind-invoke
        No value
    ros.unbind_result  unbind-result
        No value

X11 (x11)

    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.bigreq.Enable.reply.maximum_request_length  maximum_request_length
        Unsigned 32-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
    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.composite.CreateRegionFromBorderClip.region  region
        Unsigned 32-bit integer
    x11.composite.CreateRegionFromBorderClip.window  window
        Unsigned 32-bit integer
    x11.composite.GetOverlayWindow.reply.overlay_win  overlay_win
        Unsigned 32-bit integer
    x11.composite.GetOverlayWindow.window  window
        Unsigned 32-bit integer
    x11.composite.NameWindowPixmap.pixmap  pixmap
        Unsigned 32-bit integer
    x11.composite.NameWindowPixmap.window  window
        Unsigned 32-bit integer
    x11.composite.QueryVersion.client_major_version  client_major_version
        Unsigned 32-bit integer
    x11.composite.QueryVersion.client_minor_version  client_minor_version
        Unsigned 32-bit integer
    x11.composite.QueryVersion.reply.major_version  major_version
        Unsigned 32-bit integer
    x11.composite.QueryVersion.reply.minor_version  minor_version
        Unsigned 32-bit integer
    x11.composite.RedirectSubwindows.update  update
        Unsigned 8-bit integer
    x11.composite.RedirectSubwindows.window  window
        Unsigned 32-bit integer
    x11.composite.RedirectWindow.update  update
        Unsigned 8-bit integer
    x11.composite.RedirectWindow.window  window
        Unsigned 32-bit integer
    x11.composite.ReleaseOverlayWindow.window  window
        Unsigned 32-bit integer
    x11.composite.UnredirectSubwindows.update  update
        Unsigned 8-bit integer
    x11.composite.UnredirectSubwindows.window  window
        Unsigned 32-bit integer
    x11.composite.UnredirectWindow.update  update
        Unsigned 8-bit integer
    x11.composite.UnredirectWindow.window  window
        Unsigned 32-bit integer
    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.damage.Add.drawable  drawable
        Unsigned 32-bit integer
    x11.damage.Add.region  region
        Unsigned 32-bit integer
    x11.damage.Create.damage  damage
        Unsigned 32-bit integer
    x11.damage.Create.drawable  drawable
        Unsigned 32-bit integer
    x11.damage.Create.level  level
        Unsigned 8-bit integer
    x11.damage.Destroy.damage  damage
        Unsigned 32-bit integer
    x11.damage.Notify.area  area
        No value
    x11.damage.Notify.damage  damage
        Unsigned 32-bit integer
    x11.damage.Notify.drawable  drawable
        Unsigned 32-bit integer
    x11.damage.Notify.geometry  geometry
        No value
    x11.damage.Notify.level  level
        Unsigned 8-bit integer
    x11.damage.Notify.timestamp  timestamp
        Unsigned 32-bit integer
    x11.damage.QueryVersion.client_major_version  client_major_version
        Unsigned 32-bit integer
    x11.damage.QueryVersion.client_minor_version  client_minor_version
        Unsigned 32-bit integer
    x11.damage.QueryVersion.reply.major_version  major_version
        Unsigned 32-bit integer
    x11.damage.QueryVersion.reply.minor_version  minor_version
        Unsigned 32-bit integer
    x11.damage.Subtract.damage  damage
        Unsigned 32-bit integer
    x11.damage.Subtract.parts  parts
        Unsigned 32-bit integer
    x11.damage.Subtract.repair  repair
        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.data16  data16
        No value
    x11.data16.item  item
        Unsigned 16-bit integer
    x11.data32  data32
        No value
    x11.data32.item  item
        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
    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.dpms.Capable.reply.capable  capable
        Boolean
    x11.dpms.ForceLevel.power_level  power_level
        Unsigned 16-bit integer
    x11.dpms.GetTimeouts.reply.off_timeout  off_timeout
        Unsigned 16-bit integer
    x11.dpms.GetTimeouts.reply.standby_timeout  standby_timeout
        Unsigned 16-bit integer
    x11.dpms.GetTimeouts.reply.suspend_timeout  suspend_timeout
        Unsigned 16-bit integer
    x11.dpms.GetVersion.client_major_version  client_major_version
        Unsigned 16-bit integer
    x11.dpms.GetVersion.client_minor_version  client_minor_version
        Unsigned 16-bit integer
    x11.dpms.GetVersion.reply.server_major_version  server_major_version
        Unsigned 16-bit integer
    x11.dpms.GetVersion.reply.server_minor_version  server_minor_version
        Unsigned 16-bit integer
    x11.dpms.Info.reply.power_level  power_level
        Unsigned 16-bit integer
    x11.dpms.Info.reply.state  state
        Boolean
    x11.dpms.SetTimeouts.off_timeout  off_timeout
        Unsigned 16-bit integer
    x11.dpms.SetTimeouts.standby_timeout  standby_timeout
        Unsigned 16-bit integer
    x11.dpms.SetTimeouts.suspend_timeout  suspend_timeout
        Unsigned 16-bit integer
    x11.drawable  drawable
        Unsigned 32-bit integer
    x11.dri2.Authenticate.magic  magic
        Unsigned 32-bit integer
    x11.dri2.Authenticate.reply.authenticated  authenticated
        Unsigned 32-bit integer
    x11.dri2.Authenticate.window  window
        Unsigned 32-bit integer
    x11.dri2.Connect.driver_type  driver_type
        Unsigned 32-bit integer
    x11.dri2.Connect.reply.alignment_pad  alignment_pad
        Byte array
    x11.dri2.Connect.reply.device_name  device_name
        String
    x11.dri2.Connect.reply.device_name_length  device_name_length
        Unsigned 32-bit integer
    x11.dri2.Connect.reply.driver_name  driver_name
        String
    x11.dri2.Connect.reply.driver_name_length  driver_name_length
        Unsigned 32-bit integer
    x11.dri2.Connect.window  window
        Unsigned 32-bit integer
    x11.dri2.CopyRegion.dest  dest
        Unsigned 32-bit integer
    x11.dri2.CopyRegion.drawable  drawable
        Unsigned 32-bit integer
    x11.dri2.CopyRegion.region  region
        Unsigned 32-bit integer
    x11.dri2.CopyRegion.src  src
        Unsigned 32-bit integer
    x11.dri2.CreateDrawable.drawable  drawable
        Unsigned 32-bit integer
    x11.dri2.DestroyDrawable.drawable  drawable
        Unsigned 32-bit integer
    x11.dri2.GetBuffers.attachments  attachments
        No value
    x11.dri2.GetBuffers.count  count
        Unsigned 32-bit integer
    x11.dri2.GetBuffers.drawable  drawable
        Unsigned 32-bit integer
    x11.dri2.GetBuffers.reply.buffers  buffers
        No value
    x11.dri2.GetBuffers.reply.count  count
        Unsigned 32-bit integer
    x11.dri2.GetBuffers.reply.height  height
        Unsigned 32-bit integer
    x11.dri2.GetBuffers.reply.width  width
        Unsigned 32-bit integer
    x11.dri2.GetBuffersWithFormat.attachments  attachments
        No value
    x11.dri2.GetBuffersWithFormat.count  count
        Unsigned 32-bit integer
    x11.dri2.GetBuffersWithFormat.drawable  drawable
        Unsigned 32-bit integer
    x11.dri2.GetBuffersWithFormat.reply.buffers  buffers
        No value
    x11.dri2.GetBuffersWithFormat.reply.count  count
        Unsigned 32-bit integer
    x11.dri2.GetBuffersWithFormat.reply.height  height
        Unsigned 32-bit integer
    x11.dri2.GetBuffersWithFormat.reply.width  width
        Unsigned 32-bit integer
    x11.dri2.QueryVersion.major_version  major_version
        Unsigned 32-bit integer
    x11.dri2.QueryVersion.minor_version  minor_version
        Unsigned 32-bit integer
    x11.dri2.QueryVersion.reply.major_version  major_version
        Unsigned 32-bit integer
    x11.dri2.QueryVersion.reply.minor_version  minor_version
        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
    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
    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
    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
    x11.eventcode  eventcode
        Unsigned 8-bit integer
    x11.eventwindow  eventwindow
        Unsigned 32-bit integer
    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.extension-minor  extension-minor
        Unsigned 8-bit integer
        minor opcode
    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.ge.QueryVersion.client_major_version  client_major_version
        Unsigned 16-bit integer
    x11.ge.QueryVersion.client_minor_version  client_minor_version
        Unsigned 16-bit integer
    x11.ge.QueryVersion.reply.major_version  major_version
        Unsigned 16-bit integer
    x11.ge.QueryVersion.reply.minor_version  minor_version
        Unsigned 16-bit integer
    x11.get-property-type  get-property-type
        Unsigned 32-bit integer
    x11.glx.AreTexturesResident.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.AreTexturesResident.n  n
        Signed 32-bit integer
    x11.glx.AreTexturesResident.reply.data  data
        Boolean
    x11.glx.AreTexturesResident.reply.ret_val  ret_val
        Unsigned 32-bit integer
    x11.glx.AreTexturesResident.textures  textures
        No value
    x11.glx.ChangeDrawableAttributes.attribs  attribs
        No value
    x11.glx.ChangeDrawableAttributes.drawable  drawable
        Unsigned 32-bit integer
    x11.glx.ChangeDrawableAttributes.num_attribs  num_attribs
        Unsigned 32-bit integer
    x11.glx.ClientInfo.major_version  major_version
        Unsigned 32-bit integer
    x11.glx.ClientInfo.minor_version  minor_version
        Unsigned 32-bit integer
    x11.glx.ClientInfo.str_len  str_len
        Unsigned 32-bit integer
    x11.glx.ClientInfo.string  string
        String
    x11.glx.CopyContext.dest  dest
        Unsigned 32-bit integer
    x11.glx.CopyContext.mask  mask
        Unsigned 32-bit integer
    x11.glx.CopyContext.src  src
        Unsigned 32-bit integer
    x11.glx.CopyContext.src_context_tag  src_context_tag
        Unsigned 32-bit integer
    x11.glx.CreateContext.context  context
        Unsigned 32-bit integer
    x11.glx.CreateContext.is_direct  is_direct
        Boolean
    x11.glx.CreateContext.screen  screen
        Unsigned 32-bit integer
    x11.glx.CreateContext.share_list  share_list
        Unsigned 32-bit integer
    x11.glx.CreateContext.visual  visual
        Unsigned 32-bit integer
    x11.glx.CreateGLXPixmap.glx_pixmap  glx_pixmap
        Unsigned 32-bit integer
    x11.glx.CreateGLXPixmap.pixmap  pixmap
        Unsigned 32-bit integer
    x11.glx.CreateGLXPixmap.screen  screen
        Unsigned 32-bit integer
    x11.glx.CreateGLXPixmap.visual  visual
        Unsigned 32-bit integer
    x11.glx.CreateNewContext.context  context
        Unsigned 32-bit integer
    x11.glx.CreateNewContext.fbconfig  fbconfig
        Unsigned 32-bit integer
    x11.glx.CreateNewContext.is_direct  is_direct
        Boolean
    x11.glx.CreateNewContext.render_type  render_type
        Unsigned 32-bit integer
    x11.glx.CreateNewContext.reserved1  reserved1
        Unsigned 8-bit integer
    x11.glx.CreateNewContext.reserved2  reserved2
        Unsigned 16-bit integer
    x11.glx.CreateNewContext.screen  screen
        Unsigned 32-bit integer
    x11.glx.CreateNewContext.share_list  share_list
        Unsigned 32-bit integer
    x11.glx.CreatePbuffer.attribs  attribs
        No value
    x11.glx.CreatePbuffer.fbconfig  fbconfig
        Unsigned 32-bit integer
    x11.glx.CreatePbuffer.num_attribs  num_attribs
        Unsigned 32-bit integer
    x11.glx.CreatePbuffer.pbuffer  pbuffer
        Unsigned 32-bit integer
    x11.glx.CreatePbuffer.screen  screen
        Unsigned 32-bit integer
    x11.glx.CreatePixmap.attribs  attribs
        No value
    x11.glx.CreatePixmap.fbconfig  fbconfig
        Unsigned 32-bit integer
    x11.glx.CreatePixmap.glx_pixmap  glx_pixmap
        Unsigned 32-bit integer
    x11.glx.CreatePixmap.num_attribs  num_attribs
        Unsigned 32-bit integer
    x11.glx.CreatePixmap.pixmap  pixmap
        Unsigned 32-bit integer
    x11.glx.CreatePixmap.screen  screen
        Unsigned 32-bit integer
    x11.glx.CreateWindow.attribs  attribs
        No value
    x11.glx.CreateWindow.fbconfig  fbconfig
        Unsigned 32-bit integer
    x11.glx.CreateWindow.glx_window  glx_window
        Unsigned 32-bit integer
    x11.glx.CreateWindow.num_attribs  num_attribs
        Unsigned 32-bit integer
    x11.glx.CreateWindow.screen  screen
        Unsigned 32-bit integer
    x11.glx.CreateWindow.window  window
        Unsigned 32-bit integer
    x11.glx.DeleteLists.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.DeleteLists.list  list
        Unsigned 32-bit integer
    x11.glx.DeleteLists.range  range
        Signed 32-bit integer
    x11.glx.DeleteQueriesARB.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.DeleteQueriesARB.ids  ids
        No value
    x11.glx.DeleteQueriesARB.n  n
        Signed 32-bit integer
    x11.glx.DeleteTextures.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.DeleteTextures.n  n
        Signed 32-bit integer
    x11.glx.DeleteTextures.textures  textures
        No value
    x11.glx.DeleteWindow.glxwindow  glxwindow
        Unsigned 32-bit integer
    x11.glx.DestroyContext.context  context
        Unsigned 32-bit integer
    x11.glx.DestroyGLXPixmap.glx_pixmap  glx_pixmap
        Unsigned 32-bit integer
    x11.glx.DestroyPbuffer.pbuffer  pbuffer
        Unsigned 32-bit integer
    x11.glx.DestroyPixmap.glx_pixmap  glx_pixmap
        Unsigned 32-bit integer
    x11.glx.EndList.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.FeedbackBuffer.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.FeedbackBuffer.size  size
        Signed 32-bit integer
    x11.glx.FeedbackBuffer.type  type
        Signed 32-bit integer
    x11.glx.Finish.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.Flush.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GenLists.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GenLists.range  range
        Signed 32-bit integer
    x11.glx.GenLists.reply.ret_val  ret_val
        Unsigned 32-bit integer
    x11.glx.GenQueriesARB.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GenQueriesARB.n  n
        Signed 32-bit integer
    x11.glx.GenQueriesARB.reply.data  data
        No value
    x11.glx.GenTextures.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GenTextures.n  n
        Signed 32-bit integer
    x11.glx.GenTextures.reply.data  data
        No value
    x11.glx.GetBooleanv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetBooleanv.pname  pname
        Signed 32-bit integer
    x11.glx.GetBooleanv.reply.data  data
        Boolean
    x11.glx.GetBooleanv.reply.datum  datum
        Boolean
    x11.glx.GetBooleanv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetClipPlane.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetClipPlane.plane  plane
        Signed 32-bit integer
    x11.glx.GetClipPlane.reply.data  data
        No value
    x11.glx.GetColorTable.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetColorTable.format  format
        Unsigned 32-bit integer
    x11.glx.GetColorTable.reply.data  data
        Byte array
    x11.glx.GetColorTable.reply.width  width
        Signed 32-bit integer
    x11.glx.GetColorTable.swap_bytes  swap_bytes
        Boolean
    x11.glx.GetColorTable.target  target
        Unsigned 32-bit integer
    x11.glx.GetColorTable.type  type
        Unsigned 32-bit integer
    x11.glx.GetColorTableParameterfv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetColorTableParameterfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetColorTableParameterfv.reply.data  data
        No value
    x11.glx.GetColorTableParameterfv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetColorTableParameterfv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetColorTableParameterfv.target  target
        Unsigned 32-bit integer
    x11.glx.GetColorTableParameteriv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetColorTableParameteriv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetColorTableParameteriv.reply.data  data
        No value
    x11.glx.GetColorTableParameteriv.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetColorTableParameteriv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetColorTableParameteriv.target  target
        Unsigned 32-bit integer
    x11.glx.GetCompressedTexImageARB.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetCompressedTexImageARB.level  level
        Signed 32-bit integer
    x11.glx.GetCompressedTexImageARB.reply.data  data
        Byte array
    x11.glx.GetCompressedTexImageARB.reply.size  size
        Signed 32-bit integer
    x11.glx.GetCompressedTexImageARB.target  target
        Unsigned 32-bit integer
    x11.glx.GetConvolutionFilter.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetConvolutionFilter.format  format
        Unsigned 32-bit integer
    x11.glx.GetConvolutionFilter.reply.data  data
        Byte array
    x11.glx.GetConvolutionFilter.reply.height  height
        Signed 32-bit integer
    x11.glx.GetConvolutionFilter.reply.width  width
        Signed 32-bit integer
    x11.glx.GetConvolutionFilter.swap_bytes  swap_bytes
        Boolean
    x11.glx.GetConvolutionFilter.target  target
        Unsigned 32-bit integer
    x11.glx.GetConvolutionFilter.type  type
        Unsigned 32-bit integer
    x11.glx.GetConvolutionParameterfv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetConvolutionParameterfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetConvolutionParameterfv.reply.data  data
        No value
    x11.glx.GetConvolutionParameterfv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetConvolutionParameterfv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetConvolutionParameterfv.target  target
        Unsigned 32-bit integer
    x11.glx.GetConvolutionParameteriv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetConvolutionParameteriv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetConvolutionParameteriv.reply.data  data
        No value
    x11.glx.GetConvolutionParameteriv.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetConvolutionParameteriv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetConvolutionParameteriv.target  target
        Unsigned 32-bit integer
    x11.glx.GetDoublev.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetDoublev.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetDoublev.reply.data  data
        No value
    x11.glx.GetDoublev.reply.datum  datum
        Double-precision floating point
    x11.glx.GetDoublev.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetDrawableAttributes.drawable  drawable
        Unsigned 32-bit integer
    x11.glx.GetDrawableAttributes.reply.attribs  attribs
        No value
    x11.glx.GetDrawableAttributes.reply.num_attribs  num_attribs
        Unsigned 32-bit integer
    x11.glx.GetError.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetError.reply.error  error
        Signed 32-bit integer
    x11.glx.GetFBConfigs.reply.num_FB_configs  num_FB_configs
        Unsigned 32-bit integer
    x11.glx.GetFBConfigs.reply.num_properties  num_properties
        Unsigned 32-bit integer
    x11.glx.GetFBConfigs.reply.property_list  property_list
        No value
    x11.glx.GetFBConfigs.screen  screen
        Unsigned 32-bit integer
    x11.glx.GetFloatv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetFloatv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetFloatv.reply.data  data
        No value
    x11.glx.GetFloatv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetFloatv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetHistogram.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetHistogram.format  format
        Unsigned 32-bit integer
    x11.glx.GetHistogram.reply.data  data
        Byte array
    x11.glx.GetHistogram.reply.width  width
        Signed 32-bit integer
    x11.glx.GetHistogram.reset  reset
        Boolean
    x11.glx.GetHistogram.swap_bytes  swap_bytes
        Boolean
    x11.glx.GetHistogram.target  target
        Unsigned 32-bit integer
    x11.glx.GetHistogram.type  type
        Unsigned 32-bit integer
    x11.glx.GetHistogramParameterfv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetHistogramParameterfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetHistogramParameterfv.reply.data  data
        No value
    x11.glx.GetHistogramParameterfv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetHistogramParameterfv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetHistogramParameterfv.target  target
        Unsigned 32-bit integer
    x11.glx.GetHistogramParameteriv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetHistogramParameteriv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetHistogramParameteriv.reply.data  data
        No value
    x11.glx.GetHistogramParameteriv.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetHistogramParameteriv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetHistogramParameteriv.target  target
        Unsigned 32-bit integer
    x11.glx.GetIntegerv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetIntegerv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetIntegerv.reply.data  data
        No value
    x11.glx.GetIntegerv.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetIntegerv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetLightfv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetLightfv.light  light
        Unsigned 32-bit integer
    x11.glx.GetLightfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetLightfv.reply.data  data
        No value
    x11.glx.GetLightfv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetLightfv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetLightiv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetLightiv.light  light
        Unsigned 32-bit integer
    x11.glx.GetLightiv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetLightiv.reply.data  data
        No value
    x11.glx.GetLightiv.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetLightiv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetMapdv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetMapdv.query  query
        Unsigned 32-bit integer
    x11.glx.GetMapdv.reply.data  data
        No value
    x11.glx.GetMapdv.reply.datum  datum
        Double-precision floating point
    x11.glx.GetMapdv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetMapdv.target  target
        Unsigned 32-bit integer
    x11.glx.GetMapfv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetMapfv.query  query
        Unsigned 32-bit integer
    x11.glx.GetMapfv.reply.data  data
        No value
    x11.glx.GetMapfv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetMapfv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetMapfv.target  target
        Unsigned 32-bit integer
    x11.glx.GetMapiv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetMapiv.query  query
        Unsigned 32-bit integer
    x11.glx.GetMapiv.reply.data  data
        No value
    x11.glx.GetMapiv.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetMapiv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetMapiv.target  target
        Unsigned 32-bit integer
    x11.glx.GetMaterialfv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetMaterialfv.face  face
        Unsigned 32-bit integer
    x11.glx.GetMaterialfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetMaterialfv.reply.data  data
        No value
    x11.glx.GetMaterialfv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetMaterialfv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetMaterialiv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetMaterialiv.face  face
        Unsigned 32-bit integer
    x11.glx.GetMaterialiv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetMaterialiv.reply.data  data
        No value
    x11.glx.GetMaterialiv.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetMaterialiv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetMinmax.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetMinmax.format  format
        Unsigned 32-bit integer
    x11.glx.GetMinmax.reply.data  data
        Byte array
    x11.glx.GetMinmax.reset  reset
        Boolean
    x11.glx.GetMinmax.swap_bytes  swap_bytes
        Boolean
    x11.glx.GetMinmax.target  target
        Unsigned 32-bit integer
    x11.glx.GetMinmax.type  type
        Unsigned 32-bit integer
    x11.glx.GetMinmaxParameterfv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetMinmaxParameterfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetMinmaxParameterfv.reply.data  data
        No value
    x11.glx.GetMinmaxParameterfv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetMinmaxParameterfv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetMinmaxParameterfv.target  target
        Unsigned 32-bit integer
    x11.glx.GetMinmaxParameteriv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetMinmaxParameteriv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetMinmaxParameteriv.reply.data  data
        No value
    x11.glx.GetMinmaxParameteriv.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetMinmaxParameteriv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetMinmaxParameteriv.target  target
        Unsigned 32-bit integer
    x11.glx.GetPixelMapfv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetPixelMapfv.map  map
        Unsigned 32-bit integer
    x11.glx.GetPixelMapfv.reply.data  data
        No value
    x11.glx.GetPixelMapfv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetPixelMapfv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetPixelMapuiv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetPixelMapuiv.map  map
        Unsigned 32-bit integer
    x11.glx.GetPixelMapuiv.reply.data  data
        No value
    x11.glx.GetPixelMapuiv.reply.datum  datum
        Unsigned 32-bit integer
    x11.glx.GetPixelMapuiv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetPixelMapusv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetPixelMapusv.map  map
        Unsigned 32-bit integer
    x11.glx.GetPixelMapusv.reply.data  data
        No value
    x11.glx.GetPixelMapusv.reply.datum  datum
        Unsigned 16-bit integer
    x11.glx.GetPixelMapusv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetPolygonStipple.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetPolygonStipple.lsb_first  lsb_first
        Boolean
    x11.glx.GetPolygonStipple.reply.data  data
        Byte array
    x11.glx.GetQueryObjectivARB.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetQueryObjectivARB.id  id
        Unsigned 32-bit integer
    x11.glx.GetQueryObjectivARB.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetQueryObjectivARB.reply.data  data
        No value
    x11.glx.GetQueryObjectivARB.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetQueryObjectivARB.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetQueryObjectuivARB.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetQueryObjectuivARB.id  id
        Unsigned 32-bit integer
    x11.glx.GetQueryObjectuivARB.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetQueryObjectuivARB.reply.data  data
        No value
    x11.glx.GetQueryObjectuivARB.reply.datum  datum
        Unsigned 32-bit integer
    x11.glx.GetQueryObjectuivARB.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetQueryivARB.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetQueryivARB.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetQueryivARB.reply.data  data
        No value
    x11.glx.GetQueryivARB.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetQueryivARB.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetQueryivARB.target  target
        Unsigned 32-bit integer
    x11.glx.GetSeparableFilter.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetSeparableFilter.format  format
        Unsigned 32-bit integer
    x11.glx.GetSeparableFilter.reply.col_h  col_h
        Signed 32-bit integer
    x11.glx.GetSeparableFilter.reply.row_w  row_w
        Signed 32-bit integer
    x11.glx.GetSeparableFilter.reply.rows_and_cols  rows_and_cols
        Byte array
    x11.glx.GetSeparableFilter.swap_bytes  swap_bytes
        Boolean
    x11.glx.GetSeparableFilter.target  target
        Unsigned 32-bit integer
    x11.glx.GetSeparableFilter.type  type
        Unsigned 32-bit integer
    x11.glx.GetString.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetString.name  name
        Unsigned 32-bit integer
    x11.glx.GetString.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetString.reply.string  string
        String
    x11.glx.GetTexEnvfv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetTexEnvfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetTexEnvfv.reply.data  data
        No value
    x11.glx.GetTexEnvfv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetTexEnvfv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetTexEnvfv.target  target
        Unsigned 32-bit integer
    x11.glx.GetTexEnviv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetTexEnviv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetTexEnviv.reply.data  data
        No value
    x11.glx.GetTexEnviv.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetTexEnviv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetTexEnviv.target  target
        Unsigned 32-bit integer
    x11.glx.GetTexGendv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetTexGendv.coord  coord
        Unsigned 32-bit integer
    x11.glx.GetTexGendv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetTexGendv.reply.data  data
        No value
    x11.glx.GetTexGendv.reply.datum  datum
        Double-precision floating point
    x11.glx.GetTexGendv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetTexGenfv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetTexGenfv.coord  coord
        Unsigned 32-bit integer
    x11.glx.GetTexGenfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetTexGenfv.reply.data  data
        No value
    x11.glx.GetTexGenfv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetTexGenfv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetTexGeniv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetTexGeniv.coord  coord
        Unsigned 32-bit integer
    x11.glx.GetTexGeniv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetTexGeniv.reply.data  data
        No value
    x11.glx.GetTexGeniv.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetTexGeniv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetTexImage.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetTexImage.format  format
        Unsigned 32-bit integer
    x11.glx.GetTexImage.level  level
        Signed 32-bit integer
    x11.glx.GetTexImage.reply.data  data
        Byte array
    x11.glx.GetTexImage.reply.depth  depth
        Signed 32-bit integer
    x11.glx.GetTexImage.reply.height  height
        Signed 32-bit integer
    x11.glx.GetTexImage.reply.width  width
        Signed 32-bit integer
    x11.glx.GetTexImage.swap_bytes  swap_bytes
        Boolean
    x11.glx.GetTexImage.target  target
        Unsigned 32-bit integer
    x11.glx.GetTexImage.type  type
        Unsigned 32-bit integer
    x11.glx.GetTexLevelParameterfv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetTexLevelParameterfv.level  level
        Signed 32-bit integer
    x11.glx.GetTexLevelParameterfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetTexLevelParameterfv.reply.data  data
        No value
    x11.glx.GetTexLevelParameterfv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetTexLevelParameterfv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetTexLevelParameterfv.target  target
        Unsigned 32-bit integer
    x11.glx.GetTexLevelParameteriv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetTexLevelParameteriv.level  level
        Signed 32-bit integer
    x11.glx.GetTexLevelParameteriv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetTexLevelParameteriv.reply.data  data
        No value
    x11.glx.GetTexLevelParameteriv.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetTexLevelParameteriv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetTexLevelParameteriv.target  target
        Unsigned 32-bit integer
    x11.glx.GetTexParameterfv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetTexParameterfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetTexParameterfv.reply.data  data
        No value
    x11.glx.GetTexParameterfv.reply.datum  datum
        Single-precision floating point
    x11.glx.GetTexParameterfv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetTexParameterfv.target  target
        Unsigned 32-bit integer
    x11.glx.GetTexParameteriv.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.GetTexParameteriv.pname  pname
        Unsigned 32-bit integer
    x11.glx.GetTexParameteriv.reply.data  data
        No value
    x11.glx.GetTexParameteriv.reply.datum  datum
        Signed 32-bit integer
    x11.glx.GetTexParameteriv.reply.n  n
        Unsigned 32-bit integer
    x11.glx.GetTexParameteriv.target  target
        Unsigned 32-bit integer
    x11.glx.GetVisualConfigs.reply.num_properties  num_properties
        Unsigned 32-bit integer
    x11.glx.GetVisualConfigs.reply.num_visuals  num_visuals
        Unsigned 32-bit integer
    x11.glx.GetVisualConfigs.reply.property_list  property_list
        No value
    x11.glx.GetVisualConfigs.screen  screen
        Unsigned 32-bit integer
    x11.glx.IsDirect.context  context
        Unsigned 32-bit integer
    x11.glx.IsDirect.reply.is_direct  is_direct
        Boolean
    x11.glx.IsList.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.IsList.list  list
        Unsigned 32-bit integer
    x11.glx.IsList.reply.ret_val  ret_val
        Unsigned 32-bit integer
    x11.glx.IsQueryARB.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.IsQueryARB.id  id
        Unsigned 32-bit integer
    x11.glx.IsQueryARB.reply.ret_val  ret_val
        Unsigned 32-bit integer
    x11.glx.IsTexture.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.IsTexture.reply.ret_val  ret_val
        Unsigned 32-bit integer
    x11.glx.IsTexture.texture  texture
        Unsigned 32-bit integer
    x11.glx.MakeContextCurrent.context  context
        Unsigned 32-bit integer
    x11.glx.MakeContextCurrent.drawable  drawable
        Unsigned 32-bit integer
    x11.glx.MakeContextCurrent.old_context_tag  old_context_tag
        Unsigned 32-bit integer
    x11.glx.MakeContextCurrent.read_drawable  read_drawable
        Unsigned 32-bit integer
    x11.glx.MakeContextCurrent.reply.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.MakeCurrent.context  context
        Unsigned 32-bit integer
    x11.glx.MakeCurrent.drawable  drawable
        Unsigned 32-bit integer
    x11.glx.MakeCurrent.old_context_tag  old_context_tag
        Unsigned 32-bit integer
    x11.glx.MakeCurrent.reply.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.NewList.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.NewList.list  list
        Unsigned 32-bit integer
    x11.glx.NewList.mode  mode
        Unsigned 32-bit integer
    x11.glx.PbufferClobber.aux_buffer  aux_buffer
        Unsigned 16-bit integer
    x11.glx.PbufferClobber.b_mask  b_mask
        Unsigned 32-bit integer
    x11.glx.PbufferClobber.count  count
        Unsigned 16-bit integer
    x11.glx.PbufferClobber.draw_type  draw_type
        Unsigned 16-bit integer
    x11.glx.PbufferClobber.drawable  drawable
        Unsigned 32-bit integer
    x11.glx.PbufferClobber.event_type  event_type
        Unsigned 16-bit integer
    x11.glx.PbufferClobber.height  height
        Unsigned 16-bit integer
    x11.glx.PbufferClobber.width  width
        Unsigned 16-bit integer
    x11.glx.PbufferClobber.x  x
        Unsigned 16-bit integer
    x11.glx.PbufferClobber.y  y
        Unsigned 16-bit integer
    x11.glx.PixelStoref.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.PixelStoref.datum  datum
        Single-precision floating point
    x11.glx.PixelStoref.pname  pname
        Unsigned 32-bit integer
    x11.glx.PixelStorei.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.PixelStorei.datum  datum
        Signed 32-bit integer
    x11.glx.PixelStorei.pname  pname
        Unsigned 32-bit integer
    x11.glx.QueryContext.context  context
        Unsigned 32-bit integer
    x11.glx.QueryContext.reply.attribs  attribs
        No value
    x11.glx.QueryContext.reply.num_attribs  num_attribs
        Unsigned 32-bit integer
    x11.glx.QueryExtensionsString.reply.n  n
        Unsigned 32-bit integer
    x11.glx.QueryExtensionsString.screen  screen
        Unsigned 32-bit integer
    x11.glx.QueryServerString.name  name
        Unsigned 32-bit integer
    x11.glx.QueryServerString.reply.str_len  str_len
        Unsigned 32-bit integer
    x11.glx.QueryServerString.reply.string  string
        String
    x11.glx.QueryServerString.screen  screen
        Unsigned 32-bit integer
    x11.glx.QueryVersion.major_version  major_version
        Unsigned 32-bit integer
    x11.glx.QueryVersion.minor_version  minor_version
        Unsigned 32-bit integer
    x11.glx.QueryVersion.reply.major_version  major_version
        Unsigned 32-bit integer
    x11.glx.QueryVersion.reply.minor_version  minor_version
        Unsigned 32-bit integer
    x11.glx.ReadPixels.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.ReadPixels.format  format
        Unsigned 32-bit integer
    x11.glx.ReadPixels.height  height
        Signed 32-bit integer
    x11.glx.ReadPixels.lsb_first  lsb_first
        Boolean
    x11.glx.ReadPixels.reply.data  data
        Byte array
    x11.glx.ReadPixels.swap_bytes  swap_bytes
        Boolean
    x11.glx.ReadPixels.type  type
        Unsigned 32-bit integer
    x11.glx.ReadPixels.width  width
        Signed 32-bit integer
    x11.glx.ReadPixels.x  x
        Signed 32-bit integer
    x11.glx.ReadPixels.y  y
        Signed 32-bit integer
    x11.glx.Render.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.Render.data  data
        Byte array
    x11.glx.RenderLarge.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.RenderLarge.data  data
        Byte array
    x11.glx.RenderLarge.data_len  data_len
        Unsigned 32-bit integer
    x11.glx.RenderLarge.request_num  request_num
        Unsigned 16-bit integer
    x11.glx.RenderLarge.request_total  request_total
        Unsigned 16-bit integer
    x11.glx.RenderMode.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.RenderMode.mode  mode
        Unsigned 32-bit integer
    x11.glx.RenderMode.reply.data  data
        No value
    x11.glx.RenderMode.reply.n  n
        Unsigned 32-bit integer
    x11.glx.RenderMode.reply.new_mode  new_mode
        Unsigned 32-bit integer
    x11.glx.RenderMode.reply.ret_val  ret_val
        Unsigned 32-bit integer
    x11.glx.SelectBuffer.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.SelectBuffer.size  size
        Signed 32-bit integer
    x11.glx.SwapBuffers.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.SwapBuffers.drawable  drawable
        Unsigned 32-bit integer
    x11.glx.UseXFont.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.UseXFont.count  count
        Unsigned 32-bit integer
    x11.glx.UseXFont.first  first
        Unsigned 32-bit integer
    x11.glx.UseXFont.font  font
        Unsigned 32-bit integer
    x11.glx.UseXFont.list_base  list_base
        Unsigned 32-bit integer
    x11.glx.VendorPrivate.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.VendorPrivate.data  data
        Byte array
    x11.glx.VendorPrivate.vendor_code  vendor_code
        Unsigned 32-bit integer
    x11.glx.VendorPrivateWithReply.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.VendorPrivateWithReply.data  data
        Byte array
    x11.glx.VendorPrivateWithReply.reply.data1  data1
        Byte array
    x11.glx.VendorPrivateWithReply.reply.data2  data2
        Byte array
    x11.glx.VendorPrivateWithReply.reply.retval  retval
        Unsigned 32-bit integer
    x11.glx.VendorPrivateWithReply.vendor_code  vendor_code
        Unsigned 32-bit integer
    x11.glx.WaitGL.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.WaitX.context_tag  context_tag
        Unsigned 32-bit integer
    x11.glx.render.Accum.op  op
        Unsigned 32-bit integer
    x11.glx.render.Accum.value  value
        Single-precision floating point
    x11.glx.render.ActiveStencilFaceEXT.face  face
        Unsigned 32-bit integer
    x11.glx.render.ActiveTextureARB.texture  texture
        Unsigned 32-bit integer
    x11.glx.render.AlphaFunc.func  func
        Unsigned 32-bit integer
    x11.glx.render.AlphaFunc.ref  ref
        Single-precision floating point
    x11.glx.render.Begin.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.BeginQueryARB.id  id
        Unsigned 32-bit integer
    x11.glx.render.BeginQueryARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.BindProgramNV.program  program
        Unsigned 32-bit integer
    x11.glx.render.BindProgramNV.target  target
        Unsigned 32-bit integer
    x11.glx.render.BindTexture.target  target
        Unsigned 32-bit integer
    x11.glx.render.BindTexture.texture  texture
        Unsigned 32-bit integer
    x11.glx.render.Bitmap.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.Bitmap.bitmap  bitmap
        Unsigned 8-bit integer
    x11.glx.render.Bitmap.height  height
        Unsigned 32-bit integer
    x11.glx.render.Bitmap.lsbfirst  lsb first
        Boolean
    x11.glx.render.Bitmap.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.Bitmap.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.Bitmap.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.Bitmap.swapbytes  swap bytes
        Boolean
    x11.glx.render.Bitmap.width  width
        Unsigned 32-bit integer
    x11.glx.render.Bitmap.xmove  xmove
        Single-precision floating point
    x11.glx.render.Bitmap.xorig  xorig
        Single-precision floating point
    x11.glx.render.Bitmap.ymove  ymove
        Single-precision floating point
    x11.glx.render.Bitmap.yorig  yorig
        Single-precision floating point
    x11.glx.render.BlendColor.alpha  alpha
        Single-precision floating point
    x11.glx.render.BlendColor.blue  blue
        Single-precision floating point
    x11.glx.render.BlendColor.green  green
        Single-precision floating point
    x11.glx.render.BlendColor.red  red
        Single-precision floating point
    x11.glx.render.BlendEquation.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.BlendEquationSeparateEXT.modeA  modeA
        Unsigned 32-bit integer
    x11.glx.render.BlendEquationSeparateEXT.modeRGB  modeRGB
        Unsigned 32-bit integer
    x11.glx.render.BlendFunc.dfactor  dfactor
        Unsigned 32-bit integer
    x11.glx.render.BlendFunc.sfactor  sfactor
        Unsigned 32-bit integer
    x11.glx.render.BlendFuncSeparateEXT.dfactorAlpha  dfactorAlpha
        Unsigned 32-bit integer
    x11.glx.render.BlendFuncSeparateEXT.dfactorRGB  dfactorRGB
        Unsigned 32-bit integer
    x11.glx.render.BlendFuncSeparateEXT.sfactorAlpha  sfactorAlpha
        Unsigned 32-bit integer
    x11.glx.render.BlendFuncSeparateEXT.sfactorRGB  sfactorRGB
        Unsigned 32-bit integer
    x11.glx.render.CallList.list  list
        Unsigned 32-bit integer
    x11.glx.render.CallLists.lists  lists
        Signed 8-bit integer
    x11.glx.render.CallLists.n  n
        Unsigned 32-bit integer
    x11.glx.render.CallLists.type  type
        Unsigned 32-bit integer
    x11.glx.render.Clear.mask  mask
        Unsigned 32-bit integer
    x11.glx.render.ClearAccum.alpha  alpha
        Single-precision floating point
    x11.glx.render.ClearAccum.blue  blue
        Single-precision floating point
    x11.glx.render.ClearAccum.green  green
        Single-precision floating point
    x11.glx.render.ClearAccum.red  red
        Single-precision floating point
    x11.glx.render.ClearColor.alpha  alpha
        Single-precision floating point
    x11.glx.render.ClearColor.blue  blue
        Single-precision floating point
    x11.glx.render.ClearColor.green  green
        Single-precision floating point
    x11.glx.render.ClearColor.red  red
        Single-precision floating point
    x11.glx.render.ClearDepth.depth  depth
        Double-precision floating point
    x11.glx.render.ClearIndex.c  c
        Single-precision floating point
    x11.glx.render.ClearStencil.s  s
        Signed 32-bit integer
    x11.glx.render.ClipPlane.equation  equation
        No value
    x11.glx.render.ClipPlane.plane  plane
        Unsigned 32-bit integer
    x11.glx.render.Color3bv.v  v
        Signed 8-bit integer
    x11.glx.render.Color3dv.v  v
        No value
    x11.glx.render.Color3fv.v  v
        No value
    x11.glx.render.Color3iv.v  v
        No value
    x11.glx.render.Color3sv.v  v
        No value
    x11.glx.render.Color3ubv.v  v
        Unsigned 8-bit integer
    x11.glx.render.Color3uiv.v  v
        No value
    x11.glx.render.Color3usv.v  v
        No value
    x11.glx.render.Color4bv.v  v
        Signed 8-bit integer
    x11.glx.render.Color4dv.v  v
        No value
    x11.glx.render.Color4fv.v  v
        No value
    x11.glx.render.Color4iv.v  v
        No value
    x11.glx.render.Color4sv.v  v
        No value
    x11.glx.render.Color4ubv.v  v
        Unsigned 8-bit integer
    x11.glx.render.Color4uiv.v  v
        No value
    x11.glx.render.Color4usv.v  v
        No value
    x11.glx.render.ColorMask.alpha  alpha
        Unsigned 8-bit integer
    x11.glx.render.ColorMask.blue  blue
        Unsigned 8-bit integer
    x11.glx.render.ColorMask.green  green
        Unsigned 8-bit integer
    x11.glx.render.ColorMask.red  red
        Unsigned 8-bit integer
    x11.glx.render.ColorMaterial.face  face
        Unsigned 32-bit integer
    x11.glx.render.ColorMaterial.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.ColorSubTable.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.ColorSubTable.count  count
        Unsigned 32-bit integer
    x11.glx.render.ColorSubTable.data  data
        Signed 8-bit integer
    x11.glx.render.ColorSubTable.format  format
        Unsigned 32-bit integer
    x11.glx.render.ColorSubTable.lsbfirst  lsb first
        Boolean
    x11.glx.render.ColorSubTable.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.ColorSubTable.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.ColorSubTable.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.ColorSubTable.start  start
        Unsigned 32-bit integer
    x11.glx.render.ColorSubTable.swapbytes  swap bytes
        Boolean
    x11.glx.render.ColorSubTable.target  target
        Unsigned 32-bit integer
    x11.glx.render.ColorSubTable.type  type
        Unsigned 32-bit integer
    x11.glx.render.ColorTable.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.ColorTable.format  format
        Unsigned 32-bit integer
    x11.glx.render.ColorTable.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.ColorTable.lsbfirst  lsb first
        Boolean
    x11.glx.render.ColorTable.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.ColorTable.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.ColorTable.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.ColorTable.swapbytes  swap bytes
        Boolean
    x11.glx.render.ColorTable.table  table
        Signed 8-bit integer
    x11.glx.render.ColorTable.target  target
        Unsigned 32-bit integer
    x11.glx.render.ColorTable.type  type
        Unsigned 32-bit integer
    x11.glx.render.ColorTable.width  width
        Unsigned 32-bit integer
    x11.glx.render.ColorTableParameterfv.params  params
        No value
    x11.glx.render.ColorTableParameterfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.ColorTableParameterfv.target  target
        Unsigned 32-bit integer
    x11.glx.render.ColorTableParameteriv.params  params
        No value
    x11.glx.render.ColorTableParameteriv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.ColorTableParameteriv.target  target
        Unsigned 32-bit integer
    x11.glx.render.CombinerInputNV.componentUsage  componentUsage
        Unsigned 32-bit integer
    x11.glx.render.CombinerInputNV.input  input
        Unsigned 32-bit integer
    x11.glx.render.CombinerInputNV.mapping  mapping
        Unsigned 32-bit integer
    x11.glx.render.CombinerInputNV.portion  portion
        Unsigned 32-bit integer
    x11.glx.render.CombinerInputNV.stage  stage
        Unsigned 32-bit integer
    x11.glx.render.CombinerInputNV.variable  variable
        Unsigned 32-bit integer
    x11.glx.render.CombinerOutputNV.abDotProduct  abDotProduct
        Unsigned 8-bit integer
    x11.glx.render.CombinerOutputNV.abOutput  abOutput
        Unsigned 32-bit integer
    x11.glx.render.CombinerOutputNV.bias  bias
        Unsigned 32-bit integer
    x11.glx.render.CombinerOutputNV.cdDotProduct  cdDotProduct
        Unsigned 8-bit integer
    x11.glx.render.CombinerOutputNV.cdOutput  cdOutput
        Unsigned 32-bit integer
    x11.glx.render.CombinerOutputNV.muxSum  muxSum
        Unsigned 8-bit integer
    x11.glx.render.CombinerOutputNV.portion  portion
        Unsigned 32-bit integer
    x11.glx.render.CombinerOutputNV.scale  scale
        Unsigned 32-bit integer
    x11.glx.render.CombinerOutputNV.stage  stage
        Unsigned 32-bit integer
    x11.glx.render.CombinerOutputNV.sumOutput  sumOutput
        Unsigned 32-bit integer
    x11.glx.render.CombinerParameterfNV.param  param
        Single-precision floating point
    x11.glx.render.CombinerParameterfNV.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.CombinerParameterfvNV.params  params
        No value
    x11.glx.render.CombinerParameterfvNV.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.CombinerParameteriNV.param  param
        Signed 32-bit integer
    x11.glx.render.CombinerParameteriNV.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.CombinerParameterivNV.params  params
        No value
    x11.glx.render.CombinerParameterivNV.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage1DARB.border  border
        Signed 32-bit integer
    x11.glx.render.CompressedTexImage1DARB.data  data
        Signed 8-bit integer
    x11.glx.render.CompressedTexImage1DARB.imageSize  imageSize
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage1DARB.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage1DARB.level  level
        Signed 32-bit integer
    x11.glx.render.CompressedTexImage1DARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage1DARB.width  width
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage2DARB.border  border
        Signed 32-bit integer
    x11.glx.render.CompressedTexImage2DARB.data  data
        Signed 8-bit integer
    x11.glx.render.CompressedTexImage2DARB.height  height
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage2DARB.imageSize  imageSize
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage2DARB.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage2DARB.level  level
        Signed 32-bit integer
    x11.glx.render.CompressedTexImage2DARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage2DARB.width  width
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage3DARB.border  border
        Signed 32-bit integer
    x11.glx.render.CompressedTexImage3DARB.data  data
        Signed 8-bit integer
    x11.glx.render.CompressedTexImage3DARB.depth  depth
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage3DARB.height  height
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage3DARB.imageSize  imageSize
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage3DARB.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage3DARB.level  level
        Signed 32-bit integer
    x11.glx.render.CompressedTexImage3DARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexImage3DARB.width  width
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage1DARB.data  data
        Signed 8-bit integer
    x11.glx.render.CompressedTexSubImage1DARB.format  format
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage1DARB.imageSize  imageSize
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage1DARB.level  level
        Signed 32-bit integer
    x11.glx.render.CompressedTexSubImage1DARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage1DARB.width  width
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage1DARB.xoffset  xoffset
        Signed 32-bit integer
    x11.glx.render.CompressedTexSubImage2DARB.data  data
        Signed 8-bit integer
    x11.glx.render.CompressedTexSubImage2DARB.format  format
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage2DARB.height  height
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage2DARB.imageSize  imageSize
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage2DARB.level  level
        Signed 32-bit integer
    x11.glx.render.CompressedTexSubImage2DARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage2DARB.width  width
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage2DARB.xoffset  xoffset
        Signed 32-bit integer
    x11.glx.render.CompressedTexSubImage2DARB.yoffset  yoffset
        Signed 32-bit integer
    x11.glx.render.CompressedTexSubImage3DARB.data  data
        Signed 8-bit integer
    x11.glx.render.CompressedTexSubImage3DARB.depth  depth
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage3DARB.format  format
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage3DARB.height  height
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage3DARB.imageSize  imageSize
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage3DARB.level  level
        Signed 32-bit integer
    x11.glx.render.CompressedTexSubImage3DARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage3DARB.width  width
        Unsigned 32-bit integer
    x11.glx.render.CompressedTexSubImage3DARB.xoffset  xoffset
        Signed 32-bit integer
    x11.glx.render.CompressedTexSubImage3DARB.yoffset  yoffset
        Signed 32-bit integer
    x11.glx.render.CompressedTexSubImage3DARB.zoffset  zoffset
        Signed 32-bit integer
    x11.glx.render.ConvolutionFilter1D.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter1D.format  format
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter1D.image  image
        Signed 8-bit integer
    x11.glx.render.ConvolutionFilter1D.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter1D.lsbfirst  lsb first
        Boolean
    x11.glx.render.ConvolutionFilter1D.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter1D.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter1D.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter1D.swapbytes  swap bytes
        Boolean
    x11.glx.render.ConvolutionFilter1D.target  target
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter1D.type  type
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter1D.width  width
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter2D.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter2D.format  format
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter2D.height  height
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter2D.image  image
        Signed 8-bit integer
    x11.glx.render.ConvolutionFilter2D.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter2D.lsbfirst  lsb first
        Boolean
    x11.glx.render.ConvolutionFilter2D.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter2D.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter2D.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter2D.swapbytes  swap bytes
        Boolean
    x11.glx.render.ConvolutionFilter2D.target  target
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter2D.type  type
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionFilter2D.width  width
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionParameterf.params  params
        Single-precision floating point
    x11.glx.render.ConvolutionParameterf.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionParameterf.target  target
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionParameterfv.params  params
        No value
    x11.glx.render.ConvolutionParameterfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionParameterfv.target  target
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionParameteri.params  params
        Signed 32-bit integer
    x11.glx.render.ConvolutionParameteri.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionParameteri.target  target
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionParameteriv.params  params
        No value
    x11.glx.render.ConvolutionParameteriv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.ConvolutionParameteriv.target  target
        Unsigned 32-bit integer
    x11.glx.render.CopyColorSubTable.start  start
        Unsigned 32-bit integer
    x11.glx.render.CopyColorSubTable.target  target
        Unsigned 32-bit integer
    x11.glx.render.CopyColorSubTable.width  width
        Unsigned 32-bit integer
    x11.glx.render.CopyColorSubTable.x  x
        Signed 32-bit integer
    x11.glx.render.CopyColorSubTable.y  y
        Signed 32-bit integer
    x11.glx.render.CopyColorTable.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.CopyColorTable.target  target
        Unsigned 32-bit integer
    x11.glx.render.CopyColorTable.width  width
        Unsigned 32-bit integer
    x11.glx.render.CopyColorTable.x  x
        Signed 32-bit integer
    x11.glx.render.CopyColorTable.y  y
        Signed 32-bit integer
    x11.glx.render.CopyConvolutionFilter1D.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.CopyConvolutionFilter1D.target  target
        Unsigned 32-bit integer
    x11.glx.render.CopyConvolutionFilter1D.width  width
        Unsigned 32-bit integer
    x11.glx.render.CopyConvolutionFilter1D.x  x
        Signed 32-bit integer
    x11.glx.render.CopyConvolutionFilter1D.y  y
        Signed 32-bit integer
    x11.glx.render.CopyConvolutionFilter2D.height  height
        Unsigned 32-bit integer
    x11.glx.render.CopyConvolutionFilter2D.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.CopyConvolutionFilter2D.target  target
        Unsigned 32-bit integer
    x11.glx.render.CopyConvolutionFilter2D.width  width
        Unsigned 32-bit integer
    x11.glx.render.CopyConvolutionFilter2D.x  x
        Signed 32-bit integer
    x11.glx.render.CopyConvolutionFilter2D.y  y
        Signed 32-bit integer
    x11.glx.render.CopyPixels.height  height
        Unsigned 32-bit integer
    x11.glx.render.CopyPixels.type  type
        Unsigned 32-bit integer
    x11.glx.render.CopyPixels.width  width
        Unsigned 32-bit integer
    x11.glx.render.CopyPixels.x  x
        Signed 32-bit integer
    x11.glx.render.CopyPixels.y  y
        Signed 32-bit integer
    x11.glx.render.CopyTexImage1D.border  border
        Signed 32-bit integer
    x11.glx.render.CopyTexImage1D.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.CopyTexImage1D.level  level
        Signed 32-bit integer
    x11.glx.render.CopyTexImage1D.target  target
        Unsigned 32-bit integer
    x11.glx.render.CopyTexImage1D.width  width
        Unsigned 32-bit integer
    x11.glx.render.CopyTexImage1D.x  x
        Signed 32-bit integer
    x11.glx.render.CopyTexImage1D.y  y
        Signed 32-bit integer
    x11.glx.render.CopyTexImage2D.border  border
        Signed 32-bit integer
    x11.glx.render.CopyTexImage2D.height  height
        Unsigned 32-bit integer
    x11.glx.render.CopyTexImage2D.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.CopyTexImage2D.level  level
        Signed 32-bit integer
    x11.glx.render.CopyTexImage2D.target  target
        Unsigned 32-bit integer
    x11.glx.render.CopyTexImage2D.width  width
        Unsigned 32-bit integer
    x11.glx.render.CopyTexImage2D.x  x
        Signed 32-bit integer
    x11.glx.render.CopyTexImage2D.y  y
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage1D.level  level
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage1D.target  target
        Unsigned 32-bit integer
    x11.glx.render.CopyTexSubImage1D.width  width
        Unsigned 32-bit integer
    x11.glx.render.CopyTexSubImage1D.x  x
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage1D.xoffset  xoffset
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage1D.y  y
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage2D.height  height
        Unsigned 32-bit integer
    x11.glx.render.CopyTexSubImage2D.level  level
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage2D.target  target
        Unsigned 32-bit integer
    x11.glx.render.CopyTexSubImage2D.width  width
        Unsigned 32-bit integer
    x11.glx.render.CopyTexSubImage2D.x  x
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage2D.xoffset  xoffset
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage2D.y  y
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage2D.yoffset  yoffset
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage3D.height  height
        Unsigned 32-bit integer
    x11.glx.render.CopyTexSubImage3D.level  level
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage3D.target  target
        Unsigned 32-bit integer
    x11.glx.render.CopyTexSubImage3D.width  width
        Unsigned 32-bit integer
    x11.glx.render.CopyTexSubImage3D.x  x
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage3D.xoffset  xoffset
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage3D.y  y
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage3D.yoffset  yoffset
        Signed 32-bit integer
    x11.glx.render.CopyTexSubImage3D.zoffset  zoffset
        Signed 32-bit integer
    x11.glx.render.CullFace.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.CurrentPaletteMatrixARB.index  index
        Signed 32-bit integer
    x11.glx.render.DepthBoundsEXT.zmax  zmax
        Double-precision floating point
    x11.glx.render.DepthBoundsEXT.zmin  zmin
        Double-precision floating point
    x11.glx.render.DepthFunc.func  func
        Unsigned 32-bit integer
    x11.glx.render.DepthMask.flag  flag
        Unsigned 8-bit integer
    x11.glx.render.DepthRange.zFar  zFar
        Double-precision floating point
    x11.glx.render.DepthRange.zNear  zNear
        Double-precision floating point
    x11.glx.render.DetailTexFuncSGIS.n  n
        Unsigned 32-bit integer
    x11.glx.render.DetailTexFuncSGIS.points  points
        No value
    x11.glx.render.DetailTexFuncSGIS.target  target
        Unsigned 32-bit integer
    x11.glx.render.Disable.cap  cap
        Unsigned 32-bit integer
    x11.glx.render.DrawArrays.count  count
        Unsigned 32-bit integer
    x11.glx.render.DrawArrays.first  first
        Signed 32-bit integer
    x11.glx.render.DrawArrays.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.DrawBuffer.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.DrawBuffersARB.bufs  bufs
        No value
    x11.glx.render.DrawBuffersARB.n  n
        Unsigned 32-bit integer
    x11.glx.render.DrawPixels.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.DrawPixels.format  format
        Unsigned 32-bit integer
    x11.glx.render.DrawPixels.height  height
        Unsigned 32-bit integer
    x11.glx.render.DrawPixels.lsbfirst  lsb first
        Boolean
    x11.glx.render.DrawPixels.pixels  pixels
        Signed 8-bit integer
    x11.glx.render.DrawPixels.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.DrawPixels.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.DrawPixels.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.DrawPixels.swapbytes  swap bytes
        Boolean
    x11.glx.render.DrawPixels.type  type
        Unsigned 32-bit integer
    x11.glx.render.DrawPixels.width  width
        Unsigned 32-bit integer
    x11.glx.render.EdgeFlagv.flag  flag
        Unsigned 8-bit integer
    x11.glx.render.Enable.cap  cap
        Unsigned 32-bit integer
    x11.glx.render.EndQueryARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.EvalCoord1dv.u  u
        No value
    x11.glx.render.EvalCoord1fv.u  u
        No value
    x11.glx.render.EvalCoord2dv.u  u
        No value
    x11.glx.render.EvalCoord2fv.u  u
        No value
    x11.glx.render.EvalMesh1.i1  i1
        Signed 32-bit integer
    x11.glx.render.EvalMesh1.i2  i2
        Signed 32-bit integer
    x11.glx.render.EvalMesh1.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.EvalMesh2.i1  i1
        Signed 32-bit integer
    x11.glx.render.EvalMesh2.i2  i2
        Signed 32-bit integer
    x11.glx.render.EvalMesh2.j1  j1
        Signed 32-bit integer
    x11.glx.render.EvalMesh2.j2  j2
        Signed 32-bit integer
    x11.glx.render.EvalMesh2.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.EvalPoint1.i  i
        Signed 32-bit integer
    x11.glx.render.EvalPoint2.i  i
        Signed 32-bit integer
    x11.glx.render.EvalPoint2.j  j
        Signed 32-bit integer
    x11.glx.render.ExecuteProgramNV.id  id
        Unsigned 32-bit integer
    x11.glx.render.ExecuteProgramNV.params  params
        No value
    x11.glx.render.ExecuteProgramNV.target  target
        Unsigned 32-bit integer
    x11.glx.render.FinalCombinerInputNV.componentUsage  componentUsage
        Unsigned 32-bit integer
    x11.glx.render.FinalCombinerInputNV.input  input
        Unsigned 32-bit integer
    x11.glx.render.FinalCombinerInputNV.mapping  mapping
        Unsigned 32-bit integer
    x11.glx.render.FinalCombinerInputNV.variable  variable
        Unsigned 32-bit integer
    x11.glx.render.FogCoorddvEXT.coord  coord
        No value
    x11.glx.render.FogCoordfvEXT.coord  coord
        No value
    x11.glx.render.FogFuncSGIS.n  n
        Unsigned 32-bit integer
    x11.glx.render.FogFuncSGIS.points  points
        No value
    x11.glx.render.Fogf.param  param
        Single-precision floating point
    x11.glx.render.Fogf.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.Fogfv.params  params
        No value
    x11.glx.render.Fogfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.Fogi.param  param
        Signed 32-bit integer
    x11.glx.render.Fogi.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.Fogiv.params  params
        No value
    x11.glx.render.Fogiv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.FrameZoomSGIX.factor  factor
        Signed 32-bit integer
    x11.glx.render.FrontFace.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.Frustum.bottom  bottom
        Double-precision floating point
    x11.glx.render.Frustum.left  left
        Double-precision floating point
    x11.glx.render.Frustum.right  right
        Double-precision floating point
    x11.glx.render.Frustum.top  top
        Double-precision floating point
    x11.glx.render.Frustum.zFar  zFar
        Double-precision floating point
    x11.glx.render.Frustum.zNear  zNear
        Double-precision floating point
    x11.glx.render.Hint.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.Hint.target  target
        Unsigned 32-bit integer
    x11.glx.render.Histogram.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.Histogram.sink  sink
        Unsigned 8-bit integer
    x11.glx.render.Histogram.target  target
        Unsigned 32-bit integer
    x11.glx.render.Histogram.width  width
        Unsigned 32-bit integer
    x11.glx.render.IndexMask.mask  mask
        Unsigned 32-bit integer
    x11.glx.render.Indexdv.c  c
        No value
    x11.glx.render.Indexfv.c  c
        No value
    x11.glx.render.Indexiv.c  c
        No value
    x11.glx.render.Indexsv.c  c
        No value
    x11.glx.render.Indexubv.c  c
        Unsigned 8-bit integer
    x11.glx.render.LightModelf.param  param
        Single-precision floating point
    x11.glx.render.LightModelf.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.LightModelfv.params  params
        No value
    x11.glx.render.LightModelfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.LightModeli.param  param
        Signed 32-bit integer
    x11.glx.render.LightModeli.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.LightModeliv.params  params
        No value
    x11.glx.render.LightModeliv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.Lightf.light  light
        Unsigned 32-bit integer
    x11.glx.render.Lightf.param  param
        Single-precision floating point
    x11.glx.render.Lightf.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.Lightfv.light  light
        Unsigned 32-bit integer
    x11.glx.render.Lightfv.params  params
        No value
    x11.glx.render.Lightfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.Lighti.light  light
        Unsigned 32-bit integer
    x11.glx.render.Lighti.param  param
        Signed 32-bit integer
    x11.glx.render.Lighti.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.Lightiv.light  light
        Unsigned 32-bit integer
    x11.glx.render.Lightiv.params  params
        No value
    x11.glx.render.Lightiv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.LineStipple.factor  factor
        Signed 32-bit integer
    x11.glx.render.LineStipple.pattern  pattern
        Unsigned 16-bit integer
    x11.glx.render.LineWidth.width  width
        Single-precision floating point
    x11.glx.render.ListBase.base  base
        Unsigned 32-bit integer
    x11.glx.render.LoadMatrixd.m  m
        No value
    x11.glx.render.LoadMatrixf.m  m
        No value
    x11.glx.render.LoadName.name  name
        Unsigned 32-bit integer
    x11.glx.render.LoadProgramNV.id  id
        Unsigned 32-bit integer
    x11.glx.render.LoadProgramNV.len  len
        Unsigned 32-bit integer
    x11.glx.render.LoadProgramNV.program  program
        Unsigned 8-bit integer
    x11.glx.render.LoadProgramNV.target  target
        Unsigned 32-bit integer
    x11.glx.render.LogicOp.opcode  opcode
        Unsigned 32-bit integer
    x11.glx.render.Map1d.order  order
        Signed 32-bit integer
    x11.glx.render.Map1d.points  points
        No value
    x11.glx.render.Map1d.stride  stride
        Signed 32-bit integer
    x11.glx.render.Map1d.target  target
        Unsigned 32-bit integer
    x11.glx.render.Map1d.u1  u1
        Double-precision floating point
    x11.glx.render.Map1d.u2  u2
        Double-precision floating point
    x11.glx.render.Map1f.order  order
        Signed 32-bit integer
    x11.glx.render.Map1f.points  points
        No value
    x11.glx.render.Map1f.stride  stride
        Signed 32-bit integer
    x11.glx.render.Map1f.target  target
        Unsigned 32-bit integer
    x11.glx.render.Map1f.u1  u1
        Single-precision floating point
    x11.glx.render.Map1f.u2  u2
        Single-precision floating point
    x11.glx.render.Map2d.points  points
        No value
    x11.glx.render.Map2d.target  target
        Unsigned 32-bit integer
    x11.glx.render.Map2d.u1  u1
        Double-precision floating point
    x11.glx.render.Map2d.u2  u2
        Double-precision floating point
    x11.glx.render.Map2d.uorder  uorder
        Signed 32-bit integer
    x11.glx.render.Map2d.ustride  ustride
        Signed 32-bit integer
    x11.glx.render.Map2d.v1  v1
        Double-precision floating point
    x11.glx.render.Map2d.v2  v2
        Double-precision floating point
    x11.glx.render.Map2d.vorder  vorder
        Signed 32-bit integer
    x11.glx.render.Map2d.vstride  vstride
        Signed 32-bit integer
    x11.glx.render.Map2f.points  points
        No value
    x11.glx.render.Map2f.target  target
        Unsigned 32-bit integer
    x11.glx.render.Map2f.u1  u1
        Single-precision floating point
    x11.glx.render.Map2f.u2  u2
        Single-precision floating point
    x11.glx.render.Map2f.uorder  uorder
        Signed 32-bit integer
    x11.glx.render.Map2f.ustride  ustride
        Signed 32-bit integer
    x11.glx.render.Map2f.v1  v1
        Single-precision floating point
    x11.glx.render.Map2f.v2  v2
        Single-precision floating point
    x11.glx.render.Map2f.vorder  vorder
        Signed 32-bit integer
    x11.glx.render.Map2f.vstride  vstride
        Signed 32-bit integer
    x11.glx.render.MapGrid1d.u1  u1
        Double-precision floating point
    x11.glx.render.MapGrid1d.u2  u2
        Double-precision floating point
    x11.glx.render.MapGrid1d.un  un
        Signed 32-bit integer
    x11.glx.render.MapGrid1f.u1  u1
        Single-precision floating point
    x11.glx.render.MapGrid1f.u2  u2
        Single-precision floating point
    x11.glx.render.MapGrid1f.un  un
        Signed 32-bit integer
    x11.glx.render.MapGrid2d.u1  u1
        Double-precision floating point
    x11.glx.render.MapGrid2d.u2  u2
        Double-precision floating point
    x11.glx.render.MapGrid2d.un  un
        Signed 32-bit integer
    x11.glx.render.MapGrid2d.v1  v1
        Double-precision floating point
    x11.glx.render.MapGrid2d.v2  v2
        Double-precision floating point
    x11.glx.render.MapGrid2d.vn  vn
        Signed 32-bit integer
    x11.glx.render.MapGrid2f.u1  u1
        Single-precision floating point
    x11.glx.render.MapGrid2f.u2  u2
        Single-precision floating point
    x11.glx.render.MapGrid2f.un  un
        Signed 32-bit integer
    x11.glx.render.MapGrid2f.v1  v1
        Single-precision floating point
    x11.glx.render.MapGrid2f.v2  v2
        Single-precision floating point
    x11.glx.render.MapGrid2f.vn  vn
        Signed 32-bit integer
    x11.glx.render.Materialf.face  face
        Unsigned 32-bit integer
    x11.glx.render.Materialf.param  param
        Single-precision floating point
    x11.glx.render.Materialf.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.Materialfv.face  face
        Unsigned 32-bit integer
    x11.glx.render.Materialfv.params  params
        No value
    x11.glx.render.Materialfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.Materiali.face  face
        Unsigned 32-bit integer
    x11.glx.render.Materiali.param  param
        Signed 32-bit integer
    x11.glx.render.Materiali.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.Materialiv.face  face
        Unsigned 32-bit integer
    x11.glx.render.Materialiv.params  params
        No value
    x11.glx.render.Materialiv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.MatrixIndexubvARB.indices  indices
        Unsigned 8-bit integer
    x11.glx.render.MatrixIndexubvARB.size  size
        Signed 32-bit integer
    x11.glx.render.MatrixIndexuivARB.indices  indices
        No value
    x11.glx.render.MatrixIndexuivARB.size  size
        Signed 32-bit integer
    x11.glx.render.MatrixIndexusvARB.indices  indices
        No value
    x11.glx.render.MatrixIndexusvARB.size  size
        Signed 32-bit integer
    x11.glx.render.MatrixMode.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.Minmax.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.Minmax.sink  sink
        Unsigned 8-bit integer
    x11.glx.render.Minmax.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultMatrixd.m  m
        No value
    x11.glx.render.MultMatrixf.m  m
        No value
    x11.glx.render.MultiTexCoord1dvARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord1dvARB.v  v
        No value
    x11.glx.render.MultiTexCoord1fvARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord1fvARB.v  v
        No value
    x11.glx.render.MultiTexCoord1ivARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord1ivARB.v  v
        No value
    x11.glx.render.MultiTexCoord1svARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord1svARB.v  v
        No value
    x11.glx.render.MultiTexCoord2dvARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord2dvARB.v  v
        No value
    x11.glx.render.MultiTexCoord2fvARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord2fvARB.v  v
        No value
    x11.glx.render.MultiTexCoord2ivARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord2ivARB.v  v
        No value
    x11.glx.render.MultiTexCoord2svARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord2svARB.v  v
        No value
    x11.glx.render.MultiTexCoord3dvARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord3dvARB.v  v
        No value
    x11.glx.render.MultiTexCoord3fvARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord3fvARB.v  v
        No value
    x11.glx.render.MultiTexCoord3ivARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord3ivARB.v  v
        No value
    x11.glx.render.MultiTexCoord3svARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord3svARB.v  v
        No value
    x11.glx.render.MultiTexCoord4dvARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord4dvARB.v  v
        No value
    x11.glx.render.MultiTexCoord4fvARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord4fvARB.v  v
        No value
    x11.glx.render.MultiTexCoord4ivARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord4ivARB.v  v
        No value
    x11.glx.render.MultiTexCoord4svARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.MultiTexCoord4svARB.v  v
        No value
    x11.glx.render.Normal3bv.v  v
        Signed 8-bit integer
    x11.glx.render.Normal3dv.v  v
        No value
    x11.glx.render.Normal3fv.v  v
        No value
    x11.glx.render.Normal3iv.v  v
        No value
    x11.glx.render.Normal3sv.v  v
        No value
    x11.glx.render.Ortho.bottom  bottom
        Double-precision floating point
    x11.glx.render.Ortho.left  left
        Double-precision floating point
    x11.glx.render.Ortho.right  right
        Double-precision floating point
    x11.glx.render.Ortho.top  top
        Double-precision floating point
    x11.glx.render.Ortho.zFar  zFar
        Double-precision floating point
    x11.glx.render.Ortho.zNear  zNear
        Double-precision floating point
    x11.glx.render.PassThrough.token  token
        Single-precision floating point
    x11.glx.render.PixelMapfv.map  map
        Unsigned 32-bit integer
    x11.glx.render.PixelMapfv.mapsize  mapsize
        Unsigned 32-bit integer
    x11.glx.render.PixelMapfv.values  values
        No value
    x11.glx.render.PixelMapuiv.map  map
        Unsigned 32-bit integer
    x11.glx.render.PixelMapuiv.mapsize  mapsize
        Unsigned 32-bit integer
    x11.glx.render.PixelMapuiv.values  values
        No value
    x11.glx.render.PixelMapusv.map  map
        Unsigned 32-bit integer
    x11.glx.render.PixelMapusv.mapsize  mapsize
        Unsigned 32-bit integer
    x11.glx.render.PixelMapusv.values  values
        No value
    x11.glx.render.PixelTexGenSGIX.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.PixelTransferf.param  param
        Single-precision floating point
    x11.glx.render.PixelTransferf.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.PixelTransferi.param  param
        Signed 32-bit integer
    x11.glx.render.PixelTransferi.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.PixelZoom.xfactor  xfactor
        Single-precision floating point
    x11.glx.render.PixelZoom.yfactor  yfactor
        Single-precision floating point
    x11.glx.render.PointParameterfEXT.param  param
        Single-precision floating point
    x11.glx.render.PointParameterfEXT.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.PointParameterfvEXT.params  params
        No value
    x11.glx.render.PointParameterfvEXT.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.PointParameteriNV.param  param
        Signed 32-bit integer
    x11.glx.render.PointParameteriNV.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.PointParameterivNV.params  params
        No value
    x11.glx.render.PointParameterivNV.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.PointSize.size  size
        Single-precision floating point
    x11.glx.render.PolygonMode.face  face
        Unsigned 32-bit integer
    x11.glx.render.PolygonMode.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.PolygonOffset.factor  factor
        Single-precision floating point
    x11.glx.render.PolygonOffset.units  units
        Single-precision floating point
    x11.glx.render.PolygonOffsetEXT.bias  bias
        Single-precision floating point
    x11.glx.render.PolygonOffsetEXT.factor  factor
        Single-precision floating point
    x11.glx.render.PolygonStipple.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.PolygonStipple.lsbfirst  lsb first
        Boolean
    x11.glx.render.PolygonStipple.mask  mask
        Unsigned 8-bit integer
    x11.glx.render.PolygonStipple.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.PolygonStipple.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.PolygonStipple.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.PolygonStipple.swapbytes  swap bytes
        Boolean
    x11.glx.render.PrioritizeTextures.n  n
        Unsigned 32-bit integer
    x11.glx.render.PrioritizeTextures.priorities  priorities
        No value
    x11.glx.render.PrioritizeTextures.textures  textures
        No value
    x11.glx.render.ProgramEnvParameter4dvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.ProgramEnvParameter4dvARB.params  params
        No value
    x11.glx.render.ProgramEnvParameter4dvARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.ProgramEnvParameter4fvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.ProgramEnvParameter4fvARB.params  params
        No value
    x11.glx.render.ProgramEnvParameter4fvARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.ProgramLocalParameter4dvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.ProgramLocalParameter4dvARB.params  params
        No value
    x11.glx.render.ProgramLocalParameter4dvARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.ProgramLocalParameter4fvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.ProgramLocalParameter4fvARB.params  params
        No value
    x11.glx.render.ProgramLocalParameter4fvARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.ProgramNamedParameter4dvNV.id  id
        Unsigned 32-bit integer
    x11.glx.render.ProgramNamedParameter4dvNV.len  len
        Unsigned 32-bit integer
    x11.glx.render.ProgramNamedParameter4dvNV.name  name
        Unsigned 8-bit integer
    x11.glx.render.ProgramNamedParameter4dvNV.v  v
        No value
    x11.glx.render.ProgramNamedParameter4fvNV.id  id
        Unsigned 32-bit integer
    x11.glx.render.ProgramNamedParameter4fvNV.len  len
        Unsigned 32-bit integer
    x11.glx.render.ProgramNamedParameter4fvNV.name  name
        Unsigned 8-bit integer
    x11.glx.render.ProgramNamedParameter4fvNV.v  v
        No value
    x11.glx.render.ProgramParameters4dvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.ProgramParameters4dvNV.num  num
        Unsigned 32-bit integer
    x11.glx.render.ProgramParameters4dvNV.params  params
        No value
    x11.glx.render.ProgramParameters4dvNV.target  target
        Unsigned 32-bit integer
    x11.glx.render.ProgramParameters4fvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.ProgramParameters4fvNV.num  num
        Unsigned 32-bit integer
    x11.glx.render.ProgramParameters4fvNV.params  params
        No value
    x11.glx.render.ProgramParameters4fvNV.target  target
        Unsigned 32-bit integer
    x11.glx.render.ProgramStringARB.format  format
        Unsigned 32-bit integer
    x11.glx.render.ProgramStringARB.len  len
        Unsigned 32-bit integer
    x11.glx.render.ProgramStringARB.string  string
        Signed 8-bit integer
    x11.glx.render.ProgramStringARB.target  target
        Unsigned 32-bit integer
    x11.glx.render.PushAttrib.mask  mask
        Unsigned 32-bit integer
    x11.glx.render.PushName.name  name
        Unsigned 32-bit integer
    x11.glx.render.RasterPos2dv.v  v
        No value
    x11.glx.render.RasterPos2fv.v  v
        No value
    x11.glx.render.RasterPos2iv.v  v
        No value
    x11.glx.render.RasterPos2sv.v  v
        No value
    x11.glx.render.RasterPos3dv.v  v
        No value
    x11.glx.render.RasterPos3fv.v  v
        No value
    x11.glx.render.RasterPos3iv.v  v
        No value
    x11.glx.render.RasterPos3sv.v  v
        No value
    x11.glx.render.RasterPos4dv.v  v
        No value
    x11.glx.render.RasterPos4fv.v  v
        No value
    x11.glx.render.RasterPos4iv.v  v
        No value
    x11.glx.render.RasterPos4sv.v  v
        No value
    x11.glx.render.ReadBuffer.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.Rectdv.v1  v1
        No value
    x11.glx.render.Rectdv.v2  v2
        No value
    x11.glx.render.Rectfv.v1  v1
        No value
    x11.glx.render.Rectfv.v2  v2
        No value
    x11.glx.render.Rectiv.v1  v1
        No value
    x11.glx.render.Rectiv.v2  v2
        No value
    x11.glx.render.Rectsv.v1  v1
        No value
    x11.glx.render.Rectsv.v2  v2
        No value
    x11.glx.render.ReferencePlaneSGIX.equation  equation
        No value
    x11.glx.render.RequestResidentProgramsNV.ids  ids
        No value
    x11.glx.render.RequestResidentProgramsNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.ResetHistogram.target  target
        Unsigned 32-bit integer
    x11.glx.render.ResetMinmax.target  target
        Unsigned 32-bit integer
    x11.glx.render.Rotated.angle  angle
        Double-precision floating point
    x11.glx.render.Rotated.x  x
        Double-precision floating point
    x11.glx.render.Rotated.y  y
        Double-precision floating point
    x11.glx.render.Rotated.z  z
        Double-precision floating point
    x11.glx.render.Rotatef.angle  angle
        Single-precision floating point
    x11.glx.render.Rotatef.x  x
        Single-precision floating point
    x11.glx.render.Rotatef.y  y
        Single-precision floating point
    x11.glx.render.Rotatef.z  z
        Single-precision floating point
    x11.glx.render.SampleCoverageARB.invert  invert
        Unsigned 8-bit integer
    x11.glx.render.SampleCoverageARB.value  value
        Single-precision floating point
    x11.glx.render.SampleMaskSGIS.invert  invert
        Unsigned 8-bit integer
    x11.glx.render.SampleMaskSGIS.value  value
        Single-precision floating point
    x11.glx.render.SamplePatternSGIS.pattern  pattern
        Unsigned 32-bit integer
    x11.glx.render.Scaled.x  x
        Double-precision floating point
    x11.glx.render.Scaled.y  y
        Double-precision floating point
    x11.glx.render.Scaled.z  z
        Double-precision floating point
    x11.glx.render.Scalef.x  x
        Single-precision floating point
    x11.glx.render.Scalef.y  y
        Single-precision floating point
    x11.glx.render.Scalef.z  z
        Single-precision floating point
    x11.glx.render.Scissor.height  height
        Unsigned 32-bit integer
    x11.glx.render.Scissor.width  width
        Unsigned 32-bit integer
    x11.glx.render.Scissor.x  x
        Signed 32-bit integer
    x11.glx.render.Scissor.y  y
        Signed 32-bit integer
    x11.glx.render.SecondaryColor3bvEXT.v  v
        Signed 8-bit integer
    x11.glx.render.SecondaryColor3dvEXT.v  v
        No value
    x11.glx.render.SecondaryColor3fvEXT.v  v
        No value
    x11.glx.render.SecondaryColor3ivEXT.v  v
        No value
    x11.glx.render.SecondaryColor3svEXT.v  v
        No value
    x11.glx.render.SecondaryColor3ubvEXT.v  v
        Unsigned 8-bit integer
    x11.glx.render.SecondaryColor3uivEXT.v  v
        No value
    x11.glx.render.SecondaryColor3usvEXT.v  v
        No value
    x11.glx.render.SeparableFilter2D.column  column
        Signed 8-bit integer
    x11.glx.render.SeparableFilter2D.format  format
        Unsigned 32-bit integer
    x11.glx.render.SeparableFilter2D.height  height
        Unsigned 32-bit integer
    x11.glx.render.SeparableFilter2D.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.SeparableFilter2D.row  row
        Signed 8-bit integer
    x11.glx.render.SeparableFilter2D.target  target
        Unsigned 32-bit integer
    x11.glx.render.SeparableFilter2D.type  type
        Unsigned 32-bit integer
    x11.glx.render.SeparableFilter2D.width  width
        Unsigned 32-bit integer
    x11.glx.render.ShadeModel.mode  mode
        Unsigned 32-bit integer
    x11.glx.render.SharpenTexFuncSGIS.n  n
        Unsigned 32-bit integer
    x11.glx.render.SharpenTexFuncSGIS.points  points
        No value
    x11.glx.render.SharpenTexFuncSGIS.target  target
        Unsigned 32-bit integer
    x11.glx.render.StencilFunc.func  func
        Unsigned 32-bit integer
    x11.glx.render.StencilFunc.mask  mask
        Unsigned 32-bit integer
    x11.glx.render.StencilFunc.ref  ref
        Signed 32-bit integer
    x11.glx.render.StencilMask.mask  mask
        Unsigned 32-bit integer
    x11.glx.render.StencilOp.fail  fail
        Unsigned 32-bit integer
    x11.glx.render.StencilOp.zfail  zfail
        Unsigned 32-bit integer
    x11.glx.render.StencilOp.zpass  zpass
        Unsigned 32-bit integer
    x11.glx.render.TexCoord1dv.v  v
        No value
    x11.glx.render.TexCoord1fv.v  v
        No value
    x11.glx.render.TexCoord1iv.v  v
        No value
    x11.glx.render.TexCoord1sv.v  v
        No value
    x11.glx.render.TexCoord2dv.v  v
        No value
    x11.glx.render.TexCoord2fv.v  v
        No value
    x11.glx.render.TexCoord2iv.v  v
        No value
    x11.glx.render.TexCoord2sv.v  v
        No value
    x11.glx.render.TexCoord3dv.v  v
        No value
    x11.glx.render.TexCoord3fv.v  v
        No value
    x11.glx.render.TexCoord3iv.v  v
        No value
    x11.glx.render.TexCoord3sv.v  v
        No value
    x11.glx.render.TexCoord4dv.v  v
        No value
    x11.glx.render.TexCoord4fv.v  v
        No value
    x11.glx.render.TexCoord4iv.v  v
        No value
    x11.glx.render.TexCoord4sv.v  v
        No value
    x11.glx.render.TexEnvf.param  param
        Single-precision floating point
    x11.glx.render.TexEnvf.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexEnvf.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexEnvfv.params  params
        No value
    x11.glx.render.TexEnvfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexEnvfv.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexEnvi.param  param
        Signed 32-bit integer
    x11.glx.render.TexEnvi.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexEnvi.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexEnviv.params  params
        No value
    x11.glx.render.TexEnviv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexEnviv.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexFilterFuncSGIS.filter  filter
        Unsigned 32-bit integer
    x11.glx.render.TexFilterFuncSGIS.n  n
        Unsigned 32-bit integer
    x11.glx.render.TexFilterFuncSGIS.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexFilterFuncSGIS.weights  weights
        No value
    x11.glx.render.TexGend.coord  coord
        Unsigned 32-bit integer
    x11.glx.render.TexGend.param  param
        Double-precision floating point
    x11.glx.render.TexGend.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexGendv.coord  coord
        Unsigned 32-bit integer
    x11.glx.render.TexGendv.params  params
        No value
    x11.glx.render.TexGendv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexGenf.coord  coord
        Unsigned 32-bit integer
    x11.glx.render.TexGenf.param  param
        Single-precision floating point
    x11.glx.render.TexGenf.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexGenfv.coord  coord
        Unsigned 32-bit integer
    x11.glx.render.TexGenfv.params  params
        No value
    x11.glx.render.TexGenfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexGeni.coord  coord
        Unsigned 32-bit integer
    x11.glx.render.TexGeni.param  param
        Signed 32-bit integer
    x11.glx.render.TexGeni.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexGeniv.coord  coord
        Unsigned 32-bit integer
    x11.glx.render.TexGeniv.params  params
        No value
    x11.glx.render.TexGeniv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexImage1D.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.TexImage1D.border  border
        Signed 32-bit integer
    x11.glx.render.TexImage1D.format  format
        Unsigned 32-bit integer
    x11.glx.render.TexImage1D.internalformat  internalformat
        Signed 32-bit integer
    x11.glx.render.TexImage1D.level  level
        Signed 32-bit integer
    x11.glx.render.TexImage1D.lsbfirst  lsb first
        Boolean
    x11.glx.render.TexImage1D.pixels  pixels
        Signed 8-bit integer
    x11.glx.render.TexImage1D.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.TexImage1D.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.TexImage1D.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.TexImage1D.swapbytes  swap bytes
        Boolean
    x11.glx.render.TexImage1D.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexImage1D.type  type
        Unsigned 32-bit integer
    x11.glx.render.TexImage1D.width  width
        Unsigned 32-bit integer
    x11.glx.render.TexImage2D.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.TexImage2D.border  border
        Signed 32-bit integer
    x11.glx.render.TexImage2D.format  format
        Unsigned 32-bit integer
    x11.glx.render.TexImage2D.height  height
        Unsigned 32-bit integer
    x11.glx.render.TexImage2D.internalformat  internalformat
        Signed 32-bit integer
    x11.glx.render.TexImage2D.level  level
        Signed 32-bit integer
    x11.glx.render.TexImage2D.lsbfirst  lsb first
        Boolean
    x11.glx.render.TexImage2D.pixels  pixels
        Signed 8-bit integer
    x11.glx.render.TexImage2D.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.TexImage2D.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.TexImage2D.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.TexImage2D.swapbytes  swap bytes
        Boolean
    x11.glx.render.TexImage2D.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexImage2D.type  type
        Unsigned 32-bit integer
    x11.glx.render.TexImage2D.width  width
        Unsigned 32-bit integer
    x11.glx.render.TexImage3D.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.TexImage3D.border  border
        Signed 32-bit integer
    x11.glx.render.TexImage3D.depth  depth
        Unsigned 32-bit integer
    x11.glx.render.TexImage3D.format  format
        Unsigned 32-bit integer
    x11.glx.render.TexImage3D.height  height
        Unsigned 32-bit integer
    x11.glx.render.TexImage3D.internalformat  internalformat
        Signed 32-bit integer
    x11.glx.render.TexImage3D.level  level
        Signed 32-bit integer
    x11.glx.render.TexImage3D.lsbfirst  lsb first
        Boolean
    x11.glx.render.TexImage3D.pixels  pixels
        Signed 8-bit integer
    x11.glx.render.TexImage3D.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.TexImage3D.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.TexImage3D.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.TexImage3D.swapbytes  swap bytes
        Boolean
    x11.glx.render.TexImage3D.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexImage3D.type  type
        Unsigned 32-bit integer
    x11.glx.render.TexImage3D.width  width
        Unsigned 32-bit integer
    x11.glx.render.TexImage4DSGIS.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.TexImage4DSGIS.border  border
        Signed 32-bit integer
    x11.glx.render.TexImage4DSGIS.depth  depth
        Unsigned 32-bit integer
    x11.glx.render.TexImage4DSGIS.format  format
        Unsigned 32-bit integer
    x11.glx.render.TexImage4DSGIS.height  height
        Unsigned 32-bit integer
    x11.glx.render.TexImage4DSGIS.internalformat  internalformat
        Unsigned 32-bit integer
    x11.glx.render.TexImage4DSGIS.level  level
        Signed 32-bit integer
    x11.glx.render.TexImage4DSGIS.lsbfirst  lsb first
        Boolean
    x11.glx.render.TexImage4DSGIS.pixels  pixels
        Signed 8-bit integer
    x11.glx.render.TexImage4DSGIS.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.TexImage4DSGIS.size4d  size4d
        Unsigned 32-bit integer
    x11.glx.render.TexImage4DSGIS.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.TexImage4DSGIS.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.TexImage4DSGIS.swapbytes  swap bytes
        Boolean
    x11.glx.render.TexImage4DSGIS.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexImage4DSGIS.type  type
        Unsigned 32-bit integer
    x11.glx.render.TexImage4DSGIS.width  width
        Unsigned 32-bit integer
    x11.glx.render.TexParameterf.param  param
        Single-precision floating point
    x11.glx.render.TexParameterf.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexParameterf.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexParameterfv.params  params
        No value
    x11.glx.render.TexParameterfv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexParameterfv.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexParameteri.param  param
        Signed 32-bit integer
    x11.glx.render.TexParameteri.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexParameteri.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexParameteriv.params  params
        No value
    x11.glx.render.TexParameteriv.pname  pname
        Unsigned 32-bit integer
    x11.glx.render.TexParameteriv.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage1D.UNUSED  UNUSED
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage1D.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage1D.format  format
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage1D.level  level
        Signed 32-bit integer
    x11.glx.render.TexSubImage1D.lsbfirst  lsb first
        Boolean
    x11.glx.render.TexSubImage1D.pixels  pixels
        Signed 8-bit integer
    x11.glx.render.TexSubImage1D.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage1D.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage1D.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage1D.swapbytes  swap bytes
        Boolean
    x11.glx.render.TexSubImage1D.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage1D.type  type
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage1D.width  width
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage1D.xoffset  xoffset
        Signed 32-bit integer
    x11.glx.render.TexSubImage2D.UNUSED  UNUSED
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage2D.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage2D.format  format
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage2D.height  height
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage2D.level  level
        Signed 32-bit integer
    x11.glx.render.TexSubImage2D.lsbfirst  lsb first
        Boolean
    x11.glx.render.TexSubImage2D.pixels  pixels
        Signed 8-bit integer
    x11.glx.render.TexSubImage2D.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage2D.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage2D.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage2D.swapbytes  swap bytes
        Boolean
    x11.glx.render.TexSubImage2D.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage2D.type  type
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage2D.width  width
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage2D.xoffset  xoffset
        Signed 32-bit integer
    x11.glx.render.TexSubImage2D.yoffset  yoffset
        Signed 32-bit integer
    x11.glx.render.TexSubImage3D.UNUSED  UNUSED
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage3D.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage3D.depth  depth
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage3D.format  format
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage3D.height  height
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage3D.level  level
        Signed 32-bit integer
    x11.glx.render.TexSubImage3D.lsbfirst  lsb first
        Boolean
    x11.glx.render.TexSubImage3D.pixels  pixels
        Signed 8-bit integer
    x11.glx.render.TexSubImage3D.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage3D.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage3D.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage3D.swapbytes  swap bytes
        Boolean
    x11.glx.render.TexSubImage3D.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage3D.type  type
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage3D.width  width
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage3D.xoffset  xoffset
        Signed 32-bit integer
    x11.glx.render.TexSubImage3D.yoffset  yoffset
        Signed 32-bit integer
    x11.glx.render.TexSubImage3D.zoffset  zoffset
        Signed 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.UNUSED  UNUSED
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.alignment  alignment
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.depth  depth
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.format  format
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.height  height
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.level  level
        Signed 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.lsbfirst  lsb first
        Boolean
    x11.glx.render.TexSubImage4DSGIS.pixels  pixels
        Signed 8-bit integer
    x11.glx.render.TexSubImage4DSGIS.rowlength  row length
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.size4d  size4d
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.skippixels  skip pixels
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.skiprows  skip rows
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.swapbytes  swap bytes
        Boolean
    x11.glx.render.TexSubImage4DSGIS.target  target
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.type  type
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.width  width
        Unsigned 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.woffset  woffset
        Signed 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.xoffset  xoffset
        Signed 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.yoffset  yoffset
        Signed 32-bit integer
    x11.glx.render.TexSubImage4DSGIS.zoffset  zoffset
        Signed 32-bit integer
    x11.glx.render.TextureColorMaskSGIS.alpha  alpha
        Unsigned 8-bit integer
    x11.glx.render.TextureColorMaskSGIS.blue  blue
        Unsigned 8-bit integer
    x11.glx.render.TextureColorMaskSGIS.green  green
        Unsigned 8-bit integer
    x11.glx.render.TextureColorMaskSGIS.red  red
        Unsigned 8-bit integer
    x11.glx.render.TrackMatrixNV.address  address
        Unsigned 32-bit integer
    x11.glx.render.TrackMatrixNV.matrix  matrix
        Unsigned 32-bit integer
    x11.glx.render.TrackMatrixNV.target  target
        Unsigned 32-bit integer
    x11.glx.render.TrackMatrixNV.transform  transform
        Unsigned 32-bit integer
    x11.glx.render.Translated.x  x
        Double-precision floating point
    x11.glx.render.Translated.y  y
        Double-precision floating point
    x11.glx.render.Translated.z  z
        Double-precision floating point
    x11.glx.render.Translatef.x  x
        Single-precision floating point
    x11.glx.render.Translatef.y  y
        Single-precision floating point
    x11.glx.render.Translatef.z  z
        Single-precision floating point
    x11.glx.render.Vertex2dv.v  v
        No value
    x11.glx.render.Vertex2fv.v  v
        No value
    x11.glx.render.Vertex2iv.v  v
        No value
    x11.glx.render.Vertex2sv.v  v
        No value
    x11.glx.render.Vertex3dv.v  v
        No value
    x11.glx.render.Vertex3fv.v  v
        No value
    x11.glx.render.Vertex3iv.v  v
        No value
    x11.glx.render.Vertex3sv.v  v
        No value
    x11.glx.render.Vertex4dv.v  v
        No value
    x11.glx.render.Vertex4fv.v  v
        No value
    x11.glx.render.Vertex4iv.v  v
        No value
    x11.glx.render.Vertex4sv.v  v
        No value
    x11.glx.render.VertexAttrib1dvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib1dvARB.v  v
        No value
    x11.glx.render.VertexAttrib1dvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib1dvNV.v  v
        No value
    x11.glx.render.VertexAttrib1fvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib1fvARB.v  v
        No value
    x11.glx.render.VertexAttrib1fvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib1fvNV.v  v
        No value
    x11.glx.render.VertexAttrib1svARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib1svARB.v  v
        No value
    x11.glx.render.VertexAttrib1svNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib1svNV.v  v
        No value
    x11.glx.render.VertexAttrib2dvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib2dvARB.v  v
        No value
    x11.glx.render.VertexAttrib2dvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib2dvNV.v  v
        No value
    x11.glx.render.VertexAttrib2fvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib2fvARB.v  v
        No value
    x11.glx.render.VertexAttrib2fvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib2fvNV.v  v
        No value
    x11.glx.render.VertexAttrib2svARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib2svARB.v  v
        No value
    x11.glx.render.VertexAttrib2svNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib2svNV.v  v
        No value
    x11.glx.render.VertexAttrib3dvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib3dvARB.v  v
        No value
    x11.glx.render.VertexAttrib3dvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib3dvNV.v  v
        No value
    x11.glx.render.VertexAttrib3fvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib3fvARB.v  v
        No value
    x11.glx.render.VertexAttrib3fvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib3fvNV.v  v
        No value
    x11.glx.render.VertexAttrib3svARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib3svARB.v  v
        No value
    x11.glx.render.VertexAttrib3svNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib3svNV.v  v
        No value
    x11.glx.render.VertexAttrib4NbvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4NbvARB.v  v
        Signed 8-bit integer
    x11.glx.render.VertexAttrib4NivARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4NivARB.v  v
        No value
    x11.glx.render.VertexAttrib4NsvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4NsvARB.v  v
        No value
    x11.glx.render.VertexAttrib4NubvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4NubvARB.v  v
        Unsigned 8-bit integer
    x11.glx.render.VertexAttrib4NuivARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4NuivARB.v  v
        No value
    x11.glx.render.VertexAttrib4NusvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4NusvARB.v  v
        No value
    x11.glx.render.VertexAttrib4bvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4bvARB.v  v
        Signed 8-bit integer
    x11.glx.render.VertexAttrib4dvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4dvARB.v  v
        No value
    x11.glx.render.VertexAttrib4dvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4dvNV.v  v
        No value
    x11.glx.render.VertexAttrib4fvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4fvARB.v  v
        No value
    x11.glx.render.VertexAttrib4fvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4fvNV.v  v
        No value
    x11.glx.render.VertexAttrib4ivARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4ivARB.v  v
        No value
    x11.glx.render.VertexAttrib4svARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4svARB.v  v
        No value
    x11.glx.render.VertexAttrib4svNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4svNV.v  v
        No value
    x11.glx.render.VertexAttrib4ubvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4ubvARB.v  v
        Unsigned 8-bit integer
    x11.glx.render.VertexAttrib4ubvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4ubvNV.v  v
        Unsigned 8-bit integer
    x11.glx.render.VertexAttrib4uivARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4uivARB.v  v
        No value
    x11.glx.render.VertexAttrib4usvARB.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttrib4usvARB.v  v
        No value
    x11.glx.render.VertexAttribs1dvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs1dvNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs1dvNV.v  v
        No value
    x11.glx.render.VertexAttribs1fvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs1fvNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs1fvNV.v  v
        No value
    x11.glx.render.VertexAttribs1svNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs1svNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs1svNV.v  v
        No value
    x11.glx.render.VertexAttribs2dvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs2dvNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs2dvNV.v  v
        No value
    x11.glx.render.VertexAttribs2fvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs2fvNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs2fvNV.v  v
        No value
    x11.glx.render.VertexAttribs2svNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs2svNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs2svNV.v  v
        No value
    x11.glx.render.VertexAttribs3dvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs3dvNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs3dvNV.v  v
        No value
    x11.glx.render.VertexAttribs3fvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs3fvNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs3fvNV.v  v
        No value
    x11.glx.render.VertexAttribs3svNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs3svNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs3svNV.v  v
        No value
    x11.glx.render.VertexAttribs4dvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs4dvNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs4dvNV.v  v
        No value
    x11.glx.render.VertexAttribs4fvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs4fvNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs4fvNV.v  v
        No value
    x11.glx.render.VertexAttribs4svNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs4svNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs4svNV.v  v
        No value
    x11.glx.render.VertexAttribs4ubvNV.index  index
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs4ubvNV.n  n
        Unsigned 32-bit integer
    x11.glx.render.VertexAttribs4ubvNV.v  v
        Unsigned 8-bit integer
    x11.glx.render.VertexWeightfvEXT.weight  weight
        No value
    x11.glx.render.Viewport.height  height
        Unsigned 32-bit integer
    x11.glx.render.Viewport.width  width
        Unsigned 32-bit integer
    x11.glx.render.Viewport.x  x
        Signed 32-bit integer
    x11.glx.render.Viewport.y  y
        Signed 32-bit integer
    x11.glx.render.WindowPos3fvMESA.v  v
        No value
    x11.glx.render.op  render op
        Unsigned 16-bit integer
        render op
    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
    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.mapping-request  mapping-request
        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.randr.AddOutputMode.mode  mode
        Unsigned 32-bit integer
    x11.randr.AddOutputMode.output  output
        Unsigned 32-bit integer
    x11.randr.ChangeOutputProperty.data  data
        Byte array
    x11.randr.ChangeOutputProperty.format  format
        Unsigned 8-bit integer
    x11.randr.ChangeOutputProperty.mode  mode
        Unsigned 8-bit integer
    x11.randr.ChangeOutputProperty.num_units  num_units
        Unsigned 32-bit integer
    x11.randr.ChangeOutputProperty.output  output
        Unsigned 32-bit integer
    x11.randr.ChangeOutputProperty.property  property
        Unsigned 32-bit integer
    x11.randr.ChangeOutputProperty.type  type
        Unsigned 32-bit integer
    x11.randr.ConfigureOutputProperty.output  output
        Unsigned 32-bit integer
    x11.randr.ConfigureOutputProperty.pending  pending
        Boolean
    x11.randr.ConfigureOutputProperty.property  property
        Unsigned 32-bit integer
    x11.randr.ConfigureOutputProperty.range  range
        Boolean
    x11.randr.ConfigureOutputProperty.values  values
        No value
    x11.randr.CreateMode.mode_info  mode_info
        No value
    x11.randr.CreateMode.name  name
        String
    x11.randr.CreateMode.reply.mode  mode
        Unsigned 32-bit integer
    x11.randr.CreateMode.window  window
        Unsigned 32-bit integer
    x11.randr.DeleteOutputMode.mode  mode
        Unsigned 32-bit integer
    x11.randr.DeleteOutputMode.output  output
        Unsigned 32-bit integer
    x11.randr.DeleteOutputProperty.output  output
        Unsigned 32-bit integer
    x11.randr.DeleteOutputProperty.property  property
        Unsigned 32-bit integer
    x11.randr.DestroyMode.mode  mode
        Unsigned 32-bit integer
    x11.randr.GetCrtcGamma.crtc  crtc
        Unsigned 32-bit integer
    x11.randr.GetCrtcGamma.reply.blue  blue
        No value
    x11.randr.GetCrtcGamma.reply.green  green
        No value
    x11.randr.GetCrtcGamma.reply.red  red
        No value
    x11.randr.GetCrtcGamma.reply.size  size
        Unsigned 16-bit integer
    x11.randr.GetCrtcGammaSize.crtc  crtc
        Unsigned 32-bit integer
    x11.randr.GetCrtcGammaSize.reply.size  size
        Unsigned 16-bit integer
    x11.randr.GetCrtcInfo.config_timestamp  config_timestamp
        Unsigned 32-bit integer
    x11.randr.GetCrtcInfo.crtc  crtc
        Unsigned 32-bit integer
    x11.randr.GetCrtcInfo.reply.height  height
        Unsigned 16-bit integer
    x11.randr.GetCrtcInfo.reply.mode  mode
        Unsigned 32-bit integer
    x11.randr.GetCrtcInfo.reply.num_outputs  num_outputs
        Unsigned 16-bit integer
    x11.randr.GetCrtcInfo.reply.num_possible_outputs  num_possible_outputs
        Unsigned 16-bit integer
    x11.randr.GetCrtcInfo.reply.outputs  outputs
        No value
    x11.randr.GetCrtcInfo.reply.possible  possible
        No value
    x11.randr.GetCrtcInfo.reply.rotation  rotation
        Unsigned 16-bit integer
    x11.randr.GetCrtcInfo.reply.rotation.Reflect_X  Reflect_X
        Boolean
    x11.randr.GetCrtcInfo.reply.rotation.Reflect_Y  Reflect_Y
        Boolean
    x11.randr.GetCrtcInfo.reply.rotation.Rotate_0  Rotate_0
        Boolean
    x11.randr.GetCrtcInfo.reply.rotation.Rotate_180  Rotate_180
        Boolean
    x11.randr.GetCrtcInfo.reply.rotation.Rotate_270  Rotate_270
        Boolean
    x11.randr.GetCrtcInfo.reply.rotation.Rotate_90  Rotate_90
        Boolean
    x11.randr.GetCrtcInfo.reply.rotations  rotations
        Unsigned 16-bit integer
    x11.randr.GetCrtcInfo.reply.rotations.Reflect_X  Reflect_X
        Boolean
    x11.randr.GetCrtcInfo.reply.rotations.Reflect_Y  Reflect_Y
        Boolean
    x11.randr.GetCrtcInfo.reply.rotations.Rotate_0  Rotate_0
        Boolean
    x11.randr.GetCrtcInfo.reply.rotations.Rotate_180  Rotate_180
        Boolean
    x11.randr.GetCrtcInfo.reply.rotations.Rotate_270  Rotate_270
        Boolean
    x11.randr.GetCrtcInfo.reply.rotations.Rotate_90  Rotate_90
        Boolean
    x11.randr.GetCrtcInfo.reply.status  status
        Unsigned 8-bit integer
    x11.randr.GetCrtcInfo.reply.timestamp  timestamp
        Unsigned 32-bit integer
    x11.randr.GetCrtcInfo.reply.width  width
        Unsigned 16-bit integer
    x11.randr.GetCrtcInfo.reply.x  x
        Signed 16-bit integer
    x11.randr.GetCrtcInfo.reply.y  y
        Signed 16-bit integer
    x11.randr.GetCrtcTransform.crtc  crtc
        Unsigned 32-bit integer
    x11.randr.GetCrtcTransform.reply.current_filter_name  current_filter_name
        String
    x11.randr.GetCrtcTransform.reply.current_len  current_len
        Unsigned 16-bit integer
    x11.randr.GetCrtcTransform.reply.current_nparams  current_nparams
        Unsigned 16-bit integer
    x11.randr.GetCrtcTransform.reply.current_params  current_params
        No value
    x11.randr.GetCrtcTransform.reply.current_transform  current_transform
        No value
    x11.randr.GetCrtcTransform.reply.has_transforms  has_transforms
        Boolean
    x11.randr.GetCrtcTransform.reply.pending_filter_name  pending_filter_name
        String
    x11.randr.GetCrtcTransform.reply.pending_len  pending_len
        Unsigned 16-bit integer
    x11.randr.GetCrtcTransform.reply.pending_nparams  pending_nparams
        Unsigned 16-bit integer
    x11.randr.GetCrtcTransform.reply.pending_params  pending_params
        No value
    x11.randr.GetCrtcTransform.reply.pending_transform  pending_transform
        No value
    x11.randr.GetOutputInfo.config_timestamp  config_timestamp
        Unsigned 32-bit integer
    x11.randr.GetOutputInfo.output  output
        Unsigned 32-bit integer
    x11.randr.GetOutputInfo.reply.clones  clones
        No value
    x11.randr.GetOutputInfo.reply.connection  connection
        Unsigned 8-bit integer
    x11.randr.GetOutputInfo.reply.crtc  crtc
        Unsigned 32-bit integer
    x11.randr.GetOutputInfo.reply.crtcs  crtcs
        No value
    x11.randr.GetOutputInfo.reply.mm_height  mm_height
        Unsigned 32-bit integer
    x11.randr.GetOutputInfo.reply.mm_width  mm_width
        Unsigned 32-bit integer
    x11.randr.GetOutputInfo.reply.modes  modes
        No value
    x11.randr.GetOutputInfo.reply.name  name
        Byte array
    x11.randr.GetOutputInfo.reply.name_len  name_len
        Unsigned 16-bit integer
    x11.randr.GetOutputInfo.reply.num_clones  num_clones
        Unsigned 16-bit integer
    x11.randr.GetOutputInfo.reply.num_crtcs  num_crtcs
        Unsigned 16-bit integer
    x11.randr.GetOutputInfo.reply.num_modes  num_modes
        Unsigned 16-bit integer
    x11.randr.GetOutputInfo.reply.num_preferred  num_preferred
        Unsigned 16-bit integer
    x11.randr.GetOutputInfo.reply.status  status
        Unsigned 8-bit integer
    x11.randr.GetOutputInfo.reply.subpixel_order  subpixel_order
        Unsigned 8-bit integer
    x11.randr.GetOutputInfo.reply.timestamp  timestamp
        Unsigned 32-bit integer
    x11.randr.GetOutputPrimary.reply.output  output
        Unsigned 32-bit integer
    x11.randr.GetOutputPrimary.window  window
        Unsigned 32-bit integer
    x11.randr.GetOutputProperty.delete  delete
        Boolean
    x11.randr.GetOutputProperty.long_length  long_length
        Unsigned 32-bit integer
    x11.randr.GetOutputProperty.long_offset  long_offset
        Unsigned 32-bit integer
    x11.randr.GetOutputProperty.output  output
        Unsigned 32-bit integer
    x11.randr.GetOutputProperty.pending  pending
        Boolean
    x11.randr.GetOutputProperty.property  property
        Unsigned 32-bit integer
    x11.randr.GetOutputProperty.reply.bytes_after  bytes_after
        Unsigned 32-bit integer
    x11.randr.GetOutputProperty.reply.data  data
        Byte array
    x11.randr.GetOutputProperty.reply.format  format
        Unsigned 8-bit integer
    x11.randr.GetOutputProperty.reply.num_items  num_items
        Unsigned 32-bit integer
    x11.randr.GetOutputProperty.reply.type  type
        Unsigned 32-bit integer
    x11.randr.GetOutputProperty.type  type
        Unsigned 32-bit integer
    x11.randr.GetPanning.crtc  crtc
        Unsigned 32-bit integer
    x11.randr.GetPanning.reply.border_bottom  border_bottom
        Signed 16-bit integer
    x11.randr.GetPanning.reply.border_left  border_left
        Signed 16-bit integer
    x11.randr.GetPanning.reply.border_right  border_right
        Signed 16-bit integer
    x11.randr.GetPanning.reply.border_top  border_top
        Signed 16-bit integer
    x11.randr.GetPanning.reply.height  height
        Unsigned 16-bit integer
    x11.randr.GetPanning.reply.left  left
        Unsigned 16-bit integer
    x11.randr.GetPanning.reply.status  status
        Unsigned 8-bit integer
    x11.randr.GetPanning.reply.timestamp  timestamp
        Unsigned 32-bit integer
    x11.randr.GetPanning.reply.top  top
        Unsigned 16-bit integer
    x11.randr.GetPanning.reply.track_height  track_height
        Unsigned 16-bit integer
    x11.randr.GetPanning.reply.track_left  track_left
        Unsigned 16-bit integer
    x11.randr.GetPanning.reply.track_top  track_top
        Unsigned 16-bit integer
    x11.randr.GetPanning.reply.track_width  track_width
        Unsigned 16-bit integer
    x11.randr.GetPanning.reply.width  width
        Unsigned 16-bit integer
    x11.randr.GetScreenInfo.reply.config_timestamp  config_timestamp
        Unsigned 32-bit integer
    x11.randr.GetScreenInfo.reply.nInfo  nInfo
        Unsigned 16-bit integer
    x11.randr.GetScreenInfo.reply.nSizes  nSizes
        Unsigned 16-bit integer
    x11.randr.GetScreenInfo.reply.rate  rate
        Unsigned 16-bit integer
    x11.randr.GetScreenInfo.reply.rates  rates
        No value
    x11.randr.GetScreenInfo.reply.root  root
        Unsigned 32-bit integer
    x11.randr.GetScreenInfo.reply.rotation  rotation
        Unsigned 16-bit integer
    x11.randr.GetScreenInfo.reply.rotation.Reflect_X  Reflect_X
        Boolean
    x11.randr.GetScreenInfo.reply.rotation.Reflect_Y  Reflect_Y
        Boolean
    x11.randr.GetScreenInfo.reply.rotation.Rotate_0  Rotate_0
        Boolean
    x11.randr.GetScreenInfo.reply.rotation.Rotate_180  Rotate_180
        Boolean
    x11.randr.GetScreenInfo.reply.rotation.Rotate_270  Rotate_270
        Boolean
    x11.randr.GetScreenInfo.reply.rotation.Rotate_90  Rotate_90
        Boolean
    x11.randr.GetScreenInfo.reply.rotations  rotations
        Unsigned 8-bit integer
    x11.randr.GetScreenInfo.reply.rotations.Reflect_X  Reflect_X
        Boolean
    x11.randr.GetScreenInfo.reply.rotations.Reflect_Y  Reflect_Y
        Boolean
    x11.randr.GetScreenInfo.reply.rotations.Rotate_0  Rotate_0
        Boolean
    x11.randr.GetScreenInfo.reply.rotations.Rotate_180  Rotate_180
        Boolean
    x11.randr.GetScreenInfo.reply.rotations.Rotate_270  Rotate_270
        Boolean
    x11.randr.GetScreenInfo.reply.rotations.Rotate_90  Rotate_90
        Boolean
    x11.randr.GetScreenInfo.reply.sizeID  sizeID
        Unsigned 16-bit integer
    x11.randr.GetScreenInfo.reply.sizes  sizes
        No value
    x11.randr.GetScreenInfo.reply.timestamp  timestamp
        Unsigned 32-bit integer
    x11.randr.GetScreenInfo.window  window
        Unsigned 32-bit integer
    x11.randr.GetScreenResources.reply.config_timestamp  config_timestamp
        Unsigned 32-bit integer
    x11.randr.GetScreenResources.reply.crtcs  crtcs
        No value
    x11.randr.GetScreenResources.reply.modes  modes
        No value
    x11.randr.GetScreenResources.reply.names  names
        Byte array
    x11.randr.GetScreenResources.reply.names_len  names_len
        Unsigned 16-bit integer
    x11.randr.GetScreenResources.reply.num_crtcs  num_crtcs
        Unsigned 16-bit integer
    x11.randr.GetScreenResources.reply.num_modes  num_modes
        Unsigned 16-bit integer
    x11.randr.GetScreenResources.reply.num_outputs  num_outputs
        Unsigned 16-bit integer
    x11.randr.GetScreenResources.reply.outputs  outputs
        No value
    x11.randr.GetScreenResources.reply.timestamp  timestamp
        Unsigned 32-bit integer
    x11.randr.GetScreenResources.window  window
        Unsigned 32-bit integer
    x11.randr.GetScreenResourcesCurrent.reply.config_timestamp  config_timestamp
        Unsigned 32-bit integer
    x11.randr.GetScreenResourcesCurrent.reply.crtcs  crtcs
        No value
    x11.randr.GetScreenResourcesCurrent.reply.modes  modes
        No value
    x11.randr.GetScreenResourcesCurrent.reply.names  names
        Byte array
    x11.randr.GetScreenResourcesCurrent.reply.names_len  names_len
        Unsigned 16-bit integer
    x11.randr.GetScreenResourcesCurrent.reply.num_crtcs  num_crtcs
        Unsigned 16-bit integer
    x11.randr.GetScreenResourcesCurrent.reply.num_modes  num_modes
        Unsigned 16-bit integer
    x11.randr.GetScreenResourcesCurrent.reply.num_outputs  num_outputs
        Unsigned 16-bit integer
    x11.randr.GetScreenResourcesCurrent.reply.outputs  outputs
        No value
    x11.randr.GetScreenResourcesCurrent.reply.timestamp  timestamp
        Unsigned 32-bit integer
    x11.randr.GetScreenResourcesCurrent.window  window
        Unsigned 32-bit integer
    x11.randr.GetScreenSizeRange.reply.max_height  max_height
        Unsigned 16-bit integer
    x11.randr.GetScreenSizeRange.reply.max_width  max_width
        Unsigned 16-bit integer
    x11.randr.GetScreenSizeRange.reply.min_height  min_height
        Unsigned 16-bit integer
    x11.randr.GetScreenSizeRange.reply.min_width  min_width
        Unsigned 16-bit integer
    x11.randr.GetScreenSizeRange.window  window
        Unsigned 32-bit integer
    x11.randr.ListOutputProperties.output  output
        Unsigned 32-bit integer
    x11.randr.ListOutputProperties.reply.atoms  atoms
        No value
    x11.randr.ListOutputProperties.reply.num_atoms  num_atoms
        Unsigned 16-bit integer
    x11.randr.Notify.subCode  subCode
        Unsigned 8-bit integer
    x11.randr.Notify.u  u
        No value
    x11.randr.QueryOutputProperty.output  output
        Unsigned 32-bit integer
    x11.randr.QueryOutputProperty.property  property
        Unsigned 32-bit integer
    x11.randr.QueryOutputProperty.reply.immutable  immutable
        Boolean
    x11.randr.QueryOutputProperty.reply.pending  pending
        Boolean
    x11.randr.QueryOutputProperty.reply.range  range
        Boolean
    x11.randr.QueryOutputProperty.reply.validValues  validValues
        No value
    x11.randr.QueryVersion.major_version  major_version
        Unsigned 32-bit integer
    x11.randr.QueryVersion.minor_version  minor_version
        Unsigned 32-bit integer
    x11.randr.QueryVersion.reply.major_version  major_version
        Unsigned 32-bit integer
    x11.randr.QueryVersion.reply.minor_version  minor_version
        Unsigned 32-bit integer
    x11.randr.ScreenChangeNotify.config_timestamp  config_timestamp
        Unsigned 32-bit integer
    x11.randr.ScreenChangeNotify.height  height
        Unsigned 16-bit integer
    x11.randr.ScreenChangeNotify.mheight  mheight
        Unsigned 16-bit integer
    x11.randr.ScreenChangeNotify.mwidth  mwidth
        Unsigned 16-bit integer
    x11.randr.ScreenChangeNotify.request_window  request_window
        Unsigned 32-bit integer
    x11.randr.ScreenChangeNotify.root  root
        Unsigned 32-bit integer
    x11.randr.ScreenChangeNotify.rotation  rotation
        Unsigned 8-bit integer
    x11.randr.ScreenChangeNotify.rotation.Reflect_X  Reflect_X
        Boolean
    x11.randr.ScreenChangeNotify.rotation.Reflect_Y  Reflect_Y
        Boolean
    x11.randr.ScreenChangeNotify.rotation.Rotate_0  Rotate_0
        Boolean
    x11.randr.ScreenChangeNotify.rotation.Rotate_180  Rotate_180
        Boolean
    x11.randr.ScreenChangeNotify.rotation.Rotate_270  Rotate_270
        Boolean
    x11.randr.ScreenChangeNotify.rotation.Rotate_90  Rotate_90
        Boolean
    x11.randr.ScreenChangeNotify.sizeID  sizeID
        Unsigned 16-bit integer
    x11.randr.ScreenChangeNotify.subpixel_order  subpixel_order
        Unsigned 16-bit integer
    x11.randr.ScreenChangeNotify.timestamp  timestamp
        Unsigned 32-bit integer
    x11.randr.ScreenChangeNotify.width  width
        Unsigned 16-bit integer
    x11.randr.SelectInput.enable  enable
        Unsigned 16-bit integer
    x11.randr.SelectInput.enable.CrtcChange  CrtcChange
        Boolean
    x11.randr.SelectInput.enable.OutputChange  OutputChange
        Boolean
    x11.randr.SelectInput.enable.OutputProperty  OutputProperty
        Boolean
    x11.randr.SelectInput.enable.ScreenChange  ScreenChange
        Boolean
    x11.randr.SelectInput.window  window
        Unsigned 32-bit integer
    x11.randr.SetCrtcConfig.config_timestamp  config_timestamp
        Unsigned 32-bit integer
    x11.randr.SetCrtcConfig.crtc  crtc
        Unsigned 32-bit integer
    x11.randr.SetCrtcConfig.mode  mode
        Unsigned 32-bit integer
    x11.randr.SetCrtcConfig.outputs  outputs
        No value
    x11.randr.SetCrtcConfig.reply.status  status
        Unsigned 8-bit integer
    x11.randr.SetCrtcConfig.reply.timestamp  timestamp
        Unsigned 32-bit integer
    x11.randr.SetCrtcConfig.rotation  rotation
        Unsigned 16-bit integer
    x11.randr.SetCrtcConfig.rotation.Reflect_X  Reflect_X
        Boolean
    x11.randr.SetCrtcConfig.rotation.Reflect_Y  Reflect_Y
        Boolean
    x11.randr.SetCrtcConfig.rotation.Rotate_0  Rotate_0
        Boolean
    x11.randr.SetCrtcConfig.rotation.Rotate_180  Rotate_180
        Boolean
    x11.randr.SetCrtcConfig.rotation.Rotate_270  Rotate_270
        Boolean
    x11.randr.SetCrtcConfig.rotation.Rotate_90  Rotate_90
        Boolean
    x11.randr.SetCrtcConfig.timestamp  timestamp
        Unsigned 32-bit integer
    x11.randr.SetCrtcConfig.x  x
        Signed 16-bit integer
    x11.randr.SetCrtcConfig.y  y
        Signed 16-bit integer
    x11.randr.SetCrtcGamma.blue  blue
        No value
    x11.randr.SetCrtcGamma.crtc  crtc
        Unsigned 32-bit integer
    x11.randr.SetCrtcGamma.green  green
        No value
    x11.randr.SetCrtcGamma.red  red
        No value
    x11.randr.SetCrtcGamma.size  size
        Unsigned 16-bit integer
    x11.randr.SetCrtcTransform.crtc  crtc
        Unsigned 32-bit integer
    x11.randr.SetCrtcTransform.filter_len  filter_len
        Unsigned 16-bit integer
    x11.randr.SetCrtcTransform.filter_name  filter_name
        String
    x11.randr.SetCrtcTransform.filter_params  filter_params
        No value
    x11.randr.SetCrtcTransform.transform  transform
        No value
    x11.randr.SetOutputPrimary.output  output
        Unsigned 32-bit integer
    x11.randr.SetOutputPrimary.window  window
        Unsigned 32-bit integer
    x11.randr.SetPanning.border_bottom  border_bottom
        Signed 16-bit integer
    x11.randr.SetPanning.border_left  border_left
        Signed 16-bit integer
    x11.randr.SetPanning.border_right  border_right
        Signed 16-bit integer
    x11.randr.SetPanning.border_top  border_top
        Signed 16-bit integer
    x11.randr.SetPanning.crtc  crtc
        Unsigned 32-bit integer
    x11.randr.SetPanning.height  height
        Unsigned 16-bit integer
    x11.randr.SetPanning.left  left
        Unsigned 16-bit integer
    x11.randr.SetPanning.reply.status  status
        Unsigned 8-bit integer
    x11.randr.SetPanning.reply.timestamp  timestamp
        Unsigned 32-bit integer
    x11.randr.SetPanning.timestamp  timestamp
        Unsigned 32-bit integer
    x11.randr.SetPanning.top  top
        Unsigned 16-bit integer
    x11.randr.SetPanning.track_height  track_height
        Unsigned 16-bit integer
    x11.randr.SetPanning.track_left  track_left
        Unsigned 16-bit integer
    x11.randr.SetPanning.track_top  track_top
        Unsigned 16-bit integer
    x11.randr.SetPanning.track_width  track_width
        Unsigned 16-bit integer
    x11.randr.SetPanning.width  width
        Unsigned 16-bit integer
    x11.randr.SetScreenConfig.config_timestamp  config_timestamp
        Unsigned 32-bit integer
    x11.randr.SetScreenConfig.rate  rate
        Unsigned 16-bit integer
    x11.randr.SetScreenConfig.reply.config_timestamp  config_timestamp
        Unsigned 32-bit integer
    x11.randr.SetScreenConfig.reply.new_timestamp  new_timestamp
        Unsigned 32-bit integer
    x11.randr.SetScreenConfig.reply.root  root
        Unsigned 32-bit integer
    x11.randr.SetScreenConfig.reply.status  status
        Unsigned 8-bit integer
    x11.randr.SetScreenConfig.reply.subpixel_order  subpixel_order
        Unsigned 16-bit integer
    x11.randr.SetScreenConfig.rotation  rotation
        Unsigned 16-bit integer
    x11.randr.SetScreenConfig.rotation.Reflect_X  Reflect_X
        Boolean
    x11.randr.SetScreenConfig.rotation.Reflect_Y  Reflect_Y
        Boolean
    x11.randr.SetScreenConfig.rotation.Rotate_0  Rotate_0
        Boolean
    x11.randr.SetScreenConfig.rotation.Rotate_180  Rotate_180
        Boolean
    x11.randr.SetScreenConfig.rotation.Rotate_270  Rotate_270
        Boolean
    x11.randr.SetScreenConfig.rotation.Rotate_90  Rotate_90
        Boolean
    x11.randr.SetScreenConfig.sizeID  sizeID
        Unsigned 16-bit integer
    x11.randr.SetScreenConfig.timestamp  timestamp
        Unsigned 32-bit integer
    x11.randr.SetScreenConfig.window  window
        Unsigned 32-bit integer
    x11.randr.SetScreenSize.height  height
        Unsigned 16-bit integer
    x11.randr.SetScreenSize.mm_height  mm_height
        Unsigned 32-bit integer
    x11.randr.SetScreenSize.mm_width  mm_width
        Unsigned 32-bit integer
    x11.randr.SetScreenSize.width  width
        Unsigned 16-bit integer
    x11.randr.SetScreenSize.window  window
        Unsigned 32-bit integer
    x11.reason  reason
        String
    x11.record.CreateContext.client_specs  client_specs
        No value
    x11.record.CreateContext.context  context
        Unsigned 32-bit integer
    x11.record.CreateContext.element_header  element_header
        Unsigned 8-bit integer
    x11.record.CreateContext.num_client_specs  num_client_specs
        Unsigned 32-bit integer
    x11.record.CreateContext.num_ranges  num_ranges
        Unsigned 32-bit integer
    x11.record.CreateContext.ranges  ranges
        No value
    x11.record.DisableContext.context  context
        Unsigned 32-bit integer
    x11.record.EnableContext.context  context
        Unsigned 32-bit integer
    x11.record.EnableContext.reply.category  category
        Unsigned 8-bit integer
    x11.record.EnableContext.reply.client_swapped  client_swapped
        Boolean
    x11.record.EnableContext.reply.data  data
        Byte array
    x11.record.EnableContext.reply.element_header  element_header
        Unsigned 8-bit integer
    x11.record.EnableContext.reply.rec_sequence_num  rec_sequence_num
        Unsigned 32-bit integer
    x11.record.EnableContext.reply.server_time  server_time
        Unsigned 32-bit integer
    x11.record.EnableContext.reply.xid_base  xid_base
        Unsigned 32-bit integer
    x11.record.FreeContext.context  context
        Unsigned 32-bit integer
    x11.record.GetContext.context  context
        Unsigned 32-bit integer
    x11.record.GetContext.reply.element_header  element_header
        Unsigned 8-bit integer
    x11.record.GetContext.reply.enabled  enabled
        Boolean
    x11.record.GetContext.reply.intercepted_clients  intercepted_clients
        No value
    x11.record.GetContext.reply.num_intercepted_clients  num_intercepted_clients
        Unsigned 32-bit integer
    x11.record.QueryVersion.major_version  major_version
        Unsigned 16-bit integer
    x11.record.QueryVersion.minor_version  minor_version
        Unsigned 16-bit integer
    x11.record.QueryVersion.reply.major_version  major_version
        Unsigned 16-bit integer
    x11.record.QueryVersion.reply.minor_version  minor_version
        Unsigned 16-bit integer
    x11.record.RegisterClients.client_specs  client_specs
        No value
    x11.record.RegisterClients.context  context
        Unsigned 32-bit integer
    x11.record.RegisterClients.element_header  element_header
        Unsigned 8-bit integer
    x11.record.RegisterClients.num_client_specs  num_client_specs
        Unsigned 32-bit integer
    x11.record.RegisterClients.num_ranges  num_ranges
        Unsigned 32-bit integer
    x11.record.RegisterClients.ranges  ranges
        No value
    x11.record.UnregisterClients.client_specs  client_specs
        No value
    x11.record.UnregisterClients.context  context
        Unsigned 32-bit integer
    x11.record.UnregisterClients.num_client_specs  num_client_specs
        Unsigned 32-bit integer
    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.render.AddGlyphs.data  data
        Byte array
    x11.render.AddGlyphs.glyphids  glyphids
        No value
    x11.render.AddGlyphs.glyphs  glyphs
        No value
    x11.render.AddGlyphs.glyphs_len  glyphs_len
        Unsigned 32-bit integer
    x11.render.AddGlyphs.glyphset  glyphset
        Unsigned 32-bit integer
    x11.render.AddTraps.picture  picture
        Unsigned 32-bit integer
    x11.render.AddTraps.traps  traps
        No value
    x11.render.AddTraps.x_off  x_off
        Signed 16-bit integer
    x11.render.AddTraps.y_off  y_off
        Signed 16-bit integer
    x11.render.ChangePicture.picture  picture
        Unsigned 32-bit integer
    x11.render.Composite.dst  dst
        Unsigned 32-bit integer
    x11.render.Composite.dst_x  dst_x
        Signed 16-bit integer
    x11.render.Composite.dst_y  dst_y
        Signed 16-bit integer
    x11.render.Composite.height  height
        Unsigned 16-bit integer
    x11.render.Composite.mask  mask
        Unsigned 32-bit integer
    x11.render.Composite.mask_x  mask_x
        Signed 16-bit integer
    x11.render.Composite.mask_y  mask_y
        Signed 16-bit integer
    x11.render.Composite.op  op
        Unsigned 8-bit integer
    x11.render.Composite.src  src
        Unsigned 32-bit integer
    x11.render.Composite.src_x  src_x
        Signed 16-bit integer
    x11.render.Composite.src_y  src_y
        Signed 16-bit integer
    x11.render.Composite.width  width
        Unsigned 16-bit integer
    x11.render.CompositeGlyphs16.dst  dst
        Unsigned 32-bit integer
    x11.render.CompositeGlyphs16.glyphcmds  glyphcmds
        Byte array
    x11.render.CompositeGlyphs16.glyphset  glyphset
        Unsigned 32-bit integer
    x11.render.CompositeGlyphs16.mask_format  mask_format
        Unsigned 32-bit integer
    x11.render.CompositeGlyphs16.op  op
        Unsigned 8-bit integer
    x11.render.CompositeGlyphs16.src  src
        Unsigned 32-bit integer
    x11.render.CompositeGlyphs16.src_x  src_x
        Signed 16-bit integer
    x11.render.CompositeGlyphs16.src_y  src_y
        Signed 16-bit integer
    x11.render.CompositeGlyphs32.dst  dst
        Unsigned 32-bit integer
    x11.render.CompositeGlyphs32.glyphcmds  glyphcmds
        Byte array
    x11.render.CompositeGlyphs32.glyphset  glyphset
        Unsigned 32-bit integer
    x11.render.CompositeGlyphs32.mask_format  mask_format
        Unsigned 32-bit integer
    x11.render.CompositeGlyphs32.op  op
        Unsigned 8-bit integer
    x11.render.CompositeGlyphs32.src  src
        Unsigned 32-bit integer
    x11.render.CompositeGlyphs32.src_x  src_x
        Signed 16-bit integer
    x11.render.CompositeGlyphs32.src_y  src_y
        Signed 16-bit integer
    x11.render.CompositeGlyphs8.dst  dst
        Unsigned 32-bit integer
    x11.render.CompositeGlyphs8.glyphcmds  glyphcmds
        Byte array
    x11.render.CompositeGlyphs8.glyphset  glyphset
        Unsigned 32-bit integer
    x11.render.CompositeGlyphs8.mask_format  mask_format
        Unsigned 32-bit integer
    x11.render.CompositeGlyphs8.op  op
        Unsigned 8-bit integer
    x11.render.CompositeGlyphs8.src  src
        Unsigned 32-bit integer
    x11.render.CompositeGlyphs8.src_x  src_x
        Signed 16-bit integer
    x11.render.CompositeGlyphs8.src_y  src_y
        Signed 16-bit integer
    x11.render.CreateAnimCursor.cid  cid
        Unsigned 32-bit integer
    x11.render.CreateAnimCursor.cursors  cursors
        No value
    x11.render.CreateConicalGradient.angle  angle
        Signed 32-bit integer
    x11.render.CreateConicalGradient.center  center
        No value
    x11.render.CreateConicalGradient.colors  colors
        No value
    x11.render.CreateConicalGradient.num_stops  num_stops
        Unsigned 32-bit integer
    x11.render.CreateConicalGradient.picture  picture
        Unsigned 32-bit integer
    x11.render.CreateConicalGradient.stops  stops
        No value
    x11.render.CreateCursor.cid  cid
        Unsigned 32-bit integer
    x11.render.CreateCursor.source  source
        Unsigned 32-bit integer
    x11.render.CreateCursor.x  x
        Unsigned 16-bit integer
    x11.render.CreateCursor.y  y
        Unsigned 16-bit integer
    x11.render.CreateGlyphSet.format  format
        Unsigned 32-bit integer
    x11.render.CreateGlyphSet.gsid  gsid
        Unsigned 32-bit integer
    x11.render.CreateLinearGradient.colors  colors
        No value
    x11.render.CreateLinearGradient.num_stops  num_stops
        Unsigned 32-bit integer
    x11.render.CreateLinearGradient.p1  p1
        No value
    x11.render.CreateLinearGradient.p2  p2
        No value
    x11.render.CreateLinearGradient.picture  picture
        Unsigned 32-bit integer
    x11.render.CreateLinearGradient.stops  stops
        No value
    x11.render.CreatePicture.drawable  drawable
        Unsigned 32-bit integer
    x11.render.CreatePicture.format  format
        Unsigned 32-bit integer
    x11.render.CreatePicture.pid  pid
        Unsigned 32-bit integer
    x11.render.CreateRadialGradient.colors  colors
        No value
    x11.render.CreateRadialGradient.inner  inner
        No value
    x11.render.CreateRadialGradient.inner_radius  inner_radius
        Signed 32-bit integer
    x11.render.CreateRadialGradient.num_stops  num_stops
        Unsigned 32-bit integer
    x11.render.CreateRadialGradient.outer  outer
        No value
    x11.render.CreateRadialGradient.outer_radius  outer_radius
        Signed 32-bit integer
    x11.render.CreateRadialGradient.picture  picture
        Unsigned 32-bit integer
    x11.render.CreateRadialGradient.stops  stops
        No value
    x11.render.CreateSolidFill.color  color
        No value
    x11.render.CreateSolidFill.picture  picture
        Unsigned 32-bit integer
    x11.render.FillRectangles.color  color
        No value
    x11.render.FillRectangles.dst  dst
        Unsigned 32-bit integer
    x11.render.FillRectangles.op  op
        Unsigned 8-bit integer
    x11.render.FillRectangles.rects  rects
        No value
    x11.render.FreeGlyphSet.glyphset  glyphset
        Unsigned 32-bit integer
    x11.render.FreeGlyphs.glyphs  glyphs
        No value
    x11.render.FreeGlyphs.glyphset  glyphset
        Unsigned 32-bit integer
    x11.render.FreePicture.picture  picture
        Unsigned 32-bit integer
    x11.render.QueryFilters.drawable  drawable
        Unsigned 32-bit integer
    x11.render.QueryFilters.reply.aliases  aliases
        No value
    x11.render.QueryFilters.reply.filters  filters
        No value
    x11.render.QueryFilters.reply.num_aliases  num_aliases
        Unsigned 32-bit integer
    x11.render.QueryFilters.reply.num_filters  num_filters
        Unsigned 32-bit integer
    x11.render.QueryPictFormats.reply.formats  formats
        No value
    x11.render.QueryPictFormats.reply.num_depths  num_depths
        Unsigned 32-bit integer
    x11.render.QueryPictFormats.reply.num_formats  num_formats
        Unsigned 32-bit integer
    x11.render.QueryPictFormats.reply.num_screens  num_screens
        Unsigned 32-bit integer
    x11.render.QueryPictFormats.reply.num_subpixel  num_subpixel
        Unsigned 32-bit integer
    x11.render.QueryPictFormats.reply.num_visuals  num_visuals
        Unsigned 32-bit integer
    x11.render.QueryPictFormats.reply.screens  screens
        No value
    x11.render.QueryPictFormats.reply.subpixels  subpixels
        No value
    x11.render.QueryPictIndexValues.format  format
        Unsigned 32-bit integer
    x11.render.QueryPictIndexValues.reply.num_values  num_values
        Unsigned 32-bit integer
    x11.render.QueryPictIndexValues.reply.values  values
        No value
    x11.render.QueryVersion.client_major_version  client_major_version
        Unsigned 32-bit integer
    x11.render.QueryVersion.client_minor_version  client_minor_version
        Unsigned 32-bit integer
    x11.render.QueryVersion.reply.major_version  major_version
        Unsigned 32-bit integer
    x11.render.QueryVersion.reply.minor_version  minor_version
        Unsigned 32-bit integer
    x11.render.ReferenceGlyphSet.existing  existing
        Unsigned 32-bit integer
    x11.render.ReferenceGlyphSet.gsid  gsid
        Unsigned 32-bit integer
    x11.render.SetPictureClipRectangles.clip_x_origin  clip_x_origin
        Signed 16-bit integer
    x11.render.SetPictureClipRectangles.clip_y_origin  clip_y_origin
        Signed 16-bit integer
    x11.render.SetPictureClipRectangles.picture  picture
        Unsigned 32-bit integer
    x11.render.SetPictureClipRectangles.rectangles  rectangles
        No value
    x11.render.SetPictureFilter.filter  filter
        String
    x11.render.SetPictureFilter.filter_len  filter_len
        Unsigned 16-bit integer
    x11.render.SetPictureFilter.picture  picture
        Unsigned 32-bit integer
    x11.render.SetPictureFilter.values  values
        No value
    x11.render.SetPictureTransform.picture  picture
        Unsigned 32-bit integer
    x11.render.SetPictureTransform.transform  transform
        No value
    x11.render.Trapezoids.dst  dst
        Unsigned 32-bit integer
    x11.render.Trapezoids.mask_format  mask_format
        Unsigned 32-bit integer
    x11.render.Trapezoids.op  op
        Unsigned 8-bit integer
    x11.render.Trapezoids.src  src
        Unsigned 32-bit integer
    x11.render.Trapezoids.src_x  src_x
        Signed 16-bit integer
    x11.render.Trapezoids.src_y  src_y
        Signed 16-bit integer
    x11.render.Trapezoids.traps  traps
        No value
    x11.render.TriFan.dst  dst
        Unsigned 32-bit integer
    x11.render.TriFan.mask_format  mask_format
        Unsigned 32-bit integer
    x11.render.TriFan.op  op
        Unsigned 8-bit integer
    x11.render.TriFan.points  points
        No value
    x11.render.TriFan.src  src
        Unsigned 32-bit integer
    x11.render.TriFan.src_x  src_x
        Signed 16-bit integer
    x11.render.TriFan.src_y  src_y
        Signed 16-bit integer
    x11.render.TriStrip.dst  dst
        Unsigned 32-bit integer
    x11.render.TriStrip.mask_format  mask_format
        Unsigned 32-bit integer
    x11.render.TriStrip.op  op
        Unsigned 8-bit integer
    x11.render.TriStrip.points  points
        No value
    x11.render.TriStrip.src  src
        Unsigned 32-bit integer
    x11.render.TriStrip.src_x  src_x
        Signed 16-bit integer
    x11.render.TriStrip.src_y  src_y
        Signed 16-bit integer
    x11.render.Triangles.dst  dst
        Unsigned 32-bit integer
    x11.render.Triangles.mask_format  mask_format
        Unsigned 32-bit integer
    x11.render.Triangles.op  op
        Unsigned 8-bit integer
    x11.render.Triangles.src  src
        Unsigned 32-bit integer
    x11.render.Triangles.src_x  src_x
        Signed 16-bit integer
    x11.render.Triangles.src_y  src_y
        Signed 16-bit integer
    x11.render.Triangles.triangles  triangles
        No value
    x11.reply  reply
        Unsigned 8-bit integer
    x11.reply-sequencenumber  reply-sequencenumber
        Unsigned 16-bit integer
    x11.replylength  replylength
        Unsigned 32-bit integer
    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.res.QueryClientPixmapBytes.reply.bytes  bytes
        Unsigned 32-bit integer
    x11.res.QueryClientPixmapBytes.reply.bytes_overflow  bytes_overflow
        Unsigned 32-bit integer
    x11.res.QueryClientPixmapBytes.xid  xid
        Unsigned 32-bit integer
    x11.res.QueryClientResources.reply.num_types  num_types
        Unsigned 32-bit integer
    x11.res.QueryClientResources.reply.types  types
        No value
    x11.res.QueryClientResources.xid  xid
        Unsigned 32-bit integer
    x11.res.QueryClients.reply.clients  clients
        No value
    x11.res.QueryClients.reply.num_clients  num_clients
        Unsigned 32-bit integer
    x11.res.QueryVersion.client_major  client_major
        Unsigned 8-bit integer
    x11.res.QueryVersion.client_minor  client_minor
        Unsigned 8-bit integer
    x11.res.QueryVersion.reply.server_major  server_major
        Unsigned 16-bit integer
    x11.res.QueryVersion.reply.server_minor  server_minor
        Unsigned 16-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
    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.screensaver.Notify.code  code
        Unsigned 8-bit integer
    x11.screensaver.Notify.forced  forced
        Boolean
    x11.screensaver.Notify.kind  kind
        Byte array
    x11.screensaver.Notify.root  root
        Unsigned 32-bit integer
    x11.screensaver.Notify.sequence_number  sequence_number
        Unsigned 16-bit integer
    x11.screensaver.Notify.state  state
        Byte array
    x11.screensaver.Notify.time  time
        Unsigned 32-bit integer
    x11.screensaver.Notify.window  window
        Unsigned 32-bit integer
    x11.screensaver.QueryInfo.drawable  drawable
        Unsigned 32-bit integer
    x11.screensaver.QueryInfo.reply.event_mask  event_mask
        Unsigned 32-bit integer
    x11.screensaver.QueryInfo.reply.kind  kind
        Byte array
    x11.screensaver.QueryInfo.reply.ms_since_user_input  ms_since_user_input
        Unsigned 32-bit integer
    x11.screensaver.QueryInfo.reply.ms_until_server  ms_until_server
        Unsigned 32-bit integer
    x11.screensaver.QueryInfo.reply.saver_window  saver_window
        Unsigned 32-bit integer
    x11.screensaver.QueryInfo.reply.state  state
        Unsigned 8-bit integer
    x11.screensaver.QueryVersion.client_major_version  client_major_version
        Unsigned 8-bit integer
    x11.screensaver.QueryVersion.client_minor_version  client_minor_version
        Unsigned 8-bit integer
    x11.screensaver.QueryVersion.reply.server_major_version  server_major_version
        Unsigned 16-bit integer
    x11.screensaver.QueryVersion.reply.server_minor_version  server_minor_version
        Unsigned 16-bit integer
    x11.screensaver.SelectInput.drawable  drawable
        Unsigned 32-bit integer
    x11.screensaver.SelectInput.event_mask  event_mask
        Unsigned 32-bit integer
    x11.screensaver.SetAttributes.border_width  border_width
        Unsigned 16-bit integer
    x11.screensaver.SetAttributes.class  class
        Byte array
    x11.screensaver.SetAttributes.depth  depth
        Unsigned 8-bit integer
    x11.screensaver.SetAttributes.drawable  drawable
        Unsigned 32-bit integer
    x11.screensaver.SetAttributes.height  height
        Unsigned 16-bit integer
    x11.screensaver.SetAttributes.visual  visual
        Unsigned 32-bit integer
    x11.screensaver.SetAttributes.width  width
        Unsigned 16-bit integer
    x11.screensaver.SetAttributes.x  x
        Signed 16-bit integer
    x11.screensaver.SetAttributes.y  y
        Signed 16-bit integer
    x11.screensaver.Suspend.suspend  suspend
        Boolean
    x11.screensaver.UnsetAttributes.drawable  drawable
        Unsigned 32-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.shape.Combine.destination_kind  destination_kind
        Unsigned 8-bit integer
    x11.shape.Combine.destination_window  destination_window
        Unsigned 32-bit integer
    x11.shape.Combine.operation  operation
        Unsigned 8-bit integer
    x11.shape.Combine.source_kind  source_kind
        Unsigned 8-bit integer
    x11.shape.Combine.source_window  source_window
        Unsigned 32-bit integer
    x11.shape.Combine.x_offset  x_offset
        Signed 16-bit integer
    x11.shape.Combine.y_offset  y_offset
        Signed 16-bit integer
    x11.shape.GetRectangles.reply.ordering  ordering
        Unsigned 8-bit integer
    x11.shape.GetRectangles.reply.rectangles  rectangles
        No value
    x11.shape.GetRectangles.reply.rectangles_len  rectangles_len
        Unsigned 32-bit integer
    x11.shape.GetRectangles.source_kind  source_kind
        Unsigned 8-bit integer
    x11.shape.GetRectangles.window  window
        Unsigned 32-bit integer
    x11.shape.InputSelected.destination_window  destination_window
        Unsigned 32-bit integer
    x11.shape.InputSelected.reply.enabled  enabled
        Boolean
    x11.shape.Mask.destination_kind  destination_kind
        Unsigned 8-bit integer
    x11.shape.Mask.destination_window  destination_window
        Unsigned 32-bit integer
    x11.shape.Mask.operation  operation
        Unsigned 8-bit integer
    x11.shape.Mask.source_bitmap  source_bitmap
        Unsigned 32-bit integer
    x11.shape.Mask.x_offset  x_offset
        Signed 16-bit integer
    x11.shape.Mask.y_offset  y_offset
        Signed 16-bit integer
    x11.shape.Notify.affected_window  affected_window
        Unsigned 32-bit integer
    x11.shape.Notify.extents_height  extents_height
        Unsigned 16-bit integer
    x11.shape.Notify.extents_width  extents_width
        Unsigned 16-bit integer
    x11.shape.Notify.extents_x  extents_x
        Signed 16-bit integer
    x11.shape.Notify.extents_y  extents_y
        Signed 16-bit integer
    x11.shape.Notify.server_time  server_time
        Unsigned 32-bit integer
    x11.shape.Notify.shape_kind  shape_kind
        Unsigned 8-bit integer
    x11.shape.Notify.shaped  shaped
        Boolean
    x11.shape.Offset.destination_kind  destination_kind
        Unsigned 8-bit integer
    x11.shape.Offset.destination_window  destination_window
        Unsigned 32-bit integer
    x11.shape.Offset.x_offset  x_offset
        Signed 16-bit integer
    x11.shape.Offset.y_offset  y_offset
        Signed 16-bit integer
    x11.shape.QueryExtents.destination_window  destination_window
        Unsigned 32-bit integer
    x11.shape.QueryExtents.reply.bounding_shape_extents_height  bounding_shape_extents_height
        Unsigned 16-bit integer
    x11.shape.QueryExtents.reply.bounding_shape_extents_width  bounding_shape_extents_width
        Unsigned 16-bit integer
    x11.shape.QueryExtents.reply.bounding_shape_extents_x  bounding_shape_extents_x
        Signed 16-bit integer
    x11.shape.QueryExtents.reply.bounding_shape_extents_y  bounding_shape_extents_y
        Signed 16-bit integer
    x11.shape.QueryExtents.reply.bounding_shaped  bounding_shaped
        Boolean
    x11.shape.QueryExtents.reply.clip_shape_extents_height  clip_shape_extents_height
        Unsigned 16-bit integer
    x11.shape.QueryExtents.reply.clip_shape_extents_width  clip_shape_extents_width
        Unsigned 16-bit integer
    x11.shape.QueryExtents.reply.clip_shape_extents_x  clip_shape_extents_x
        Signed 16-bit integer
    x11.shape.QueryExtents.reply.clip_shape_extents_y  clip_shape_extents_y
        Signed 16-bit integer
    x11.shape.QueryExtents.reply.clip_shaped  clip_shaped
        Boolean
    x11.shape.QueryVersion.reply.major_version  major_version
        Unsigned 16-bit integer
    x11.shape.QueryVersion.reply.minor_version  minor_version
        Unsigned 16-bit integer
    x11.shape.Rectangles.destination_kind  destination_kind
        Unsigned 8-bit integer
    x11.shape.Rectangles.destination_window  destination_window
        Unsigned 32-bit integer
    x11.shape.Rectangles.operation  operation
        Unsigned 8-bit integer
    x11.shape.Rectangles.ordering  ordering
        Unsigned 8-bit integer
    x11.shape.Rectangles.rectangles  rectangles
        No value
    x11.shape.Rectangles.x_offset  x_offset
        Signed 16-bit integer
    x11.shape.Rectangles.y_offset  y_offset
        Signed 16-bit integer
    x11.shape.SelectInput.destination_window  destination_window
        Unsigned 32-bit integer
    x11.shape.SelectInput.enable  enable
        Boolean
    x11.shm.Attach.read_only  read_only
        Boolean
    x11.shm.Attach.shmid  shmid
        Unsigned 32-bit integer
    x11.shm.Attach.shmseg  shmseg
        Unsigned 32-bit integer
    x11.shm.Completion.drawable  drawable
        Unsigned 32-bit integer
    x11.shm.Completion.major_event  major_event
        Byte array
    x11.shm.Completion.minor_event  minor_event
        Unsigned 16-bit integer
    x11.shm.Completion.offset  offset
        Unsigned 32-bit integer
    x11.shm.Completion.shmseg  shmseg
        Unsigned 32-bit integer
    x11.shm.CreatePixmap.depth  depth
        Unsigned 8-bit integer
    x11.shm.CreatePixmap.drawable  drawable
        Unsigned 32-bit integer
    x11.shm.CreatePixmap.height  height
        Unsigned 16-bit integer
    x11.shm.CreatePixmap.offset  offset
        Unsigned 32-bit integer
    x11.shm.CreatePixmap.pid  pid
        Unsigned 32-bit integer
    x11.shm.CreatePixmap.shmseg  shmseg
        Unsigned 32-bit integer
    x11.shm.CreatePixmap.width  width
        Unsigned 16-bit integer
    x11.shm.Detach.shmseg  shmseg
        Unsigned 32-bit integer
    x11.shm.GetImage.drawable  drawable
        Unsigned 32-bit integer
    x11.shm.GetImage.format  format
        Unsigned 8-bit integer
    x11.shm.GetImage.height  height
        Unsigned 16-bit integer
    x11.shm.GetImage.offset  offset
        Unsigned 32-bit integer
    x11.shm.GetImage.plane_mask  plane_mask
        Unsigned 32-bit integer
    x11.shm.GetImage.reply.depth  depth
        Unsigned 8-bit integer
    x11.shm.GetImage.reply.size  size
        Unsigned 32-bit integer
    x11.shm.GetImage.reply.visual  visual
        Unsigned 32-bit integer
    x11.shm.GetImage.shmseg  shmseg
        Unsigned 32-bit integer
    x11.shm.GetImage.width  width
        Unsigned 16-bit integer
    x11.shm.GetImage.x  x
        Signed 16-bit integer
    x11.shm.GetImage.y  y
        Signed 16-bit integer
    x11.shm.PutImage.depth  depth
        Unsigned 8-bit integer
    x11.shm.PutImage.drawable  drawable
        Unsigned 32-bit integer
    x11.shm.PutImage.dst_x  dst_x
        Signed 16-bit integer
    x11.shm.PutImage.dst_y  dst_y
        Signed 16-bit integer
    x11.shm.PutImage.format  format
        Unsigned 8-bit integer
    x11.shm.PutImage.gc  gc
        Unsigned 32-bit integer
    x11.shm.PutImage.offset  offset
        Unsigned 32-bit integer
    x11.shm.PutImage.send_event  send_event
        Unsigned 8-bit integer
    x11.shm.PutImage.shmseg  shmseg
        Unsigned 32-bit integer
    x11.shm.PutImage.src_height  src_height
        Unsigned 16-bit integer
    x11.shm.PutImage.src_width  src_width
        Unsigned 16-bit integer
    x11.shm.PutImage.src_x  src_x
        Unsigned 16-bit integer
    x11.shm.PutImage.src_y  src_y
        Unsigned 16-bit integer
    x11.shm.PutImage.total_height  total_height
        Unsigned 16-bit integer
    x11.shm.PutImage.total_width  total_width
        Unsigned 16-bit integer
    x11.shm.QueryVersion.reply.gid  gid
        Unsigned 16-bit integer
    x11.shm.QueryVersion.reply.major_version  major_version
        Unsigned 16-bit integer
    x11.shm.QueryVersion.reply.minor_version  minor_version
        Unsigned 16-bit integer
    x11.shm.QueryVersion.reply.pixmap_format  pixmap_format
        Unsigned 8-bit integer
    x11.shm.QueryVersion.reply.shared_pixmaps  shared_pixmaps
        Boolean
    x11.shm.QueryVersion.reply.uid  uid
        Unsigned 16-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.struct.ANIMCURSORELT  ANIMCURSORELT
        No value
    x11.struct.ANIMCURSORELT.cursor  cursor
        Unsigned 32-bit integer
    x11.struct.ANIMCURSORELT.delay  delay
        Unsigned 32-bit integer
    x11.struct.AdaptorInfo  AdaptorInfo
        No value
    x11.struct.AdaptorInfo.base_id  base_id
        Unsigned 32-bit integer
    x11.struct.AdaptorInfo.formats  formats
        No value
    x11.struct.AdaptorInfo.name  name
        String
    x11.struct.AdaptorInfo.name_size  name_size
        Unsigned 16-bit integer
    x11.struct.AdaptorInfo.num_formats  num_formats
        Unsigned 16-bit integer
    x11.struct.AdaptorInfo.num_ports  num_ports
        Unsigned 16-bit integer
    x11.struct.AdaptorInfo.type  type
        Unsigned 8-bit integer
    x11.struct.AdaptorInfo.type.ImageMask  ImageMask
        Boolean
    x11.struct.AdaptorInfo.type.InputMask  InputMask
        Boolean
    x11.struct.AdaptorInfo.type.OutputMask  OutputMask
        Boolean
    x11.struct.AdaptorInfo.type.StillMask  StillMask
        Boolean
    x11.struct.AdaptorInfo.type.VideoMask  VideoMask
        Boolean
    x11.struct.AttachFormat  AttachFormat
        No value
    x11.struct.AttachFormat.attachment  attachment
        Unsigned 32-bit integer
    x11.struct.AttachFormat.format  format
        Unsigned 32-bit integer
    x11.struct.AttributeInfo  AttributeInfo
        No value
    x11.struct.AttributeInfo.flags  flags
        Unsigned 32-bit integer
    x11.struct.AttributeInfo.flags.Gettable  Gettable
        Boolean
    x11.struct.AttributeInfo.flags.Settable  Settable
        Boolean
    x11.struct.AttributeInfo.max  max
        Signed 32-bit integer
    x11.struct.AttributeInfo.min  min
        Signed 32-bit integer
    x11.struct.AttributeInfo.name  name
        String
    x11.struct.AttributeInfo.size  size
        Unsigned 32-bit integer
    x11.struct.COLOR  COLOR
        No value
    x11.struct.COLOR.alpha  alpha
        Unsigned 16-bit integer
    x11.struct.COLOR.blue  blue
        Unsigned 16-bit integer
    x11.struct.COLOR.green  green
        Unsigned 16-bit integer
    x11.struct.COLOR.red  red
        Unsigned 16-bit integer
    x11.struct.Client  Client
        No value
    x11.struct.Client.resource_base  resource_base
        Unsigned 32-bit integer
    x11.struct.Client.resource_mask  resource_mask
        Unsigned 32-bit integer
    x11.struct.ClientInfo  ClientInfo
        No value
    x11.struct.ClientInfo.client_resource  client_resource
        Unsigned 32-bit integer
    x11.struct.ClientInfo.num_ranges  num_ranges
        Unsigned 32-bit integer
    x11.struct.ClientInfo.ranges  ranges
        No value
    x11.struct.CommonBehavior  CommonBehavior
        No value
    x11.struct.CommonBehavior.data  data
        Unsigned 8-bit integer
    x11.struct.CommonBehavior.type  type
        Unsigned 8-bit integer
    x11.struct.CommonDoodad  CommonDoodad
        No value
    x11.struct.CommonDoodad.angle  angle
        Signed 16-bit integer
    x11.struct.CommonDoodad.left  left
        Signed 16-bit integer
    x11.struct.CommonDoodad.name  name
        Unsigned 32-bit integer
    x11.struct.CommonDoodad.priority  priority
        Unsigned 8-bit integer
    x11.struct.CommonDoodad.top  top
        Signed 16-bit integer
    x11.struct.CommonDoodad.type  type
        Unsigned 8-bit integer
    x11.struct.CountedString16  CountedString16
        No value
    x11.struct.CountedString16.length  length
        Unsigned 16-bit integer
    x11.struct.CountedString16.string  string
        Unsigned 8-bit integer
    x11.struct.CrtcChange  CrtcChange
        No value
    x11.struct.CrtcChange.crtc  crtc
        Unsigned 32-bit integer
    x11.struct.CrtcChange.height  height
        Unsigned 16-bit integer
    x11.struct.CrtcChange.mode  mode
        Unsigned 32-bit integer
    x11.struct.CrtcChange.rotation  rotation
        Unsigned 16-bit integer
    x11.struct.CrtcChange.rotation.Reflect_X  Reflect_X
        Boolean
    x11.struct.CrtcChange.rotation.Reflect_Y  Reflect_Y
        Boolean
    x11.struct.CrtcChange.rotation.Rotate_0  Rotate_0
        Boolean
    x11.struct.CrtcChange.rotation.Rotate_180  Rotate_180
        Boolean
    x11.struct.CrtcChange.rotation.Rotate_270  Rotate_270
        Boolean
    x11.struct.CrtcChange.rotation.Rotate_90  Rotate_90
        Boolean
    x11.struct.CrtcChange.timestamp  timestamp
        Unsigned 32-bit integer
    x11.struct.CrtcChange.width  width
        Unsigned 16-bit integer
    x11.struct.CrtcChange.window  window
        Unsigned 32-bit integer
    x11.struct.CrtcChange.x  x
        Signed 16-bit integer
    x11.struct.CrtcChange.y  y
        Signed 16-bit integer
    x11.struct.DIRECTFORMAT  DIRECTFORMAT
        No value
    x11.struct.DIRECTFORMAT.alpha_mask  alpha_mask
        Unsigned 16-bit integer
    x11.struct.DIRECTFORMAT.alpha_shift  alpha_shift
        Unsigned 16-bit integer
    x11.struct.DIRECTFORMAT.blue_mask  blue_mask
        Unsigned 16-bit integer
    x11.struct.DIRECTFORMAT.blue_shift  blue_shift
        Unsigned 16-bit integer
    x11.struct.DIRECTFORMAT.green_mask  green_mask
        Unsigned 16-bit integer
    x11.struct.DIRECTFORMAT.green_shift  green_shift
        Unsigned 16-bit integer
    x11.struct.DIRECTFORMAT.red_mask  red_mask
        Unsigned 16-bit integer
    x11.struct.DIRECTFORMAT.red_shift  red_shift
        Unsigned 16-bit integer
    x11.struct.DRI2Buffer  DRI2Buffer
        No value
    x11.struct.DRI2Buffer.attachment  attachment
        Unsigned 32-bit integer
    x11.struct.DRI2Buffer.cpp  cpp
        Unsigned 32-bit integer
    x11.struct.DRI2Buffer.flags  flags
        Unsigned 32-bit integer
    x11.struct.DRI2Buffer.name  name
        Unsigned 32-bit integer
    x11.struct.DRI2Buffer.pitch  pitch
        Unsigned 32-bit integer
    x11.struct.DefaultBehavior  DefaultBehavior
        No value
    x11.struct.DefaultBehavior.type  type
        Unsigned 8-bit integer
    x11.struct.DeviceInfo  DeviceInfo
        No value
    x11.struct.DeviceInfo.device_id  device_id
        Unsigned 8-bit integer
    x11.struct.DeviceInfo.device_type  device_type
        Unsigned 32-bit integer
    x11.struct.DeviceInfo.device_use  device_use
        Unsigned 8-bit integer
    x11.struct.DeviceInfo.num_class_info  num_class_info
        Unsigned 8-bit integer
    x11.struct.DeviceLedInfo  DeviceLedInfo
        No value
    x11.struct.DeviceLedInfo.ledClass  ledClass
        Unsigned 16-bit integer
    x11.struct.DeviceLedInfo.ledID  ledID
        Unsigned 16-bit integer
    x11.struct.DeviceLedInfo.maps  maps
        No value
    x11.struct.DeviceLedInfo.mapsPresent  mapsPresent
        Unsigned 32-bit integer
    x11.struct.DeviceLedInfo.names  names
        No value
    x11.struct.DeviceLedInfo.namesPresent  namesPresent
        Unsigned 32-bit integer
    x11.struct.DeviceLedInfo.physIndicators  physIndicators
        Unsigned 32-bit integer
    x11.struct.DeviceLedInfo.state  state
        Unsigned 32-bit integer
    x11.struct.DrmClipRect  DrmClipRect
        No value
    x11.struct.DrmClipRect.x1  x1
        Signed 16-bit integer
    x11.struct.DrmClipRect.x2  x2
        Signed 16-bit integer
    x11.struct.DrmClipRect.x3  x3
        Signed 16-bit integer
    x11.struct.DrmClipRect.y1  y1
        Signed 16-bit integer
    x11.struct.EncodingInfo  EncodingInfo
        No value
    x11.struct.EncodingInfo.encoding  encoding
        Unsigned 32-bit integer
    x11.struct.EncodingInfo.height  height
        Unsigned 16-bit integer
    x11.struct.EncodingInfo.name  name
        String
    x11.struct.EncodingInfo.name_size  name_size
        Unsigned 16-bit integer
    x11.struct.EncodingInfo.rate  rate
        No value
    x11.struct.EncodingInfo.width  width
        Unsigned 16-bit integer
    x11.struct.Event  Event
        No value
    x11.struct.ExtRange  ExtRange
        No value
    x11.struct.ExtRange.major  major
        No value
    x11.struct.ExtRange.minor  minor
        No value
    x11.struct.Format  Format
        No value
    x11.struct.Format.depth  depth
        Unsigned 8-bit integer
    x11.struct.Format.visual  visual
        Unsigned 32-bit integer
    x11.struct.GLYPHINFO  GLYPHINFO
        No value
    x11.struct.GLYPHINFO.height  height
        Unsigned 16-bit integer
    x11.struct.GLYPHINFO.width  width
        Unsigned 16-bit integer
    x11.struct.GLYPHINFO.x  x
        Signed 16-bit integer
    x11.struct.GLYPHINFO.x_off  x_off
        Signed 16-bit integer
    x11.struct.GLYPHINFO.y  y
        Signed 16-bit integer
    x11.struct.GLYPHINFO.y_off  y_off
        Signed 16-bit integer
    x11.struct.INDEXVALUE  INDEXVALUE
        No value
    x11.struct.INDEXVALUE.alpha  alpha
        Unsigned 16-bit integer
    x11.struct.INDEXVALUE.blue  blue
        Unsigned 16-bit integer
    x11.struct.INDEXVALUE.green  green
        Unsigned 16-bit integer
    x11.struct.INDEXVALUE.pixel  pixel
        Unsigned 32-bit integer
    x11.struct.INDEXVALUE.red  red
        Unsigned 16-bit integer
    x11.struct.INT64  INT64
        No value
    x11.struct.INT64.hi  hi
        Signed 32-bit integer
    x11.struct.INT64.lo  lo
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo  ImageFormatInfo
        No value
    x11.struct.ImageFormatInfo.blue_mask  blue_mask
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo.bpp  bpp
        Unsigned 8-bit integer
    x11.struct.ImageFormatInfo.byte_order  byte_order
        Unsigned 8-bit integer
    x11.struct.ImageFormatInfo.depth  depth
        Unsigned 8-bit integer
    x11.struct.ImageFormatInfo.format  format
        Unsigned 8-bit integer
    x11.struct.ImageFormatInfo.green_mask  green_mask
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo.guid  guid
        Unsigned 8-bit integer
    x11.struct.ImageFormatInfo.id  id
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo.num_planes  num_planes
        Unsigned 8-bit integer
    x11.struct.ImageFormatInfo.red_mask  red_mask
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo.type  type
        Unsigned 8-bit integer
    x11.struct.ImageFormatInfo.u_sample_bits  u_sample_bits
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo.v_sample_bits  v_sample_bits
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo.vcomp_order  vcomp_order
        Unsigned 8-bit integer
    x11.struct.ImageFormatInfo.vhorz_u_period  vhorz_u_period
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo.vhorz_v_period  vhorz_v_period
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo.vhorz_y_period  vhorz_y_period
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo.vscanline_order  vscanline_order
        Unsigned 8-bit integer
    x11.struct.ImageFormatInfo.vvert_u_period  vvert_u_period
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo.vvert_v_period  vvert_v_period
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo.vvert_y_period  vvert_y_period
        Unsigned 32-bit integer
    x11.struct.ImageFormatInfo.y_sample_bits  y_sample_bits
        Unsigned 32-bit integer
    x11.struct.IndicatorDoodad  IndicatorDoodad
        No value
    x11.struct.IndicatorDoodad.angle  angle
        Signed 16-bit integer
    x11.struct.IndicatorDoodad.left  left
        Signed 16-bit integer
    x11.struct.IndicatorDoodad.name  name
        Unsigned 32-bit integer
    x11.struct.IndicatorDoodad.offColorNdx  offColorNdx
        Unsigned 8-bit integer
    x11.struct.IndicatorDoodad.onColorNdx  onColorNdx
        Unsigned 8-bit integer
    x11.struct.IndicatorDoodad.priority  priority
        Unsigned 8-bit integer
    x11.struct.IndicatorDoodad.shapeNdx  shapeNdx
        Unsigned 8-bit integer
    x11.struct.IndicatorDoodad.top  top
        Signed 16-bit integer
    x11.struct.IndicatorDoodad.type  type
        Unsigned 8-bit integer
    x11.struct.IndicatorMap  IndicatorMap
        No value
    x11.struct.IndicatorMap.ctrls  ctrls
        Unsigned 32-bit integer
    x11.struct.IndicatorMap.flags  flags
        Unsigned 8-bit integer
    x11.struct.IndicatorMap.groups  groups
        Unsigned 8-bit integer
    x11.struct.IndicatorMap.mods  mods
        Unsigned 8-bit integer
    x11.struct.IndicatorMap.mods.1  1
        Boolean
    x11.struct.IndicatorMap.mods.2  2
        Boolean
    x11.struct.IndicatorMap.mods.3  3
        Boolean
    x11.struct.IndicatorMap.mods.4  4
        Boolean
    x11.struct.IndicatorMap.mods.5  5
        Boolean
    x11.struct.IndicatorMap.mods.Any  Any
        Boolean
    x11.struct.IndicatorMap.mods.Control  Control
        Boolean
    x11.struct.IndicatorMap.mods.Lock  Lock
        Boolean
    x11.struct.IndicatorMap.mods.Shift  Shift
        Boolean
    x11.struct.IndicatorMap.realMods  realMods
        Unsigned 8-bit integer
    x11.struct.IndicatorMap.realMods.1  1
        Boolean
    x11.struct.IndicatorMap.realMods.2  2
        Boolean
    x11.struct.IndicatorMap.realMods.3  3
        Boolean
    x11.struct.IndicatorMap.realMods.4  4
        Boolean
    x11.struct.IndicatorMap.realMods.5  5
        Boolean
    x11.struct.IndicatorMap.realMods.Any  Any
        Boolean
    x11.struct.IndicatorMap.realMods.Control  Control
        Boolean
    x11.struct.IndicatorMap.realMods.Lock  Lock
        Boolean
    x11.struct.IndicatorMap.realMods.Shift  Shift
        Boolean
    x11.struct.IndicatorMap.vmods  vmods
        Unsigned 16-bit integer
    x11.struct.IndicatorMap.vmods.0  0
        Boolean
    x11.struct.IndicatorMap.vmods.1  1
        Boolean
    x11.struct.IndicatorMap.vmods.10  10
        Boolean
    x11.struct.IndicatorMap.vmods.11  11
        Boolean
    x11.struct.IndicatorMap.vmods.12  12
        Boolean
    x11.struct.IndicatorMap.vmods.13  13
        Boolean
    x11.struct.IndicatorMap.vmods.14  14
        Boolean
    x11.struct.IndicatorMap.vmods.15  15
        Boolean
    x11.struct.IndicatorMap.vmods.2  2
        Boolean
    x11.struct.IndicatorMap.vmods.3  3
        Boolean
    x11.struct.IndicatorMap.vmods.4  4
        Boolean
    x11.struct.IndicatorMap.vmods.5  5
        Boolean
    x11.struct.IndicatorMap.vmods.6  6
        Boolean
    x11.struct.IndicatorMap.vmods.7  7
        Boolean
    x11.struct.IndicatorMap.vmods.8  8
        Boolean
    x11.struct.IndicatorMap.vmods.9  9
        Boolean
    x11.struct.IndicatorMap.whichGroups  whichGroups
        Unsigned 8-bit integer
    x11.struct.IndicatorMap.whichMods  whichMods
        Unsigned 8-bit integer
    x11.struct.InputClassInfo  InputClassInfo
        No value
    x11.struct.InputClassInfo.class_id  class_id
        Unsigned 8-bit integer
    x11.struct.InputClassInfo.event_type_base  event_type_base
        Unsigned 8-bit integer
    x11.struct.KTMapEntry  KTMapEntry
        No value
    x11.struct.KTMapEntry.active  active
        Boolean
    x11.struct.KTMapEntry.level  level
        Unsigned 8-bit integer
    x11.struct.KTMapEntry.mods_mask  mods_mask
        Unsigned 8-bit integer
    x11.struct.KTMapEntry.mods_mask.1  1
        Boolean
    x11.struct.KTMapEntry.mods_mask.2  2
        Boolean
    x11.struct.KTMapEntry.mods_mask.3  3
        Boolean
    x11.struct.KTMapEntry.mods_mask.4  4
        Boolean
    x11.struct.KTMapEntry.mods_mask.5  5
        Boolean
    x11.struct.KTMapEntry.mods_mask.Any  Any
        Boolean
    x11.struct.KTMapEntry.mods_mask.Control  Control
        Boolean
    x11.struct.KTMapEntry.mods_mask.Lock  Lock
        Boolean
    x11.struct.KTMapEntry.mods_mask.Shift  Shift
        Boolean
    x11.struct.KTMapEntry.mods_mods  mods_mods
        Unsigned 8-bit integer
    x11.struct.KTMapEntry.mods_mods.1  1
        Boolean
    x11.struct.KTMapEntry.mods_mods.2  2
        Boolean
    x11.struct.KTMapEntry.mods_mods.3  3
        Boolean
    x11.struct.KTMapEntry.mods_mods.4  4
        Boolean
    x11.struct.KTMapEntry.mods_mods.5  5
        Boolean
    x11.struct.KTMapEntry.mods_mods.Any  Any
        Boolean
    x11.struct.KTMapEntry.mods_mods.Control  Control
        Boolean
    x11.struct.KTMapEntry.mods_mods.Lock  Lock
        Boolean
    x11.struct.KTMapEntry.mods_mods.Shift  Shift
        Boolean
    x11.struct.KTMapEntry.mods_vmods  mods_vmods
        Unsigned 16-bit integer
    x11.struct.KTMapEntry.mods_vmods.0  0
        Boolean
    x11.struct.KTMapEntry.mods_vmods.1  1
        Boolean
    x11.struct.KTMapEntry.mods_vmods.10  10
        Boolean
    x11.struct.KTMapEntry.mods_vmods.11  11
        Boolean
    x11.struct.KTMapEntry.mods_vmods.12  12
        Boolean
    x11.struct.KTMapEntry.mods_vmods.13  13
        Boolean
    x11.struct.KTMapEntry.mods_vmods.14  14
        Boolean
    x11.struct.KTMapEntry.mods_vmods.15  15
        Boolean
    x11.struct.KTMapEntry.mods_vmods.2  2
        Boolean
    x11.struct.KTMapEntry.mods_vmods.3  3
        Boolean
    x11.struct.KTMapEntry.mods_vmods.4  4
        Boolean
    x11.struct.KTMapEntry.mods_vmods.5  5
        Boolean
    x11.struct.KTMapEntry.mods_vmods.6  6
        Boolean
    x11.struct.KTMapEntry.mods_vmods.7  7
        Boolean
    x11.struct.KTMapEntry.mods_vmods.8  8
        Boolean
    x11.struct.KTMapEntry.mods_vmods.9  9
        Boolean
    x11.struct.KTSetMapEntry  KTSetMapEntry
        No value
    x11.struct.KTSetMapEntry.level  level
        Unsigned 8-bit integer
    x11.struct.KTSetMapEntry.realMods  realMods
        Unsigned 8-bit integer
    x11.struct.KTSetMapEntry.realMods.1  1
        Boolean
    x11.struct.KTSetMapEntry.realMods.2  2
        Boolean
    x11.struct.KTSetMapEntry.realMods.3  3
        Boolean
    x11.struct.KTSetMapEntry.realMods.4  4
        Boolean
    x11.struct.KTSetMapEntry.realMods.5  5
        Boolean
    x11.struct.KTSetMapEntry.realMods.Any  Any
        Boolean
    x11.struct.KTSetMapEntry.realMods.Control  Control
        Boolean
    x11.struct.KTSetMapEntry.realMods.Lock  Lock
        Boolean
    x11.struct.KTSetMapEntry.realMods.Shift  Shift
        Boolean
    x11.struct.KTSetMapEntry.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.struct.KTSetMapEntry.virtualMods.0  0
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.1  1
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.10  10
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.11  11
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.12  12
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.13  13
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.14  14
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.15  15
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.2  2
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.3  3
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.4  4
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.5  5
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.6  6
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.7  7
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.8  8
        Boolean
    x11.struct.KTSetMapEntry.virtualMods.9  9
        Boolean
    x11.struct.Key  Key
        No value
    x11.struct.Key.colorNdx  colorNdx
        Unsigned 8-bit integer
    x11.struct.Key.gap  gap
        Signed 16-bit integer
    x11.struct.Key.name  name
        String
    x11.struct.Key.shapeNdx  shapeNdx
        Unsigned 8-bit integer
    x11.struct.KeyAlias  KeyAlias
        No value
    x11.struct.KeyAlias.alias  alias
        Unsigned 8-bit integer
    x11.struct.KeyAlias.real  real
        Unsigned 8-bit integer
    x11.struct.KeyModMap  KeyModMap
        No value
    x11.struct.KeyModMap.keycode  keycode
        Unsigned 8-bit integer
    x11.struct.KeyModMap.mods  mods
        Unsigned 8-bit integer
    x11.struct.KeyModMap.mods.1  1
        Boolean
    x11.struct.KeyModMap.mods.2  2
        Boolean
    x11.struct.KeyModMap.mods.3  3
        Boolean
    x11.struct.KeyModMap.mods.4  4
        Boolean
    x11.struct.KeyModMap.mods.5  5
        Boolean
    x11.struct.KeyModMap.mods.Any  Any
        Boolean
    x11.struct.KeyModMap.mods.Control  Control
        Boolean
    x11.struct.KeyModMap.mods.Lock  Lock
        Boolean
    x11.struct.KeyModMap.mods.Shift  Shift
        Boolean
    x11.struct.KeyName  KeyName
        No value
    x11.struct.KeyName.name  name
        Unsigned 8-bit integer
    x11.struct.KeySymMap  KeySymMap
        No value
    x11.struct.KeySymMap.groupInfo  groupInfo
        Unsigned 8-bit integer
    x11.struct.KeySymMap.kt_index  kt_index
        Unsigned 8-bit integer
    x11.struct.KeySymMap.nSyms  nSyms
        Unsigned 16-bit integer
    x11.struct.KeySymMap.syms  syms
        No value
    x11.struct.KeySymMap.width  width
        Unsigned 8-bit integer
    x11.struct.KeyType  KeyType
        No value
    x11.struct.KeyType.hasPreserve  hasPreserve
        Boolean
    x11.struct.KeyType.map  map
        No value
    x11.struct.KeyType.mods_mask  mods_mask
        Unsigned 8-bit integer
    x11.struct.KeyType.mods_mask.1  1
        Boolean
    x11.struct.KeyType.mods_mask.2  2
        Boolean
    x11.struct.KeyType.mods_mask.3  3
        Boolean
    x11.struct.KeyType.mods_mask.4  4
        Boolean
    x11.struct.KeyType.mods_mask.5  5
        Boolean
    x11.struct.KeyType.mods_mask.Any  Any
        Boolean
    x11.struct.KeyType.mods_mask.Control  Control
        Boolean
    x11.struct.KeyType.mods_mask.Lock  Lock
        Boolean
    x11.struct.KeyType.mods_mask.Shift  Shift
        Boolean
    x11.struct.KeyType.mods_mods  mods_mods
        Unsigned 8-bit integer
    x11.struct.KeyType.mods_mods.1  1
        Boolean
    x11.struct.KeyType.mods_mods.2  2
        Boolean
    x11.struct.KeyType.mods_mods.3  3
        Boolean
    x11.struct.KeyType.mods_mods.4  4
        Boolean
    x11.struct.KeyType.mods_mods.5  5
        Boolean
    x11.struct.KeyType.mods_mods.Any  Any
        Boolean
    x11.struct.KeyType.mods_mods.Control  Control
        Boolean
    x11.struct.KeyType.mods_mods.Lock  Lock
        Boolean
    x11.struct.KeyType.mods_mods.Shift  Shift
        Boolean
    x11.struct.KeyType.mods_vmods  mods_vmods
        Unsigned 16-bit integer
    x11.struct.KeyType.mods_vmods.0  0
        Boolean
    x11.struct.KeyType.mods_vmods.1  1
        Boolean
    x11.struct.KeyType.mods_vmods.10  10
        Boolean
    x11.struct.KeyType.mods_vmods.11  11
        Boolean
    x11.struct.KeyType.mods_vmods.12  12
        Boolean
    x11.struct.KeyType.mods_vmods.13  13
        Boolean
    x11.struct.KeyType.mods_vmods.14  14
        Boolean
    x11.struct.KeyType.mods_vmods.15  15
        Boolean
    x11.struct.KeyType.mods_vmods.2  2
        Boolean
    x11.struct.KeyType.mods_vmods.3  3
        Boolean
    x11.struct.KeyType.mods_vmods.4  4
        Boolean
    x11.struct.KeyType.mods_vmods.5  5
        Boolean
    x11.struct.KeyType.mods_vmods.6  6
        Boolean
    x11.struct.KeyType.mods_vmods.7  7
        Boolean
    x11.struct.KeyType.mods_vmods.8  8
        Boolean
    x11.struct.KeyType.mods_vmods.9  9
        Boolean
    x11.struct.KeyType.nMapEntries  nMapEntries
        Unsigned 8-bit integer
    x11.struct.KeyType.numLevels  numLevels
        Unsigned 8-bit integer
    x11.struct.KeyType.preserve  preserve
        No value
    x11.struct.KeyVModMap  KeyVModMap
        No value
    x11.struct.KeyVModMap.keycode  keycode
        Unsigned 8-bit integer
    x11.struct.KeyVModMap.vmods  vmods
        Unsigned 16-bit integer
    x11.struct.KeyVModMap.vmods.0  0
        Boolean
    x11.struct.KeyVModMap.vmods.1  1
        Boolean
    x11.struct.KeyVModMap.vmods.10  10
        Boolean
    x11.struct.KeyVModMap.vmods.11  11
        Boolean
    x11.struct.KeyVModMap.vmods.12  12
        Boolean
    x11.struct.KeyVModMap.vmods.13  13
        Boolean
    x11.struct.KeyVModMap.vmods.14  14
        Boolean
    x11.struct.KeyVModMap.vmods.15  15
        Boolean
    x11.struct.KeyVModMap.vmods.2  2
        Boolean
    x11.struct.KeyVModMap.vmods.3  3
        Boolean
    x11.struct.KeyVModMap.vmods.4  4
        Boolean
    x11.struct.KeyVModMap.vmods.5  5
        Boolean
    x11.struct.KeyVModMap.vmods.6  6
        Boolean
    x11.struct.KeyVModMap.vmods.7  7
        Boolean
    x11.struct.KeyVModMap.vmods.8  8
        Boolean
    x11.struct.KeyVModMap.vmods.9  9
        Boolean
    x11.struct.LINEFIX  LINEFIX
        No value
    x11.struct.LINEFIX.p1  p1
        No value
    x11.struct.LINEFIX.p2  p2
        No value
    x11.struct.ListItem  ListItem
        No value
    x11.struct.ListItem.data_context  data_context
        String
    x11.struct.ListItem.data_context_len  data_context_len
        Unsigned 32-bit integer
    x11.struct.ListItem.name  name
        Unsigned 32-bit integer
    x11.struct.ListItem.object_context  object_context
        String
    x11.struct.ListItem.object_context_len  object_context_len
        Unsigned 32-bit integer
    x11.struct.Listing  Listing
        No value
    x11.struct.Listing.flags  flags
        Unsigned 16-bit integer
    x11.struct.Listing.length  length
        Unsigned 16-bit integer
    x11.struct.Listing.string  string
        String
    x11.struct.LogoDoodad  LogoDoodad
        No value
    x11.struct.LogoDoodad.angle  angle
        Signed 16-bit integer
    x11.struct.LogoDoodad.colorNdx  colorNdx
        Unsigned 8-bit integer
    x11.struct.LogoDoodad.left  left
        Signed 16-bit integer
    x11.struct.LogoDoodad.logoName  logoName
        No value
    x11.struct.LogoDoodad.name  name
        Unsigned 32-bit integer
    x11.struct.LogoDoodad.priority  priority
        Unsigned 8-bit integer
    x11.struct.LogoDoodad.shapeNdx  shapeNdx
        Unsigned 8-bit integer
    x11.struct.LogoDoodad.top  top
        Signed 16-bit integer
    x11.struct.LogoDoodad.type  type
        Unsigned 8-bit integer
    x11.struct.ModDef  ModDef
        No value
    x11.struct.ModDef.mask  mask
        Unsigned 8-bit integer
    x11.struct.ModDef.mask.1  1
        Boolean
    x11.struct.ModDef.mask.2  2
        Boolean
    x11.struct.ModDef.mask.3  3
        Boolean
    x11.struct.ModDef.mask.4  4
        Boolean
    x11.struct.ModDef.mask.5  5
        Boolean
    x11.struct.ModDef.mask.Any  Any
        Boolean
    x11.struct.ModDef.mask.Control  Control
        Boolean
    x11.struct.ModDef.mask.Lock  Lock
        Boolean
    x11.struct.ModDef.mask.Shift  Shift
        Boolean
    x11.struct.ModDef.realMods  realMods
        Unsigned 8-bit integer
    x11.struct.ModDef.realMods.1  1
        Boolean
    x11.struct.ModDef.realMods.2  2
        Boolean
    x11.struct.ModDef.realMods.3  3
        Boolean
    x11.struct.ModDef.realMods.4  4
        Boolean
    x11.struct.ModDef.realMods.5  5
        Boolean
    x11.struct.ModDef.realMods.Any  Any
        Boolean
    x11.struct.ModDef.realMods.Control  Control
        Boolean
    x11.struct.ModDef.realMods.Lock  Lock
        Boolean
    x11.struct.ModDef.realMods.Shift  Shift
        Boolean
    x11.struct.ModDef.vmods  vmods
        Unsigned 16-bit integer
    x11.struct.ModDef.vmods.0  0
        Boolean
    x11.struct.ModDef.vmods.1  1
        Boolean
    x11.struct.ModDef.vmods.10  10
        Boolean
    x11.struct.ModDef.vmods.11  11
        Boolean
    x11.struct.ModDef.vmods.12  12
        Boolean
    x11.struct.ModDef.vmods.13  13
        Boolean
    x11.struct.ModDef.vmods.14  14
        Boolean
    x11.struct.ModDef.vmods.15  15
        Boolean
    x11.struct.ModDef.vmods.2  2
        Boolean
    x11.struct.ModDef.vmods.3  3
        Boolean
    x11.struct.ModDef.vmods.4  4
        Boolean
    x11.struct.ModDef.vmods.5  5
        Boolean
    x11.struct.ModDef.vmods.6  6
        Boolean
    x11.struct.ModDef.vmods.7  7
        Boolean
    x11.struct.ModDef.vmods.8  8
        Boolean
    x11.struct.ModDef.vmods.9  9
        Boolean
    x11.struct.ModeInfo  ModeInfo
        No value
    x11.struct.ModeInfo.dot_clock  dot_clock
        Unsigned 32-bit integer
    x11.struct.ModeInfo.height  height
        Unsigned 16-bit integer
    x11.struct.ModeInfo.hskew  hskew
        Unsigned 16-bit integer
    x11.struct.ModeInfo.hsync_end  hsync_end
        Unsigned 16-bit integer
    x11.struct.ModeInfo.hsync_start  hsync_start
        Unsigned 16-bit integer
    x11.struct.ModeInfo.htotal  htotal
        Unsigned 16-bit integer
    x11.struct.ModeInfo.id  id
        Unsigned 32-bit integer
    x11.struct.ModeInfo.mode_flags  mode_flags
        Unsigned 32-bit integer
    x11.struct.ModeInfo.mode_flags.Bcast  Bcast
        Boolean
    x11.struct.ModeInfo.mode_flags.Csync  Csync
        Boolean
    x11.struct.ModeInfo.mode_flags.CsyncNegative  CsyncNegative
        Boolean
    x11.struct.ModeInfo.mode_flags.CsyncPositive  CsyncPositive
        Boolean
    x11.struct.ModeInfo.mode_flags.DoubleClock  DoubleClock
        Boolean
    x11.struct.ModeInfo.mode_flags.DoubleScan  DoubleScan
        Boolean
    x11.struct.ModeInfo.mode_flags.HalveClock  HalveClock
        Boolean
    x11.struct.ModeInfo.mode_flags.HskewPresent  HskewPresent
        Boolean
    x11.struct.ModeInfo.mode_flags.HsyncNegative  HsyncNegative
        Boolean
    x11.struct.ModeInfo.mode_flags.HsyncPositive  HsyncPositive
        Boolean
    x11.struct.ModeInfo.mode_flags.Interlace  Interlace
        Boolean
    x11.struct.ModeInfo.mode_flags.PixelMultiplex  PixelMultiplex
        Boolean
    x11.struct.ModeInfo.mode_flags.VsyncNegative  VsyncNegative
        Boolean
    x11.struct.ModeInfo.mode_flags.VsyncPositive  VsyncPositive
        Boolean
    x11.struct.ModeInfo.name_len  name_len
        Unsigned 16-bit integer
    x11.struct.ModeInfo.vsync_end  vsync_end
        Unsigned 16-bit integer
    x11.struct.ModeInfo.vsync_start  vsync_start
        Unsigned 16-bit integer
    x11.struct.ModeInfo.vtotal  vtotal
        Unsigned 16-bit integer
    x11.struct.ModeInfo.width  width
        Unsigned 16-bit integer
    x11.struct.Outline  Outline
        No value
    x11.struct.Outline.cornerRadius  cornerRadius
        Unsigned 8-bit integer
    x11.struct.Outline.nPoints  nPoints
        Unsigned 8-bit integer
    x11.struct.Outline.points  points
        No value
    x11.struct.OutputChange  OutputChange
        No value
    x11.struct.OutputChange.config_timestamp  config_timestamp
        Unsigned 32-bit integer
    x11.struct.OutputChange.connection  connection
        Unsigned 8-bit integer
    x11.struct.OutputChange.crtc  crtc
        Unsigned 32-bit integer
    x11.struct.OutputChange.mode  mode
        Unsigned 32-bit integer
    x11.struct.OutputChange.output  output
        Unsigned 32-bit integer
    x11.struct.OutputChange.rotation  rotation
        Unsigned 16-bit integer
    x11.struct.OutputChange.rotation.Reflect_X  Reflect_X
        Boolean
    x11.struct.OutputChange.rotation.Reflect_Y  Reflect_Y
        Boolean
    x11.struct.OutputChange.rotation.Rotate_0  Rotate_0
        Boolean
    x11.struct.OutputChange.rotation.Rotate_180  Rotate_180
        Boolean
    x11.struct.OutputChange.rotation.Rotate_270  Rotate_270
        Boolean
    x11.struct.OutputChange.rotation.Rotate_90  Rotate_90
        Boolean
    x11.struct.OutputChange.subpixel_order  subpixel_order
        Unsigned 8-bit integer
    x11.struct.OutputChange.timestamp  timestamp
        Unsigned 32-bit integer
    x11.struct.OutputChange.window  window
        Unsigned 32-bit integer
    x11.struct.OutputProperty  OutputProperty
        No value
    x11.struct.OutputProperty.atom  atom
        Unsigned 32-bit integer
    x11.struct.OutputProperty.output  output
        Unsigned 32-bit integer
    x11.struct.OutputProperty.status  status
        Unsigned 8-bit integer
    x11.struct.OutputProperty.timestamp  timestamp
        Unsigned 32-bit integer
    x11.struct.OutputProperty.window  window
        Unsigned 32-bit integer
    x11.struct.Overlay  Overlay
        No value
    x11.struct.Overlay.nRows  nRows
        Unsigned 8-bit integer
    x11.struct.Overlay.name  name
        Unsigned 32-bit integer
    x11.struct.Overlay.rows  rows
        No value
    x11.struct.Overlay1Behavior  Overlay1Behavior
        No value
    x11.struct.Overlay1Behavior.key  key
        Unsigned 8-bit integer
    x11.struct.Overlay1Behavior.type  type
        Unsigned 8-bit integer
    x11.struct.Overlay2Behavior  Overlay2Behavior
        No value
    x11.struct.Overlay2Behavior.key  key
        Unsigned 8-bit integer
    x11.struct.Overlay2Behavior.type  type
        Unsigned 8-bit integer
    x11.struct.OverlayKey  OverlayKey
        No value
    x11.struct.OverlayKey.over  over
        String
    x11.struct.OverlayKey.under  under
        String
    x11.struct.OverlayRow  OverlayRow
        No value
    x11.struct.OverlayRow.keys  keys
        No value
    x11.struct.OverlayRow.nKeys  nKeys
        Unsigned 8-bit integer
    x11.struct.OverlayRow.rowUnder  rowUnder
        Unsigned 8-bit integer
    x11.struct.PICTDEPTH  PICTDEPTH
        No value
    x11.struct.PICTDEPTH.depth  depth
        Unsigned 8-bit integer
    x11.struct.PICTDEPTH.num_visuals  num_visuals
        Unsigned 16-bit integer
    x11.struct.PICTDEPTH.visuals  visuals
        No value
    x11.struct.PICTFORMINFO  PICTFORMINFO
        No value
    x11.struct.PICTFORMINFO.colormap  colormap
        Unsigned 32-bit integer
    x11.struct.PICTFORMINFO.depth  depth
        Unsigned 8-bit integer
    x11.struct.PICTFORMINFO.direct  direct
        No value
    x11.struct.PICTFORMINFO.id  id
        Unsigned 32-bit integer
    x11.struct.PICTFORMINFO.type  type
        Unsigned 8-bit integer
    x11.struct.PICTSCREEN  PICTSCREEN
        No value
    x11.struct.PICTSCREEN.depths  depths
        No value
    x11.struct.PICTSCREEN.fallback  fallback
        Unsigned 32-bit integer
    x11.struct.PICTSCREEN.num_depths  num_depths
        Unsigned 32-bit integer
    x11.struct.PICTVISUAL  PICTVISUAL
        No value
    x11.struct.PICTVISUAL.format  format
        Unsigned 32-bit integer
    x11.struct.PICTVISUAL.visual  visual
        Unsigned 32-bit integer
    x11.struct.POINT  POINT
        No value
    x11.struct.POINT.x  x
        Signed 16-bit integer
    x11.struct.POINT.y  y
        Signed 16-bit integer
    x11.struct.POINTFIX  POINTFIX
        No value
    x11.struct.POINTFIX.x  x
        Signed 32-bit integer
    x11.struct.POINTFIX.y  y
        Signed 32-bit integer
    x11.struct.PRINTER  PRINTER
        No value
    x11.struct.PRINTER.descLen  descLen
        Unsigned 32-bit integer
    x11.struct.PRINTER.description  description
        String
    x11.struct.PRINTER.name  name
        String
    x11.struct.PRINTER.nameLen  nameLen
        Unsigned 32-bit integer
    x11.struct.Property  Property
        No value
    x11.struct.Property.name  name
        String
    x11.struct.Property.nameLength  nameLength
        Unsigned 16-bit integer
    x11.struct.Property.value  value
        String
    x11.struct.Property.valueLength  valueLength
        Unsigned 16-bit integer
    x11.struct.RECTANGLE  RECTANGLE
        No value
    x11.struct.RECTANGLE.height  height
        Unsigned 16-bit integer
    x11.struct.RECTANGLE.width  width
        Unsigned 16-bit integer
    x11.struct.RECTANGLE.x  x
        Signed 16-bit integer
    x11.struct.RECTANGLE.y  y
        Signed 16-bit integer
    x11.struct.RadioGroupBehavior  RadioGroupBehavior
        No value
    x11.struct.RadioGroupBehavior.group  group
        Unsigned 8-bit integer
    x11.struct.RadioGroupBehavior.type  type
        Unsigned 8-bit integer
    x11.struct.Range  Range
        No value
    x11.struct.Range.client_died  client_died
        Boolean
    x11.struct.Range.client_started  client_started
        Boolean
    x11.struct.Range.core_replies  core_replies
        No value
    x11.struct.Range.core_requests  core_requests
        No value
    x11.struct.Range.delivered_events  delivered_events
        No value
    x11.struct.Range.device_events  device_events
        No value
    x11.struct.Range.errors  errors
        No value
    x11.struct.Range.ext_replies  ext_replies
        No value
    x11.struct.Range.ext_requests  ext_requests
        No value
    x11.struct.Range16  Range16
        No value
    x11.struct.Range16.first  first
        Unsigned 16-bit integer
    x11.struct.Range16.last  last
        Unsigned 16-bit integer
    x11.struct.Range8  Range8
        No value
    x11.struct.Range8.first  first
        Unsigned 8-bit integer
    x11.struct.Range8.last  last
        Unsigned 8-bit integer
    x11.struct.Rational  Rational
        No value
    x11.struct.Rational.denominator  denominator
        Signed 32-bit integer
    x11.struct.Rational.numerator  numerator
        Signed 32-bit integer
    x11.struct.RefreshRates  RefreshRates
        No value
    x11.struct.RefreshRates.nRates  nRates
        Unsigned 16-bit integer
    x11.struct.RefreshRates.rates  rates
        No value
    x11.struct.Row  Row
        No value
    x11.struct.Row.keys  keys
        No value
    x11.struct.Row.left  left
        Signed 16-bit integer
    x11.struct.Row.nKeys  nKeys
        Unsigned 8-bit integer
    x11.struct.Row.top  top
        Signed 16-bit integer
    x11.struct.Row.vertical  vertical
        Boolean
    x11.struct.SAActionMessage  SAActionMessage
        No value
    x11.struct.SAActionMessage.flags  flags
        Unsigned 8-bit integer
    x11.struct.SAActionMessage.flags.GenKeyEvent  GenKeyEvent
        Boolean
    x11.struct.SAActionMessage.flags.OnPress  OnPress
        Boolean
    x11.struct.SAActionMessage.flags.OnRelease  OnRelease
        Boolean
    x11.struct.SAActionMessage.message  message
        Unsigned 8-bit integer
    x11.struct.SAActionMessage.type  type
        Unsigned 8-bit integer
    x11.struct.SADeviceBtn  SADeviceBtn
        No value
    x11.struct.SADeviceBtn.button  button
        Unsigned 8-bit integer
    x11.struct.SADeviceBtn.count  count
        Unsigned 8-bit integer
    x11.struct.SADeviceBtn.device  device
        Unsigned 8-bit integer
    x11.struct.SADeviceBtn.flags  flags
        Unsigned 8-bit integer
    x11.struct.SADeviceBtn.type  type
        Unsigned 8-bit integer
    x11.struct.SADeviceValuator  SADeviceValuator
        No value
    x11.struct.SADeviceValuator.device  device
        Unsigned 8-bit integer
    x11.struct.SADeviceValuator.type  type
        Unsigned 8-bit integer
    x11.struct.SADeviceValuator.val1index  val1index
        Unsigned 8-bit integer
    x11.struct.SADeviceValuator.val1value  val1value
        Unsigned 8-bit integer
    x11.struct.SADeviceValuator.val1what  val1what
        Unsigned 8-bit integer
    x11.struct.SADeviceValuator.val2index  val2index
        Unsigned 8-bit integer
    x11.struct.SADeviceValuator.val2value  val2value
        Unsigned 8-bit integer
    x11.struct.SADeviceValuator.val2what  val2what
        Unsigned 8-bit integer
    x11.struct.SAIsoLock  SAIsoLock
        No value
    x11.struct.SAIsoLock.affect  affect
        Unsigned 8-bit integer
    x11.struct.SAIsoLock.affect.Ctrls  Ctrls
        Boolean
    x11.struct.SAIsoLock.affect.Group  Group
        Boolean
    x11.struct.SAIsoLock.affect.Mods  Mods
        Boolean
    x11.struct.SAIsoLock.affect.Ptr  Ptr
        Boolean
    x11.struct.SAIsoLock.flags  flags
        Unsigned 8-bit integer
    x11.struct.SAIsoLock.flags.GroupAbsolute  GroupAbsolute
        Boolean
    x11.struct.SAIsoLock.flags.ISODfltIsGroup  ISODfltIsGroup
        Boolean
    x11.struct.SAIsoLock.flags.NoLock  NoLock
        Boolean
    x11.struct.SAIsoLock.flags.NoUnlock  NoUnlock
        Boolean
    x11.struct.SAIsoLock.group  group
        Signed 8-bit integer
    x11.struct.SAIsoLock.mask  mask
        Unsigned 8-bit integer
    x11.struct.SAIsoLock.mask.1  1
        Boolean
    x11.struct.SAIsoLock.mask.2  2
        Boolean
    x11.struct.SAIsoLock.mask.3  3
        Boolean
    x11.struct.SAIsoLock.mask.4  4
        Boolean
    x11.struct.SAIsoLock.mask.5  5
        Boolean
    x11.struct.SAIsoLock.mask.Any  Any
        Boolean
    x11.struct.SAIsoLock.mask.Control  Control
        Boolean
    x11.struct.SAIsoLock.mask.Lock  Lock
        Boolean
    x11.struct.SAIsoLock.mask.Shift  Shift
        Boolean
    x11.struct.SAIsoLock.realMods  realMods
        Unsigned 8-bit integer
    x11.struct.SAIsoLock.realMods.1  1
        Boolean
    x11.struct.SAIsoLock.realMods.2  2
        Boolean
    x11.struct.SAIsoLock.realMods.3  3
        Boolean
    x11.struct.SAIsoLock.realMods.4  4
        Boolean
    x11.struct.SAIsoLock.realMods.5  5
        Boolean
    x11.struct.SAIsoLock.realMods.Any  Any
        Boolean
    x11.struct.SAIsoLock.realMods.Control  Control
        Boolean
    x11.struct.SAIsoLock.realMods.Lock  Lock
        Boolean
    x11.struct.SAIsoLock.realMods.Shift  Shift
        Boolean
    x11.struct.SAIsoLock.type  type
        Unsigned 8-bit integer
    x11.struct.SAIsoLock.vmodsHigh  vmodsHigh
        Unsigned 8-bit integer
    x11.struct.SAIsoLock.vmodsHigh.10  10
        Boolean
    x11.struct.SAIsoLock.vmodsHigh.11  11
        Boolean
    x11.struct.SAIsoLock.vmodsHigh.12  12
        Boolean
    x11.struct.SAIsoLock.vmodsHigh.13  13
        Boolean
    x11.struct.SAIsoLock.vmodsHigh.14  14
        Boolean
    x11.struct.SAIsoLock.vmodsHigh.15  15
        Boolean
    x11.struct.SAIsoLock.vmodsHigh.8  8
        Boolean
    x11.struct.SAIsoLock.vmodsHigh.9  9
        Boolean
    x11.struct.SAIsoLock.vmodsLow  vmodsLow
        Unsigned 8-bit integer
    x11.struct.SAIsoLock.vmodsLow.0  0
        Boolean
    x11.struct.SAIsoLock.vmodsLow.1  1
        Boolean
    x11.struct.SAIsoLock.vmodsLow.2  2
        Boolean
    x11.struct.SAIsoLock.vmodsLow.3  3
        Boolean
    x11.struct.SAIsoLock.vmodsLow.4  4
        Boolean
    x11.struct.SAIsoLock.vmodsLow.5  5
        Boolean
    x11.struct.SAIsoLock.vmodsLow.6  6
        Boolean
    x11.struct.SAIsoLock.vmodsLow.7  7
        Boolean
    x11.struct.SALockDeviceBtn  SALockDeviceBtn
        No value
    x11.struct.SALockDeviceBtn.button  button
        Unsigned 8-bit integer
    x11.struct.SALockDeviceBtn.device  device
        Unsigned 8-bit integer
    x11.struct.SALockDeviceBtn.flags  flags
        Unsigned 8-bit integer
    x11.struct.SALockDeviceBtn.flags.NoLock  NoLock
        Boolean
    x11.struct.SALockDeviceBtn.flags.NoUnlock  NoUnlock
        Boolean
    x11.struct.SALockDeviceBtn.type  type
        Unsigned 8-bit integer
    x11.struct.SALockPtrBtn  SALockPtrBtn
        No value
    x11.struct.SALockPtrBtn.button  button
        Unsigned 8-bit integer
    x11.struct.SALockPtrBtn.flags  flags
        Unsigned 8-bit integer
    x11.struct.SALockPtrBtn.type  type
        Unsigned 8-bit integer
    x11.struct.SAMovePtr  SAMovePtr
        No value
    x11.struct.SAMovePtr.flags  flags
        Unsigned 8-bit integer
    x11.struct.SAMovePtr.flags.MoveAbsoluteX  MoveAbsoluteX
        Boolean
    x11.struct.SAMovePtr.flags.MoveAbsoluteY  MoveAbsoluteY
        Boolean
    x11.struct.SAMovePtr.flags.NoAcceleration  NoAcceleration
        Boolean
    x11.struct.SAMovePtr.type  type
        Unsigned 8-bit integer
    x11.struct.SAMovePtr.xHigh  xHigh
        Signed 8-bit integer
    x11.struct.SAMovePtr.xLow  xLow
        Unsigned 8-bit integer
    x11.struct.SAMovePtr.yHigh  yHigh
        Signed 8-bit integer
    x11.struct.SAMovePtr.yLow  yLow
        Unsigned 8-bit integer
    x11.struct.SANoAction  SANoAction
        No value
    x11.struct.SANoAction.type  type
        Unsigned 8-bit integer
    x11.struct.SAPtrBtn  SAPtrBtn
        No value
    x11.struct.SAPtrBtn.button  button
        Unsigned 8-bit integer
    x11.struct.SAPtrBtn.count  count
        Unsigned 8-bit integer
    x11.struct.SAPtrBtn.flags  flags
        Unsigned 8-bit integer
    x11.struct.SAPtrBtn.type  type
        Unsigned 8-bit integer
    x11.struct.SARedirectKey  SARedirectKey
        No value
    x11.struct.SARedirectKey.mask  mask
        Unsigned 8-bit integer
    x11.struct.SARedirectKey.mask.1  1
        Boolean
    x11.struct.SARedirectKey.mask.2  2
        Boolean
    x11.struct.SARedirectKey.mask.3  3
        Boolean
    x11.struct.SARedirectKey.mask.4  4
        Boolean
    x11.struct.SARedirectKey.mask.5  5
        Boolean
    x11.struct.SARedirectKey.mask.Any  Any
        Boolean
    x11.struct.SARedirectKey.mask.Control  Control
        Boolean
    x11.struct.SARedirectKey.mask.Lock  Lock
        Boolean
    x11.struct.SARedirectKey.mask.Shift  Shift
        Boolean
    x11.struct.SARedirectKey.newkey  newkey
        Unsigned 8-bit integer
    x11.struct.SARedirectKey.realModifiers  realModifiers
        Unsigned 8-bit integer
    x11.struct.SARedirectKey.realModifiers.1  1
        Boolean
    x11.struct.SARedirectKey.realModifiers.2  2
        Boolean
    x11.struct.SARedirectKey.realModifiers.3  3
        Boolean
    x11.struct.SARedirectKey.realModifiers.4  4
        Boolean
    x11.struct.SARedirectKey.realModifiers.5  5
        Boolean
    x11.struct.SARedirectKey.realModifiers.Any  Any
        Boolean
    x11.struct.SARedirectKey.realModifiers.Control  Control
        Boolean
    x11.struct.SARedirectKey.realModifiers.Lock  Lock
        Boolean
    x11.struct.SARedirectKey.realModifiers.Shift  Shift
        Boolean
    x11.struct.SARedirectKey.type  type
        Unsigned 8-bit integer
    x11.struct.SARedirectKey.vmodsHigh  vmodsHigh
        Unsigned 8-bit integer
    x11.struct.SARedirectKey.vmodsHigh.10  10
        Boolean
    x11.struct.SARedirectKey.vmodsHigh.11  11
        Boolean
    x11.struct.SARedirectKey.vmodsHigh.12  12
        Boolean
    x11.struct.SARedirectKey.vmodsHigh.13  13
        Boolean
    x11.struct.SARedirectKey.vmodsHigh.14  14
        Boolean
    x11.struct.SARedirectKey.vmodsHigh.15  15
        Boolean
    x11.struct.SARedirectKey.vmodsHigh.8  8
        Boolean
    x11.struct.SARedirectKey.vmodsHigh.9  9
        Boolean
    x11.struct.SARedirectKey.vmodsLow  vmodsLow
        Unsigned 8-bit integer
    x11.struct.SARedirectKey.vmodsLow.0  0
        Boolean
    x11.struct.SARedirectKey.vmodsLow.1  1
        Boolean
    x11.struct.SARedirectKey.vmodsLow.2  2
        Boolean
    x11.struct.SARedirectKey.vmodsLow.3  3
        Boolean
    x11.struct.SARedirectKey.vmodsLow.4  4
        Boolean
    x11.struct.SARedirectKey.vmodsLow.5  5
        Boolean
    x11.struct.SARedirectKey.vmodsLow.6  6
        Boolean
    x11.struct.SARedirectKey.vmodsLow.7  7
        Boolean
    x11.struct.SARedirectKey.vmodsMaskHigh  vmodsMaskHigh
        Unsigned 8-bit integer
    x11.struct.SARedirectKey.vmodsMaskHigh.10  10
        Boolean
    x11.struct.SARedirectKey.vmodsMaskHigh.11  11
        Boolean
    x11.struct.SARedirectKey.vmodsMaskHigh.12  12
        Boolean
    x11.struct.SARedirectKey.vmodsMaskHigh.13  13
        Boolean
    x11.struct.SARedirectKey.vmodsMaskHigh.14  14
        Boolean
    x11.struct.SARedirectKey.vmodsMaskHigh.15  15
        Boolean
    x11.struct.SARedirectKey.vmodsMaskHigh.8  8
        Boolean
    x11.struct.SARedirectKey.vmodsMaskHigh.9  9
        Boolean
    x11.struct.SARedirectKey.vmodsMaskLow  vmodsMaskLow
        Unsigned 8-bit integer
    x11.struct.SARedirectKey.vmodsMaskLow.0  0
        Boolean
    x11.struct.SARedirectKey.vmodsMaskLow.1  1
        Boolean
    x11.struct.SARedirectKey.vmodsMaskLow.2  2
        Boolean
    x11.struct.SARedirectKey.vmodsMaskLow.3  3
        Boolean
    x11.struct.SARedirectKey.vmodsMaskLow.4  4
        Boolean
    x11.struct.SARedirectKey.vmodsMaskLow.5  5
        Boolean
    x11.struct.SARedirectKey.vmodsMaskLow.6  6
        Boolean
    x11.struct.SARedirectKey.vmodsMaskLow.7  7
        Boolean
    x11.struct.SASetControls  SASetControls
        No value
    x11.struct.SASetControls.boolCtrlsHigh  boolCtrlsHigh
        Unsigned 8-bit integer
    x11.struct.SASetControls.boolCtrlsHigh.AccessXFeedback  AccessXFeedback
        Boolean
    x11.struct.SASetControls.boolCtrlsHigh.AudibleBell  AudibleBell
        Boolean
    x11.struct.SASetControls.boolCtrlsHigh.IgnoreGroupLock  IgnoreGroupLock
        Boolean
    x11.struct.SASetControls.boolCtrlsHigh.Overlay1  Overlay1
        Boolean
    x11.struct.SASetControls.boolCtrlsHigh.Overlay2  Overlay2
        Boolean
    x11.struct.SASetControls.boolCtrlsLow  boolCtrlsLow
        Unsigned 8-bit integer
    x11.struct.SASetControls.boolCtrlsLow.AccessXKeys  AccessXKeys
        Boolean
    x11.struct.SASetControls.boolCtrlsLow.AccessXTimeout  AccessXTimeout
        Boolean
    x11.struct.SASetControls.boolCtrlsLow.BounceKeys  BounceKeys
        Boolean
    x11.struct.SASetControls.boolCtrlsLow.MouseKeys  MouseKeys
        Boolean
    x11.struct.SASetControls.boolCtrlsLow.MouseKeysAccel  MouseKeysAccel
        Boolean
    x11.struct.SASetControls.boolCtrlsLow.RepeatKeys  RepeatKeys
        Boolean
    x11.struct.SASetControls.boolCtrlsLow.SlowKeys  SlowKeys
        Boolean
    x11.struct.SASetControls.boolCtrlsLow.StickyKeys  StickyKeys
        Boolean
    x11.struct.SASetControls.type  type
        Unsigned 8-bit integer
    x11.struct.SASetGroup  SASetGroup
        No value
    x11.struct.SASetGroup.flags  flags
        Unsigned 8-bit integer
    x11.struct.SASetGroup.flags.ClearLocks  ClearLocks
        Boolean
    x11.struct.SASetGroup.flags.GroupAbsolute  GroupAbsolute
        Boolean
    x11.struct.SASetGroup.flags.LatchToLock  LatchToLock
        Boolean
    x11.struct.SASetGroup.group  group
        Signed 8-bit integer
    x11.struct.SASetGroup.type  type
        Unsigned 8-bit integer
    x11.struct.SASetMods  SASetMods
        No value
    x11.struct.SASetMods.flags  flags
        Unsigned 8-bit integer
    x11.struct.SASetMods.flags.ClearLocks  ClearLocks
        Boolean
    x11.struct.SASetMods.flags.GroupAbsolute  GroupAbsolute
        Boolean
    x11.struct.SASetMods.flags.LatchToLock  LatchToLock
        Boolean
    x11.struct.SASetMods.mask  mask
        Unsigned 8-bit integer
    x11.struct.SASetMods.mask.1  1
        Boolean
    x11.struct.SASetMods.mask.2  2
        Boolean
    x11.struct.SASetMods.mask.3  3
        Boolean
    x11.struct.SASetMods.mask.4  4
        Boolean
    x11.struct.SASetMods.mask.5  5
        Boolean
    x11.struct.SASetMods.mask.Any  Any
        Boolean
    x11.struct.SASetMods.mask.Control  Control
        Boolean
    x11.struct.SASetMods.mask.Lock  Lock
        Boolean
    x11.struct.SASetMods.mask.Shift  Shift
        Boolean
    x11.struct.SASetMods.realMods  realMods
        Unsigned 8-bit integer
    x11.struct.SASetMods.realMods.1  1
        Boolean
    x11.struct.SASetMods.realMods.2  2
        Boolean
    x11.struct.SASetMods.realMods.3  3
        Boolean
    x11.struct.SASetMods.realMods.4  4
        Boolean
    x11.struct.SASetMods.realMods.5  5
        Boolean
    x11.struct.SASetMods.realMods.Any  Any
        Boolean
    x11.struct.SASetMods.realMods.Control  Control
        Boolean
    x11.struct.SASetMods.realMods.Lock  Lock
        Boolean
    x11.struct.SASetMods.realMods.Shift  Shift
        Boolean
    x11.struct.SASetMods.type  type
        Unsigned 8-bit integer
    x11.struct.SASetMods.vmodsHigh  vmodsHigh
        Unsigned 8-bit integer
    x11.struct.SASetMods.vmodsHigh.10  10
        Boolean
    x11.struct.SASetMods.vmodsHigh.11  11
        Boolean
    x11.struct.SASetMods.vmodsHigh.12  12
        Boolean
    x11.struct.SASetMods.vmodsHigh.13  13
        Boolean
    x11.struct.SASetMods.vmodsHigh.14  14
        Boolean
    x11.struct.SASetMods.vmodsHigh.15  15
        Boolean
    x11.struct.SASetMods.vmodsHigh.8  8
        Boolean
    x11.struct.SASetMods.vmodsHigh.9  9
        Boolean
    x11.struct.SASetMods.vmodsLow  vmodsLow
        Unsigned 8-bit integer
    x11.struct.SASetMods.vmodsLow.0  0
        Boolean
    x11.struct.SASetMods.vmodsLow.1  1
        Boolean
    x11.struct.SASetMods.vmodsLow.2  2
        Boolean
    x11.struct.SASetMods.vmodsLow.3  3
        Boolean
    x11.struct.SASetMods.vmodsLow.4  4
        Boolean
    x11.struct.SASetMods.vmodsLow.5  5
        Boolean
    x11.struct.SASetMods.vmodsLow.6  6
        Boolean
    x11.struct.SASetMods.vmodsLow.7  7
        Boolean
    x11.struct.SASetPtrDflt  SASetPtrDflt
        No value
    x11.struct.SASetPtrDflt.affect  affect
        Unsigned 8-bit integer
    x11.struct.SASetPtrDflt.affect.AffectDfltButton  AffectDfltButton
        Boolean
    x11.struct.SASetPtrDflt.affect.DfltBtnAbsolute  DfltBtnAbsolute
        Boolean
    x11.struct.SASetPtrDflt.flags  flags
        Unsigned 8-bit integer
    x11.struct.SASetPtrDflt.flags.AffectDfltButton  AffectDfltButton
        Boolean
    x11.struct.SASetPtrDflt.flags.DfltBtnAbsolute  DfltBtnAbsolute
        Boolean
    x11.struct.SASetPtrDflt.type  type
        Unsigned 8-bit integer
    x11.struct.SASetPtrDflt.value  value
        Signed 8-bit integer
    x11.struct.SASwitchScreen  SASwitchScreen
        No value
    x11.struct.SASwitchScreen.flags  flags
        Unsigned 8-bit integer
    x11.struct.SASwitchScreen.newScreen  newScreen
        Signed 8-bit integer
    x11.struct.SASwitchScreen.type  type
        Unsigned 8-bit integer
    x11.struct.SATerminate  SATerminate
        No value
    x11.struct.SATerminate.type  type
        Unsigned 8-bit integer
    x11.struct.SPANFIX  SPANFIX
        No value
    x11.struct.SPANFIX.l  l
        Signed 32-bit integer
    x11.struct.SPANFIX.r  r
        Signed 32-bit integer
    x11.struct.SPANFIX.y  y
        Signed 32-bit integer
    x11.struct.STR  STR
        No value
    x11.struct.STR.name  name
        String
    x11.struct.STR.name_len  name_len
        Unsigned 8-bit integer
    x11.struct.SYSTEMCOUNTER  SYSTEMCOUNTER
        No value
    x11.struct.SYSTEMCOUNTER.counter  counter
        Unsigned 32-bit integer
    x11.struct.SYSTEMCOUNTER.name  name
        String
    x11.struct.SYSTEMCOUNTER.name_len  name_len
        Unsigned 16-bit integer
    x11.struct.SYSTEMCOUNTER.resolution  resolution
        No value
    x11.struct.ScreenInfo  ScreenInfo
        No value
    x11.struct.ScreenInfo.height  height
        Unsigned 16-bit integer
    x11.struct.ScreenInfo.width  width
        Unsigned 16-bit integer
    x11.struct.ScreenInfo.x_org  x_org
        Signed 16-bit integer
    x11.struct.ScreenInfo.y_org  y_org
        Signed 16-bit integer
    x11.struct.ScreenSize  ScreenSize
        No value
    x11.struct.ScreenSize.height  height
        Unsigned 16-bit integer
    x11.struct.ScreenSize.mheight  mheight
        Unsigned 16-bit integer
    x11.struct.ScreenSize.mwidth  mwidth
        Unsigned 16-bit integer
    x11.struct.ScreenSize.width  width
        Unsigned 16-bit integer
    x11.struct.Section  Section
        No value
    x11.struct.Section.angle  angle
        Signed 16-bit integer
    x11.struct.Section.doodads  doodads
        No value
    x11.struct.Section.height  height
        Unsigned 16-bit integer
    x11.struct.Section.left  left
        Signed 16-bit integer
    x11.struct.Section.nDoodads  nDoodads
        Unsigned 8-bit integer
    x11.struct.Section.nOverlays  nOverlays
        Unsigned 8-bit integer
    x11.struct.Section.nRows  nRows
        Unsigned 8-bit integer
    x11.struct.Section.name  name
        Unsigned 32-bit integer
    x11.struct.Section.overlays  overlays
        No value
    x11.struct.Section.priority  priority
        Unsigned 8-bit integer
    x11.struct.Section.rows  rows
        No value
    x11.struct.Section.top  top
        Signed 16-bit integer
    x11.struct.Section.width  width
        Unsigned 16-bit integer
    x11.struct.SetBehavior  SetBehavior
        No value
    x11.struct.SetBehavior.behavior  behavior
        No value
    x11.struct.SetBehavior.keycode  keycode
        Unsigned 8-bit integer
    x11.struct.SetExplicit  SetExplicit
        No value
    x11.struct.SetExplicit.explicit  explicit
        Unsigned 8-bit integer
    x11.struct.SetExplicit.explicit.AutoRepeat  AutoRepeat
        Boolean
    x11.struct.SetExplicit.explicit.Behavior  Behavior
        Boolean
    x11.struct.SetExplicit.explicit.Interpret  Interpret
        Boolean
    x11.struct.SetExplicit.explicit.KeyType1  KeyType1
        Boolean
    x11.struct.SetExplicit.explicit.KeyType2  KeyType2
        Boolean
    x11.struct.SetExplicit.explicit.KeyType3  KeyType3
        Boolean
    x11.struct.SetExplicit.explicit.KeyType4  KeyType4
        Boolean
    x11.struct.SetExplicit.explicit.VModMap  VModMap
        Boolean
    x11.struct.SetExplicit.keycode  keycode
        Unsigned 8-bit integer
    x11.struct.SetKeyType  SetKeyType
        No value
    x11.struct.SetKeyType.entries  entries
        No value
    x11.struct.SetKeyType.mask  mask
        Unsigned 8-bit integer
    x11.struct.SetKeyType.mask.1  1
        Boolean
    x11.struct.SetKeyType.mask.2  2
        Boolean
    x11.struct.SetKeyType.mask.3  3
        Boolean
    x11.struct.SetKeyType.mask.4  4
        Boolean
    x11.struct.SetKeyType.mask.5  5
        Boolean
    x11.struct.SetKeyType.mask.Any  Any
        Boolean
    x11.struct.SetKeyType.mask.Control  Control
        Boolean
    x11.struct.SetKeyType.mask.Lock  Lock
        Boolean
    x11.struct.SetKeyType.mask.Shift  Shift
        Boolean
    x11.struct.SetKeyType.nMapEntries  nMapEntries
        Unsigned 8-bit integer
    x11.struct.SetKeyType.numLevels  numLevels
        Unsigned 8-bit integer
    x11.struct.SetKeyType.preserve  preserve
        Boolean
    x11.struct.SetKeyType.preserve_entries  preserve_entries
        No value
    x11.struct.SetKeyType.realMods  realMods
        Unsigned 8-bit integer
    x11.struct.SetKeyType.realMods.1  1
        Boolean
    x11.struct.SetKeyType.realMods.2  2
        Boolean
    x11.struct.SetKeyType.realMods.3  3
        Boolean
    x11.struct.SetKeyType.realMods.4  4
        Boolean
    x11.struct.SetKeyType.realMods.5  5
        Boolean
    x11.struct.SetKeyType.realMods.Any  Any
        Boolean
    x11.struct.SetKeyType.realMods.Control  Control
        Boolean
    x11.struct.SetKeyType.realMods.Lock  Lock
        Boolean
    x11.struct.SetKeyType.realMods.Shift  Shift
        Boolean
    x11.struct.SetKeyType.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.struct.SetKeyType.virtualMods.0  0
        Boolean
    x11.struct.SetKeyType.virtualMods.1  1
        Boolean
    x11.struct.SetKeyType.virtualMods.10  10
        Boolean
    x11.struct.SetKeyType.virtualMods.11  11
        Boolean
    x11.struct.SetKeyType.virtualMods.12  12
        Boolean
    x11.struct.SetKeyType.virtualMods.13  13
        Boolean
    x11.struct.SetKeyType.virtualMods.14  14
        Boolean
    x11.struct.SetKeyType.virtualMods.15  15
        Boolean
    x11.struct.SetKeyType.virtualMods.2  2
        Boolean
    x11.struct.SetKeyType.virtualMods.3  3
        Boolean
    x11.struct.SetKeyType.virtualMods.4  4
        Boolean
    x11.struct.SetKeyType.virtualMods.5  5
        Boolean
    x11.struct.SetKeyType.virtualMods.6  6
        Boolean
    x11.struct.SetKeyType.virtualMods.7  7
        Boolean
    x11.struct.SetKeyType.virtualMods.8  8
        Boolean
    x11.struct.SetKeyType.virtualMods.9  9
        Boolean
    x11.struct.Shape  Shape
        No value
    x11.struct.Shape.approxNdx  approxNdx
        Unsigned 8-bit integer
    x11.struct.Shape.nOutlines  nOutlines
        Unsigned 8-bit integer
    x11.struct.Shape.name  name
        Unsigned 32-bit integer
    x11.struct.Shape.outlines  outlines
        No value
    x11.struct.Shape.primaryNdx  primaryNdx
        Unsigned 8-bit integer
    x11.struct.ShapeDoodad  ShapeDoodad
        No value
    x11.struct.ShapeDoodad.angle  angle
        Signed 16-bit integer
    x11.struct.ShapeDoodad.colorNdx  colorNdx
        Unsigned 8-bit integer
    x11.struct.ShapeDoodad.left  left
        Signed 16-bit integer
    x11.struct.ShapeDoodad.name  name
        Unsigned 32-bit integer
    x11.struct.ShapeDoodad.priority  priority
        Unsigned 8-bit integer
    x11.struct.ShapeDoodad.shapeNdx  shapeNdx
        Unsigned 8-bit integer
    x11.struct.ShapeDoodad.top  top
        Signed 16-bit integer
    x11.struct.ShapeDoodad.type  type
        Unsigned 8-bit integer
    x11.struct.SurfaceInfo  SurfaceInfo
        No value
    x11.struct.SurfaceInfo.chroma_format  chroma_format
        Unsigned 16-bit integer
    x11.struct.SurfaceInfo.flags  flags
        Unsigned 32-bit integer
    x11.struct.SurfaceInfo.id  id
        Unsigned 32-bit integer
    x11.struct.SurfaceInfo.max_height  max_height
        Unsigned 16-bit integer
    x11.struct.SurfaceInfo.max_width  max_width
        Unsigned 16-bit integer
    x11.struct.SurfaceInfo.mc_type  mc_type
        Unsigned 32-bit integer
    x11.struct.SurfaceInfo.pad0  pad0
        Unsigned 16-bit integer
    x11.struct.SurfaceInfo.subpicture_max_height  subpicture_max_height
        Unsigned 16-bit integer
    x11.struct.SurfaceInfo.subpicture_max_width  subpicture_max_width
        Unsigned 16-bit integer
    x11.struct.TRANSFORM  TRANSFORM
        No value
    x11.struct.TRANSFORM.matrix11  matrix11
        Signed 32-bit integer
    x11.struct.TRANSFORM.matrix12  matrix12
        Signed 32-bit integer
    x11.struct.TRANSFORM.matrix13  matrix13
        Signed 32-bit integer
    x11.struct.TRANSFORM.matrix21  matrix21
        Signed 32-bit integer
    x11.struct.TRANSFORM.matrix22  matrix22
        Signed 32-bit integer
    x11.struct.TRANSFORM.matrix23  matrix23
        Signed 32-bit integer
    x11.struct.TRANSFORM.matrix31  matrix31
        Signed 32-bit integer
    x11.struct.TRANSFORM.matrix32  matrix32
        Signed 32-bit integer
    x11.struct.TRANSFORM.matrix33  matrix33
        Signed 32-bit integer
    x11.struct.TRAP  TRAP
        No value
    x11.struct.TRAP.bot  bot
        No value
    x11.struct.TRAP.top  top
        No value
    x11.struct.TRAPEZOID  TRAPEZOID
        No value
    x11.struct.TRAPEZOID.bottom  bottom
        Signed 32-bit integer
    x11.struct.TRAPEZOID.left  left
        No value
    x11.struct.TRAPEZOID.right  right
        No value
    x11.struct.TRAPEZOID.top  top
        Signed 32-bit integer
    x11.struct.TRIANGLE  TRIANGLE
        No value
    x11.struct.TRIANGLE.p1  p1
        No value
    x11.struct.TRIANGLE.p2  p2
        No value
    x11.struct.TRIANGLE.p3  p3
        No value
    x11.struct.TRIGGER  TRIGGER
        No value
    x11.struct.TRIGGER.counter  counter
        Unsigned 32-bit integer
    x11.struct.TRIGGER.test_type  test_type
        Unsigned 32-bit integer
    x11.struct.TRIGGER.wait_type  wait_type
        Unsigned 32-bit integer
    x11.struct.TRIGGER.wait_value  wait_value
        No value
    x11.struct.TextDoodad  TextDoodad
        No value
    x11.struct.TextDoodad.angle  angle
        Signed 16-bit integer
    x11.struct.TextDoodad.colorNdx  colorNdx
        Unsigned 8-bit integer
    x11.struct.TextDoodad.font  font
        No value
    x11.struct.TextDoodad.height  height
        Unsigned 16-bit integer
    x11.struct.TextDoodad.left  left
        Signed 16-bit integer
    x11.struct.TextDoodad.name  name
        Unsigned 32-bit integer
    x11.struct.TextDoodad.priority  priority
        Unsigned 8-bit integer
    x11.struct.TextDoodad.text  text
        No value
    x11.struct.TextDoodad.top  top
        Signed 16-bit integer
    x11.struct.TextDoodad.type  type
        Unsigned 8-bit integer
    x11.struct.TextDoodad.width  width
        Unsigned 16-bit integer
    x11.struct.Type  Type
        No value
    x11.struct.Type.count  count
        Unsigned 32-bit integer
    x11.struct.Type.resource_type  resource_type
        Unsigned 32-bit integer
    x11.struct.WAITCONDITION  WAITCONDITION
        No value
    x11.struct.WAITCONDITION.event_threshold  event_threshold
        No value
    x11.struct.WAITCONDITION.trigger  trigger
        No value
    x11.subwindow-mode  subwindow-mode
        Unsigned 8-bit integer
    x11.success  success
        Unsigned 8-bit integer
    x11.sync.AlarmNotify.alarm  alarm
        Unsigned 32-bit integer
    x11.sync.AlarmNotify.alarm_value  alarm_value
        No value
    x11.sync.AlarmNotify.counter_value  counter_value
        No value
    x11.sync.AlarmNotify.kind  kind
        Unsigned 8-bit integer
    x11.sync.AlarmNotify.state  state
        Unsigned 8-bit integer
    x11.sync.AlarmNotify.timestamp  timestamp
        Unsigned 32-bit integer
    x11.sync.Await.wait_list  wait_list
        No value
    x11.sync.ChangeAlarm.id  id
        Unsigned 32-bit integer
    x11.sync.ChangeCounter.amount  amount
        No value
    x11.sync.ChangeCounter.counter  counter
        Unsigned 32-bit integer
    x11.sync.CounterNotify.count  count
        Unsigned 16-bit integer
    x11.sync.CounterNotify.counter  counter
        Unsigned 32-bit integer
    x11.sync.CounterNotify.counter_value  counter_value
        No value
    x11.sync.CounterNotify.destroyed  destroyed
        Boolean
    x11.sync.CounterNotify.kind  kind
        Unsigned 8-bit integer
    x11.sync.CounterNotify.timestamp  timestamp
        Unsigned 32-bit integer
    x11.sync.CounterNotify.wait_value  wait_value
        No value
    x11.sync.CreateAlarm.id  id
        Unsigned 32-bit integer
    x11.sync.CreateCounter.id  id
        Unsigned 32-bit integer
    x11.sync.CreateCounter.initial_value  initial_value
        No value
    x11.sync.DestroyAlarm.alarm  alarm
        Unsigned 32-bit integer
    x11.sync.DestroyCounter.counter  counter
        Unsigned 32-bit integer
    x11.sync.GetPriority.id  id
        Unsigned 32-bit integer
    x11.sync.GetPriority.reply.priority  priority
        Signed 32-bit integer
    x11.sync.Initialize.desired_major_version  desired_major_version
        Unsigned 8-bit integer
    x11.sync.Initialize.desired_minor_version  desired_minor_version
        Unsigned 8-bit integer
    x11.sync.Initialize.reply.major_version  major_version
        Unsigned 8-bit integer
    x11.sync.Initialize.reply.minor_version  minor_version
        Unsigned 8-bit integer
    x11.sync.ListSystemCounters.reply.counters  counters
        No value
    x11.sync.ListSystemCounters.reply.counters_len  counters_len
        Unsigned 32-bit integer
    x11.sync.QueryAlarm.alarm  alarm
        Unsigned 32-bit integer
    x11.sync.QueryAlarm.reply.delta  delta
        No value
    x11.sync.QueryAlarm.reply.events  events
        Boolean
    x11.sync.QueryAlarm.reply.state  state
        Unsigned 8-bit integer
    x11.sync.QueryAlarm.reply.trigger  trigger
        No value
    x11.sync.QueryCounter.counter  counter
        Unsigned 32-bit integer
    x11.sync.QueryCounter.reply.counter_value  counter_value
        No value
    x11.sync.SetCounter.counter  counter
        Unsigned 32-bit integer
    x11.sync.SetCounter.value  value
        No value
    x11.sync.SetPriority.id  id
        Unsigned 32-bit integer
    x11.sync.SetPriority.priority  priority
        Signed 32-bit integer
    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.union.AXOption  AXOption
        No value
    x11.union.AXOption.fbopt  fbopt
        Unsigned 16-bit integer
    x11.union.AXOption.skopt  skopt
        Unsigned 16-bit integer
    x11.union.Action  Action
        No value
    x11.union.Action.devbtn  devbtn
        No value
    x11.union.Action.devval  devval
        No value
    x11.union.Action.isolock  isolock
        No value
    x11.union.Action.latchgroup  latchgroup
        No value
    x11.union.Action.latchmods  latchmods
        No value
    x11.union.Action.lockcontrols  lockcontrols
        No value
    x11.union.Action.lockdevbtn  lockdevbtn
        No value
    x11.union.Action.lockgroup  lockgroup
        No value
    x11.union.Action.lockmods  lockmods
        No value
    x11.union.Action.lockptrbtn  lockptrbtn
        No value
    x11.union.Action.message  message
        No value
    x11.union.Action.moveptr  moveptr
        No value
    x11.union.Action.noaction  noaction
        No value
    x11.union.Action.ptrbtn  ptrbtn
        No value
    x11.union.Action.redirect  redirect
        No value
    x11.union.Action.setcontrols  setcontrols
        No value
    x11.union.Action.setgroup  setgroup
        No value
    x11.union.Action.setmods  setmods
        No value
    x11.union.Action.setptrdflt  setptrdflt
        No value
    x11.union.Action.switchscreen  switchscreen
        No value
    x11.union.Action.terminate  terminate
        No value
    x11.union.Action.type  type
        Unsigned 8-bit integer
    x11.union.Behavior  Behavior
        No value
    x11.union.Behavior.common  common
        No value
    x11.union.Behavior.default  default
        No value
    x11.union.Behavior.lock  lock
        No value
    x11.union.Behavior.overlay1  overlay1
        No value
    x11.union.Behavior.overlay2  overlay2
        No value
    x11.union.Behavior.permamentLock  permamentLock
        No value
    x11.union.Behavior.permamentOverlay1  permamentOverlay1
        No value
    x11.union.Behavior.permamentOverlay2  permamentOverlay2
        No value
    x11.union.Behavior.permamentRadioGroup  permamentRadioGroup
        No value
    x11.union.Behavior.radioGroup  radioGroup
        No value
    x11.union.Behavior.type  type
        Unsigned 8-bit integer
    x11.union.Doodad  Doodad
        No value
    x11.union.Doodad.common  common
        No value
    x11.union.Doodad.indicator  indicator
        No value
    x11.union.Doodad.logo  logo
        No value
    x11.union.Doodad.shape  shape
        No value
    x11.union.Doodad.text  text
        No value
    x11.union.NotifyData  NotifyData
        No value
    x11.union.NotifyData.cc  cc
        No value
    x11.union.NotifyData.oc  oc
        No value
    x11.union.NotifyData.op  op
        No value
    x11.unused  unused
        No value
    x11.valuelength  valuelength
        Unsigned 32-bit integer
    x11.vendor  vendor
        String
    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.xc_misc.GetVersion.client_major_version  client_major_version
        Unsigned 16-bit integer
    x11.xc_misc.GetVersion.client_minor_version  client_minor_version
        Unsigned 16-bit integer
    x11.xc_misc.GetVersion.reply.server_major_version  server_major_version
        Unsigned 16-bit integer
    x11.xc_misc.GetVersion.reply.server_minor_version  server_minor_version
        Unsigned 16-bit integer
    x11.xc_misc.GetXIDList.count  count
        Unsigned 32-bit integer
    x11.xc_misc.GetXIDList.reply.ids  ids
        No value
    x11.xc_misc.GetXIDList.reply.ids_len  ids_len
        Unsigned 32-bit integer
    x11.xc_misc.GetXIDRange.reply.count  count
        Unsigned 32-bit integer
    x11.xc_misc.GetXIDRange.reply.start_id  start_id
        Unsigned 32-bit integer
    x11.xevie.End.cmap  cmap
        Unsigned 32-bit integer
    x11.xevie.QueryVersion.client_major_version  client_major_version
        Unsigned 16-bit integer
    x11.xevie.QueryVersion.client_minor_version  client_minor_version
        Unsigned 16-bit integer
    x11.xevie.QueryVersion.reply.server_major_version  server_major_version
        Unsigned 16-bit integer
    x11.xevie.QueryVersion.reply.server_minor_version  server_minor_version
        Unsigned 16-bit integer
    x11.xevie.SelectInput.event_mask  event_mask
        Unsigned 32-bit integer
    x11.xevie.Send.data_type  data_type
        Unsigned 32-bit integer
    x11.xevie.Send.event  event
        No value
    x11.xevie.Start.screen  screen
        Unsigned 32-bit integer
    x11.xf86dri.AuthConnection.magic  magic
        Unsigned 32-bit integer
    x11.xf86dri.AuthConnection.reply.authenticated  authenticated
        Unsigned 32-bit integer
    x11.xf86dri.AuthConnection.screen  screen
        Unsigned 32-bit integer
    x11.xf86dri.CloseConnection.screen  screen
        Unsigned 32-bit integer
    x11.xf86dri.CreateContext.context  context
        Unsigned 32-bit integer
    x11.xf86dri.CreateContext.reply.hw_context  hw_context
        Unsigned 32-bit integer
    x11.xf86dri.CreateContext.screen  screen
        Unsigned 32-bit integer
    x11.xf86dri.CreateContext.visual  visual
        Unsigned 32-bit integer
    x11.xf86dri.CreateDrawable.drawable  drawable
        Unsigned 32-bit integer
    x11.xf86dri.CreateDrawable.reply.hw_drawable_handle  hw_drawable_handle
        Unsigned 32-bit integer
    x11.xf86dri.CreateDrawable.screen  screen
        Unsigned 32-bit integer
    x11.xf86dri.DestroyContext.context  context
        Unsigned 32-bit integer
    x11.xf86dri.DestroyContext.screen  screen
        Unsigned 32-bit integer
    x11.xf86dri.DestroyDrawable.drawable  drawable
        Unsigned 32-bit integer
    x11.xf86dri.DestroyDrawable.screen  screen
        Unsigned 32-bit integer
    x11.xf86dri.GetClientDriverName.reply.client_driver_major_version  client_driver_major_version
        Unsigned 32-bit integer
    x11.xf86dri.GetClientDriverName.reply.client_driver_minor_version  client_driver_minor_version
        Unsigned 32-bit integer
    x11.xf86dri.GetClientDriverName.reply.client_driver_name  client_driver_name
        String
    x11.xf86dri.GetClientDriverName.reply.client_driver_name_len  client_driver_name_len
        Unsigned 32-bit integer
    x11.xf86dri.GetClientDriverName.reply.client_driver_patch_version  client_driver_patch_version
        Unsigned 32-bit integer
    x11.xf86dri.GetClientDriverName.screen  screen
        Unsigned 32-bit integer
    x11.xf86dri.GetDeviceInfo.reply.device_private  device_private
        No value
    x11.xf86dri.GetDeviceInfo.reply.device_private_size  device_private_size
        Unsigned 32-bit integer
    x11.xf86dri.GetDeviceInfo.reply.framebuffer_handle_high  framebuffer_handle_high
        Unsigned 32-bit integer
    x11.xf86dri.GetDeviceInfo.reply.framebuffer_handle_low  framebuffer_handle_low
        Unsigned 32-bit integer
    x11.xf86dri.GetDeviceInfo.reply.framebuffer_origin_offset  framebuffer_origin_offset
        Unsigned 32-bit integer
    x11.xf86dri.GetDeviceInfo.reply.framebuffer_size  framebuffer_size
        Unsigned 32-bit integer
    x11.xf86dri.GetDeviceInfo.reply.framebuffer_stride  framebuffer_stride
        Unsigned 32-bit integer
    x11.xf86dri.GetDeviceInfo.screen  screen
        Unsigned 32-bit integer
    x11.xf86dri.GetDrawableInfo.drawable  drawable
        Unsigned 32-bit integer
    x11.xf86dri.GetDrawableInfo.reply.clip_rects  clip_rects
        No value
    x11.xf86dri.GetDrawableInfo.reply.drawable_origin_X  drawable_origin_X
        Signed 16-bit integer
    x11.xf86dri.GetDrawableInfo.reply.drawable_origin_Y  drawable_origin_Y
        Signed 16-bit integer
    x11.xf86dri.GetDrawableInfo.reply.drawable_size_H  drawable_size_H
        Signed 16-bit integer
    x11.xf86dri.GetDrawableInfo.reply.drawable_size_W  drawable_size_W
        Signed 16-bit integer
    x11.xf86dri.GetDrawableInfo.reply.drawable_table_index  drawable_table_index
        Unsigned 32-bit integer
    x11.xf86dri.GetDrawableInfo.reply.drawable_table_stamp  drawable_table_stamp
        Unsigned 32-bit integer
    x11.xf86dri.GetDrawableInfo.reply.num_clip_rects  num_clip_rects
        Unsigned 32-bit integer
    x11.xf86dri.GetDrawableInfo.screen  screen
        Unsigned 32-bit integer
    x11.xf86dri.OpenConnection.reply.bus_id  bus_id
        String
    x11.xf86dri.OpenConnection.reply.bus_id_len  bus_id_len
        Unsigned 32-bit integer
    x11.xf86dri.OpenConnection.reply.sarea_handle_high  sarea_handle_high
        Unsigned 32-bit integer
    x11.xf86dri.OpenConnection.reply.sarea_handle_low  sarea_handle_low
        Unsigned 32-bit integer
    x11.xf86dri.OpenConnection.screen  screen
        Unsigned 32-bit integer
    x11.xf86dri.QueryDirectRenderingCapable.reply.is_capable  is_capable
        Boolean
    x11.xf86dri.QueryDirectRenderingCapable.screen  screen
        Unsigned 32-bit integer
    x11.xf86dri.QueryVersion.reply.dri_major_version  dri_major_version
        Unsigned 16-bit integer
    x11.xf86dri.QueryVersion.reply.dri_minor_patch  dri_minor_patch
        Unsigned 32-bit integer
    x11.xf86dri.QueryVersion.reply.dri_minor_version  dri_minor_version
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.after_dotclock  after_dotclock
        Unsigned 32-bit integer
    x11.xf86vidmode.AddModeLine.after_flags  after_flags
        Unsigned 32-bit integer
    x11.xf86vidmode.AddModeLine.after_flags.Bcast  Bcast
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.Csync  Csync
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.CsyncNegative  CsyncNegative
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.CsyncPositive  CsyncPositive
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.DoubleClock  DoubleClock
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.DoubleScan  DoubleScan
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.HalveClock  HalveClock
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.HskewPresent  HskewPresent
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.HsyncNegative  HsyncNegative
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.HsyncPositive  HsyncPositive
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.Interlace  Interlace
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.PixelMultiplex  PixelMultiplex
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.VsyncNegative  VsyncNegative
        Boolean
    x11.xf86vidmode.AddModeLine.after_flags.VsyncPositive  VsyncPositive
        Boolean
    x11.xf86vidmode.AddModeLine.after_hdisplay  after_hdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.after_hskew  after_hskew
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.after_hsyncend  after_hsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.after_hsyncstart  after_hsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.after_htotal  after_htotal
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.after_vdisplay  after_vdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.after_vsyncend  after_vsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.after_vsyncstart  after_vsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.after_vtotal  after_vtotal
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.dotclock  dotclock
        Unsigned 32-bit integer
    x11.xf86vidmode.AddModeLine.flags  flags
        Unsigned 32-bit integer
    x11.xf86vidmode.AddModeLine.flags.Bcast  Bcast
        Boolean
    x11.xf86vidmode.AddModeLine.flags.Csync  Csync
        Boolean
    x11.xf86vidmode.AddModeLine.flags.CsyncNegative  CsyncNegative
        Boolean
    x11.xf86vidmode.AddModeLine.flags.CsyncPositive  CsyncPositive
        Boolean
    x11.xf86vidmode.AddModeLine.flags.DoubleClock  DoubleClock
        Boolean
    x11.xf86vidmode.AddModeLine.flags.DoubleScan  DoubleScan
        Boolean
    x11.xf86vidmode.AddModeLine.flags.HalveClock  HalveClock
        Boolean
    x11.xf86vidmode.AddModeLine.flags.HskewPresent  HskewPresent
        Boolean
    x11.xf86vidmode.AddModeLine.flags.HsyncNegative  HsyncNegative
        Boolean
    x11.xf86vidmode.AddModeLine.flags.HsyncPositive  HsyncPositive
        Boolean
    x11.xf86vidmode.AddModeLine.flags.Interlace  Interlace
        Boolean
    x11.xf86vidmode.AddModeLine.flags.PixelMultiplex  PixelMultiplex
        Boolean
    x11.xf86vidmode.AddModeLine.flags.VsyncNegative  VsyncNegative
        Boolean
    x11.xf86vidmode.AddModeLine.flags.VsyncPositive  VsyncPositive
        Boolean
    x11.xf86vidmode.AddModeLine.hdisplay  hdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.hskew  hskew
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.hsyncend  hsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.hsyncstart  hsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.htotal  htotal
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.private  private
        Unsigned 8-bit integer
    x11.xf86vidmode.AddModeLine.privsize  privsize
        Unsigned 32-bit integer
    x11.xf86vidmode.AddModeLine.screen  screen
        Unsigned 32-bit integer
    x11.xf86vidmode.AddModeLine.vdisplay  vdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.vsyncend  vsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.vsyncstart  vsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.AddModeLine.vtotal  vtotal
        Unsigned 16-bit integer
    x11.xf86vidmode.DeleteModeLine.dotclock  dotclock
        Unsigned 32-bit integer
    x11.xf86vidmode.DeleteModeLine.flags  flags
        Unsigned 32-bit integer
    x11.xf86vidmode.DeleteModeLine.flags.Bcast  Bcast
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.Csync  Csync
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.CsyncNegative  CsyncNegative
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.CsyncPositive  CsyncPositive
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.DoubleClock  DoubleClock
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.DoubleScan  DoubleScan
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.HalveClock  HalveClock
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.HskewPresent  HskewPresent
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.HsyncNegative  HsyncNegative
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.HsyncPositive  HsyncPositive
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.Interlace  Interlace
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.PixelMultiplex  PixelMultiplex
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.VsyncNegative  VsyncNegative
        Boolean
    x11.xf86vidmode.DeleteModeLine.flags.VsyncPositive  VsyncPositive
        Boolean
    x11.xf86vidmode.DeleteModeLine.hdisplay  hdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.DeleteModeLine.hskew  hskew
        Unsigned 16-bit integer
    x11.xf86vidmode.DeleteModeLine.hsyncend  hsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.DeleteModeLine.hsyncstart  hsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.DeleteModeLine.htotal  htotal
        Unsigned 16-bit integer
    x11.xf86vidmode.DeleteModeLine.private  private
        Unsigned 8-bit integer
    x11.xf86vidmode.DeleteModeLine.privsize  privsize
        Unsigned 32-bit integer
    x11.xf86vidmode.DeleteModeLine.screen  screen
        Unsigned 32-bit integer
    x11.xf86vidmode.DeleteModeLine.vdisplay  vdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.DeleteModeLine.vsyncend  vsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.DeleteModeLine.vsyncstart  vsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.DeleteModeLine.vtotal  vtotal
        Unsigned 16-bit integer
    x11.xf86vidmode.GetAllModeLines.reply.modecount  modecount
        Unsigned 32-bit integer
    x11.xf86vidmode.GetAllModeLines.reply.modeinfo  modeinfo
        No value
    x11.xf86vidmode.GetAllModeLines.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.GetDotClocks.reply.clock  clock
        No value
    x11.xf86vidmode.GetDotClocks.reply.clocks  clocks
        Unsigned 32-bit integer
    x11.xf86vidmode.GetDotClocks.reply.flags  flags
        Unsigned 32-bit integer
    x11.xf86vidmode.GetDotClocks.reply.flags.Programable  Programable
        Boolean
    x11.xf86vidmode.GetDotClocks.reply.maxclocks  maxclocks
        Unsigned 32-bit integer
    x11.xf86vidmode.GetDotClocks.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.GetGamma.reply.blue  blue
        Unsigned 32-bit integer
    x11.xf86vidmode.GetGamma.reply.green  green
        Unsigned 32-bit integer
    x11.xf86vidmode.GetGamma.reply.red  red
        Unsigned 32-bit integer
    x11.xf86vidmode.GetGamma.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.GetGammaRamp.reply.blue  blue
        No value
    x11.xf86vidmode.GetGammaRamp.reply.green  green
        No value
    x11.xf86vidmode.GetGammaRamp.reply.red  red
        No value
    x11.xf86vidmode.GetGammaRamp.reply.size  size
        Unsigned 16-bit integer
    x11.xf86vidmode.GetGammaRamp.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.GetGammaRamp.size  size
        Unsigned 16-bit integer
    x11.xf86vidmode.GetGammaRampSize.reply.size  size
        Unsigned 16-bit integer
    x11.xf86vidmode.GetGammaRampSize.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.GetModeLine.reply.dotclock  dotclock
        Unsigned 32-bit integer
    x11.xf86vidmode.GetModeLine.reply.flags  flags
        Unsigned 32-bit integer
    x11.xf86vidmode.GetModeLine.reply.flags.Bcast  Bcast
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.Csync  Csync
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.CsyncNegative  CsyncNegative
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.CsyncPositive  CsyncPositive
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.DoubleClock  DoubleClock
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.DoubleScan  DoubleScan
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.HalveClock  HalveClock
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.HskewPresent  HskewPresent
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.HsyncNegative  HsyncNegative
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.HsyncPositive  HsyncPositive
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.Interlace  Interlace
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.PixelMultiplex  PixelMultiplex
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.VsyncNegative  VsyncNegative
        Boolean
    x11.xf86vidmode.GetModeLine.reply.flags.VsyncPositive  VsyncPositive
        Boolean
    x11.xf86vidmode.GetModeLine.reply.hdisplay  hdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.GetModeLine.reply.hskew  hskew
        Unsigned 16-bit integer
    x11.xf86vidmode.GetModeLine.reply.hsyncend  hsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.GetModeLine.reply.hsyncstart  hsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.GetModeLine.reply.htotal  htotal
        Unsigned 16-bit integer
    x11.xf86vidmode.GetModeLine.reply.private  private
        Unsigned 8-bit integer
    x11.xf86vidmode.GetModeLine.reply.privsize  privsize
        Unsigned 32-bit integer
    x11.xf86vidmode.GetModeLine.reply.vdisplay  vdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.GetModeLine.reply.vsyncend  vsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.GetModeLine.reply.vsyncstart  vsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.GetModeLine.reply.vtotal  vtotal
        Unsigned 16-bit integer
    x11.xf86vidmode.GetModeLine.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.GetMonitor.reply.alignment_pad  alignment_pad
        Byte array
    x11.xf86vidmode.GetMonitor.reply.hsync  hsync
        No value
    x11.xf86vidmode.GetMonitor.reply.model  model
        String
    x11.xf86vidmode.GetMonitor.reply.model_length  model_length
        Unsigned 8-bit integer
    x11.xf86vidmode.GetMonitor.reply.num_hsync  num_hsync
        Unsigned 8-bit integer
    x11.xf86vidmode.GetMonitor.reply.num_vsync  num_vsync
        Unsigned 8-bit integer
    x11.xf86vidmode.GetMonitor.reply.vendor  vendor
        String
    x11.xf86vidmode.GetMonitor.reply.vendor_length  vendor_length
        Unsigned 8-bit integer
    x11.xf86vidmode.GetMonitor.reply.vsync  vsync
        No value
    x11.xf86vidmode.GetMonitor.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.GetPermissions.reply.permissions  permissions
        Unsigned 32-bit integer
    x11.xf86vidmode.GetPermissions.reply.permissions.Read  Read
        Boolean
    x11.xf86vidmode.GetPermissions.reply.permissions.Write  Write
        Boolean
    x11.xf86vidmode.GetPermissions.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.GetViewPort.reply.x  x
        Unsigned 32-bit integer
    x11.xf86vidmode.GetViewPort.reply.y  y
        Unsigned 32-bit integer
    x11.xf86vidmode.GetViewPort.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.LockModeSwitch.lock  lock
        Unsigned 16-bit integer
    x11.xf86vidmode.LockModeSwitch.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.ModModeLine.flags  flags
        Unsigned 32-bit integer
    x11.xf86vidmode.ModModeLine.flags.Bcast  Bcast
        Boolean
    x11.xf86vidmode.ModModeLine.flags.Csync  Csync
        Boolean
    x11.xf86vidmode.ModModeLine.flags.CsyncNegative  CsyncNegative
        Boolean
    x11.xf86vidmode.ModModeLine.flags.CsyncPositive  CsyncPositive
        Boolean
    x11.xf86vidmode.ModModeLine.flags.DoubleClock  DoubleClock
        Boolean
    x11.xf86vidmode.ModModeLine.flags.DoubleScan  DoubleScan
        Boolean
    x11.xf86vidmode.ModModeLine.flags.HalveClock  HalveClock
        Boolean
    x11.xf86vidmode.ModModeLine.flags.HskewPresent  HskewPresent
        Boolean
    x11.xf86vidmode.ModModeLine.flags.HsyncNegative  HsyncNegative
        Boolean
    x11.xf86vidmode.ModModeLine.flags.HsyncPositive  HsyncPositive
        Boolean
    x11.xf86vidmode.ModModeLine.flags.Interlace  Interlace
        Boolean
    x11.xf86vidmode.ModModeLine.flags.PixelMultiplex  PixelMultiplex
        Boolean
    x11.xf86vidmode.ModModeLine.flags.VsyncNegative  VsyncNegative
        Boolean
    x11.xf86vidmode.ModModeLine.flags.VsyncPositive  VsyncPositive
        Boolean
    x11.xf86vidmode.ModModeLine.hdisplay  hdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.ModModeLine.hskew  hskew
        Unsigned 16-bit integer
    x11.xf86vidmode.ModModeLine.hsyncend  hsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.ModModeLine.hsyncstart  hsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.ModModeLine.htotal  htotal
        Unsigned 16-bit integer
    x11.xf86vidmode.ModModeLine.private  private
        Unsigned 8-bit integer
    x11.xf86vidmode.ModModeLine.privsize  privsize
        Unsigned 32-bit integer
    x11.xf86vidmode.ModModeLine.screen  screen
        Unsigned 32-bit integer
    x11.xf86vidmode.ModModeLine.vdisplay  vdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.ModModeLine.vsyncend  vsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.ModModeLine.vsyncstart  vsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.ModModeLine.vtotal  vtotal
        Unsigned 16-bit integer
    x11.xf86vidmode.QueryVersion.reply.major_version  major_version
        Unsigned 16-bit integer
    x11.xf86vidmode.QueryVersion.reply.minor_version  minor_version
        Unsigned 16-bit integer
    x11.xf86vidmode.SetClientVersion.major  major
        Unsigned 16-bit integer
    x11.xf86vidmode.SetClientVersion.minor  minor
        Unsigned 16-bit integer
    x11.xf86vidmode.SetGamma.blue  blue
        Unsigned 32-bit integer
    x11.xf86vidmode.SetGamma.green  green
        Unsigned 32-bit integer
    x11.xf86vidmode.SetGamma.red  red
        Unsigned 32-bit integer
    x11.xf86vidmode.SetGamma.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.SetGammaRamp.blue  blue
        No value
    x11.xf86vidmode.SetGammaRamp.green  green
        No value
    x11.xf86vidmode.SetGammaRamp.red  red
        No value
    x11.xf86vidmode.SetGammaRamp.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.SetGammaRamp.size  size
        Unsigned 16-bit integer
    x11.xf86vidmode.SetViewPort.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.SetViewPort.x  x
        Unsigned 32-bit integer
    x11.xf86vidmode.SetViewPort.y  y
        Unsigned 32-bit integer
    x11.xf86vidmode.SwitchMode.screen  screen
        Unsigned 16-bit integer
    x11.xf86vidmode.SwitchMode.zoom  zoom
        Unsigned 16-bit integer
    x11.xf86vidmode.SwitchToMode.dotclock  dotclock
        Unsigned 32-bit integer
    x11.xf86vidmode.SwitchToMode.flags  flags
        Unsigned 32-bit integer
    x11.xf86vidmode.SwitchToMode.flags.Bcast  Bcast
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.Csync  Csync
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.CsyncNegative  CsyncNegative
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.CsyncPositive  CsyncPositive
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.DoubleClock  DoubleClock
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.DoubleScan  DoubleScan
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.HalveClock  HalveClock
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.HskewPresent  HskewPresent
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.HsyncNegative  HsyncNegative
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.HsyncPositive  HsyncPositive
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.Interlace  Interlace
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.PixelMultiplex  PixelMultiplex
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.VsyncNegative  VsyncNegative
        Boolean
    x11.xf86vidmode.SwitchToMode.flags.VsyncPositive  VsyncPositive
        Boolean
    x11.xf86vidmode.SwitchToMode.hdisplay  hdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.SwitchToMode.hskew  hskew
        Unsigned 16-bit integer
    x11.xf86vidmode.SwitchToMode.hsyncend  hsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.SwitchToMode.hsyncstart  hsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.SwitchToMode.htotal  htotal
        Unsigned 16-bit integer
    x11.xf86vidmode.SwitchToMode.private  private
        Unsigned 8-bit integer
    x11.xf86vidmode.SwitchToMode.privsize  privsize
        Unsigned 32-bit integer
    x11.xf86vidmode.SwitchToMode.screen  screen
        Unsigned 32-bit integer
    x11.xf86vidmode.SwitchToMode.vdisplay  vdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.SwitchToMode.vsyncend  vsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.SwitchToMode.vsyncstart  vsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.SwitchToMode.vtotal  vtotal
        Unsigned 16-bit integer
    x11.xf86vidmode.ValidateModeLine.dotclock  dotclock
        Unsigned 32-bit integer
    x11.xf86vidmode.ValidateModeLine.flags  flags
        Unsigned 32-bit integer
    x11.xf86vidmode.ValidateModeLine.flags.Bcast  Bcast
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.Csync  Csync
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.CsyncNegative  CsyncNegative
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.CsyncPositive  CsyncPositive
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.DoubleClock  DoubleClock
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.DoubleScan  DoubleScan
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.HalveClock  HalveClock
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.HskewPresent  HskewPresent
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.HsyncNegative  HsyncNegative
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.HsyncPositive  HsyncPositive
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.Interlace  Interlace
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.PixelMultiplex  PixelMultiplex
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.VsyncNegative  VsyncNegative
        Boolean
    x11.xf86vidmode.ValidateModeLine.flags.VsyncPositive  VsyncPositive
        Boolean
    x11.xf86vidmode.ValidateModeLine.hdisplay  hdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.ValidateModeLine.hskew  hskew
        Unsigned 16-bit integer
    x11.xf86vidmode.ValidateModeLine.hsyncend  hsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.ValidateModeLine.hsyncstart  hsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.ValidateModeLine.htotal  htotal
        Unsigned 16-bit integer
    x11.xf86vidmode.ValidateModeLine.private  private
        Unsigned 8-bit integer
    x11.xf86vidmode.ValidateModeLine.privsize  privsize
        Unsigned 32-bit integer
    x11.xf86vidmode.ValidateModeLine.reply.status  status
        Unsigned 32-bit integer
    x11.xf86vidmode.ValidateModeLine.screen  screen
        Unsigned 32-bit integer
    x11.xf86vidmode.ValidateModeLine.vdisplay  vdisplay
        Unsigned 16-bit integer
    x11.xf86vidmode.ValidateModeLine.vsyncend  vsyncend
        Unsigned 16-bit integer
    x11.xf86vidmode.ValidateModeLine.vsyncstart  vsyncstart
        Unsigned 16-bit integer
    x11.xf86vidmode.ValidateModeLine.vtotal  vtotal
        Unsigned 16-bit integer
    x11.xfixes.ChangeCursor.destination  destination
        Unsigned 32-bit integer
    x11.xfixes.ChangeCursor.source  source
        Unsigned 32-bit integer
    x11.xfixes.ChangeCursorByName.name  name
        String
    x11.xfixes.ChangeCursorByName.nbytes  nbytes
        Unsigned 16-bit integer
    x11.xfixes.ChangeCursorByName.src  src
        Unsigned 32-bit integer
    x11.xfixes.ChangeSaveSet.map  map
        Unsigned 8-bit integer
    x11.xfixes.ChangeSaveSet.mode  mode
        Unsigned 8-bit integer
    x11.xfixes.ChangeSaveSet.target  target
        Unsigned 8-bit integer
    x11.xfixes.ChangeSaveSet.window  window
        Unsigned 32-bit integer
    x11.xfixes.CopyRegion.destination  destination
        Unsigned 32-bit integer
    x11.xfixes.CopyRegion.source  source
        Unsigned 32-bit integer
    x11.xfixes.CreateRegion.rectangles  rectangles
        No value
    x11.xfixes.CreateRegion.region  region
        Unsigned 32-bit integer
    x11.xfixes.CreateRegionFromBitmap.bitmap  bitmap
        Unsigned 32-bit integer
    x11.xfixes.CreateRegionFromBitmap.region  region
        Unsigned 32-bit integer
    x11.xfixes.CreateRegionFromGC.gc  gc
        Unsigned 32-bit integer
    x11.xfixes.CreateRegionFromGC.region  region
        Unsigned 32-bit integer
    x11.xfixes.CreateRegionFromPicture.picture  picture
        Unsigned 32-bit integer
    x11.xfixes.CreateRegionFromPicture.region  region
        Unsigned 32-bit integer
    x11.xfixes.CreateRegionFromWindow.kind  kind
        Unsigned 8-bit integer
    x11.xfixes.CreateRegionFromWindow.region  region
        Unsigned 32-bit integer
    x11.xfixes.CreateRegionFromWindow.window  window
        Unsigned 32-bit integer
    x11.xfixes.CursorNotify.cursor_serial  cursor_serial
        Unsigned 32-bit integer
    x11.xfixes.CursorNotify.name  name
        Unsigned 32-bit integer
    x11.xfixes.CursorNotify.subtype  subtype
        Unsigned 8-bit integer
    x11.xfixes.CursorNotify.timestamp  timestamp
        Unsigned 32-bit integer
    x11.xfixes.CursorNotify.window  window
        Unsigned 32-bit integer
    x11.xfixes.DestroyRegion.region  region
        Unsigned 32-bit integer
    x11.xfixes.ExpandRegion.bottom  bottom
        Unsigned 16-bit integer
    x11.xfixes.ExpandRegion.destination  destination
        Unsigned 32-bit integer
    x11.xfixes.ExpandRegion.left  left
        Unsigned 16-bit integer
    x11.xfixes.ExpandRegion.right  right
        Unsigned 16-bit integer
    x11.xfixes.ExpandRegion.source  source
        Unsigned 32-bit integer
    x11.xfixes.ExpandRegion.top  top
        Unsigned 16-bit integer
    x11.xfixes.FetchRegion.region  region
        Unsigned 32-bit integer
    x11.xfixes.FetchRegion.reply.extents  extents
        No value
    x11.xfixes.FetchRegion.reply.rectangles  rectangles
        No value
    x11.xfixes.GetCursorImage.reply.cursor_image  cursor_image
        No value
    x11.xfixes.GetCursorImage.reply.cursor_serial  cursor_serial
        Unsigned 32-bit integer
    x11.xfixes.GetCursorImage.reply.height  height
        Unsigned 16-bit integer
    x11.xfixes.GetCursorImage.reply.width  width
        Unsigned 16-bit integer
    x11.xfixes.GetCursorImage.reply.x  x
        Signed 16-bit integer
    x11.xfixes.GetCursorImage.reply.xhot  xhot
        Unsigned 16-bit integer
    x11.xfixes.GetCursorImage.reply.y  y
        Signed 16-bit integer
    x11.xfixes.GetCursorImage.reply.yhot  yhot
        Unsigned 16-bit integer
    x11.xfixes.GetCursorImageAndName.reply.cursor_atom  cursor_atom
        Unsigned 32-bit integer
    x11.xfixes.GetCursorImageAndName.reply.cursor_image  cursor_image
        No value
    x11.xfixes.GetCursorImageAndName.reply.cursor_serial  cursor_serial
        Unsigned 32-bit integer
    x11.xfixes.GetCursorImageAndName.reply.height  height
        Unsigned 16-bit integer
    x11.xfixes.GetCursorImageAndName.reply.name  name
        String
    x11.xfixes.GetCursorImageAndName.reply.nbytes  nbytes
        Unsigned 16-bit integer
    x11.xfixes.GetCursorImageAndName.reply.width  width
        Unsigned 16-bit integer
    x11.xfixes.GetCursorImageAndName.reply.x  x
        Signed 16-bit integer
    x11.xfixes.GetCursorImageAndName.reply.xhot  xhot
        Unsigned 16-bit integer
    x11.xfixes.GetCursorImageAndName.reply.y  y
        Signed 16-bit integer
    x11.xfixes.GetCursorImageAndName.reply.yhot  yhot
        Unsigned 16-bit integer
    x11.xfixes.GetCursorName.cursor  cursor
        Unsigned 32-bit integer
    x11.xfixes.GetCursorName.reply.atom  atom
        Unsigned 32-bit integer
    x11.xfixes.GetCursorName.reply.name  name
        String
    x11.xfixes.GetCursorName.reply.nbytes  nbytes
        Unsigned 16-bit integer
    x11.xfixes.HideCursor.window  window
        Unsigned 32-bit integer
    x11.xfixes.IntersectRegion.destination  destination
        Unsigned 32-bit integer
    x11.xfixes.IntersectRegion.source1  source1
        Unsigned 32-bit integer
    x11.xfixes.IntersectRegion.source2  source2
        Unsigned 32-bit integer
    x11.xfixes.InvertRegion.bounds  bounds
        No value
    x11.xfixes.InvertRegion.destination  destination
        Unsigned 32-bit integer
    x11.xfixes.InvertRegion.source  source
        Unsigned 32-bit integer
    x11.xfixes.QueryVersion.client_major_version  client_major_version
        Unsigned 32-bit integer
    x11.xfixes.QueryVersion.client_minor_version  client_minor_version
        Unsigned 32-bit integer
    x11.xfixes.QueryVersion.reply.major_version  major_version
        Unsigned 32-bit integer
    x11.xfixes.QueryVersion.reply.minor_version  minor_version
        Unsigned 32-bit integer
    x11.xfixes.RegionExtents.destination  destination
        Unsigned 32-bit integer
    x11.xfixes.RegionExtents.source  source
        Unsigned 32-bit integer
    x11.xfixes.SelectCursorInput.event_mask  event_mask
        Unsigned 32-bit integer
    x11.xfixes.SelectCursorInput.event_mask.DisplayCursor  DisplayCursor
        Boolean
    x11.xfixes.SelectCursorInput.window  window
        Unsigned 32-bit integer
    x11.xfixes.SelectSelectionInput.event_mask  event_mask
        Unsigned 32-bit integer
    x11.xfixes.SelectSelectionInput.event_mask.SelectionClientClose  SelectionClientClose
        Boolean
    x11.xfixes.SelectSelectionInput.event_mask.SelectionWindowDestroy  SelectionWindowDestroy
        Boolean
    x11.xfixes.SelectSelectionInput.event_mask.SetSelectionOwner  SetSelectionOwner
        Boolean
    x11.xfixes.SelectSelectionInput.selection  selection
        Unsigned 32-bit integer
    x11.xfixes.SelectSelectionInput.window  window
        Unsigned 32-bit integer
    x11.xfixes.SelectionNotify.owner  owner
        Unsigned 32-bit integer
    x11.xfixes.SelectionNotify.selection  selection
        Unsigned 32-bit integer
    x11.xfixes.SelectionNotify.selection_timestamp  selection_timestamp
        Unsigned 32-bit integer
    x11.xfixes.SelectionNotify.subtype  subtype
        Unsigned 8-bit integer
    x11.xfixes.SelectionNotify.timestamp  timestamp
        Unsigned 32-bit integer
    x11.xfixes.SelectionNotify.window  window
        Unsigned 32-bit integer
    x11.xfixes.SetCursorName.cursor  cursor
        Unsigned 32-bit integer
    x11.xfixes.SetCursorName.name  name
        String
    x11.xfixes.SetCursorName.nbytes  nbytes
        Unsigned 16-bit integer
    x11.xfixes.SetGCClipRegion.gc  gc
        Unsigned 32-bit integer
    x11.xfixes.SetGCClipRegion.region  region
        Unsigned 32-bit integer
    x11.xfixes.SetGCClipRegion.x_origin  x_origin
        Signed 16-bit integer
    x11.xfixes.SetGCClipRegion.y_origin  y_origin
        Signed 16-bit integer
    x11.xfixes.SetPictureClipRegion.picture  picture
        Unsigned 32-bit integer
    x11.xfixes.SetPictureClipRegion.region  region
        Unsigned 32-bit integer
    x11.xfixes.SetPictureClipRegion.x_origin  x_origin
        Signed 16-bit integer
    x11.xfixes.SetPictureClipRegion.y_origin  y_origin
        Signed 16-bit integer
    x11.xfixes.SetRegion.rectangles  rectangles
        No value
    x11.xfixes.SetRegion.region  region
        Unsigned 32-bit integer
    x11.xfixes.SetWindowShapeRegion.dest  dest
        Unsigned 32-bit integer
    x11.xfixes.SetWindowShapeRegion.dest_kind  dest_kind
        Unsigned 8-bit integer
    x11.xfixes.SetWindowShapeRegion.region  region
        Unsigned 32-bit integer
    x11.xfixes.SetWindowShapeRegion.x_offset  x_offset
        Signed 16-bit integer
    x11.xfixes.SetWindowShapeRegion.y_offset  y_offset
        Signed 16-bit integer
    x11.xfixes.ShowCursor.window  window
        Unsigned 32-bit integer
    x11.xfixes.SubtractRegion.destination  destination
        Unsigned 32-bit integer
    x11.xfixes.SubtractRegion.source1  source1
        Unsigned 32-bit integer
    x11.xfixes.SubtractRegion.source2  source2
        Unsigned 32-bit integer
    x11.xfixes.TranslateRegion.dx  dx
        Signed 16-bit integer
    x11.xfixes.TranslateRegion.dy  dy
        Signed 16-bit integer
    x11.xfixes.TranslateRegion.region  region
        Unsigned 32-bit integer
    x11.xfixes.UnionRegion.destination  destination
        Unsigned 32-bit integer
    x11.xfixes.UnionRegion.source1  source1
        Unsigned 32-bit integer
    x11.xfixes.UnionRegion.source2  source2
        Unsigned 32-bit integer
    x11.xinerama.GetScreenCount.reply.screen_count  screen_count
        Byte array
    x11.xinerama.GetScreenCount.reply.window  window
        Unsigned 32-bit integer
    x11.xinerama.GetScreenCount.window  window
        Unsigned 32-bit integer
    x11.xinerama.GetScreenSize.reply.height  height
        Unsigned 32-bit integer
    x11.xinerama.GetScreenSize.reply.screen  screen
        Unsigned 32-bit integer
    x11.xinerama.GetScreenSize.reply.width  width
        Unsigned 32-bit integer
    x11.xinerama.GetScreenSize.reply.window  window
        Unsigned 32-bit integer
    x11.xinerama.GetScreenSize.screen  screen
        Unsigned 32-bit integer
    x11.xinerama.GetScreenSize.window  window
        Unsigned 32-bit integer
    x11.xinerama.GetState.reply.state  state
        Byte array
    x11.xinerama.GetState.reply.window  window
        Unsigned 32-bit integer
    x11.xinerama.GetState.window  window
        Unsigned 32-bit integer
    x11.xinerama.IsActive.reply.state  state
        Unsigned 32-bit integer
    x11.xinerama.QueryScreens.reply.number  number
        Unsigned 32-bit integer
    x11.xinerama.QueryScreens.reply.screen_info  screen_info
        No value
    x11.xinerama.QueryVersion.major  major
        Unsigned 8-bit integer
    x11.xinerama.QueryVersion.minor  minor
        Unsigned 8-bit integer
    x11.xinerama.QueryVersion.reply.major  major
        Unsigned 16-bit integer
    x11.xinerama.QueryVersion.reply.minor  minor
        Unsigned 16-bit integer
    x11.xinput.AllowDeviceEvents.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.AllowDeviceEvents.mode  mode
        Unsigned 8-bit integer
    x11.xinput.AllowDeviceEvents.time  time
        Unsigned 32-bit integer
    x11.xinput.ChangeDeviceDontPropagateList.classes  classes
        No value
    x11.xinput.ChangeDeviceDontPropagateList.mode  mode
        Unsigned 8-bit integer
    x11.xinput.ChangeDeviceDontPropagateList.num_classes  num_classes
        Unsigned 16-bit integer
    x11.xinput.ChangeDeviceDontPropagateList.window  window
        Unsigned 32-bit integer
    x11.xinput.ChangeDeviceKeyMapping.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.ChangeDeviceKeyMapping.first_keycode  first_keycode
        Unsigned 8-bit integer
    x11.xinput.ChangeDeviceKeyMapping.keycode_count  keycode_count
        Unsigned 8-bit integer
    x11.xinput.ChangeDeviceKeyMapping.keysyms  keysyms
        No value
    x11.xinput.ChangeDeviceKeyMapping.keysyms_per_keycode  keysyms_per_keycode
        Unsigned 8-bit integer
    x11.xinput.ChangeDeviceNotify.device_id  device_id
        Byte array
    x11.xinput.ChangeDeviceNotify.request  request
        Unsigned 8-bit integer
    x11.xinput.ChangeDeviceNotify.time  time
        Unsigned 32-bit integer
    x11.xinput.ChangeKeyboardDevice.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.ChangeKeyboardDevice.reply.status  status
        Unsigned 8-bit integer
    x11.xinput.ChangePointerDevice.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.ChangePointerDevice.reply.status  status
        Unsigned 8-bit integer
    x11.xinput.ChangePointerDevice.x_axis  x_axis
        Unsigned 8-bit integer
    x11.xinput.ChangePointerDevice.y_axis  y_axis
        Unsigned 8-bit integer
    x11.xinput.CloseDevice.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.DeviceBell.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.DeviceBell.feedback_class  feedback_class
        Unsigned 8-bit integer
    x11.xinput.DeviceBell.feedback_id  feedback_id
        Unsigned 8-bit integer
    x11.xinput.DeviceBell.percent  percent
        Signed 8-bit integer
    x11.xinput.DeviceButtonStateNotify.buttons  buttons
        Unsigned 8-bit integer
    x11.xinput.DeviceButtonStateNotify.device_id  device_id
        Byte array
    x11.xinput.DeviceKeyPress.child  child
        Unsigned 32-bit integer
    x11.xinput.DeviceKeyPress.detail  detail
        Byte array
    x11.xinput.DeviceKeyPress.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.DeviceKeyPress.event  event
        Unsigned 32-bit integer
    x11.xinput.DeviceKeyPress.event_x  event_x
        Signed 16-bit integer
    x11.xinput.DeviceKeyPress.event_y  event_y
        Signed 16-bit integer
    x11.xinput.DeviceKeyPress.root  root
        Unsigned 32-bit integer
    x11.xinput.DeviceKeyPress.root_x  root_x
        Signed 16-bit integer
    x11.xinput.DeviceKeyPress.root_y  root_y
        Signed 16-bit integer
    x11.xinput.DeviceKeyPress.same_screen  same_screen
        Boolean
    x11.xinput.DeviceKeyPress.state  state
        Unsigned 16-bit integer
    x11.xinput.DeviceKeyPress.time  time
        Unsigned 32-bit integer
    x11.xinput.DeviceKeyStateNotify.device_id  device_id
        Byte array
    x11.xinput.DeviceKeyStateNotify.keys  keys
        Unsigned 8-bit integer
    x11.xinput.DeviceMappingNotify.count  count
        Unsigned 8-bit integer
    x11.xinput.DeviceMappingNotify.device_id  device_id
        Byte array
    x11.xinput.DeviceMappingNotify.first_keycode  first_keycode
        Unsigned 8-bit integer
    x11.xinput.DeviceMappingNotify.request  request
        Unsigned 8-bit integer
    x11.xinput.DeviceMappingNotify.time  time
        Unsigned 32-bit integer
    x11.xinput.DevicePresenceNotify.control  control
        Unsigned 16-bit integer
    x11.xinput.DevicePresenceNotify.devchange  devchange
        Byte array
    x11.xinput.DevicePresenceNotify.device_id  device_id
        Byte array
    x11.xinput.DevicePresenceNotify.time  time
        Unsigned 32-bit integer
    x11.xinput.DeviceStateNotify.buttons  buttons
        Unsigned 8-bit integer
    x11.xinput.DeviceStateNotify.classes_reported  classes_reported
        Unsigned 8-bit integer
    x11.xinput.DeviceStateNotify.device_id  device_id
        Byte array
    x11.xinput.DeviceStateNotify.keys  keys
        Unsigned 8-bit integer
    x11.xinput.DeviceStateNotify.num_buttons  num_buttons
        Unsigned 8-bit integer
    x11.xinput.DeviceStateNotify.num_keys  num_keys
        Unsigned 8-bit integer
    x11.xinput.DeviceStateNotify.num_valuators  num_valuators
        Unsigned 8-bit integer
    x11.xinput.DeviceStateNotify.time  time
        Unsigned 32-bit integer
    x11.xinput.DeviceStateNotify.valuators  valuators
        No value
    x11.xinput.DeviceValuator.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.DeviceValuator.device_state  device_state
        Unsigned 16-bit integer
    x11.xinput.DeviceValuator.first_valuator  first_valuator
        Unsigned 8-bit integer
    x11.xinput.DeviceValuator.num_valuators  num_valuators
        Unsigned 8-bit integer
    x11.xinput.DeviceValuator.valuators  valuators
        No value
    x11.xinput.FocusIn.detail  detail
        Unsigned 8-bit integer
    x11.xinput.FocusIn.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.FocusIn.mode  mode
        Unsigned 8-bit integer
    x11.xinput.FocusIn.time  time
        Unsigned 32-bit integer
    x11.xinput.FocusIn.window  window
        Unsigned 32-bit integer
    x11.xinput.GetDeviceButtonMapping.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.GetDeviceButtonMapping.reply.map  map
        Unsigned 8-bit integer
    x11.xinput.GetDeviceButtonMapping.reply.map_size  map_size
        Unsigned 8-bit integer
    x11.xinput.GetDeviceControl.control_id  control_id
        Unsigned 16-bit integer
    x11.xinput.GetDeviceControl.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.GetDeviceControl.reply.status  status
        Unsigned 8-bit integer
    x11.xinput.GetDeviceDontPropagateList.reply.classes  classes
        No value
    x11.xinput.GetDeviceDontPropagateList.reply.num_classes  num_classes
        Unsigned 16-bit integer
    x11.xinput.GetDeviceDontPropagateList.window  window
        Unsigned 32-bit integer
    x11.xinput.GetDeviceFocus.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.GetDeviceFocus.reply.focus  focus
        Unsigned 32-bit integer
    x11.xinput.GetDeviceFocus.reply.revert_to  revert_to
        Unsigned 8-bit integer
    x11.xinput.GetDeviceFocus.reply.time  time
        Unsigned 32-bit integer
    x11.xinput.GetDeviceKeyMapping.count  count
        Unsigned 8-bit integer
    x11.xinput.GetDeviceKeyMapping.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.GetDeviceKeyMapping.first_keycode  first_keycode
        Unsigned 8-bit integer
    x11.xinput.GetDeviceKeyMapping.reply.keysyms  keysyms
        No value
    x11.xinput.GetDeviceKeyMapping.reply.keysyms_per_keycode  keysyms_per_keycode
        Unsigned 8-bit integer
    x11.xinput.GetDeviceModifierMapping.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.GetDeviceModifierMapping.reply.keycodes_per_modifier  keycodes_per_modifier
        Unsigned 8-bit integer
    x11.xinput.GetDeviceModifierMapping.reply.keymaps  keymaps
        Unsigned 8-bit integer
    x11.xinput.GetDeviceMotionEvents.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.GetDeviceMotionEvents.reply.device_mode  device_mode
        Unsigned 8-bit integer
    x11.xinput.GetDeviceMotionEvents.reply.num_axes  num_axes
        Unsigned 8-bit integer
    x11.xinput.GetDeviceMotionEvents.reply.num_coords  num_coords
        Unsigned 32-bit integer
    x11.xinput.GetDeviceMotionEvents.start  start
        Unsigned 32-bit integer
    x11.xinput.GetDeviceMotionEvents.stop  stop
        Unsigned 32-bit integer
    x11.xinput.GetExtensionVersion.name  name
        String
    x11.xinput.GetExtensionVersion.name_len  name_len
        Unsigned 16-bit integer
    x11.xinput.GetExtensionVersion.reply.present  present
        Boolean
    x11.xinput.GetExtensionVersion.reply.server_major  server_major
        Unsigned 16-bit integer
    x11.xinput.GetExtensionVersion.reply.server_minor  server_minor
        Unsigned 16-bit integer
    x11.xinput.GetFeedbackControl.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.GetFeedbackControl.reply.num_feedback  num_feedback
        Unsigned 16-bit integer
    x11.xinput.GetSelectedExtensionEvents.reply.all_classes  all_classes
        No value
    x11.xinput.GetSelectedExtensionEvents.reply.num_all_classes  num_all_classes
        Unsigned 16-bit integer
    x11.xinput.GetSelectedExtensionEvents.reply.num_this_classes  num_this_classes
        Unsigned 16-bit integer
    x11.xinput.GetSelectedExtensionEvents.reply.this_classes  this_classes
        No value
    x11.xinput.GetSelectedExtensionEvents.window  window
        Unsigned 32-bit integer
    x11.xinput.GrabDevice.classes  classes
        No value
    x11.xinput.GrabDevice.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.GrabDevice.grab_window  grab_window
        Unsigned 32-bit integer
    x11.xinput.GrabDevice.num_classes  num_classes
        Unsigned 16-bit integer
    x11.xinput.GrabDevice.other_device_mode  other_device_mode
        Unsigned 8-bit integer
    x11.xinput.GrabDevice.owner_events  owner_events
        Boolean
    x11.xinput.GrabDevice.reply.status  status
        Unsigned 8-bit integer
    x11.xinput.GrabDevice.this_device_mode  this_device_mode
        Unsigned 8-bit integer
    x11.xinput.GrabDevice.time  time
        Unsigned 32-bit integer
    x11.xinput.GrabDeviceButton.button  button
        Unsigned 8-bit integer
    x11.xinput.GrabDeviceButton.classes  classes
        No value
    x11.xinput.GrabDeviceButton.grab_window  grab_window
        Unsigned 32-bit integer
    x11.xinput.GrabDeviceButton.grabbed_device  grabbed_device
        Unsigned 8-bit integer
    x11.xinput.GrabDeviceButton.modifier_device  modifier_device
        Unsigned 8-bit integer
    x11.xinput.GrabDeviceButton.modifiers  modifiers
        Unsigned 16-bit integer
    x11.xinput.GrabDeviceButton.modifiers.1  1
        Boolean
    x11.xinput.GrabDeviceButton.modifiers.2  2
        Boolean
    x11.xinput.GrabDeviceButton.modifiers.3  3
        Boolean
    x11.xinput.GrabDeviceButton.modifiers.4  4
        Boolean
    x11.xinput.GrabDeviceButton.modifiers.5  5
        Boolean
    x11.xinput.GrabDeviceButton.modifiers.Any  Any
        Boolean
    x11.xinput.GrabDeviceButton.modifiers.Control  Control
        Boolean
    x11.xinput.GrabDeviceButton.modifiers.Lock  Lock
        Boolean
    x11.xinput.GrabDeviceButton.modifiers.Shift  Shift
        Boolean
    x11.xinput.GrabDeviceButton.num_classes  num_classes
        Unsigned 16-bit integer
    x11.xinput.GrabDeviceButton.other_device_mode  other_device_mode
        Unsigned 8-bit integer
    x11.xinput.GrabDeviceButton.owner_events  owner_events
        Unsigned 8-bit integer
    x11.xinput.GrabDeviceButton.this_device_mode  this_device_mode
        Unsigned 8-bit integer
    x11.xinput.GrabDeviceKey.classes  classes
        No value
    x11.xinput.GrabDeviceKey.grab_window  grab_window
        Unsigned 32-bit integer
    x11.xinput.GrabDeviceKey.grabbed_device  grabbed_device
        Unsigned 8-bit integer
    x11.xinput.GrabDeviceKey.key  key
        Unsigned 8-bit integer
    x11.xinput.GrabDeviceKey.modifier_device  modifier_device
        Unsigned 8-bit integer
    x11.xinput.GrabDeviceKey.modifiers  modifiers
        Unsigned 16-bit integer
    x11.xinput.GrabDeviceKey.modifiers.1  1
        Boolean
    x11.xinput.GrabDeviceKey.modifiers.2  2
        Boolean
    x11.xinput.GrabDeviceKey.modifiers.3  3
        Boolean
    x11.xinput.GrabDeviceKey.modifiers.4  4
        Boolean
    x11.xinput.GrabDeviceKey.modifiers.5  5
        Boolean
    x11.xinput.GrabDeviceKey.modifiers.Any  Any
        Boolean
    x11.xinput.GrabDeviceKey.modifiers.Control  Control
        Boolean
    x11.xinput.GrabDeviceKey.modifiers.Lock  Lock
        Boolean
    x11.xinput.GrabDeviceKey.modifiers.Shift  Shift
        Boolean
    x11.xinput.GrabDeviceKey.num_classes  num_classes
        Unsigned 16-bit integer
    x11.xinput.GrabDeviceKey.other_device_mode  other_device_mode
        Unsigned 8-bit integer
    x11.xinput.GrabDeviceKey.owner_events  owner_events
        Boolean
    x11.xinput.GrabDeviceKey.this_device_mode  this_device_mode
        Unsigned 8-bit integer
    x11.xinput.ListInputDevices.reply.devices  devices
        No value
    x11.xinput.ListInputDevices.reply.devices_len  devices_len
        Unsigned 8-bit integer
    x11.xinput.OpenDevice.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.OpenDevice.reply.class_info  class_info
        No value
    x11.xinput.OpenDevice.reply.num_classes  num_classes
        Unsigned 8-bit integer
    x11.xinput.QueryDeviceState.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.QueryDeviceState.reply.num_classes  num_classes
        Unsigned 8-bit integer
    x11.xinput.SelectExtensionEvent.classes  classes
        No value
    x11.xinput.SelectExtensionEvent.num_classes  num_classes
        Unsigned 16-bit integer
    x11.xinput.SelectExtensionEvent.window  window
        Unsigned 32-bit integer
    x11.xinput.SendExtensionEvent.classes  classes
        No value
    x11.xinput.SendExtensionEvent.destination  destination
        Unsigned 32-bit integer
    x11.xinput.SendExtensionEvent.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.SendExtensionEvent.events  events
        String
    x11.xinput.SendExtensionEvent.num_classes  num_classes
        Unsigned 16-bit integer
    x11.xinput.SendExtensionEvent.num_events  num_events
        Unsigned 8-bit integer
    x11.xinput.SendExtensionEvent.propagate  propagate
        Boolean
    x11.xinput.SetDeviceButtonMapping.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.SetDeviceButtonMapping.map  map
        Unsigned 8-bit integer
    x11.xinput.SetDeviceButtonMapping.map_size  map_size
        Unsigned 8-bit integer
    x11.xinput.SetDeviceButtonMapping.reply.status  status
        Unsigned 8-bit integer
    x11.xinput.SetDeviceFocus.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.SetDeviceFocus.focus  focus
        Unsigned 32-bit integer
    x11.xinput.SetDeviceFocus.revert_to  revert_to
        Unsigned 8-bit integer
    x11.xinput.SetDeviceFocus.time  time
        Unsigned 32-bit integer
    x11.xinput.SetDeviceMode.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.SetDeviceMode.mode  mode
        Unsigned 8-bit integer
    x11.xinput.SetDeviceMode.reply.status  status
        Unsigned 8-bit integer
    x11.xinput.SetDeviceModifierMapping.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.SetDeviceModifierMapping.keycodes_per_modifier  keycodes_per_modifier
        Unsigned 8-bit integer
    x11.xinput.SetDeviceModifierMapping.keymaps  keymaps
        Unsigned 8-bit integer
    x11.xinput.SetDeviceModifierMapping.reply.status  status
        Unsigned 8-bit integer
    x11.xinput.SetDeviceValuators.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.SetDeviceValuators.first_valuator  first_valuator
        Unsigned 8-bit integer
    x11.xinput.SetDeviceValuators.num_valuators  num_valuators
        Unsigned 8-bit integer
    x11.xinput.SetDeviceValuators.reply.status  status
        Unsigned 8-bit integer
    x11.xinput.SetDeviceValuators.valuators  valuators
        No value
    x11.xinput.UngrabDevice.device_id  device_id
        Unsigned 8-bit integer
    x11.xinput.UngrabDevice.time  time
        Unsigned 32-bit integer
    x11.xinput.UngrabDeviceButton.button  button
        Unsigned 8-bit integer
    x11.xinput.UngrabDeviceButton.grab_window  grab_window
        Unsigned 32-bit integer
    x11.xinput.UngrabDeviceButton.grabbed_device  grabbed_device
        Unsigned 8-bit integer
    x11.xinput.UngrabDeviceButton.modifier_device  modifier_device
        Unsigned 8-bit integer
    x11.xinput.UngrabDeviceButton.modifiers  modifiers
        Unsigned 16-bit integer
    x11.xinput.UngrabDeviceButton.modifiers.1  1
        Boolean
    x11.xinput.UngrabDeviceButton.modifiers.2  2
        Boolean
    x11.xinput.UngrabDeviceButton.modifiers.3  3
        Boolean
    x11.xinput.UngrabDeviceButton.modifiers.4  4
        Boolean
    x11.xinput.UngrabDeviceButton.modifiers.5  5
        Boolean
    x11.xinput.UngrabDeviceButton.modifiers.Any  Any
        Boolean
    x11.xinput.UngrabDeviceButton.modifiers.Control  Control
        Boolean
    x11.xinput.UngrabDeviceButton.modifiers.Lock  Lock
        Boolean
    x11.xinput.UngrabDeviceButton.modifiers.Shift  Shift
        Boolean
    x11.xinput.UngrabDeviceKey.grabWindow  grabWindow
        Unsigned 32-bit integer
    x11.xinput.UngrabDeviceKey.grabbed_device  grabbed_device
        Unsigned 8-bit integer
    x11.xinput.UngrabDeviceKey.key  key
        Unsigned 8-bit integer
    x11.xinput.UngrabDeviceKey.modifier_device  modifier_device
        Unsigned 8-bit integer
    x11.xinput.UngrabDeviceKey.modifiers  modifiers
        Unsigned 16-bit integer
    x11.xinput.UngrabDeviceKey.modifiers.1  1
        Boolean
    x11.xinput.UngrabDeviceKey.modifiers.2  2
        Boolean
    x11.xinput.UngrabDeviceKey.modifiers.3  3
        Boolean
    x11.xinput.UngrabDeviceKey.modifiers.4  4
        Boolean
    x11.xinput.UngrabDeviceKey.modifiers.5  5
        Boolean
    x11.xinput.UngrabDeviceKey.modifiers.Any  Any
        Boolean
    x11.xinput.UngrabDeviceKey.modifiers.Control  Control
        Boolean
    x11.xinput.UngrabDeviceKey.modifiers.Lock  Lock
        Boolean
    x11.xinput.UngrabDeviceKey.modifiers.Shift  Shift
        Boolean
    x11.xkb.AccessXNotify.debounceDelay  debounceDelay
        Unsigned 16-bit integer
    x11.xkb.AccessXNotify.detailt  detailt
        Unsigned 16-bit integer
    x11.xkb.AccessXNotify.detailt.AXKWarning  AXKWarning
        Boolean
    x11.xkb.AccessXNotify.detailt.BKAccept  BKAccept
        Boolean
    x11.xkb.AccessXNotify.detailt.BKReject  BKReject
        Boolean
    x11.xkb.AccessXNotify.detailt.SKAccept  SKAccept
        Boolean
    x11.xkb.AccessXNotify.detailt.SKPress  SKPress
        Boolean
    x11.xkb.AccessXNotify.detailt.SKReject  SKReject
        Boolean
    x11.xkb.AccessXNotify.detailt.SKRelease  SKRelease
        Boolean
    x11.xkb.AccessXNotify.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.AccessXNotify.keycode  keycode
        Unsigned 8-bit integer
    x11.xkb.AccessXNotify.slowKeysDelay  slowKeysDelay
        Unsigned 16-bit integer
    x11.xkb.AccessXNotify.time  time
        Unsigned 32-bit integer
    x11.xkb.ActionMessage.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.ActionMessage.group  group
        Unsigned 8-bit integer
    x11.xkb.ActionMessage.keyEventFollows  keyEventFollows
        Boolean
    x11.xkb.ActionMessage.keycode  keycode
        Unsigned 8-bit integer
    x11.xkb.ActionMessage.message  message
        String
    x11.xkb.ActionMessage.mods  mods
        Unsigned 8-bit integer
    x11.xkb.ActionMessage.mods.1  1
        Boolean
    x11.xkb.ActionMessage.mods.2  2
        Boolean
    x11.xkb.ActionMessage.mods.3  3
        Boolean
    x11.xkb.ActionMessage.mods.4  4
        Boolean
    x11.xkb.ActionMessage.mods.5  5
        Boolean
    x11.xkb.ActionMessage.mods.Any  Any
        Boolean
    x11.xkb.ActionMessage.mods.Control  Control
        Boolean
    x11.xkb.ActionMessage.mods.Lock  Lock
        Boolean
    x11.xkb.ActionMessage.mods.Shift  Shift
        Boolean
    x11.xkb.ActionMessage.press  press
        Boolean
    x11.xkb.ActionMessage.time  time
        Unsigned 32-bit integer
    x11.xkb.Bell.bellClass  bellClass
        Unsigned 16-bit integer
    x11.xkb.Bell.bellID  bellID
        Unsigned 16-bit integer
    x11.xkb.Bell.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.Bell.duration  duration
        Signed 16-bit integer
    x11.xkb.Bell.eventOnly  eventOnly
        Boolean
    x11.xkb.Bell.forceSound  forceSound
        Boolean
    x11.xkb.Bell.name  name
        Unsigned 32-bit integer
    x11.xkb.Bell.percent  percent
        Signed 8-bit integer
    x11.xkb.Bell.pitch  pitch
        Signed 16-bit integer
    x11.xkb.Bell.window  window
        Unsigned 32-bit integer
    x11.xkb.BellNotify.bellClass  bellClass
        Unsigned 8-bit integer
    x11.xkb.BellNotify.bellID  bellID
        Unsigned 8-bit integer
    x11.xkb.BellNotify.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.BellNotify.duration  duration
        Unsigned 16-bit integer
    x11.xkb.BellNotify.eventOnly  eventOnly
        Boolean
    x11.xkb.BellNotify.name  name
        Unsigned 32-bit integer
    x11.xkb.BellNotify.percent  percent
        Unsigned 8-bit integer
    x11.xkb.BellNotify.pitch  pitch
        Unsigned 16-bit integer
    x11.xkb.BellNotify.time  time
        Unsigned 32-bit integer
    x11.xkb.BellNotify.window  window
        Unsigned 32-bit integer
    x11.xkb.CompatMapNotify.changedGroups  changedGroups
        Unsigned 8-bit integer
    x11.xkb.CompatMapNotify.changedGroups.Group1  Group1
        Boolean
    x11.xkb.CompatMapNotify.changedGroups.Group2  Group2
        Boolean
    x11.xkb.CompatMapNotify.changedGroups.Group3  Group3
        Boolean
    x11.xkb.CompatMapNotify.changedGroups.Group4  Group4
        Boolean
    x11.xkb.CompatMapNotify.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.CompatMapNotify.firstSI  firstSI
        Unsigned 16-bit integer
    x11.xkb.CompatMapNotify.nSI  nSI
        Unsigned 16-bit integer
    x11.xkb.CompatMapNotify.nTotalSI  nTotalSI
        Unsigned 16-bit integer
    x11.xkb.CompatMapNotify.time  time
        Unsigned 32-bit integer
    x11.xkb.ControlsNotify.changedControls  changedControls
        Unsigned 32-bit integer
    x11.xkb.ControlsNotify.changedControls.ControlsEnabled  ControlsEnabled
        Boolean
    x11.xkb.ControlsNotify.changedControls.GroupsWrap  GroupsWrap
        Boolean
    x11.xkb.ControlsNotify.changedControls.IgnoreLockMods  IgnoreLockMods
        Boolean
    x11.xkb.ControlsNotify.changedControls.InternalMods  InternalMods
        Boolean
    x11.xkb.ControlsNotify.changedControls.PerKeyRepeat  PerKeyRepeat
        Boolean
    x11.xkb.ControlsNotify.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.ControlsNotify.enabledControlChanges  enabledControlChanges
        Unsigned 32-bit integer
    x11.xkb.ControlsNotify.enabledControlChanges.AccessXFeedbackMask  AccessXFeedbackMask
        Boolean
    x11.xkb.ControlsNotify.enabledControlChanges.AccessXKeys  AccessXKeys
        Boolean
    x11.xkb.ControlsNotify.enabledControlChanges.AccessXTimeoutMask  AccessXTimeoutMask
        Boolean
    x11.xkb.ControlsNotify.enabledControlChanges.AudibleBellMask  AudibleBellMask
        Boolean
    x11.xkb.ControlsNotify.enabledControlChanges.BounceKeys  BounceKeys
        Boolean
    x11.xkb.ControlsNotify.enabledControlChanges.IgnoreGroupLockMask  IgnoreGroupLockMask
        Boolean
    x11.xkb.ControlsNotify.enabledControlChanges.MouseKeys  MouseKeys
        Boolean
    x11.xkb.ControlsNotify.enabledControlChanges.MouseKeysAccel  MouseKeysAccel
        Boolean
    x11.xkb.ControlsNotify.enabledControlChanges.Overlay1Mask  Overlay1Mask
        Boolean
    x11.xkb.ControlsNotify.enabledControlChanges.Overlay2Mask  Overlay2Mask
        Boolean
    x11.xkb.ControlsNotify.enabledControlChanges.RepeatKeys  RepeatKeys
        Boolean
    x11.xkb.ControlsNotify.enabledControlChanges.SlowKeys  SlowKeys
        Boolean
    x11.xkb.ControlsNotify.enabledControlChanges.StickyKeys  StickyKeys
        Boolean
    x11.xkb.ControlsNotify.enabledControls  enabledControls
        Unsigned 32-bit integer
    x11.xkb.ControlsNotify.enabledControls.AccessXFeedbackMask  AccessXFeedbackMask
        Boolean
    x11.xkb.ControlsNotify.enabledControls.AccessXKeys  AccessXKeys
        Boolean
    x11.xkb.ControlsNotify.enabledControls.AccessXTimeoutMask  AccessXTimeoutMask
        Boolean
    x11.xkb.ControlsNotify.enabledControls.AudibleBellMask  AudibleBellMask
        Boolean
    x11.xkb.ControlsNotify.enabledControls.BounceKeys  BounceKeys
        Boolean
    x11.xkb.ControlsNotify.enabledControls.IgnoreGroupLockMask  IgnoreGroupLockMask
        Boolean
    x11.xkb.ControlsNotify.enabledControls.MouseKeys  MouseKeys
        Boolean
    x11.xkb.ControlsNotify.enabledControls.MouseKeysAccel  MouseKeysAccel
        Boolean
    x11.xkb.ControlsNotify.enabledControls.Overlay1Mask  Overlay1Mask
        Boolean
    x11.xkb.ControlsNotify.enabledControls.Overlay2Mask  Overlay2Mask
        Boolean
    x11.xkb.ControlsNotify.enabledControls.RepeatKeys  RepeatKeys
        Boolean
    x11.xkb.ControlsNotify.enabledControls.SlowKeys  SlowKeys
        Boolean
    x11.xkb.ControlsNotify.enabledControls.StickyKeys  StickyKeys
        Boolean
    x11.xkb.ControlsNotify.eventType  eventType
        Unsigned 8-bit integer
    x11.xkb.ControlsNotify.keycode  keycode
        Unsigned 8-bit integer
    x11.xkb.ControlsNotify.numGroups  numGroups
        Unsigned 8-bit integer
    x11.xkb.ControlsNotify.requestMajor  requestMajor
        Unsigned 8-bit integer
    x11.xkb.ControlsNotify.requestMinor  requestMinor
        Unsigned 8-bit integer
    x11.xkb.ControlsNotify.time  time
        Unsigned 32-bit integer
    x11.xkb.ExtensionDeviceNotify.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.ExtensionDeviceNotify.firstButton  firstButton
        Unsigned 8-bit integer
    x11.xkb.ExtensionDeviceNotify.ledClass  ledClass
        Unsigned 16-bit integer
    x11.xkb.ExtensionDeviceNotify.ledID  ledID
        Unsigned 8-bit integer
    x11.xkb.ExtensionDeviceNotify.ledState  ledState
        Unsigned 32-bit integer
    x11.xkb.ExtensionDeviceNotify.ledsDefined  ledsDefined
        Unsigned 32-bit integer
    x11.xkb.ExtensionDeviceNotify.nButtons  nButtons
        Unsigned 8-bit integer
    x11.xkb.ExtensionDeviceNotify.reason  reason
        Unsigned 16-bit integer
    x11.xkb.ExtensionDeviceNotify.reason.ButtonActions  ButtonActions
        Boolean
    x11.xkb.ExtensionDeviceNotify.reason.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.ExtensionDeviceNotify.reason.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.ExtensionDeviceNotify.reason.IndicatorState  IndicatorState
        Boolean
    x11.xkb.ExtensionDeviceNotify.reason.Keyboards  Keyboards
        Boolean
    x11.xkb.ExtensionDeviceNotify.supported  supported
        Unsigned 16-bit integer
    x11.xkb.ExtensionDeviceNotify.supported.ButtonActions  ButtonActions
        Boolean
    x11.xkb.ExtensionDeviceNotify.supported.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.ExtensionDeviceNotify.supported.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.ExtensionDeviceNotify.supported.IndicatorState  IndicatorState
        Boolean
    x11.xkb.ExtensionDeviceNotify.supported.Keyboards  Keyboards
        Boolean
    x11.xkb.ExtensionDeviceNotify.time  time
        Unsigned 32-bit integer
    x11.xkb.ExtensionDeviceNotify.unsupported  unsupported
        Unsigned 16-bit integer
    x11.xkb.ExtensionDeviceNotify.unsupported.ButtonActions  ButtonActions
        Boolean
    x11.xkb.ExtensionDeviceNotify.unsupported.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.ExtensionDeviceNotify.unsupported.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.ExtensionDeviceNotify.unsupported.IndicatorState  IndicatorState
        Boolean
    x11.xkb.ExtensionDeviceNotify.unsupported.Keyboards  Keyboards
        Boolean
    x11.xkb.GetCompatMap.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.GetCompatMap.firstSI  firstSI
        Unsigned 16-bit integer
    x11.xkb.GetCompatMap.getAllSI  getAllSI
        Boolean
    x11.xkb.GetCompatMap.groups  groups
        Unsigned 8-bit integer
    x11.xkb.GetCompatMap.groups.Group1  Group1
        Boolean
    x11.xkb.GetCompatMap.groups.Group2  Group2
        Boolean
    x11.xkb.GetCompatMap.groups.Group3  Group3
        Boolean
    x11.xkb.GetCompatMap.groups.Group4  Group4
        Boolean
    x11.xkb.GetCompatMap.nSI  nSI
        Unsigned 16-bit integer
    x11.xkb.GetCompatMap.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.GetCompatMap.reply.firstSIRtrn  firstSIRtrn
        Unsigned 16-bit integer
    x11.xkb.GetCompatMap.reply.group_rtrn  group_rtrn
        No value
    x11.xkb.GetCompatMap.reply.groupsRtrn  groupsRtrn
        Unsigned 8-bit integer
    x11.xkb.GetCompatMap.reply.groupsRtrn.Group1  Group1
        Boolean
    x11.xkb.GetCompatMap.reply.groupsRtrn.Group2  Group2
        Boolean
    x11.xkb.GetCompatMap.reply.groupsRtrn.Group3  Group3
        Boolean
    x11.xkb.GetCompatMap.reply.groupsRtrn.Group4  Group4
        Boolean
    x11.xkb.GetCompatMap.reply.nSIRtrn  nSIRtrn
        Unsigned 16-bit integer
    x11.xkb.GetCompatMap.reply.nTotalSI  nTotalSI
        Unsigned 16-bit integer
    x11.xkb.GetCompatMap.reply.si_rtrn  si_rtrn
        Unsigned 8-bit integer
    x11.xkb.GetControls.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.GetControls.reply.accessXOption  accessXOption
        No value
    x11.xkb.GetControls.reply.accessXTimeout  accessXTimeout
        Unsigned 16-bit integer
    x11.xkb.GetControls.reply.accessXTimeoutMask  accessXTimeoutMask
        Unsigned 32-bit integer
    x11.xkb.GetControls.reply.accessXTimeoutOptionsMask  accessXTimeoutOptionsMask
        No value
    x11.xkb.GetControls.reply.accessXTimeoutOptionsValues  accessXTimeoutOptionsValues
        No value
    x11.xkb.GetControls.reply.accessXTimeoutValues  accessXTimeoutValues
        Unsigned 32-bit integer
    x11.xkb.GetControls.reply.debounceDelay  debounceDelay
        Unsigned 16-bit integer
    x11.xkb.GetControls.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.GetControls.reply.enabledControls  enabledControls
        Unsigned 32-bit integer
    x11.xkb.GetControls.reply.groupsWrap  groupsWrap
        Unsigned 8-bit integer
    x11.xkb.GetControls.reply.ignoreLockModsMask  ignoreLockModsMask
        Unsigned 8-bit integer
    x11.xkb.GetControls.reply.ignoreLockModsMask.1  1
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsMask.2  2
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsMask.3  3
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsMask.4  4
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsMask.5  5
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsMask.Any  Any
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsMask.Control  Control
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsMask.Lock  Lock
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsMask.Shift  Shift
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsRealMods  ignoreLockModsRealMods
        Unsigned 8-bit integer
    x11.xkb.GetControls.reply.ignoreLockModsRealMods.1  1
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsRealMods.2  2
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsRealMods.3  3
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsRealMods.4  4
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsRealMods.5  5
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsRealMods.Any  Any
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsRealMods.Control  Control
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsRealMods.Lock  Lock
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsRealMods.Shift  Shift
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods  ignoreLockModsVmods
        Unsigned 16-bit integer
    x11.xkb.GetControls.reply.ignoreLockModsVmods.0  0
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.1  1
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.10  10
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.11  11
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.12  12
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.13  13
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.14  14
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.15  15
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.2  2
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.3  3
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.4  4
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.5  5
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.6  6
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.7  7
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.8  8
        Boolean
    x11.xkb.GetControls.reply.ignoreLockModsVmods.9  9
        Boolean
    x11.xkb.GetControls.reply.internalModsMask  internalModsMask
        Unsigned 8-bit integer
    x11.xkb.GetControls.reply.internalModsMask.1  1
        Boolean
    x11.xkb.GetControls.reply.internalModsMask.2  2
        Boolean
    x11.xkb.GetControls.reply.internalModsMask.3  3
        Boolean
    x11.xkb.GetControls.reply.internalModsMask.4  4
        Boolean
    x11.xkb.GetControls.reply.internalModsMask.5  5
        Boolean
    x11.xkb.GetControls.reply.internalModsMask.Any  Any
        Boolean
    x11.xkb.GetControls.reply.internalModsMask.Control  Control
        Boolean
    x11.xkb.GetControls.reply.internalModsMask.Lock  Lock
        Boolean
    x11.xkb.GetControls.reply.internalModsMask.Shift  Shift
        Boolean
    x11.xkb.GetControls.reply.internalModsRealMods  internalModsRealMods
        Unsigned 8-bit integer
    x11.xkb.GetControls.reply.internalModsRealMods.1  1
        Boolean
    x11.xkb.GetControls.reply.internalModsRealMods.2  2
        Boolean
    x11.xkb.GetControls.reply.internalModsRealMods.3  3
        Boolean
    x11.xkb.GetControls.reply.internalModsRealMods.4  4
        Boolean
    x11.xkb.GetControls.reply.internalModsRealMods.5  5
        Boolean
    x11.xkb.GetControls.reply.internalModsRealMods.Any  Any
        Boolean
    x11.xkb.GetControls.reply.internalModsRealMods.Control  Control
        Boolean
    x11.xkb.GetControls.reply.internalModsRealMods.Lock  Lock
        Boolean
    x11.xkb.GetControls.reply.internalModsRealMods.Shift  Shift
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods  internalModsVmods
        Unsigned 16-bit integer
    x11.xkb.GetControls.reply.internalModsVmods.0  0
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.1  1
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.10  10
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.11  11
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.12  12
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.13  13
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.14  14
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.15  15
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.2  2
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.3  3
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.4  4
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.5  5
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.6  6
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.7  7
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.8  8
        Boolean
    x11.xkb.GetControls.reply.internalModsVmods.9  9
        Boolean
    x11.xkb.GetControls.reply.mouseKeysCurve  mouseKeysCurve
        Signed 16-bit integer
    x11.xkb.GetControls.reply.mouseKeysDelay  mouseKeysDelay
        Unsigned 16-bit integer
    x11.xkb.GetControls.reply.mouseKeysDfltBtn  mouseKeysDfltBtn
        Unsigned 8-bit integer
    x11.xkb.GetControls.reply.mouseKeysInterval  mouseKeysInterval
        Unsigned 16-bit integer
    x11.xkb.GetControls.reply.mouseKeysMaxSpeed  mouseKeysMaxSpeed
        Unsigned 16-bit integer
    x11.xkb.GetControls.reply.mouseKeysTimeToMax  mouseKeysTimeToMax
        Unsigned 16-bit integer
    x11.xkb.GetControls.reply.numGroups  numGroups
        Unsigned 8-bit integer
    x11.xkb.GetControls.reply.perKeyRepeat  perKeyRepeat
        Unsigned 8-bit integer
    x11.xkb.GetControls.reply.repeatDelay  repeatDelay
        Unsigned 16-bit integer
    x11.xkb.GetControls.reply.repeatInterval  repeatInterval
        Unsigned 16-bit integer
    x11.xkb.GetControls.reply.slowKeysDelay  slowKeysDelay
        Unsigned 16-bit integer
    x11.xkb.GetDeviceInfo.allButtons  allButtons
        Boolean
    x11.xkb.GetDeviceInfo.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.GetDeviceInfo.firstButton  firstButton
        Unsigned 8-bit integer
    x11.xkb.GetDeviceInfo.ledClass  ledClass
        Unsigned 16-bit integer
    x11.xkb.GetDeviceInfo.ledID  ledID
        Unsigned 16-bit integer
    x11.xkb.GetDeviceInfo.nButtons  nButtons
        Unsigned 8-bit integer
    x11.xkb.GetDeviceInfo.reply.btnActions  btnActions
        No value
    x11.xkb.GetDeviceInfo.reply.devType  devType
        Unsigned 32-bit integer
    x11.xkb.GetDeviceInfo.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.GetDeviceInfo.reply.dfltKbdFB  dfltKbdFB
        Unsigned 16-bit integer
    x11.xkb.GetDeviceInfo.reply.dfltLedFB  dfltLedFB
        Unsigned 16-bit integer
    x11.xkb.GetDeviceInfo.reply.firstBtnRtrn  firstBtnRtrn
        Unsigned 8-bit integer
    x11.xkb.GetDeviceInfo.reply.firstBtnWanted  firstBtnWanted
        Unsigned 8-bit integer
    x11.xkb.GetDeviceInfo.reply.hasOwnState  hasOwnState
        Boolean
    x11.xkb.GetDeviceInfo.reply.leds  leds
        No value
    x11.xkb.GetDeviceInfo.reply.nBtnsRtrn  nBtnsRtrn
        Unsigned 8-bit integer
    x11.xkb.GetDeviceInfo.reply.nBtnsWanted  nBtnsWanted
        Unsigned 8-bit integer
    x11.xkb.GetDeviceInfo.reply.nDeviceLedFBs  nDeviceLedFBs
        Unsigned 16-bit integer
    x11.xkb.GetDeviceInfo.reply.name  name
        String
    x11.xkb.GetDeviceInfo.reply.nameLen  nameLen
        Unsigned 16-bit integer
    x11.xkb.GetDeviceInfo.reply.present  present
        Unsigned 16-bit integer
    x11.xkb.GetDeviceInfo.reply.present.ButtonActions  ButtonActions
        Boolean
    x11.xkb.GetDeviceInfo.reply.present.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.GetDeviceInfo.reply.present.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.GetDeviceInfo.reply.present.IndicatorState  IndicatorState
        Boolean
    x11.xkb.GetDeviceInfo.reply.present.Keyboards  Keyboards
        Boolean
    x11.xkb.GetDeviceInfo.reply.supported  supported
        Unsigned 16-bit integer
    x11.xkb.GetDeviceInfo.reply.supported.ButtonActions  ButtonActions
        Boolean
    x11.xkb.GetDeviceInfo.reply.supported.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.GetDeviceInfo.reply.supported.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.GetDeviceInfo.reply.supported.IndicatorState  IndicatorState
        Boolean
    x11.xkb.GetDeviceInfo.reply.supported.Keyboards  Keyboards
        Boolean
    x11.xkb.GetDeviceInfo.reply.totalBtns  totalBtns
        Unsigned 8-bit integer
    x11.xkb.GetDeviceInfo.reply.unsupported  unsupported
        Unsigned 16-bit integer
    x11.xkb.GetDeviceInfo.reply.unsupported.ButtonActions  ButtonActions
        Boolean
    x11.xkb.GetDeviceInfo.reply.unsupported.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.GetDeviceInfo.reply.unsupported.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.GetDeviceInfo.reply.unsupported.IndicatorState  IndicatorState
        Boolean
    x11.xkb.GetDeviceInfo.reply.unsupported.Keyboards  Keyboards
        Boolean
    x11.xkb.GetDeviceInfo.wanted  wanted
        Unsigned 16-bit integer
    x11.xkb.GetDeviceInfo.wanted.ButtonActions  ButtonActions
        Boolean
    x11.xkb.GetDeviceInfo.wanted.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.GetDeviceInfo.wanted.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.GetDeviceInfo.wanted.IndicatorState  IndicatorState
        Boolean
    x11.xkb.GetDeviceInfo.wanted.Keyboards  Keyboards
        Boolean
    x11.xkb.GetGeometry.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.GetGeometry.name  name
        Unsigned 32-bit integer
    x11.xkb.GetGeometry.reply.baseColorNdx  baseColorNdx
        Unsigned 8-bit integer
    x11.xkb.GetGeometry.reply.colors  colors
        No value
    x11.xkb.GetGeometry.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.GetGeometry.reply.doodads  doodads
        No value
    x11.xkb.GetGeometry.reply.found  found
        Boolean
    x11.xkb.GetGeometry.reply.heightMM  heightMM
        Unsigned 16-bit integer
    x11.xkb.GetGeometry.reply.keyAliases  keyAliases
        No value
    x11.xkb.GetGeometry.reply.labelColorNdx  labelColorNdx
        Unsigned 8-bit integer
    x11.xkb.GetGeometry.reply.labelFont  labelFont
        No value
    x11.xkb.GetGeometry.reply.nColors  nColors
        Unsigned 16-bit integer
    x11.xkb.GetGeometry.reply.nDoodads  nDoodads
        Unsigned 16-bit integer
    x11.xkb.GetGeometry.reply.nKeyAliases  nKeyAliases
        Unsigned 16-bit integer
    x11.xkb.GetGeometry.reply.nProperties  nProperties
        Unsigned 16-bit integer
    x11.xkb.GetGeometry.reply.nSections  nSections
        Unsigned 16-bit integer
    x11.xkb.GetGeometry.reply.nShapes  nShapes
        Unsigned 16-bit integer
    x11.xkb.GetGeometry.reply.name  name
        Unsigned 32-bit integer
    x11.xkb.GetGeometry.reply.properties  properties
        No value
    x11.xkb.GetGeometry.reply.sections  sections
        No value
    x11.xkb.GetGeometry.reply.shapes  shapes
        No value
    x11.xkb.GetGeometry.reply.widthMM  widthMM
        Unsigned 16-bit integer
    x11.xkb.GetIndicatorMap.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.GetIndicatorMap.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.GetIndicatorMap.reply.maps  maps
        No value
    x11.xkb.GetIndicatorMap.reply.nIndicators  nIndicators
        Unsigned 8-bit integer
    x11.xkb.GetIndicatorMap.reply.realIndicators  realIndicators
        Unsigned 32-bit integer
    x11.xkb.GetIndicatorMap.reply.which  which
        Unsigned 32-bit integer
    x11.xkb.GetIndicatorMap.which  which
        Unsigned 32-bit integer
    x11.xkb.GetIndicatorState.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.GetIndicatorState.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.GetIndicatorState.reply.state  state
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.compatMapSpec  compatMapSpec
        String
    x11.xkb.GetKbdByName.compatMapSpecLen  compatMapSpecLen
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.geometrySpec  geometrySpec
        String
    x11.xkb.GetKbdByName.geometrySpecLen  geometrySpecLen
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.keycodesSpec  keycodesSpec
        String
    x11.xkb.GetKbdByName.keycodesSpecLen  keycodesSpecLen
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.keymapsSpec  keymapsSpec
        String
    x11.xkb.GetKbdByName.keymapsSpecLen  keymapsSpecLen
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.load  load
        Boolean
    x11.xkb.GetKbdByName.need  need
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.need.ClientSymbols  ClientSymbols
        Boolean
    x11.xkb.GetKbdByName.need.CompatMap  CompatMap
        Boolean
    x11.xkb.GetKbdByName.need.Geometry  Geometry
        Boolean
    x11.xkb.GetKbdByName.need.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.GetKbdByName.need.KeyNames  KeyNames
        Boolean
    x11.xkb.GetKbdByName.need.OtherNames  OtherNames
        Boolean
    x11.xkb.GetKbdByName.need.ServerSymbols  ServerSymbols
        Boolean
    x11.xkb.GetKbdByName.need.Types  Types
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.ExplicitComponents.explicit_rtrn  explicit_rtrn
        No value
    x11.xkb.GetKbdByName.reply.ClientSymbols.KeyActions.acts_rtrn_acts  acts_rtrn_acts
        No value
    x11.xkb.GetKbdByName.reply.ClientSymbols.KeyActions.acts_rtrn_count  acts_rtrn_count
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.KeyBehaviors.behaviors_rtrn  behaviors_rtrn
        No value
    x11.xkb.GetKbdByName.reply.ClientSymbols.KeySyms.syms_rtrn  syms_rtrn
        No value
    x11.xkb.GetKbdByName.reply.ClientSymbols.KeyTypes.types_rtrn  types_rtrn
        No value
    x11.xkb.GetKbdByName.reply.ClientSymbols.ModifierMap.modmap_rtrn  modmap_rtrn
        No value
    x11.xkb.GetKbdByName.reply.ClientSymbols.VirtualModMap.vmodmap_rtrn  vmodmap_rtrn
        No value
    x11.xkb.GetKbdByName.reply.ClientSymbols.VirtualMods.vmods_rtrn  vmods_rtrn
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.VirtualMods.vmods_rtrn.1  1
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.VirtualMods.vmods_rtrn.2  2
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.VirtualMods.vmods_rtrn.3  3
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.VirtualMods.vmods_rtrn.4  4
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.VirtualMods.vmods_rtrn.5  5
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.VirtualMods.vmods_rtrn.Any  Any
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.VirtualMods.vmods_rtrn.Control  Control
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.VirtualMods.vmods_rtrn.Lock  Lock
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.VirtualMods.vmods_rtrn.Shift  Shift
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.clientDeviceID  clientDeviceID
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.clientMaxKeyCode  clientMaxKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.clientMinKeyCode  clientMinKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.firstKeyAction  firstKeyAction
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.firstKeyBehavior  firstKeyBehavior
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.firstKeyExplicit  firstKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.firstKeySym  firstKeySym
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.firstModMapKey  firstModMapKey
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.firstType  firstType
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.firstVModMapKey  firstVModMapKey
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.nKeyActions  nKeyActions
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.nKeyBehaviors  nKeyBehaviors
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.nKeyExplicit  nKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.nKeySyms  nKeySyms
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.nModMapKeys  nModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.nTypes  nTypes
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.nVModMapKeys  nVModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.present  present
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.totalActions  totalActions
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.totalKeyBehaviors  totalKeyBehaviors
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.totalKeyExplicit  totalKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.totalModMapKeys  totalModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.totalSyms  totalSyms
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.totalTypes  totalTypes
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.totalVModMapKeys  totalVModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.0  0
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.1  1
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.10  10
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.11  11
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.12  12
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.13  13
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.14  14
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.15  15
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.2  2
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.3  3
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.4  4
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.5  5
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.6  6
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.7  7
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.8  8
        Boolean
    x11.xkb.GetKbdByName.reply.ClientSymbols.virtualMods.9  9
        Boolean
    x11.xkb.GetKbdByName.reply.CompatMap.compatDeviceID  compatDeviceID
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.CompatMap.firstSIRtrn  firstSIRtrn
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.CompatMap.group_rtrn  group_rtrn
        No value
    x11.xkb.GetKbdByName.reply.CompatMap.groupsRtrn  groupsRtrn
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.CompatMap.groupsRtrn.Group1  Group1
        Boolean
    x11.xkb.GetKbdByName.reply.CompatMap.groupsRtrn.Group2  Group2
        Boolean
    x11.xkb.GetKbdByName.reply.CompatMap.groupsRtrn.Group3  Group3
        Boolean
    x11.xkb.GetKbdByName.reply.CompatMap.groupsRtrn.Group4  Group4
        Boolean
    x11.xkb.GetKbdByName.reply.CompatMap.nSIRtrn  nSIRtrn
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.CompatMap.nTotalSI  nTotalSI
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.CompatMap.si_rtrn  si_rtrn
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Geometry.baseColorNdx  baseColorNdx
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Geometry.colors  colors
        No value
    x11.xkb.GetKbdByName.reply.Geometry.doodads  doodads
        No value
    x11.xkb.GetKbdByName.reply.Geometry.geometryDeviceID  geometryDeviceID
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Geometry.geometryFound  geometryFound
        Boolean
    x11.xkb.GetKbdByName.reply.Geometry.heightMM  heightMM
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.Geometry.keyAliases  keyAliases
        No value
    x11.xkb.GetKbdByName.reply.Geometry.labelColorNdx  labelColorNdx
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Geometry.labelFont  labelFont
        No value
    x11.xkb.GetKbdByName.reply.Geometry.nColors  nColors
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.Geometry.nDoodads  nDoodads
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.Geometry.nKeyAliases  nKeyAliases
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.Geometry.nProperties  nProperties
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.Geometry.nSections  nSections
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.Geometry.nShapes  nShapes
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.Geometry.name  name
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.Geometry.properties  properties
        No value
    x11.xkb.GetKbdByName.reply.Geometry.sections  sections
        No value
    x11.xkb.GetKbdByName.reply.Geometry.shapes  shapes
        No value
    x11.xkb.GetKbdByName.reply.Geometry.widthMM  widthMM
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.IndicatorMaps.indicatorDeviceID  indicatorDeviceID
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.IndicatorMaps.maps  maps
        No value
    x11.xkb.GetKbdByName.reply.IndicatorMaps.nIndicators  nIndicators
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.IndicatorMaps.realIndicators  realIndicators
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.IndicatorMaps.which  which
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.Compat.compatName  compatName
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.Geometry.geometryName  geometryName
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.GroupNames.groups  groups
        No value
    x11.xkb.GetKbdByName.reply.KeyNames.IndicatorNames.indicatorNames  indicatorNames
        No value
    x11.xkb.GetKbdByName.reply.KeyNames.KTLevelNames.ktLevelNames  ktLevelNames
        No value
    x11.xkb.GetKbdByName.reply.KeyNames.KTLevelNames.nLevelsPerType  nLevelsPerType
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.KeyAliases.keyAliases  keyAliases
        No value
    x11.xkb.GetKbdByName.reply.KeyNames.KeyNames.keyNames  keyNames
        No value
    x11.xkb.GetKbdByName.reply.KeyNames.KeyTypeNames.typeNames  typeNames
        No value
    x11.xkb.GetKbdByName.reply.KeyNames.Keycodes.keycodesName  keycodesName
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.PhysSymbols.physSymbolsName  physSymbolsName
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.RGNames.radioGroupNames  radioGroupNames
        No value
    x11.xkb.GetKbdByName.reply.KeyNames.Symbols.symbolsName  symbolsName
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.Types.typesName  typesName
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.VirtualModNames.virtualModNames  virtualModNames
        No value
    x11.xkb.GetKbdByName.reply.KeyNames.firstKey  firstKey
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.groupNames  groupNames
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.groupNames.Group1  Group1
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.groupNames.Group2  Group2
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.groupNames.Group3  Group3
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.groupNames.Group4  Group4
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.indicators  indicators
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.keyDeviceID  keyDeviceID
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.keyMaxKeyCode  keyMaxKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.keyMinKeyCode  keyMinKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.nKTLevels  nKTLevels
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.nKeyAliases  nKeyAliases
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.nKeys  nKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.nRadioGroups  nRadioGroups
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.nTypes  nTypes
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.0  0
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.1  1
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.10  10
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.11  11
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.12  12
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.13  13
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.14  14
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.15  15
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.2  2
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.3  3
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.4  4
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.5  5
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.6  6
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.7  7
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.8  8
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.virtualMods.9  9
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which  which
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.KeyNames.which.Compat  Compat
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.Geometry  Geometry
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.GroupNames  GroupNames
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.KTLevelNames  KTLevelNames
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.KeyAliases  KeyAliases
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.KeyNames  KeyNames
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.KeyTypeNames  KeyTypeNames
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.Keycodes  Keycodes
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.PhysSymbols  PhysSymbols
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.RGNames  RGNames
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.Symbols  Symbols
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.Types  Types
        Boolean
    x11.xkb.GetKbdByName.reply.KeyNames.which.VirtualModNames  VirtualModNames
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.Compat.compatName  compatName
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.Geometry.geometryName  geometryName
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.GroupNames.groups  groups
        No value
    x11.xkb.GetKbdByName.reply.OtherNames.IndicatorNames.indicatorNames  indicatorNames
        No value
    x11.xkb.GetKbdByName.reply.OtherNames.KTLevelNames.ktLevelNames  ktLevelNames
        No value
    x11.xkb.GetKbdByName.reply.OtherNames.KTLevelNames.nLevelsPerType  nLevelsPerType
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.KeyAliases.keyAliases  keyAliases
        No value
    x11.xkb.GetKbdByName.reply.OtherNames.KeyNames.keyNames  keyNames
        No value
    x11.xkb.GetKbdByName.reply.OtherNames.KeyTypeNames.typeNames  typeNames
        No value
    x11.xkb.GetKbdByName.reply.OtherNames.Keycodes.keycodesName  keycodesName
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.PhysSymbols.physSymbolsName  physSymbolsName
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.RGNames.radioGroupNames  radioGroupNames
        No value
    x11.xkb.GetKbdByName.reply.OtherNames.Symbols.symbolsName  symbolsName
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.Types.typesName  typesName
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.VirtualModNames.virtualModNames  virtualModNames
        No value
    x11.xkb.GetKbdByName.reply.OtherNames.firstKey  firstKey
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.groupNames  groupNames
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.groupNames.Group1  Group1
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.groupNames.Group2  Group2
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.groupNames.Group3  Group3
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.groupNames.Group4  Group4
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.indicators  indicators
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.nKTLevels  nKTLevels
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.nKeyAliases  nKeyAliases
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.nKeys  nKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.nRadioGroups  nRadioGroups
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.nTypes  nTypes
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.otherDeviceID  otherDeviceID
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.otherMaxKeyCode  otherMaxKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.otherMinKeyCode  otherMinKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.0  0
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.1  1
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.10  10
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.11  11
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.12  12
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.13  13
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.14  14
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.15  15
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.2  2
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.3  3
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.4  4
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.5  5
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.6  6
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.7  7
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.8  8
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.virtualMods.9  9
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which  which
        Unsigned 32-bit integer
    x11.xkb.GetKbdByName.reply.OtherNames.which.Compat  Compat
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.Geometry  Geometry
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.GroupNames  GroupNames
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.KTLevelNames  KTLevelNames
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.KeyAliases  KeyAliases
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.KeyNames  KeyNames
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.KeyTypeNames  KeyTypeNames
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.Keycodes  Keycodes
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.PhysSymbols  PhysSymbols
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.RGNames  RGNames
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.Symbols  Symbols
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.Types  Types
        Boolean
    x11.xkb.GetKbdByName.reply.OtherNames.which.VirtualModNames  VirtualModNames
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.ExplicitComponents.explicit_rtrn  explicit_rtrn
        No value
    x11.xkb.GetKbdByName.reply.ServerSymbols.KeyActions.acts_rtrn_acts  acts_rtrn_acts
        No value
    x11.xkb.GetKbdByName.reply.ServerSymbols.KeyActions.acts_rtrn_count  acts_rtrn_count
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.KeyBehaviors.behaviors_rtrn  behaviors_rtrn
        No value
    x11.xkb.GetKbdByName.reply.ServerSymbols.KeySyms.syms_rtrn  syms_rtrn
        No value
    x11.xkb.GetKbdByName.reply.ServerSymbols.KeyTypes.types_rtrn  types_rtrn
        No value
    x11.xkb.GetKbdByName.reply.ServerSymbols.ModifierMap.modmap_rtrn  modmap_rtrn
        No value
    x11.xkb.GetKbdByName.reply.ServerSymbols.VirtualModMap.vmodmap_rtrn  vmodmap_rtrn
        No value
    x11.xkb.GetKbdByName.reply.ServerSymbols.VirtualMods.vmods_rtrn  vmods_rtrn
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.VirtualMods.vmods_rtrn.1  1
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.VirtualMods.vmods_rtrn.2  2
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.VirtualMods.vmods_rtrn.3  3
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.VirtualMods.vmods_rtrn.4  4
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.VirtualMods.vmods_rtrn.5  5
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.VirtualMods.vmods_rtrn.Any  Any
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.VirtualMods.vmods_rtrn.Control  Control
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.VirtualMods.vmods_rtrn.Lock  Lock
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.VirtualMods.vmods_rtrn.Shift  Shift
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.firstKeyAction  firstKeyAction
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.firstKeyBehavior  firstKeyBehavior
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.firstKeyExplicit  firstKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.firstKeySym  firstKeySym
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.firstModMapKey  firstModMapKey
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.firstType  firstType
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.firstVModMapKey  firstVModMapKey
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.nKeyActions  nKeyActions
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.nKeyBehaviors  nKeyBehaviors
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.nKeyExplicit  nKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.nKeySyms  nKeySyms
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.nModMapKeys  nModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.nTypes  nTypes
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.nVModMapKeys  nVModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.present  present
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.serverDeviceID  serverDeviceID
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.serverMaxKeyCode  serverMaxKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.serverMinKeyCode  serverMinKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.totalActions  totalActions
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.totalKeyBehaviors  totalKeyBehaviors
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.totalKeyExplicit  totalKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.totalModMapKeys  totalModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.totalSyms  totalSyms
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.totalTypes  totalTypes
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.totalVModMapKeys  totalVModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.0  0
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.1  1
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.10  10
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.11  11
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.12  12
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.13  13
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.14  14
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.15  15
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.2  2
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.3  3
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.4  4
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.5  5
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.6  6
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.7  7
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.8  8
        Boolean
    x11.xkb.GetKbdByName.reply.ServerSymbols.virtualMods.9  9
        Boolean
    x11.xkb.GetKbdByName.reply.Types.ExplicitComponents.explicit_rtrn  explicit_rtrn
        No value
    x11.xkb.GetKbdByName.reply.Types.KeyActions.acts_rtrn_acts  acts_rtrn_acts
        No value
    x11.xkb.GetKbdByName.reply.Types.KeyActions.acts_rtrn_count  acts_rtrn_count
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.KeyBehaviors.behaviors_rtrn  behaviors_rtrn
        No value
    x11.xkb.GetKbdByName.reply.Types.KeySyms.syms_rtrn  syms_rtrn
        No value
    x11.xkb.GetKbdByName.reply.Types.KeyTypes.types_rtrn  types_rtrn
        No value
    x11.xkb.GetKbdByName.reply.Types.ModifierMap.modmap_rtrn  modmap_rtrn
        No value
    x11.xkb.GetKbdByName.reply.Types.VirtualModMap.vmodmap_rtrn  vmodmap_rtrn
        No value
    x11.xkb.GetKbdByName.reply.Types.VirtualMods.vmods_rtrn  vmods_rtrn
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.VirtualMods.vmods_rtrn.1  1
        Boolean
    x11.xkb.GetKbdByName.reply.Types.VirtualMods.vmods_rtrn.2  2
        Boolean
    x11.xkb.GetKbdByName.reply.Types.VirtualMods.vmods_rtrn.3  3
        Boolean
    x11.xkb.GetKbdByName.reply.Types.VirtualMods.vmods_rtrn.4  4
        Boolean
    x11.xkb.GetKbdByName.reply.Types.VirtualMods.vmods_rtrn.5  5
        Boolean
    x11.xkb.GetKbdByName.reply.Types.VirtualMods.vmods_rtrn.Any  Any
        Boolean
    x11.xkb.GetKbdByName.reply.Types.VirtualMods.vmods_rtrn.Control  Control
        Boolean
    x11.xkb.GetKbdByName.reply.Types.VirtualMods.vmods_rtrn.Lock  Lock
        Boolean
    x11.xkb.GetKbdByName.reply.Types.VirtualMods.vmods_rtrn.Shift  Shift
        Boolean
    x11.xkb.GetKbdByName.reply.Types.firstKeyAction  firstKeyAction
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.firstKeyBehavior  firstKeyBehavior
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.firstKeyExplicit  firstKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.firstKeySym  firstKeySym
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.firstModMapKey  firstModMapKey
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.firstType  firstType
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.firstVModMapKey  firstVModMapKey
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.nKeyActions  nKeyActions
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.nKeyBehaviors  nKeyBehaviors
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.nKeyExplicit  nKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.nKeySyms  nKeySyms
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.nModMapKeys  nModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.nTypes  nTypes
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.nVModMapKeys  nVModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.present  present
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.Types.totalActions  totalActions
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.Types.totalKeyBehaviors  totalKeyBehaviors
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.totalKeyExplicit  totalKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.totalModMapKeys  totalModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.totalSyms  totalSyms
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.Types.totalTypes  totalTypes
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.totalVModMapKeys  totalVModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.typeDeviceID  typeDeviceID
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.typeMaxKeyCode  typeMaxKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.typeMinKeyCode  typeMinKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.Types.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.Types.virtualMods.0  0
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.1  1
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.10  10
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.11  11
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.12  12
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.13  13
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.14  14
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.15  15
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.2  2
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.3  3
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.4  4
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.5  5
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.6  6
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.7  7
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.8  8
        Boolean
    x11.xkb.GetKbdByName.reply.Types.virtualMods.9  9
        Boolean
    x11.xkb.GetKbdByName.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.found  found
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.found.ClientSymbols  ClientSymbols
        Boolean
    x11.xkb.GetKbdByName.reply.found.CompatMap  CompatMap
        Boolean
    x11.xkb.GetKbdByName.reply.found.Geometry  Geometry
        Boolean
    x11.xkb.GetKbdByName.reply.found.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.GetKbdByName.reply.found.KeyNames  KeyNames
        Boolean
    x11.xkb.GetKbdByName.reply.found.OtherNames  OtherNames
        Boolean
    x11.xkb.GetKbdByName.reply.found.ServerSymbols  ServerSymbols
        Boolean
    x11.xkb.GetKbdByName.reply.found.Types  Types
        Boolean
    x11.xkb.GetKbdByName.reply.loaded  loaded
        Boolean
    x11.xkb.GetKbdByName.reply.maxKeyCode  maxKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.minKeyCode  minKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.reply.newKeyboard  newKeyboard
        Boolean
    x11.xkb.GetKbdByName.reply.reported  reported
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.reply.reported.ClientSymbols  ClientSymbols
        Boolean
    x11.xkb.GetKbdByName.reply.reported.CompatMap  CompatMap
        Boolean
    x11.xkb.GetKbdByName.reply.reported.Geometry  Geometry
        Boolean
    x11.xkb.GetKbdByName.reply.reported.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.GetKbdByName.reply.reported.KeyNames  KeyNames
        Boolean
    x11.xkb.GetKbdByName.reply.reported.OtherNames  OtherNames
        Boolean
    x11.xkb.GetKbdByName.reply.reported.ServerSymbols  ServerSymbols
        Boolean
    x11.xkb.GetKbdByName.reply.reported.Types  Types
        Boolean
    x11.xkb.GetKbdByName.symbolsSpec  symbolsSpec
        String
    x11.xkb.GetKbdByName.symbolsSpecLen  symbolsSpecLen
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.typesSpec  typesSpec
        String
    x11.xkb.GetKbdByName.typesSpecLen  typesSpecLen
        Unsigned 8-bit integer
    x11.xkb.GetKbdByName.want  want
        Unsigned 16-bit integer
    x11.xkb.GetKbdByName.want.ClientSymbols  ClientSymbols
        Boolean
    x11.xkb.GetKbdByName.want.CompatMap  CompatMap
        Boolean
    x11.xkb.GetKbdByName.want.Geometry  Geometry
        Boolean
    x11.xkb.GetKbdByName.want.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.GetKbdByName.want.KeyNames  KeyNames
        Boolean
    x11.xkb.GetKbdByName.want.OtherNames  OtherNames
        Boolean
    x11.xkb.GetKbdByName.want.ServerSymbols  ServerSymbols
        Boolean
    x11.xkb.GetKbdByName.want.Types  Types
        Boolean
    x11.xkb.GetMap.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.GetMap.firstKeyAction  firstKeyAction
        Unsigned 8-bit integer
    x11.xkb.GetMap.firstKeyBehavior  firstKeyBehavior
        Unsigned 8-bit integer
    x11.xkb.GetMap.firstKeyExplicit  firstKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetMap.firstKeySym  firstKeySym
        Unsigned 8-bit integer
    x11.xkb.GetMap.firstModMapKey  firstModMapKey
        Unsigned 8-bit integer
    x11.xkb.GetMap.firstType  firstType
        Unsigned 8-bit integer
    x11.xkb.GetMap.firstVModMapKey  firstVModMapKey
        Unsigned 8-bit integer
    x11.xkb.GetMap.full  full
        Unsigned 16-bit integer
    x11.xkb.GetMap.nKeyActions  nKeyActions
        Unsigned 8-bit integer
    x11.xkb.GetMap.nKeyBehaviors  nKeyBehaviors
        Unsigned 8-bit integer
    x11.xkb.GetMap.nKeyExplicit  nKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetMap.nKeySyms  nKeySyms
        Unsigned 8-bit integer
    x11.xkb.GetMap.nModMapKeys  nModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetMap.nTypes  nTypes
        Unsigned 8-bit integer
    x11.xkb.GetMap.nVModMapKeys  nVModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetMap.partial  partial
        Unsigned 16-bit integer
    x11.xkb.GetMap.reply.ExplicitComponents.explicit_rtrn  explicit_rtrn
        No value
    x11.xkb.GetMap.reply.KeyActions.acts_rtrn_acts  acts_rtrn_acts
        No value
    x11.xkb.GetMap.reply.KeyActions.acts_rtrn_count  acts_rtrn_count
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.KeyBehaviors.behaviors_rtrn  behaviors_rtrn
        No value
    x11.xkb.GetMap.reply.KeySyms.syms_rtrn  syms_rtrn
        No value
    x11.xkb.GetMap.reply.KeyTypes.types_rtrn  types_rtrn
        No value
    x11.xkb.GetMap.reply.ModifierMap.modmap_rtrn  modmap_rtrn
        No value
    x11.xkb.GetMap.reply.VirtualModMap.vmodmap_rtrn  vmodmap_rtrn
        No value
    x11.xkb.GetMap.reply.VirtualMods.vmods_rtrn  vmods_rtrn
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.VirtualMods.vmods_rtrn.1  1
        Boolean
    x11.xkb.GetMap.reply.VirtualMods.vmods_rtrn.2  2
        Boolean
    x11.xkb.GetMap.reply.VirtualMods.vmods_rtrn.3  3
        Boolean
    x11.xkb.GetMap.reply.VirtualMods.vmods_rtrn.4  4
        Boolean
    x11.xkb.GetMap.reply.VirtualMods.vmods_rtrn.5  5
        Boolean
    x11.xkb.GetMap.reply.VirtualMods.vmods_rtrn.Any  Any
        Boolean
    x11.xkb.GetMap.reply.VirtualMods.vmods_rtrn.Control  Control
        Boolean
    x11.xkb.GetMap.reply.VirtualMods.vmods_rtrn.Lock  Lock
        Boolean
    x11.xkb.GetMap.reply.VirtualMods.vmods_rtrn.Shift  Shift
        Boolean
    x11.xkb.GetMap.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.firstKeyAction  firstKeyAction
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.firstKeyBehavior  firstKeyBehavior
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.firstKeyExplicit  firstKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.firstKeySym  firstKeySym
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.firstModMapKey  firstModMapKey
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.firstType  firstType
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.firstVModMapKey  firstVModMapKey
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.maxKeyCode  maxKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.minKeyCode  minKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.nKeyActions  nKeyActions
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.nKeyBehaviors  nKeyBehaviors
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.nKeyExplicit  nKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.nKeySyms  nKeySyms
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.nModMapKeys  nModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.nTypes  nTypes
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.nVModMapKeys  nVModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.present  present
        Unsigned 16-bit integer
    x11.xkb.GetMap.reply.totalActions  totalActions
        Unsigned 16-bit integer
    x11.xkb.GetMap.reply.totalKeyBehaviors  totalKeyBehaviors
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.totalKeyExplicit  totalKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.totalModMapKeys  totalModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.totalSyms  totalSyms
        Unsigned 16-bit integer
    x11.xkb.GetMap.reply.totalTypes  totalTypes
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.totalVModMapKeys  totalVModMapKeys
        Unsigned 8-bit integer
    x11.xkb.GetMap.reply.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.xkb.GetMap.reply.virtualMods.0  0
        Boolean
    x11.xkb.GetMap.reply.virtualMods.1  1
        Boolean
    x11.xkb.GetMap.reply.virtualMods.10  10
        Boolean
    x11.xkb.GetMap.reply.virtualMods.11  11
        Boolean
    x11.xkb.GetMap.reply.virtualMods.12  12
        Boolean
    x11.xkb.GetMap.reply.virtualMods.13  13
        Boolean
    x11.xkb.GetMap.reply.virtualMods.14  14
        Boolean
    x11.xkb.GetMap.reply.virtualMods.15  15
        Boolean
    x11.xkb.GetMap.reply.virtualMods.2  2
        Boolean
    x11.xkb.GetMap.reply.virtualMods.3  3
        Boolean
    x11.xkb.GetMap.reply.virtualMods.4  4
        Boolean
    x11.xkb.GetMap.reply.virtualMods.5  5
        Boolean
    x11.xkb.GetMap.reply.virtualMods.6  6
        Boolean
    x11.xkb.GetMap.reply.virtualMods.7  7
        Boolean
    x11.xkb.GetMap.reply.virtualMods.8  8
        Boolean
    x11.xkb.GetMap.reply.virtualMods.9  9
        Boolean
    x11.xkb.GetMap.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.xkb.GetMap.virtualMods.0  0
        Boolean
    x11.xkb.GetMap.virtualMods.1  1
        Boolean
    x11.xkb.GetMap.virtualMods.10  10
        Boolean
    x11.xkb.GetMap.virtualMods.11  11
        Boolean
    x11.xkb.GetMap.virtualMods.12  12
        Boolean
    x11.xkb.GetMap.virtualMods.13  13
        Boolean
    x11.xkb.GetMap.virtualMods.14  14
        Boolean
    x11.xkb.GetMap.virtualMods.15  15
        Boolean
    x11.xkb.GetMap.virtualMods.2  2
        Boolean
    x11.xkb.GetMap.virtualMods.3  3
        Boolean
    x11.xkb.GetMap.virtualMods.4  4
        Boolean
    x11.xkb.GetMap.virtualMods.5  5
        Boolean
    x11.xkb.GetMap.virtualMods.6  6
        Boolean
    x11.xkb.GetMap.virtualMods.7  7
        Boolean
    x11.xkb.GetMap.virtualMods.8  8
        Boolean
    x11.xkb.GetMap.virtualMods.9  9
        Boolean
    x11.xkb.GetNamedIndicator.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.GetNamedIndicator.indicator  indicator
        Unsigned 32-bit integer
    x11.xkb.GetNamedIndicator.ledClass  ledClass
        Unsigned 16-bit integer
    x11.xkb.GetNamedIndicator.ledID  ledID
        Unsigned 16-bit integer
    x11.xkb.GetNamedIndicator.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.GetNamedIndicator.reply.found  found
        Boolean
    x11.xkb.GetNamedIndicator.reply.indicator  indicator
        Unsigned 32-bit integer
    x11.xkb.GetNamedIndicator.reply.map_ctrls  map_ctrls
        Unsigned 32-bit integer
    x11.xkb.GetNamedIndicator.reply.map_ctrls.AccessXFeedbackMask  AccessXFeedbackMask
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_ctrls.AccessXKeys  AccessXKeys
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_ctrls.AccessXTimeoutMask  AccessXTimeoutMask
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_ctrls.AudibleBellMask  AudibleBellMask
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_ctrls.BounceKeys  BounceKeys
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_ctrls.IgnoreGroupLockMask  IgnoreGroupLockMask
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_ctrls.MouseKeys  MouseKeys
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_ctrls.MouseKeysAccel  MouseKeysAccel
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_ctrls.Overlay1Mask  Overlay1Mask
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_ctrls.Overlay2Mask  Overlay2Mask
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_ctrls.RepeatKeys  RepeatKeys
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_ctrls.SlowKeys  SlowKeys
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_ctrls.StickyKeys  StickyKeys
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_flags  map_flags
        Unsigned 8-bit integer
    x11.xkb.GetNamedIndicator.reply.map_flags.LEDDrivesKB  LEDDrivesKB
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_flags.NoAutomatic  NoAutomatic
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_flags.NoExplicit  NoExplicit
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_groups  map_groups
        Unsigned 8-bit integer
    x11.xkb.GetNamedIndicator.reply.map_groups.Any  Any
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_mods  map_mods
        Unsigned 8-bit integer
    x11.xkb.GetNamedIndicator.reply.map_mods.1  1
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_mods.2  2
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_mods.3  3
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_mods.4  4
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_mods.5  5
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_mods.Any  Any
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_mods.Control  Control
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_mods.Lock  Lock
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_mods.Shift  Shift
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_realMods  map_realMods
        Unsigned 8-bit integer
    x11.xkb.GetNamedIndicator.reply.map_realMods.1  1
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_realMods.2  2
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_realMods.3  3
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_realMods.4  4
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_realMods.5  5
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_realMods.Any  Any
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_realMods.Control  Control
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_realMods.Lock  Lock
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_realMods.Shift  Shift
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod  map_vmod
        Unsigned 16-bit integer
    x11.xkb.GetNamedIndicator.reply.map_vmod.0  0
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.1  1
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.10  10
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.11  11
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.12  12
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.13  13
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.14  14
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.15  15
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.2  2
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.3  3
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.4  4
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.5  5
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.6  6
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.7  7
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.8  8
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_vmod.9  9
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_whichGroups  map_whichGroups
        Unsigned 8-bit integer
    x11.xkb.GetNamedIndicator.reply.map_whichGroups.UseBase  UseBase
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_whichGroups.UseCompat  UseCompat
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_whichGroups.UseEffective  UseEffective
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_whichGroups.UseLatched  UseLatched
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_whichGroups.UseLocked  UseLocked
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_whichMods  map_whichMods
        Unsigned 8-bit integer
    x11.xkb.GetNamedIndicator.reply.map_whichMods.UseBase  UseBase
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_whichMods.UseCompat  UseCompat
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_whichMods.UseEffective  UseEffective
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_whichMods.UseLatched  UseLatched
        Boolean
    x11.xkb.GetNamedIndicator.reply.map_whichMods.UseLocked  UseLocked
        Boolean
    x11.xkb.GetNamedIndicator.reply.ndx  ndx
        Unsigned 8-bit integer
    x11.xkb.GetNamedIndicator.reply.on  on
        Boolean
    x11.xkb.GetNamedIndicator.reply.realIndicator  realIndicator
        Boolean
    x11.xkb.GetNames.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.GetNames.reply.Compat.compatName  compatName
        Unsigned 32-bit integer
    x11.xkb.GetNames.reply.Geometry.geometryName  geometryName
        Unsigned 32-bit integer
    x11.xkb.GetNames.reply.GroupNames.groups  groups
        No value
    x11.xkb.GetNames.reply.IndicatorNames.indicatorNames  indicatorNames
        No value
    x11.xkb.GetNames.reply.KTLevelNames.ktLevelNames  ktLevelNames
        No value
    x11.xkb.GetNames.reply.KTLevelNames.nLevelsPerType  nLevelsPerType
        Unsigned 8-bit integer
    x11.xkb.GetNames.reply.KeyAliases.keyAliases  keyAliases
        No value
    x11.xkb.GetNames.reply.KeyNames.keyNames  keyNames
        No value
    x11.xkb.GetNames.reply.KeyTypeNames.typeNames  typeNames
        No value
    x11.xkb.GetNames.reply.Keycodes.keycodesName  keycodesName
        Unsigned 32-bit integer
    x11.xkb.GetNames.reply.PhysSymbols.physSymbolsName  physSymbolsName
        Unsigned 32-bit integer
    x11.xkb.GetNames.reply.RGNames.radioGroupNames  radioGroupNames
        No value
    x11.xkb.GetNames.reply.Symbols.symbolsName  symbolsName
        Unsigned 32-bit integer
    x11.xkb.GetNames.reply.Types.typesName  typesName
        Unsigned 32-bit integer
    x11.xkb.GetNames.reply.VirtualModNames.virtualModNames  virtualModNames
        No value
    x11.xkb.GetNames.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.GetNames.reply.firstKey  firstKey
        Unsigned 8-bit integer
    x11.xkb.GetNames.reply.groupNames  groupNames
        Unsigned 8-bit integer
    x11.xkb.GetNames.reply.groupNames.Group1  Group1
        Boolean
    x11.xkb.GetNames.reply.groupNames.Group2  Group2
        Boolean
    x11.xkb.GetNames.reply.groupNames.Group3  Group3
        Boolean
    x11.xkb.GetNames.reply.groupNames.Group4  Group4
        Boolean
    x11.xkb.GetNames.reply.indicators  indicators
        Unsigned 32-bit integer
    x11.xkb.GetNames.reply.maxKeyCode  maxKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetNames.reply.minKeyCode  minKeyCode
        Unsigned 8-bit integer
    x11.xkb.GetNames.reply.nKTLevels  nKTLevels
        Unsigned 16-bit integer
    x11.xkb.GetNames.reply.nKeyAliases  nKeyAliases
        Unsigned 8-bit integer
    x11.xkb.GetNames.reply.nKeys  nKeys
        Unsigned 8-bit integer
    x11.xkb.GetNames.reply.nRadioGroups  nRadioGroups
        Unsigned 8-bit integer
    x11.xkb.GetNames.reply.nTypes  nTypes
        Unsigned 8-bit integer
    x11.xkb.GetNames.reply.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.xkb.GetNames.reply.virtualMods.0  0
        Boolean
    x11.xkb.GetNames.reply.virtualMods.1  1
        Boolean
    x11.xkb.GetNames.reply.virtualMods.10  10
        Boolean
    x11.xkb.GetNames.reply.virtualMods.11  11
        Boolean
    x11.xkb.GetNames.reply.virtualMods.12  12
        Boolean
    x11.xkb.GetNames.reply.virtualMods.13  13
        Boolean
    x11.xkb.GetNames.reply.virtualMods.14  14
        Boolean
    x11.xkb.GetNames.reply.virtualMods.15  15
        Boolean
    x11.xkb.GetNames.reply.virtualMods.2  2
        Boolean
    x11.xkb.GetNames.reply.virtualMods.3  3
        Boolean
    x11.xkb.GetNames.reply.virtualMods.4  4
        Boolean
    x11.xkb.GetNames.reply.virtualMods.5  5
        Boolean
    x11.xkb.GetNames.reply.virtualMods.6  6
        Boolean
    x11.xkb.GetNames.reply.virtualMods.7  7
        Boolean
    x11.xkb.GetNames.reply.virtualMods.8  8
        Boolean
    x11.xkb.GetNames.reply.virtualMods.9  9
        Boolean
    x11.xkb.GetNames.reply.which  which
        Unsigned 32-bit integer
    x11.xkb.GetNames.reply.which.Compat  Compat
        Boolean
    x11.xkb.GetNames.reply.which.Geometry  Geometry
        Boolean
    x11.xkb.GetNames.reply.which.GroupNames  GroupNames
        Boolean
    x11.xkb.GetNames.reply.which.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.GetNames.reply.which.KTLevelNames  KTLevelNames
        Boolean
    x11.xkb.GetNames.reply.which.KeyAliases  KeyAliases
        Boolean
    x11.xkb.GetNames.reply.which.KeyNames  KeyNames
        Boolean
    x11.xkb.GetNames.reply.which.KeyTypeNames  KeyTypeNames
        Boolean
    x11.xkb.GetNames.reply.which.Keycodes  Keycodes
        Boolean
    x11.xkb.GetNames.reply.which.PhysSymbols  PhysSymbols
        Boolean
    x11.xkb.GetNames.reply.which.RGNames  RGNames
        Boolean
    x11.xkb.GetNames.reply.which.Symbols  Symbols
        Boolean
    x11.xkb.GetNames.reply.which.Types  Types
        Boolean
    x11.xkb.GetNames.reply.which.VirtualModNames  VirtualModNames
        Boolean
    x11.xkb.GetNames.which  which
        Unsigned 32-bit integer
    x11.xkb.GetNames.which.Compat  Compat
        Boolean
    x11.xkb.GetNames.which.Geometry  Geometry
        Boolean
    x11.xkb.GetNames.which.GroupNames  GroupNames
        Boolean
    x11.xkb.GetNames.which.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.GetNames.which.KTLevelNames  KTLevelNames
        Boolean
    x11.xkb.GetNames.which.KeyAliases  KeyAliases
        Boolean
    x11.xkb.GetNames.which.KeyNames  KeyNames
        Boolean
    x11.xkb.GetNames.which.KeyTypeNames  KeyTypeNames
        Boolean
    x11.xkb.GetNames.which.Keycodes  Keycodes
        Boolean
    x11.xkb.GetNames.which.PhysSymbols  PhysSymbols
        Boolean
    x11.xkb.GetNames.which.RGNames  RGNames
        Boolean
    x11.xkb.GetNames.which.Symbols  Symbols
        Boolean
    x11.xkb.GetNames.which.Types  Types
        Boolean
    x11.xkb.GetNames.which.VirtualModNames  VirtualModNames
        Boolean
    x11.xkb.GetState.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.GetState.reply.baseGroup  baseGroup
        Signed 16-bit integer
    x11.xkb.GetState.reply.baseMods  baseMods
        Unsigned 8-bit integer
    x11.xkb.GetState.reply.baseMods.1  1
        Boolean
    x11.xkb.GetState.reply.baseMods.2  2
        Boolean
    x11.xkb.GetState.reply.baseMods.3  3
        Boolean
    x11.xkb.GetState.reply.baseMods.4  4
        Boolean
    x11.xkb.GetState.reply.baseMods.5  5
        Boolean
    x11.xkb.GetState.reply.baseMods.Any  Any
        Boolean
    x11.xkb.GetState.reply.baseMods.Control  Control
        Boolean
    x11.xkb.GetState.reply.baseMods.Lock  Lock
        Boolean
    x11.xkb.GetState.reply.baseMods.Shift  Shift
        Boolean
    x11.xkb.GetState.reply.compatGrabMods  compatGrabMods
        Unsigned 8-bit integer
    x11.xkb.GetState.reply.compatGrabMods.1  1
        Boolean
    x11.xkb.GetState.reply.compatGrabMods.2  2
        Boolean
    x11.xkb.GetState.reply.compatGrabMods.3  3
        Boolean
    x11.xkb.GetState.reply.compatGrabMods.4  4
        Boolean
    x11.xkb.GetState.reply.compatGrabMods.5  5
        Boolean
    x11.xkb.GetState.reply.compatGrabMods.Any  Any
        Boolean
    x11.xkb.GetState.reply.compatGrabMods.Control  Control
        Boolean
    x11.xkb.GetState.reply.compatGrabMods.Lock  Lock
        Boolean
    x11.xkb.GetState.reply.compatGrabMods.Shift  Shift
        Boolean
    x11.xkb.GetState.reply.compatLookupMods  compatLookupMods
        Unsigned 8-bit integer
    x11.xkb.GetState.reply.compatLookupMods.1  1
        Boolean
    x11.xkb.GetState.reply.compatLookupMods.2  2
        Boolean
    x11.xkb.GetState.reply.compatLookupMods.3  3
        Boolean
    x11.xkb.GetState.reply.compatLookupMods.4  4
        Boolean
    x11.xkb.GetState.reply.compatLookupMods.5  5
        Boolean
    x11.xkb.GetState.reply.compatLookupMods.Any  Any
        Boolean
    x11.xkb.GetState.reply.compatLookupMods.Control  Control
        Boolean
    x11.xkb.GetState.reply.compatLookupMods.Lock  Lock
        Boolean
    x11.xkb.GetState.reply.compatLookupMods.Shift  Shift
        Boolean
    x11.xkb.GetState.reply.compatState  compatState
        Unsigned 8-bit integer
    x11.xkb.GetState.reply.compatState.1  1
        Boolean
    x11.xkb.GetState.reply.compatState.2  2
        Boolean
    x11.xkb.GetState.reply.compatState.3  3
        Boolean
    x11.xkb.GetState.reply.compatState.4  4
        Boolean
    x11.xkb.GetState.reply.compatState.5  5
        Boolean
    x11.xkb.GetState.reply.compatState.Any  Any
        Boolean
    x11.xkb.GetState.reply.compatState.Control  Control
        Boolean
    x11.xkb.GetState.reply.compatState.Lock  Lock
        Boolean
    x11.xkb.GetState.reply.compatState.Shift  Shift
        Boolean
    x11.xkb.GetState.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.GetState.reply.grabMods  grabMods
        Unsigned 8-bit integer
    x11.xkb.GetState.reply.grabMods.1  1
        Boolean
    x11.xkb.GetState.reply.grabMods.2  2
        Boolean
    x11.xkb.GetState.reply.grabMods.3  3
        Boolean
    x11.xkb.GetState.reply.grabMods.4  4
        Boolean
    x11.xkb.GetState.reply.grabMods.5  5
        Boolean
    x11.xkb.GetState.reply.grabMods.Any  Any
        Boolean
    x11.xkb.GetState.reply.grabMods.Control  Control
        Boolean
    x11.xkb.GetState.reply.grabMods.Lock  Lock
        Boolean
    x11.xkb.GetState.reply.grabMods.Shift  Shift
        Boolean
    x11.xkb.GetState.reply.group  group
        Unsigned 8-bit integer
    x11.xkb.GetState.reply.latchedGroup  latchedGroup
        Signed 16-bit integer
    x11.xkb.GetState.reply.latchedMods  latchedMods
        Unsigned 8-bit integer
    x11.xkb.GetState.reply.latchedMods.1  1
        Boolean
    x11.xkb.GetState.reply.latchedMods.2  2
        Boolean
    x11.xkb.GetState.reply.latchedMods.3  3
        Boolean
    x11.xkb.GetState.reply.latchedMods.4  4
        Boolean
    x11.xkb.GetState.reply.latchedMods.5  5
        Boolean
    x11.xkb.GetState.reply.latchedMods.Any  Any
        Boolean
    x11.xkb.GetState.reply.latchedMods.Control  Control
        Boolean
    x11.xkb.GetState.reply.latchedMods.Lock  Lock
        Boolean
    x11.xkb.GetState.reply.latchedMods.Shift  Shift
        Boolean
    x11.xkb.GetState.reply.lockedGroup  lockedGroup
        Unsigned 8-bit integer
    x11.xkb.GetState.reply.lockedMods  lockedMods
        Unsigned 8-bit integer
    x11.xkb.GetState.reply.lockedMods.1  1
        Boolean
    x11.xkb.GetState.reply.lockedMods.2  2
        Boolean
    x11.xkb.GetState.reply.lockedMods.3  3
        Boolean
    x11.xkb.GetState.reply.lockedMods.4  4
        Boolean
    x11.xkb.GetState.reply.lockedMods.5  5
        Boolean
    x11.xkb.GetState.reply.lockedMods.Any  Any
        Boolean
    x11.xkb.GetState.reply.lockedMods.Control  Control
        Boolean
    x11.xkb.GetState.reply.lockedMods.Lock  Lock
        Boolean
    x11.xkb.GetState.reply.lockedMods.Shift  Shift
        Boolean
    x11.xkb.GetState.reply.mods  mods
        Unsigned 8-bit integer
    x11.xkb.GetState.reply.mods.1  1
        Boolean
    x11.xkb.GetState.reply.mods.2  2
        Boolean
    x11.xkb.GetState.reply.mods.3  3
        Boolean
    x11.xkb.GetState.reply.mods.4  4
        Boolean
    x11.xkb.GetState.reply.mods.5  5
        Boolean
    x11.xkb.GetState.reply.mods.Any  Any
        Boolean
    x11.xkb.GetState.reply.mods.Control  Control
        Boolean
    x11.xkb.GetState.reply.mods.Lock  Lock
        Boolean
    x11.xkb.GetState.reply.mods.Shift  Shift
        Boolean
    x11.xkb.GetState.reply.ptrBtnState  ptrBtnState
        Unsigned 16-bit integer
    x11.xkb.GetState.reply.ptrBtnState.Button1  Button1
        Boolean
    x11.xkb.GetState.reply.ptrBtnState.Button2  Button2
        Boolean
    x11.xkb.GetState.reply.ptrBtnState.Button3  Button3
        Boolean
    x11.xkb.GetState.reply.ptrBtnState.Button4  Button4
        Boolean
    x11.xkb.GetState.reply.ptrBtnState.Button5  Button5
        Boolean
    x11.xkb.GetState.reply.ptrBtnState.Control  Control
        Boolean
    x11.xkb.GetState.reply.ptrBtnState.Lock  Lock
        Boolean
    x11.xkb.GetState.reply.ptrBtnState.Mod1  Mod1
        Boolean
    x11.xkb.GetState.reply.ptrBtnState.Mod2  Mod2
        Boolean
    x11.xkb.GetState.reply.ptrBtnState.Mod3  Mod3
        Boolean
    x11.xkb.GetState.reply.ptrBtnState.Mod4  Mod4
        Boolean
    x11.xkb.GetState.reply.ptrBtnState.Mod5  Mod5
        Boolean
    x11.xkb.GetState.reply.ptrBtnState.Shift  Shift
        Boolean
    x11.xkb.IndicatorMapNotify.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.IndicatorMapNotify.mapChanged  mapChanged
        Unsigned 32-bit integer
    x11.xkb.IndicatorMapNotify.state  state
        Unsigned 32-bit integer
    x11.xkb.IndicatorMapNotify.time  time
        Unsigned 32-bit integer
    x11.xkb.IndicatorStateNotify.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.IndicatorStateNotify.state  state
        Unsigned 32-bit integer
    x11.xkb.IndicatorStateNotify.stateChanged  stateChanged
        Unsigned 32-bit integer
    x11.xkb.IndicatorStateNotify.time  time
        Unsigned 32-bit integer
    x11.xkb.LatchLockState.affectModLatches  affectModLatches
        Unsigned 8-bit integer
    x11.xkb.LatchLockState.affectModLatches.1  1
        Boolean
    x11.xkb.LatchLockState.affectModLatches.2  2
        Boolean
    x11.xkb.LatchLockState.affectModLatches.3  3
        Boolean
    x11.xkb.LatchLockState.affectModLatches.4  4
        Boolean
    x11.xkb.LatchLockState.affectModLatches.5  5
        Boolean
    x11.xkb.LatchLockState.affectModLatches.Any  Any
        Boolean
    x11.xkb.LatchLockState.affectModLatches.Control  Control
        Boolean
    x11.xkb.LatchLockState.affectModLatches.Lock  Lock
        Boolean
    x11.xkb.LatchLockState.affectModLatches.Shift  Shift
        Boolean
    x11.xkb.LatchLockState.affectModLocks  affectModLocks
        Unsigned 8-bit integer
    x11.xkb.LatchLockState.affectModLocks.1  1
        Boolean
    x11.xkb.LatchLockState.affectModLocks.2  2
        Boolean
    x11.xkb.LatchLockState.affectModLocks.3  3
        Boolean
    x11.xkb.LatchLockState.affectModLocks.4  4
        Boolean
    x11.xkb.LatchLockState.affectModLocks.5  5
        Boolean
    x11.xkb.LatchLockState.affectModLocks.Any  Any
        Boolean
    x11.xkb.LatchLockState.affectModLocks.Control  Control
        Boolean
    x11.xkb.LatchLockState.affectModLocks.Lock  Lock
        Boolean
    x11.xkb.LatchLockState.affectModLocks.Shift  Shift
        Boolean
    x11.xkb.LatchLockState.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.LatchLockState.groupLatch  groupLatch
        Unsigned 16-bit integer
    x11.xkb.LatchLockState.groupLock  groupLock
        Unsigned 8-bit integer
    x11.xkb.LatchLockState.latchGroup  latchGroup
        Boolean
    x11.xkb.LatchLockState.lockGroup  lockGroup
        Boolean
    x11.xkb.LatchLockState.modLocks  modLocks
        Unsigned 8-bit integer
    x11.xkb.LatchLockState.modLocks.1  1
        Boolean
    x11.xkb.LatchLockState.modLocks.2  2
        Boolean
    x11.xkb.LatchLockState.modLocks.3  3
        Boolean
    x11.xkb.LatchLockState.modLocks.4  4
        Boolean
    x11.xkb.LatchLockState.modLocks.5  5
        Boolean
    x11.xkb.LatchLockState.modLocks.Any  Any
        Boolean
    x11.xkb.LatchLockState.modLocks.Control  Control
        Boolean
    x11.xkb.LatchLockState.modLocks.Lock  Lock
        Boolean
    x11.xkb.LatchLockState.modLocks.Shift  Shift
        Boolean
    x11.xkb.ListComponents.compatMapSpec  compatMapSpec
        String
    x11.xkb.ListComponents.compatMapSpecLen  compatMapSpecLen
        Unsigned 8-bit integer
    x11.xkb.ListComponents.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.ListComponents.geometrySpec  geometrySpec
        String
    x11.xkb.ListComponents.geometrySpecLen  geometrySpecLen
        Unsigned 8-bit integer
    x11.xkb.ListComponents.keycodesSpec  keycodesSpec
        String
    x11.xkb.ListComponents.keycodesSpecLen  keycodesSpecLen
        Unsigned 8-bit integer
    x11.xkb.ListComponents.keymapsSpec  keymapsSpec
        String
    x11.xkb.ListComponents.keymapsSpecLen  keymapsSpecLen
        Unsigned 8-bit integer
    x11.xkb.ListComponents.maxNames  maxNames
        Unsigned 16-bit integer
    x11.xkb.ListComponents.reply.compatMaps  compatMaps
        No value
    x11.xkb.ListComponents.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.ListComponents.reply.extra  extra
        Unsigned 16-bit integer
    x11.xkb.ListComponents.reply.geometries  geometries
        No value
    x11.xkb.ListComponents.reply.keycodes  keycodes
        No value
    x11.xkb.ListComponents.reply.keymaps  keymaps
        No value
    x11.xkb.ListComponents.reply.nCompatMaps  nCompatMaps
        Unsigned 16-bit integer
    x11.xkb.ListComponents.reply.nGeometries  nGeometries
        Unsigned 16-bit integer
    x11.xkb.ListComponents.reply.nKeycodes  nKeycodes
        Unsigned 16-bit integer
    x11.xkb.ListComponents.reply.nKeymaps  nKeymaps
        Unsigned 16-bit integer
    x11.xkb.ListComponents.reply.nSymbols  nSymbols
        Unsigned 16-bit integer
    x11.xkb.ListComponents.reply.nTypes  nTypes
        Unsigned 16-bit integer
    x11.xkb.ListComponents.reply.symbols  symbols
        No value
    x11.xkb.ListComponents.reply.types  types
        No value
    x11.xkb.ListComponents.symbolsSpec  symbolsSpec
        String
    x11.xkb.ListComponents.symbolsSpecLen  symbolsSpecLen
        Unsigned 8-bit integer
    x11.xkb.ListComponents.typesSpec  typesSpec
        String
    x11.xkb.ListComponents.typesSpecLen  typesSpecLen
        Unsigned 8-bit integer
    x11.xkb.MapNotify.changed  changed
        Unsigned 16-bit integer
    x11.xkb.MapNotify.changed.ExplicitComponents  ExplicitComponents
        Boolean
    x11.xkb.MapNotify.changed.KeyActions  KeyActions
        Boolean
    x11.xkb.MapNotify.changed.KeyBehaviors  KeyBehaviors
        Boolean
    x11.xkb.MapNotify.changed.KeySyms  KeySyms
        Boolean
    x11.xkb.MapNotify.changed.KeyTypes  KeyTypes
        Boolean
    x11.xkb.MapNotify.changed.ModifierMap  ModifierMap
        Boolean
    x11.xkb.MapNotify.changed.VirtualModMap  VirtualModMap
        Boolean
    x11.xkb.MapNotify.changed.VirtualMods  VirtualMods
        Boolean
    x11.xkb.MapNotify.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.MapNotify.firstKeyAct  firstKeyAct
        Unsigned 8-bit integer
    x11.xkb.MapNotify.firstKeyBehavior  firstKeyBehavior
        Unsigned 8-bit integer
    x11.xkb.MapNotify.firstKeyExplicit  firstKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.MapNotify.firstKeySym  firstKeySym
        Unsigned 8-bit integer
    x11.xkb.MapNotify.firstModMapKey  firstModMapKey
        Unsigned 8-bit integer
    x11.xkb.MapNotify.firstType  firstType
        Unsigned 8-bit integer
    x11.xkb.MapNotify.firstVModMapKey  firstVModMapKey
        Unsigned 8-bit integer
    x11.xkb.MapNotify.maxKeyCode  maxKeyCode
        Unsigned 8-bit integer
    x11.xkb.MapNotify.minKeyCode  minKeyCode
        Unsigned 8-bit integer
    x11.xkb.MapNotify.nKeyActs  nKeyActs
        Unsigned 8-bit integer
    x11.xkb.MapNotify.nKeyBehavior  nKeyBehavior
        Unsigned 8-bit integer
    x11.xkb.MapNotify.nKeyExplicit  nKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.MapNotify.nKeySyms  nKeySyms
        Unsigned 8-bit integer
    x11.xkb.MapNotify.nModMapKeys  nModMapKeys
        Unsigned 8-bit integer
    x11.xkb.MapNotify.nTypes  nTypes
        Unsigned 8-bit integer
    x11.xkb.MapNotify.nVModMapKeys  nVModMapKeys
        Unsigned 8-bit integer
    x11.xkb.MapNotify.ptrBtnActions  ptrBtnActions
        Unsigned 8-bit integer
    x11.xkb.MapNotify.time  time
        Unsigned 32-bit integer
    x11.xkb.MapNotify.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.xkb.MapNotify.virtualMods.0  0
        Boolean
    x11.xkb.MapNotify.virtualMods.1  1
        Boolean
    x11.xkb.MapNotify.virtualMods.10  10
        Boolean
    x11.xkb.MapNotify.virtualMods.11  11
        Boolean
    x11.xkb.MapNotify.virtualMods.12  12
        Boolean
    x11.xkb.MapNotify.virtualMods.13  13
        Boolean
    x11.xkb.MapNotify.virtualMods.14  14
        Boolean
    x11.xkb.MapNotify.virtualMods.15  15
        Boolean
    x11.xkb.MapNotify.virtualMods.2  2
        Boolean
    x11.xkb.MapNotify.virtualMods.3  3
        Boolean
    x11.xkb.MapNotify.virtualMods.4  4
        Boolean
    x11.xkb.MapNotify.virtualMods.5  5
        Boolean
    x11.xkb.MapNotify.virtualMods.6  6
        Boolean
    x11.xkb.MapNotify.virtualMods.7  7
        Boolean
    x11.xkb.MapNotify.virtualMods.8  8
        Boolean
    x11.xkb.MapNotify.virtualMods.9  9
        Boolean
    x11.xkb.NamesNotify.changed  changed
        Unsigned 16-bit integer
    x11.xkb.NamesNotify.changed.Compat  Compat
        Boolean
    x11.xkb.NamesNotify.changed.Geometry  Geometry
        Boolean
    x11.xkb.NamesNotify.changed.GroupNames  GroupNames
        Boolean
    x11.xkb.NamesNotify.changed.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.NamesNotify.changed.KTLevelNames  KTLevelNames
        Boolean
    x11.xkb.NamesNotify.changed.KeyAliases  KeyAliases
        Boolean
    x11.xkb.NamesNotify.changed.KeyNames  KeyNames
        Boolean
    x11.xkb.NamesNotify.changed.KeyTypeNames  KeyTypeNames
        Boolean
    x11.xkb.NamesNotify.changed.Keycodes  Keycodes
        Boolean
    x11.xkb.NamesNotify.changed.PhysSymbols  PhysSymbols
        Boolean
    x11.xkb.NamesNotify.changed.RGNames  RGNames
        Boolean
    x11.xkb.NamesNotify.changed.Symbols  Symbols
        Boolean
    x11.xkb.NamesNotify.changed.Types  Types
        Boolean
    x11.xkb.NamesNotify.changed.VirtualModNames  VirtualModNames
        Boolean
    x11.xkb.NamesNotify.changedGroupNames  changedGroupNames
        Unsigned 8-bit integer
    x11.xkb.NamesNotify.changedGroupNames.Group1  Group1
        Boolean
    x11.xkb.NamesNotify.changedGroupNames.Group2  Group2
        Boolean
    x11.xkb.NamesNotify.changedGroupNames.Group3  Group3
        Boolean
    x11.xkb.NamesNotify.changedGroupNames.Group4  Group4
        Boolean
    x11.xkb.NamesNotify.changedIndicators  changedIndicators
        Unsigned 32-bit integer
    x11.xkb.NamesNotify.changedVirtualMods  changedVirtualMods
        Unsigned 16-bit integer
    x11.xkb.NamesNotify.changedVirtualMods.0  0
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.1  1
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.10  10
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.11  11
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.12  12
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.13  13
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.14  14
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.15  15
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.2  2
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.3  3
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.4  4
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.5  5
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.6  6
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.7  7
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.8  8
        Boolean
    x11.xkb.NamesNotify.changedVirtualMods.9  9
        Boolean
    x11.xkb.NamesNotify.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.NamesNotify.firstKey  firstKey
        Unsigned 8-bit integer
    x11.xkb.NamesNotify.firstLevelName  firstLevelName
        Unsigned 8-bit integer
    x11.xkb.NamesNotify.firstType  firstType
        Unsigned 8-bit integer
    x11.xkb.NamesNotify.nKeyAliases  nKeyAliases
        Unsigned 8-bit integer
    x11.xkb.NamesNotify.nKeys  nKeys
        Unsigned 8-bit integer
    x11.xkb.NamesNotify.nLevelNames  nLevelNames
        Unsigned 8-bit integer
    x11.xkb.NamesNotify.nRadioGroups  nRadioGroups
        Unsigned 8-bit integer
    x11.xkb.NamesNotify.nTypes  nTypes
        Unsigned 8-bit integer
    x11.xkb.NamesNotify.time  time
        Unsigned 32-bit integer
    x11.xkb.NewKeyboardNotify.changed  changed
        Unsigned 16-bit integer
    x11.xkb.NewKeyboardNotify.changed.DeviceID  DeviceID
        Boolean
    x11.xkb.NewKeyboardNotify.changed.Geometry  Geometry
        Boolean
    x11.xkb.NewKeyboardNotify.changed.Keycodes  Keycodes
        Boolean
    x11.xkb.NewKeyboardNotify.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.NewKeyboardNotify.maxKeyCode  maxKeyCode
        Unsigned 8-bit integer
    x11.xkb.NewKeyboardNotify.minKeyCode  minKeyCode
        Unsigned 8-bit integer
    x11.xkb.NewKeyboardNotify.oldDeviceID  oldDeviceID
        Unsigned 8-bit integer
    x11.xkb.NewKeyboardNotify.oldMaxKeyCode  oldMaxKeyCode
        Unsigned 8-bit integer
    x11.xkb.NewKeyboardNotify.oldMinKeyCode  oldMinKeyCode
        Unsigned 8-bit integer
    x11.xkb.NewKeyboardNotify.requestMajor  requestMajor
        Unsigned 8-bit integer
    x11.xkb.NewKeyboardNotify.requestMinor  requestMinor
        Unsigned 8-bit integer
    x11.xkb.NewKeyboardNotify.time  time
        Unsigned 32-bit integer
    x11.xkb.PerClientFlags.autoCtrls  autoCtrls
        Unsigned 32-bit integer
    x11.xkb.PerClientFlags.autoCtrls.AccessXFeedbackMask  AccessXFeedbackMask
        Boolean
    x11.xkb.PerClientFlags.autoCtrls.AccessXKeys  AccessXKeys
        Boolean
    x11.xkb.PerClientFlags.autoCtrls.AccessXTimeoutMask  AccessXTimeoutMask
        Boolean
    x11.xkb.PerClientFlags.autoCtrls.AudibleBellMask  AudibleBellMask
        Boolean
    x11.xkb.PerClientFlags.autoCtrls.BounceKeys  BounceKeys
        Boolean
    x11.xkb.PerClientFlags.autoCtrls.IgnoreGroupLockMask  IgnoreGroupLockMask
        Boolean
    x11.xkb.PerClientFlags.autoCtrls.MouseKeys  MouseKeys
        Boolean
    x11.xkb.PerClientFlags.autoCtrls.MouseKeysAccel  MouseKeysAccel
        Boolean
    x11.xkb.PerClientFlags.autoCtrls.Overlay1Mask  Overlay1Mask
        Boolean
    x11.xkb.PerClientFlags.autoCtrls.Overlay2Mask  Overlay2Mask
        Boolean
    x11.xkb.PerClientFlags.autoCtrls.RepeatKeys  RepeatKeys
        Boolean
    x11.xkb.PerClientFlags.autoCtrls.SlowKeys  SlowKeys
        Boolean
    x11.xkb.PerClientFlags.autoCtrls.StickyKeys  StickyKeys
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues  autoCtrlsValues
        Unsigned 32-bit integer
    x11.xkb.PerClientFlags.autoCtrlsValues.AccessXFeedbackMask  AccessXFeedbackMask
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues.AccessXKeys  AccessXKeys
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues.AccessXTimeoutMask  AccessXTimeoutMask
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues.AudibleBellMask  AudibleBellMask
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues.BounceKeys  BounceKeys
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues.IgnoreGroupLockMask  IgnoreGroupLockMask
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues.MouseKeys  MouseKeys
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues.MouseKeysAccel  MouseKeysAccel
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues.Overlay1Mask  Overlay1Mask
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues.Overlay2Mask  Overlay2Mask
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues.RepeatKeys  RepeatKeys
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues.SlowKeys  SlowKeys
        Boolean
    x11.xkb.PerClientFlags.autoCtrlsValues.StickyKeys  StickyKeys
        Boolean
    x11.xkb.PerClientFlags.change  change
        Unsigned 32-bit integer
    x11.xkb.PerClientFlags.change.AutoResetControls  AutoResetControls
        Boolean
    x11.xkb.PerClientFlags.change.DetectableAutoRepeat  DetectableAutoRepeat
        Boolean
    x11.xkb.PerClientFlags.change.GrabsUseXKBState  GrabsUseXKBState
        Boolean
    x11.xkb.PerClientFlags.change.LookupStateWhenGrabbed  LookupStateWhenGrabbed
        Boolean
    x11.xkb.PerClientFlags.change.SendEventUsesXKBState  SendEventUsesXKBState
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange  ctrlsToChange
        Unsigned 32-bit integer
    x11.xkb.PerClientFlags.ctrlsToChange.AccessXFeedbackMask  AccessXFeedbackMask
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange.AccessXKeys  AccessXKeys
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange.AccessXTimeoutMask  AccessXTimeoutMask
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange.AudibleBellMask  AudibleBellMask
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange.BounceKeys  BounceKeys
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange.IgnoreGroupLockMask  IgnoreGroupLockMask
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange.MouseKeys  MouseKeys
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange.MouseKeysAccel  MouseKeysAccel
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange.Overlay1Mask  Overlay1Mask
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange.Overlay2Mask  Overlay2Mask
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange.RepeatKeys  RepeatKeys
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange.SlowKeys  SlowKeys
        Boolean
    x11.xkb.PerClientFlags.ctrlsToChange.StickyKeys  StickyKeys
        Boolean
    x11.xkb.PerClientFlags.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.PerClientFlags.reply.autoCtrls  autoCtrls
        Unsigned 32-bit integer
    x11.xkb.PerClientFlags.reply.autoCtrls.AccessXFeedbackMask  AccessXFeedbackMask
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrls.AccessXKeys  AccessXKeys
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrls.AccessXTimeoutMask  AccessXTimeoutMask
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrls.AudibleBellMask  AudibleBellMask
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrls.BounceKeys  BounceKeys
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrls.IgnoreGroupLockMask  IgnoreGroupLockMask
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrls.MouseKeys  MouseKeys
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrls.MouseKeysAccel  MouseKeysAccel
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrls.Overlay1Mask  Overlay1Mask
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrls.Overlay2Mask  Overlay2Mask
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrls.RepeatKeys  RepeatKeys
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrls.SlowKeys  SlowKeys
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrls.StickyKeys  StickyKeys
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues  autoCtrlsValues
        Unsigned 32-bit integer
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.AccessXFeedbackMask  AccessXFeedbackMask
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.AccessXKeys  AccessXKeys
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.AccessXTimeoutMask  AccessXTimeoutMask
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.AudibleBellMask  AudibleBellMask
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.BounceKeys  BounceKeys
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.IgnoreGroupLockMask  IgnoreGroupLockMask
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.MouseKeys  MouseKeys
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.MouseKeysAccel  MouseKeysAccel
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.Overlay1Mask  Overlay1Mask
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.Overlay2Mask  Overlay2Mask
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.RepeatKeys  RepeatKeys
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.SlowKeys  SlowKeys
        Boolean
    x11.xkb.PerClientFlags.reply.autoCtrlsValues.StickyKeys  StickyKeys
        Boolean
    x11.xkb.PerClientFlags.reply.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.PerClientFlags.reply.supported  supported
        Unsigned 32-bit integer
    x11.xkb.PerClientFlags.reply.supported.AutoResetControls  AutoResetControls
        Boolean
    x11.xkb.PerClientFlags.reply.supported.DetectableAutoRepeat  DetectableAutoRepeat
        Boolean
    x11.xkb.PerClientFlags.reply.supported.GrabsUseXKBState  GrabsUseXKBState
        Boolean
    x11.xkb.PerClientFlags.reply.supported.LookupStateWhenGrabbed  LookupStateWhenGrabbed
        Boolean
    x11.xkb.PerClientFlags.reply.supported.SendEventUsesXKBState  SendEventUsesXKBState
        Boolean
    x11.xkb.PerClientFlags.reply.value  value
        Unsigned 32-bit integer
    x11.xkb.PerClientFlags.reply.value.AutoResetControls  AutoResetControls
        Boolean
    x11.xkb.PerClientFlags.reply.value.DetectableAutoRepeat  DetectableAutoRepeat
        Boolean
    x11.xkb.PerClientFlags.reply.value.GrabsUseXKBState  GrabsUseXKBState
        Boolean
    x11.xkb.PerClientFlags.reply.value.LookupStateWhenGrabbed  LookupStateWhenGrabbed
        Boolean
    x11.xkb.PerClientFlags.reply.value.SendEventUsesXKBState  SendEventUsesXKBState
        Boolean
    x11.xkb.PerClientFlags.value  value
        Unsigned 32-bit integer
    x11.xkb.PerClientFlags.value.AutoResetControls  AutoResetControls
        Boolean
    x11.xkb.PerClientFlags.value.DetectableAutoRepeat  DetectableAutoRepeat
        Boolean
    x11.xkb.PerClientFlags.value.GrabsUseXKBState  GrabsUseXKBState
        Boolean
    x11.xkb.PerClientFlags.value.LookupStateWhenGrabbed  LookupStateWhenGrabbed
        Boolean
    x11.xkb.PerClientFlags.value.SendEventUsesXKBState  SendEventUsesXKBState
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.accessXDetails  accessXDetails
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.AccessXNotify.accessXDetails.AXKWarning  AXKWarning
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.accessXDetails.BKAccept  BKAccept
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.accessXDetails.BKReject  BKReject
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.accessXDetails.SKAccept  SKAccept
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.accessXDetails.SKPress  SKPress
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.accessXDetails.SKReject  SKReject
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.accessXDetails.SKRelease  SKRelease
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.affectAccessX  affectAccessX
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.AccessXNotify.affectAccessX.AXKWarning  AXKWarning
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.affectAccessX.BKAccept  BKAccept
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.affectAccessX.BKReject  BKReject
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.affectAccessX.SKAccept  SKAccept
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.affectAccessX.SKPress  SKPress
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.affectAccessX.SKReject  SKReject
        Boolean
    x11.xkb.SelectEvents.AccessXNotify.affectAccessX.SKRelease  SKRelease
        Boolean
    x11.xkb.SelectEvents.ActionMessage.affectMsgDetails  affectMsgDetails
        Unsigned 8-bit integer
    x11.xkb.SelectEvents.ActionMessage.msgDetails  msgDetails
        Unsigned 8-bit integer
    x11.xkb.SelectEvents.BellNotify.affectBell  affectBell
        Unsigned 8-bit integer
    x11.xkb.SelectEvents.BellNotify.bellDetails  bellDetails
        Unsigned 8-bit integer
    x11.xkb.SelectEvents.CompatMapNotify.affectCompat  affectCompat
        Unsigned 8-bit integer
    x11.xkb.SelectEvents.CompatMapNotify.affectCompat.GroupCompat  GroupCompat
        Boolean
    x11.xkb.SelectEvents.CompatMapNotify.affectCompat.SymInterp  SymInterp
        Boolean
    x11.xkb.SelectEvents.CompatMapNotify.compatDetails  compatDetails
        Unsigned 8-bit integer
    x11.xkb.SelectEvents.CompatMapNotify.compatDetails.GroupCompat  GroupCompat
        Boolean
    x11.xkb.SelectEvents.CompatMapNotify.compatDetails.SymInterp  SymInterp
        Boolean
    x11.xkb.SelectEvents.ControlsNotify.affectCtrls  affectCtrls
        Unsigned 32-bit integer
    x11.xkb.SelectEvents.ControlsNotify.affectCtrls.ControlsEnabled  ControlsEnabled
        Boolean
    x11.xkb.SelectEvents.ControlsNotify.affectCtrls.GroupsWrap  GroupsWrap
        Boolean
    x11.xkb.SelectEvents.ControlsNotify.affectCtrls.IgnoreLockMods  IgnoreLockMods
        Boolean
    x11.xkb.SelectEvents.ControlsNotify.affectCtrls.InternalMods  InternalMods
        Boolean
    x11.xkb.SelectEvents.ControlsNotify.affectCtrls.PerKeyRepeat  PerKeyRepeat
        Boolean
    x11.xkb.SelectEvents.ControlsNotify.ctrlDetails  ctrlDetails
        Unsigned 32-bit integer
    x11.xkb.SelectEvents.ControlsNotify.ctrlDetails.ControlsEnabled  ControlsEnabled
        Boolean
    x11.xkb.SelectEvents.ControlsNotify.ctrlDetails.GroupsWrap  GroupsWrap
        Boolean
    x11.xkb.SelectEvents.ControlsNotify.ctrlDetails.IgnoreLockMods  IgnoreLockMods
        Boolean
    x11.xkb.SelectEvents.ControlsNotify.ctrlDetails.InternalMods  InternalMods
        Boolean
    x11.xkb.SelectEvents.ControlsNotify.ctrlDetails.PerKeyRepeat  PerKeyRepeat
        Boolean
    x11.xkb.SelectEvents.ExtensionDeviceNotify.affectExtDev  affectExtDev
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.ExtensionDeviceNotify.affectExtDev.ButtonActions  ButtonActions
        Boolean
    x11.xkb.SelectEvents.ExtensionDeviceNotify.affectExtDev.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.SelectEvents.ExtensionDeviceNotify.affectExtDev.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.SelectEvents.ExtensionDeviceNotify.affectExtDev.IndicatorState  IndicatorState
        Boolean
    x11.xkb.SelectEvents.ExtensionDeviceNotify.affectExtDev.Keyboards  Keyboards
        Boolean
    x11.xkb.SelectEvents.ExtensionDeviceNotify.extdevDetails  extdevDetails
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.ExtensionDeviceNotify.extdevDetails.ButtonActions  ButtonActions
        Boolean
    x11.xkb.SelectEvents.ExtensionDeviceNotify.extdevDetails.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.SelectEvents.ExtensionDeviceNotify.extdevDetails.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.SelectEvents.ExtensionDeviceNotify.extdevDetails.IndicatorState  IndicatorState
        Boolean
    x11.xkb.SelectEvents.ExtensionDeviceNotify.extdevDetails.Keyboards  Keyboards
        Boolean
    x11.xkb.SelectEvents.IndicatorMapNotify.affectIndicatorMap  affectIndicatorMap
        Unsigned 32-bit integer
    x11.xkb.SelectEvents.IndicatorMapNotify.indicatorMapDetails  indicatorMapDetails
        Unsigned 32-bit integer
    x11.xkb.SelectEvents.IndicatorStateNotify.affectIndicatorState  affectIndicatorState
        Unsigned 32-bit integer
    x11.xkb.SelectEvents.IndicatorStateNotify.indicatorStateDetails  indicatorStateDetails
        Unsigned 32-bit integer
    x11.xkb.SelectEvents.NamesNotify.affectNames  affectNames
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.NamesNotify.affectNames.Compat  Compat
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.Geometry  Geometry
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.GroupNames  GroupNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.KTLevelNames  KTLevelNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.KeyAliases  KeyAliases
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.KeyNames  KeyNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.KeyTypeNames  KeyTypeNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.Keycodes  Keycodes
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.PhysSymbols  PhysSymbols
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.RGNames  RGNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.Symbols  Symbols
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.Types  Types
        Boolean
    x11.xkb.SelectEvents.NamesNotify.affectNames.VirtualModNames  VirtualModNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails  namesDetails
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.NamesNotify.namesDetails.Compat  Compat
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.Geometry  Geometry
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.GroupNames  GroupNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.KTLevelNames  KTLevelNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.KeyAliases  KeyAliases
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.KeyNames  KeyNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.KeyTypeNames  KeyTypeNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.Keycodes  Keycodes
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.PhysSymbols  PhysSymbols
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.RGNames  RGNames
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.Symbols  Symbols
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.Types  Types
        Boolean
    x11.xkb.SelectEvents.NamesNotify.namesDetails.VirtualModNames  VirtualModNames
        Boolean
    x11.xkb.SelectEvents.NewKeyboardNotify.affectNewKeyboard  affectNewKeyboard
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.NewKeyboardNotify.affectNewKeyboard.DeviceID  DeviceID
        Boolean
    x11.xkb.SelectEvents.NewKeyboardNotify.affectNewKeyboard.Geometry  Geometry
        Boolean
    x11.xkb.SelectEvents.NewKeyboardNotify.affectNewKeyboard.Keycodes  Keycodes
        Boolean
    x11.xkb.SelectEvents.NewKeyboardNotify.newKeyboardDetails  newKeyboardDetails
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.NewKeyboardNotify.newKeyboardDetails.DeviceID  DeviceID
        Boolean
    x11.xkb.SelectEvents.NewKeyboardNotify.newKeyboardDetails.Geometry  Geometry
        Boolean
    x11.xkb.SelectEvents.NewKeyboardNotify.newKeyboardDetails.Keycodes  Keycodes
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState  affectState
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.StateNotify.affectState.CompatGrabMods  CompatGrabMods
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.CompatLookupMods  CompatLookupMods
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.CompatState  CompatState
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.GrabMods  GrabMods
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.GroupBase  GroupBase
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.GroupLatch  GroupLatch
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.GroupLock  GroupLock
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.GroupState  GroupState
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.LookupMods  LookupMods
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.ModifierBase  ModifierBase
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.ModifierLatch  ModifierLatch
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.ModifierLock  ModifierLock
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.ModifierState  ModifierState
        Boolean
    x11.xkb.SelectEvents.StateNotify.affectState.PointerButtons  PointerButtons
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails  stateDetails
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.StateNotify.stateDetails.CompatGrabMods  CompatGrabMods
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.CompatLookupMods  CompatLookupMods
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.CompatState  CompatState
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.GrabMods  GrabMods
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.GroupBase  GroupBase
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.GroupLatch  GroupLatch
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.GroupLock  GroupLock
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.GroupState  GroupState
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.LookupMods  LookupMods
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.ModifierBase  ModifierBase
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.ModifierLatch  ModifierLatch
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.ModifierLock  ModifierLock
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.ModifierState  ModifierState
        Boolean
    x11.xkb.SelectEvents.StateNotify.stateDetails.PointerButtons  PointerButtons
        Boolean
    x11.xkb.SelectEvents.affectMap  affectMap
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.affectWhich  affectWhich
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.clear  clear
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.map  map
        Unsigned 16-bit integer
    x11.xkb.SelectEvents.selectAll  selectAll
        Unsigned 16-bit integer
    x11.xkb.SetCompatMap.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.SetCompatMap.firstSI  firstSI
        Unsigned 16-bit integer
    x11.xkb.SetCompatMap.groupMaps  groupMaps
        No value
    x11.xkb.SetCompatMap.groups  groups
        Unsigned 8-bit integer
    x11.xkb.SetCompatMap.groups.Group1  Group1
        Boolean
    x11.xkb.SetCompatMap.groups.Group2  Group2
        Boolean
    x11.xkb.SetCompatMap.groups.Group3  Group3
        Boolean
    x11.xkb.SetCompatMap.groups.Group4  Group4
        Boolean
    x11.xkb.SetCompatMap.nSI  nSI
        Unsigned 16-bit integer
    x11.xkb.SetCompatMap.recomputeActions  recomputeActions
        Boolean
    x11.xkb.SetCompatMap.si  si
        Unsigned 8-bit integer
    x11.xkb.SetCompatMap.truncateSI  truncateSI
        Boolean
    x11.xkb.SetControls.accessXOptions  accessXOptions
        No value
    x11.xkb.SetControls.accessXTimeout  accessXTimeout
        Unsigned 16-bit integer
    x11.xkb.SetControls.accessXTimeoutMask  accessXTimeoutMask
        Unsigned 32-bit integer
    x11.xkb.SetControls.accessXTimeoutOptionsMask  accessXTimeoutOptionsMask
        No value
    x11.xkb.SetControls.accessXTimeoutOptionsValues  accessXTimeoutOptionsValues
        No value
    x11.xkb.SetControls.accessXTimeoutValues  accessXTimeoutValues
        Unsigned 32-bit integer
    x11.xkb.SetControls.affectEnabledControls  affectEnabledControls
        Unsigned 32-bit integer
    x11.xkb.SetControls.affectIgnoreLockRealMods  affectIgnoreLockRealMods
        Unsigned 8-bit integer
    x11.xkb.SetControls.affectIgnoreLockRealMods.1  1
        Boolean
    x11.xkb.SetControls.affectIgnoreLockRealMods.2  2
        Boolean
    x11.xkb.SetControls.affectIgnoreLockRealMods.3  3
        Boolean
    x11.xkb.SetControls.affectIgnoreLockRealMods.4  4
        Boolean
    x11.xkb.SetControls.affectIgnoreLockRealMods.5  5
        Boolean
    x11.xkb.SetControls.affectIgnoreLockRealMods.Any  Any
        Boolean
    x11.xkb.SetControls.affectIgnoreLockRealMods.Control  Control
        Boolean
    x11.xkb.SetControls.affectIgnoreLockRealMods.Lock  Lock
        Boolean
    x11.xkb.SetControls.affectIgnoreLockRealMods.Shift  Shift
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods  affectInternalLockVirtualMods
        Unsigned 16-bit integer
    x11.xkb.SetControls.affectInternalLockVirtualMods.0  0
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.1  1
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.10  10
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.11  11
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.12  12
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.13  13
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.14  14
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.15  15
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.2  2
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.3  3
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.4  4
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.5  5
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.6  6
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.7  7
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.8  8
        Boolean
    x11.xkb.SetControls.affectInternalLockVirtualMods.9  9
        Boolean
    x11.xkb.SetControls.affectInternalRealMods  affectInternalRealMods
        Unsigned 8-bit integer
    x11.xkb.SetControls.affectInternalRealMods.1  1
        Boolean
    x11.xkb.SetControls.affectInternalRealMods.2  2
        Boolean
    x11.xkb.SetControls.affectInternalRealMods.3  3
        Boolean
    x11.xkb.SetControls.affectInternalRealMods.4  4
        Boolean
    x11.xkb.SetControls.affectInternalRealMods.5  5
        Boolean
    x11.xkb.SetControls.affectInternalRealMods.Any  Any
        Boolean
    x11.xkb.SetControls.affectInternalRealMods.Control  Control
        Boolean
    x11.xkb.SetControls.affectInternalRealMods.Lock  Lock
        Boolean
    x11.xkb.SetControls.affectInternalRealMods.Shift  Shift
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods  affectInternalVirtualMods
        Unsigned 16-bit integer
    x11.xkb.SetControls.affectInternalVirtualMods.0  0
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.1  1
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.10  10
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.11  11
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.12  12
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.13  13
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.14  14
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.15  15
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.2  2
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.3  3
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.4  4
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.5  5
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.6  6
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.7  7
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.8  8
        Boolean
    x11.xkb.SetControls.affectInternalVirtualMods.9  9
        Boolean
    x11.xkb.SetControls.changeControls  changeControls
        Unsigned 32-bit integer
    x11.xkb.SetControls.changeControls.ControlsEnabled  ControlsEnabled
        Boolean
    x11.xkb.SetControls.changeControls.GroupsWrap  GroupsWrap
        Boolean
    x11.xkb.SetControls.changeControls.IgnoreLockMods  IgnoreLockMods
        Boolean
    x11.xkb.SetControls.changeControls.InternalMods  InternalMods
        Boolean
    x11.xkb.SetControls.changeControls.PerKeyRepeat  PerKeyRepeat
        Boolean
    x11.xkb.SetControls.debounceDelay  debounceDelay
        Unsigned 16-bit integer
    x11.xkb.SetControls.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.SetControls.enabledControls  enabledControls
        Unsigned 32-bit integer
    x11.xkb.SetControls.groupsWrap  groupsWrap
        Unsigned 8-bit integer
    x11.xkb.SetControls.ignoreLockRealMods  ignoreLockRealMods
        Unsigned 8-bit integer
    x11.xkb.SetControls.ignoreLockRealMods.1  1
        Boolean
    x11.xkb.SetControls.ignoreLockRealMods.2  2
        Boolean
    x11.xkb.SetControls.ignoreLockRealMods.3  3
        Boolean
    x11.xkb.SetControls.ignoreLockRealMods.4  4
        Boolean
    x11.xkb.SetControls.ignoreLockRealMods.5  5
        Boolean
    x11.xkb.SetControls.ignoreLockRealMods.Any  Any
        Boolean
    x11.xkb.SetControls.ignoreLockRealMods.Control  Control
        Boolean
    x11.xkb.SetControls.ignoreLockRealMods.Lock  Lock
        Boolean
    x11.xkb.SetControls.ignoreLockRealMods.Shift  Shift
        Boolean
    x11.xkb.SetControls.interanlRealMods  interanlRealMods
        Unsigned 8-bit integer
    x11.xkb.SetControls.interanlRealMods.1  1
        Boolean
    x11.xkb.SetControls.interanlRealMods.2  2
        Boolean
    x11.xkb.SetControls.interanlRealMods.3  3
        Boolean
    x11.xkb.SetControls.interanlRealMods.4  4
        Boolean
    x11.xkb.SetControls.interanlRealMods.5  5
        Boolean
    x11.xkb.SetControls.interanlRealMods.Any  Any
        Boolean
    x11.xkb.SetControls.interanlRealMods.Control  Control
        Boolean
    x11.xkb.SetControls.interanlRealMods.Lock  Lock
        Boolean
    x11.xkb.SetControls.interanlRealMods.Shift  Shift
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods  internalLockVirtualMods
        Unsigned 16-bit integer
    x11.xkb.SetControls.internalLockVirtualMods.0  0
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.1  1
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.10  10
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.11  11
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.12  12
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.13  13
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.14  14
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.15  15
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.2  2
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.3  3
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.4  4
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.5  5
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.6  6
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.7  7
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.8  8
        Boolean
    x11.xkb.SetControls.internalLockVirtualMods.9  9
        Boolean
    x11.xkb.SetControls.internalVirtualMods  internalVirtualMods
        Unsigned 16-bit integer
    x11.xkb.SetControls.internalVirtualMods.0  0
        Boolean
    x11.xkb.SetControls.internalVirtualMods.1  1
        Boolean
    x11.xkb.SetControls.internalVirtualMods.10  10
        Boolean
    x11.xkb.SetControls.internalVirtualMods.11  11
        Boolean
    x11.xkb.SetControls.internalVirtualMods.12  12
        Boolean
    x11.xkb.SetControls.internalVirtualMods.13  13
        Boolean
    x11.xkb.SetControls.internalVirtualMods.14  14
        Boolean
    x11.xkb.SetControls.internalVirtualMods.15  15
        Boolean
    x11.xkb.SetControls.internalVirtualMods.2  2
        Boolean
    x11.xkb.SetControls.internalVirtualMods.3  3
        Boolean
    x11.xkb.SetControls.internalVirtualMods.4  4
        Boolean
    x11.xkb.SetControls.internalVirtualMods.5  5
        Boolean
    x11.xkb.SetControls.internalVirtualMods.6  6
        Boolean
    x11.xkb.SetControls.internalVirtualMods.7  7
        Boolean
    x11.xkb.SetControls.internalVirtualMods.8  8
        Boolean
    x11.xkb.SetControls.internalVirtualMods.9  9
        Boolean
    x11.xkb.SetControls.mouseKeysCurve  mouseKeysCurve
        Signed 16-bit integer
    x11.xkb.SetControls.mouseKeysDelay  mouseKeysDelay
        Unsigned 16-bit integer
    x11.xkb.SetControls.mouseKeysDfltBtn  mouseKeysDfltBtn
        Unsigned 8-bit integer
    x11.xkb.SetControls.mouseKeysInterval  mouseKeysInterval
        Unsigned 16-bit integer
    x11.xkb.SetControls.mouseKeysMaxSpeed  mouseKeysMaxSpeed
        Unsigned 16-bit integer
    x11.xkb.SetControls.mouseKeysTimeToMax  mouseKeysTimeToMax
        Unsigned 16-bit integer
    x11.xkb.SetControls.perKeyRepeat  perKeyRepeat
        Unsigned 8-bit integer
    x11.xkb.SetControls.repeatDelay  repeatDelay
        Unsigned 16-bit integer
    x11.xkb.SetControls.repeatInterval  repeatInterval
        Unsigned 16-bit integer
    x11.xkb.SetControls.slowKeysDelay  slowKeysDelay
        Unsigned 16-bit integer
    x11.xkb.SetDebuggingFlags.affectCtrls  affectCtrls
        Unsigned 32-bit integer
    x11.xkb.SetDebuggingFlags.affectFlags  affectFlags
        Unsigned 32-bit integer
    x11.xkb.SetDebuggingFlags.ctrls  ctrls
        Unsigned 32-bit integer
    x11.xkb.SetDebuggingFlags.flags  flags
        Unsigned 32-bit integer
    x11.xkb.SetDebuggingFlags.message  message
        String
    x11.xkb.SetDebuggingFlags.msgLength  msgLength
        Unsigned 16-bit integer
    x11.xkb.SetDebuggingFlags.reply.currentCtrls  currentCtrls
        Unsigned 32-bit integer
    x11.xkb.SetDebuggingFlags.reply.currentFlags  currentFlags
        Unsigned 32-bit integer
    x11.xkb.SetDebuggingFlags.reply.supportedCtrls  supportedCtrls
        Unsigned 32-bit integer
    x11.xkb.SetDebuggingFlags.reply.supportedFlags  supportedFlags
        Unsigned 32-bit integer
    x11.xkb.SetDeviceInfo.btnActions  btnActions
        No value
    x11.xkb.SetDeviceInfo.change  change
        Unsigned 16-bit integer
    x11.xkb.SetDeviceInfo.change.ButtonActions  ButtonActions
        Boolean
    x11.xkb.SetDeviceInfo.change.IndicatorMaps  IndicatorMaps
        Boolean
    x11.xkb.SetDeviceInfo.change.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.SetDeviceInfo.change.IndicatorState  IndicatorState
        Boolean
    x11.xkb.SetDeviceInfo.change.Keyboards  Keyboards
        Boolean
    x11.xkb.SetDeviceInfo.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.SetDeviceInfo.firstBtn  firstBtn
        Unsigned 8-bit integer
    x11.xkb.SetDeviceInfo.leds  leds
        No value
    x11.xkb.SetDeviceInfo.nBtns  nBtns
        Unsigned 8-bit integer
    x11.xkb.SetDeviceInfo.nDeviceLedFBs  nDeviceLedFBs
        Unsigned 16-bit integer
    x11.xkb.SetGeometry.baseColorNdx  baseColorNdx
        Unsigned 8-bit integer
    x11.xkb.SetGeometry.colors  colors
        No value
    x11.xkb.SetGeometry.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.SetGeometry.doodads  doodads
        No value
    x11.xkb.SetGeometry.heightMM  heightMM
        Unsigned 16-bit integer
    x11.xkb.SetGeometry.keyAliases  keyAliases
        No value
    x11.xkb.SetGeometry.labelColorNdx  labelColorNdx
        Unsigned 8-bit integer
    x11.xkb.SetGeometry.labelFont  labelFont
        No value
    x11.xkb.SetGeometry.nColors  nColors
        Unsigned 16-bit integer
    x11.xkb.SetGeometry.nDoodads  nDoodads
        Unsigned 16-bit integer
    x11.xkb.SetGeometry.nKeyAliases  nKeyAliases
        Unsigned 16-bit integer
    x11.xkb.SetGeometry.nProperties  nProperties
        Unsigned 16-bit integer
    x11.xkb.SetGeometry.nSections  nSections
        Unsigned 8-bit integer
    x11.xkb.SetGeometry.nShapes  nShapes
        Unsigned 8-bit integer
    x11.xkb.SetGeometry.name  name
        Unsigned 32-bit integer
    x11.xkb.SetGeometry.properties  properties
        No value
    x11.xkb.SetGeometry.sections  sections
        No value
    x11.xkb.SetGeometry.shapes  shapes
        No value
    x11.xkb.SetGeometry.widthMM  widthMM
        Unsigned 16-bit integer
    x11.xkb.SetIndicatorMap.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.SetIndicatorMap.maps  maps
        No value
    x11.xkb.SetIndicatorMap.which  which
        Unsigned 32-bit integer
    x11.xkb.SetMap.ExplicitComponents.explicit  explicit
        No value
    x11.xkb.SetMap.KeyActions.actions  actions
        No value
    x11.xkb.SetMap.KeyActions.actionsCount  actionsCount
        Unsigned 8-bit integer
    x11.xkb.SetMap.KeyBehaviors.behaviors  behaviors
        No value
    x11.xkb.SetMap.KeySyms.syms  syms
        No value
    x11.xkb.SetMap.KeyTypes.types  types
        No value
    x11.xkb.SetMap.ModifierMap.modmap  modmap
        No value
    x11.xkb.SetMap.VirtualModMap.vmodmap  vmodmap
        No value
    x11.xkb.SetMap.VirtualMods.vmods  vmods
        Unsigned 8-bit integer
    x11.xkb.SetMap.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.SetMap.firstKeyAction  firstKeyAction
        Unsigned 8-bit integer
    x11.xkb.SetMap.firstKeyBehavior  firstKeyBehavior
        Unsigned 8-bit integer
    x11.xkb.SetMap.firstKeyExplicit  firstKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.SetMap.firstKeySym  firstKeySym
        Unsigned 8-bit integer
    x11.xkb.SetMap.firstModMapKey  firstModMapKey
        Unsigned 8-bit integer
    x11.xkb.SetMap.firstType  firstType
        Unsigned 8-bit integer
    x11.xkb.SetMap.firstVModMapKey  firstVModMapKey
        Unsigned 8-bit integer
    x11.xkb.SetMap.flags  flags
        Unsigned 16-bit integer
    x11.xkb.SetMap.flags.RecomputeActions  RecomputeActions
        Boolean
    x11.xkb.SetMap.flags.ResizeTypes  ResizeTypes
        Boolean
    x11.xkb.SetMap.maxKeyCode  maxKeyCode
        Unsigned 8-bit integer
    x11.xkb.SetMap.minKeyCode  minKeyCode
        Unsigned 8-bit integer
    x11.xkb.SetMap.nKeyActions  nKeyActions
        Unsigned 8-bit integer
    x11.xkb.SetMap.nKeyBehaviors  nKeyBehaviors
        Unsigned 8-bit integer
    x11.xkb.SetMap.nKeyExplicit  nKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.SetMap.nKeySyms  nKeySyms
        Unsigned 8-bit integer
    x11.xkb.SetMap.nModMapKeys  nModMapKeys
        Unsigned 8-bit integer
    x11.xkb.SetMap.nTypes  nTypes
        Unsigned 8-bit integer
    x11.xkb.SetMap.nVModMapKeys  nVModMapKeys
        Unsigned 8-bit integer
    x11.xkb.SetMap.present  present
        Unsigned 16-bit integer
    x11.xkb.SetMap.totalActions  totalActions
        Unsigned 16-bit integer
    x11.xkb.SetMap.totalKeyBehaviors  totalKeyBehaviors
        Unsigned 8-bit integer
    x11.xkb.SetMap.totalKeyExplicit  totalKeyExplicit
        Unsigned 8-bit integer
    x11.xkb.SetMap.totalModMapKeys  totalModMapKeys
        Unsigned 8-bit integer
    x11.xkb.SetMap.totalSyms  totalSyms
        Unsigned 16-bit integer
    x11.xkb.SetMap.totalVModMapKeys  totalVModMapKeys
        Unsigned 8-bit integer
    x11.xkb.SetMap.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.xkb.SetMap.virtualMods.0  0
        Boolean
    x11.xkb.SetMap.virtualMods.1  1
        Boolean
    x11.xkb.SetMap.virtualMods.10  10
        Boolean
    x11.xkb.SetMap.virtualMods.11  11
        Boolean
    x11.xkb.SetMap.virtualMods.12  12
        Boolean
    x11.xkb.SetMap.virtualMods.13  13
        Boolean
    x11.xkb.SetMap.virtualMods.14  14
        Boolean
    x11.xkb.SetMap.virtualMods.15  15
        Boolean
    x11.xkb.SetMap.virtualMods.2  2
        Boolean
    x11.xkb.SetMap.virtualMods.3  3
        Boolean
    x11.xkb.SetMap.virtualMods.4  4
        Boolean
    x11.xkb.SetMap.virtualMods.5  5
        Boolean
    x11.xkb.SetMap.virtualMods.6  6
        Boolean
    x11.xkb.SetMap.virtualMods.7  7
        Boolean
    x11.xkb.SetMap.virtualMods.8  8
        Boolean
    x11.xkb.SetMap.virtualMods.9  9
        Boolean
    x11.xkb.SetNamedIndicator.createMap  createMap
        Boolean
    x11.xkb.SetNamedIndicator.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.SetNamedIndicator.indicator  indicator
        Unsigned 32-bit integer
    x11.xkb.SetNamedIndicator.ledClass  ledClass
        Unsigned 16-bit integer
    x11.xkb.SetNamedIndicator.ledID  ledID
        Unsigned 16-bit integer
    x11.xkb.SetNamedIndicator.map_ctrls  map_ctrls
        Unsigned 32-bit integer
    x11.xkb.SetNamedIndicator.map_ctrls.AccessXFeedbackMask  AccessXFeedbackMask
        Boolean
    x11.xkb.SetNamedIndicator.map_ctrls.AccessXKeys  AccessXKeys
        Boolean
    x11.xkb.SetNamedIndicator.map_ctrls.AccessXTimeoutMask  AccessXTimeoutMask
        Boolean
    x11.xkb.SetNamedIndicator.map_ctrls.AudibleBellMask  AudibleBellMask
        Boolean
    x11.xkb.SetNamedIndicator.map_ctrls.BounceKeys  BounceKeys
        Boolean
    x11.xkb.SetNamedIndicator.map_ctrls.IgnoreGroupLockMask  IgnoreGroupLockMask
        Boolean
    x11.xkb.SetNamedIndicator.map_ctrls.MouseKeys  MouseKeys
        Boolean
    x11.xkb.SetNamedIndicator.map_ctrls.MouseKeysAccel  MouseKeysAccel
        Boolean
    x11.xkb.SetNamedIndicator.map_ctrls.Overlay1Mask  Overlay1Mask
        Boolean
    x11.xkb.SetNamedIndicator.map_ctrls.Overlay2Mask  Overlay2Mask
        Boolean
    x11.xkb.SetNamedIndicator.map_ctrls.RepeatKeys  RepeatKeys
        Boolean
    x11.xkb.SetNamedIndicator.map_ctrls.SlowKeys  SlowKeys
        Boolean
    x11.xkb.SetNamedIndicator.map_ctrls.StickyKeys  StickyKeys
        Boolean
    x11.xkb.SetNamedIndicator.map_flags  map_flags
        Unsigned 8-bit integer
    x11.xkb.SetNamedIndicator.map_flags.LEDDrivesKB  LEDDrivesKB
        Boolean
    x11.xkb.SetNamedIndicator.map_flags.NoAutomatic  NoAutomatic
        Boolean
    x11.xkb.SetNamedIndicator.map_flags.NoExplicit  NoExplicit
        Boolean
    x11.xkb.SetNamedIndicator.map_groups  map_groups
        Unsigned 8-bit integer
    x11.xkb.SetNamedIndicator.map_groups.Any  Any
        Boolean
    x11.xkb.SetNamedIndicator.map_realMods  map_realMods
        Unsigned 8-bit integer
    x11.xkb.SetNamedIndicator.map_realMods.1  1
        Boolean
    x11.xkb.SetNamedIndicator.map_realMods.2  2
        Boolean
    x11.xkb.SetNamedIndicator.map_realMods.3  3
        Boolean
    x11.xkb.SetNamedIndicator.map_realMods.4  4
        Boolean
    x11.xkb.SetNamedIndicator.map_realMods.5  5
        Boolean
    x11.xkb.SetNamedIndicator.map_realMods.Any  Any
        Boolean
    x11.xkb.SetNamedIndicator.map_realMods.Control  Control
        Boolean
    x11.xkb.SetNamedIndicator.map_realMods.Lock  Lock
        Boolean
    x11.xkb.SetNamedIndicator.map_realMods.Shift  Shift
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods  map_vmods
        Unsigned 16-bit integer
    x11.xkb.SetNamedIndicator.map_vmods.0  0
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.1  1
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.10  10
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.11  11
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.12  12
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.13  13
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.14  14
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.15  15
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.2  2
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.3  3
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.4  4
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.5  5
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.6  6
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.7  7
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.8  8
        Boolean
    x11.xkb.SetNamedIndicator.map_vmods.9  9
        Boolean
    x11.xkb.SetNamedIndicator.map_whichGroups  map_whichGroups
        Unsigned 8-bit integer
    x11.xkb.SetNamedIndicator.map_whichGroups.UseBase  UseBase
        Boolean
    x11.xkb.SetNamedIndicator.map_whichGroups.UseCompat  UseCompat
        Boolean
    x11.xkb.SetNamedIndicator.map_whichGroups.UseEffective  UseEffective
        Boolean
    x11.xkb.SetNamedIndicator.map_whichGroups.UseLatched  UseLatched
        Boolean
    x11.xkb.SetNamedIndicator.map_whichGroups.UseLocked  UseLocked
        Boolean
    x11.xkb.SetNamedIndicator.map_whichMods  map_whichMods
        Unsigned 8-bit integer
    x11.xkb.SetNamedIndicator.map_whichMods.UseBase  UseBase
        Boolean
    x11.xkb.SetNamedIndicator.map_whichMods.UseCompat  UseCompat
        Boolean
    x11.xkb.SetNamedIndicator.map_whichMods.UseEffective  UseEffective
        Boolean
    x11.xkb.SetNamedIndicator.map_whichMods.UseLatched  UseLatched
        Boolean
    x11.xkb.SetNamedIndicator.map_whichMods.UseLocked  UseLocked
        Boolean
    x11.xkb.SetNamedIndicator.on  on
        Boolean
    x11.xkb.SetNamedIndicator.setMap  setMap
        Boolean
    x11.xkb.SetNamedIndicator.setState  setState
        Boolean
    x11.xkb.SetNames.Compat.compatName  compatName
        Unsigned 32-bit integer
    x11.xkb.SetNames.Geometry.geometryName  geometryName
        Unsigned 32-bit integer
    x11.xkb.SetNames.GroupNames.groups  groups
        No value
    x11.xkb.SetNames.IndicatorNames.indicatorNames  indicatorNames
        No value
    x11.xkb.SetNames.KTLevelNames.ktLevelNames  ktLevelNames
        No value
    x11.xkb.SetNames.KTLevelNames.nLevelsPerType  nLevelsPerType
        Unsigned 8-bit integer
    x11.xkb.SetNames.KeyAliases.keyAliases  keyAliases
        No value
    x11.xkb.SetNames.KeyNames.keyNames  keyNames
        No value
    x11.xkb.SetNames.KeyTypeNames.typeNames  typeNames
        No value
    x11.xkb.SetNames.Keycodes.keycodesName  keycodesName
        Unsigned 32-bit integer
    x11.xkb.SetNames.PhysSymbols.physSymbolsName  physSymbolsName
        Unsigned 32-bit integer
    x11.xkb.SetNames.RGNames.radioGroupNames  radioGroupNames
        No value
    x11.xkb.SetNames.Symbols.symbolsName  symbolsName
        Unsigned 32-bit integer
    x11.xkb.SetNames.Types.typesName  typesName
        Unsigned 32-bit integer
    x11.xkb.SetNames.VirtualModNames.virtualModNames  virtualModNames
        No value
    x11.xkb.SetNames.deviceSpec  deviceSpec
        Unsigned 16-bit integer
    x11.xkb.SetNames.firstKTLevelt  firstKTLevelt
        Unsigned 8-bit integer
    x11.xkb.SetNames.firstKey  firstKey
        Unsigned 8-bit integer
    x11.xkb.SetNames.firstType  firstType
        Unsigned 8-bit integer
    x11.xkb.SetNames.groupNames  groupNames
        Unsigned 8-bit integer
    x11.xkb.SetNames.groupNames.Group1  Group1
        Boolean
    x11.xkb.SetNames.groupNames.Group2  Group2
        Boolean
    x11.xkb.SetNames.groupNames.Group3  Group3
        Boolean
    x11.xkb.SetNames.groupNames.Group4  Group4
        Boolean
    x11.xkb.SetNames.indicators  indicators
        Unsigned 32-bit integer
    x11.xkb.SetNames.nKTLevels  nKTLevels
        Unsigned 8-bit integer
    x11.xkb.SetNames.nKeyAliases  nKeyAliases
        Unsigned 8-bit integer
    x11.xkb.SetNames.nKeys  nKeys
        Unsigned 8-bit integer
    x11.xkb.SetNames.nRadioGroups  nRadioGroups
        Unsigned 8-bit integer
    x11.xkb.SetNames.nTypes  nTypes
        Unsigned 8-bit integer
    x11.xkb.SetNames.totalKTLevelNames  totalKTLevelNames
        Unsigned 16-bit integer
    x11.xkb.SetNames.virtualMods  virtualMods
        Unsigned 16-bit integer
    x11.xkb.SetNames.virtualMods.0  0
        Boolean
    x11.xkb.SetNames.virtualMods.1  1
        Boolean
    x11.xkb.SetNames.virtualMods.10  10
        Boolean
    x11.xkb.SetNames.virtualMods.11  11
        Boolean
    x11.xkb.SetNames.virtualMods.12  12
        Boolean
    x11.xkb.SetNames.virtualMods.13  13
        Boolean
    x11.xkb.SetNames.virtualMods.14  14
        Boolean
    x11.xkb.SetNames.virtualMods.15  15
        Boolean
    x11.xkb.SetNames.virtualMods.2  2
        Boolean
    x11.xkb.SetNames.virtualMods.3  3
        Boolean
    x11.xkb.SetNames.virtualMods.4  4
        Boolean
    x11.xkb.SetNames.virtualMods.5  5
        Boolean
    x11.xkb.SetNames.virtualMods.6  6
        Boolean
    x11.xkb.SetNames.virtualMods.7  7
        Boolean
    x11.xkb.SetNames.virtualMods.8  8
        Boolean
    x11.xkb.SetNames.virtualMods.9  9
        Boolean
    x11.xkb.SetNames.which  which
        Unsigned 32-bit integer
    x11.xkb.SetNames.which.Compat  Compat
        Boolean
    x11.xkb.SetNames.which.Geometry  Geometry
        Boolean
    x11.xkb.SetNames.which.GroupNames  GroupNames
        Boolean
    x11.xkb.SetNames.which.IndicatorNames  IndicatorNames
        Boolean
    x11.xkb.SetNames.which.KTLevelNames  KTLevelNames
        Boolean
    x11.xkb.SetNames.which.KeyAliases  KeyAliases
        Boolean
    x11.xkb.SetNames.which.KeyNames  KeyNames
        Boolean
    x11.xkb.SetNames.which.KeyTypeNames  KeyTypeNames
        Boolean
    x11.xkb.SetNames.which.Keycodes  Keycodes
        Boolean
    x11.xkb.SetNames.which.PhysSymbols  PhysSymbols
        Boolean
    x11.xkb.SetNames.which.RGNames  RGNames
        Boolean
    x11.xkb.SetNames.which.Symbols  Symbols
        Boolean
    x11.xkb.SetNames.which.Types  Types
        Boolean
    x11.xkb.SetNames.which.VirtualModNames  VirtualModNames
        Boolean
    x11.xkb.StateNotify.baseGroup  baseGroup
        Signed 16-bit integer
    x11.xkb.StateNotify.baseMods  baseMods
        Unsigned 8-bit integer
    x11.xkb.StateNotify.baseMods.1  1
        Boolean
    x11.xkb.StateNotify.baseMods.2  2
        Boolean
    x11.xkb.StateNotify.baseMods.3  3
        Boolean
    x11.xkb.StateNotify.baseMods.4  4
        Boolean
    x11.xkb.StateNotify.baseMods.5  5
        Boolean
    x11.xkb.StateNotify.baseMods.Any  Any
        Boolean
    x11.xkb.StateNotify.baseMods.Control  Control
        Boolean
    x11.xkb.StateNotify.baseMods.Lock  Lock
        Boolean
    x11.xkb.StateNotify.baseMods.Shift  Shift
        Boolean
    x11.xkb.StateNotify.changed  changed
        Unsigned 16-bit integer
    x11.xkb.StateNotify.changed.CompatGrabMods  CompatGrabMods
        Boolean
    x11.xkb.StateNotify.changed.CompatLookupMods  CompatLookupMods
        Boolean
    x11.xkb.StateNotify.changed.CompatState  CompatState
        Boolean
    x11.xkb.StateNotify.changed.GrabMods  GrabMods
        Boolean
    x11.xkb.StateNotify.changed.GroupBase  GroupBase
        Boolean
    x11.xkb.StateNotify.changed.GroupLatch  GroupLatch
        Boolean
    x11.xkb.StateNotify.changed.GroupLock  GroupLock
        Boolean
    x11.xkb.StateNotify.changed.GroupState  GroupState
        Boolean
    x11.xkb.StateNotify.changed.LookupMods  LookupMods
        Boolean
    x11.xkb.StateNotify.changed.ModifierBase  ModifierBase
        Boolean
    x11.xkb.StateNotify.changed.ModifierLatch  ModifierLatch
        Boolean
    x11.xkb.StateNotify.changed.ModifierLock  ModifierLock
        Boolean
    x11.xkb.StateNotify.changed.ModifierState  ModifierState
        Boolean
    x11.xkb.StateNotify.changed.PointerButtons  PointerButtons
        Boolean
    x11.xkb.StateNotify.compatGrabMods  compatGrabMods
        Unsigned 8-bit integer
    x11.xkb.StateNotify.compatGrabMods.1  1
        Boolean
    x11.xkb.StateNotify.compatGrabMods.2  2
        Boolean
    x11.xkb.StateNotify.compatGrabMods.3  3
        Boolean
    x11.xkb.StateNotify.compatGrabMods.4  4
        Boolean
    x11.xkb.StateNotify.compatGrabMods.5  5
        Boolean
    x11.xkb.StateNotify.compatGrabMods.Any  Any
        Boolean
    x11.xkb.StateNotify.compatGrabMods.Control  Control
        Boolean
    x11.xkb.StateNotify.compatGrabMods.Lock  Lock
        Boolean
    x11.xkb.StateNotify.compatGrabMods.Shift  Shift
        Boolean
    x11.xkb.StateNotify.compatLoockupMods  compatLoockupMods
        Unsigned 8-bit integer
    x11.xkb.StateNotify.compatLoockupMods.1  1
        Boolean
    x11.xkb.StateNotify.compatLoockupMods.2  2
        Boolean
    x11.xkb.StateNotify.compatLoockupMods.3  3
        Boolean
    x11.xkb.StateNotify.compatLoockupMods.4  4
        Boolean
    x11.xkb.StateNotify.compatLoockupMods.5  5
        Boolean
    x11.xkb.StateNotify.compatLoockupMods.Any  Any
        Boolean
    x11.xkb.StateNotify.compatLoockupMods.Control  Control
        Boolean
    x11.xkb.StateNotify.compatLoockupMods.Lock  Lock
        Boolean
    x11.xkb.StateNotify.compatLoockupMods.Shift  Shift
        Boolean
    x11.xkb.StateNotify.compatState  compatState
        Unsigned 8-bit integer
    x11.xkb.StateNotify.compatState.1  1
        Boolean
    x11.xkb.StateNotify.compatState.2  2
        Boolean
    x11.xkb.StateNotify.compatState.3  3
        Boolean
    x11.xkb.StateNotify.compatState.4  4
        Boolean
    x11.xkb.StateNotify.compatState.5  5
        Boolean
    x11.xkb.StateNotify.compatState.Any  Any
        Boolean
    x11.xkb.StateNotify.compatState.Control  Control
        Boolean
    x11.xkb.StateNotify.compatState.Lock  Lock
        Boolean
    x11.xkb.StateNotify.compatState.Shift  Shift
        Boolean
    x11.xkb.StateNotify.deviceID  deviceID
        Unsigned 8-bit integer
    x11.xkb.StateNotify.eventType  eventType
        Unsigned 8-bit integer
    x11.xkb.StateNotify.grabMods  grabMods
        Unsigned 8-bit integer
    x11.xkb.StateNotify.grabMods.1  1
        Boolean
    x11.xkb.StateNotify.grabMods.2  2
        Boolean
    x11.xkb.StateNotify.grabMods.3  3
        Boolean
    x11.xkb.StateNotify.grabMods.4  4
        Boolean
    x11.xkb.StateNotify.grabMods.5  5
        Boolean
    x11.xkb.StateNotify.grabMods.Any  Any
        Boolean
    x11.xkb.StateNotify.grabMods.Control  Control
        Boolean
    x11.xkb.StateNotify.grabMods.Lock  Lock
        Boolean
    x11.xkb.StateNotify.grabMods.Shift  Shift
        Boolean
    x11.xkb.StateNotify.group  group
        Unsigned 8-bit integer
    x11.xkb.StateNotify.keycode  keycode
        Unsigned 8-bit integer
    x11.xkb.StateNotify.latchedGroup  latchedGroup
        Signed 16-bit integer
    x11.xkb.StateNotify.latchedMods  latchedMods
        Unsigned 8-bit integer
    x11.xkb.StateNotify.latchedMods.1  1
        Boolean
    x11.xkb.StateNotify.latchedMods.2  2
        Boolean
    x11.xkb.StateNotify.latchedMods.3  3
        Boolean
    x11.xkb.StateNotify.latchedMods.4  4
        Boolean
    x11.xkb.StateNotify.latchedMods.5  5
        Boolean
    x11.xkb.StateNotify.latchedMods.Any  Any
        Boolean
    x11.xkb.StateNotify.latchedMods.Control  Control
        Boolean
    x11.xkb.StateNotify.latchedMods.Lock  Lock
        Boolean
    x11.xkb.StateNotify.latchedMods.Shift  Shift
        Boolean
    x11.xkb.StateNotify.lockedGroup  lockedGroup
        Unsigned 8-bit integer
    x11.xkb.StateNotify.lockedMods  lockedMods
        Unsigned 8-bit integer
    x11.xkb.StateNotify.lockedMods.1  1
        Boolean
    x11.xkb.StateNotify.lockedMods.2  2
        Boolean
    x11.xkb.StateNotify.lockedMods.3  3
        Boolean
    x11.xkb.StateNotify.lockedMods.4  4
        Boolean
    x11.xkb.StateNotify.lockedMods.5  5
        Boolean
    x11.xkb.StateNotify.lockedMods.Any  Any
        Boolean
    x11.xkb.StateNotify.lockedMods.Control  Control
        Boolean
    x11.xkb.StateNotify.lockedMods.Lock  Lock
        Boolean
    x11.xkb.StateNotify.lockedMods.Shift  Shift
        Boolean
    x11.xkb.StateNotify.lookupMods  lookupMods
        Unsigned 8-bit integer
    x11.xkb.StateNotify.lookupMods.1  1
        Boolean
    x11.xkb.StateNotify.lookupMods.2  2
        Boolean
    x11.xkb.StateNotify.lookupMods.3  3
        Boolean
    x11.xkb.StateNotify.lookupMods.4  4
        Boolean
    x11.xkb.StateNotify.lookupMods.5  5
        Boolean
    x11.xkb.StateNotify.lookupMods.Any  Any
        Boolean
    x11.xkb.StateNotify.lookupMods.Control  Control
        Boolean
    x11.xkb.StateNotify.lookupMods.Lock  Lock
        Boolean
    x11.xkb.StateNotify.lookupMods.Shift  Shift
        Boolean
    x11.xkb.StateNotify.mods  mods
        Unsigned 8-bit integer
    x11.xkb.StateNotify.mods.1  1
        Boolean
    x11.xkb.StateNotify.mods.2  2
        Boolean
    x11.xkb.StateNotify.mods.3  3
        Boolean
    x11.xkb.StateNotify.mods.4  4
        Boolean
    x11.xkb.StateNotify.mods.5  5
        Boolean
    x11.xkb.StateNotify.mods.Any  Any
        Boolean
    x11.xkb.StateNotify.mods.Control  Control
        Boolean
    x11.xkb.StateNotify.mods.Lock  Lock
        Boolean
    x11.xkb.StateNotify.mods.Shift  Shift
        Boolean
    x11.xkb.StateNotify.ptrBtnState  ptrBtnState
        Unsigned 16-bit integer
    x11.xkb.StateNotify.ptrBtnState.Button1  Button1
        Boolean
    x11.xkb.StateNotify.ptrBtnState.Button2  Button2
        Boolean
    x11.xkb.StateNotify.ptrBtnState.Button3  Button3
        Boolean
    x11.xkb.StateNotify.ptrBtnState.Button4  Button4
        Boolean
    x11.xkb.StateNotify.ptrBtnState.Button5  Button5
        Boolean
    x11.xkb.StateNotify.ptrBtnState.Control  Control
        Boolean
    x11.xkb.StateNotify.ptrBtnState.Lock  Lock
        Boolean
    x11.xkb.StateNotify.ptrBtnState.Mod1  Mod1
        Boolean
    x11.xkb.StateNotify.ptrBtnState.Mod2  Mod2
        Boolean
    x11.xkb.StateNotify.ptrBtnState.Mod3  Mod3
        Boolean
    x11.xkb.StateNotify.ptrBtnState.Mod4  Mod4
        Boolean
    x11.xkb.StateNotify.ptrBtnState.Mod5  Mod5
        Boolean
    x11.xkb.StateNotify.ptrBtnState.Shift  Shift
        Boolean
    x11.xkb.StateNotify.requestMajor  requestMajor
        Unsigned 8-bit integer
    x11.xkb.StateNotify.requestMinor  requestMinor
        Unsigned 8-bit integer
    x11.xkb.StateNotify.time  time
        Unsigned 32-bit integer
    x11.xkb.UseExtension.reply.serverMajor  serverMajor
        Unsigned 16-bit integer
    x11.xkb.UseExtension.reply.serverMinor  serverMinor
        Unsigned 16-bit integer
    x11.xkb.UseExtension.reply.supported  supported
        Boolean
    x11.xkb.UseExtension.wantedMajor  wantedMajor
        Unsigned 16-bit integer
    x11.xkb.UseExtension.wantedMinor  wantedMinor
        Unsigned 16-bit integer
    x11.xprint.AttributNotify.context  context
        Unsigned 32-bit integer
    x11.xprint.AttributNotify.detail  detail
        Unsigned 8-bit integer
    x11.xprint.CreateContext.context_id  context_id
        Unsigned 32-bit integer
    x11.xprint.CreateContext.locale  locale
        String
    x11.xprint.CreateContext.localeLen  localeLen
        Unsigned 32-bit integer
    x11.xprint.CreateContext.printerName  printerName
        String
    x11.xprint.CreateContext.printerNameLen  printerNameLen
        Unsigned 32-bit integer
    x11.xprint.Notify.cancel  cancel
        Boolean
    x11.xprint.Notify.context  context
        Unsigned 32-bit integer
    x11.xprint.Notify.detail  detail
        Unsigned 8-bit integer
    x11.xprint.PrintDestroyContext.context  context
        Unsigned 32-bit integer
    x11.xprint.PrintEndDoc.cancel  cancel
        Boolean
    x11.xprint.PrintEndJob.cancel  cancel
        Boolean
    x11.xprint.PrintEndPage.cancel  cancel
        Boolean
    x11.xprint.PrintGetAttributes.context  context
        Unsigned 32-bit integer
    x11.xprint.PrintGetAttributes.pool  pool
        Unsigned 8-bit integer
    x11.xprint.PrintGetAttributes.reply.attributes  attributes
        String
    x11.xprint.PrintGetAttributes.reply.stringLen  stringLen
        Unsigned 32-bit integer
    x11.xprint.PrintGetContext.reply.context  context
        Unsigned 32-bit integer
    x11.xprint.PrintGetDocumentData.context  context
        Unsigned 32-bit integer
    x11.xprint.PrintGetDocumentData.max_bytes  max_bytes
        Unsigned 32-bit integer
    x11.xprint.PrintGetDocumentData.reply.data  data
        Byte array
    x11.xprint.PrintGetDocumentData.reply.dataLen  dataLen
        Unsigned 32-bit integer
    x11.xprint.PrintGetDocumentData.reply.finished_flag  finished_flag
        Unsigned 32-bit integer
    x11.xprint.PrintGetDocumentData.reply.status_code  status_code
        Unsigned 32-bit integer
    x11.xprint.PrintGetImageResolution.context  context
        Unsigned 32-bit integer
    x11.xprint.PrintGetImageResolution.reply.image_resolution  image_resolution
        Unsigned 16-bit integer
    x11.xprint.PrintGetOneAttributes.context  context
        Unsigned 32-bit integer
    x11.xprint.PrintGetOneAttributes.name  name
        String
    x11.xprint.PrintGetOneAttributes.nameLen  nameLen
        Unsigned 32-bit integer
    x11.xprint.PrintGetOneAttributes.pool  pool
        Unsigned 8-bit integer
    x11.xprint.PrintGetOneAttributes.reply.value  value
        String
    x11.xprint.PrintGetOneAttributes.reply.valueLen  valueLen
        Unsigned 32-bit integer
    x11.xprint.PrintGetPageDimensions.context  context
        Unsigned 32-bit integer
    x11.xprint.PrintGetPageDimensions.reply.height  height
        Unsigned 16-bit integer
    x11.xprint.PrintGetPageDimensions.reply.offset_x  offset_x
        Unsigned 16-bit integer
    x11.xprint.PrintGetPageDimensions.reply.offset_y  offset_y
        Unsigned 16-bit integer
    x11.xprint.PrintGetPageDimensions.reply.reproducible_height  reproducible_height
        Unsigned 16-bit integer
    x11.xprint.PrintGetPageDimensions.reply.reproducible_width  reproducible_width
        Unsigned 16-bit integer
    x11.xprint.PrintGetPageDimensions.reply.width  width
        Unsigned 16-bit integer
    x11.xprint.PrintGetPrinterList.locale  locale
        String
    x11.xprint.PrintGetPrinterList.localeLen  localeLen
        Unsigned 32-bit integer
    x11.xprint.PrintGetPrinterList.printerNameLen  printerNameLen
        Unsigned 32-bit integer
    x11.xprint.PrintGetPrinterList.printer_name  printer_name
        String
    x11.xprint.PrintGetPrinterList.reply.listCount  listCount
        Unsigned 32-bit integer
    x11.xprint.PrintGetPrinterList.reply.printers  printers
        No value
    x11.xprint.PrintGetScreenOfContext.reply.root  root
        Unsigned 32-bit integer
    x11.xprint.PrintInputSelected.context  context
        Unsigned 32-bit integer
    x11.xprint.PrintPutDocumentData.data  data
        Byte array
    x11.xprint.PrintPutDocumentData.doc_format  doc_format
        String
    x11.xprint.PrintPutDocumentData.drawable  drawable
        Unsigned 32-bit integer
    x11.xprint.PrintPutDocumentData.len_data  len_data
        Unsigned 32-bit integer
    x11.xprint.PrintPutDocumentData.len_fmt  len_fmt
        Unsigned 16-bit integer
    x11.xprint.PrintPutDocumentData.len_options  len_options
        Unsigned 16-bit integer
    x11.xprint.PrintPutDocumentData.options  options
        String
    x11.xprint.PrintQueryScreens.reply.listCount  listCount
        Unsigned 32-bit integer
    x11.xprint.PrintQueryScreens.reply.roots  roots
        No value
    x11.xprint.PrintQueryVersion.reply.major_version  major_version
        Unsigned 16-bit integer
    x11.xprint.PrintQueryVersion.reply.minor_version  minor_version
        Unsigned 16-bit integer
    x11.xprint.PrintSelectInput.context  context
        Unsigned 32-bit integer
    x11.xprint.PrintSetAttributes.attributes  attributes
        String
    x11.xprint.PrintSetAttributes.context  context
        Unsigned 32-bit integer
    x11.xprint.PrintSetAttributes.pool  pool
        Unsigned 8-bit integer
    x11.xprint.PrintSetAttributes.rule  rule
        Unsigned 8-bit integer
    x11.xprint.PrintSetAttributes.stringLen  stringLen
        Unsigned 32-bit integer
    x11.xprint.PrintSetContext.context  context
        Unsigned 32-bit integer
    x11.xprint.PrintSetImageResolution.context  context
        Unsigned 32-bit integer
    x11.xprint.PrintSetImageResolution.image_resolution  image_resolution
        Unsigned 16-bit integer
    x11.xprint.PrintSetImageResolution.reply.previous_resolutions  previous_resolutions
        Unsigned 16-bit integer
    x11.xprint.PrintSetImageResolution.reply.status  status
        Boolean
    x11.xprint.PrintStartDoc.driver_mode  driver_mode
        Unsigned 8-bit integer
    x11.xprint.PrintStartJob.output_mode  output_mode
        Unsigned 8-bit integer
    x11.xprint.PrintStartPage.window  window
        Unsigned 32-bit integer
    x11.xselinux.GetClientContext.reply.context  context
        String
    x11.xselinux.GetClientContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.GetClientContext.resource  resource
        Unsigned 32-bit integer
    x11.xselinux.GetDeviceContext.device  device
        Unsigned 32-bit integer
    x11.xselinux.GetDeviceContext.reply.context  context
        String
    x11.xselinux.GetDeviceContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.GetDeviceCreateContext.reply.context  context
        String
    x11.xselinux.GetDeviceCreateContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.GetPropertyContext.property  property
        Unsigned 32-bit integer
    x11.xselinux.GetPropertyContext.reply.context  context
        String
    x11.xselinux.GetPropertyContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.GetPropertyContext.window  window
        Unsigned 32-bit integer
    x11.xselinux.GetPropertyCreateContext.reply.context  context
        String
    x11.xselinux.GetPropertyCreateContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.GetPropertyDataContext.property  property
        Unsigned 32-bit integer
    x11.xselinux.GetPropertyDataContext.reply.context  context
        String
    x11.xselinux.GetPropertyDataContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.GetPropertyDataContext.window  window
        Unsigned 32-bit integer
    x11.xselinux.GetPropertyUseContext.reply.context  context
        String
    x11.xselinux.GetPropertyUseContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.GetSelectionContext.reply.context  context
        String
    x11.xselinux.GetSelectionContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.GetSelectionContext.selection  selection
        Unsigned 32-bit integer
    x11.xselinux.GetSelectionCreateContext.reply.context  context
        String
    x11.xselinux.GetSelectionCreateContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.GetSelectionDataContext.reply.context  context
        String
    x11.xselinux.GetSelectionDataContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.GetSelectionDataContext.selection  selection
        Unsigned 32-bit integer
    x11.xselinux.GetSelectionUseContext.reply.context  context
        String
    x11.xselinux.GetSelectionUseContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.GetWindowContext.reply.context  context
        String
    x11.xselinux.GetWindowContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.GetWindowContext.window  window
        Unsigned 32-bit integer
    x11.xselinux.GetWindowCreateContext.reply.context  context
        String
    x11.xselinux.GetWindowCreateContext.reply.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.ListProperties.reply.properties  properties
        No value
    x11.xselinux.ListProperties.reply.properties_len  properties_len
        Unsigned 32-bit integer
    x11.xselinux.ListProperties.window  window
        Unsigned 32-bit integer
    x11.xselinux.ListSelections.reply.selections  selections
        No value
    x11.xselinux.ListSelections.reply.selections_len  selections_len
        Unsigned 32-bit integer
    x11.xselinux.QueryVersion.client_major  client_major
        Unsigned 8-bit integer
    x11.xselinux.QueryVersion.client_minor  client_minor
        Unsigned 8-bit integer
    x11.xselinux.QueryVersion.reply.server_major  server_major
        Unsigned 16-bit integer
    x11.xselinux.QueryVersion.reply.server_minor  server_minor
        Unsigned 16-bit integer
    x11.xselinux.SetDeviceContext.context  context
        String
    x11.xselinux.SetDeviceContext.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.SetDeviceContext.device  device
        Unsigned 32-bit integer
    x11.xselinux.SetDeviceCreateContext.context  context
        String
    x11.xselinux.SetDeviceCreateContext.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.SetPropertyCreateContext.context  context
        String
    x11.xselinux.SetPropertyCreateContext.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.SetPropertyUseContext.context  context
        String
    x11.xselinux.SetPropertyUseContext.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.SetSelectionCreateContext.context  context
        String
    x11.xselinux.SetSelectionCreateContext.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.SetSelectionUseContext.context  context
        String
    x11.xselinux.SetSelectionUseContext.context_len  context_len
        Unsigned 32-bit integer
    x11.xselinux.SetWindowCreateContext.context  context
        String
    x11.xselinux.SetWindowCreateContext.context_len  context_len
        Unsigned 32-bit integer
    x11.xtest.CompareCursor.cursor  cursor
        Unsigned 32-bit integer
    x11.xtest.CompareCursor.reply.same  same
        Boolean
    x11.xtest.CompareCursor.window  window
        Unsigned 32-bit integer
    x11.xtest.FakeInput.detail  detail
        Byte array
    x11.xtest.FakeInput.deviceid  deviceid
        Unsigned 8-bit integer
    x11.xtest.FakeInput.root  root
        Unsigned 32-bit integer
    x11.xtest.FakeInput.rootX  rootX
        Unsigned 16-bit integer
    x11.xtest.FakeInput.rootY  rootY
        Unsigned 16-bit integer
    x11.xtest.FakeInput.time  time
        Unsigned 32-bit integer
    x11.xtest.FakeInput.type  type
        Byte array
    x11.xtest.GetVersion.major_version  major_version
        Unsigned 8-bit integer
    x11.xtest.GetVersion.minor_version  minor_version
        Unsigned 16-bit integer
    x11.xtest.GetVersion.reply.major_version  major_version
        Unsigned 8-bit integer
    x11.xtest.GetVersion.reply.minor_version  minor_version
        Unsigned 16-bit integer
    x11.xtest.GrabControl.impervious  impervious
        Boolean
    x11.xv.GetPortAttribute.attribute  attribute
        Unsigned 32-bit integer
    x11.xv.GetPortAttribute.port  port
        Unsigned 32-bit integer
    x11.xv.GetPortAttribute.reply.value  value
        Signed 32-bit integer
    x11.xv.GetStill.drawable  drawable
        Unsigned 32-bit integer
    x11.xv.GetStill.drw_h  drw_h
        Unsigned 16-bit integer
    x11.xv.GetStill.drw_w  drw_w
        Unsigned 16-bit integer
    x11.xv.GetStill.drw_x  drw_x
        Signed 16-bit integer
    x11.xv.GetStill.drw_y  drw_y
        Signed 16-bit integer
    x11.xv.GetStill.gc  gc
        Unsigned 32-bit integer
    x11.xv.GetStill.port  port
        Unsigned 32-bit integer
    x11.xv.GetStill.vid_h  vid_h
        Unsigned 16-bit integer
    x11.xv.GetStill.vid_w  vid_w
        Unsigned 16-bit integer
    x11.xv.GetStill.vid_x  vid_x
        Signed 16-bit integer
    x11.xv.GetStill.vid_y  vid_y
        Signed 16-bit integer
    x11.xv.GetVideo.drawable  drawable
        Unsigned 32-bit integer
    x11.xv.GetVideo.drw_h  drw_h
        Unsigned 16-bit integer
    x11.xv.GetVideo.drw_w  drw_w
        Unsigned 16-bit integer
    x11.xv.GetVideo.drw_x  drw_x
        Signed 16-bit integer
    x11.xv.GetVideo.drw_y  drw_y
        Signed 16-bit integer
    x11.xv.GetVideo.gc  gc
        Unsigned 32-bit integer
    x11.xv.GetVideo.port  port
        Unsigned 32-bit integer
    x11.xv.GetVideo.vid_h  vid_h
        Unsigned 16-bit integer
    x11.xv.GetVideo.vid_w  vid_w
        Unsigned 16-bit integer
    x11.xv.GetVideo.vid_x  vid_x
        Signed 16-bit integer
    x11.xv.GetVideo.vid_y  vid_y
        Signed 16-bit integer
    x11.xv.GrabPort.port  port
        Unsigned 32-bit integer
    x11.xv.GrabPort.reply.result  result
        Unsigned 8-bit integer
    x11.xv.GrabPort.time  time
        Unsigned 32-bit integer
    x11.xv.ListImageFormats.port  port
        Unsigned 32-bit integer
    x11.xv.ListImageFormats.reply.format  format
        No value
    x11.xv.ListImageFormats.reply.num_formats  num_formats
        Unsigned 32-bit integer
    x11.xv.PortNotify.attribute  attribute
        Unsigned 32-bit integer
    x11.xv.PortNotify.port  port
        Unsigned 32-bit integer
    x11.xv.PortNotify.time  time
        Unsigned 32-bit integer
    x11.xv.PortNotify.value  value
        Signed 32-bit integer
    x11.xv.PutImage.data  data
        Unsigned 8-bit integer
    x11.xv.PutImage.drawable  drawable
        Unsigned 32-bit integer
    x11.xv.PutImage.drw_h  drw_h
        Unsigned 16-bit integer
    x11.xv.PutImage.drw_w  drw_w
        Unsigned 16-bit integer
    x11.xv.PutImage.drw_x  drw_x
        Signed 16-bit integer
    x11.xv.PutImage.drw_y  drw_y
        Signed 16-bit integer
    x11.xv.PutImage.gc  gc
        Unsigned 32-bit integer
    x11.xv.PutImage.height  height
        Unsigned 16-bit integer
    x11.xv.PutImage.id  id
        Unsigned 32-bit integer
    x11.xv.PutImage.port  port
        Unsigned 32-bit integer
    x11.xv.PutImage.src_h  src_h
        Unsigned 16-bit integer
    x11.xv.PutImage.src_w  src_w
        Unsigned 16-bit integer
    x11.xv.PutImage.src_x  src_x
        Signed 16-bit integer
    x11.xv.PutImage.src_y  src_y
        Signed 16-bit integer
    x11.xv.PutImage.width  width
        Unsigned 16-bit integer
    x11.xv.PutStill.drawable  drawable
        Unsigned 32-bit integer
    x11.xv.PutStill.drw_h  drw_h
        Unsigned 16-bit integer
    x11.xv.PutStill.drw_w  drw_w
        Unsigned 16-bit integer
    x11.xv.PutStill.drw_x  drw_x
        Signed 16-bit integer
    x11.xv.PutStill.drw_y  drw_y
        Signed 16-bit integer
    x11.xv.PutStill.gc  gc
        Unsigned 32-bit integer
    x11.xv.PutStill.port  port
        Unsigned 32-bit integer
    x11.xv.PutStill.vid_h  vid_h
        Unsigned 16-bit integer
    x11.xv.PutStill.vid_w  vid_w
        Unsigned 16-bit integer
    x11.xv.PutStill.vid_x  vid_x
        Signed 16-bit integer
    x11.xv.PutStill.vid_y  vid_y
        Signed 16-bit integer
    x11.xv.PutVideo.drawable  drawable
        Unsigned 32-bit integer
    x11.xv.PutVideo.drw_h  drw_h
        Unsigned 16-bit integer
    x11.xv.PutVideo.drw_w  drw_w
        Unsigned 16-bit integer
    x11.xv.PutVideo.drw_x  drw_x
        Signed 16-bit integer
    x11.xv.PutVideo.drw_y  drw_y
        Signed 16-bit integer
    x11.xv.PutVideo.gc  gc
        Unsigned 32-bit integer
    x11.xv.PutVideo.port  port
        Unsigned 32-bit integer
    x11.xv.PutVideo.vid_h  vid_h
        Unsigned 16-bit integer
    x11.xv.PutVideo.vid_w  vid_w
        Unsigned 16-bit integer
    x11.xv.PutVideo.vid_x  vid_x
        Signed 16-bit integer
    x11.xv.PutVideo.vid_y  vid_y
        Signed 16-bit integer
    x11.xv.QueryAdaptors.reply.info  info
        No value
    x11.xv.QueryAdaptors.reply.num_adaptors  num_adaptors
        Unsigned 16-bit integer
    x11.xv.QueryAdaptors.window  window
        Unsigned 32-bit integer
    x11.xv.QueryBestSize.drw_h  drw_h
        Unsigned 16-bit integer
    x11.xv.QueryBestSize.drw_w  drw_w
        Unsigned 16-bit integer
    x11.xv.QueryBestSize.motion  motion
        Boolean
    x11.xv.QueryBestSize.port  port
        Unsigned 32-bit integer
    x11.xv.QueryBestSize.reply.actual_height  actual_height
        Unsigned 16-bit integer
    x11.xv.QueryBestSize.reply.actual_width  actual_width
        Unsigned 16-bit integer
    x11.xv.QueryBestSize.vid_h  vid_h
        Unsigned 16-bit integer
    x11.xv.QueryBestSize.vid_w  vid_w
        Unsigned 16-bit integer
    x11.xv.QueryEncodings.port  port
        Unsigned 32-bit integer
    x11.xv.QueryEncodings.reply.info  info
        No value
    x11.xv.QueryEncodings.reply.num_encodings  num_encodings
        Unsigned 16-bit integer
    x11.xv.QueryExtension.reply.major  major
        Unsigned 16-bit integer
    x11.xv.QueryExtension.reply.minor  minor
        Unsigned 16-bit integer
    x11.xv.QueryImageAttributes.height  height
        Unsigned 16-bit integer
    x11.xv.QueryImageAttributes.id  id
        Unsigned 32-bit integer
    x11.xv.QueryImageAttributes.port  port
        Unsigned 32-bit integer
    x11.xv.QueryImageAttributes.reply.data_size  data_size
        Unsigned 32-bit integer
    x11.xv.QueryImageAttributes.reply.height  height
        Unsigned 16-bit integer
    x11.xv.QueryImageAttributes.reply.num_planes  num_planes
        Unsigned 32-bit integer
    x11.xv.QueryImageAttributes.reply.offsets  offsets
        No value
    x11.xv.QueryImageAttributes.reply.pitches  pitches
        No value
    x11.xv.QueryImageAttributes.reply.width  width
        Unsigned 16-bit integer
    x11.xv.QueryImageAttributes.width  width
        Unsigned 16-bit integer
    x11.xv.QueryPortAttributes.port  port
        Unsigned 32-bit integer
    x11.xv.QueryPortAttributes.reply.attributes  attributes
        No value
    x11.xv.QueryPortAttributes.reply.num_attributes  num_attributes
        Unsigned 32-bit integer
    x11.xv.QueryPortAttributes.reply.text_size  text_size
        Unsigned 32-bit integer
    x11.xv.SelectPortNotify.onoff  onoff
        Boolean
    x11.xv.SelectPortNotify.port  port
        Unsigned 32-bit integer
    x11.xv.SelectVideoNotify.drawable  drawable
        Unsigned 32-bit integer
    x11.xv.SelectVideoNotify.onoff  onoff
        Boolean
    x11.xv.SetPortAttribute.attribute  attribute
        Unsigned 32-bit integer
    x11.xv.SetPortAttribute.port  port
        Unsigned 32-bit integer
    x11.xv.SetPortAttribute.value  value
        Signed 32-bit integer
    x11.xv.ShmPutImage.drawable  drawable
        Unsigned 32-bit integer
    x11.xv.ShmPutImage.drw_h  drw_h
        Unsigned 16-bit integer
    x11.xv.ShmPutImage.drw_w  drw_w
        Unsigned 16-bit integer
    x11.xv.ShmPutImage.drw_x  drw_x
        Signed 16-bit integer
    x11.xv.ShmPutImage.drw_y  drw_y
        Signed 16-bit integer
    x11.xv.ShmPutImage.gc  gc
        Unsigned 32-bit integer
    x11.xv.ShmPutImage.height  height
        Unsigned 16-bit integer
    x11.xv.ShmPutImage.id  id
        Unsigned 32-bit integer
    x11.xv.ShmPutImage.offset  offset
        Unsigned 32-bit integer
    x11.xv.ShmPutImage.port  port
        Unsigned 32-bit integer
    x11.xv.ShmPutImage.send_event  send_event
        Unsigned 8-bit integer
    x11.xv.ShmPutImage.shmseg  shmseg
        Unsigned 32-bit integer
    x11.xv.ShmPutImage.src_h  src_h
        Unsigned 16-bit integer
    x11.xv.ShmPutImage.src_w  src_w
        Unsigned 16-bit integer
    x11.xv.ShmPutImage.src_x  src_x
        Signed 16-bit integer
    x11.xv.ShmPutImage.src_y  src_y
        Signed 16-bit integer
    x11.xv.ShmPutImage.width  width
        Unsigned 16-bit integer
    x11.xv.StopVideo.drawable  drawable
        Unsigned 32-bit integer
    x11.xv.StopVideo.port  port
        Unsigned 32-bit integer
    x11.xv.UngrabPort.port  port
        Unsigned 32-bit integer
    x11.xv.UngrabPort.time  time
        Unsigned 32-bit integer
    x11.xv.VideoNotify.drawable  drawable
        Unsigned 32-bit integer
    x11.xv.VideoNotify.port  port
        Unsigned 32-bit integer
    x11.xv.VideoNotify.reason  reason
        Unsigned 8-bit integer
    x11.xv.VideoNotify.time  time
        Unsigned 32-bit integer
    x11.xvmc.CreateContext.context_id  context_id
        Unsigned 32-bit integer
    x11.xvmc.CreateContext.flags  flags
        Unsigned 32-bit integer
    x11.xvmc.CreateContext.height  height
        Unsigned 16-bit integer
    x11.xvmc.CreateContext.port_id  port_id
        Unsigned 32-bit integer
    x11.xvmc.CreateContext.reply.flags_return  flags_return
        Unsigned 32-bit integer
    x11.xvmc.CreateContext.reply.height_actual  height_actual
        Unsigned 16-bit integer
    x11.xvmc.CreateContext.reply.priv_data  priv_data
        No value
    x11.xvmc.CreateContext.reply.width_actual  width_actual
        Unsigned 16-bit integer
    x11.xvmc.CreateContext.surface_id  surface_id
        Unsigned 32-bit integer
    x11.xvmc.CreateContext.width  width
        Unsigned 16-bit integer
    x11.xvmc.CreateSubpicture.context  context
        Unsigned 32-bit integer
    x11.xvmc.CreateSubpicture.height  height
        Unsigned 16-bit integer
    x11.xvmc.CreateSubpicture.reply.component_order  component_order
        Unsigned 8-bit integer
    x11.xvmc.CreateSubpicture.reply.entry_bytes  entry_bytes
        Unsigned 16-bit integer
    x11.xvmc.CreateSubpicture.reply.height_actual  height_actual
        Unsigned 16-bit integer
    x11.xvmc.CreateSubpicture.reply.num_palette_entries  num_palette_entries
        Unsigned 16-bit integer
    x11.xvmc.CreateSubpicture.reply.priv_data  priv_data
        No value
    x11.xvmc.CreateSubpicture.reply.width_actual  width_actual
        Unsigned 16-bit integer
    x11.xvmc.CreateSubpicture.subpicture_id  subpicture_id
        Unsigned 32-bit integer
    x11.xvmc.CreateSubpicture.width  width
        Unsigned 16-bit integer
    x11.xvmc.CreateSubpicture.xvimage_id  xvimage_id
        Unsigned 32-bit integer
    x11.xvmc.CreateSurface.context_id  context_id
        Unsigned 32-bit integer
    x11.xvmc.CreateSurface.reply.priv_data  priv_data
        No value
    x11.xvmc.CreateSurface.surface_id  surface_id
        Unsigned 32-bit integer
    x11.xvmc.DestroyContext.context_id  context_id
        Unsigned 32-bit integer
    x11.xvmc.DestroySubpicture.subpicture_id  subpicture_id
        Unsigned 32-bit integer
    x11.xvmc.DestroySurface.surface_id  surface_id
        Unsigned 32-bit integer
    x11.xvmc.ListSubpictureTypes.port_id  port_id
        Unsigned 32-bit integer
    x11.xvmc.ListSubpictureTypes.reply.num  num
        Unsigned 32-bit integer
    x11.xvmc.ListSubpictureTypes.reply.types  types
        No value
    x11.xvmc.ListSubpictureTypes.surface_id  surface_id
        Unsigned 32-bit integer
    x11.xvmc.ListSurfaceTypes.port_id  port_id
        Unsigned 32-bit integer
    x11.xvmc.ListSurfaceTypes.reply.num  num
        Unsigned 32-bit integer
    x11.xvmc.ListSurfaceTypes.reply.surfaces  surfaces
        No value
    x11.xvmc.QueryVersion.reply.major  major
        Unsigned 32-bit integer
    x11.xvmc.QueryVersion.reply.minor  minor
        Unsigned 32-bit integer
    x11.y  y
        Signed 16-bit integer

X711 CMIP (cmip)

    cmip.AE_title  AE-title
        Unsigned 32-bit integer
    cmip.ActiveDestination  ActiveDestination
        Unsigned 32-bit integer
    cmip.AdditionalInformation  AdditionalInformation
        Unsigned 32-bit integer
    cmip.AdditionalText  AdditionalText
        String
    cmip.AdministrativeState  AdministrativeState
        Unsigned 32-bit integer
    cmip.AlarmStatus  AlarmStatus
        Unsigned 32-bit integer
    cmip.AlarmStatus_item  AlarmStatus item
        Signed 32-bit integer
    cmip.Allomorphs  Allomorphs
        Unsigned 32-bit integer
    cmip.Attribute  Attribute
        No value
    cmip.AttributeId  AttributeId
        Unsigned 32-bit integer
    cmip.AttributeIdentifierList  AttributeIdentifierList
        Unsigned 32-bit integer
    cmip.AttributeList  AttributeList
        Unsigned 32-bit integer
    cmip.AttributeValueAssertion  AttributeValueAssertion
        No value
    cmip.AttributeValueChangeDefinition  AttributeValueChangeDefinition
        Unsigned 32-bit integer
    cmip.AttributeValueChangeDefinition_item  AttributeValueChangeDefinition item
        No value
    cmip.AvailabilityStatus  AvailabilityStatus
        Unsigned 32-bit integer
    cmip.AvailabilityStatus_item  AvailabilityStatus item
        Signed 32-bit integer
    cmip.BackUpDestinationList  BackUpDestinationList
        Unsigned 32-bit integer
    cmip.BackUpRelationshipObject  BackUpRelationshipObject
        Unsigned 32-bit integer
    cmip.BackedUpStatus  BackedUpStatus
        Boolean
    cmip.BaseManagedObjectId  BaseManagedObjectId
        No value
    cmip.CMISFilter  CMISFilter
        Unsigned 32-bit integer
    cmip.CapacityAlarmThreshold  CapacityAlarmThreshold
        Unsigned 32-bit integer
    cmip.CapacityAlarmThreshold_item  CapacityAlarmThreshold item
        Unsigned 32-bit integer
        INTEGER_0_100
    cmip.ConfirmedMode  ConfirmedMode
        Boolean
    cmip.ControlStatus  ControlStatus
        Unsigned 32-bit integer
    cmip.ControlStatus_item  ControlStatus item
        Signed 32-bit integer
    cmip.CorrelatedNotifications  CorrelatedNotifications
        Unsigned 32-bit integer
    cmip.CorrelatedNotifications_item  CorrelatedNotifications item
        No value
    cmip.CurrentLogSize  CurrentLogSize
        Signed 32-bit integer
    cmip.Destination  Destination
        Unsigned 32-bit integer
    cmip.DiscriminatorConstruct  DiscriminatorConstruct
        Unsigned 32-bit integer
    cmip.EventTime  EventTime
        String
    cmip.EventTypeId  EventTypeId
        Unsigned 32-bit integer
    cmip.GetInfoStatus  GetInfoStatus
        Unsigned 32-bit integer
    cmip.GroupObjects  GroupObjects
        Unsigned 32-bit integer
    cmip.IntervalsOfDay  IntervalsOfDay
        Unsigned 32-bit integer
    cmip.IntervalsOfDay_item  IntervalsOfDay item
        No value
    cmip.InvokeId_present  InvokeId.present
        Signed 32-bit integer
        InvokeId_present
    cmip.LifecycleState  LifecycleState
        Unsigned 32-bit integer
    cmip.LogFullAction  LogFullAction
        Unsigned 32-bit integer
    cmip.LogRecordId  LogRecordId
        Unsigned 32-bit integer
    cmip.LoggingTime  LoggingTime
        String
    cmip.ManagementExtension  ManagementExtension
        No value
    cmip.MaxLogSize  MaxLogSize
        Signed 32-bit integer
    cmip.MonitoredAttributes  MonitoredAttributes
        Unsigned 32-bit integer
    cmip.NameBinding  NameBinding
        String
    cmip.NotificationIdentifier  NotificationIdentifier
        Signed 32-bit integer
    cmip.NumberOfRecords  NumberOfRecords
        Signed 32-bit integer
    cmip.ObjectClass  ObjectClass
        Unsigned 32-bit integer
    cmip.ObjectInstance  ObjectInstance
        Unsigned 32-bit integer
    cmip.OperationalState  OperationalState
        Unsigned 32-bit integer
    cmip.Packages  Packages
        Unsigned 32-bit integer
    cmip.Packages_item  Packages item
        Object Identifier
        OBJECT_IDENTIFIER
    cmip.PerceivedSeverity  PerceivedSeverity
        Unsigned 32-bit integer
    cmip.PrioritisedObject  PrioritisedObject
        Unsigned 32-bit integer
    cmip.PrioritisedObject_item  PrioritisedObject item
        No value
    cmip.ProbableCause  ProbableCause
        Unsigned 32-bit integer
    cmip.ProceduralStatus  ProceduralStatus
        Unsigned 32-bit integer
    cmip.ProceduralStatus_item  ProceduralStatus item
        Signed 32-bit integer
    cmip.ProposedRepairActions  ProposedRepairActions
        Unsigned 32-bit integer
    cmip.RelativeDistinguishedName  RelativeDistinguishedName
        Unsigned 32-bit integer
    cmip.SecurityAlarmCause  SecurityAlarmCause
        Object Identifier
    cmip.SecurityAlarmDetector  SecurityAlarmDetector
        Unsigned 32-bit integer
    cmip.SecurityAlarmSeverity  SecurityAlarmSeverity
        Unsigned 32-bit integer
    cmip.ServiceProvider  ServiceProvider
        No value
    cmip.ServiceUser  ServiceUser
        No value
    cmip.SetInfoStatus  SetInfoStatus
        Unsigned 32-bit integer
    cmip.SimpleNameType  SimpleNameType
        Unsigned 32-bit integer
    cmip.SourceIndicator  SourceIndicator
        Unsigned 32-bit integer
    cmip.SpecificIdentifier  SpecificIdentifier
        Unsigned 32-bit integer
    cmip.SpecificProblems  SpecificProblems
        Unsigned 32-bit integer
    cmip.StandbyStatus  StandbyStatus
        Signed 32-bit integer
    cmip.StartTime  StartTime
        String
    cmip.StopTime  StopTime
        Unsigned 32-bit integer
    cmip.SupportedFeatures  SupportedFeatures
        Unsigned 32-bit integer
    cmip.SupportedFeatures_item  SupportedFeatures item
        No value
    cmip.SystemId  SystemId
        Unsigned 32-bit integer
    cmip.SystemTitle  SystemTitle
        Unsigned 32-bit integer
    cmip.ThresholdInfo  ThresholdInfo
        No value
    cmip.TrendIndication  TrendIndication
        Unsigned 32-bit integer
    cmip.UnknownStatus  UnknownStatus
        Boolean
    cmip.UsageState  UsageState
        Unsigned 32-bit integer
    cmip.WeekMask  WeekMask
        Unsigned 32-bit integer
    cmip.WeekMask_item  WeekMask item
        No value
    cmip.abortSource  abortSource
        Unsigned 32-bit integer
        CMIPAbortSource
    cmip.absent  absent
        No value
    cmip.accessControl  accessControl
        No value
    cmip.actionArgument  actionArgument
        Unsigned 32-bit integer
        NoSuchArgument
    cmip.actionError  actionError
        No value
    cmip.actionErrorInfo  actionErrorInfo
        No value
    cmip.actionId  actionId
        No value
    cmip.actionInfo  actionInfo
        No value
    cmip.actionInfoArg  actionInfoArg
        No value
    cmip.actionReply  actionReply
        No value
    cmip.actionReplyInfo  actionReplyInfo
        No value
    cmip.actionResult  actionResult
        No value
    cmip.actionType  actionType
        Unsigned 32-bit integer
        ActionTypeId
    cmip.actionType_OID  actionType
        String
    cmip.actionValue  actionValue
        No value
        ActionInfo
    cmip.and  and
        Unsigned 32-bit integer
        SET_OF_CMISFilter
    cmip.anyString  anyString
        No value
        Attribute
    cmip.application  application
        Unsigned 32-bit integer
        AE_title
    cmip.argument  argument
        No value
        InvokeArgument
    cmip.argumentValue  argumentValue
        Unsigned 32-bit integer
        InvalidArgumentValue
    cmip.armTime  armTime
        String
        GeneralizedTime
    cmip.attribute  attribute
        No value
    cmip.attributeError  attributeError
        No value
    cmip.attributeId  attributeId
        Unsigned 32-bit integer
    cmip.attributeIdError  attributeIdError
        No value
    cmip.attributeIdList  attributeIdList
        Unsigned 32-bit integer
        SET_OF_AttributeId
    cmip.attributeId_OID  attributeId
        String
    cmip.attributeList  attributeList
        Unsigned 32-bit integer
        SET_OF_Attribute
    cmip.attributeValue  attributeValue
        No value
    cmip.baseManagedObjectClass  baseManagedObjectClass
        Unsigned 32-bit integer
        ObjectClass
    cmip.baseManagedObjectInstance  baseManagedObjectInstance
        Unsigned 32-bit integer
        ObjectInstance
    cmip.baseToNthLevel  baseToNthLevel
        Signed 32-bit integer
        INTEGER
    cmip.cancelGet  cancelGet
        Boolean
    cmip.continual  continual
        No value
    cmip.correlatedNotifications  correlatedNotifications
        Unsigned 32-bit integer
        SET_OF_NotificationIdentifier
    cmip.currentTime  currentTime
        String
        GeneralizedTime
    cmip.daysOfWeek  daysOfWeek
        Byte array
    cmip.deleteError  deleteError
        No value
    cmip.deleteErrorInfo  deleteErrorInfo
        Unsigned 32-bit integer
    cmip.deleteResult  deleteResult
        No value
    cmip.details  details
        No value
    cmip.distinguishedName  distinguishedName
        Unsigned 32-bit integer
    cmip.down  down
        No value
    cmip.equality  equality
        No value
        Attribute
    cmip.errcode  errcode
        Unsigned 32-bit integer
        Code
    cmip.errorId  errorId
        Object Identifier
    cmip.errorId_OID  errorId
        String
    cmip.errorInfo  errorInfo
        Unsigned 32-bit integer
        T_actionErrorInfo
    cmip.errorStatus  errorStatus
        Unsigned 32-bit integer
        T_actionErrorInfo_errorStatus
    cmip.eventId  eventId
        No value
    cmip.eventInfo  eventInfo
        No value
        EventReportArgumentEventInfo
    cmip.eventReply  eventReply
        No value
    cmip.eventReplyInfo  eventReplyInfo
        No value
    cmip.eventTime  eventTime
        String
        GeneralizedTime
    cmip.eventType  eventType
        Unsigned 32-bit integer
        EventTypeId
    cmip.eventType_OID  eventType
        String
    cmip.eventValue  eventValue
        No value
    cmip.extendedService  extendedService
        Boolean
    cmip.featureIdentifier  featureIdentifier
        Object Identifier
    cmip.featureInfo  featureInfo
        No value
    cmip.filter  filter
        Unsigned 32-bit integer
        CMISFilter
    cmip.finalString  finalString
        No value
        Attribute
    cmip.friday  friday
        Boolean
    cmip.functionalUnits  functionalUnits
        Byte array
    cmip.general  general
        Signed 32-bit integer
        GeneralProblem
    cmip.getInfoList  getInfoList
        Unsigned 32-bit integer
        SET_OF_GetInfoStatus
    cmip.getListError  getListError
        No value
    cmip.getResult  getResult
        No value
    cmip.global  global
        Object Identifier
        OBJECT_IDENTIFIER
    cmip.globalForm  globalForm
        Object Identifier
        T_actionTypeId_globalForm
    cmip.globalValue  globalValue
        Object Identifier
        OBJECT_IDENTIFIER
    cmip.greaterOrEqual  greaterOrEqual
        No value
        Attribute
    cmip.high  high
        Unsigned 32-bit integer
        ObservedValue
    cmip.hour  hour
        Unsigned 32-bit integer
        INTEGER_0_23
    cmip.id  id
        Unsigned 32-bit integer
        AttributeId
    cmip.identifier  identifier
        Object Identifier
        T_managementExtensionidentifier
    cmip.individualLevels  individualLevels
        Signed 32-bit integer
        INTEGER
    cmip.information  information
        No value
    cmip.initialString  initialString
        No value
        Attribute
    cmip.int  int
        Signed 32-bit integer
        INTEGER
    cmip.integer  integer
        Signed 32-bit integer
    cmip.intervalEnd  intervalEnd
        No value
        Time24
    cmip.intervalStart  intervalStart
        No value
        Time24
    cmip.intervalsOfDay  intervalsOfDay
        Unsigned 32-bit integer
    cmip.invoke  invoke
        No value
    cmip.invokeId  invokeId
        Unsigned 32-bit integer
    cmip.item  item
        Unsigned 32-bit integer
        FilterItem
    cmip.lessOrEqual  lessOrEqual
        No value
        Attribute
    cmip.linkedId  linkedId
        Unsigned 32-bit integer
    cmip.local  local
        Signed 32-bit integer
    cmip.localDistinguishedName  localDistinguishedName
        Unsigned 32-bit integer
        RDNSequence
    cmip.localForm  localForm
        Signed 32-bit integer
        INTEGER
    cmip.localValue  localValue
        Signed 32-bit integer
        INTEGER
    cmip.low  low
        Unsigned 32-bit integer
        ObservedValue
    cmip.managedObjectClass  managedObjectClass
        Unsigned 32-bit integer
        ObjectClass
    cmip.managedObjectInstance  managedObjectInstance
        Unsigned 32-bit integer
        ObjectInstance
    cmip.managedOrSuperiorObjectInstance  managedOrSuperiorObjectInstance
        Unsigned 32-bit integer
    cmip.mechanism  mechanism
        Object Identifier
        OBJECT_IDENTIFIER
    cmip.minute  minute
        Unsigned 32-bit integer
        INTEGER_0_59
    cmip.modificationList  modificationList
        Unsigned 32-bit integer
    cmip.modificationList_item  modificationList item
        No value
        T_modificationList_item
    cmip.modifyOperator  modifyOperator
        Signed 32-bit integer
    cmip.monday  monday
        Boolean
    cmip.multiple  multiple
        Unsigned 32-bit integer
        SET_OF_AE_title
    cmip.multipleObjectSelection  multipleObjectSelection
        Boolean
    cmip.multipleReply  multipleReply
        Boolean
    cmip.name  name
        String
        GraphicString
    cmip.namedNumbers  namedNumbers
        Signed 32-bit integer
    cmip.newAttributeValue  newAttributeValue
        No value
    cmip.noObject  noObject
        No value
    cmip.nonNullSetIntersection  nonNullSetIntersection
        No value
        Attribute
    cmip.nonSpecificForm  nonSpecificForm
        Byte array
        OCTET_STRING
    cmip.not  not
        Unsigned 32-bit integer
        CMISFilter
    cmip.nothing  nothing
        No value
    cmip.number  number
        Signed 32-bit integer
        INTEGER
    cmip.object  object
        Unsigned 32-bit integer
        ObjectInstance
    cmip.objectName  objectName
        Unsigned 32-bit integer
        ObjectInstance
    cmip.observedValue  observedValue
        Unsigned 32-bit integer
    cmip.oi  oi
        Object Identifier
        OBJECT_IDENTIFIER
    cmip.oid  oid
        Object Identifier
        OBJECT_IDENTIFIER
    cmip.oldAttributeValue  oldAttributeValue
        No value
    cmip.opcode  opcode
        Unsigned 32-bit integer
        Code
    cmip.or  or
        Unsigned 32-bit integer
        SET_OF_CMISFilter
    cmip.parameter  parameter
        No value
    cmip.present  present
        Unsigned 32-bit integer
        AttributeId
    cmip.priority  priority
        Signed 32-bit integer
    cmip.problem  problem
        Unsigned 32-bit integer
    cmip.processingFailure  processingFailure
        No value
    cmip.protocolVersion  protocolVersion
        Byte array
    cmip.real  real
        Double-precision floating point
    cmip.referenceObjectInstance  referenceObjectInstance
        Unsigned 32-bit integer
        ObjectInstance
    cmip.reject  reject
        No value
    cmip.result  result
        No value
    cmip.returnError  returnError
        No value
    cmip.returnResult  returnResult
        No value
    cmip.saturday  saturday
        Boolean
    cmip.scope  scope
        Unsigned 32-bit integer
    cmip.setInfoList  setInfoList
        Unsigned 32-bit integer
        SET_OF_SetInfoStatus
    cmip.setListError  setListError
        No value
    cmip.setResult  setResult
        No value
    cmip.significance  significance
        Boolean
        BOOLEAN
    cmip.single  single
        Unsigned 32-bit integer
        AE_title
    cmip.sourceObjectInst  sourceObjectInst
        Unsigned 32-bit integer
        ObjectInstance
    cmip.specific  specific
        String
        GeneralizedTime
    cmip.specificErrorInfo  specificErrorInfo
        No value
    cmip.string  string
        String
        GraphicString
    cmip.subsetOf  subsetOf
        No value
        Attribute
    cmip.substrings  substrings
        Unsigned 32-bit integer
    cmip.substrings_item  substrings item
        Unsigned 32-bit integer
    cmip.sunday  sunday
        Boolean
    cmip.superiorObjectInstance  superiorObjectInstance
        Unsigned 32-bit integer
        ObjectInstance
    cmip.supersetOf  supersetOf
        No value
        Attribute
    cmip.sync  sync
        Unsigned 32-bit integer
        CMISSync
    cmip.synchronization  synchronization
        Unsigned 32-bit integer
        CMISSync
    cmip.thresholdLevel  thresholdLevel
        Unsigned 32-bit integer
        ThresholdLevelInd
    cmip.thursday  thursday
        Boolean
    cmip.triggeredThreshold  triggeredThreshold
        Unsigned 32-bit integer
        AttributeId
    cmip.tuesday  tuesday
        Boolean
    cmip.up  up
        No value
    cmip.userInfo  userInfo
        No value
        EXTERNAL
    cmip.value  value
        No value
        AttributeValue
    cmip.version1  version1
        Boolean
    cmip.version2  version2
        Boolean
    cmip.wednesday  wednesday
        Boolean

XCAP Error XML doc (RFC 4825) (xcap-error)

    xcap-error.alt-value  alt-value
        String
    xcap-error.ancestor  ancestor
        String
    xcap-error.cannot-delete  cannot-delete
        String
    xcap-error.cannot-delete.phrase  phrase
        String
    xcap-error.cannot-insert  cannot-insert
        String
    xcap-error.cannot-insert.phrase  phrase
        String
    xcap-error.constraint-failure  constraint-failure
        String
    xcap-error.constraint-failure.phrase  phrase
        String
    xcap-error.exists  exists
        String
    xcap-error.exists.alt-value  alt-value
        String
    xcap-error.exists.field  field
        String
    xcap-error.no-parent  no-parent
        String
    xcap-error.no-parent.ancestor  ancestor
        String
    xcap-error.no-parent.phrase  phrase
        String
    xcap-error.not-utf-8  not-utf-8
        String
    xcap-error.not-utf-8.phrase  phrase
        String
    xcap-error.not-well-formed  not-well-formed
        String
    xcap-error.not-well-formed.phrase  phrase
        String
    xcap-error.not-xml-att-value  not-xml-att-value
        String
    xcap-error.not-xml-att-value.phrase  phrase
        String
    xcap-error.not-xml-frag  not-xml-frag
        String
    xcap-error.not-xml-frag.phrase  phrase
        String
    xcap-error.schema-validation-error  schema-validation-error
        String
    xcap-error.schema-validation-error.phrase  phrase
        String
    xcap-error.uniqueness-failure  uniqueness-failure
        String
    xcap-error.uniqueness-failure.exists  exists
        String
    xcap-error.uniqueness-failure.exists.alt-value  alt-value
        String
    xcap-error.uniqueness-failure.exists.field  field
        String
    xcap-error.uniqueness-failure.phrase  phrase
        String
    xcap-error.xmlns  xmlns
        String

XML Configuration Access Protocol Server Capabilities (xcap-caps)

    xcap-caps.auid  auid
        String
    xcap-caps.extension  extension
        String
    xcap-caps.namespace  namespace
        String

Xpress Transport Protocol (xtp)

    xtp.aseg.address  Traffic
        Unsigned 32-bit integer
    xtp.aseg.aformat  Format
        Unsigned 8-bit integer
    xtp.aseg.alen  Length
        Unsigned 16-bit integer
    xtp.aseg.dsthost  Destination host
        IPv4 address
    xtp.aseg.dstport  Destination port
        Unsigned 16-bit integer
    xtp.aseg.srchost  Source host
        IPv4 address
    xtp.aseg.srcport  Source port
        Unsigned 16-bit integer
    xtp.cmd  Command
        Unsigned 32-bit integer
    xtp.cmd.options  Options
        Unsigned 24-bit integer
    xtp.cmd.options.btag  BTAG
        Boolean
    xtp.cmd.options.dreq  DREQ
        Boolean
    xtp.cmd.options.edge  EDGE
        Boolean
    xtp.cmd.options.end  END
        Boolean
    xtp.cmd.options.eom  EOM
        Boolean
    xtp.cmd.options.fastnak  FASTNAK
        Boolean
    xtp.cmd.options.multi  MULTI
        Boolean
    xtp.cmd.options.nocheck  NOCHECK
        Boolean
    xtp.cmd.options.noerr  NOERR
        Boolean
    xtp.cmd.options.noflow  NOFLOW
        Boolean
    xtp.cmd.options.rclose  RCLOSE
        Boolean
    xtp.cmd.options.res  RES
        Boolean
    xtp.cmd.options.sort  SORT
        Boolean
    xtp.cmd.options.sreq  SREQ
        Boolean
    xtp.cmd.options.wclose  WCLOSE
        Boolean
    xtp.cmd.ptype  Packet type
        Unsigned 8-bit integer
    xtp.cmd.ptype.pformat  Format
        Unsigned 8-bit integer
    xtp.cmd.ptype.ver  Version
        Unsigned 8-bit integer
    xtp.cntl.alloc  Allocation
        Unsigned 64-bit integer
    xtp.cntl.echo  Synchronizing handshake echo
        Unsigned 32-bit integer
    xtp.cntl.rseq  Received sequence number
        Unsigned 64-bit integer
    xtp.data.btag  Beginning tag
        Unsigned 64-bit integer
    xtp.diag.code  Diagnostic code
        Unsigned 32-bit integer
    xtp.diag.msg  Message
        String
    xtp.diag.val  Diagnostic value
        Unsigned 32-bit integer
    xtp.dlen  Data length
        Unsigned 32-bit integer
    xtp.ecntl.alloc  Allocation
        Unsigned 64-bit integer
    xtp.ecntl.echo  Synchronizing handshake echo
        Unsigned 32-bit integer
    xtp.ecntl.nspan  Number of spans
        Unsigned 32-bit integer
    xtp.ecntl.rseq  Received sequence number
        Unsigned 64-bit integer
    xtp.ecntl.span_le  Span left edge
        Unsigned 64-bit integer
    xtp.ecntl.span_re  Span right edge
        Unsigned 64-bit integer
    xtp.key  Key
        Unsigned 64-bit integer
    xtp.seq  Sequence number
        Unsigned 64-bit integer
    xtp.sort  Sort
        Unsigned 16-bit integer
    xtp.sync  Synchronizing handshake
        Unsigned 32-bit integer
    xtp.tcntl.alloc  Allocation
        Unsigned 64-bit integer
    xtp.tcntl.echo  Synchronizing handshake echo
        Unsigned 32-bit integer
    xtp.tcntl.rseq  Received sequence number
        Unsigned 64-bit integer
    xtp.tcntl.rsvd  Reserved
        Unsigned 32-bit integer
    xtp.tcntl.xkey  Exchange key
        Unsigned 64-bit integer
    xtp.tspec.format  Format
        Unsigned 8-bit integer
    xtp.tspec.inburst  Incoming burst size
        Unsigned 32-bit integer
    xtp.tspec.inrate  Incoming rate
        Unsigned 32-bit integer
    xtp.tspec.maxdata  Maxdata
        Unsigned 32-bit integer
    xtp.tspec.outburst  Outgoing burst size
        Unsigned 32-bit integer
    xtp.tspec.outrate  Outgoing rate
        Unsigned 32-bit integer
    xtp.tspec.service  Service
        Unsigned 8-bit integer
    xtp.tspec.tlen  Length
        Unsigned 16-bit integer
    xtp.tspec.traffic  Traffic
        Unsigned 32-bit integer

Xyplex (xyplex)

    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
    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

Yahoo Messenger Protocol (yhoo)

    yhoo.connection_id  Connection ID
        Unsigned 32-bit integer
    yhoo.content  Content
        String
        Data portion of the packet
    yhoo.len  Packet Length
        Unsigned 32-bit integer
    yhoo.magic_id  Magic ID
        Unsigned 32-bit integer
    yhoo.msgtype  Message Type
        Unsigned 32-bit integer
        Message Type Flags
    yhoo.nick1  Real Nick (nick1)
        String
    yhoo.nick2  Active Nick (nick2)
        String
    yhoo.service  Service Type
        Unsigned 32-bit integer
    yhoo.unknown1  Unknown 1
        Unsigned 32-bit integer
    yhoo.version  Version
        String
        Packet version identifier

Yahoo YMSG Messenger Protocol (ymsg)

    ymsg.content  Content
        String
        Data portion of the packet
    ymsg.content-line  Content-line
        String
        Data portion of the packet
    ymsg.content-line.key  Key
        String
        Content line key
    ymsg.content-line.value  Value
        String
        Content line value
    ymsg.len  Packet Length
        Unsigned 16-bit integer
    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.vendor  Vendor ID
        Unsigned 16-bit integer
        Vendor identifier
    ymsg.version  Version
        Unsigned 16-bit integer
        Packet version identifier

Yellow Pages Bind (ypbind)

    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
    ypbind.procedure_v2  V2 Procedure
        Unsigned 32-bit integer
    ypbind.resp_type  Response Type
        Unsigned 32-bit integer
        Response type
    ypbind.setdom.version  Version
        Unsigned 32-bit integer
        Version of setdom

Yellow Pages Passwd (yppasswd)

    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
    yppasswd.status  status
        Unsigned 32-bit integer
        YPPasswd update status

Yellow Pages Service (ypserv)

    ypserv.domain  Domain
        String
    ypserv.key  Key
        String
    ypserv.map  Map Name
        String
    ypserv.map_parms  YP Map Parameters
        No value
    ypserv.more  More
        Boolean
    ypserv.ordernum  Order Number
        Unsigned 32-bit integer
        Order Number for XFR
    ypserv.peer  Peer Name
        String
    ypserv.port  Port
        Unsigned 32-bit integer
        Port to use for XFR Callback
    ypserv.procedure_v1  V1 Procedure
        Unsigned 32-bit integer
    ypserv.procedure_v2  V2 Procedure
        Unsigned 32-bit integer
    ypserv.prog  Program Number
        Unsigned 32-bit integer
        Program Number to use for XFR Callback
    ypserv.servesdomain  Serves Domain
        Boolean
    ypserv.status  Status
        Signed 32-bit integer
    ypserv.transid  Host Transport ID
        IPv4 address
        Host Transport ID to use for XFR Callback
    ypserv.value  Value
        String
    ypserv.xfrstat  Xfrstat
        Signed 32-bit integer

Yellow Pages Transfer (ypxfr)

    ypxfr.procedure_v1  V1 Procedure
        Unsigned 32-bit integer

ZRTP (zrtp)

    zrtp.ac  Auth tag Count
        Unsigned 8-bit integer
    zrtp.at  AT
        String
    zrtp.auxs  auxs
        Byte array
    zrtp.cc  Cipher Count
        Unsigned 8-bit integer
    zrtp.cfb  CFB
        Byte array
    zrtp.checksum  Checksum
        Unsigned 32-bit integer
    zrtp.checksum_bad  Bad
        Boolean
        True: checksum doesn't match packet content; False: matches content
    zrtp.checksum_good  Good
        Boolean
        True: checksum matches packet content; False: doesn't match content
    zrtp.cipher  Cipher
        String
    zrtp.client_source_id  Client Identifier
        String
    zrtp.cookie  Magic Cookie
        String
    zrtp.error  Error
        Unsigned 32-bit integer
    zrtp.hash  Hash
        String
    zrtp.hash_image  Hash Image
        Byte array
    zrtp.hc  Hash Count
        Unsigned 8-bit integer
    zrtp.hmac  HMAC
        Byte array
    zrtp.hvi  hvi
        Byte array
    zrtp.id  ID
        Unsigned 8-bit integer
    zrtp.kc  Key Agreement Count
        Unsigned 8-bit integer
    zrtp.key_id  key ID
        Byte array
    zrtp.keya  Key Agreement
        String
    zrtp.length  Length
        Unsigned 16-bit integer
    zrtp.mitm  MiTM
        Boolean
    zrtp.nonce  nonce
        Byte array
    zrtp.passive  Passive
        Boolean
    zrtp.pbxs  pbxs
        Byte array
    zrtp.ping_endpointhash  Ping Endpoint Hash
        Unsigned 64-bit integer
    zrtp.ping_ssrc  Ping SSRC
        Unsigned 32-bit integer
    zrtp.ping_version  Ping Version
        String
    zrtp.pingack_endpointhash  PingAck Endpoint Hash
        Unsigned 64-bit integer
    zrtp.rs1id  rs1ID
        Byte array
    zrtp.rs2id  rs2ID
        Byte array
    zrtp.rtpextension  RTP Extension
        Boolean
    zrtp.rtppadding  RTP padding
        Boolean
    zrtp.rtpversion  RTP Version
        Unsigned 8-bit integer
    zrtp.sas  SAS
        String
    zrtp.sc  SAS Count
        Unsigned 8-bit integer
    zrtp.sequence  Sequence
        Unsigned 16-bit integer
    zrtp.signature  Signature
        Unsigned 16-bit integer
    zrtp.source_id  Source Identifier
        Unsigned 32-bit integer
    zrtp.type  Type
        String
    zrtp.version  ZRTP protocol version
        String
    zrtp.zid  ZID
        Byte array

Zebra Protocol (zebra)

    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
    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

ZigBee Application Framework (zbee.apf)

    zbee.app.count  Count
        Unsigned 8-bit integer
    zbee.app.type  Type
        Unsigned 8-bit integer

ZigBee Application Support Layer (zbee.aps)

    zbee.aps.ack_mode  Acknowledgement Mode
        Boolean
    zbee.aps.ack_req  Acknowledgement Request
        Boolean
        Flag requesting an acknowledgement frame for this packet.
    zbee.aps.block  Block Number
        Unsigned 8-bit integer
        A block identifier within a fragmented transmission, or the number of expected blocks if the first block.
    zbee.aps.cluster  Cluster
        Unsigned 16-bit integer
    zbee.aps.cmd.addr  Device Address
        Unsigned 16-bit integer
        The device whose status is being updated.
    zbee.aps.cmd.challenge  Challenge
        Byte array
        Random challenge value used during SKKE and authentication.
    zbee.aps.cmd.device  Device Address
        Unsigned 64-bit integer
        The device whose status is being updated.
    zbee.aps.cmd.dst  Destination Address
        Unsigned 64-bit integer
    zbee.aps.cmd.ea.data  Data
        Byte array
        Additional data used in entity authentication. Typically this will be the outgoing frame counter associated with the key used for entity authentication.
    zbee.aps.cmd.ea.key_type  Key Type
        Unsigned 8-bit integer
    zbee.aps.cmd.id  Command Identifier
        Unsigned 8-bit integer
    zbee.aps.cmd.init_flag  Initiator
        Boolean
        Inidicates the destination of the transport-key command requested this key.
    zbee.aps.cmd.initiator  Initiator Address
        Unsigned 64-bit integer
        The extended address of the device to initiate the SKKE procedure
    zbee.aps.cmd.key  Key
        Byte array
    zbee.aps.cmd.key_type  Key Type
        Unsigned 8-bit integer
    zbee.aps.cmd.mac  Message Authentication Code
        Byte array
        Message authentication values used during SKKE and authentication.
    zbee.aps.cmd.partner  Partner Address
        Unsigned 64-bit integer
        The partner to use this key with for link-level security.
    zbee.aps.cmd.responder  Responder Address
        Unsigned 64-bit integer
        The extended address of the device responding to the SKKE procedure
    zbee.aps.cmd.seqno  Sequence Number
        Unsigned 8-bit integer
        The key sequence number associated with the network key.
    zbee.aps.cmd.src  Source Address
        Unsigned 64-bit integer
    zbee.aps.cmd.status  Device Status
        Unsigned 8-bit integer
        Update device status.
    zbee.aps.counter  Counter
        Unsigned 8-bit integer
    zbee.aps.delivery  Delivery Mode
        Unsigned 8-bit integer
    zbee.aps.dst  Destination Endpoint
        Unsigned 8-bit integer
    zbee.aps.ext_header  Extended Header
        Boolean
    zbee.aps.fragment  Message fragment
        Frame number
    zbee.aps.fragment.error  Message defragmentation error
        Frame number
    zbee.aps.fragment.multiple_tails  Message has multiple tail fragments
        Boolean
    zbee.aps.fragment.overlap  Message fragment overlap
        Boolean
    zbee.aps.fragment.overlap.conflicts  Message fragment overlapping with conflicting data
        Boolean
    zbee.aps.fragment.too_long_fragment  Message fragment too long
        Boolean
    zbee.aps.fragmentation  Fragmentation
        Unsigned 8-bit integer
    zbee.aps.fragments  Message fragments
        No value
    zbee.aps.group  Group
        Unsigned 16-bit integer
    zbee.aps.indirect_mode  Indirect Address Mode
        Boolean
    zbee.aps.profile  Profile
        Unsigned 16-bit integer
    zbee.aps.reassembled.in  Reassembled in
        Frame number
    zbee.aps.reassembled.length  Reassembled ZigBee APS length
        Unsigned 32-bit integer
    zbee.aps.security  Security
        Boolean
        Whether security operations are performed on the APS payload.
    zbee.aps.src  Source Endpoint
        Unsigned 8-bit integer
    zbee.aps.type  Frame Type
        Unsigned 8-bit integer

ZigBee Cluster Library (zbee.zcl)

    zbee.zcl.attr.boolean  Boolean
        Boolean
    zbee.zcl.attr.bytes  Bytes
        Byte array
    zbee.zcl.attr.cid  Cluster
        Unsigned 16-bit integer
    zbee.zcl.attr.csecs  Centiseconds
        Unsigned 8-bit integer
    zbee.zcl.attr.data.type  Data Type
        Unsigned 8-bit integer
    zbee.zcl.attr.dir  Direction
        Unsigned 8-bit integer
    zbee.zcl.attr.dis  Discovery
        Unsigned 8-bit integer
    zbee.zcl.attr.float  Semi Float
        Single-precision floating point
    zbee.zcl.attr.hours  Hours
        Unsigned 8-bit integer
    zbee.zcl.attr.id  Attribute
        Unsigned 16-bit integer
    zbee.zcl.attr.int16  Int16
        Signed 16-bit integer
    zbee.zcl.attr.int24  Int24
        Signed 24-bit integer
    zbee.zcl.attr.int32  Int32
        Signed 32-bit integer
    zbee.zcl.attr.int64  Int64
        Signed 64-bit integer
    zbee.zcl.attr.int8  Int8
        Signed 8-bit integer
    zbee.zcl.attr.maxint  Maximum Interval
        Unsigned 16-bit integer
    zbee.zcl.attr.maxnum  Maxiumum Number
        Unsigned 8-bit integer
    zbee.zcl.attr.md  Day of Month
        Unsigned 8-bit integer
    zbee.zcl.attr.minint  Minimum Interval
        Unsigned 16-bit integer
    zbee.zcl.attr.mins  Minutes
        Unsigned 8-bit integer
    zbee.zcl.attr.mm  Month
        Unsigned 8-bit integer
    zbee.zcl.attr.ostr  Octet String
        String
    zbee.zcl.attr.secs  Seconds
        Unsigned 8-bit integer
    zbee.zcl.attr.start  Start Attribute
        Unsigned 16-bit integer
    zbee.zcl.attr.status  Status
        Unsigned 8-bit integer
    zbee.zcl.attr.str  String
        String
    zbee.zcl.attr.str.len  Length
        Unsigned 8-bit integer
    zbee.zcl.attr.timeout  Timeout
        Unsigned 16-bit integer
    zbee.zcl.attr.uint16  Uint16
        Unsigned 16-bit integer
    zbee.zcl.attr.uint24  Uint24
        Unsigned 24-bit integer
    zbee.zcl.attr.uint32  Uint32
        Unsigned 32-bit integer
    zbee.zcl.attr.uint64  Uint64
        Unsigned 64-bit integer
    zbee.zcl.attr.uint8  Uint8
        Unsigned 8-bit integer
    zbee.zcl.attr.utc  UTC
        Date/Time stamp
    zbee.zcl.attr.wd  Day of Week
        Unsigned 8-bit integer
    zbee.zcl.attr.yy  Year
        Unsigned 8-bit integer
    zbee.zcl.cmd.id  Command
        Unsigned 8-bit integer
    zbee.zcl.cmd.mc  Manufacturer Code
        Unsigned 16-bit integer
        Assigned manufacturer code.
    zbee.zcl.cmd.tsn  Sequence Number
        Unsigned 8-bit integer
    zbee.zcl.cs.cmd.id  Command
        Unsigned 8-bit integer
    zbee.zcl.ddr  Disable Default Response
        Boolean
    zbee.zcl.dir  Direction
        Boolean
    zbee.zcl.ms  Manufacturer Specific
        Boolean
    zbee.zcl.type  Frame Type
        Unsigned 8-bit integer

ZigBee Device Profile (zbee.zdp)

    zbee.zdp.addr_mode  Address Mode
        Unsigned 8-bit integer
    zbee.zdp.app.device  Application Device
        Unsigned 16-bit integer
    zbee.zdp.app.version  Application Version
        Unsigned 16-bit integer
    zbee.zdp.assoc_device  Associated Device
        Unsigned 16-bit integer
    zbee.zdp.assoc_device_count  Associated Device Count
        Unsigned 8-bit integer
    zbee.zdp.bind.dst  Destination
        Unsigned 16-bit integer
    zbee.zdp.bind.dst64  Destination
        Unsigned 64-bit integer
    zbee.zdp.bind.dst_ep  Destination Endpoint
        Unsigned 8-bit integer
    zbee.zdp.bind.src  Source
        Unsigned 16-bit integer
    zbee.zdp.bind.src64  Source
        Unsigned 64-bit integer
    zbee.zdp.bind.src_ep  Source Endpoint
        Unsigned 8-bit integer
    zbee.zdp.cache  Cache
        Unsigned 16-bit integer
        Address of the device containing the discovery cache.
    zbee.zdp.channel_count  Channel List Count
        Unsigned 8-bit integer
    zbee.zdp.cinfo.alloc  Allocate Short Address
        Boolean
        Flag requesting the parent to allocate a short address for this device.
    zbee.zdp.cinfo.alt_coord  Alternate Coordinator
        Boolean
        Indicates that the device is able to operate as a PAN coordinator.
    zbee.zdp.cinfo.ffd  Full-Function Device
        Boolean
    zbee.zdp.cinfo.power  AC Power
        Boolean
        Indicates this device is using AC/Mains power.
    zbee.zdp.cinfo.security  Security Capability
        Boolean
        Indicates this device is capable of performing encryption/decryption.
    zbee.zdp.cluster  Cluster
        Unsigned 16-bit integer
    zbee.zdp.complex  Complex Descriptor
        String
    zbee.zdp.complex_length  Complex Descriptor Length
        Unsigned 8-bit integer
    zbee.zdp.device  Device
        Unsigned 16-bit integer
    zbee.zdp.duration  Duration
        Unsigned 8-bit integer
    zbee.zdp.endpoint  Endpoint
        Unsigned 8-bit integer
    zbee.zdp.ep_count  Endpoint Count
        Unsigned 8-bit integer
    zbee.zdp.ext_addr  Extended Address
        Unsigned 64-bit integer
    zbee.zdp.in_cluster  Input Cluster
        Unsigned 16-bit integer
    zbee.zdp.in_count  Input Cluster Count
        Unsigned 8-bit integer
    zbee.zdp.index  Index
        Unsigned 8-bit integer
    zbee.zdp.leave.children  Remove Children
        Boolean
    zbee.zdp.leave.rejoin  Rejoin
        Boolean
    zbee.zdp.length  Length
        Unsigned 8-bit integer
    zbee.zdp.manager  Network Manager
        Unsigned 16-bit integer
    zbee.zdp.node.complex  Complex Descriptor
        Boolean
    zbee.zdp.node.freq.2400mhz  2.4GHz Band
        Boolean
    zbee.zdp.node.freq.868mhz  868MHz Band
        Boolean
    zbee.zdp.node.freq.900mhz  900MHz Band
        Boolean
    zbee.zdp.node.manufacturer  Manufacturer Code
        Unsigned 16-bit integer
    zbee.zdp.node.max_buffer  Max Buffer Size
        Unsigned 8-bit integer
    zbee.zdp.node.max_transfer  Max Transfer Size
        Unsigned 16-bit integer
    zbee.zdp.node.type  Type
        Unsigned 16-bit integer
    zbee.zdp.node.user  User Descriptor
        Boolean
    zbee.zdp.node_size  Node Descriptor Size
        Unsigned 8-bit integer
    zbee.zdp.out_cluster  Output Cluster
        Unsigned 16-bit integer
    zbee.zdp.out_count  Output Cluster Count
        Unsigned 8-bit integer
    zbee.zdp.power.avail.ac  Available AC Power
        Boolean
    zbee.zdp.power.avail.disp  Available Disposeable Battery
        Boolean
    zbee.zdp.power.avail.rech  Available Rechargeable Battery
        Boolean
    zbee.zdp.power.level  Level
        Unsigned 16-bit integer
    zbee.zdp.power.mode  Mode
        Unsigned 16-bit integer
    zbee.zdp.power.source.ac  Using AC Power
        Boolean
    zbee.zdp.power_size  Power Descriptor Size
        Unsigned 8-bit integer
    zbee.zdp.profile  Profile
        Unsigned 16-bit integer
    zbee.zdp.replacement  Replacement
        Unsigned 64-bit integer
    zbee.zdp.replacement_ep  Replacement Endpoint
        Unsigned 8-bit integer
    zbee.zdp.req_type  Request Type
        Unsigned 8-bit integer
    zbee.zdp.scan_count  Scan Count
        Unsigned 8-bit integer
    zbee.zdp.seqno  Sequence Number
        Unsigned 8-bit integer
    zbee.zdp.server.bak_bind  Backup Binding Table Cache
        Boolean
    zbee.zdp.server.bak_trust  Backup Trust Center
        Boolean
    zbee.zdp.server.pri_bind  Primary Binding Table Cache
        Boolean
    zbee.zdp.server.pri_disc  Primary Discovery Cache
        Boolean
    zbee.zdp.server.pri_trust  Primary Trust Center
        Boolean
    zbee.zdp.significance  Significance
        Unsigned 8-bit integer
    zbee.zdp.simple_count  Simple Descriptor Count
        Unsigned 8-bit integer
    zbee.zdp.simple_length  Simple Descriptor Length
        Unsigned 8-bit integer
    zbee.zdp.simple_size  Simple Descriptor Size
        Unsigned 8-bit integer
    zbee.zdp.status  Status
        Unsigned 8-bit integer
    zbee.zdp.table_count  Table Count
        Unsigned 16-bit integer
        Number of table entries included in this message.
    zbee.zdp.table_size  Table Size
        Unsigned 16-bit integer
        Number of entries in the table.
    zbee.zdp.target  Target
        Unsigned 16-bit integer
    zbee.zdp.target64  Target
        Unsigned 64-bit integer
    zbee.zdp.target_ep  Target Endpoint
        Unsigned 8-bit integer
    zbee.zdp.tx_fail  Failed Transmissions
        Unsigned 16-bit integer
    zbee.zdp.tx_total  Total Transmissions
        Unsigned 16-bit integer
    zbee.zdp.update_id  Update ID
        Unsigned 8-bit integer
    zbee.zdp.user  User Descriptor
        String
    zbee.zdp.user_length  User Descriptor Length
        Unsigned 8-bit integer

ZigBee Encapsulation Protocol (zep)

    zep.channel_id  Channel ID
        Unsigned 8-bit integer
        The logical channel on which this packet was detected.
    zep.device_id  Device ID
        Unsigned 16-bit integer
        The ID of the device that detected this packet.
    zep.length  Length
        Unsigned 8-bit integer
        The length (in bytes) of the encapsulated IEEE 802.15.4 MAC frame.
    zep.lqi  Link Quality Indication
        Unsigned 8-bit integer
    zep.lqi_mode  LQI/CRC Mode
        Boolean
        Determines what format the last two bytes of the MAC frame use.
    zep.seqno  Sequence Number
        Unsigned 8-bit integer
    zep.time  Timestamp
        Date/Time stamp
    zep.type  Type
        Unsigned 8-bit integer
    zep.version  Protocol Version
        Unsigned 8-bit integer
        The version of the sniffer.

ZigBee Network Layer (zbee.nwk)

    zbee.beacon.depth  Device Depth
        Unsigned 8-bit integer
        The tree depth of the device, 0 indicates the network coordinator.
    zbee.beacon.end_dev  End Device Capacity
        Boolean
        Whether the device can accept join requests from ZigBee end devices.
    zbee.beacon.ext_panid  Extended PAN ID
        Unsigned 64-bit integer
        Extended PAN identifier.
    zbee.beacon.profile  Stack Profile
        Unsigned 8-bit integer
    zbee.beacon.protocol  Protocol ID
        Unsigned 8-bit integer
    zbee.beacon.router  Router Capacity
        Boolean
        Whether the device can accept join requests from routing capable devices.
    zbee.beacon.tx_offset  Tx Offset
        Unsigned 32-bit integer
        The time difference between a device and its parent's beacon.
    zbee.beacon.update_id  Update ID
        Unsigned 8-bit integer
    zbee.beacon.version  Protocol Version
        Unsigned 8-bit integer
    zbee.nwk.cmd.addr  Address
        Unsigned 16-bit integer
    zbee.nwk.cmd.cinfo.alloc  Allocate Short Address
        Boolean
        Flag requesting the parent to allocate a short address for this device.
    zbee.nwk.cmd.cinfo.alt_coord  Alternate Coordinator
        Boolean
        Indicates that the device is able to operate as a PAN coordinator.
    zbee.nwk.cmd.cinfo.ffd  Full-Function Device
        Boolean
    zbee.nwk.cmd.cinfo.power  AC Power
        Boolean
        Indicates this device is using AC/Mains power.
    zbee.nwk.cmd.cinfo.security  Security Capability
        Boolean
        Indicates this device is capable of performing encryption/decryption.
    zbee.nwk.cmd.epid  Extended PAN ID
        Unsigned 64-bit integer
    zbee.nwk.cmd.id  Command Identifier
        Unsigned 8-bit integer
    zbee.nwk.cmd.leave.children  Remove Children
        Boolean
        Flag instructing the device to remove its children in addition to itself.
    zbee.nwk.cmd.leave.rejoin  Rejoin
        Boolean
        Flag instructing the device to rejoin the network.
    zbee.nwk.cmd.leave.request  Request
        Boolean
        Flag identifying the direction of this command. 1=Request, 0=Indication
    zbee.nwk.cmd.link.count  Link Status Count
        Unsigned 8-bit integer
    zbee.nwk.cmd.link.first  First Frame
        Boolean
        Flag indicating the first in a series of link status commands.
    zbee.nwk.cmd.link.last  Last Frame
        Boolean
        Flag indicating the last in a series of link status commands.
    zbee.nwk.cmd.rejoin_status  Status
        Unsigned 8-bit integer
    zbee.nwk.cmd.relay_count  Relay Count
        Unsigned 8-bit integer
        Number of relays required to route to the destination.
    zbee.nwk.cmd.report.count  Report Information Count
        Unsigned 8-bit integer
    zbee.nwk.cmd.report.type  Report Type
        Unsigned 8-bit integer
    zbee.nwk.cmd.route.cost  Path Cost
        Unsigned 8-bit integer
        A value specifying the efficiency of this route.
    zbee.nwk.cmd.route.dest  Destination
        Unsigned 16-bit integer
    zbee.nwk.cmd.route.dest_ext  Extended Destination
        Unsigned 64-bit integer
    zbee.nwk.cmd.route.id  Route ID
        Unsigned 8-bit integer
        A sequence number for routing commands.
    zbee.nwk.cmd.route.opts.dest_ext  Extended Destination
        Boolean
    zbee.nwk.cmd.route.opts.many2one  Many-to-One Discovery
        Unsigned 8-bit integer
    zbee.nwk.cmd.route.opts.mcast  Multicast
        Boolean
        Flag identifying this as a multicast route request.
    zbee.nwk.cmd.route.opts.orig_ext  Extended Originator
        Boolean
    zbee.nwk.cmd.route.opts.repair  Route Repair
        Boolean
        Flag identifying whether the route request command was to repair a failed route.
    zbee.nwk.cmd.route.opts.resp_ext  Extended Responder
        Boolean
    zbee.nwk.cmd.route.orig  Originator
        Unsigned 16-bit integer
    zbee.nwk.cmd.route.orig_ext  Extended Originator
        Unsigned 64-bit integer
    zbee.nwk.cmd.route.resp  Responder
        Unsigned 16-bit integer
    zbee.nwk.cmd.route.resp_ext  Extended Responder
        Unsigned 64-bit integer
    zbee.nwk.cmd.status  Status Code
        Unsigned 8-bit integer
    zbee.nwk.cmd.update.count  Update Information Count
        Unsigned 8-bit integer
    zbee.nwk.cmd.update.id  Update ID
        Unsigned 8-bit integer
    zbee.nwk.cmd.update.type  Update Type
        Unsigned 8-bit integer
    zbee.nwk.discovery  Discover Route
        Unsigned 16-bit integer
        Determines how route discovery may be handled, if at all.
    zbee.nwk.dst  Destination
        Unsigned 16-bit integer
    zbee.nwk.dst64  Extended Destination
        Unsigned 64-bit integer
    zbee.nwk.ext_dst  Extended Destination
        Boolean
    zbee.nwk.ext_src  Extended Source
        Boolean
    zbee.nwk.frame_type  Frame Type
        Unsigned 16-bit integer
    zbee.nwk.multicast  Multicast
        Boolean
    zbee.nwk.multicast.max_radius  Max Non-Member Radius
        Unsigned 8-bit integer
    zbee.nwk.multicast.mode  Multicast Mode
        Unsigned 8-bit integer
        Controls whether this packet is permitted to be routed through non-members of the multicast group.
    zbee.nwk.multicast.radius  Non-Member Radius
        Unsigned 8-bit integer
        Limits the range of multicast packets when being routed through non-members.
    zbee.nwk.proto_version  Protocol Version
        Unsigned 16-bit integer
    zbee.nwk.radius  Radius
        Unsigned 8-bit integer
        Number of hops remaining for a range-limited broadcast packet.
    zbee.nwk.relay.count  Relay Count
        Unsigned 8-bit integer
        Number of entries in the relay list.
    zbee.nwk.relay.index  Relay Index
        Unsigned 8-bit integer
        Number of relays required to route to the source device.
    zbee.nwk.scr64  Extended Source
        Unsigned 64-bit integer
    zbee.nwk.security  Security
        Boolean
        Whether or not security operations are performed on the network payload.
    zbee.nwk.seqno  Sequence Number
        Unsigned 8-bit integer
    zbee.nwk.src  Source
        Unsigned 16-bit integer
    zbee.nwk.src_route  Source Route
        Boolean
    zbee.sec.counter  Frame Counter
        Unsigned 32-bit integer
    zbee.sec.ext_nonce  Extended Nonce
        Boolean
    zbee.sec.key  Key
        Unsigned 8-bit integer
    zbee.sec.key_seqno  Key Sequence Number
        Unsigned 8-bit integer
    zbee.sec.level  Level
        Unsigned 8-bit integer
    zbee.sec.mic  Message Integrity Code
        Byte array
    zbee.sec.src  Source
        Unsigned 64-bit integer

Zipped Inter-ORB Protocol (ziop)

    ziop.compressor_id  Header compressor id
        Unsigned 16-bit integer
        ZIOPHeader compressor_id
    ziop.flags  Header flags
        Unsigned 8-bit integer
        ZIOPHeader flags
    ziop.giop_version_major  Header major version
        Unsigned 8-bit integer
        ZIOPHeader giop_major_version
    ziop.giop_version_minor  Header minor version
        Unsigned 8-bit integer
        ZIOPHeader giop_minor_version
    ziop.magic  Header magic
        String
        ZIOPHeader magic
    ziop.message_size  Header size
        Unsigned 32-bit integer
        ZIOPHeader message_size
    ziop.message_type  Header type
        Unsigned 8-bit integer
        ZIOPHeader message_type
    ziop.original_length  Header original length
        Unsigned 32-bit integer
        ZIOP original_length

Zone Information Protocol (zip)

    zip.atp_function  Function
        Unsigned 8-bit integer
    zip.count  Count
        Unsigned 16-bit integer
    zip.default_zone  Default zone
        Length string pair
    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
    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
        Length string pair

collectd network data (collectd)

    collectd.data  Payload
        Byte array
    collectd.data.encrypted  Encrypted data
        Byte array
    collectd.data.host  Host name
        String
    collectd.data.initvec  Init vector
        Byte array
    collectd.data.interval  Interval
        Unsigned 64-bit integer
    collectd.data.message  Message
        String
    collectd.data.plugin  Plugin
        String
    collectd.data.plugin.inst  Plugin instance
        String
    collectd.data.severity  Severity
        Unsigned 64-bit integer
    collectd.data.sighash  Signature
        Byte array
    collectd.data.time  Timestamp
        Unsigned 64-bit integer
    collectd.data.type  Type
        String
    collectd.data.type.inst  Type instance
        String
    collectd.data.username  Username
        String
    collectd.data.username_length  Username length
        Unsigned 16-bit integer
    collectd.data.valcnt  Value count
        Unsigned 16-bit integer
    collectd.len  Length
        Unsigned 16-bit integer
    collectd.type  Type
        Unsigned 16-bit integer
    collectd.val.absolute  Absolute value
        Unsigned 64-bit integer
    collectd.val.counter  Counter value
        Unsigned 64-bit integer
    collectd.val.derive  Derive value
        Signed 64-bit integer
    collectd.val.gauge  Gauge value
        Double-precision floating point
    collectd.val.type  Value type
        Unsigned 8-bit integer
    collectd.val.unknown  Value of unknown type
        Unsigned 64-bit integer

eDonkey Protocol (edonkey)

    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.directory  Directory
        String
        eDonkey Directory
    edonkey.emule.aich_hash  AICH Hash
        Byte array
        eMule AICH Hash
    edonkey.emule.aich_hash_id  AICH Hash ID
        Unsigned 16-bit integer
        eMule AICH Hash ID
    edonkey.emule.aich_partnum  Part Number
        Unsigned 16-bit integer
        eMule AICH Part Number
    edonkey.emule.aich_root_hash  AICH Root Hash
        Byte array
        eMule AICH Root Hash
    edonkey.emule.multipacket_entry  eMule MultiPacket Entry
        No value
    edonkey.emule.multipacket_opcode  MultiPacket Opcode
        Unsigned 8-bit integer
        eMule MultiPacket Opcode
    edonkey.emule.public_key  Public Key
        Byte array
        eMule Public Key
    edonkey.emule.signature  Signature
        Byte array
        eMule Signature
    edonkey.emule.source_count  Completed Sources Count
        Unsigned 16-bit integer
        eMule Completed Sources Count
    edonkey.emule.zlib  Compressed Data
        No value
        eMule Compressed Data
    edonkey.file_hash  File Hash
        Byte array
        eDonkey File Hash
    edonkey.file_status  File Status
        Byte array
        eDonkey File Status
    edonkey.fileinfo  eDonkey File Info
        No value
    edonkey.hash  Hash
        Byte array
        eDonkey Hash
    edonkey.ip  IP
        IPv4 address
        eDonkey IP
    edonkey.kademlia  Kademlia Packet
        Unsigned 8-bit integer
        Kademlia Packet Type
    edonkey.kademlia.distance  XOR Distance
        String
        Kademlia XOR Distance
    edonkey.kademlia.file.id  File ID
        String
        Kademlia File ID
    edonkey.kademlia.hash  Kademlia Hash
        String
    edonkey.kademlia.ip  IP
        IPv4 address
        eDonkey IP
    edonkey.kademlia.keyword.hash  Keyword Hash
        String
        Kademlia Keyword Hash
    edonkey.kademlia.peer  Kademlia Peer
        No value
    edonkey.kademlia.peer.id  Peer ID
        String
        Kademlia Peer ID
    edonkey.kademlia.peer.type  Peer Type
        Unsigned 8-bit integer
        Kademlia Peer Type
    edonkey.kademlia.recipients.id  Recipient's ID
        String
        Kademlia Recipient's ID
    edonkey.kademlia.request.type  Request Type
        Unsigned 8-bit integer
        Kademlia Request Type
    edonkey.kademlia.search.condition  Search Condition
        Unsigned 8-bit integer
        Kademlia Search Condition
    edonkey.kademlia.search.condition.argument.uint32  32bit Argument
        Unsigned 32-bit integer
        Kademlia Search Condition Argument 32bit Value
    edonkey.kademlia.search.condition.argument.uint64  64bit Argument
        Unsigned 64-bit integer
        Kademlia Search Condition Argument 64bit Value
    edonkey.kademlia.sender.id  Sender ID
        String
        Kademlia Sender ID
    edonkey.kademlia.tag.name  Tag Name
        Unsigned 8-bit integer
        Kademlia Tag Name String
    edonkey.kademlia.tag.name.length  Tag Name Length
        Unsigned 16-bit integer
        Kademlia Tag Name String Length
    edonkey.kademlia.tag.type  Tag Type
        Unsigned 8-bit integer
        Kademlia Tag Type
    edonkey.kademlia.tag.value.bsob  Tag Value (BSOB)
        Byte array
        BSOB Tag Value
    edonkey.kademlia.tag.value.float  Tag Value (Float)
        Single-precision floating point
        Float Tag Value
    edonkey.kademlia.tag.value.hash  Tag Value (HASH)
        Byte array
        HASH Tag Value
    edonkey.kademlia.tag.value.ipv4  Tag Value (IPv4)
        IPv4 address
        UINT32 Tag Value (IPv4)
    edonkey.kademlia.tag.value.string  Tag Value (String)
        String
        String Tag Value
    edonkey.kademlia.tag.value.uint16  Tag Value (UINT16)
        Unsigned 16-bit integer
        UINT16 Tag Value
    edonkey.kademlia.tag.value.uint32  Tag Value (UINT32)
        Unsigned 32-bit integer
        UINT32 Tag Value
    edonkey.kademlia.tag.value.uint64  Tag Value (UINT64)
        Unsigned 64-bit integer
        UINT64 Tag Value
    edonkey.kademlia.tag.value.uint8  Tag Value (UINT8)
        Unsigned 8-bit integer
        UINT8 Tag Value
    edonkey.kademlia.target.id  Target ID
        String
        Kademlia Target ID
    edonkey.kademlia.tcp_port  TCP Port
        Unsigned 16-bit integer
        Kademlia TCP Port
    edonkey.kademlia.udp_port  UDP Port
        Unsigned 16-bit integer
        Kademlia UDP Port
    edonkey.kademlia.unparsed  Kademlia unparsed data length
        Unsigned 16-bit integer
        Kademlia trailing data length
    edonkey.kademlia.version  Kad Version
        Unsigned 8-bit integer
    edonkey.message  eDonkey Message
        No value
    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.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.overnet.peer  Overnet Peer
        No value
    edonkey.part_count  Part Count
        Unsigned 16-bit integer
        eDonkey Part Count
    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.server_hash  Server Hash
        Byte array
        eDonkey Server Hash
    edonkey.serverinfo  eDonkey Server Info
        No value
    edonkey.source  Source
        No value
        eDonkey File Source
    edonkey.string  String
        String
        eDonkey String
    edonkey.string_length  String Length
        Unsigned 16-bit integer
        eDonkey String Length
    edonkey.unparsed  eDonkey unparsed data length
        Unsigned 32-bit integer
        eDonkey trailing or unparsed data length
    emule_aich_hash_entry  AICH Hash Entry
        No value
        eMule AICH Hash Entry

eXtensible Markup Language (xml)

    xml.attribute  Attribute
        String
    xml.cdata  CDATA
        String
    xml.comment  Comment
        String
    xml.doctype  Doctype
        String
    xml.dtdtag  DTD Tag
        String
    xml.tag  Tag
        String
    xml.unknown  Unknown
        String
    xml.xmlpi  XMLPI
        String
    xml.xmlpi.xml  xml.xmlpi.xml
        String
    xml.xmlpi.xml.encoding  encoding
        String
    xml.xmlpi.xml.standalone  standalone
        String
    xml.xmlpi.xml.version  version
        String

giFT Internet File Transfer (gift)

    gift.request  Request
        Boolean
        TRUE if giFT request
    gift.response  Response
        Boolean
        TRUE if giFT response

iFCP (ifcp)

    fcencap.crc  CRC
        Unsigned 32-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
    fcencap.protoc  Protocol (1's Complement)
        Unsigned 8-bit integer
    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
    ifcp.common_flags  Flags
        Unsigned 8-bit integer
    ifcp.common_flags.crcv  CRCV
        Boolean
        Is the CRC field valid?
    ifcp.encap_flagsc  iFCP Encapsulation Flags (1's Complement)
        Unsigned 8-bit integer
    ifcp.eof  EOF
        Unsigned 8-bit integer
    ifcp.eof_c  EOF Compliment
        Unsigned 8-bit integer
    ifcp.flags  iFCP Flags
        Unsigned 8-bit integer
    ifcp.flags.ses  SES
        Boolean
        Is this a Session control frame
    ifcp.flags.spc  SPC
        Boolean
        Is frame part of link service
    ifcp.flags.trp  TRP
        Boolean
        Is address transparent mode enabled
    ifcp.ls_command_acc  Ls Command Acc
        Unsigned 8-bit integer
    ifcp.sof  SOF
        Unsigned 8-bit integer
    ifcp.sof_c  SOF Compliment
        Unsigned 8-bit integer

iSCSI (iscsi)

    iscsi.I  I
        Boolean
        Immediate delivery
    iscsi.X  X
        Boolean
        Command Retry
    iscsi.ahs  AHS
        Byte array
        Additional header segment
    iscsi.ahs.bidir.length  Bidirectional Read Data Length
        Unsigned 32-bit integer
    iscsi.ahs.extended_cdb  AHS Extended CDB
        Byte array
    iscsi.ahs.length  AHS Length
        Unsigned 16-bit integer
        Length of Additional header segment
    iscsi.ahs.type  AHS Type
        Unsigned 8-bit integer
        Type of Additional header segment
    iscsi.ahs.unknown_blob  Unknown AHS blob
        Byte array
    iscsi.asyncevent  AsyncEvent
        Unsigned 8-bit integer
        Async event type
    iscsi.asynceventdata  AsyncEventData
        Byte array
        Async Event 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
    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
    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
    iscsi.time2wait  Time2Wait
        Unsigned 16-bit integer
    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 (isns)

    isns.PVer  iSNSP Version
        Unsigned 16-bit integer
        iSNS Protocol Version
    isns.assigned_id  Assigned ID
        Unsigned 32-bit integer
    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
    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
    isns.dd_set_next_id  DD Set Next ID
        Unsigned 32-bit integer
    isns.delimiter  Delimiter
        No value
        iSNS Delimiter
    isns.entity.index  Entity Index
        Unsigned 32-bit integer
    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
    isns.fc4_descriptor  FC4 Descriptor
        String
        FC4 Descriptor of this device
    isns.fc_node_name_wwnn  FC Node Name WWNN
        Unsigned 64-bit integer
    isns.fc_port_name_wwpn  FC Port Name WWPN
        Unsigned 64-bit integer
    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
    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
    isns.iscsi.node_type  iSCSI Node Type
        Unsigned 32-bit integer
    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
    isns.isnt.initiator  Initiator
        Boolean
    isns.isnt.target  Target
        Boolean
    isns.member_fc_port_name  Member FC Port Name
        Unsigned 32-bit integer
    isns.member_iscsi_index  Member iSCSI Index
        Unsigned 32-bit integer
    isns.member_portal_index  Member Portal Index
        Unsigned 32-bit integer
    isns.mgmt.ip_address  Management IP Address
        IPv6 address
        Management IPv4/IPv6 Address
    isns.node.index  Node Index
        Unsigned 32-bit integer
    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
    isns.not_decoded_yet  Not Decoded Yet
        No value
        This tag is not yet decoded by wireshark
    isns.payload  Payload
        Byte array
    isns.pdulength  PDU Length
        Unsigned 16-bit integer
        iSNS PDU Length
    isns.permanent_port_name  Permanent Port Name
        Unsigned 64-bit integer
    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
    isns.pg_iscsi_name  PG iSCSI Name
        String
    isns.pg_next_index  PG Next Index
        Unsigned 32-bit integer
    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
    isns.port.symbolic_name  Symbolic Port Name
        String
        Symbolic name of this port
    isns.port_id  Port ID
        Unsigned 24-bit integer
    isns.portal.index  Portal Index
        Unsigned 32-bit integer
    isns.portal.ip_address  Portal IP Address
        IPv6 address
        Portal IPv4/IPv6 Address
    isns.portal.next_index  Portal Next Index
        Unsigned 32-bit integer
    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
    isns.proxy_iscsi_name  Proxy iSCSI Name
        String
    isns.psb  Portal Security Bitmap
        Unsigned 32-bit integer
    isns.psb.aggressive_mode  Aggressive Mode
        Boolean
    isns.psb.bitmap  Bitmap
        Boolean
    isns.psb.ike_ipsec  IKE/IPSec
        Boolean
    isns.psb.main_mode  Main Mode
        Boolean
    isns.psb.pfs  PFS
        Boolean
    isns.psb.transport  Transport Mode
        Boolean
    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
    isns.scn_bitmap.dd_dds_member_added  DD/DDS Member Added (Mgmt Reg/SCN only)
        Boolean
    isns.scn_bitmap.dd_dds_member_removed  DD/DDS Member Removed (Mgmt Reg/SCN only)
        Boolean
    isns.scn_bitmap.initiator_and_self_information_only  Initiator And Self Information Only
        Boolean
    isns.scn_bitmap.management_registration_scn  Management Registration/SCN
        Boolean
    isns.scn_bitmap.object_added  Object Added
        Boolean
    isns.scn_bitmap.object_removed  Object Removed
        Boolean
    isns.scn_bitmap.object_updated  Object Updated
        Boolean
    isns.scn_bitmap.target_and_self_information_only  Target And Self Information Only
        Boolean
    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
    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

iTunes podCast rss elements (itunes)

    itunes.author  author
        String
    itunes.block  block
        String
    itunes.category  category
        String
    itunes.category.text  text
        String
    itunes.duration  duration
        String
    itunes.explicit  explicit
        String
    itunes.keywords  keywords
        String
    itunes.owner  owner
        String
    itunes.subtitle  subtitle
        String
    itunes.summary  summary
        String

iWARP Direct Data Placement and Remote Direct Memory Access Protocol (iwarp_ddp_rdmap)

    iwarp_ddp  DDP header
        No value
    iwarp_ddp.control_field  DDP control field
        No value
        DDP Control Field
    iwarp_ddp.dv  DDP protocol version
        Unsigned 8-bit integer
    iwarp_ddp.last_flag  Last flag
        Boolean
    iwarp_ddp.mo  Message offset
        Unsigned 32-bit integer
    iwarp_ddp.msn  Message sequence number
        Unsigned 32-bit integer
    iwarp_ddp.qn  Queue number
        Unsigned 32-bit integer
    iwarp_ddp.rsvd  Reserved
        Unsigned 8-bit integer
    iwarp_ddp.rsvdulp  Reserved for use by the ULP
        Byte array
    iwarp_ddp.stag  (Data Sink) Steering Tag
        Byte array
    iwarp_ddp.tagged  Tagged buffer model
        No value
        DDP Tagged Buffer Model Header
    iwarp_ddp.tagged_flag  Tagged flag
        Boolean
    iwarp_ddp.tagged_offset  (Data Sink) Tagged offset
        Byte array
    iwarp_ddp.untagged  Untagged buffer model
        No value
        DDP Untagged Buffer Model Header
    iwarp_rdma  RDMAP header
        No value
    iwarp_rdma.control_field  RDMAP control field
        No value
        RDMA Control Field
    iwarp_rdma.hdrct_d  D bit
        Unsigned 8-bit integer
        Header control bit d: DDP Header Included
    iwarp_rdma.hdrct_r  R bit
        Unsigned 8-bit integer
        Header control bit r: RDMAP Header Included
    iwarp_rdma.inval_stag  Invalidate STag
        Unsigned 32-bit integer
        RDMA Invalidate STag
    iwarp_rdma.opcode  OpCode
        Unsigned 8-bit integer
        RDMA OpCode Field
    iwarp_rdma.rdmardsz  RDMA Read Message Size
        Unsigned 32-bit integer
    iwarp_rdma.reserved  Reserved
        Byte array
    iwarp_rdma.rr  Read request
        No value
        RDMA Read Request Header
    iwarp_rdma.rsv  Reserved
        Unsigned 8-bit integer
        RDMA Control Field Reserved
    iwarp_rdma.sinkstag  Data Sink STag
        Unsigned 32-bit integer
    iwarp_rdma.sinkto  Data Sink Tagged Offset
        Unsigned 64-bit integer
    iwarp_rdma.srcstag  Data Source STag
        Unsigned 32-bit integer
    iwarp_rdma.srcto  Data Source Tagged Offset
        Byte array
    iwarp_rdma.term_ctrl  Terminate Control
        No value
        RDMA Terminate Control Field
    iwarp_rdma.term_ddp_h  Terminated DDP Header
        Byte array
    iwarp_rdma.term_ddp_seg_len  DDP Segment Length
        Byte array
    iwarp_rdma.term_errcode  Error Code
        Unsigned 8-bit integer
        Terminate Control Field: Error Code
    iwarp_rdma.term_errcode_ddp_tagged  Error Code for DDP Tagged Buffer
        Unsigned 8-bit integer
        Terminate Control Field: Error Code
    iwarp_rdma.term_errcode_ddp_untagged  Error Code for DDP Untagged Buffer
        Unsigned 8-bit integer
        Terminate Control Field: Error Code
    iwarp_rdma.term_errcode_llp  Error Code for LLP layer
        Unsigned 8-bit integer
        Terminate Control Field: Lower Layer Protocol Error Code
    iwarp_rdma.term_errcode_rdma  Error Code for RDMA layer
        Unsigned 8-bit integer
        Terminate Control Field: Error Code
    iwarp_rdma.term_etype  Error Types
        Unsigned 8-bit integer
        Terminate Control Field: Error Type
    iwarp_rdma.term_etype_ddp  Error Types for DDP layer
        Unsigned 8-bit integer
        Terminate Control Field: Error Type
    iwarp_rdma.term_etype_llp  Error Types for LLP layer
        Unsigned 8-bit integer
        Terminate Control Field: Error Type
    iwarp_rdma.term_etype_rdma  Error Types for RDMA layer
        Unsigned 8-bit integer
        Terminate Control Field: Error Type
    iwarp_rdma.term_hdrct  Header control bits
        No value
        Terminate Control Field: Header control bits
    iwarp_rdma.term_hdrct_m  M bit
        Unsigned 8-bit integer
        Header control bit m: DDP Segment Length valid
    iwarp_rdma.term_layer  Layer
        Unsigned 8-bit integer
        Terminate Control Field: Layer
    iwarp_rdma.term_rdma_h  Terminated RDMA Header
        Byte array
    iwarp_rdma.term_rsvd  Reserved
        Unsigned 16-bit integer
    iwarp_rdma.terminate  Terminate
        No value
        RDMA Terminate Header
    iwarp_rdma.version  Version
        Unsigned 8-bit integer
        RDMA Version Field

iWARP Marker Protocol data unit Aligned framing (iwarp_mpa)

    iwarp_mpa.crc  CRC
        Unsigned 32-bit integer
    iwarp_mpa.crc_check  CRC check
        Unsigned 32-bit integer
    iwarp_mpa.crc_flag  CRC flag
        Boolean
    iwarp_mpa.fpdu  FPDU
        No value
    iwarp_mpa.key.rep  ID Rep frame
        Byte array
    iwarp_mpa.key.req  ID Req frame
        Byte array
    iwarp_mpa.marker_flag  Marker flag
        Boolean
    iwarp_mpa.marker_fpduptr  FPDU back pointer
        Unsigned 16-bit integer
        Marker: FPDU Pointer
    iwarp_mpa.marker_res  Reserved
        Unsigned 16-bit integer
        Marker: Reserved
    iwarp_mpa.markers  Markers
        No value
    iwarp_mpa.pad  Padding
        Byte array
    iwarp_mpa.pdlength  Private data length
        Unsigned 16-bit integer
    iwarp_mpa.privatedata  Private data
        Byte array
    iwarp_mpa.rej_flag  Connection rejected flag
        Boolean
    iwarp_mpa.rep  Reply frame header
        No value
    iwarp_mpa.req  Request frame header
        No value
    iwarp_mpa.res  Reserved
        Unsigned 8-bit integer
    iwarp_mpa.rev  Revision
        Unsigned 8-bit integer
    iwarp_mpa.ulpdulength  ULPDU length
        Unsigned 16-bit integer

packetbb Protocol (packetbb)

    packetbb.error  ERROR !
        Byte array
    packetbb.flags  Flags
        Unsigned 8-bit integer
    packetbb.flags.phasseqnum  Has sequence number
        Boolean
    packetbb.flags.phastlv  Has tlv block
        Boolean
    packetbb.header  Packet header
        No value
    packetbb.msg  Message
        No value
    packetbb.msg.addr  Address block
        No value
    packetbb.msg.addr.flags  Flags
        Unsigned 8-bit integer
    packetbb.msg.addr.hasfulltail  Has full tail
        Boolean
    packetbb.msg.addr.hashead  Has head
        Boolean
    packetbb.msg.addr.hasmultiprelen  Has multiple prelen
        Boolean
    packetbb.msg.addr.hassingleprelen  Has single prelen
        Boolean
    packetbb.msg.addr.haszerotail  Has zero tail
        Boolean
    packetbb.msg.addr.head  Head
        Byte array
    packetbb.msg.addr.num  Count
        Unsigned 8-bit integer
    packetbb.msg.addr.tail  Tail
        Byte array
    packetbb.msg.addr.value.mid  Mid
        Byte array
    packetbb.msg.addr.value.prefix  Prefix
        Unsigned 8-bit integer
    packetbb.msg.addr.value4  Address
        IPv4 address
    packetbb.msg.addr.value6  Address
        IPv6 address
    packetbb.msg.addr.valuecustom  Address
        Length byte array pair
    packetbb.msg.addr.valuemac  Address
        6-byte Hardware (MAC) Address
    packetbb.msg.addrsize  AddressSize
        Unsigned 8-bit integer
    packetbb.msg.flags  Flags
        Unsigned 8-bit integer
    packetbb.msg.flags.mhashopcount  Has hopcount
        Boolean
    packetbb.msg.flags.mhashoplimit  Has hoplimit
        Boolean
    packetbb.msg.flags.mhasorig  Has originator address
        Boolean
    packetbb.msg.flags.mhasseqnum  Has sequence number
        Boolean
    packetbb.msg.header  Message header
        No value
    packetbb.msg.hopcount  Hop count
        Unsigned 8-bit integer
    packetbb.msg.hoplimit  Hop limit
        Unsigned 8-bit integer
    packetbb.msg.origaddr4  Originator address
        IPv4 address
    packetbb.msg.origaddr6  Originator address
        IPv6 address
    packetbb.msg.origaddrcustom  Originator address
        Length byte array pair
    packetbb.msg.origaddrmac  Originator address
        6-byte Hardware (MAC) Address
    packetbb.msg.seqnum  Squence number
        Unsigned 16-bit integer
    packetbb.msg.size  Size
        Unsigned 8-bit integer
    packetbb.msg.type  Type
        Unsigned 8-bit integer
    packetbb.seqnr  Sequence number
        Unsigned 16-bit integer
    packetbb.tlv  TLV
        No value
    packetbb.tlv.flags  Flags
        Unsigned 8-bit integer
    packetbb.tlv.hasextlen  Has extended length
        Boolean
    packetbb.tlv.hasmultiindex  Has multiple indices
        Boolean
    packetbb.tlv.hasmultivalue  Has multiple values
        Boolean
    packetbb.tlv.hassingleindex  Has single index
        Boolean
    packetbb.tlv.hastypeext  Has type-ext
        Boolean
    packetbb.tlv.hasvalue  Has value
        Boolean
    packetbb.tlv.indexend  Index end
        Unsigned 8-bit integer
    packetbb.tlv.indexstart  Index start
        Unsigned 8-bit integer
    packetbb.tlv.length  Length
        Unsigned 16-bit integer
    packetbb.tlv.multivalue  Multivalue
        Byte array
    packetbb.tlv.type  Type
        Unsigned 8-bit integer
    packetbb.tlv.typeext  Extended Type
        Unsigned 8-bit integer
    packetbb.tlv.value  Value
        Byte array
    packetbb.tlvblock  TLV block
        No value
    packetbb.tlvblock.length  Length
        Unsigned 16-bit integer
    packetbb.version  Version
        Unsigned 8-bit integer

poc-settings XML doc (RFC 4354) (poc-settings)

    poc-settings.am-settings  am-settings
        String
    poc-settings.am-settings.answer-mode  answer-mode
        String
    poc-settings.answer-mode  answer-mode
        String
    poc-settings.entity  entity
        String
    poc-settings.entity.am-settings  am-settings
        String
    poc-settings.entity.am-settings.answer-mode  answer-mode
        String
    poc-settings.entity.id  id
        String
    poc-settings.entity.ipab-settings  ipab-settings
        String
    poc-settings.entity.ipab-settings.incoming-personal-alert-barring  incoming-personal-alert-barring
        String
    poc-settings.entity.ipab-settings.incoming-personal-alert-barring.active  active
        String
    poc-settings.entity.isb-settings  isb-settings
        String
    poc-settings.entity.isb-settings.incoming-session-barring  incoming-session-barring
        String
    poc-settings.entity.isb-settings.incoming-session-barring.active  active
        String
    poc-settings.entity.sss-settings  sss-settings
        String
    poc-settings.entity.sss-settings.simultaneous-sessions-support  simultaneous-sessions-support
        String
    poc-settings.entity.sss-settings.simultaneous-sessions-support.active  active
        String
    poc-settings.incoming-personal-alert-barring  incoming-personal-alert-barring
        String
    poc-settings.incoming-personal-alert-barring.active  active
        String
    poc-settings.incoming-session-barring  incoming-session-barring
        String
    poc-settings.incoming-session-barring.active  active
        String
    poc-settings.ipab-settings  ipab-settings
        String
    poc-settings.ipab-settings.incoming-personal-alert-barring  incoming-personal-alert-barring
        String
    poc-settings.ipab-settings.incoming-personal-alert-barring.active  active
        String
    poc-settings.isb-settings  isb-settings
        String
    poc-settings.isb-settings.incoming-session-barring  incoming-session-barring
        String
    poc-settings.isb-settings.incoming-session-barring.active  active
        String
    poc-settings.simultaneous-sessions-support  simultaneous-sessions-support
        String
    poc-settings.simultaneous-sessions-support.active  active
        String
    poc-settings.sss-settings  sss-settings
        String
    poc-settings.sss-settings.simultaneous-sessions-support  simultaneous-sessions-support
        String
    poc-settings.sss-settings.simultaneous-sessions-support.active  active
        String
    poc-settings.xmlns  xmlns
        String

presence XML doc (RFC 3863) (presence)

    presence.basic  basic
        String
    presence.contact  contact
        String
    presence.contact.priority  priority
        String
    presence.entity  entity
        String
    presence.note  note
        String
    presence.note.lang  lang
        String
    presence.status  status
        String
    presence.status.basic  basic
        String
    presence.timestamp  timestamp
        String
    presence.tuple  tuple
        String
    presence.tuple.contact  contact
        String
    presence.tuple.contact.priority  priority
        String
    presence.tuple.id  id
        String
    presence.tuple.note  note
        String
    presence.tuple.note.lang  lang
        String
    presence.tuple.status  status
        String
    presence.tuple.status.basic  basic
        String
    presence.tuple.timestamp  timestamp
        String
    presence.xmlns  xmlns
        String

rss (rss)

    rss.author  author
        String
    rss.category  category
        String
    rss.category.domain  domain
        String
    rss.channel  channel
        String
    rss.channel.cloud  cloud
        String
    rss.channel.cloud.domain  domain
        String
    rss.channel.cloud.path  path
        String
    rss.channel.cloud.port  port
        String
    rss.channel.cloud.protocol  protocol
        String
    rss.channel.cloud.registerprocedure  registerprocedure
        String
    rss.channel.copyright  copyright
        String
    rss.channel.description  description
        String
    rss.channel.docs  docs
        String
    rss.channel.image  image
        String
    rss.channel.image.description  description
        String
    rss.channel.image.height  height
        String
    rss.channel.image.link  link
        String
    rss.channel.image.title  title
        String
    rss.channel.image.url  url
        String
    rss.channel.image.width  width
        String
    rss.channel.item  item
        String
    rss.channel.item.author  author
        String
    rss.channel.item.category  category
        String
    rss.channel.item.category.domain  domain
        String
    rss.channel.item.comments  comments
        String
    rss.channel.item.description  description
        String
    rss.channel.item.enclosure  enclosure
        String
    rss.channel.item.enclosure.length  length
        String
    rss.channel.item.enclosure.type  type
        String
    rss.channel.item.enclosure.url  url
        String
    rss.channel.item.guid  guid
        String
    rss.channel.item.guid.ispermalink  ispermalink
        String
    rss.channel.item.link  link
        String
    rss.channel.item.pubdate  pubdate
        String
    rss.channel.item.source  source
        String
    rss.channel.item.source.url  url
        String
    rss.channel.item.title  title
        String
    rss.channel.language  language
        String
    rss.channel.lastbuilddate  lastbuilddate
        String
    rss.channel.link  link
        String
    rss.channel.managingeditor  managingeditor
        String
    rss.channel.pubdate  pubdate
        String
    rss.channel.rating  rating
        String
    rss.channel.skipdays  skipdays
        String
    rss.channel.skipdays.day  day
        String
    rss.channel.skiphours  skiphours
        String
    rss.channel.skiphours.hour  hour
        String
    rss.channel.textinput  textinput
        String
    rss.channel.textinput.description  description
        String
    rss.channel.textinput.link  link
        String
    rss.channel.textinput.name  name
        String
    rss.channel.textinput.title  title
        String
    rss.channel.title  title
        String
    rss.channel.ttl  ttl
        String
    rss.channel.webmaster  webmaster
        String
    rss.cloud  cloud
        String
    rss.cloud.domain  domain
        String
    rss.cloud.path  path
        String
    rss.cloud.port  port
        String
    rss.cloud.protocol  protocol
        String
    rss.cloud.registerprocedure  registerprocedure
        String
    rss.comments  comments
        String
    rss.copyright  copyright
        String
    rss.day  day
        String
    rss.description  description
        String
    rss.docs  docs
        String
    rss.enclosure  enclosure
        String
    rss.enclosure.length  length
        String
    rss.enclosure.type  type
        String
    rss.enclosure.url  url
        String
    rss.guid  guid
        String
    rss.guid.ispermalink  ispermalink
        String
    rss.height  height
        String
    rss.hour  hour
        String
    rss.image  image
        String
    rss.image.description  description
        String
    rss.image.height  height
        String
    rss.image.link  link
        String
    rss.image.title  title
        String
    rss.image.url  url
        String
    rss.image.width  width
        String
    rss.item  item
        String
    rss.item.author  author
        String
    rss.item.category  category
        String
    rss.item.category.domain  domain
        String
    rss.item.comments  comments
        String
    rss.item.description  description
        String
    rss.item.enclosure  enclosure
        String
    rss.item.enclosure.length  length
        String
    rss.item.enclosure.type  type
        String
    rss.item.enclosure.url  url
        String
    rss.item.guid  guid
        String
    rss.item.guid.ispermalink  ispermalink
        String
    rss.item.link  link
        String
    rss.item.pubdate  pubdate
        String
    rss.item.source  source
        String
    rss.item.source.url  url
        String
    rss.item.title  title
        String
    rss.language  language
        String
    rss.lastbuilddate  lastbuilddate
        String
    rss.link  link
        String
    rss.managingeditor  managingeditor
        String
    rss.name  name
        String
    rss.pubdate  pubdate
        String
    rss.rating  rating
        String
    rss.skipdays  skipdays
        String
    rss.skipdays.day  day
        String
    rss.skiphours  skiphours
        String
    rss.skiphours.hour  hour
        String
    rss.source  source
        String
    rss.source.url  url
        String
    rss.textinput  textinput
        String
    rss.textinput.description  description
        String
    rss.textinput.link  link
        String
    rss.textinput.name  name
        String
    rss.textinput.title  title
        String
    rss.title  title
        String
    rss.ttl  ttl
        String
    rss.url  url
        String
    rss.version  version
        String
    rss.webmaster  webmaster
        String
    rss.width  width
        String

watcherinfo XML doc (RFC 3858) (watcherinfo)

    watcherinfo.state  state
        String
    watcherinfo.version  version
        String
    watcherinfo.watcher  watcher
        String
    watcherinfo.watcher-list  watcher-list
        String
    watcherinfo.watcher-list.package  package
        String
    watcherinfo.watcher-list.resource  resource
        String
    watcherinfo.watcher-list.watcher  watcher
        String
    watcherinfo.watcher-list.watcher.display-name  display-name
        String
    watcherinfo.watcher-list.watcher.duration-subscribed  duration-subscribed
        String
    watcherinfo.watcher-list.watcher.event  event
        String
    watcherinfo.watcher-list.watcher.expiration  expiration
        String
    watcherinfo.watcher-list.watcher.id  id
        String
    watcherinfo.watcher-list.watcher.status  status
        String
    watcherinfo.watcher.display-name  display-name
        String
    watcherinfo.watcher.duration-subscribed  duration-subscribed
        String
    watcherinfo.watcher.event  event
        String
    watcherinfo.watcher.expiration  expiration
        String
    watcherinfo.watcher.id  id
        String
    watcherinfo.watcher.status  status
        String
    watcherinfo.xmlns  xmlns
        String


NOTES

The wireshark-filters manpage is part of the Wireshark distribution. The latest version of Wireshark can be found at http://www.wireshark.org.

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 manual page of pcap-filter(4) or, if that doesn't exist, tcpdump(8), or, if that doesn't exist, http://wiki.wireshark.org/CaptureFilters for a description of capture filters.


SEE ALSO

wireshark(1), tshark(1), editcap(1), pcap-filter(4), tcpdump(8), pcap(3)


AUTHORS

See the list of authors in the Wireshark man page for a list of authors of that code.